VoiceCloning-be commited on
Commit
4efe6b5
1 Parent(s): 7d597db

new file: .github/FUNDING.yml

Browse files

new file: .github/ISSUE_TEMPLATE/bug_report.md
new file: .github/workflows/code_formatter.yml
new file: .github/workflows/unittest.yml
new file: .gitignore
new file: Dockerfile
new file: LICENSE
new file: Makefile
modified: README.md
modified: app.py
new file: assets/Applio.ipynb
new file: assets/Applio_NoUI.ipynb
new file: assets/ICON.ico
new file: assets/audios/audio-others/.gitkeep
new file: assets/config.json
new file: assets/discord_presence.py
new file: assets/flask/routes.py
new file: assets/flask/server.py
new file: assets/i18n/i18n.py
new file: assets/i18n/languages/ar_AR.json
new file: assets/i18n/languages/bn_BN.json
new file: assets/i18n/languages/de_DE.json
new file: assets/i18n/languages/en_US.json
new file: assets/i18n/languages/es_ES.json
new file: assets/i18n/languages/fa_FA.json
new file: assets/i18n/languages/fr_FR.json
new file: assets/i18n/languages/gu_GU.json
new file: assets/i18n/languages/hi_IN.json
new file: assets/i18n/languages/id_ID.json
new file: assets/i18n/languages/it_IT.json
new file: assets/i18n/languages/ja_JA.json
new file: assets/i18n/languages/jv_JV.json
new file: assets/i18n/languages/ko_KO.json
new file: assets/i18n/languages/ml_IN.json
new file: assets/i18n/languages/mr_MR.json
new file: assets/i18n/languages/ms_MS.json
new file: assets/i18n/languages/nl_NL.json
new file: assets/i18n/languages/pa_PA.json
new file: assets/i18n/languages/pl_PL.json
new file: assets/i18n/languages/pt_BR.json
new file: assets/i18n/languages/pt_PT.json
new file: assets/i18n/languages/ro_RO.json
new file: assets/i18n/languages/ru_RU.json
new file: assets/i18n/languages/ta-IN.json
new file: assets/i18n/languages/ta_TA.json
new file: assets/i18n/languages/te_TE.json
new file: assets/i18n/languages/th_TH.json
new file: assets/i18n/languages/tr_TR.json
new file: assets/i18n/languages/uk_UK.json
new file: assets/i18n/languages/ur_UR.json
new file: assets/i18n/languages/vi_VI.json
new file: assets/i18n/languages/wu_WU.json
new file: assets/i18n/languages/zh_CN.json
new file: assets/i18n/scan.py
new file: assets/installation_checker.py
new file: assets/themes/Applio.py
new file: assets/themes/loadThemes.py
new file: assets/themes/theme_list.json
new file: assets/version_checker.py
new file: core.py
new file: docker-compose.yaml
new file: run-applio.sh
new file: run-install.sh
new file: run-tensorboard.sh
new file: rvc/configs/config.py
new file: rvc/configs/v1/32000.json
new file: rvc/configs/v1/40000.json
new file: rvc/configs/v1/48000.json
new file: rvc/configs/v2/32000.json
new file: rvc/configs/v2/40000.json
new file: rvc/configs/v2/48000.json
new file: rvc/infer/infer.py
new file: rvc/infer/pipeline.py
new file: rvc/lib/algorithm/__init__.py
new file: rvc/lib/algorithm/attentions.py
new file: rvc/lib/algorithm/commons.py
new file: rvc/lib/algorithm/discriminators.py
new file: rvc/lib/algorithm/encoders.py
new file: rvc/lib/algorithm/generators.py
new file: rvc/lib/algorithm/modules.py
new file: rvc/lib/algorithm/normalization.py
new file: rvc/lib/algorithm/nsf.py
new file: rvc/lib/algorithm/residuals.py
new file: rvc/lib/algorithm/synthesizers.py
new file: rvc/lib/predictors/F0Extractor.py
new file: rvc/lib/predictors/F0Predictor.py
new file: rvc/lib/predictors/FCPE.py
new file: rvc/lib/predictors/RMVPE.py
new file: rvc/lib/tools/analyzer.py
new file: rvc/lib/tools/gdown.py
new file: rvc/lib/tools/launch_tensorboard.py
new file: rvc/lib/tools/model_download.py
new file: rvc/lib/tools/prerequisites_download.py
new file: rvc/lib/tools/pretrained_selector.py
new file: rvc/lib/tools/split_audio.py
new file: rvc/lib/tools/tts.py
new file: rvc/lib/tools/tts_voices.json
new file: rvc/lib/utils.py
new file: rvc/models/embedders/.gitkeep
new file: rvc/models/predictors/.gitkeep
new file: rvc/models/pretraineds/.gitkeep
new file: rvc/models/pretraineds/pretrained_v1/.gitkeep
new file: rvc/models/pretraineds/pretrained_v2/.gitkeep
new file: rvc/train/data_utils.py
new file: rvc/train/extract/embedding_extractor.py
new file: rvc/train/extract/pitch_extractor.py
new file: rvc/train/extract/preparing_files.py
new file: rvc/train/losses.py
new file: rvc/train/mel_processing.py
new file: rvc/train/preprocess/preprocess.py
new file: rvc/train/process/change_info.py
new file: rvc/train/process/extract_index.py
new file: rvc/train/process/extract_model.py
new file: rvc/train/process/extract_small_model.py
new file: rvc/train/process/model_blender.py
new file: rvc/train/process/model_information.py
new file: rvc/train/slicer.py
new file: rvc/train/train.py
new file: rvc/train/utils.py
new file: tabs/download/download.py
new file: tabs/extra/analyzer/analyzer.py
new file: tabs/extra/extra.py
new file: tabs/extra/f0_extractor/f0_extractor.py
new file: tabs/extra/model_information.py
new file: tabs/extra/processing/processing.py
new file: tabs/inference/inference.py
new file: tabs/plugins/plugins.py
new file: tabs/plugins/plugins_core.py
new file: tabs/report/main.js
new file: tabs/report/record_button.js
new file: tabs/report/recorder.js
new file: tabs/report/report.py
new file: tabs/settings/fake_gpu.py
new file: tabs/settings/flask_server.py
new file: tabs/settings/lang.py
new file: tabs/settings/precision.py
new file: tabs/settings/presence.py
new file: tabs/settings/restart.py
new file: tabs/settings/themes.py
new file: tabs/settings/version.py
new file: tabs/train/train.py
new file: tabs/tts/tts.py
new file: tabs/voice_blender/voice_blender.py

This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .github/FUNDING.yml +13 -0
  2. .github/ISSUE_TEMPLATE/bug_report.md +34 -0
  3. .github/workflows/code_formatter.yml +51 -0
  4. .github/workflows/unittest.yml +32 -0
  5. .gitignore +21 -0
  6. Dockerfile +19 -0
  7. LICENSE +7 -0
  8. Makefile +24 -0
  9. README.md +320 -13
  10. app.py +139 -4
  11. assets/Applio.ipynb +483 -0
  12. assets/Applio_NoUI.ipynb +705 -0
  13. assets/ICON.ico +0 -0
  14. assets/audios/audio-others/.gitkeep +0 -0
  15. assets/config.json +15 -0
  16. assets/discord_presence.py +49 -0
  17. assets/flask/routes.py +32 -0
  18. assets/flask/server.py +60 -0
  19. assets/i18n/i18n.py +52 -0
  20. assets/i18n/languages/ar_AR.json +175 -0
  21. assets/i18n/languages/bn_BN.json +175 -0
  22. assets/i18n/languages/de_DE.json +175 -0
  23. assets/i18n/languages/en_US.json +231 -0
  24. assets/i18n/languages/es_ES.json +206 -0
  25. assets/i18n/languages/fa_FA.json +175 -0
  26. assets/i18n/languages/fr_FR.json +230 -0
  27. assets/i18n/languages/gu_GU.json +175 -0
  28. assets/i18n/languages/hi_IN.json +215 -0
  29. assets/i18n/languages/hu_HU.json +175 -0
  30. assets/i18n/languages/id_ID.json +148 -0
  31. assets/i18n/languages/it_IT.json +175 -0
  32. assets/i18n/languages/ja_JA.json +175 -0
  33. assets/i18n/languages/jv_JV.json +1 -0
  34. assets/i18n/languages/ko_KO.json +175 -0
  35. assets/i18n/languages/ml_IN.json +204 -0
  36. assets/i18n/languages/mr_MR.json +175 -0
  37. assets/i18n/languages/ms_MS.json +175 -0
  38. assets/i18n/languages/nl_NL.json +175 -0
  39. assets/i18n/languages/pa_PA.json +175 -0
  40. assets/i18n/languages/pl_PL.json +175 -0
  41. assets/i18n/languages/pt_BR.json +113 -0
  42. assets/i18n/languages/pt_PT.json +175 -0
  43. assets/i18n/languages/ro_RO.json +175 -0
  44. assets/i18n/languages/ru_RU.json +175 -0
  45. assets/i18n/languages/ta-IN.json +204 -0
  46. assets/i18n/languages/ta_TA.json +175 -0
  47. assets/i18n/languages/te_TE.json +175 -0
  48. assets/i18n/languages/th_TH.json +175 -0
  49. assets/i18n/languages/tr_TR.json +215 -0
  50. assets/i18n/languages/uk_UK.json +231 -0
.github/FUNDING.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # These are supported funding model platforms
2
+
3
+ github: #
4
+ patreon: # Replace with a single Patreon username
5
+ open_collective: # Replace with a single Open Collective username
6
+ ko_fi: iahispano
7
+ tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
+ community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
+ liberapay: # Replace with a single Liberapay username
10
+ issuehunt: # Replace with a single IssueHunt username
11
+ otechie: # Replace with a single Otechie username
12
+ lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13
+ custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
.github/ISSUE_TEMPLATE/bug_report.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+ title: "[BUG]"
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Before You Report a Bug**
11
+ Reporting a bug is essential for us to improve our service, but we need detailed information to address the issue effectively. Since every computer setup is unique, there can be various reasons behind a bug. Before reporting, consider potential causes and provide as much detail as possible to help us understand the problem.
12
+
13
+ **Bug Description**
14
+ Please provide a clear and concise description of the bug.
15
+
16
+ **Steps to Reproduce**
17
+ Outline the steps to replicate the issue:
18
+ 1. Go to '...'
19
+ 2. Click on '....'
20
+ 3. Scroll down to '....'
21
+ 4. Observe the error.
22
+
23
+ **Expected Behavior**
24
+ Describe what you expected to happen.
25
+
26
+ **Assets**
27
+ Include screenshots or videos if they can illustrate the issue.
28
+
29
+ **Desktop Details:**
30
+ - Operating System: [e.g., Windows 11]
31
+ - Browser: [e.g., Chrome, Safari]
32
+
33
+ **Additional Context**
34
+ Any additional information that might be relevant to the issue.
.github/workflows/code_formatter.yml ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Code Formatter
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ push_format:
10
+ runs-on: ubuntu-latest
11
+
12
+ permissions:
13
+ contents: write
14
+ pull-requests: write
15
+
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ ref: ${{github.ref_name}}
20
+
21
+ - name: Set up Python ${{ matrix.python-version }}
22
+ uses: actions/setup-python@v5
23
+ with:
24
+ python-version: ${{ matrix.python-version }}
25
+
26
+ - name: Install Black
27
+ run: pip install "black[jupyter]"
28
+
29
+ - name: Run Black
30
+ # run: black $(git ls-files '*.py')
31
+ run: black . --exclude=".*\.ipynb$"
32
+
33
+ - name: Commit Back
34
+ continue-on-error: true
35
+ id: commitback
36
+ run: |
37
+ git config --local user.email "github-actions[bot]@users.noreply.github.com"
38
+ git config --local user.name "github-actions[bot]"
39
+ git add --all
40
+ git commit -m "chore(format): run black on ${{github.ref_name}}"
41
+
42
+ - name: Create Pull Request
43
+ if: steps.commitback.outcome == 'success'
44
+ continue-on-error: true
45
+ uses: peter-evans/create-pull-request@v5
46
+ with:
47
+ delete-branch: true
48
+ body: "Automatically apply code formatter change"
49
+ title: "chore(format): run black on ${{github.ref_name}}"
50
+ commit-message: "chore(format): run black on ${{github.ref_name}}"
51
+ branch: formatter-${{github.ref_name}}
.github/workflows/unittest.yml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Test preprocess and extract
2
+ on: [push, pull_request]
3
+ jobs:
4
+ build:
5
+ runs-on: ${{ matrix.os }}
6
+ strategy:
7
+ matrix:
8
+ python-version: ["3.9", "3.10"]
9
+ os: [ubuntu-latest]
10
+
11
+ steps:
12
+ - uses: actions/checkout@main
13
+ - name: Set up Python ${{ matrix.python-version }}
14
+ uses: actions/setup-python@v5
15
+ with:
16
+ python-version: ${{ matrix.python-version }}
17
+ - name: Install dependencies
18
+ run: |
19
+ sudo apt update
20
+ sudo apt -y install ffmpeg
21
+ python -m pip install --upgrade pip
22
+ python -m pip install --upgrade setuptools
23
+ python -m pip install --upgrade wheel
24
+ pip install torch torchvision torchaudio
25
+ pip install -r requirements.txt
26
+ python core.py prerequisites --models "True"
27
+ - name: Test Preprocess
28
+ run: |
29
+ python core.py preprocess --model_name "Evaluate" --dataset_path "logs/mute/sliced_audios" --sampling_rate "48000" --cpu_cores "2"
30
+ - name: Test Extract
31
+ run: |
32
+ python core.py extract --model_name "Evaluate" --sampling_rate "48000" --cpu_cores "2"
.gitignore ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.exe
2
+ *.pt
3
+ *.onnx
4
+ *.pyc
5
+ *.pth
6
+ *.index
7
+ *.mp3
8
+ *.flac
9
+ *.ogg
10
+ *.m4a
11
+ *.bin
12
+ *.wav
13
+ *.txt
14
+ *.zip
15
+ *.png
16
+ *.safetensors
17
+
18
+ logs
19
+ env
20
+ venv
21
+ .venv
Dockerfile ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # syntax=docker/dockerfile:1
2
+
3
+ FROM python:3.10-bullseye
4
+
5
+ EXPOSE 6969
6
+
7
+ WORKDIR /app
8
+
9
+ RUN apt update && apt install -y -qq ffmpeg aria2 && apt clean
10
+
11
+ COPY . .
12
+
13
+ RUN pip3 install --no-cache-dir -r requirements.txt
14
+
15
+ VOLUME [ "/app/logs/weights", "/app/opt" ]
16
+
17
+ ENTRYPOINT [ "python3" ]
18
+
19
+ CMD ["app.py"]
LICENSE ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Copyright 2024 AI Hispano
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Makefile ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .PHONY:
2
+ .ONESHELL:
3
+
4
+ # Show help message
5
+ help:
6
+ @grep -hE '^[A-Za-z0-9_ \-]*?:.*##.*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
7
+
8
+ # Install dependencies
9
+ run-install:
10
+ apt-get -y install build-essential python3-dev ffmpeg
11
+ pip install --upgrade setuptools wheel
12
+ pip install pip==24.0
13
+ pip install faiss-gpu fairseq gradio ffmpeg praat-parselmouth pyworld numpy==1.23.5 numba==0.56.4 librosa==0.9.1
14
+ pip install -r requirements.txt
15
+ pip install --upgrade lxml
16
+ apt-get update
17
+
18
+ # Run Applio
19
+ run-applio:
20
+ python app.py --share
21
+
22
+ # Run Tensorboard
23
+ run-tensorboard:
24
+ python core.py tensorboard
README.md CHANGED
@@ -1,13 +1,320 @@
1
- ---
2
- title: Applio Full ZeroGPU
3
- emoji: 🌍
4
- colorFrom: indigo
5
- colorTo: gray
6
- sdk: gradio
7
- sdk_version: 4.40.0
8
- app_file: app.py
9
- pinned: false
10
- license: mit
11
- ---
12
-
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <h1 align="center">
2
+ <a href="https://applio.org" target="_blank"><img src="https://github.com/IAHispano/Applio/assets/133521603/78e975d8-b07f-47ba-ab23-5a31592f322a" alt="Applio"></a>
3
+ </h1>
4
+
5
+ <p align="center">
6
+ <img alt="Contributors" src="https://img.shields.io/github/contributors/iahispano/applio?style=for-the-badge&color=FFFFFF" />
7
+ <img alt="Release" src="https://img.shields.io/github/release/iahispano/applio?style=for-the-badge&color=FFFFFF" />
8
+ <img alt="Stars" src="https://img.shields.io/github/stars/iahispano/applio?style=for-the-badge&color=FFFFFF" />
9
+ <img alt="Fork" src="https://img.shields.io/github/forks/iahispano/applio?style=for-the-badge&color=FFFFFF" />
10
+ <img alt="Issues" src="https://img.shields.io/github/issues/iahispano/applio?style=for-the-badge&color=FFFFFF" />
11
+ </p>
12
+
13
+ <p align="center">VITS-based Voice Conversion focused on simplicity, quality, and performance.</p>
14
+
15
+ <p align="center">
16
+ <a href="https://applio.org" target="_blank">🌐 Website</a>
17
+
18
+ <a href="https://docs.applio.org" target="_blank">📚 Documentation</a>
19
+
20
+ <a href="https://discord.gg/iahispano" target="_blank">☎️ Discord</a>
21
+ </p>
22
+
23
+ <p align="center">
24
+ <a href="https://github.com/IAHispano/Applio-Plugins" target="_blank">🛒 Plugins</a>
25
+
26
+ <a href="https://huggingface.co/IAHispano/Applio/tree/main/Compiled" target="_blank">📦 Compiled</a>
27
+
28
+ <a href="https://applio.org/playground" target="_blank">🎮 Playground</a>
29
+
30
+ <a href="https://colab.research.google.com/github/iahispano/applio/blob/master/assets/Applio.ipynb" target="_blank">🔎 Google Colab (UI)</a>
31
+
32
+ <a href="https://colab.research.google.com/github/iahispano/applio/blob/master/assets/Applio_NoUI.ipynb" target="_blank">🔎 Google Colab (No UI)</a>
33
+ </p>
34
+
35
+ ## Table of Contents
36
+
37
+ - [Installation](#installation)
38
+ - [Windows](#windows)
39
+ - [macOS](#macos)
40
+ - [Linux](#linux)
41
+ - [Makefile](#makefile)
42
+ - [Usage](#usage)
43
+ - [Windows](#windows-1)
44
+ - [macOS](#macos-1)
45
+ - [Linux](#linux-1)
46
+ - [Makefile](#makefile-1)
47
+ - [Technical Information](#technical-information)
48
+ - [Repository Enhancements](#repository-enhancements)
49
+ - [Commercial Usage](#commercial-usage)
50
+ - [References](#references)
51
+ - [Contributors](#contributors)
52
+
53
+ ## Installation
54
+
55
+ Download the latest version from [GitHub Releases](https://github.com/IAHispano/Applio-RVC-Fork/releases) or use the [Compiled Versions](https://huggingface.co/IAHispano/Applio/tree/main/Compiled).
56
+
57
+ ### Windows
58
+
59
+ ```bash
60
+ ./run-install.bat
61
+ ```
62
+
63
+ ### macOS
64
+
65
+ For macOS, you need to install the requirements in a Python environment version 3.9 to 3.11. Here are the steps:
66
+
67
+ ```bash
68
+ python3 -m venv .venv
69
+ source .venv/bin/activate
70
+ chmod +x run-install.sh
71
+ ./run-install.sh
72
+ ```
73
+
74
+ ### Linux
75
+
76
+ Certain Linux-based operating systems may encounter complications with the installer. In such instances, we suggest installing the `requirements.txt` within a Python environment version 3.9 to 3.11.
77
+
78
+ ```bash
79
+ chmod +x run-install.sh
80
+ ./run-install.sh
81
+ ```
82
+
83
+ ### Makefile
84
+
85
+ For platforms such as [Paperspace](https://www.paperspace.com/):
86
+
87
+ ```bash
88
+ make run-install
89
+ ```
90
+
91
+ ## Usage
92
+
93
+ Visit [Applio Documentation](https://docs.applio.org/) for a detailed UI usage explanation.
94
+
95
+ ### Windows
96
+
97
+ ```bash
98
+ ./run-applio.bat
99
+ ```
100
+
101
+ ### macOS
102
+
103
+ ```bash
104
+ chmod +x run-applio.sh
105
+ ./run-applio.sh
106
+ ```
107
+
108
+ ### Linux
109
+
110
+ ```bash
111
+ chmod +x run-applio.sh
112
+ ./run-applio.sh
113
+ ```
114
+
115
+ ### Makefile
116
+
117
+ For platforms such as [Paperspace](https://www.paperspace.com/):
118
+
119
+ ```bash
120
+ make run-applio
121
+ ```
122
+
123
+ ## Technical Information
124
+
125
+ Applio uses an enhanced version of the Retrieval-based Voice Conversion (RVC) model, a powerful technique for transforming the voice of an audio signal to sound like another person. This advanced implementation of RVC in Applio enables high-quality voice conversion while maintaining simplicity and performance.
126
+
127
+ ### 0. Pre-Learning: Key Concepts in Speech Processing and Voice Conversion
128
+
129
+ This section introduces fundamental concepts in speech processing and voice conversion, paving the way for a deeper understanding of the RVC pipeline:
130
+
131
+ #### 1. Speech Representation
132
+
133
+ - **Phoneme:** The smallest unit of sound in a language that distinguishes one word from another. Examples: /k/, /æ/, /t/.
134
+ - **Spectrogram:** A visual representation of the frequency content of a sound over time, showing how the intensity of different frequencies changes over the duration of the audio.
135
+ - **Mel-Spectrogram:** A type of spectrogram that mimics human auditory perception, emphasizing frequencies that are more important to human hearing.
136
+ - **Speaker Embedding:** A vector representation that captures the unique acoustic characteristics of a speaker's voice, encoding information about pitch, tone, timbre, and other vocal qualities.
137
+
138
+ #### 2. Text-to-Speech (TTS)
139
+
140
+ - **TTS Model:** A machine learning model that generates artificial speech from written text.
141
+ - **Encoder-Decoder Architecture:** A common architecture in TTS models, where an encoder processes the text and pitch information to create a latent representation, and a decoder uses this representation to synthesize the audio signal.
142
+ - **Transformer Architecture:** A powerful neural network architecture particularly well-suited for sequence modeling, allowing the model to handle long sequences of text or audio and capture relationships between elements.
143
+
144
+ #### 3. Voice Conversion
145
+
146
+ - **Voice Conversion (VC):** The process of transforming the voice of a speaker in an audio signal to sound like another speaker.
147
+ - **Speaker Adaptation:** The process of adapting a TTS model to a specific speaker, often by training on a small dataset of the speaker's voice.
148
+ - **Retrieval-Based VC (RVC):** A voice conversion approach where speaker embeddings are retrieved from a database and used to guide the TTS model in synthesizing audio with the target speaker's voice.
149
+
150
+ #### 4. Additional Concepts
151
+
152
+ - **ContentVec:** A powerful self-supervised learning model for speech representation, excelling at capturing speaker-specific information.
153
+ - **FAISS:** A library for efficient similarity search, used to retrieve speaker embeddings that are similar to the extracted ContentVec embedding.
154
+ - **Neural Source Filter (NSF):** A module that models audio generation as a filtering process, allowing the model to produce high-quality and realistic audio signals by learning complex relationships between the source signal and the output waveform.
155
+
156
+ #### 5. Why are these concepts important?
157
+
158
+ Understanding these concepts is essential for appreciating the mechanics and capabilities of the RVC pipeline:
159
+
160
+ - **Speech Representation:** Different representations capture different aspects of speech, allowing for effective analysis and manipulation.
161
+ - **TTS Models:** The TTS model forms the foundation of RVC, providing the ability to synthesize audio from text and pitch.
162
+ - **Voice Conversion:** Voice conversion aims to transfer a speaker's identity to a different audio signal.
163
+ - **ContentVec and Speaker Embeddings:** ContentVec provides a powerful way to extract speaker-specific information, which is crucial for accurate voice conversion.
164
+ - **FAISS:** This library enables efficient speaker embedding retrieval, facilitating the selection of appropriate target voices.
165
+ - **NSF:** The NSF is a critical component of the TTS model, contributing to the generation of realistic and high-quality audio.
166
+
167
+ ### 1. Model Architecture
168
+
169
+ The RVC model comprises two main components:
170
+
171
+ #### A. Encoder-Decoder Network
172
+
173
+ This network synthesizes audio based on text and pitch information while incorporating speaker characteristics from the ContentVec embedding.
174
+
175
+ **Encoder:**
176
+
177
+ - **Input:** Phoneme sequences (text representation) and pitch information (optional).
178
+ - **Embeddings:**
179
+ - Phonemes are represented as vectors using linear layers, creating a dense representation of the text input.
180
+ - Pitch is usually converted to a one-hot encoding or a continuous value and embedded similarly.
181
+ - **Transformer Encoder:** Processes the embedded features in a highly parallel manner.
182
+
183
+ It employs:
184
+
185
+ - **Self-Attention:** Allows the encoder to attend to different parts of the input sequence to understand the relationships between words and their context.
186
+ - **Feedforward Networks (FFN):** Apply non-linear transformations to further refine the features captured by self-attention.
187
+ - **Layer Normalization:** Stabilizes training and improves performance by normalizing the outputs of each layer.
188
+ - **Dropout:** A regularization technique to prevent overfitting.
189
+ - **Output:** Produces a latent representation of the input text and pitch, capturing their relationships and serving as the input for the decoder.
190
+
191
+ **Decoder:**
192
+
193
+ - **Input:** The latent representation from the encoder.
194
+ - **Transformer Decoder:** Receives the encoder output and utilizes:
195
+ - **Self-Attention:** Allows the decoder to attend to different parts of the generated sequence to maintain consistency and coherence in the output audio.
196
+ - **Encoder-Decoder Attention:** Enables the decoder to incorporate information from the input text and pitch into the audio generation process.
197
+ - **Neural Source Filter (NSF):** A powerful component for generating audio, modeling the generation process as a filter applied to a source signal. It uses:
198
+ - **Upsampling:** Increases the resolution of the latent representation to match the desired length of the audio signal.
199
+ - **Residual Blocks:** Learn complex and non-linear relationships between input features and the output audio, contributing to realistic and detailed waveforms.
200
+ - **Source Module:** Generates the excitation signal (often harmonic) that drives the NSF. It combines sine waves (for voiced sounds) and noise (for unvoiced sounds) to create a natural source signal.
201
+ - **Noise Convolution:** Convolves noise with the harmonic signal to introduce additional variation and realism.
202
+ - **Final Convolutional Layer:** Converts the filtered output to a single-channel audio waveform.
203
+ - **Output:** Synthesized audio signal.
204
+
205
+ #### B. ContentVec Speaker Embedding Extractor
206
+
207
+ Extracts speaker-specific information from the input audio.
208
+
209
+ - **Input:** The preprocessed audio signal.
210
+ - **Processing:** The ContentVec model, trained on a massive dataset of speech data, processes the input audio and extracts a speaker embedding vector, capturing the unique acoustic properties of the speaker's voice.
211
+ - **Output:** A speaker embedding vector representing the voice of the speaker.
212
+
213
+ ### 2. Training Stage
214
+
215
+ The RVC model is trained using a combination of two key losses:
216
+
217
+ - **Generative Loss:**
218
+ - **Mel-Spectrogram:** The Mel-spectrogram is computed for both the target audio and the generated audio.
219
+ - **L1 Loss:** Measures the absolute difference between the Mel-spectrograms of the target and generated audio, encouraging the decoder to produce audio with a similar spectral profile.
220
+ - **Discriminative Loss:**
221
+ - **Multi-Period Discriminator:** Tries to distinguish between real and generated audio at different time scales, using convolution layers to capture long-term dependencies in the audio.
222
+ - **Adversarial Training:** The generator tries to fool the discriminator by producing audio that sounds real, while the discriminator is trained to correctly identify generated audio.
223
+ - **Optional KL Divergence Loss:** Measures the difference between the distributions of latent variables generated by the encoder and a posterior encoder (which infers the latent representation from the target audio). Encourages the model to learn a more efficient and stable latent representation.
224
+
225
+ ### 3. Inference Stage
226
+
227
+ The inference stage utilizes the trained model to convert the voice of an audio input to sound like a target speaker. Here's a breakdown:
228
+
229
+ **Input:**
230
+
231
+ - Phoneme sequences (text representation).
232
+ - Pitch information (optional).
233
+ - Target speaker ID (identifies the desired voice).
234
+
235
+ **Steps:**
236
+
237
+ - **ContentVec Embedding Extraction:**
238
+ - The ContentVec model processes the input audio and extracts a speaker embedding vector, capturing the voice characteristics of the speaker.
239
+ - **Optional Embedding Retrieval:**
240
+ - **FAISS Index:** Used to efficiently search for speaker embeddings similar to the extracted ContentVec embedding. It helps guide the voice conversion process toward a specific speaker when multiple speakers are available.
241
+ - **Embedding Retrieval:** The FAISS index is queried using the extracted ContentVec embedding, and similar embeddings are retrieved.
242
+ - **Embedding Manipulation:**
243
+ - **Blending:** The extracted ContentVec embedding can be blended with retrieved embeddings using the index_rate parameter, allowing control over how much the target speaker's voice influences the conversion.
244
+ - **Encoder-Decoder Processing:**
245
+ - **Encoder:** Encodes the phoneme sequences and pitch into a latent representation, capturing the relationships between them.
246
+ - **Decoder:** Synthesizes the audio signal, incorporating the speaker characteristics from the ContentVec embedding (potentially blended with retrieved embeddings).
247
+ - **Post-Processing:**
248
+ - **Resampling:** Adjusts the sampling rate of the generated audio if needed.
249
+ - **RMS Adjustment:** Adjusts the volume (RMS) of the output audio to match the input audio.
250
+
251
+ ### 4. Key Techniques
252
+
253
+ - **Transformer Architecture:** The Transformer architecture is a powerful tool for sequence modeling, enabling the encoder and decoder to efficiently process long sequences and capture complex relationships within the data.
254
+ - **Neural Source Filter (NSF):** Models audio generation as a filtering process, allowing the model to produce high-quality and realistic audio signals by learning complex relationships between the source signal and the output waveform.
255
+ - **Flow-Based Generative Model:** Enables the model to learn complex probability distributions for the audio signal, leading to more realistic and diverse generated speech.
256
+ - **Multi-period Discriminator:** Helps improve the quality and realism of the generated audio by evaluating the audio at
257
+
258
+ different temporal scales and providing feedback to the generator.
259
+
260
+ - **Relative Positional Encoding:** Helps the model understand the relative positions of elements within the input sequences, improving the model's ability to handle long sequences and maintain context.
261
+
262
+ ### 5. Future Challenges
263
+
264
+ Despite the advancements in Retrieval-Based Voice Conversion, several challenges and areas for future research remain:
265
+
266
+ - **Speaker Generalization:** Improving the ability of models to generalize to unseen speakers with minimal data.
267
+ - **Real-time Processing:** Enhancing the efficiency of models to support real-time voice conversion applications.
268
+ - **Emotional Expression:** Better capturing and transferring emotional nuances in voice conversion.
269
+ - **Noise Robustness:** Improving the robustness of voice conversion models to handle noisy and low-quality input audio.
270
+
271
+ ## Repository Enhancements
272
+
273
+ This repository has undergone significant enhancements to improve its functionality and maintainability:
274
+
275
+ - **Modular Codebase:** Restructured codebase for better organization, readability, and maintenance.
276
+ - **Hop Length Implementation:** Improved efficiency and performance, especially on Crepe (formerly Mangio-Crepe), thanks to [@Mangio621](https://github.com/Mangio621/Mangio-RVC-Fork).
277
+ - **Translations in 30+ Languages:** Added support for over 30 languages.
278
+ - **Cross-Platform Compatibility:** Ensured seamless operation across various platforms.
279
+ - **Optimized Requirements:** Fine-tuned project requirements for enhanced performance.
280
+ - **Streamlined Installation:** Simplified installation process for a user-friendly setup.
281
+ - **Hybrid F0 Estimation:** Introduced a personalized 'hybrid' F0 estimation method utilizing nanmedian.
282
+ - **Easy-to-Use UI:** Implemented an intuitive user interface.
283
+ - **Plugin System:** Introduced a plugin system for extending functionality.
284
+ - **Overtraining Detector:** Implemented a detector to prevent excessive training.
285
+ - **Model Search:** Integrated model search feature for easy discovery.
286
+ - **Pretrained Models:** Added support for custom pretrained models.
287
+ - **Voice Blender:** Developed a feature to combine two trained models to create a new one.
288
+ - **Accessibility Improvements:** Enhanced with descriptive tooltips for UI elements.
289
+ - **New F0 Extraction Methods:** Introduced methods like FCPE or Hybrid for pitch extraction.
290
+ - **Output Format Selection:** Added feature to choose audio file formats.
291
+ - **Hashing System:** Assigned unique IDs to models to prevent unauthorized duplication.
292
+ - **Model Download System:** Supported downloads from various platforms.
293
+ - **TTS Enhancements:** Improved Text-to-Speech functionality.
294
+ - **Split Audio:** Implemented audio splitting for faster processing.
295
+ - **Discord Presence:** Displayed usage status on Discord.
296
+ - **Flask Integration:** Enabled automatic model downloads via Flask.
297
+ - **Support Tab:** Added a tab for screen recording to report issues.
298
+
299
+ These enhancements contribute to a more robust and scalable codebase, making the repository more accessible for contributors and users alike.
300
+
301
+ ## Commercial Usage
302
+
303
+ For commercial purposes, please adhere to the guidelines outlined in the [MIT license](./LICENSE) governing this project. Prior to integrating Applio into your application, we kindly request that you contact us at [email protected] to ensure ethical use.
304
+
305
+ Please note, the use of Applio-generated audio files falls under your own responsibility and must always respect applicable copyrights. We encourage you to consider supporting the continuous development and maintenance of Applio through a donation.
306
+
307
+ Your cooperation and support are greatly appreciated. Thank you!
308
+
309
+ ## References
310
+
311
+ Applio is possible to these projects and those cited in their references.
312
+
313
+ - [gradio-screen-recorder](https://huggingface.co/spaces/gstaff/gradio-screen-recorder) by gstaff
314
+ - [rvc-cli](https://github.com/blaise-tk/rvc-cli) by blaisewf
315
+
316
+ ### Contributors
317
+
318
+ <a href="https://github.com/IAHispano/Applio/graphs/contributors" target="_blank">
319
+ <img src="https://contrib.rocks/image?repo=IAHispano/Applio" />
320
+ </a>
app.py CHANGED
@@ -1,7 +1,142 @@
 
1
  import gradio as gr
 
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
 
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import spaces
2
  import gradio as gr
3
+ import sys
4
+ import os
5
 
6
+ now_dir = os.getcwd()
7
+ sys.path.append(now_dir)
8
 
9
+ # Tabs
10
+ from tabs.inference.inference import inference_tab
11
+ from tabs.train.train import train_tab
12
+ from tabs.extra.extra import extra_tab
13
+ from tabs.report.report import report_tab
14
+ from tabs.download.download import download_tab
15
+ from tabs.tts.tts import tts_tab
16
+ from tabs.voice_blender.voice_blender import voice_blender_tab
17
+ from tabs.plugins.plugins import plugins_tab
18
+ from tabs.settings.version import version_tab
19
+ from tabs.settings.lang import lang_tab
20
+ from tabs.settings.restart import restart_tab
21
+ from tabs.settings.presence import presence_tab, load_config_presence
22
+ from tabs.settings.flask_server import flask_server_tab
23
+ from tabs.settings.fake_gpu import fake_gpu_tab, gpu_available, load_fake_gpu
24
+ from tabs.settings.themes import theme_tab
25
+ from tabs.settings.precision import precision_tab
26
+
27
+ # Assets
28
+ import assets.themes.loadThemes as loadThemes
29
+ from assets.i18n.i18n import I18nAuto
30
+ import assets.installation_checker as installation_checker
31
+ from assets.discord_presence import RPCManager
32
+ from assets.flask.server import start_flask, load_config_flask
33
+ from core import run_prerequisites_script
34
+
35
+ # Disable logging
36
+ import logging
37
+
38
+ logging.getLogger("uvicorn").setLevel(logging.WARNING)
39
+ logging.getLogger("httpx").setLevel(logging.WARNING)
40
+
41
+ run_prerequisites_script(False, True, True, True)
42
+
43
+ i18n = I18nAuto()
44
+ if load_config_presence() == True:
45
+ RPCManager.start_presence()
46
+ installation_checker.check_installation()
47
+
48
+ if load_config_flask() == True:
49
+ print("Starting Flask server")
50
+ start_flask()
51
+
52
+ my_applio = loadThemes.load_json()
53
+ if my_applio:
54
+ pass
55
+ else:
56
+ my_applio = "ParityError/Interstellar"
57
+
58
+ with gr.Blocks(theme=my_applio, title="Applio") as Applio:
59
+ gr.Markdown("# Applio")
60
+ gr.Markdown(
61
+ i18n(
62
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience."
63
+ )
64
+ )
65
+ gr.Markdown(
66
+ i18n(
67
+ "[Support](https://discord.gg/IAHispano) — [Discord Bot](https://discord.com/oauth2/authorize?client_id=1144714449563955302&permissions=1376674695271&scope=bot%20applications.commands) — [Find Voices](https://applio.org/models) — [GitHub](https://github.com/IAHispano/Applio)"
68
+ )
69
+ )
70
+ with gr.Tab(i18n("Inference")):
71
+ inference_tab()
72
+
73
+ with gr.Tab(i18n("Train")):
74
+ if gpu_available() or load_fake_gpu():
75
+ train_tab()
76
+ else:
77
+ gr.Markdown(
78
+ i18n(
79
+ "Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option."
80
+ )
81
+ )
82
+
83
+ with gr.Tab(i18n("TTS")):
84
+ tts_tab()
85
+
86
+ with gr.Tab(i18n("Voice Blender")):
87
+ voice_blender_tab()
88
+
89
+ with gr.Tab(i18n("Plugins")):
90
+ plugins_tab()
91
+
92
+ with gr.Tab(i18n("Download")):
93
+ download_tab()
94
+
95
+ with gr.Tab(i18n("Report a Bug")):
96
+ report_tab()
97
+
98
+ with gr.Tab(i18n("Extra")):
99
+ extra_tab()
100
+
101
+ with gr.Tab(i18n("Settings")):
102
+ presence_tab()
103
+ flask_server_tab()
104
+ precision_tab()
105
+ if not gpu_available():
106
+ fake_gpu_tab()
107
+ theme_tab()
108
+ version_tab()
109
+ lang_tab()
110
+ restart_tab()
111
+
112
+
113
+ def launch_gradio(port):
114
+ Applio.launch(
115
+ favicon_path="assets/ICON.ico",
116
+ share="--share" in sys.argv,
117
+ inbrowser="--open" in sys.argv,
118
+ server_port=port,
119
+ )
120
+
121
+
122
+ if __name__ == "__main__":
123
+ port = 6969
124
+ if "--port" in sys.argv:
125
+ port_index = sys.argv.index("--port") + 1
126
+ if port_index < len(sys.argv):
127
+ port = int(sys.argv[port_index])
128
+
129
+ launch_gradio(port)
130
+
131
+ else:
132
+ # if launch fails, decrement port number and try again (up to 10 times)
133
+ for i in range(10):
134
+ try:
135
+ launch_gradio(port)
136
+ break
137
+ except OSError:
138
+ print("Failed to launch on port", port, "- trying again...")
139
+ port -= 1
140
+ except Exception as error:
141
+ print(f"An error occurred launching Gradio: {error}")
142
+ break
assets/Applio.ipynb ADDED
@@ -0,0 +1,483 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "metadata": {
6
+ "id": "ymhGfgFSR17k"
7
+ },
8
+ "source": [
9
+ "## **Applio**\n",
10
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.\n",
11
+ "\n",
12
+ "[Support](https://discord.gg/IAHispano) — [Discord Bot](https://discord.com/oauth2/authorize?client_id=1144714449563955302&permissions=1376674695271&scope=bot%20applications.commands) — [Find Voices](https://applio.org/models) — [GitHub](https://github.com/IAHispano/Applio)\n",
13
+ "\n",
14
+ "<br>\n",
15
+ "\n",
16
+ "### **Credits**\n",
17
+ "- Encryption method: [Hina](https://github.com/hinabl)\n",
18
+ "- Extra section: [Poopmaster](https://github.com/poiqazwsx)\n",
19
+ "- Main development: [Applio Team](https://github.com/IAHispano)\n",
20
+ "\n",
21
+ "<br>\n",
22
+ "\n"
23
+ ]
24
+ },
25
+ {
26
+ "cell_type": "code",
27
+ "execution_count": null,
28
+ "metadata": {
29
+ "cellView": "form",
30
+ "id": "vtON700qokuQ"
31
+ },
32
+ "outputs": [],
33
+ "source": [
34
+ "# @title **Install Applio**\n",
35
+ "\n",
36
+ "import codecs\n",
37
+ "import time\n",
38
+ "import os\n",
39
+ "import csv\n",
40
+ "import shutil\n",
41
+ "import tarfile\n",
42
+ "import subprocess\n",
43
+ "from pathlib import Path\n",
44
+ "from datetime import datetime\n",
45
+ "\n",
46
+ "rot_47 = lambda encoded_text: \"\".join(\n",
47
+ " [\n",
48
+ " (\n",
49
+ " chr(\n",
50
+ " (ord(c) - (ord(\"a\") if c.islower() else ord(\"A\")) - 47) % 26\n",
51
+ " + (ord(\"a\") if c.islower() else ord(\"A\"))\n",
52
+ " )\n",
53
+ " if c.isalpha()\n",
54
+ " else c\n",
55
+ " )\n",
56
+ " for c in encoded_text\n",
57
+ " ]\n",
58
+ ")\n",
59
+ "\n",
60
+ "org_name = rot_47(\"Vkkgdj\")\n",
61
+ "new_name = rot_47(\"kmjbmvh_hg\")\n",
62
+ "uioawhd = rot_47(codecs.decode(\"pbbxa://oqbpcj.kwu/QIPqaxivw/Ixxtqw.oqb\", \"rot_13\"))\n",
63
+ "uyadwa = codecs.decode(\"ncc.cl\", \"rot_13\")\n",
64
+ "!git clone --depth 1 $uioawhd --branch 3.2.2 --single-branch\n",
65
+ "!mv $org_name $new_name\n",
66
+ "%cd $new_name/\n",
67
+ "\n",
68
+ "from IPython.display import clear_output, Javascript\n",
69
+ "\n",
70
+ "clear_output()\n",
71
+ "\n",
72
+ "E = Exception\n",
73
+ "B = print\n",
74
+ "\n",
75
+ "\n",
76
+ "def vidal_setup(ForceIn):\n",
77
+ " L = \"Kikpm.ovm.bu\"\n",
78
+ " K = \"/content/\"\n",
79
+ " C = ForceIn\n",
80
+ "\n",
81
+ " def F():\n",
82
+ " print(\"Installing pip packages...\")\n",
83
+ " subprocess.check_call([\"pip\", \"install\", \"-r\", \"requirements.txt\", \"--quiet\"])\n",
84
+ "\n",
85
+ " A = K + rot_47(L)\n",
86
+ " G = K + rot_47(L)\n",
87
+ " D = \"/\"\n",
88
+ " if not os.path.exists(A):\n",
89
+ " M = os.path.dirname(A)\n",
90
+ " os.makedirs(M, exist_ok=True)\n",
91
+ " print(\"No cached install found..\")\n",
92
+ " try:\n",
93
+ " N = rot_47(\n",
94
+ " codecs.decode(\n",
95
+ " \"pbbxa://pcooqvonikm.kw/QIPqaxivw/Ixxtqw/zmawtdm/uiqv/Kwtij/Xvxcz.biz.oh\",\n",
96
+ " \"rot_13\",\n",
97
+ " )\n",
98
+ " )\n",
99
+ " subprocess.run([\"wget\", \"-O\", A, N])\n",
100
+ " print(\"Download completed successfully!\")\n",
101
+ " except E as H:\n",
102
+ " print(str(H))\n",
103
+ " if os.path.exists(A):\n",
104
+ " os.remove(A)\n",
105
+ " if Path(A).exists():\n",
106
+ " with tarfile.open(G, \"r:gz\") as I:\n",
107
+ " for J in I.getmembers():\n",
108
+ " O = os.path.join(D, J.name)\n",
109
+ " try:\n",
110
+ " I.extract(J, D)\n",
111
+ " except E as H:\n",
112
+ " print(\"Failed to extract a file\")\n",
113
+ " C = True\n",
114
+ " print(f\"Extraction of {G} to {D} completed.\")\n",
115
+ " if os.path.exists(A):\n",
116
+ " os.remove(A)\n",
117
+ " if C:\n",
118
+ " F()\n",
119
+ " C = False\n",
120
+ " else:\n",
121
+ " F()\n",
122
+ "\n",
123
+ "\n",
124
+ "vidal_setup(False)\n",
125
+ "clear_output()\n",
126
+ "print(\"Finished installing requirements!\")"
127
+ ]
128
+ },
129
+ {
130
+ "cell_type": "code",
131
+ "execution_count": null,
132
+ "metadata": {
133
+ "cellView": "form",
134
+ "id": "-7cQtXouqpQi"
135
+ },
136
+ "outputs": [],
137
+ "source": [
138
+ "# @title **Start Applio**\n",
139
+ "# @markdown ### Just activate this in case the share link of the gradio dont work\n",
140
+ "import codecs\n",
141
+ "import threading\n",
142
+ "import urllib.request\n",
143
+ "import time\n",
144
+ "import ipywidgets as widgets\n",
145
+ "from IPython.display import display\n",
146
+ "!npm install -g localtunnel\n",
147
+ "new_name = rot_47(\"kmjbmvh_hg\")\n",
148
+ "%cd \"/content/program_ml\"\n",
149
+ "uyadwa = codecs.decode(\"ncc.cl\", \"rot_13\")\n",
150
+ "share_tunnel = False # @param {type:\"boolean\"}\n",
151
+ "def start_applio():\n",
152
+ " if share_tunnel:\n",
153
+ " !python $uyadwa --listen\n",
154
+ " else:\n",
155
+ " !python $uyadwa --listen --share\n",
156
+ "\n",
157
+ "%load_ext tensorboard\n",
158
+ "%reload_ext tensorboard\n",
159
+ "%tensorboard --logdir logs --bind_all\n",
160
+ "\n",
161
+ "if \"autobackups\" not in globals():\n",
162
+ " autobackups = False\n",
163
+ "\n",
164
+ "if autobackups:\n",
165
+ " thread = threading.Thread(target=backup_files)\n",
166
+ " thread.start()\n",
167
+ "\n",
168
+ "thread_applio = threading.Thread(target=start_applio)\n",
169
+ "thread_applio.start()\n",
170
+ "\n",
171
+ "if share_tunnel:\n",
172
+ " if not os.path.exists(codecs.decode(\"eip/zbqryf/cergenvarqf/cergenvarq_i2/s0T48x.cgu\", \"rot_13\")):\n",
173
+ " while not os.path.exists(codecs.decode(\"eip/zbqryf/cergenvarqf/cergenvarq_i2/s0T48x.cgu\", \"rot_13\")):\n",
174
+ " time.sleep(2)\n",
175
+ " time.sleep(5)\n",
176
+ " else:\n",
177
+ " time.sleep(10)\n",
178
+ " with open('url.txt', 'w') as file:\n",
179
+ " file.write('')\n",
180
+ "\n",
181
+ " get_ipython().system_raw('lt --port 6969 >> url.txt 2>&1 &')\n",
182
+ "\n",
183
+ " time.sleep(4)\n",
184
+ "\n",
185
+ " endpoint_ip = urllib.request.urlopen('https://ipv4.icanhazip.com').read().decode('utf8').strip(\"\\n\")\n",
186
+ "\n",
187
+ " with open('url.txt', 'r') as file:\n",
188
+ " tunnel_url = file.read()\n",
189
+ " tunnel_url = tunnel_url.replace(\"your url is: \", \"\")\n",
190
+ "\n",
191
+ " print(f\"Share Link: \\033[0m\\033[93m{tunnel_url}\\033[0m\", end=\"\\033[0m\\n\")\n",
192
+ "\n",
193
+ " password_endpoint_widget = widgets.Text(\n",
194
+ " value=endpoint_ip,\n",
195
+ " description='Password IP:',\n",
196
+ " disabled=True\n",
197
+ " )\n",
198
+ " display(password_endpoint_widget)\n",
199
+ "\n",
200
+ "\n",
201
+ "\n",
202
+ "while True:\n",
203
+ " time.sleep(5)\n"
204
+ ]
205
+ },
206
+ {
207
+ "cell_type": "markdown",
208
+ "metadata": {
209
+ "id": "3b59-2x-qEnX"
210
+ },
211
+ "source": [
212
+ "### **Extra**\n",
213
+ "Enjoy extra options that can make it easier for you to use Applio\n"
214
+ ]
215
+ },
216
+ {
217
+ "cell_type": "code",
218
+ "execution_count": null,
219
+ "metadata": {
220
+ "cellView": "form",
221
+ "id": "19LNv6iYqF6_"
222
+ },
223
+ "outputs": [],
224
+ "source": [
225
+ "# @title Mount Drive\n",
226
+ "# @markdown Mount the files from Google Drive to the Colab.\n",
227
+ "from google.colab import drive\n",
228
+ "\n",
229
+ "drive.mount(\"/content/drive\")"
230
+ ]
231
+ },
232
+ {
233
+ "cell_type": "code",
234
+ "execution_count": null,
235
+ "metadata": {
236
+ "cellView": "form",
237
+ "id": "I5o6MlpFouiG"
238
+ },
239
+ "outputs": [],
240
+ "source": [
241
+ "# @title Auto Backup\n",
242
+ "# @markdown When running it, it will be activated or deactivated previously to start up together with Applio.\n",
243
+ "LOGS_FOLDER = \"/content/program_ml/logs/\"\n",
244
+ "GOOGLE_DRIVE_PATH = \"/content/drive/MyDrive/ApplioBackup\"\n",
245
+ "\n",
246
+ "if \"autobackups\" not in globals():\n",
247
+ " autobackups = False\n",
248
+ "\n",
249
+ "\n",
250
+ "def backup_files():\n",
251
+ " print(\"\\nStarting backup loop...\")\n",
252
+ " last_backup_timestamps_path = os.path.join(\n",
253
+ " LOGS_FOLDER, \"last_backup_timestamps.txt\"\n",
254
+ " )\n",
255
+ " fully_updated = False\n",
256
+ "\n",
257
+ " while True:\n",
258
+ " try:\n",
259
+ " updated = False\n",
260
+ " last_backup_timestamps = {}\n",
261
+ "\n",
262
+ " try:\n",
263
+ " with open(last_backup_timestamps_path, \"r\") as f:\n",
264
+ " last_backup_timestamps = dict(line.strip().split(\":\") for line in f)\n",
265
+ " except FileNotFoundError:\n",
266
+ " pass\n",
267
+ "\n",
268
+ " for root, dirs, files in os.walk(LOGS_FOLDER):\n",
269
+ " # Excluding \"zips\" directory\n",
270
+ " if \"zips\" in dirs:\n",
271
+ " dirs.remove(\"zips\")\n",
272
+ " if \"mute\" in dirs:\n",
273
+ " dirs.remove(\"mute\")\n",
274
+ " for filename in files:\n",
275
+ " if filename != \"last_backup_timestamps.txt\":\n",
276
+ " filepath = os.path.join(root, filename)\n",
277
+ " if os.path.isfile(filepath):\n",
278
+ " backup_filepath = os.path.join(\n",
279
+ " GOOGLE_DRIVE_PATH,\n",
280
+ " os.path.relpath(filepath, LOGS_FOLDER),\n",
281
+ " )\n",
282
+ " backup_folderpath = os.path.dirname(backup_filepath)\n",
283
+ " if not os.path.exists(backup_folderpath):\n",
284
+ " os.makedirs(backup_folderpath)\n",
285
+ " print(\n",
286
+ " f\"Created backup folder: {backup_folderpath}\",\n",
287
+ " flush=True,\n",
288
+ " )\n",
289
+ " last_backup_timestamp = last_backup_timestamps.get(filepath)\n",
290
+ " current_timestamp = os.path.getmtime(filepath)\n",
291
+ " if (\n",
292
+ " last_backup_timestamp is None\n",
293
+ " or float(last_backup_timestamp) < current_timestamp\n",
294
+ " ):\n",
295
+ " shutil.copy2(filepath, backup_filepath)\n",
296
+ " last_backup_timestamps[filepath] = str(\n",
297
+ " current_timestamp\n",
298
+ " )\n",
299
+ " if last_backup_timestamp is None:\n",
300
+ " print(f\"Backed up file: {filename}\")\n",
301
+ " else:\n",
302
+ " print(f\"Updating backed up file: {filename}\")\n",
303
+ " updated = True\n",
304
+ " fully_updated = False\n",
305
+ "\n",
306
+ " for filepath in list(last_backup_timestamps.keys()):\n",
307
+ " if not os.path.exists(filepath):\n",
308
+ " backup_filepath = os.path.join(\n",
309
+ " GOOGLE_DRIVE_PATH, os.path.relpath(filepath, LOGS_FOLDER)\n",
310
+ " )\n",
311
+ " if os.path.exists(backup_filepath):\n",
312
+ " os.remove(backup_filepath)\n",
313
+ " print(f\"Deleted file: {filepath}\")\n",
314
+ " del last_backup_timestamps[filepath]\n",
315
+ " updated = True\n",
316
+ " fully_updated = False\n",
317
+ "\n",
318
+ " if not updated and not fully_updated:\n",
319
+ " print(\"Files are up to date.\")\n",
320
+ " fully_updated = True\n",
321
+ " sleep_time = 15\n",
322
+ " else:\n",
323
+ " sleep_time = 0.1\n",
324
+ "\n",
325
+ " with open(last_backup_timestamps_path, \"w\") as f:\n",
326
+ " for filepath, timestamp in last_backup_timestamps.items():\n",
327
+ " f.write(f\"{filepath}:{timestamp}\\n\")\n",
328
+ "\n",
329
+ " time.sleep(sleep_time)\n",
330
+ "\n",
331
+ " except Exception as error:\n",
332
+ " print(f\"An error occurred during backup: {error}\", flush=True)\n",
333
+ "\n",
334
+ "\n",
335
+ "if autobackups:\n",
336
+ " autobackups = False\n",
337
+ " print(\"Autobackup Disabled\")\n",
338
+ "else:\n",
339
+ " autobackups = True\n",
340
+ " print(\"Autobackup Enabled\")"
341
+ ]
342
+ },
343
+ {
344
+ "cell_type": "code",
345
+ "execution_count": null,
346
+ "metadata": {},
347
+ "outputs": [],
348
+ "source": [
349
+ "# @title Setup new logs folder format\n",
350
+ "# @markdown Put the exact name you put as your Model Name in Applio.\n",
351
+ "modelname = \"My-Project\" # @param {type:\"string\"}\n",
352
+ "logs_folder = f\"/content/program_ml/logs/{modelname}/\"\n",
353
+ "\n",
354
+ "import os\n",
355
+ "\n",
356
+ "folder_renames = {\n",
357
+ " \"0_gt_wavs\": \"sliced_audios\",\n",
358
+ " \"1_16k_wavs\": \"sliced_audios_16k\",\n",
359
+ " \"2a_f0\": \"f0\",\n",
360
+ " \"2b-f0nsf\": \"f0_voiced\",\n",
361
+ " \"3_feature768\": \"v2_extracted\"\n",
362
+ "}\n",
363
+ "\n",
364
+ "def rename_folders(base_path, rename_dict):\n",
365
+ " for old_name, new_name in rename_dict.items():\n",
366
+ " old_path = os.path.join(base_path, old_name)\n",
367
+ " new_path = os.path.join(base_path, new_name)\n",
368
+ " if os.path.exists(old_path):\n",
369
+ " os.rename(old_path, new_path)\n",
370
+ " print(f\"Renamed {old_path} to {new_path}\")\n",
371
+ " else:\n",
372
+ " print(f\"Folder {old_path} does not exist\")\n",
373
+ "\n",
374
+ "rename_folders(logs_folder, folder_renames)\n"
375
+ ]
376
+ },
377
+ {
378
+ "cell_type": "code",
379
+ "execution_count": null,
380
+ "metadata": {
381
+ "cellView": "form",
382
+ "id": "ifV_vc4h4Uvx"
383
+ },
384
+ "outputs": [],
385
+ "source": [
386
+ "# @title Load a Backup\n",
387
+ "from google.colab import drive\n",
388
+ "import os\n",
389
+ "\n",
390
+ "# @markdown Put the exact name you put as your Model Name in Applio.\n",
391
+ "modelname = \"My-Project\" # @param {type:\"string\"}\n",
392
+ "source_path = \"/content/drive/MyDrive/ApplioBackup/\" + modelname\n",
393
+ "destination_path = \"/content/program_ml/logs/\" + modelname\n",
394
+ "backup_timestamps_file = \"last_backup_timestamps.txt\"\n",
395
+ "if not os.path.exists(source_path):\n",
396
+ " print(\n",
397
+ " \"The model folder does not exist. Please verify the name is correct or check your Google Drive.\"\n",
398
+ " )\n",
399
+ "else:\n",
400
+ " time_ = os.path.join(\"/content/drive/MyDrive/ApplioBackup/\", backup_timestamps_file)\n",
401
+ " time__ = os.path.join(\"/content/program_ml/logs/\", backup_timestamps_file)\n",
402
+ " if os.path.exists(time_):\n",
403
+ " shutil.copy(time_, time__)\n",
404
+ " shutil.copytree(source_path, destination_path)\n",
405
+ " print(\"Model backup loaded successfully.\")"
406
+ ]
407
+ },
408
+ {
409
+ "cell_type": "code",
410
+ "execution_count": null,
411
+ "metadata": {
412
+ "cellView": "form",
413
+ "id": "leWbhk1X4XoY"
414
+ },
415
+ "outputs": [],
416
+ "source": [
417
+ "# @title Download all custom pretrains\n",
418
+ "import os\n",
419
+ "import urllib.request\n",
420
+ "\n",
421
+ "%mkdir /content/program_ml/rvc/models/pretraineds/pretraineds_custom\n",
422
+ "pretrained_urls = [\n",
423
+ " # Ov2 Super\n",
424
+ " \"https://huggingface.co/ORVC/Ov2Super/resolve/main/f0Ov2Super32kG.pth\",\n",
425
+ " \"https://huggingface.co/ORVC/Ov2Super/resolve/main/f0Ov2Super32kD.pth\",\n",
426
+ " \"https://huggingface.co/ORVC/Ov2Super/resolve/main/f0Ov2Super40kG.pth\",\n",
427
+ " \"https://huggingface.co/ORVC/Ov2Super/resolve/main/f0Ov2Super40kD.pth\",\n",
428
+ "\n",
429
+ " # TITAN\n",
430
+ " \"https://huggingface.co/blaise-tk/TITAN/resolve/main/models/medium/40k/pretrained/G-f040k-TITAN-Medium.pth\",\n",
431
+ " \"https://huggingface.co/blaise-tk/TITAN/resolve/main/models/medium/40k/pretrained/D-f040k-TITAN-Medium.pth\",\n",
432
+ " \"https://huggingface.co/blaise-tk/TITAN/resolve/main/models/medium/32k/pretrained/G-f032k-TITAN-Medium.pth\",\n",
433
+ " \"https://huggingface.co/blaise-tk/TITAN/resolve/main/models/medium/32k/pretrained/D-f032k-TITAN-Medium.pth\",\n",
434
+ "\n",
435
+ " # Snowie V3\n",
436
+ " \"https://huggingface.co/MUSTAR/SnowieV3.1-32k/resolve/main/D_SnowieV3.1_32k.pth\",\n",
437
+ " \"https://huggingface.co/MUSTAR/SnowieV3.1-32k/resolve/main/G_SnowieV3.1_32k.pth\",\n",
438
+ " \"https://huggingface.co/MUSTAR/SnowieV3.1-40k/resolve/main/G_SnowieV3.1_40k.pth\",\n",
439
+ " \"https://huggingface.co/MUSTAR/SnowieV3.1-40k/resolve/main/D_SnowieV3.1_40k.pth\",\n",
440
+ " \"https://huggingface.co/MUSTAR/SnowieV3.1-48k/resolve/main/G_SnowieV3.1_48k.pth\",\n",
441
+ " \"https://huggingface.co/MUSTAR/SnowieV3.1-48k/resolve/main/D_SnowieV3.1_48k.pth\",\n",
442
+ "\n",
443
+ " # RIN E3\n",
444
+ " \"https://huggingface.co/MUSTAR/RIN_E3/resolve/main/RIN_E3_G.pth\",\n",
445
+ " \"https://huggingface.co/MUSTAR/RIN_E3/resolve/main/RIN_E3_D.pth\",\n",
446
+ "\n",
447
+ " # KLM\n",
448
+ " \"https://huggingface.co/SeoulStreamingStation/KLM4.1/resolve/main/D_KLM41_32k.pth\",\n",
449
+ " \"https://huggingface.co/SeoulStreamingStation/KLM4.1/resolve/main/G_KLM41_32k.pth\",\n",
450
+ " \"https://huggingface.co/SeoulStreamingStation/KLM4.1/resolve/main/D_KLM41_48k.pth\",\n",
451
+ " \"https://huggingface.co/SeoulStreamingStation/KLM4.1/resolve/main/G_KLM41_48k.pth\",\n",
452
+ "\n",
453
+ " # SnowieV3 X RIN_E3\n",
454
+ " \"https://huggingface.co/MUSTAR/SnowieV3.1-X-RinE3-40K/resolve/main/D_Snowie-X-Rin_40k.pth\",\n",
455
+ " \"https://huggingface.co/MUSTAR/SnowieV3.1-X-RinE3-40K/resolve/main/G_Snowie-X-Rin_40k.pth\",\n",
456
+ "]\n",
457
+ "output_directory = \"/content/program_ml/rvc/models/pretraineds/pretraineds_custom\"\n",
458
+ "for url in pretrained_urls:\n",
459
+ " filename = os.path.join(output_directory, os.path.basename(url))\n",
460
+ " urllib.request.urlretrieve(url, filename)"
461
+ ]
462
+ }
463
+ ],
464
+ "metadata": {
465
+ "accelerator": "GPU",
466
+ "colab": {
467
+ "collapsed_sections": [
468
+ "3b59-2x-qEnX"
469
+ ],
470
+ "gpuType": "T4",
471
+ "provenance": []
472
+ },
473
+ "kernelspec": {
474
+ "display_name": "Python 3",
475
+ "name": "python3"
476
+ },
477
+ "language_info": {
478
+ "name": "python"
479
+ }
480
+ },
481
+ "nbformat": 4,
482
+ "nbformat_minor": 0
483
+ }
assets/Applio_NoUI.ipynb ADDED
@@ -0,0 +1,705 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "metadata": {
6
+ "id": "0pKllbPyK_BC"
7
+ },
8
+ "source": [
9
+ "# Applio NoUI\n",
10
+ "Created by [Blaise](https://github.com/blaise-tk) with [Vidal](https://github.com/Vidalnt) and [Poopmaster](https://github.com/poiqazwsx). Based on [RVC_CLI](https://github.com/blaise-tk/RVC_CLI).\n",
11
+ "\n",
12
+ "- Colab inspired on [RVC v2 Disconnected](https://colab.research.google.com/drive/1XIPCP9ken63S7M6b5ui1b36Cs17sP-NS).\n",
13
+ "\n"
14
+ ]
15
+ },
16
+ {
17
+ "cell_type": "markdown",
18
+ "metadata": {
19
+ "id": "Y-iR3WeLMlac"
20
+ },
21
+ "source": [
22
+ "### If you restart the runtime, run it again."
23
+ ]
24
+ },
25
+ {
26
+ "cell_type": "code",
27
+ "execution_count": null,
28
+ "metadata": {
29
+ "id": "xwZkZGd-H0zT"
30
+ },
31
+ "outputs": [],
32
+ "source": [
33
+ "%cd /content/Applio"
34
+ ]
35
+ },
36
+ {
37
+ "cell_type": "markdown",
38
+ "metadata": {
39
+ "id": "ymMCTSD6m8qV"
40
+ },
41
+ "source": [
42
+ "# Installation\n",
43
+ "## If the runtime restarts, run the cell above and re-run the installation steps."
44
+ ]
45
+ },
46
+ {
47
+ "cell_type": "code",
48
+ "execution_count": null,
49
+ "metadata": {
50
+ "cellView": "form",
51
+ "id": "yFhAeKGOp9aa"
52
+ },
53
+ "outputs": [],
54
+ "source": [
55
+ "# @title Mount Google Drive\n",
56
+ "from google.colab import drive\n",
57
+ "\n",
58
+ "drive.mount(\"/content/drive\")"
59
+ ]
60
+ },
61
+ {
62
+ "cell_type": "code",
63
+ "execution_count": null,
64
+ "metadata": {
65
+ "cellView": "form",
66
+ "id": "7GysECSxBya4"
67
+ },
68
+ "outputs": [],
69
+ "source": [
70
+ "# @title Clone\n",
71
+ "!git clone https://github.com/IAHispano/Applio --branch 3.2.2 --single-branch\n",
72
+ "%cd /content/Applio"
73
+ ]
74
+ },
75
+ {
76
+ "cell_type": "code",
77
+ "execution_count": null,
78
+ "metadata": {
79
+ "cellView": "form",
80
+ "id": "CAXW55BQm0PP"
81
+ },
82
+ "outputs": [],
83
+ "source": [
84
+ "# @title Install\n",
85
+ "rot_47 = lambda encoded_text: \"\".join(\n",
86
+ " [\n",
87
+ " (\n",
88
+ " chr(\n",
89
+ " (ord(c) - (ord(\"a\") if c.islower() else ord(\"A\")) - 47) % 26\n",
90
+ " + (ord(\"a\") if c.islower() else ord(\"A\"))\n",
91
+ " )\n",
92
+ " if c.isalpha()\n",
93
+ " else c\n",
94
+ " )\n",
95
+ " for c in encoded_text\n",
96
+ " ]\n",
97
+ ")\n",
98
+ "import codecs\n",
99
+ "import os\n",
100
+ "import shutil\n",
101
+ "import tarfile\n",
102
+ "import subprocess\n",
103
+ "from pathlib import Path\n",
104
+ "from datetime import datetime\n",
105
+ "E = Exception\n",
106
+ "B = print\n",
107
+ "\n",
108
+ "\n",
109
+ "def vidal_setup(ForceIn):\n",
110
+ " L = \"Kikpm.ovm.bu\"\n",
111
+ " K = \"/content/\"\n",
112
+ " C = ForceIn\n",
113
+ "\n",
114
+ " def F():\n",
115
+ " print(\"Installing pip packages...\")\n",
116
+ " subprocess.check_call([\"pip\", \"install\", \"-r\", \"requirements.txt\", \"--quiet\"])\n",
117
+ "\n",
118
+ " A = K + rot_47(L)\n",
119
+ " G = K + rot_47(L)\n",
120
+ " D = \"/\"\n",
121
+ " if not os.path.exists(A):\n",
122
+ " M = os.path.dirname(A)\n",
123
+ " os.makedirs(M, exist_ok=True)\n",
124
+ " print(\"No cached install found..\")\n",
125
+ " try:\n",
126
+ " N = rot_47(\n",
127
+ " codecs.decode(\n",
128
+ " \"pbbxa://pcooqvonikm.kw/QIPqaxivw/Ixxtqw/zmawtdm/uiqv/Kwtij/Xvxcz.biz.oh\",\n",
129
+ " \"rot_13\",\n",
130
+ " )\n",
131
+ " )\n",
132
+ " subprocess.run([\"wget\", \"-O\", A, N])\n",
133
+ " print(\"Download completed successfully!\")\n",
134
+ " except E as H:\n",
135
+ " print(str(H))\n",
136
+ " if os.path.exists(A):\n",
137
+ " os.remove(A)\n",
138
+ " if Path(A).exists():\n",
139
+ " with tarfile.open(G, \"r:gz\") as I:\n",
140
+ " for J in I.getmembers():\n",
141
+ " O = os.path.join(D, J.name)\n",
142
+ " try:\n",
143
+ " I.extract(J, D)\n",
144
+ " except E as H:\n",
145
+ " print(\"Failed to extract a file\")\n",
146
+ " C = True\n",
147
+ " print(f\"Extraction of {G} to {D} completed.\")\n",
148
+ " if os.path.exists(A):\n",
149
+ " os.remove(A)\n",
150
+ " if C:\n",
151
+ " F()\n",
152
+ " C = False\n",
153
+ " else:\n",
154
+ " F()\n",
155
+ "\n",
156
+ "\n",
157
+ "vidal_setup(False)\n",
158
+ "print(\"Finished installing requirements!\")"
159
+ ]
160
+ },
161
+ {
162
+ "cell_type": "code",
163
+ "execution_count": null,
164
+ "metadata": {
165
+ "cellView": "form",
166
+ "id": "QlTibPnjmj6-"
167
+ },
168
+ "outputs": [],
169
+ "source": [
170
+ "# @title Download models\n",
171
+ "!python core.py prerequisites"
172
+ ]
173
+ },
174
+ {
175
+ "cell_type": "markdown",
176
+ "metadata": {
177
+ "id": "YzaeMYsUE97Y"
178
+ },
179
+ "source": [
180
+ "# Infer\n"
181
+ ]
182
+ },
183
+ {
184
+ "cell_type": "code",
185
+ "execution_count": null,
186
+ "metadata": {
187
+ "cellView": "form",
188
+ "id": "v0EgikgjFCjE"
189
+ },
190
+ "outputs": [],
191
+ "source": [
192
+ "# @title Download model\n",
193
+ "# @markdown Hugging Face or Google Drive\n",
194
+ "model_link = \"https://huggingface.co/Darwin/Darwin/resolve/main/Darwin.zip\" # @param {type:\"string\"}\n",
195
+ "\n",
196
+ "!python core.py download --model_link \"{model_link}\""
197
+ ]
198
+ },
199
+ {
200
+ "cell_type": "code",
201
+ "execution_count": null,
202
+ "metadata": {
203
+ "cellView": "form",
204
+ "id": "lrCKEOzvDPRu"
205
+ },
206
+ "outputs": [],
207
+ "source": [
208
+ "# @title Run Inference\n",
209
+ "# @markdown Please upload the audio file to your Google Drive path `/content/drive/MyDrive` and specify its name here. For the model name, use the zip file name without the extension. Alternatively, you can check the path `/content/Applio/logs` for the model name (name of the folder).\n",
210
+ "\n",
211
+ "import os\n",
212
+ "\n",
213
+ "current_dir = os.getcwd()\n",
214
+ "\n",
215
+ "model_name = \"Darwin\" # @param {type:\"string\"}\n",
216
+ "model_folder = os.path.join(current_dir, f\"logs/{model_name}\")\n",
217
+ "\n",
218
+ "if not os.path.exists(model_folder):\n",
219
+ " raise FileNotFoundError(f\"Model directory not found: {model_folder}\")\n",
220
+ "\n",
221
+ "files_in_folder = os.listdir(model_folder)\n",
222
+ "pth_path = next((f for f in files_in_folder if f.endswith(\".pth\")), None)\n",
223
+ "index_file = next((f for f in files_in_folder if f.endswith(\".index\")), None)\n",
224
+ "\n",
225
+ "if pth_path is None or index_file is None:\n",
226
+ " raise FileNotFoundError(\"No model found.\")\n",
227
+ "\n",
228
+ "pth_file = os.path.join(model_folder, pth_path)\n",
229
+ "index_file = os.path.join(model_folder, index_file)\n",
230
+ "\n",
231
+ "input_path = \"/content/example.wav\" # @param {type:\"string\"}\n",
232
+ "output_path = \"/content/output.wav\"\n",
233
+ "export_format = \"WAV\" # @param ['WAV', 'MP3', 'FLAC', 'OGG', 'M4A'] {allow-input: false}\n",
234
+ "f0_method = \"rmvpe\" # @param [\"crepe\", \"crepe-tiny\", \"rmvpe\", \"fcpe\", \"hybrid[rmvpe+fcpe]\"] {allow-input: false}\n",
235
+ "f0_up_key = 0 # @param {type:\"slider\", min:-24, max:24, step:0}\n",
236
+ "filter_radius = 3 # @param {type:\"slider\", min:0, max:10, step:0}\n",
237
+ "rms_mix_rate = 0.8 # @param {type:\"slider\", min:0.0, max:1.0, step:0.1}\n",
238
+ "protect = 0.5 # @param {type:\"slider\", min:0.0, max:0.5, step:0.1}\n",
239
+ "index_rate = 0.7 # @param {type:\"slider\", min:0.0, max:1.0, step:0.1}\n",
240
+ "hop_length = 128 # @param {type:\"slider\", min:1, max:512, step:0}\n",
241
+ "clean_strength = 0.7 # @param {type:\"slider\", min:0.0, max:1.0, step:0.1}\n",
242
+ "split_audio = False # @param{type:\"boolean\"}\n",
243
+ "clean_audio = False # @param{type:\"boolean\"}\n",
244
+ "f0_autotune = False # @param{type:\"boolean\"}\n",
245
+ "\n",
246
+ "!python core.py infer --pitch \"{f0_up_key}\" --filter_radius \"{filter_radius}\" --volume_envelope \"{rms_mix_rate}\" --index_rate \"{index_rate}\" --hop_length \"{hop_length}\" --protect \"{protect}\" --f0_autotune \"{f0_autotune}\" --f0_method \"{f0_method}\" --input_path \"{input_path}\" --output_path \"{output_path}\" --pth_path \"{pth_file}\" --index_path \"{index_file}\" --split_audio \"{split_audio}\" --clean_audio \"{clean_audio}\" --clean_strength \"{clean_strength}\" --export_format \"{export_format}\"\n",
247
+ "\n",
248
+ "from IPython.display import Audio, display, clear_output\n",
249
+ "\n",
250
+ "output_path = output_path.replace(\".wav\", f\".{export_format.lower()}\")\n",
251
+ "# clear_output()\n",
252
+ "display(Audio(output_path, autoplay=True))"
253
+ ]
254
+ },
255
+ {
256
+ "cell_type": "markdown",
257
+ "metadata": {
258
+ "id": "1QkabnLlF2KB"
259
+ },
260
+ "source": [
261
+ "# Train"
262
+ ]
263
+ },
264
+ {
265
+ "cell_type": "code",
266
+ "execution_count": null,
267
+ "metadata": {
268
+ "cellView": "form",
269
+ "id": "oBzqm4JkGGa0"
270
+ },
271
+ "outputs": [],
272
+ "source": [
273
+ "# @title Preprocess Dataset\n",
274
+ "model_name = \"Darwin\" # @param {type:\"string\"}\n",
275
+ "dataset_path = \"/content/drive/MyDrive/Darwin_Dataset\" # @param {type:\"string\"}\n",
276
+ "\n",
277
+ "sample_rate = \"40k\" # @param [\"32k\", \"40k\", \"48k\"] {allow-input: false}\n",
278
+ "sr = int(sample_rate.rstrip(\"k\")) * 1000\n",
279
+ "cpu_cores = 2 # @param {type:\"slider\", min:1, max:2, step:1}\n",
280
+ "\n",
281
+ "!python core.py preprocess --model_name \"{model_name}\" --dataset_path \"{dataset_path}\" --sample_rate \"{sr}\" --cpu_cores \"{cpu_cores}\""
282
+ ]
283
+ },
284
+ {
285
+ "cell_type": "code",
286
+ "execution_count": null,
287
+ "metadata": {
288
+ "cellView": "form",
289
+ "id": "zWMiMYfRJTJv"
290
+ },
291
+ "outputs": [],
292
+ "source": [
293
+ "# @title Extract Features\n",
294
+ "rvc_version = \"v2\" # @param [\"v2\", \"v1\"] {allow-input: false}\n",
295
+ "f0_method = \"rmvpe\" # @param [\"crepe\", \"crepe-tiny\", \"rmvpe\"] {allow-input: false}\n",
296
+ "pitch_guidance = True # @param{type:\"boolean\"}\n",
297
+ "hop_length = 128 # @param {type:\"slider\", min:1, max:512, step:0}\n",
298
+ "\n",
299
+ "sr = int(sample_rate.rstrip(\"k\")) * 1000\n",
300
+ "cpu_cores = 2 # @param {type:\"slider\", min:1, max:2, step:1}\n",
301
+ "\n",
302
+ "!python core.py extract --model_name \"{model_name}\" --rvc_version \"{rvc_version}\" --f0_method \"{f0_method}\" --pitch_guidance \"{pitch_guidance}\" --hop_length \"{hop_length}\" --sample_rate \"{sr}\" --cpu_cores \"{cpu_cores}\" --gpu \"0\""
303
+ ]
304
+ },
305
+ {
306
+ "cell_type": "code",
307
+ "execution_count": null,
308
+ "metadata": {
309
+ "cellView": "form",
310
+ "id": "TI6LLdIzKAIa"
311
+ },
312
+ "outputs": [],
313
+ "source": [
314
+ "# @title Train\n",
315
+ "# @markdown ### ➡️ Model Information\n",
316
+ "import threading\n",
317
+ "import time\n",
318
+ "import os\n",
319
+ "import shutil\n",
320
+ "import hashlib\n",
321
+ "import time\n",
322
+ "\n",
323
+ "LOGS_FOLDER = \"/content/Applio/logs/\"\n",
324
+ "WEIGHTS_FOLDER = LOGS_FOLDER + model_name\n",
325
+ "GOOGLE_DRIVE_PATH = \"/content/drive/MyDrive/RVC_Backup\"\n",
326
+ "\n",
327
+ "\n",
328
+ "def import_google_drive_backup():\n",
329
+ " print(\"Importing Google Drive backup...\")\n",
330
+ " weights_exist = False\n",
331
+ " for root, dirs, files in os.walk(GOOGLE_DRIVE_PATH):\n",
332
+ " for filename in files:\n",
333
+ " filepath = os.path.join(root, filename)\n",
334
+ " if os.path.isfile(filepath) and not filepath.startswith(\n",
335
+ " os.path.join(GOOGLE_DRIVE_PATH, \"weights\")\n",
336
+ " ):\n",
337
+ " backup_filepath = os.path.join(\n",
338
+ " LOGS_FOLDER, os.path.relpath(filepath, GOOGLE_DRIVE_PATH)\n",
339
+ " )\n",
340
+ " backup_folderpath = os.path.dirname(backup_filepath)\n",
341
+ " if not os.path.exists(backup_folderpath):\n",
342
+ " os.makedirs(backup_folderpath)\n",
343
+ " print(f\"Created backup folder: {backup_folderpath}\", flush=True)\n",
344
+ " shutil.copy2(filepath, backup_filepath) # copy file with metadata\n",
345
+ " print(f\"Imported file from Google Drive backup: {filename}\")\n",
346
+ " elif filepath.startswith(\n",
347
+ " os.path.join(GOOGLE_DRIVE_PATH, \"weights\")\n",
348
+ " ) and filename.endswith(\".pth\"):\n",
349
+ " weights_exist = True\n",
350
+ " weights_filepath = os.path.join(\n",
351
+ " WEIGHTS_FOLDER,\n",
352
+ " os.path.relpath(\n",
353
+ " filepath, os.path.join(GOOGLE_DRIVE_PATH, \"weights\")\n",
354
+ " ),\n",
355
+ " )\n",
356
+ " weights_folderpath = os.path.dirname(weights_filepath)\n",
357
+ " if not os.path.exists(weights_folderpath):\n",
358
+ " os.makedirs(weights_folderpath)\n",
359
+ " print(f\"Created weights folder: {weights_folderpath}\", flush=True)\n",
360
+ " shutil.copy2(filepath, weights_filepath) # copy file with metadata\n",
361
+ " print(f\"Imported file from weights: {filename}\")\n",
362
+ " if weights_exist:\n",
363
+ " print(\"Copied weights from Google Drive backup to local weights folder.\")\n",
364
+ " else:\n",
365
+ " print(\"No weights found in Google Drive backup.\")\n",
366
+ " print(\"Google Drive backup import completed.\")\n",
367
+ "\n",
368
+ "\n",
369
+ "def get_md5_hash(file_path):\n",
370
+ " hash_md5 = hashlib.md5()\n",
371
+ " with open(file_path, \"rb\") as f:\n",
372
+ " for chunk in iter(lambda: f.read(4096), b\"\"):\n",
373
+ " hash_md5.update(chunk)\n",
374
+ " return hash_md5.hexdigest()\n",
375
+ "\n",
376
+ "\n",
377
+ "def copy_weights_folder_to_drive():\n",
378
+ " destination_folder = os.path.join(GOOGLE_DRIVE_PATH, \"weights\")\n",
379
+ " try:\n",
380
+ " if not os.path.exists(destination_folder):\n",
381
+ " os.makedirs(destination_folder)\n",
382
+ "\n",
383
+ " num_copied = 0\n",
384
+ " for filename in os.listdir(WEIGHTS_FOLDER):\n",
385
+ " if filename.endswith(\".pth\"):\n",
386
+ " source_file = os.path.join(WEIGHTS_FOLDER, filename)\n",
387
+ " destination_file = os.path.join(destination_folder, filename)\n",
388
+ " if not os.path.exists(destination_file):\n",
389
+ " shutil.copy2(source_file, destination_file)\n",
390
+ " num_copied += 1\n",
391
+ " print(f\"Copied {filename} to Google Drive!\")\n",
392
+ "\n",
393
+ " if num_copied == 0:\n",
394
+ " print(\"No new finished models found for copying.\")\n",
395
+ " else:\n",
396
+ " print(f\"Finished copying {num_copied} files to Google Drive!\")\n",
397
+ "\n",
398
+ " except Exception as error:\n",
399
+ " print(f\"An error occurred during copying weights to Google Drive: {str(error)}\")\n",
400
+ "\n",
401
+ "\n",
402
+ "if \"autobackups\" not in globals():\n",
403
+ " autobackups = False\n",
404
+ "\n",
405
+ "\n",
406
+ "def backup_files():\n",
407
+ " print(\"\\nStarting backup loop...\")\n",
408
+ " last_backup_timestamps_path = os.path.join(\n",
409
+ " LOGS_FOLDER, \"last_backup_timestamps.txt\"\n",
410
+ " )\n",
411
+ " fully_updated = False\n",
412
+ "\n",
413
+ " while True:\n",
414
+ " try:\n",
415
+ " updated = False\n",
416
+ " last_backup_timestamps = {}\n",
417
+ "\n",
418
+ " try:\n",
419
+ " with open(last_backup_timestamps_path, \"r\") as f:\n",
420
+ " last_backup_timestamps = dict(line.strip().split(\":\") for line in f)\n",
421
+ " except FileNotFoundError:\n",
422
+ " pass\n",
423
+ "\n",
424
+ " for root, dirs, files in os.walk(LOGS_FOLDER):\n",
425
+ " # Excluding \"zips\" directory\n",
426
+ " if \"zips\" in dirs:\n",
427
+ " dirs.remove(\"zips\")\n",
428
+ " if \"mute\" in dirs:\n",
429
+ " dirs.remove(\"mute\")\n",
430
+ " for filename in files:\n",
431
+ " if filename != \"last_backup_timestamps.txt\":\n",
432
+ " filepath = os.path.join(root, filename)\n",
433
+ " if os.path.isfile(filepath):\n",
434
+ " backup_filepath = os.path.join(\n",
435
+ " GOOGLE_DRIVE_PATH,\n",
436
+ " os.path.relpath(filepath, LOGS_FOLDER),\n",
437
+ " )\n",
438
+ " backup_folderpath = os.path.dirname(backup_filepath)\n",
439
+ " if not os.path.exists(backup_folderpath):\n",
440
+ " os.makedirs(backup_folderpath)\n",
441
+ " print(\n",
442
+ " f\"Created backup folder: {backup_folderpath}\",\n",
443
+ " flush=True,\n",
444
+ " )\n",
445
+ " last_backup_timestamp = last_backup_timestamps.get(filepath)\n",
446
+ " current_timestamp = os.path.getmtime(filepath)\n",
447
+ " if (\n",
448
+ " last_backup_timestamp is None\n",
449
+ " or float(last_backup_timestamp) < current_timestamp\n",
450
+ " ):\n",
451
+ " shutil.copy2(filepath, backup_filepath)\n",
452
+ " last_backup_timestamps[filepath] = str(\n",
453
+ " current_timestamp\n",
454
+ " )\n",
455
+ " if last_backup_timestamp is None:\n",
456
+ " print(f\"Backed up file: {filename}\")\n",
457
+ " else:\n",
458
+ " print(f\"Updating backed up file: {filename}\")\n",
459
+ " updated = True\n",
460
+ " fully_updated = False\n",
461
+ "\n",
462
+ " for filepath in list(last_backup_timestamps.keys()):\n",
463
+ " if not os.path.exists(filepath):\n",
464
+ " backup_filepath = os.path.join(\n",
465
+ " GOOGLE_DRIVE_PATH, os.path.relpath(filepath, LOGS_FOLDER)\n",
466
+ " )\n",
467
+ " if os.path.exists(backup_filepath):\n",
468
+ " os.remove(backup_filepath)\n",
469
+ " print(f\"Deleted file: {filepath}\")\n",
470
+ " del last_backup_timestamps[filepath]\n",
471
+ " updated = True\n",
472
+ " fully_updated = False\n",
473
+ "\n",
474
+ " if not updated and not fully_updated:\n",
475
+ " print(\"Files are up to date.\")\n",
476
+ " fully_updated = True\n",
477
+ " sleep_time = 15\n",
478
+ " else:\n",
479
+ " sleep_time = 0.1\n",
480
+ "\n",
481
+ " with open(last_backup_timestamps_path, \"w\") as f:\n",
482
+ " for filepath, timestamp in last_backup_timestamps.items():\n",
483
+ " f.write(f\"{filepath}:{timestamp}\\n\")\n",
484
+ "\n",
485
+ " time.sleep(sleep_time)\n",
486
+ "\n",
487
+ " except Exception as error:\n",
488
+ " print(f\"An error occurred during backup: {str(error)}\")\n",
489
+ "\n",
490
+ "\n",
491
+ "if autobackups:\n",
492
+ " autobackups = False\n",
493
+ " print(\"Autobackup Disabled\")\n",
494
+ "else:\n",
495
+ " autobackups = True\n",
496
+ " print(\"Autobackup Enabled\")\n",
497
+ "\n",
498
+ "total_epoch = 800 # @param {type:\"integer\"}\n",
499
+ "batch_size = 15 # @param {type:\"slider\", min:1, max:25, step:0}\n",
500
+ "gpu = 0\n",
501
+ "sr = int(sample_rate.rstrip(\"k\")) * 1000\n",
502
+ "pitch_guidance = True # @param{type:\"boolean\"}\n",
503
+ "auto_backups = True # @param{type:\"boolean\"}\n",
504
+ "pretrained = True # @param{type:\"boolean\"}\n",
505
+ "sync_graph = False # @param{type:\"boolean\"}\n",
506
+ "cache_data_in_gpu = False # @param{type:\"boolean\"}\n",
507
+ "tensorboard = True # @param{type:\"boolean\"}\n",
508
+ "# @markdown ### ➡️ Choose how many epochs your model will be stored\n",
509
+ "save_every_epoch = 10 # @param {type:\"slider\", min:1, max:100, step:0}\n",
510
+ "save_only_latest = False # @param{type:\"boolean\"}\n",
511
+ "save_every_weights = False # @param{type:\"boolean\"}\n",
512
+ "overtraining_detector = False # @param{type:\"boolean\"}\n",
513
+ "overtraining_threshold = 50 # @param {type:\"slider\", min:1, max:100, step:0}\n",
514
+ "# @markdown ### ❓ Optional\n",
515
+ "# @markdown In case you select custom pretrained, you will have to download the pretraineds and enter the path of the pretraineds.\n",
516
+ "custom_pretrained = False # @param{type:\"boolean\"}\n",
517
+ "g_pretrained_path = \"/content/Applio/rvc/models/pretraineds/pretraineds_custom/G48k.pth\" # @param {type:\"string\"}\n",
518
+ "d_pretrained_path = \"/content/Applio/rvc/models/pretraineds/pretraineds_custom/D48k.pth\" # @param {type:\"string\"}\n",
519
+ "\n",
520
+ "if \"pretrained\" not in globals():\n",
521
+ " pretrained = True\n",
522
+ "\n",
523
+ "if \"custom_pretrained\" not in globals():\n",
524
+ " custom_pretrained = False\n",
525
+ "\n",
526
+ "if \"g_pretrained_path\" not in globals():\n",
527
+ " g_pretrained_path = \"Custom Path\"\n",
528
+ "\n",
529
+ "if \"d_pretrained_path\" not in globals():\n",
530
+ " d_pretrained_path = \"Custom Path\"\n",
531
+ "\n",
532
+ "\n",
533
+ "def start_train():\n",
534
+ " if tensorboard == True:\n",
535
+ " %load_ext tensorboard\n",
536
+ " %tensorboard --logdir /content/Applio/logs/\n",
537
+ " !python core.py train --model_name \"{model_name}\" --rvc_version \"{rvc_version}\" --save_every_epoch \"{save_every_epoch}\" --save_only_latest \"{save_only_latest}\" --save_every_weights \"{save_every_weights}\" --total_epoch \"{total_epoch}\" --sample_rate \"{sr}\" --batch_size \"{batch_size}\" --gpu \"{gpu}\" --pitch_guidance \"{pitch_guidance}\" --pretrained \"{pretrained}\" --custom_pretrained \"{custom_pretrained}\" --g_pretrained_path \"{g_pretrained_path}\" --d_pretrained_path \"{d_pretrained_path}\" --overtraining_detector \"{overtraining_detector}\" --overtraining_threshold \"{overtraining_threshold}\" --sync_graph \"{sync_graph}\" --cache_data_in_gpu \"{cache_data_in_gpu}\"\n",
538
+ "\n",
539
+ "\n",
540
+ "server_thread = threading.Thread(target=start_train)\n",
541
+ "server_thread.start()\n",
542
+ "\n",
543
+ "if auto_backups:\n",
544
+ " backup_files()\n",
545
+ "else:\n",
546
+ " while True:\n",
547
+ " time.sleep(10)"
548
+ ]
549
+ },
550
+ {
551
+ "cell_type": "code",
552
+ "execution_count": null,
553
+ "metadata": {
554
+ "cellView": "form",
555
+ "id": "bHLs5AT4Q1ck"
556
+ },
557
+ "outputs": [],
558
+ "source": [
559
+ "# @title Generate index file\n",
560
+ "!python core.py index --model_name \"{model_name}\" --rvc_version \"{rvc_version}\""
561
+ ]
562
+ },
563
+ {
564
+ "cell_type": "code",
565
+ "execution_count": null,
566
+ "metadata": {
567
+ "cellView": "form",
568
+ "id": "X_eU_SoiHIQg"
569
+ },
570
+ "outputs": [],
571
+ "source": [
572
+ "# @title Save model\n",
573
+ "# @markdown Enter the name of the model and the steps. You can find it in your `/content/Applio/logs` folder.\n",
574
+ "%cd /content\n",
575
+ "import shutil, os\n",
576
+ "\n",
577
+ "model_name = \"Darwin\" # @param {type:\"string\"}\n",
578
+ "model_epoch = 800 # @param {type:\"integer\"}\n",
579
+ "save_big_file = False # @param {type:\"boolean\"}\n",
580
+ "\n",
581
+ "if os.path.exists(\"/content/zips\"):\n",
582
+ " shutil.rmtree(\"/content/zips\")\n",
583
+ "print(\"Removed zips.\")\n",
584
+ "!mkdir -p /content/zips/{model_name}/\n",
585
+ "print(\"Created zips.\")\n",
586
+ "if f\"{model_name}.pth\" not in os.listdir(f\"/content/Applio/weights\"):\n",
587
+ " print(\"There is no weight file with that name\")\n",
588
+ "if not save_big_file:\n",
589
+ " !cp /content/Applio/logs/{model_name}/added_*.index /content/zips/{model_name}/\n",
590
+ " !cp /content/Applio/logs/{model_name}/total_*.npy /content/zips/{model_name}/\n",
591
+ " !cp /content/Applio/weights/{model_name}.pth /content/zips/{model_name}/{model_name}{model_epoch}.pth\n",
592
+ " %cd /content/zips\n",
593
+ " !zip -r {model_name}.zip {model_name}\n",
594
+ "if save_big_file:\n",
595
+ " %cd /content/Applio\n",
596
+ " latest_steps = -1\n",
597
+ " logs_folder = \"./logs/\" + model_name\n",
598
+ " for filename in os.listdir(logs_folder):\n",
599
+ " if filename.startswith(\"G_\") and filename.endswith(\".pth\"):\n",
600
+ " steps = int(filename.split(\"_\")[1].split(\".\")[0])\n",
601
+ " if steps > latest_steps:\n",
602
+ " latest_steps = steps\n",
603
+ " MODELZIP = model_name + \".zip\"\n",
604
+ " !mkdir -p /content/zips\n",
605
+ " ZIPFILEPATH = os.path.join(\"/content/zips\", MODELZIP)\n",
606
+ " for filename in os.listdir(logs_folder):\n",
607
+ " if \"G_\" in filename or \"D_\" in filename:\n",
608
+ " if str(latest_steps) in filename:\n",
609
+ " !zip -r {ZIPFILEPATH} {os.path.join(logs_folder, filename)}\n",
610
+ " else:\n",
611
+ " !zip -r {ZIPFILEPATH} {os.path.join(logs_folder, filename)}\n",
612
+ " for filename in os.listdir(\"./weights\"):\n",
613
+ " if model_name in filename:\n",
614
+ " !zip -r {ZIPFILEPATH} {os.path.join('./weights/', filename)}\n",
615
+ "\n",
616
+ "!mkdir -p /content/drive/MyDrive/RVC_Backup/\n",
617
+ "shutil.move(\n",
618
+ " f\"/content/zips/{model_name}.zip\",\n",
619
+ " f\"/content/drive/MyDrive/RVC_Backup/{model_name}.zip\",\n",
620
+ ")\n",
621
+ "%cd /content\n",
622
+ "shutil.rmtree(\"/content/zips\")"
623
+ ]
624
+ },
625
+ {
626
+ "cell_type": "markdown",
627
+ "metadata": {
628
+ "id": "OaKoymXsyEYN"
629
+ },
630
+ "source": [
631
+ "# Resume-training"
632
+ ]
633
+ },
634
+ {
635
+ "cell_type": "code",
636
+ "execution_count": null,
637
+ "metadata": {
638
+ "cellView": "form",
639
+ "id": "d3KgLAYnyHkP"
640
+ },
641
+ "outputs": [],
642
+ "source": [
643
+ "# @title Load a Backup\n",
644
+ "from google.colab import drive\n",
645
+ "import os\n",
646
+ "import shutil\n",
647
+ "\n",
648
+ "# @markdown Put the exact name you put as your Model Name in Applio.\n",
649
+ "modelname = \"My-Project\" # @param {type:\"string\"}\n",
650
+ "source_path = \"/content/drive/MyDrive/RVC_Backup/\" + modelname\n",
651
+ "destination_path = \"/content/Applio/logs/\" + modelname\n",
652
+ "backup_timestamps_file = \"last_backup_timestamps.txt\"\n",
653
+ "if not os.path.exists(source_path):\n",
654
+ " print(\n",
655
+ " \"The model folder does not exist. Please verify the name is correct or check your Google Drive.\"\n",
656
+ " )\n",
657
+ "else:\n",
658
+ " time_ = os.path.join(\"/content/drive/MyDrive/RVC_Backup/\", backup_timestamps_file)\n",
659
+ " time__ = os.path.join(\"/content/Applio/logs/\", backup_timestamps_file)\n",
660
+ " if os.path.exists(time_):\n",
661
+ " shutil.copy(time_, time__)\n",
662
+ " shutil.copytree(source_path, destination_path)\n",
663
+ " print(\"Model backup loaded successfully.\")"
664
+ ]
665
+ },
666
+ {
667
+ "cell_type": "code",
668
+ "execution_count": null,
669
+ "metadata": {
670
+ "cellView": "form",
671
+ "id": "sc9DzvRCyJ2d"
672
+ },
673
+ "outputs": [],
674
+ "source": [
675
+ "# @title Set training variables\n",
676
+ "# @markdown ### ➡️ Use the same as you did previously\n",
677
+ "model_name = \"Darwin\" # @param {type:\"string\"}\n",
678
+ "sample_rate = \"40k\" # @param [\"32k\", \"40k\", \"48k\"] {allow-input: false}\n",
679
+ "rvc_version = \"v2\" # @param [\"v2\", \"v1\"] {allow-input: false}\n",
680
+ "f0_method = \"rmvpe\" # @param [\"crepe\", \"crepe-tiny\", \"rmvpe\"] {allow-input: false}\n",
681
+ "hop_length = 128 # @param {type:\"slider\", min:1, max:512, step:0}\n",
682
+ "sr = int(sample_rate.rstrip(\"k\")) * 1000"
683
+ ]
684
+ }
685
+ ],
686
+ "metadata": {
687
+ "accelerator": "GPU",
688
+ "colab": {
689
+ "collapsed_sections": [
690
+ "ymMCTSD6m8qV"
691
+ ],
692
+ "provenance": [],
693
+ "toc_visible": true
694
+ },
695
+ "kernelspec": {
696
+ "display_name": "Python 3",
697
+ "name": "python3"
698
+ },
699
+ "language_info": {
700
+ "name": "python"
701
+ }
702
+ },
703
+ "nbformat": 4,
704
+ "nbformat_minor": 0
705
+ }
assets/ICON.ico ADDED
assets/audios/audio-others/.gitkeep ADDED
File without changes
assets/config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "theme": {
3
+ "file": "Applio.py",
4
+ "class": "Applio"
5
+ },
6
+ "plugins": [],
7
+ "discord_presence": true,
8
+ "lang": {
9
+ "override": false,
10
+ "selected_lang": "en_US"
11
+ },
12
+ "flask_server": false,
13
+ "version": "3.2.2",
14
+ "fake_gpu": false
15
+ }
assets/discord_presence.py ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from pypresence import Presence
2
+ import datetime as dt
3
+ import time
4
+
5
+
6
+ class RichPresenceManager:
7
+ def __init__(self):
8
+ self.client_id = "1144714449563955302"
9
+ self.rpc = None
10
+ self.running = False
11
+
12
+ def start_presence(self):
13
+ if not self.running:
14
+ self.running = True
15
+ self.rpc = Presence(self.client_id)
16
+ try:
17
+ self.rpc.connect()
18
+ self.update_presence()
19
+ except KeyboardInterrupt as error:
20
+ print(error)
21
+ self.rpc = None
22
+ self.running = False
23
+ except Exception as error:
24
+ print(f"An error occurred connecting to Discord: {error}")
25
+ self.rpc = None
26
+ self.running = False
27
+
28
+ def update_presence(self):
29
+ if self.rpc:
30
+ self.rpc.update(
31
+ state="applio.org",
32
+ details="Open ecosystem for voice cloning",
33
+ buttons=[
34
+ {"label": "Home", "url": "https://applio.org"},
35
+ {"label": "Download", "url": "https://applio.org/download"},
36
+ ],
37
+ large_image="logo",
38
+ large_text="Experimenting with applio",
39
+ start=dt.datetime.now().timestamp(),
40
+ )
41
+
42
+ def stop_presence(self):
43
+ self.running = False
44
+ if self.rpc:
45
+ self.rpc.close()
46
+ self.rpc = None
47
+
48
+
49
+ RPCManager = RichPresenceManager()
assets/flask/routes.py ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os, sys
2
+ import signal
3
+ from flask import Flask, request, redirect
4
+
5
+ now_dir = os.getcwd()
6
+ sys.path.append(now_dir)
7
+
8
+ from core import run_download_script
9
+
10
+ app = Flask(__name__)
11
+
12
+
13
+ @app.route("/download/<path:url>", methods=["GET"])
14
+ def download(url):
15
+ file_path = run_download_script(url)
16
+ if file_path == "Model downloaded successfully.":
17
+ if "text/html" in request.headers.get("Accept", ""):
18
+ return redirect("https://applio.org/models/downloaded", code=302)
19
+ else:
20
+ return ""
21
+ else:
22
+ return "Error: Unable to download file", 500
23
+
24
+
25
+ @app.route("/shutdown", methods=["POST"])
26
+ def shutdown():
27
+ print("This Flask server is shutting down... Please close the window!")
28
+ os.kill(os.getpid(), signal.SIGTERM)
29
+
30
+
31
+ if __name__ == "__main__":
32
+ app.run(host="localhost", port=8000)
assets/flask/server.py ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import socket
3
+ import subprocess
4
+ import time
5
+ import requests
6
+ import json
7
+
8
+ # Constants
9
+ NOW_DIR = os.getcwd()
10
+ CONFIG_FILE = os.path.join(NOW_DIR, "assets", "config.json")
11
+ ENV_PATH = os.path.join(NOW_DIR, "env", "python.exe")
12
+ FLASK_SCRIPT_PATH = os.path.join(NOW_DIR, "assets", "flask", "routes.py")
13
+ HOST = "localhost"
14
+ PORT = 8000
15
+ TIMEOUT = 2
16
+
17
+
18
+ # Functions
19
+ def start_flask():
20
+ """
21
+ Starts the Flask server if it's not already running.
22
+ """
23
+ try:
24
+ # Check if Flask server is already running
25
+ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
26
+ sock.settimeout(TIMEOUT)
27
+ sock.connect((HOST, PORT))
28
+ print("Flask server is already running. Trying to restart it.")
29
+ requests.post("http://localhost:8000/shutdown")
30
+ time.sleep(3)
31
+
32
+ except socket.timeout:
33
+ # Start the Flask server
34
+ try:
35
+ subprocess.Popen(
36
+ [ENV_PATH, FLASK_SCRIPT_PATH],
37
+ creationflags=subprocess.CREATE_NEW_CONSOLE,
38
+ )
39
+ except Exception as error:
40
+ print(f"An error occurred starting the Flask server: {error}")
41
+
42
+
43
+ def load_config_flask():
44
+ """
45
+ Loads the Flask server configuration from the config.json file.
46
+ """
47
+ with open(CONFIG_FILE, "r") as file:
48
+ config = json.load(file)
49
+ return config["flask_server"]
50
+
51
+
52
+ def save_config(value):
53
+ """
54
+ Saves the Flask server configuration to the config.json file.
55
+ """
56
+ with open(CONFIG_FILE, "r", encoding="utf8") as file:
57
+ config = json.load(file)
58
+ config["flask_server"] = value
59
+ with open(CONFIG_FILE, "w", encoding="utf8") as file:
60
+ json.dump(config, file, indent=2)
assets/i18n/i18n.py ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os, sys
2
+ import json
3
+ from pathlib import Path
4
+ from locale import getdefaultlocale
5
+
6
+ now_dir = os.getcwd()
7
+ sys.path.append(now_dir)
8
+
9
+
10
+ class I18nAuto:
11
+ LANGUAGE_PATH = os.path.join(now_dir, "assets", "i18n", "languages")
12
+
13
+ def __init__(self, language=None):
14
+ with open(
15
+ os.path.join(now_dir, "assets", "config.json"), "r", encoding="utf8"
16
+ ) as file:
17
+ config = json.load(file)
18
+ override = config["lang"]["override"]
19
+ lang_prefix = config["lang"]["selected_lang"]
20
+
21
+ self.language = lang_prefix
22
+
23
+ if override == False:
24
+ language = language or getdefaultlocale()[0]
25
+ lang_prefix = language[:2] if language is not None else "en"
26
+ available_languages = self._get_available_languages()
27
+ matching_languages = [
28
+ lang for lang in available_languages if lang.startswith(lang_prefix)
29
+ ]
30
+ self.language = matching_languages[0] if matching_languages else "en_US"
31
+
32
+ self.language_map = self._load_language_list()
33
+
34
+ def _load_language_list(self):
35
+ try:
36
+ file_path = Path(self.LANGUAGE_PATH) / f"{self.language}.json"
37
+ with open(file_path, "r", encoding="utf-8") as file:
38
+ return json.load(file)
39
+ except FileNotFoundError:
40
+ raise FileNotFoundError(
41
+ f"Failed to load language file for {self.language}. Check if the correct .json file exists."
42
+ )
43
+
44
+ def _get_available_languages(self):
45
+ language_files = [path.stem for path in Path(self.LANGUAGE_PATH).glob("*.json")]
46
+ return language_files
47
+
48
+ def _language_exists(self, language):
49
+ return (Path(self.LANGUAGE_PATH) / f"{language}.json").exists()
50
+
51
+ def __call__(self, key):
52
+ return self.language_map.get(key, key)
assets/i18n/languages/ar_AR.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "أداة استنساخ الصوت النهائية ، محسنة بدقة للحصول على قوة لا مثيل لها ، ونمطية ، وتجربة سهلة الاستخدام.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "يحتوي هذا القسم على بعض الأدوات المساعدة الإضافية التي قد تكون غالبا في المراحل التجريبية.",
4
+ "Output Information": "معلومات الإخراج",
5
+ "The output information will be displayed here.": "سيتم عرض معلومات الإخراج هنا.",
6
+ "Inference": "استدلال",
7
+ "Train": "قطار",
8
+ "Extra": "اضافيه",
9
+ "Merge Audios": "دمج الصوتيات",
10
+ "Processing": "تجهيز",
11
+ "Audio Analyzer": "محلل الصوت",
12
+ "Model Information": "معلومات النموذج",
13
+ "Plugins": "الإضافات",
14
+ "Download": "تحميل",
15
+ "Report a Bug": "الإبلاغ عن خطأ",
16
+ "Settings": "اعدادات",
17
+ "Preprocess": "المعالجة المسبقة",
18
+ "Model Name": "اسم الموديل",
19
+ "Name of the new model.": "اسم النموذج الجديد.",
20
+ "Enter model name": "أدخل اسم الطراز",
21
+ "Dataset Path": "مسار مجموعة البيانات",
22
+ "Path to the dataset folder.": "المسار إلى مجلد مجموعة البيانات.",
23
+ "Refresh Datasets": "تحديث مجموعات البيانات",
24
+ "Dataset Creator": "منشئ مجموعة البيانات",
25
+ "Dataset Name": "اسم مجموعة البيانات",
26
+ "Name of the new dataset.": "اسم مجموعة البيانات الجديدة.",
27
+ "Enter dataset name": "أدخل اسم مجموعة البيانات",
28
+ "Upload Audio Dataset": "تحميل مجموعة بيانات صوتية",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "تمت إضافة الملف الصوتي بنجاح إلى مجموعة البيانات. الرجاء النقر فوق زر المعالجة المسبقة.",
30
+ "Enter dataset path": "إدخال مسار مجموعة البيانات",
31
+ "Sampling Rate": "معدل أخذ العينات",
32
+ "The sampling rate of the audio files.": "معدل أخذ العينات من الملفات الصوتية.",
33
+ "RVC Version": "نسخة RVC",
34
+ "The RVC version of the model.": "نسخة RVC من النموذج.",
35
+ "Preprocess Dataset": "مجموعة بيانات ما قبل المعالجة",
36
+ "Extract": "استخرج",
37
+ "Hop Length": "طول القفزة",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "يشير إلى المدة التي يستغرقها النظام للانتقال إلى تغيير كبير في درجة الصوت. تتطلب أطوال القفزات الأصغر مزيدا من الوقت للاستدلال ولكنها تميل إلى تحقيق دقة أعلى في درجة الصوت.",
39
+ "Batch Size": "حجم الدفعة",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "ينصح بمحاذاته مع VRAM المتاح لوحدة معالجة الرسومات الخاصة بك. يوفر الإعداد 4 دقة محسنة ولكن معالجة أبطأ ، بينما يوفر 8 نتائج أسرع وقياسية.",
41
+ "Save Every Epoch": "حفظ كل حقبة",
42
+ "Determine at how many epochs the model will saved at.": "حدد عدد الفترات التي سيتم حفظ النموذج فيها.",
43
+ "Total Epoch": "إجمالي العصر",
44
+ "Specifies the overall quantity of epochs for the model training process.": "يحدد الكمية الإجمالية للعهود لعملية التدريب النموذجية.",
45
+ "Pretrained": "التدريب المسبق",
46
+ "Save Only Latest": "حفظ الأحدث فقط",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "سيؤدي تمكين هذا الإعداد إلى حفظ ملفات G و D لأحدث إصداراتها فقط ، مما يوفر مساحة التخزين بشكل فعال.",
48
+ "Save Every Weights": "حفظ كل الأوزان",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "يمكنك هذا الإعداد من حفظ أوزان النموذج في نهاية كل حقبة.",
50
+ "Custom Pretrained": "تدريب مسبق مخصص",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "يمكن أن يؤدي استخدام النماذج الم��صصة المدربة مسبقا إلى نتائج فائقة ، حيث أن اختيار النماذج الأكثر ملاءمة للاختبار المسبق والمصممة خصيصا لحالة الاستخدام المحددة يمكن أن يعزز الأداء بشكل كبير.",
52
+ "Upload Pretrained Model": "تحميل نموذج تم تدريبه مسبقا",
53
+ "Refresh Custom Pretraineds": "تحديث التدريبات المسبقة المخصصة",
54
+ "Pretrained Custom Settings": "الإعدادات المخصصة المدربة مسبقا",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "الملف الذي أسقطته ليس ملفا صالحا تم تدريبه مسبقا. يرجى المحاولة مرة أخرى.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "انقر فوق زر التحديث لرؤية الملف الذي تم اختباره مسبقا في القائمة المنسدلة.",
57
+ "Pretrained G Path": "مخصص مسبقا G",
58
+ "Pretrained D Path": "مخصص مسبق التدريب D",
59
+ "GPU Settings": "إعدادات وحدة معالجة الرسومات",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "يضبط إعدادات GPU المتقدمة ، الموصى بها للمستخدمين الذين لديهم بنية GPU أفضل.",
61
+ "GPU Custom Settings": "الإعدادات المخصصة لوحدة معالجة الرسومات",
62
+ "GPU Number": "رقم وحدة معالجة الرسومات",
63
+ "0 to ∞ separated by -": "0 إلى ∞ مفصولة ب -",
64
+ "GPU Information": "معلومات وحدة معالجة الرسومات",
65
+ "Pitch Guidance": "توجيه الملعب",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "من خلال استخدام توجيه درجة الصوت ، يصبح من الممكن عكس نغمة الصوت الأصلي ، بما في ذلك طبقة الصوت. هذه الميزة ذات قيمة خاصة للغناء والسيناريوهات الأخرى حيث يكون الحفاظ على اللحن الأصلي أو نمط طبقة الصوت أمرا ضروريا.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "استخدم النماذج المدربة مسبقا عند تدريب النماذج الخاصة بك. هذا النهج يقلل من مدة التدريب ويعزز الجودة الشاملة.",
68
+ "Extract Features": "استخراج الميزات",
69
+ "Start Training": "ابدأ التدريب",
70
+ "Generate Index": "إنشاء فهرس",
71
+ "Voice Model": "نموذج الصوت",
72
+ "Select the voice model to use for the conversion.": "حدد نموذج الصوت لاستخدامه في التحويل.",
73
+ "Index File": "ملف الفهرس",
74
+ "Select the index file to use for the conversion.": "حدد ملف الفهرس لاستخدامه للتحويل.",
75
+ "Refresh": "تحديث",
76
+ "Unload Voice": "تفريغ الصوت",
77
+ "Single": "واحد",
78
+ "Upload Audio": "تحميل الصوت",
79
+ "Select Audio": "حدد الصوت",
80
+ "Select the audio to convert.": "حدد الصوت المراد تحويله.",
81
+ "Advanced Settings": "الإعدادات المتقدمة",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "مخرجات واضحة (يحذف جميع الصوتيات في الأصول / الصوتيات)",
83
+ "Custom Output Path": "مسار الإخراج المخصص",
84
+ "Output Path": "مسار الإخراج",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "المسار الذي سيتم فيه حفظ الصوت الناتج ، افتراضيا في الأصول / الصوتيات / output.wav",
86
+ "Split Audio": "تقسيم الصوت",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "قسم الصوت إلى أجزاء للاستدلال للحصول على نتائج أفضل في بعض الحالات.",
88
+ "Autotune": "الضبط التلقائي",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "قم بتطبيق ضبط تلقائي ناعم على استنتاجاتك ، موصى به لغناء التحويلات.",
90
+ "Clean Audio": "صوت نظيف",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "قم بتنظيف إخراج الصوت باستخدام خوارزميات اكتشاف الضوضاء ، الموصى بها للتحدث الصوتيات.",
92
+ "Clean Strength": "قوة نظيفة",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "اضبط مستوى التنظيف على ا��صوت الذي تريده ، وكلما قمت بزيادته كلما تم تنظيفه ، ولكن من الممكن أن يكون الصوت أكثر ضغطا.",
94
+ "Pitch": "زفت",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "اضبط درجة الصوت ، وكلما زادت القيمة ، زادت درجة الصوت.",
96
+ "Filter Radius": "نصف قطر المرشح",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "إذا كان العدد أكبر من أو يساوي ثلاثة ، فإن استخدام الترشيح المتوسط على نتائج النغمة التي تم جمعها لديه القدرة على تقليل التنفس.",
98
+ "Search Feature Ratio": "نسبة ميزة البحث",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "التأثير الذي يمارسه ملف الفهرس ؛ قيمة أعلى يتوافق مع تأثير أكبر. ومع ذلك ، يمكن أن يساعد اختيار القيم الأقل في التخفيف من العناصر الموجودة في الصوت.",
100
+ "Volume Envelope": "مغلف الحجم",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "استبدل أو امزج مع مغلف حجم المخرجات. كلما اقتربت النسبة من 1 ، زاد استخدام مغلف الإخراج.",
102
+ "Protect Voiceless Consonants": "حماية الحروف الساكنة التي لا صوت لها",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "حماية الحروف الساكنة المميزة وأصوات التنفس لمنع التمزق الصوتي الكهربائي والتحف الأخرى. يوفر سحب المعلمة إلى قيمتها القصوى البالغة 0.5 حماية شاملة. ومع ذلك ، قد يؤدي تقليل هذه القيمة إلى تقليل مدى الحماية مع احتمال التخفيف من تأثير الفهرسة.",
104
+ "Pitch extraction algorithm": "خوارزمية استخراج الملعب",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "خوارزمية استخراج الملعب لاستخدامها في تحويل الصوت. الخوارزمية الافتراضية هي rmvpe ، والتي يوصى بها في معظم الحالات.",
106
+ "Convert": "حول",
107
+ "Export Audio": "تصدير الصوت",
108
+ "Batch": "الدفعه",
109
+ "Input Folder": "مجلد الإدخال",
110
+ "Select the folder containing the audios to convert.": "حدد المجلد الذي يحتوي على الصوتيات المراد تحويلها.",
111
+ "Enter input path": "أدخل مسار الإدخال",
112
+ "Output Folder": "مجلد الإخراج",
113
+ "Select the folder where the output audios will be saved.": "حدد المجلد حيث سيتم حفظ صوتيات الإخراج.",
114
+ "Enter output path": "أدخل مسار الإخراج",
115
+ "Get information about the audio": "الحصول على معلومات حول الصوت",
116
+ "Information about the audio file": "معلومات حول الملف الصوتي",
117
+ "Waiting for information...": "في انتظار المعلومات...",
118
+ "## Voice Blender": "## خلاط الصوت",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "حدد نموذجين صوتيين ، وقم بتعيين نسبة المزج التي تريدها ، وامزجهما في صوت جديد تماما.",
120
+ "Voice Blender": "خلاط الصوت",
121
+ "Drag and drop your model here": "قم بسحب وإسقاط النموذج الخاص بك هنا",
122
+ "You can also use a custom path.": "يمكنك أيضا استخدام مسار مخصص.",
123
+ "Blend Ratio": "نسبة المزج",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "سيؤدي ضبط الموضع أكثر نحو جانب أو آخر إلى جعل النموذج أكثر تشابها مع الأول أو الثاني.",
125
+ "Fusion": "اندماج",
126
+ "Path to Model": "الطريق إلى النموذج",
127
+ "Enter path to model": "أدخل المسار إلى النموذج",
128
+ "Model information to be placed": "معلومات النموذج المراد وضعها",
129
+ "Inroduce the model information": "Inroduce معلومات النموذج",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "المعلومات المراد وضعها في النموذج (يمكنك تركها فارغة أو وضع أي شيء).",
131
+ "View model information": "عرض معلومات النموذج",
132
+ "Introduce the model pth path": "تقديم نموذج مسار pth",
133
+ "View": "منظر",
134
+ "Model extraction": "استخراج النموذج",
135
+ "Model conversion": "تحويل النموذج",
136
+ "Pth file": "ملف Pth",
137
+ "Output of the pth file": "إخراج ملف pth",
138
+ "# How to Report an Issue on GitHub": "# كيفية الإبلاغ عن مشكلة على GitHub",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. انقر فوق الزر \"شاشة التسجيل\" أدناه لبدء تسجيل المشكلة التي تواجهها.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. بمجرد الانتهاء من تسجيل المشكلة ، انقر فوق الزر \"إيقاف التسجيل\" (نفس الزر ، لكن التسمية تتغير اعتمادا على ما إذا كنت تقوم بالتسجيل بنشاط أم لا).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. انتقل إلى [مشكلات GitHub] (https://github.com/IAHispano/Applio/issues) وانقر على زر \"إصدار جديد\".",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. أكمل نموذج المشكلة المقدم ، مع التأكد من تضمين التفاصيل حسب الحاجة ، واستخدم قسم الأصول لتحميل الملف المسجل من الخطوة السابقة.",
143
+ "Record Screen": "شاشة التسجيل",
144
+ "Record": "سجل",
145
+ "Stop Recording": "إيقاف التسجيل",
146
+ "Introduce the model .pth path": "تقديم نموذج مسار .pth",
147
+ "See Model Information": "انظر معلومات النموذج",
148
+ "## Download Model": "## تحميل الموديل",
149
+ "Model Link": "رابط النموذج",
150
+ "Introduce the model link": "تقديم رابط النموذج",
151
+ "Download Model": "تحميل الموديل",
152
+ "## Drop files": "## إسقاط الملفات",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "اسحب ملف .pth وملف .index إلى هذه المساحة. اسحب أحدهما ثم الآخر.",
154
+ "TTS Voices": "أصوات تحويل النص إلى كلام",
155
+ "Select the TTS voice to use for the conversion.": "حدد صوت TTS لاستخدامه في التحويل.",
156
+ "Text to Synthesize": "النص المراد توليفه",
157
+ "Enter the text to synthesize.": "أدخل النص المراد توليفه.",
158
+ "Or you can upload a .txt file": "أو يمكنك تحميل ملف .txt",
159
+ "Enter text to synthesize": "أدخل نصا لتوليفه",
160
+ "Output Path for TTS Audio": "مسار الإخراج لصوت TTS",
161
+ "Output Path for RVC Audio": "مسار الإخراج لصوت RVC",
162
+ "Enable Applio integration with Discord presence": "تمكين تكامل Applio مع وجود Discord",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "سيتم تنشيط إمكانية عرض نشاط Applio الحالي في Discord.",
164
+ "Enable Applio integration with applio.org/models using flask": "تمكين تكامل Applio مع applio.org/models باستخدام القارورة",
165
+ "It will activate the possibility of downloading models with a click from the website.": "سيتم تنشيط إمكانية تنزيل النماذج بنقرة واحدة من الموقع.",
166
+ "Theme": "موضوع",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "حدد السمة التي تريد استخدامها. (يتطلب إعادة تشغيل Applio)",
168
+ "Language": "اللغة",
169
+ "Select the language you want to use. (Requires restarting Applio)": "حدد اللغة التي تريد استخدامها. (يتطلب إعادة تشغيل Applio)",
170
+ "Plugin Installer": "مثبت البرنامج المساعد",
171
+ "Drag your plugin.zip to install it": "اسحب plugin.zip لتثبيته",
172
+ "Version Checker": "مدقق الإصدار",
173
+ "Check which version of Applio is the latest to see if you need to update.": "تحقق من إصدار Applio هو الأحدث لمعرفة ما إذا كنت بحاجة إلى التحديث.",
174
+ "Check for updates": "التحقق من وجود تحديثات"
175
+ }
assets/i18n/languages/bn_BN.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "আলটিমেট ভয়েস ক্লোনিং টুল, অতুলনীয় শক্তি, মডুলারিটি এবং ব্যবহারকারী-বান্ধব অভিজ্ঞতার জন্য নিখুঁতভাবে অপ্টিমাইজ করা।",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "এই বিভাগে কিছু অতিরিক্ত ইউটিলিটি রয়েছে যা প্রায়শই পরীক্ষামূলক পর্যায়ে থাকতে পারে।",
4
+ "Output Information": "আউটপুট তথ্য",
5
+ "The output information will be displayed here.": "আউটপুট তথ্য এখানে প্রদর্শিত হবে।",
6
+ "Inference": "অনুমান",
7
+ "Train": "ট্রেন",
8
+ "Extra": "অতিরিক্ত",
9
+ "Merge Audios": "অডিওগুলি মার্জ করুন",
10
+ "Processing": "প্রক্রিয়াকরণ",
11
+ "Audio Analyzer": "অডিও বিশ্লেষক",
12
+ "Model Information": "মডেল তথ্য",
13
+ "Plugins": "প্লাগইন",
14
+ "Download": "ডাউনলোড",
15
+ "Report a Bug": "একটি বাগ রিপোর্ট করুন",
16
+ "Settings": "সেটিংস",
17
+ "Preprocess": "প্রিপ্রসেস",
18
+ "Model Name": "মডেলের নাম",
19
+ "Name of the new model.": "নতুন মডেলের নাম",
20
+ "Enter model name": "মডেলের নাম লিখুন",
21
+ "Dataset Path": "ডেটাসেট পাথ",
22
+ "Path to the dataset folder.": "ডেটাসেট ফোল্ডারে পাথ।",
23
+ "Refresh Datasets": "ডেটাসেট রিফ্রেশ করুন",
24
+ "Dataset Creator": "ডেটাসেট স্রষ্টা",
25
+ "Dataset Name": "ডেটাসেটের নাম",
26
+ "Name of the new dataset.": "নতুন ডেটাসেটের নাম",
27
+ "Enter dataset name": "তথ্যসেটের নাম লিখুন",
28
+ "Upload Audio Dataset": "অডিও ডেটাসেট আপলোড করুন",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "অডিও ফাইলটি সফলভাবে ডেটাসেটে যুক্ত করা হয়েছে। অনুগ্রহ করে প্রিপ্রসেস বাটনে ক্লিক করুন।",
30
+ "Enter dataset path": "ডেটাসেটের পথ লিখুন",
31
+ "Sampling Rate": "নমুনা হার",
32
+ "The sampling rate of the audio files.": "অডিও ফাইলের নমুনা হার।",
33
+ "RVC Version": "আরভিসি সংস্করণ",
34
+ "The RVC version of the model.": "মডেলটির আরভিসি সংস্করণ।",
35
+ "Preprocess Dataset": "প্রিপ্রসেস ডেটাসেট",
36
+ "Extract": "নিষ্কাশন",
37
+ "Hop Length": "হপ দৈর্ঘ্য",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "সিস্টেমটি একটি উল্লেখযোগ্য পিচ পরিবর্তনে রূপান্তরিত হতে যে সময়কাল নেয় তা বোঝায়। ছোট হপ দৈর্ঘ্যের জন্য অনুমানের জন্য আরও সময় প্রয়োজন তবে উচ্চতর পিচ নির্ভুলতা অর্জন করে।",
39
+ "Batch Size": "ব্যাচের আকার",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "এটি আপনার জিপিইউর উপলব্ধ ভিআরএএমের সাথে সারিবদ্ধ করার পরামর্শ দেওয়া হচ্ছে। 4 এর একটি সেটিং উন্নত নির্ভুলতা সরবরাহ করে তবে ধীর প্রক্রিয়াজাতকরণ, যখন 8 দ্রুত এবং মানক ফলাফল সরবরাহ করে।",
41
+ "Save Every Epoch": "প্রতিটি যুগ সংরক্ষণ করুন",
42
+ "Determine at how many epochs the model will saved at.": "মডেলটি কতগুলি যুগে সংরক্ষণ করবে তা নির্ধারণ করুন।",
43
+ "Total Epoch": "মোট যুগ",
44
+ "Specifies the overall quantity of epochs for the model training process.": "মডেল প্রশিক্ষণ প্রক্রিয়ার জন্য যুগের সামগ্রিক পরিমাণ উল্লেখ করে।",
45
+ "Pretrained": "পূর্বনির্ধারিত",
46
+ "Save Only Latest": "শুধুমাত্র সর্বশেষ সংরক্ষণ করুন",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "এই সেটিংটি সক্ষম করার ফলে জি এবং ডি ফাইলগুলি কেবলমাত্র তাদের সাম্প্রতিকতম সংস্করণগুলি সংরক্ষণ করবে, কার্যকরভাবে স্টোরেজ স্পেস সংরক্ষণ করবে।",
48
+ "Save Every Weights": "প্রতিটি ওজন সংরক্ষণ করুন",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "এই সেটিংটি আপনাকে প্রতিটি যুগের শেষে মডেলের ওজন সংরক্ষণ করতে সক্ষম করে।",
50
+ "Custom Pretrained": "কাস্টম প্রিট্রেইনড",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "কাস্টম প্রিট্রেনড মডেলগুলি ব্যবহার করা উচ্চতর ফলাফলের দিকে পরিচালিত করতে পারে, কারণ নির্দিষ্ট ব্যবহারের ক্ষেত্রে উপযুক্ত প্রিট্রেনড মডেলগুলি নির্বাচন করা কর্মক্ষমতা উল্লেখযোগ্যভাবে বাড়িয়ে তুলতে পারে।",
52
+ "Upload Pretrained Model": "প্রিট্রেনড মডেল আপলোড করুন",
53
+ "Refresh Custom Pretraineds": "কাস্টম প্রিট্রেনেডগুলি রিফ্রেশ করুন",
54
+ "Pretrained Custom Settings": "পূর্বনির্ধারিত কাস্টম সেটিংস",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "আপনার ফেলে দেওয়া ফাইলটি একটি বৈধ পূর্বপ্রশিক্ষিত ফাইল নয়. অনুগ্রহ করে আবার চেষ্টা করুন।",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ড্রপডাউন মেনুতে প্রিট্রেনড ফাইলটি দেখতে রিফ্রেশ বোতামটি ক্লিক করুন।",
57
+ "Pretrained G Path": "কাস্টম প্রিট্রেনড জি",
58
+ "Pretrained D Path": "কাস্টম প্রিট্রেনড ডি",
59
+ "GPU Settings": "জিপিইউ সেটিংস",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "উন্নত GPU সেটিংস সেট করে, আরও ভাল GPU আর্কিটেকচার সহ ব্যবহারকারীদের জন্য প্রস্তাবিত।",
61
+ "GPU Custom Settings": "GPU কাস্টম সেটিংস",
62
+ "GPU Number": "জিপিইউ নম্বর",
63
+ "0 to ∞ separated by -": "0 থেকে ∞ দ্বারা পৃথক করা হয় -",
64
+ "GPU Information": "জিপিইউ তথ্য",
65
+ "Pitch Guidance": "পিচ গাইডেন্স",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "পিচ গাইডেন্স নিয়োগ করে, এর পিচ সহ মূল ভয়েসের স্বরভঙ্গিটি মিরর করা সম্ভব হয়। এই বৈশিষ্ট্যটি গাওয়া এবং অন্যান্য পরিস্থিতিতে বিশেষত মূল্যবান যেখানে মূল সুর বা পিচ প্যাটার্ন সংরক্ষণ করা অপরিহার্য।",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "আপনার নিজের প্রশিক্ষণের সময় প্রিপ্রশিক্ষিত মডেলগুলি ব্যবহার করুন। এই পদ্ধতির প্রশিক্ষণের সময়কাল হ��রাস করে এবং সামগ্রিক মান বাড়ায়।",
68
+ "Extract Features": "এক্সট্রাক্ট বৈশিষ্ট্য",
69
+ "Start Training": "প্রশিক্ষণ শুরু করুন",
70
+ "Generate Index": "সূচী তৈরি করুন",
71
+ "Voice Model": "ভয়েস মডেল",
72
+ "Select the voice model to use for the conversion.": "রূপান্তরটির জন্য ব্যবহার করতে ভয়েস মডেলটি নির্বাচন করুন।",
73
+ "Index File": "সূচী ফাইল",
74
+ "Select the index file to use for the conversion.": "রূপান্তরটির জন্য ব্যবহার করতে সূচী ফাইলটি নির্বাচন করুন।",
75
+ "Refresh": "সতেজ",
76
+ "Unload Voice": "ভয়েস আনলোড করুন",
77
+ "Single": "একক",
78
+ "Upload Audio": "অডিও আপলোড করুন",
79
+ "Select Audio": "অডিও নির্বাচন করুন",
80
+ "Select the audio to convert.": "রূপান্তর করতে অডিও নির্বাচন করুন।",
81
+ "Advanced Settings": "উন্নত সেটিংস",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "আউটপুট সাফ করুন (সম্পদ / অডিওতে সমস্ত অডিও মুছে ফেলে)",
83
+ "Custom Output Path": "কাস্টম আউটপুট পাথ",
84
+ "Output Path": "আউটপুট পাথ",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "পাথ যেখানে আউটপুট অডিও সংরক্ষণ করা হবে, সম্পদ / অডিও / output.wav ডিফল্টরূপে",
86
+ "Split Audio": "অডিও বিভক্ত করুন",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "কিছু ক্ষেত্রে আরও ভাল ফলাফল পেতে অনুমানের জন্য অডিওটিকে খণ্ডগুলিতে বিভক্ত করুন।",
88
+ "Autotune": "অটোটিউন",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "আপনার অনুমানগুলিতে একটি নরম অটোটিউন প্রয়োগ করুন, রূপান্তরগুলি গাওয়ার জন্য প্রস্তাবিত।",
90
+ "Clean Audio": "পরিষ্কার অডিও",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "অডিও বলার জন্য প্রস্তাবিত কোলাহল শনাক্তকরণ অ্যালগরিদমগুলি ব্যবহার করে আপনার অডিও আউটপুট পরিষ্কার করুন।",
92
+ "Clean Strength": "পরিষ্কার শক্তি",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "আপনি যে অডিওটি চান তাতে ক্লিন-আপ স্তরটি সেট করুন, আপনি এটি যত বাড়াবেন তত বেশি এটি পরিষ্কার হবে, তবে এটি সম্ভব যে অডিওটি আরও সংকুচিত হবে।",
94
+ "Pitch": "পিচ",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "অডিওর পিচ সেট করুন, মান যত বেশি, পিচ তত বেশি।",
96
+ "Filter Radius": "ফিল্টার ব্যাসার্ধ",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "যদি সংখ্যাটি তিনটির চেয়ে বেশি বা সমান হয় তবে সংগৃহীত স্বন ফলাফলগুলিতে মধ্যমা ফিল্টারিং নিয়োগ করা শ্বাসকষ্ট হ্রাস করার সম্ভাবনা রয়েছে।",
98
+ "Search Feature Ratio": "অনুসন্ধান বৈশিষ্ট্য অনুপাত",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "ইনডেক্স ফাইল দ্বারা প্রভাবিত; একটি উচ্চতর মান বৃহত্তর প্রভাবের সাথে মিলে যায়। তবে, নিম্ন মানগুলি বেছে নেওয়া অডিওতে উপস্থিত নিদর্শনগুলি প্রশমিত করতে সহায়তা করতে পারে।",
100
+ "Volume Envelope": "ভলিউম খাম",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "আউটপুটের ভলিউম খামের সাথে বিকল্প বা মিশ্রণ করুন। অনুপাতটি 1 এর কাছাকাছি হয়, তত বেশি আউটপুট খাম নিযুক্ত করা হয়।",
102
+ "Protect Voiceless Consonants": "কণ্ঠহীন ব্যঞ্জনবর্ণ রক্ষা করুন",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "ইলেক্ট্রো-অ্যাকোস্টিক ছিঁড়ে যাওয়া এবং অন্যান্য নিদর্শনগুলি রোধ করতে স্বতন্ত্র ব্যঞ্জনবর্ণ এবং শ্বাস প্রশ্বাসের শব্দগুলি রক্ষা করুন। প্যারামিটারটিকে তার সর্বোচ্চ মান 0.5 এ টানলে ব্যাপক সুরক্ষা সরবরাহ করে। যাইহোক, এই মান হ্রাস করা সম্ভাব্যভাবে সূচক প্রভাব প্রশমিত করার সময় সুরক্ষার পরিমাণ হ্রাস করতে পারে।",
104
+ "Pitch extraction algorithm": "পিচ নিষ্কাশন অ্যালগরিদম",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "অডিও রূপান্তর জন্য ব্যবহার করতে পিচ নিষ্কাশন অ্যালগরিদম. ডিফল্ট অ্যালগরিদমটি আরএমভিপিই, যা বেশিরভাগ ক্ষেত্রে প্রস্তাবিত।",
106
+ "Convert": "রূপান্তর",
107
+ "Export Audio": "অডিও রপ্তানি করুন",
108
+ "Batch": "ব্যাচ",
109
+ "Input Folder": "ইনপুট ফোল্ডার",
110
+ "Select the folder containing the audios to convert.": "রূপান্তর করতে অডিওযুক্ত ফোল্ডারটি নির্বাচন করুন।",
111
+ "Enter input path": "ইনপুট পথ লিখুন",
112
+ "Output Folder": "আউটপুট ফোল্ডার",
113
+ "Select the folder where the output audios will be saved.": "ফোল্ডারটি নির্বাচন করুন যেখানে আউটপুট অডিওগুলি সংরক্ষণ করা হবে।",
114
+ "Enter output path": "আউটপুট পথ লিখুন",
115
+ "Get information about the audio": "অডিও সম্পর্কে তথ্য পান",
116
+ "Information about the audio file": "অডিও ফাইল সম্পর্কে তথ্য",
117
+ "Waiting for information...": "তথ্যের অপেক্ষায়...",
118
+ "## Voice Blender": "## ভয়েস ব্লেন্ডার",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "দুটি ভয়েস মডেল নির্বাচন করুন, আপনার পছন্দসই মিশ্রণের শতাংশ সেট করুন এবং এগুলি সম্পূর্ণ নতুন ভয়েসে মিশ্রিত করুন।",
120
+ "Voice Blender": "ভয়েস ব্লেন্ডার",
121
+ "Drag and drop your model here": "আপনার মডেলটি এখানে টেনে এনে ছেড়ে দিন",
122
+ "You can also use a custom path.": "আপনি একটি কাস্টম পাথও ব্যবহার করতে পারেন।",
123
+ "Blend Ratio": "ব্লেন্ড রেশিও",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "একপাশে বা অন্যদিকে অবস্থানটি আরও সামঞ্জস্য করা মডেলটিকে প্রথম বা দ্বিতীয়টির সাথে আরও অনুরূপ করে তুলবে।",
125
+ "Fusion": "ফিউশন",
126
+ "Path to Model": "মডেলের পথ",
127
+ "Enter path to model": "মডেলের পথ লিখুন",
128
+ "Model information to be placed": "মডেল তথ্য স্থাপন করা হবে",
129
+ "Inroduce the model information": "মডেলের তথ্য ইনরোডিউস করুন",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "মডেলটিতে যে তথ্য রাখতে হবে (আপনি এটি ফাঁকা রেখে দিতে পারেন বা কিছু রাখতে পারেন)।",
131
+ "View model information": "মডেল তথ্য দেখুন",
132
+ "Introduce the model pth path": "মডেল পিটিএইচ পাথ পরিচয় করিয়ে দিন",
133
+ "View": "দর্শন",
134
+ "Model extraction": "মডেল নিষ্কাশন",
135
+ "Model conversion": "মডেল রূপান্তর",
136
+ "Pth file": "Pth ফাইল",
137
+ "Output of the pth file": "পিটিএইচ ফাইলের আউটপুট",
138
+ "# How to Report an Issue on GitHub": "# গিটহাবে একটি সমস্যা কিভাবে রিপোর্ট করবেন",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. আপনি যে সমস্যার সম্মুখীন হচ্ছেন তা রেকর্ড করা শুরু করতে নীচের 'রেকর্ড স্ক্রিন' বোতামে ক্লিক করুন।",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. একবার আপনি সমস্যাটি রেকর্ড করা শেষ করার পরে, 'রেকর্ডিং বন্ধ করুন' বোতামে ক্লিক করুন (একই বোতাম, তবে আপনি সক্রিয়ভাবে রেকর্ড করছেন কিনা তার উপর নির্ভর করে লেবেলটি পরিবর্তিত হয়)।",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "৩. [GitHub Issues](https://github.com/IAHispano/Applio/issues) এ যান এবং 'New Issue' বাটনে ক্লিক করুন।",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. প্রদত্ত ইস্যু টেমপ্লেটটি সম্পূর্ণ করুন, প্রয়োজন অনুসারে বিশদ অন্তর্ভুক্ত করা নিশ্চিত করুন এবং পূর্ববর্তী পদক্ষেপ থেকে রেকর্ড করা ফাইলটি আপলোড করতে সম্পদ বিভাগটি ব্যবহার করুন।",
143
+ "Record Screen": "রেকর্ড স্ক্রিন",
144
+ "Record": "রেকর্ড",
145
+ "Stop Recording": "রেকর্ডিং বন্ধ করুন",
146
+ "Introduce the model .pth path": "মডেল .pth পাথ পরিচয় করিয়ে দিন",
147
+ "See Model Information": "মডেল তথ্য দেখুন",
148
+ "## Download Model": "## মডেল ডাউনলোড করুন",
149
+ "Model Link": "মডেল লিংক",
150
+ "Introduce the model link": "মডেল লিঙ্কটি পরিচয় করিয়ে দিন",
151
+ "Download Model": "মডেল ডাউনলোড করুন",
152
+ "## Drop files": "## ফাইল ড্রপ করুন",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "আপনার .pth ফাইল এবং .index ফাইলটি এই স্পেসে টেনে আনুন। একটা টেনে আনুন, তারপর অন্যটা।",
154
+ "TTS Voices": "টিটিএস ভয়েসেস",
155
+ "Select the TTS voice to use for the conversion.": "রূপান্তরটির জন্য ব্যবহার করতে TTS ভয়েস নির্বাচন করুন।",
156
+ "Text to Synthesize": "সংশ্লেষণ করার জন্য পাঠ্য",
157
+ "Enter the text to synthesize.": "সংশ্লেষ করতে পাঠ্যটি প্রবেশ করান।",
158
+ "Or you can upload a .txt file": "অথবা আপনি একটি .txt ফাইল আপলোড করতে পারেন",
159
+ "Enter text to synthesize": "সংশ্লেষ করতে পাঠ্য লিখুন",
160
+ "Output Path for TTS Audio": "TTS অডিওর জন্য আউটপুট পাথ",
161
+ "Output Path for RVC Audio": "আরভিসি অডিওর জন্য আউটপুট পাথ",
162
+ "Enable Applio integration with Discord presence": "ডিসকর্ড উপস্থিতি সহ অ্যাপলিও ইন্��িগ্রেশন সক্ষম করুন",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "এটি ডিসকর্ডে বর্তমান অ্যাপলিও ক্রিয়াকলাপ প্রদর্শনের সম্ভাবনা সক্রিয় করবে।",
164
+ "Enable Applio integration with applio.org/models using flask": "ফ্লাস্ক ব্যবহার করে applio.org/models সাথে অ্যাপলিও ইন্টিগ্রেশন সক্ষম করুন",
165
+ "It will activate the possibility of downloading models with a click from the website.": "এটি ওয়েবসাইট থেকে একটি ক্লিকের সাথে মডেলগুলি ডাউনলোড করার সম্ভাবনা সক্রিয় করবে।",
166
+ "Theme": "থীম",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "আপনি যে থিমটি ব্যবহার করতে চান তা নির্বাচন করুন। (অ্যাপলিও পুনরায় চালু করা প্রয়োজন)",
168
+ "Language": "ভাষা",
169
+ "Select the language you want to use. (Requires restarting Applio)": "আপনি যে ভাষাটি ব্যবহার করতে চান তা নির্বাচন করুন। (অ্যাপলিও পুনরায় চালু করা প্রয়োজন)",
170
+ "Plugin Installer": "প্লাগইন ইনস্টলার",
171
+ "Drag your plugin.zip to install it": "এটি ইনস্টল করতে আপনার plugin.zip টেনে আনুন",
172
+ "Version Checker": "সংস্করণ পরীক্ষক",
173
+ "Check which version of Applio is the latest to see if you need to update.": "আপনার আপডেট করার প্রয়োজন আছে কিনা তা দেখতে অ্যাপলিওর কোন সংস্করণটি সর্বশেষতম তা পরীক্ষা করে দেখুন।",
174
+ "Check for updates": "আপডেটের জন্য পরীক্ষা করুন"
175
+ }
assets/i18n/languages/de_DE.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Ultimatives Tool zum Klonen von Stimmen, das sorgfältig für unübertroffene Leistung, Modularität und Benutzerfreundlichkeit optimiert wurde.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Dieser Abschnitt enthält einige zusätzliche Dienstprogramme, die sich häufig in experimentellen Phasen befinden.",
4
+ "Output Information": "Informationen zur Ausgabe",
5
+ "The output information will be displayed here.": "Hier werden die Ausgabeinformationen angezeigt.",
6
+ "Inference": "Inferenz",
7
+ "Train": "Trainieren",
8
+ "Extra": "Extra",
9
+ "Merge Audios": "Audios zusammenführen",
10
+ "Processing": "Verarbeitung",
11
+ "Audio Analyzer": "Audio-Analysator",
12
+ "Model Information": "Modell-Informationen",
13
+ "Plugins": "Plugins",
14
+ "Download": "Herunterladen",
15
+ "Report a Bug": "Einen Fehler melden",
16
+ "Settings": "Einstellungen",
17
+ "Preprocess": "Vorverarbeiten",
18
+ "Model Name": "Modellname",
19
+ "Name of the new model.": "Name des neuen Modells.",
20
+ "Enter model name": "Modellnamen eingeben",
21
+ "Dataset Path": "Datensatz-Pfad",
22
+ "Path to the dataset folder.": "Pfad zum Datensatz-Ordner.",
23
+ "Refresh Datasets": "Aktualisiere den Datensatz",
24
+ "Dataset Creator": "Ersteller des Datensatzes",
25
+ "Dataset Name": "Name des Datensatzes",
26
+ "Name of the new dataset.": "Name des neuen Datensatzes.",
27
+ "Enter dataset name": "Geben Sie den Namen des Datensatzes ein",
28
+ "Upload Audio Dataset": "Audio-Datensatz hochladen",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Die Audiodatei wurde erfolgreich zum Datensatz hinzugefügt. Bitte klicken Sie auf die Schaltfläche \"Vorverarbeiten\".",
30
+ "Enter dataset path": "Datensatz-Pfad eingeben",
31
+ "Sampling Rate": "Samplingrate",
32
+ "The sampling rate of the audio files.": "Die Samplingrate der Audiodateien.",
33
+ "RVC Version": "RVC-Version",
34
+ "The RVC version of the model.": "Die RVC-Version des Modells.",
35
+ "Preprocess Dataset": "Datensatz vorverarbeiten",
36
+ "Extract": "Extrahieren",
37
+ "Hop Length": "Sprungweite",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Gibt die Dauer an, die das System benötigt, um zu einer signifikanten Tonhöhenänderung überzugehen. Kleinere Sprunglängen benötigen mehr Zeit für die Inferenz, führen aber tendenziell zu einer höheren Tonhöhengenauigkeit.",
39
+ "Batch Size": "Losgröße",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Es ist ratsam, es mit dem verfügbaren VRAM Ihrer GPU in Einklang zu bringen. Eine Einstellung von 4 bietet eine verbesserte Genauigkeit, aber eine langsamere Verarbeitung, während 8 schnellere und standardmäßige Ergebnisse liefert.",
41
+ "Save Every Epoch": "Speichere nach jeder Epoche",
42
+ "Determine at how many epochs the model will saved at.": "Legen Sie fest, bei wie vielen Epochen das Modell gespeichert wird.",
43
+ "Total Epoch": "Epoche insgesamt",
44
+ "Specifies the overall quantity of epochs for the model training process.": "Gibt die Gesamtanzahl der Epochen für den Modelltrainingsprozess an.",
45
+ "Pretrained": "Vortrainiert",
46
+ "Save Only Latest": "Nur das Neueste speichern",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Wenn Sie diese Einstellung aktivieren, werden in den G- und D-Dateien nur die neuesten Versionen gespeichert, wodurch Speicherplatz gespart wird.",
48
+ "Save Every Weights": "Speichern Sie alle Gewichtungen",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Mit dieser Einstellung können Sie die Gewichtungen des Modells am Ende jeder Epoche speichern.",
50
+ "Custom Pretrained": "Benutzerdefiniert vortrainiert",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "Die Verwendung benutzerdefinierter vortrainierter Modelle kann zu besseren Ergebnissen führen, da die Auswahl der am besten geeigneten vortrainierten Modelle, die auf den jeweiligen Anwendungsfall zugeschnitten sind, die Leistung erheblich verbessern kann.",
52
+ "Upload Pretrained Model": "Vortrainiertes Modell hochladen",
53
+ "Refresh Custom Pretraineds": "Aktualisiere benutzerdefinierte vortrainierte",
54
+ "Pretrained Custom Settings": "Vortrainierte benutzerdefinierte Einstellungen",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "Die Datei, die Sie abgelegt haben, ist keine gültige vortrainierte Datei. Bitte versuchen Sie es erneut.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Klicken Sie auf die Schaltfläche \"Aktualisieren\", um die vortrainierte Datei im Dropdown-Menü anzuzeigen.",
57
+ "Pretrained G Path": "Benutzerdefinierter vortrainierter G Pfad",
58
+ "Pretrained D Path": "Benutzerdefinierter vortrainierter D Pfad",
59
+ "GPU Settings": "GPU-Einstellungen",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Legt erweiterte GPU-Einstellungen fest, die für Benutzer mit besserer GPU-Architektur empfohlen werden.",
61
+ "GPU Custom Settings": "Benutzerdefinierte GPU-Einstellungen",
62
+ "GPU Number": "GPU-Nummer",
63
+ "0 to ∞ separated by -": "0 bis ∞ getrennt durch -",
64
+ "GPU Information": "GPU-Informationen",
65
+ "Pitch Guidance": "Tonhöhen-Führung",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Durch den Einsatz von Tonhöhenführung wird es möglich, die Intonation der Originalstimme, einschließlich ihrer Tonhöhe, zu spiegeln. Diese Funktion ist besonders wertvoll für das Singen und andere Szenarien, in denen die Beibehaltung der ursprünglichen Melodie oder des Tonhöhenmusters unerlässlich ist.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Verwenden Sie vortrainierte Modelle, wenn Sie Ihre eigenen trainieren. Dieser Ansatz verkürzt die Schulungsdauer und verbessert die Gesamtqualität.",
68
+ "Extract Features": "Extrahieren von Merkmalen",
69
+ "Start Training": "Training starten",
70
+ "Generate Index": "Index generieren",
71
+ "Voice Model": "Sprach-Modell",
72
+ "Select the voice model to use for the conversion.": "Wählen Sie das Sprachmodell aus, das für die Konvertierung verwendet werden soll.",
73
+ "Index File": "Index-Datei",
74
+ "Select the index file to use for the conversion.": "Wählen Sie die Indexdatei aus, die für die Konvertierung verwendet werden soll.",
75
+ "Refresh": "Aktualisieren",
76
+ "Unload Voice": "Stimme entladen",
77
+ "Single": "Einzeln",
78
+ "Upload Audio": "Audio hochladen",
79
+ "Select Audio": "Wählen Sie ein Audio",
80
+ "Select the audio to convert.": "Wählen Sie das zu konvertierende Audio aus.",
81
+ "Advanced Settings": "Erweiterte Einstellungen",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Ausgaben löschen (Löscht alle Audios in assets/audios)",
83
+ "Custom Output Path": "Benutzerdefinierter Ausgabepfad",
84
+ "Output Path": "Ausgabepfad",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Der Pfad, in dem das Ausgabeaudio gespeichert wird, standardmäßig in assets/audios/output.wav",
86
+ "Split Audio": "Audio aufteilen",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Teilen Sie die Audiodaten für Rückschlüsse in Blöcke auf, um in einigen Fällen bessere Ergebnisse zu erzielen.",
88
+ "Autotune": "Autotune",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Wenden Sie ein sanftes Autotune auf Ihre Inferenzen an, das für Gesangskonvertierungen empfohlen wird.",
90
+ "Clean Audio": "Audio bereinigen",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Bereinigen Sie Ihre Audioausgabe mithilfe von Rauscherkennungsalgorithmen, die für gesprochene Audios empfohlen werden.",
92
+ "Clean Strength": "Bereinigungsstärke",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Stellen Sie den Bereinigungsstärke auf den gewünschten Wert ein, je mehr Sie ihn erhöhen, desto mehr wird bereinigt, aber es ist möglich, dass der Ton stärker komprimiert wird.",
94
+ "Pitch": "Tonhöhe",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Stellen Sie die Tonhöhe des Audios ein, je höher der Wert, desto höher die Tonhöhe.",
96
+ "Filter Radius": "Filter-Radius",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Wenn die Zahl größer oder gleich drei ist, kann die Verwendung einer Medianfilterung für die gesammelten Tonergebnisse die Atmung verringern.",
98
+ "Search Feature Ratio": "Such-Merkmal-Verhältnis",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Einfluss, der von der Indexdatei ausgeübt wird; Ein höherer Wert entspricht einem größeren Einfluss. Wenn Sie sich jedoch für niedrigere Werte entscheiden, können Sie Artefakte im Audiomaterial abschwächen.",
100
+ "Volume Envelope": "Lautstärke-Hüllkurve",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Ersetzen oder überblenden Sie die Lautstärke-H��llkurve des Ausgangs. Je näher das Verhältnis an 1 liegt, desto mehr wird die Ausgangshüllkurve verwendet.",
102
+ "Protect Voiceless Consonants": "Schützen Sie stimmlose Konsonanten",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Schützen Sie eindeutige Konsonanten und Atemgeräusche, um elektroakustisches Reißen und andere Artefakte zu vermeiden. Das Ziehen des Parameters auf den Maximalwert von 0,5 bietet einen umfassenden Schutz. Das Verringern dieses Werts kann jedoch den Umfang des Schutzes verringern und gleichzeitig den Indizierungseffekt möglicherweise abschwächen.",
104
+ "Pitch extraction algorithm": "Algorithmus zur Tonhöhenextraktion",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Tonhöhenextraktionsalgorithmus, der für die Audiokonvertierung verwendet werden soll. Der Standardalgorithmus ist rmvpe, der in den meisten Fällen empfohlen wird.",
106
+ "Convert": "Umwandeln",
107
+ "Export Audio": "Audio exportieren",
108
+ "Batch": "Charge",
109
+ "Input Folder": "Eingabe-Ordner",
110
+ "Select the folder containing the audios to convert.": "Wählen Sie den Ordner aus, der die zu konvertierenden Audios enthält.",
111
+ "Enter input path": "Eingabepfad eingeben",
112
+ "Output Folder": "Ausgabe-Ordner",
113
+ "Select the folder where the output audios will be saved.": "Wählen Sie den Ordner aus, in dem die ausgegebenen Audios gespeichert werden sollen.",
114
+ "Enter output path": "Ausgabepfad eingeben",
115
+ "Get information about the audio": "Abrufen von Informationen zum Audio",
116
+ "Information about the audio file": "Informationen zur Audiodatei",
117
+ "Waiting for information...": "Warten auf Informationen...",
118
+ "## Voice Blender": "## Voice Blender",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Wählen Sie zwei Stimmmodelle aus, legen Sie den gewünschten Überblendungsprozentsatz fest und mischen Sie sie zu einer völlig neuen Stimme.",
120
+ "Voice Blender": "Voice Blender",
121
+ "Drag and drop your model here": "Ziehen Sie Ihr Modell per Drag & Drop hierher",
122
+ "You can also use a custom path.": "Sie können auch einen benutzerdefinierten Pfad verwenden.",
123
+ "Blend Ratio": "Mischungsverhältnis",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Wenn Sie die Position mehr auf die eine oder andere Seite anpassen, wird das Modell dem ersten oder zweiten ähnlicher.",
125
+ "Fusion": "Verschmelzen",
126
+ "Path to Model": "Pfad zum Modell",
127
+ "Enter path to model": "Pfad zum Modell eingeben",
128
+ "Model information to be placed": "Zu platzierende Modellinformationen",
129
+ "Inroduce the model information": "Einfügen der Modellinformationen",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "Die Informationen, die in das Modell eingefügt werden sollen (Sie können das Feld leer lassen oder etwas anderes einfügen).",
131
+ "View model information": "Anzeigen von Modellinformationen",
132
+ "Introduce the model pth path": "Einfügen des pth Pfad des Modells",
133
+ "View": "Ansehen",
134
+ "Model extraction": "Modell-Extraktion",
135
+ "Model conversion": "Modell-Konvertierung",
136
+ "Pth file": "Pth-Datei",
137
+ "Output of the pth file": "Ausgabe der pth-Datei",
138
+ "# How to Report an Issue on GitHub": "# So melden Sie ein Problem auf GitHub",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Klicken Sie unten auf die Schaltfläche \"Bildschirm aufzeichnen\", um mit der Aufzeichnung des aufgetretenen Problems zu beginnen.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Wenn Sie mit der Aufnahme des Problems fertig sind, klicken Sie auf die Schaltfläche \"Aufnahme beenden\" (dieselbe Schaltfläche, aber die Beschriftung ändert sich, je nachdem, ob Sie aktiv aufnehmen oder nicht).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Gehen Sie zu [GitHub Issues](https://github.com/IAHispano/Applio/issues) und klicken Sie auf die Schaltfläche \"New Issue\".",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Füllen Sie die bereitgestellte Problemvorlage aus, stellen Sie sicher, dass Sie die erforderlichen Details angeben, und verwenden Sie den Abschnitt \"Assets\", um die aufgezeichnete Datei aus dem vorherigen Schritt hochzuladen.",
143
+ "Record Screen": "Bildschirm aufzeichnen",
144
+ "Record": "Aufzeichnen",
145
+ "Stop Recording": "Aufzeichnung beenden",
146
+ "Introduce the model .pth path": "Einfügen des .pth Pfad des Modells",
147
+ "See Model Information": "Siehe Modellinformationen",
148
+ "## Download Model": "## Modell herunterladen",
149
+ "Model Link": "Modell-Link",
150
+ "Introduce the model link": "Einfügen des Modell-Links",
151
+ "Download Model": "Modell herunterladen",
152
+ "## Drop files": "## Dateien ablegen",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Ziehen Sie Ihre .pth und .index Datei in diesen Bereich. Ziehen Sie das eine und dann das andere.",
154
+ "TTS Voices": "TTS-Stimmen",
155
+ "Select the TTS voice to use for the conversion.": "Wählen Sie die TTS-Stimme aus, die für die Konvertierung verwendet werden soll.",
156
+ "Text to Synthesize": "Zu synthetisierender Text",
157
+ "Enter the text to synthesize.": "Geben Sie den zu synthetisierenden Text ein.",
158
+ "Or you can upload a .txt file": "Oder Sie können eine .txt Datei hochladen",
159
+ "Enter text to synthesize": "Geben Sie den zu synthetisierenden Text ein",
160
+ "Output Path for TTS Audio": "Ausgabepfad für das TTS-Audio",
161
+ "Output Path for RVC Audio": "Ausgabepfad für das RVC-Audio",
162
+ "Enable Applio integration with Discord presence": "Aktivieren Sie die Applio-Integration mit Discord-Presence",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Es aktiviert die Möglichkeit, die aktuelle Applio-Aktivität in Discord anzuzeigen.",
164
+ "Enable Applio integration with applio.org/models using flask": "Aktivieren der Applio-Integration mit applio.org/models mithilfe von flask",
165
+ "It will activate the possibility of downloading models with a click from the website.": "Es aktiviert die Möglichkeit, Modelle mit einem Klick von der Website herunterzuladen.",
166
+ "Theme": "Design",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "Wählen Sie das Design aus, das Sie verwenden möchten. (Erfordert einen Neustart von Applio)",
168
+ "Language": "Sprache",
169
+ "Select the language you want to use. (Requires restarting Applio)": "Wählen Sie die Sprache aus, die Sie verwenden möchten. (Erfordert einen Neustart von Applio)",
170
+ "Plugin Installer": "Plugin-Installer",
171
+ "Drag your plugin.zip to install it": "Ziehen Sie Ihre plugin.zip, um sie zu installieren",
172
+ "Version Checker": "Versions-Checker",
173
+ "Check which version of Applio is the latest to see if you need to update.": "Überprüfen Sie, welche Version von Applio die neueste ist, um zu sehen, ob Sie ein Update benötigen.",
174
+ "Check for updates": "Nach Updates suchen"
175
+ }
assets/i18n/languages/en_US.json ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "This section contains some extra utilities that often may be in experimental phases.",
4
+ "Output Information": "Output Information",
5
+ "The output information will be displayed here.": "The output information will be displayed here.",
6
+
7
+ "Inference": "Inference",
8
+ "Train": "Train",
9
+ "Extra": "Extra",
10
+ "Merge Audios": "Merge Audios",
11
+ "Processing": "Processing",
12
+ "Audio Analyzer": "Audio Analyzer",
13
+ "Model Information": "Model Information",
14
+ "Plugins": "Plugins",
15
+ "Download": "Download",
16
+ "Report a Bug": "Report a Bug",
17
+ "Settings": "Settings",
18
+
19
+ "Preprocess": "Preprocess",
20
+ "Model Name": "Model Name",
21
+ "Name of the new model.": "Name of the new model.",
22
+ "Enter model name": "Enter model name",
23
+ "Dataset Path": "Dataset Path",
24
+ "Path to the dataset folder.": "Path to the dataset folder.",
25
+ "Refresh Datasets": "Refresh Datasets",
26
+ "Dataset Creator": "Dataset Creator",
27
+ "Dataset Name": "Dataset Name",
28
+ "Name of the new dataset.": "Name of the new dataset.",
29
+ "Enter dataset name": "Enter dataset name",
30
+ "Upload Audio Dataset": "Upload Audio Dataset",
31
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "The audio file has been successfully added to the dataset. Please click the preprocess button.",
32
+ "Enter dataset path": "Enter dataset path",
33
+ "Sampling Rate": "Sampling Rate",
34
+ "The sampling rate of the audio files.": "The sampling rate of the audio files.",
35
+ "RVC Version": "RVC Version",
36
+ "The RVC version of the model.": "The RVC version of the model.",
37
+ "Preprocess Dataset": "Preprocess Dataset",
38
+
39
+ "Embedder Model": "Embedder Model",
40
+ "Model used for learning speaker embedding.": "Model used for learning speaker embedding.",
41
+ "Extract": "Extract",
42
+ "Hop Length": "Hop Length",
43
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.",
44
+ "Batch Size": "Batch Size",
45
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.",
46
+ "Save Every Epoch": "Save Every Epoch",
47
+ "Determine at how many epochs the model will saved at.": "Determine at how many epochs the model will saved at.",
48
+ "Total Epoch": "Total Epoch",
49
+ "Specifies the overall quantity of epochs for the model training process.": "Specifies the overall quantity of epochs for the model training process.",
50
+ "Pretrained": "Pretrained",
51
+ "Save Only Latest": "Save Only Latest",
52
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.",
53
+ "Save Every Weights": "Save Every Weights",
54
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "This setting enables you to save the weights of the model at the conclusion of each epoch.",
55
+ "Custom Pretrained": "Custom Pretrained",
56
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.",
57
+ "Upload Pretrained Model": "Upload Pretrained Model",
58
+ "Refresh Custom Pretraineds": "Refresh Custom Pretraineds",
59
+ "Pretrained Custom Settings": "Pretrained Custom Settings",
60
+ "The file you dropped is not a valid pretrained file. Please try again.": "The file you dropped is not a valid pretrained file. Please try again.",
61
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Click the refresh button to see the pretrained file in the dropdown menu.",
62
+ "Pretrained G Path": "Custom Pretrained G",
63
+ "Pretrained D Path": "Custom Pretrained D",
64
+ "GPU Settings": "GPU Settings",
65
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Sets advanced GPU settings, recommended for users with better GPU architecture.",
66
+ "GPU Custom Settings": "GPU Custom Settings",
67
+ "GPU Number": "GPU Number",
68
+ "0 to ∞ separated by -": "0 to ∞ separated by -",
69
+ "GPU Information": "GPU Information",
70
+ "Pitch Guidance": "Pitch Guidance",
71
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.",
72
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.",
73
+ "Extract Features": "Extract Features",
74
+ "We prioritize running the model extraction on the GPU for faster performance. If you prefer to use the CPU, simply leave the GPU field blank.": "We prioritize running the model extraction on the GPU for faster performance. If you prefer to use the CPU, simply leave the GPU field blank.",
75
+ "Overtraining Detector": "Overtraining Detector",
76
+ "Detect overtraining to prevent the model from learning the training data too well and losing the ability to generalize to new data.": "Detect overtraining to prevent the model from learning the training data too well and losing the ability to generalize to new data.",
77
+ "Overtraining Detector Settings": "Overtraining Detector Settings",
78
+ "Overtraining Threshold": "Overtraining Threshold",
79
+ "Set the maximum number of epochs you want your model to stop training if no improvement is detected.": "Set the maximum number of epochs you want your model to stop training if no improvement is detected.",
80
+ "Sync Graph": "Sync Graph",
81
+ "Synchronize the graph of the tensorbaord. Only enable this setting if you are training a new model.": "Synchronize the graph of the tensorbaord. Only enable this setting if you are training a new model.",
82
+
83
+ "Start Training": "Start Training",
84
+ "Stop Training & Restart Applio": "Stop Training & Restart Applio",
85
+ "Generate Index": "Generate Index",
86
+
87
+ "Export Model": "Export Model",
88
+ "The button 'Upload' is only for google colab: Uploads the exported files to the ApplioExported folder in your Google Drive.": "The button 'Upload' is only for google colab: Uploads the exported files to the ApplioExported folder in your Google Drive.",
89
+ "Exported Pth file": "Exported Pth file",
90
+ "Exported Index file": "Exported Index file",
91
+ "Select the pth file to be exported": "Select the pth file to be exported",
92
+ "Select the index file to be exported": "Select the index file to be exported",
93
+ "Upload": "Upload",
94
+
95
+ "Voice Model": "Voice Model",
96
+ "Select the voice model to use for the conversion.": "Select the voice model to use for the conversion.",
97
+ "Index File": "Index File",
98
+ "Select the index file to use for the conversion.": "Select the index file to use for the conversion.",
99
+ "Refresh": "Refresh",
100
+ "Unload Voice": "Unload Voice",
101
+
102
+ "Single": "Single",
103
+ "Upload Audio": "Upload Audio",
104
+ "Select Audio": "Select Audio",
105
+ "Select the audio to convert.": "Select the audio to convert.",
106
+ "Advanced Settings": "Advanced Settings",
107
+ "Clear Outputs (Deletes all audios in assets/audios)": "Clear Outputs (Deletes all audios in assets/audios)",
108
+ "Custom Output Path": "Custom Output Path",
109
+ "Output Path": "Output Path",
110
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "The path where the output audio will be saved, by default in assets/audios/output.wav",
111
+ "Split Audio": "Split Audio",
112
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Split the audio into chunks for inference to obtain better results in some cases.",
113
+ "Autotune": "Autotune",
114
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Apply a soft autotune to your inferences, recommended for singing conversions.",
115
+ "Clean Audio": "Clean Audio",
116
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Clean your audio output using noise detection algorithms, recommended for speaking audios.",
117
+ "Clean Strength": "Clean Strength",
118
+ "Upscale Audio": "Upscale Audio",
119
+ "Upscale the audio to a higher quality, recommended for low-quality audios. (It could take longer to process the audio)": "Upscale the audio to a higher quality, recommended for low-quality audios. (It could take longer to process the audio)",
120
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.",
121
+ "Pitch": "Pitch",
122
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Set the pitch of the audio, the higher the value, the higher the pitch.",
123
+ "Filter Radius": "Filter Radius",
124
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.",
125
+ "Search Feature Ratio": "Search Feature Ratio",
126
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.",
127
+ "Volume Envelope": "Volume Envelope",
128
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.",
129
+ "Protect Voiceless Consonants": "Protect Voiceless Consonants",
130
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.",
131
+ "Pitch extraction algorithm": "Pitch extraction algorithm",
132
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.",
133
+
134
+ "Convert": "Convert",
135
+ "Export Audio": "Export Audio",
136
+
137
+ "Batch": "Batch",
138
+ "Input Folder": "Input Folder",
139
+ "Select the folder containing the audios to convert.": "Select the folder containing the audios to convert.",
140
+ "Enter input path": "Enter input path",
141
+ "Output Folder": "Output Folder",
142
+ "Select the folder where the output audios will be saved.": "Select the folder where the output audios will be saved.",
143
+ "Enter output path": "Enter output path",
144
+
145
+ "Get information about the audio": "Get information about the audio",
146
+
147
+ "## Voice Blender": "## Voice Blender",
148
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.",
149
+ "Voice Blender": "Voice Blender",
150
+ "Drag and drop your model here": "Drag and drop your model here",
151
+ "You can also use a custom path.": "You can also use a custom path.",
152
+ "Blend Ratio": "Blend Ratio",
153
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Adjusting the position more towards one side or the other will make the model more similar to the first or second.",
154
+ "Fusion": "Fusion",
155
+
156
+ "Path to Model": "Path to Model",
157
+ "Enter path to model": "Enter path to model",
158
+ "Model information to be placed": "Model information to be placed",
159
+ "Inroduce the model information": "Inroduce the model information",
160
+ "The information to be placed in the model (You can leave it blank or put anything).": "The information to be placed in the model (You can leave it blank or put anything).",
161
+ "View model information": "View model information",
162
+ "Introduce the model pth path": "Introduce the model pth path",
163
+ "View": "View",
164
+ "Model extraction": "Model extraction",
165
+ "Model conversion": "Model conversion",
166
+ "Pth file": "Pth file",
167
+ "Output of the pth file": "Output of the pth file",
168
+
169
+ "Extract F0 Curve": "Extract F0 Curve",
170
+ "The f0 curve represents the variations in the base frequency of a voice over time, showing how pitch rises and falls.": "The f0 curve represents the variations in the base frequency of a voice over time, showing how pitch rises and falls.",
171
+
172
+ "# How to Report an Issue on GitHub": "# How to Report an Issue on GitHub",
173
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.",
174
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).",
175
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.",
176
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.",
177
+
178
+ "Record Screen": "Record Screen",
179
+ "Record": "Record",
180
+ "Stop Recording": "Stop Recording",
181
+
182
+ "Introduce the model .pth path": "Introduce the model .pth path",
183
+ "See Model Information": "See Model Information",
184
+
185
+ "## Download Model": "## Download Model",
186
+ "Model Link": "Model Link",
187
+ "Introduce the model link": "Introduce the model link",
188
+ "Download Model": "Download Model",
189
+ "## Drop files": "## Drop files",
190
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Drag your .pth file and .index file into this space. Drag one and then the other.",
191
+ "## Search Model": "## Search Model",
192
+ "Search": "Search",
193
+ "Introduce the model name to search.": "Introduce the model name to search.",
194
+ "We couldn't find models by that name.": "We couldn't find models by that name.",
195
+ "## Download Pretrained Models": "## Download Pretrained Models",
196
+ "Select the pretrained model you want to download.": "Select the pretrained model you want to download.",
197
+ "And select the sampling rate": "And select the sampling rate.",
198
+
199
+ "TTS Voices": "TTS Voices",
200
+ "TTS Speed": "TTS Speed",
201
+ "Increase or decrease TTS speed.": "Increase or decrease TTS speed.",
202
+ "Select the TTS voice to use for the conversion.": "Select the TTS voice to use for the conversion.",
203
+ "Text to Synthesize": "Text to Synthesize",
204
+ "Enter the text to synthesize.": "Enter the text to synthesize.",
205
+ "Or you can upload a .txt file": "Or you can upload a .txt file",
206
+ "Enter text to synthesize": "Enter text to synthesize",
207
+ "Output Path for TTS Audio": "Output Path for TTS Audio",
208
+ "Output Path for RVC Audio": "Output Path for RVC Audio",
209
+
210
+ "Enable Applio integration with Discord presence": "Enable Applio integration with Discord presence",
211
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "It will activate the possibility of displaying the current Applio activity in Discord.",
212
+ "Enable Applio integration with applio.org/models using flask": "Enable Applio integration with applio.org/models using flask",
213
+ "It will activate the possibility of downloading models with a click from the website.": "It will activate the possibility of downloading models with a click from the website.",
214
+ "Enable fake GPU": "Enable fake GPU",
215
+ "Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option.": "Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option.",
216
+ "Activates the train tab. However, please note that this device lacks GPU capabilities, hence training is not supported. This option is only for testing purposes. (This option will restart Applio)": "Activates the train tab. However, please note that this device lacks GPU capabilities, hence training is not supported. This option is only for testing purposes. (This option will restart Applio)",
217
+ "Theme": "Theme",
218
+ "Select the theme you want to use. (Requires restarting Applio)": "Select the theme you want to use. (Requires restarting Applio)",
219
+ "Language": "Language",
220
+ "Select the language you want to use. (Requires restarting Applio)": "Select the language you want to use. (Requires restarting Applio)",
221
+ "Precision": "Precision",
222
+ "Select the precision you want to use for training and inference.": "Select the precision you want to use for training and inference.",
223
+ "Update precision": "Update precision",
224
+
225
+ "Plugin Installer": "Plugin Installer",
226
+ "Drag your plugin.zip to install it": "Drag your plugin.zip to install it",
227
+
228
+ "Version Checker": "Version Checker",
229
+ "Check which version of Applio is the latest to see if you need to update.": "Check which version of Applio is the latest to see if you need to update.",
230
+ "Check for updates": "Check for updates"
231
+ }
assets/i18n/languages/es_ES.json ADDED
@@ -0,0 +1,206 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "La herramienta de clonación de voz definitiva, meticulosamente optimizada para una potencia, modularidad y experiencia de uso inigualables.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Esta sección contiene algunas utilidades adicionales que a menudo pueden estar en fases experimentales.",
4
+ "Output Information": "Información de salida",
5
+ "The output information will be displayed here.": "La información de salida se mostrará aquí.",
6
+ "Inference": "Inferencia",
7
+ "Train": "Entrenar",
8
+ "Extra": "Extra",
9
+ "Merge Audios": "Fusionar audios",
10
+ "Processing": "Procesamiento",
11
+ "Audio Analyzer": "Analizador de audio",
12
+ "Model Information": "Información del modelo",
13
+ "Plugins": "Complementos",
14
+ "Download": "Descargar",
15
+ "Report a Bug": "Informar de un error",
16
+ "Settings": "Configuración",
17
+ "Preprocess": "Preprocesar",
18
+ "Model Name": "Nombre del modelo",
19
+ "Name of the new model.": "Nombre del nuevo modelo.",
20
+ "Enter model name": "Introduzca el nombre del modelo",
21
+ "Dataset Path": "Ruta del dataset",
22
+ "Path to the dataset folder.": "Ruta de acceso al dataset.",
23
+ "Refresh Datasets": "Actualizar datasets",
24
+ "Dataset Creator": "Creador de datasets",
25
+ "Dataset Name": "Nombre del dataset",
26
+ "Name of the new dataset.": "Nombre del nuevo dataset.",
27
+ "Enter dataset name": "Introduzca el nombre del dataset",
28
+ "Upload Audio Dataset": "Cargar audio del dataset",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "El archivo de audio se ha agregado correctamente dataset. Haga clic en el botón de preprocesamiento.",
30
+ "Enter dataset path": "Introduzca la ruta del dataset",
31
+ "Sampling Rate": "Frecuencia de muestreo",
32
+ "The sampling rate of the audio files.": "La frecuencia de muestreo de los archivos de audio.",
33
+ "RVC Version": "Versión RVC",
34
+ "The RVC version of the model.": "La versión RVC del modelo.",
35
+ "Preprocess Dataset": "Preprocesar dataset",
36
+ "Embedder Model": "Modelo de incrustación",
37
+ "Model used for learning speaker embedding.": "Modelo utilizado para aprender la incrustación del hablante.",
38
+ "Hop Length": "Longitud del salto",
39
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Denota el tiempo que tarda el sistema en realizar la transición a un cambio de tono significativo. Las longitudes de salto más pequeñas requieren más tiempo para la inferencia, pero tienden a producir una mayor precisión de tono.",
40
+ "Batch Size": "Tamaño del lote",
41
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Es recomendable alinearlo con la VRAM disponible de tu GPU. Un ajuste de 4 ofrece una precisión mejorada pero un procesamiento más lento, mientras que 8 proporciona resultados más rápidos y estándar.",
42
+ "Save Every Epoch": "Frecuencia de guardado",
43
+ "Determine at how many epochs the model will saved at.": "Determine en cuántas épocas se guardará el modelo.",
44
+ "Total Epoch": "Épocas",
45
+ "Specifies the overall quantity of epochs for the model training process.": "Especifica la cantidad total de épocas para el proceso de entrenamiento del modelo.",
46
+ "Pretrained": "Preentrenado",
47
+ "Save Only Latest": "Guarde solo lo último",
48
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Al habilitar esta configuración, los archivos G y D guardarán solo sus versiones más recientes, lo que ahorrará espacio de almacenamiento de manera efectiva.",
49
+ "Save Every Weights": "Ahorre todos los pesos",
50
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Este ajuste le permite guardar los pesos del modelo al final de cada época.",
51
+ "Custom Pretrained": "Preentrenado personalizado",
52
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "El uso de modelos preentrenados personalizados puede conducir a resultados superiores, ya que la selección de los modelos preentrenados más adecuados adaptados al caso de uso específico puede mejorar significativamente el rendimiento.",
53
+ "Upload Pretrained Model": "Cargar modelo previamente entrenado",
54
+ "Refresh Custom Pretraineds": "Actualizar preentrenados personalizados",
55
+ "Pretrained Custom Settings": "Configuración personalizada previamente entrenada",
56
+ "The file you dropped is not a valid pretrained file. Please try again.": "El archivo que has subido no es un archivo preentrenado válido. Por favor, inténtelo de nuevo.",
57
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Haga clic en el botón de actualización para ver el archivo previamente entrenado en el menú desplegable.",
58
+ "Pretrained G Path": "G preentrenado personalizado",
59
+ "Pretrained D Path": "D preentrenado personalizado",
60
+ "GPU Settings": "Configuración de GPU",
61
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Establece la configuración avanzada del GPU, recomendada para usuarios con una mejor arquitectura de GPU.",
62
+ "GPU Custom Settings": "Configuración personalizada de la GPU",
63
+ "GPU Number": "Número de GPU",
64
+ "0 to ∞ separated by -": "0 a ∞ separados por -",
65
+ "GPU Information": "Información de GPU",
66
+ "Pitch Guidance": "Guía de tono",
67
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Al emplear la guía de tono, es factible reflejar la entonación de la voz original, incluido su tono. Esta característica es particularmente valiosa para cantar y otros escenarios en los que es esencial preservar la melodía original o el patrón de tono.",
68
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Utilice modelos preentrenados al entrenar los suyos propios. Este enfoque reduce la duración del entrenamiento y mejora la calidad general.",
69
+ "Extract": "Extracción",
70
+ "Extract Features": "Extraer características",
71
+ "Overtraining Detector": "Detector de Sobreentrenamiento",
72
+ "Detect overtraining to prevent the model from learning the training data too well and losing the ability to generalize to new data.": "Detectar el sobreentrenamiento para evitar que el modelo aprenda demasiado bien los datos de entrenamiento y pierda la capacidad de generalizar a nuevos datos.",
73
+ "Overtraining Detector Settings": "Configuraciones del Detector de Sobreentrenamiento",
74
+ "Overtraining Threshold": "Umbral de Sobreentrenamiento",
75
+ "Set the maximum number of epochs you want your model to stop training if no improvement is detected.": "Establezca el número máximo de épocas para que su modelo deje de entrenar si no se detecta ninguna mejora.",
76
+ "Sync Graph": "Sincronizar gráfico",
77
+ "Synchronize the graph of the tensorbaord. Only enable this setting if you are training a new model.": "Sincronice el gráfico del tensorbaord. Solo active esta configuración si está entrenando un nuevo modelo.",
78
+ "Start Training": "Empezar a entrenar",
79
+ "Stop Training & Restart Applio": "Detener el entrenamiento y reiniciar Applio",
80
+ "Generate Index": "Generar índice",
81
+ "Export Model": "Exportar modelo",
82
+ "The button 'Upload' is only for google colab: Uploads the exported files to the ApplioExported folder in your Google Drive.": "El botón 'Subir' es solo para Google Colab: Sube los archivos exportados a la carpeta ApplioExported en tu Google Drive.",
83
+ "Exported Pth file": "Archivo Pth exportado",
84
+ "Exported Index file": "Archivo de índice exportado",
85
+ "Select the pth file to be exported": "Seleccione el archivo pth que se va a exportar",
86
+ "Select the index file to be exported": "Seleccione el archivo de índice que se va a exportar",
87
+ "Upload": "Subir",
88
+ "Voice Model": "Modelo de voz",
89
+ "Select the voice model to use for the conversion.": "Seleccione el modelo de voz que desea utilizar para la conversión.",
90
+ "Index File": "Archivo de índice",
91
+ "Select the index file to use for the conversion.": "Seleccione el archivo de índice que desea utilizar para la conversión.",
92
+ "Refresh": "Actualizar",
93
+ "Unload Voice": "Descargar voz",
94
+ "Single": "Solo",
95
+ "Upload Audio": "Subir audio",
96
+ "Select Audio": "Seleccionar audio",
97
+ "Select the audio to convert.": "Seleccione el audio que desea convertir.",
98
+ "Advanced Settings": "Ajustes avanzados",
99
+ "Clear Outputs (Deletes all audios in assets/audios)": "Borrar salidas (elimina todos los audios de los assets/audios)",
100
+ "Custom Output Path": "Ruta de salida personalizada",
101
+ "Output Path": "Ruta de salida",
102
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "La ruta donde se guardará el audio de salida, de forma predeterminada en assets/audios/output.wav",
103
+ "Split Audio": "Audio dividido",
104
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Divida el audio en fragmentos para inferir y obtener mejores resultados en algunos casos.",
105
+ "Autotune": "Autotune",
106
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Aplique un autotune suave a sus inferencias, recomendado para conversiones de canto.",
107
+ "Clean Audio": "Audio limpio",
108
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Limpie su salida de audio utilizando algoritmos de detección de ruido, recomendados para audios hablados.",
109
+ "Clean Strength": "Fuerza de limpieza",
110
+ "Upscale Audio": "Audio de alta calidad",
111
+ "Upscale the audio to a higher quality, recommended for low-quality audios. (It could take longer to process the audio)": "Mejore la calidad del audio a una calidad superior, recomendado para audios de baja calidad. (Podría tardar más en procesar el audio)",
112
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Establezca el nivel de limpieza en el audio que desee, cuanto más lo aumente, más se limpiará, pero es posible que el audio esté más comprimido.",
113
+ "Pitch": "Tono",
114
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Establezca el tono del audio, cuanto mayor sea el valor, mayor será el tono.",
115
+ "Filter Radius": "Radio del filtro",
116
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Si el número es mayor o igual a tres, el empleo de filtrado de mediana en los resultados de tono recopilados tiene el potencial de disminuir la respiración.",
117
+ "Search Feature Ratio": "Relación de características de búsqueda",
118
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Influencia ejercida por el fichero índice; Un valor más alto corresponde a una mayor influencia. Sin embargo, optar por valores más bajos puede ayudar a mitigar los artefactos presentes en el audio.",
119
+ "Volume Envelope": "Envoltura de volumen",
120
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Sustituya o mezcle con la envoltura de volumen de la salida. Cuanto más se acerque la relación a 1, más se empleará la envoltura de salida.",
121
+ "Protect Voiceless Consonants": "Proteger las consonantes sordas",
122
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Proteja las distintas consonantes y sonidos respiratorios para evitar desgarros electroacústicos y otros artefactos. Llevar el parámetro a su valor máximo de 0,5 ofrece una protección completa. Sin embargo, la reducción de este valor podría disminuir el alcance de la protección y, al mismo tiempo, mitigar el efecto de indexación.",
123
+ "Pitch extraction algorithm": "Algoritmo de extracción de tono",
124
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Algoritmo de extracción de tono que se utilizará para la conversión de audio. El algoritmo predeterminado es rmvpe, que se recomienda para la mayoría de los casos.",
125
+ "Convert": "Convertir",
126
+ "Export Audio": "Exportar audio",
127
+ "Batch": "Lote",
128
+ "Input Folder": "Carpeta de entrada",
129
+ "Select the folder containing the audios to convert.": "Seleccione la carpeta que contiene los audios que desea convertir.",
130
+ "Enter input path": "Introduzca la ruta de entrada",
131
+ "Output Folder": "Carpeta de salida",
132
+ "Select the folder where the output audios will be saved.": "Seleccione la carpeta donde se guardarán los audios de salida.",
133
+ "Enter output path": "Introduzca la ruta de salida",
134
+ "Get information about the audio": "Obtener información sobre el audio",
135
+ "Information about the audio file": "Información sobre el archivo de audio",
136
+ "Waiting for information...": "A la espera de información...",
137
+ "## Voice Blender": "## Mezclador de voz",
138
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Seleccione dos modelos de voz, establezca el porcentaje de mezcla deseado y combínelos en una voz completamente nueva.",
139
+ "Voice Blender": "Mezclador de voz",
140
+ "Drag and drop your model here": "Arrastra y suelta tu modelo aquí",
141
+ "You can also use a custom path.": "También puede utilizar una ruta de acceso personalizada.",
142
+ "Blend Ratio": "Relación de mezcla",
143
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Ajustar la posición más hacia un lado u otro hará que el modelo se parezca más al primero o al segundo.",
144
+ "Fusion": "Fusión",
145
+ "Path to Model": "Ruta de acceso al modelo",
146
+ "Enter path to model": "Introduzca la ruta al modelo",
147
+ "Model information to be placed": "Información del modelo que se va a colocar",
148
+ "Inroduce the model information": "Introduzca la información del modelo",
149
+ "The information to be placed in the model (You can leave it blank or put anything).": "La información que se va a colocar en el modelo (Puedes dejarlo en blanco o poner cualquier cosa).",
150
+ "View model information": "Ver información del modelo",
151
+ "Introduce the model pth path": "Introducción de la ruta pth del modelo",
152
+ "View": "Vista",
153
+ "Model extraction": "Extracción de modelos",
154
+ "Model conversion": "Conversión de modelos",
155
+ "Pth file": "Archivo Pth",
156
+ "Output of the pth file": "Salida del fichero pth",
157
+ "# How to Report an Issue on GitHub": "# Cómo reportar un problema en GitHub",
158
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Haga clic en el botón 'Grabar pantalla' a continuación para comenzar a grabar el problema que está experimentando.",
159
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Una vez que haya terminado de grabar el problema, haga clic en el botón 'Detener grabación' (el mismo botón, pero la etiqueta cambia dependiendo de si está grabando activamente o no).",
160
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Vaya a [Problemas de GitHub](https://github.com/IAHispano/Applio/issues) y haga clic en el botón 'Nuevo problema'.",
161
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Complete la plantilla de problema proporcionada, asegurándose de incluir los detalles según sea necesario, y utilice la sección de activos para cargar el archivo grabado del paso anterior.",
162
+ "Record Screen": "Grabar pantalla",
163
+ "Record": "Grabar",
164
+ "Stop Recording": "Detener la grabación",
165
+ "Introduce the model .pth path": "Introducción de la ruta de acceso .pth del modelo",
166
+ "See Model Information": "Ver información del modelo",
167
+ "## Download Model": "## Descargar modelo",
168
+ "Model Link": "Enlace de modelo",
169
+ "Introduce the model link": "Introducir el enlace del modelo",
170
+ "Download Model": "Descargar modelo",
171
+ "## Drop files": "## Soltar archivos",
172
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Arrastre el archivo .pth y el archivo .index a este espacio. Arrastre uno y luego el otro.",
173
+ "## Search Model": "## Buscar modelo",
174
+ "Search": "Buscar",
175
+ "Introduce the model name to search.": "Introduzca el nombre del modelo a buscar.",
176
+ "We couldn't find models by that name.": "No pudimos encontrar modelos con ese nombre.",
177
+ "## Download Pretrained Models": "## Descargar modelos preentrenados",
178
+ "Select the pretrained model you want to download.": "Seleccione el modelo preentrenado que desea descargar.",
179
+ "And select the sampling rate.": "Y seleccione la frecuencia de muestreo.",
180
+ "TTS Voices": "Voces TTS",
181
+ "TTS Speed": "Velocidad TTS",
182
+ "Increase or decrease TTS speed": "Aumentar o disminuir la velocidad de TTS",
183
+ "Select the TTS voice to use for the conversion.": "Seleccione la voz TTS que se utilizará para la conversión.",
184
+ "Text to Synthesize": "Texto para sintetizar",
185
+ "Enter the text to synthesize.": "Introduzca el texto que desea sintetizar.",
186
+ "Or you can upload a .txt file": "O bien, puede cargar un archivo .txt",
187
+ "Enter text to synthesize": "Introduzca el texto que desea sintetizar",
188
+ "Output Path for TTS Audio": "Ruta de salida para audio TTS",
189
+ "Output Path for RVC Audio": "Ruta de salida para audio RVC",
190
+ "Enable Applio integration with Discord presence": "Habilitar la integración de Applio con la presencia de Discord",
191
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Activará la posibilidad de mostrar la actividad actual de Applio en Discord.",
192
+ "Enable Applio integration with applio.org/models using flask": "Habilite la integración de Applio con applio.org/models usando flask",
193
+ "It will activate the possibility of downloading models with a click from the website.": "Activará la posibilidad de descargar modelos con un clic desde el sitio web.",
194
+ "Enable fake GPU": "Habilitar GPU falsa",
195
+ "Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option.": "Actualmente no se admite el entrenamiento debido a la ausencia de una GPU. Para activar la pestaña de entrenamiento, vaya a la pestaña de configuración y habilite la opción 'GPU falsa'.",
196
+ "Activates the train tab. However, please note that this device lacks GPU capabilities, hence training is not supported. This option is only for testing purposes. (This option will restart Applio)": "Activa la pestaña de entrenamiento. Sin embargo, tenga en cuenta que este dispositivo carece de capacidades de GPU, por lo que no se admite el entrenamiento. Esta opción es solo para fines de prueba. (Esta opción reiniciará Applio)",
197
+ "Theme": "Tema",
198
+ "Select the theme you want to use. (Requires restarting Applio)": "Seleccione el tema que desea utilizar. (Requiere reiniciar Applio)",
199
+ "Language": "Idioma",
200
+ "Select the language you want to use. (Requires restarting Applio)": "Seleccione el idioma que desea utilizar. (Requiere reiniciar Applio)",
201
+ "Plugin Installer": "Instalador de complementos",
202
+ "Drag your plugin.zip to install it": "Arrastra tu plugin.zip para instalarlo",
203
+ "Version Checker": "Comprobador de versiones",
204
+ "Check which version of Applio is the latest to see if you need to update.": "Compruebe qué versión de Applio es la más reciente para ver si necesita actualizar.",
205
+ "Check for updates": "Buscar actualizaciones"
206
+ }
assets/i18n/languages/fa_FA.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "ابزار شبیه سازی صدا نهایی، با دقت برای قدرت بی نظیر، مدولار بودن و تجربه کاربر پسند بهینه شده است.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "این بخش شامل برخی از ابزارهای اضافی است که اغلب ممکن است در مراحل ازمایشی باشد.",
4
+ "Output Information": "اطلاعات خروجی",
5
+ "The output information will be displayed here.": "اطلاعات خروجی در اینجا نمایش داده خواهد شد.",
6
+ "Inference": "استنباط",
7
+ "Train": "قطار",
8
+ "Extra": "اضافی",
9
+ "Merge Audios": "ادغام Audios",
10
+ "Processing": "پردازش",
11
+ "Audio Analyzer": "انالایزر صوتی",
12
+ "Model Information": "اطلاعات مدل",
13
+ "Plugins": "پلاگین",
14
+ "Download": "دانلود",
15
+ "Report a Bug": "گزارش یک باگ",
16
+ "Settings": "تنظیمات",
17
+ "Preprocess": "پیش پردازش",
18
+ "Model Name": "نام مدل",
19
+ "Name of the new model.": "نام مدل جدید",
20
+ "Enter model name": "نام مدل را وارد کنید",
21
+ "Dataset Path": "مسیر مجموعه داده",
22
+ "Path to the dataset folder.": "مسیر به پوشه مجموعه داده ها.",
23
+ "Refresh Datasets": "بازاوری مجموعه داده ها",
24
+ "Dataset Creator": "سازنده مجموعه داده",
25
+ "Dataset Name": "نام مجموعه داده",
26
+ "Name of the new dataset.": "نام مجموعه داده های جدید",
27
+ "Enter dataset name": "وارد کردن نام مجموعه داده ها",
28
+ "Upload Audio Dataset": "اپلود مجموعه داده های صوتی",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "فایل صوتی با موفقیت به مجموعه داده ها اضافه شده است. لطفا دکمه پیش پردازش را فشار دهید.",
30
+ "Enter dataset path": "وارد کردن مسیر مجموعه داده ها",
31
+ "Sampling Rate": "نرخ نمونه برداری",
32
+ "The sampling rate of the audio files.": "نرخ نمونه برداری از فایل های صوتی.",
33
+ "RVC Version": "نسخه RVC",
34
+ "The RVC version of the model.": "نسخه RVC از مدل.",
35
+ "Preprocess Dataset": "مجموعه داده پیش پردازش",
36
+ "Extract": "عصاره",
37
+ "Hop Length": "طول هاپ",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "نشان دهنده مدت زمان لازم برای سیستم برای انتقال به یک تغییر قابل توجه است. طول هاپ کوچکتر نیاز به زمان بیشتری برای استنتاج دارد اما تمایل به عملکرد دقت بالاتر دارد.",
39
+ "Batch Size": "اندازه دسته",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "توصیه می شود ان را با VRAM موجود GPU خود هماهنگ کنید. تنظیمات 4 ارائه می دهد دقت بهبود یافته اما پردازش کندتر، در حالی که 8 نتایج سریع تر و استاندارد را فراهم می کند.",
41
+ "Save Every Epoch": "ذخیره هر عصر",
42
+ "Determine at how many epochs the model will saved at.": "تعیین کنید که مدل در چند دوره ذخیره خواهد شد.",
43
+ "Total Epoch": "کل اپک",
44
+ "Specifies the overall quantity of epochs for the model training process.": "مقدار کلی دوره ها را برای فرایند اموزش مدل مشخص می کند.",
45
+ "Pretrained": "پیش اموزش دیده",
46
+ "Save Only Latest": "ذخیره فقط اخرین",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "فعال کردن این تنظیم منجر به صرفه جویی در فایل های G و D تنها نسخه های اخیر انها می شود و به طور موثر فضای ذخیره سازی را حفظ می کند.",
48
+ "Save Every Weights": "صرفه جویی در هر وزن",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "این تنظیم شما را قادر به صرفه جویی در وزن مدل در پایان هر دوره می کند.",
50
+ "Custom Pretrained": "سفارشی پیش اموزش دیده",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "استفاده از مدل های از پیش اموزش دید�� سفارشی می تواند منجر به نتایج برتر شود، زیرا انتخاب مناسب ترین مدل های از پیش اموزش دیده متناسب با مورد استفاده خاص می تواند به طور قابل توجهی عملکرد را افزایش دهد.",
52
+ "Upload Pretrained Model": "اپلود مدل از پیش اموزش دیده",
53
+ "Refresh Custom Pretraineds": "تازه کردن Pretraineds سفارشی",
54
+ "Pretrained Custom Settings": "تنظیمات سفارشی از پیش اموزش داده شده",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "پرونده ای که حذف کرده اید یک پرونده از پیش اموزش داده شده معتبر نیست. لطفا دوباره تلاش کنید.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "با کلیک بر روی دکمه تازه کردن برای دیدن فایل از پیش اموزش دیده در منوی کشویی.",
57
+ "Pretrained G Path": "سفارشی پیش اموزش G",
58
+ "Pretrained D Path": "سفارشی از پیش اموزش دیده D",
59
+ "GPU Settings": "تنظیمات GPU",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "تنظیمات پیشرفته GPU را تنظیم می کند که برای کاربران با معماری GPU بهتر توصیه می شود.",
61
+ "GPU Custom Settings": "تنظیمات سفارشی GPU",
62
+ "GPU Number": "شماره GPU",
63
+ "0 to ∞ separated by -": "0 به ∞ جدا شده توسط -",
64
+ "GPU Information": "اطلاعات GPU",
65
+ "Pitch Guidance": "راهنمای زمین",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "با استفاده از راهنمایی زمین، امکان پذیر است که زیر و بمی صدا اصلی، از جمله زمین ان را منعکس کند. این ویژگی به ویژه برای اواز خواندن و سناریوهای دیگر که در ان حفظ ملودی اصلی یا الگوی زمین ضروری است، ارزشمند است.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "از مدل های از پیش اموزش دیده در هنگام اموزش خود استفاده کنید. این رویکرد مدت زمان اموزش را کاهش می دهد و کیفیت کلی را افزایش می دهد.",
68
+ "Extract Features": "استخراج ویژگی ها",
69
+ "Start Training": "شروع اموزش",
70
+ "Generate Index": "ایجاد نمایه",
71
+ "Voice Model": "مدل صوتی",
72
+ "Select the voice model to use for the conversion.": "مدل صوتی مورد استفاده برای تبدیل را انتخاب کنید.",
73
+ "Index File": "پروندۀ نمایه",
74
+ "Select the index file to use for the conversion.": "انتخاب فایل شاخص برای استفاده برای تبدیل.",
75
+ "Refresh": "نوسازی",
76
+ "Unload Voice": "بارگیری صدا",
77
+ "Single": "تک",
78
+ "Upload Audio": "بارگذاری صدا",
79
+ "Select Audio": "انتخاب صدا",
80
+ "Select the audio to convert.": "صدا را برای تبدیل انتخاب کنید.",
81
+ "Advanced Settings": "تنظیمات پیشرفته",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "پاک کردن خروجی ها (حذف تمام فایل های صوتی در دارایی ها / audios)",
83
+ "Custom Output Path": "مسیر خروجی سفارشی",
84
+ "Output Path": "مسیر خروجی",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "مسیری که در ان صدای خروجی ذخیره می شود، به طور پیش فرض در assets/audios/output.wav",
86
+ "Split Audio": "تقسیم صوتی",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "صدا را به تکه های تقسیم کنید تا استنتاج شود تا در برخی موارد نتایج بهتری کسب شود.",
88
+ "Autotune": "Autotune",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "درخواست autotune نرم به استنتاج خود را، توصیه می شود برای تبدیل اواز.",
90
+ "Clean Audio": "پاک صوتی",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "خروجی صوتی خود را با استفاده از الگوریتم های تشخیص سر و صدا تمیز کنید، توصیه شده برای صحبت کردن صوتی.",
92
+ "Clean Strength": "قدرت پاک",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "سطح پاکسازی را به صوتی که می خواهید تنظیم کنید، هرچه بیشتر ان را افزایش دهید، بیشتر تمیز می شود، اما ممکن است صدا فشرده تر شود.",
94
+ "Pitch": "زمین",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "زمین صدا را تنظیم کنید، هر چه مقدار بالاتر باشد، زمین بالاتر است.",
96
+ "Filter Radius": "شعاع پالا",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "اگر عدد بزرگتر یا مساوی با سه باشد، استفاده از فیلتر متوسط در نتایج تن جمع اوری شده پتانسیل کاهش تنفس را دارد.",
98
+ "Search Feature Ratio": "نسبت ویژگی جستجو",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "تاثیر اعمال شده توسط فایل شاخص؛ ارزش بالاتر مربوط به نفوذ بیشتر است. با این حال، انتخاب مقادیر پایین تر می تواند به کاهش مصنوعات موجود در صدا کمک کند.",
100
+ "Volume Envelope": "پاکت جلد",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "جایگزین یا ترکیب با پاکت حجم خروجی. هر چه نسبت به 1 نزدیک تر باشد، پاکت خروجی بیشتر استفاده می شود.",
102
+ "Protect Voiceless Consonants": "محافظت از صامت های بی صدا",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "حفاظت از صامت های متمایز و صداهای تنفسی برای جلوگیری از پارگی الکترو اکوستیک و سایر مصنوعات. کشیدن پارامتر به حداکثر مقدار ان از 0.5 ارائه می دهد حفاظت جامع. با این حال، کاهش این مقدار ممکن است میزان حفاظت را کاهش دهد در حالی که به طور بالقوه اثر نمایه سازی را کاهش می دهد.",
104
+ "Pitch extraction algorithm": "الگوریتم استخراج زمین",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "الگوریتم استخراج زمین برای استفاده برای تبدیل صوتی. الگوریتم پیش فرض rmvpe است که برای اکثر موارد توصیه می شود.",
106
+ "Convert": "تبدیل",
107
+ "Export Audio": "صادرات صدا",
108
+ "Batch": "دسته",
109
+ "Input Folder": "پوشه ورودی",
110
+ "Select the folder containing the audios to convert.": "پوشه حاوی فایل های صوتی را برای تبدیل انتخاب کنید.",
111
+ "Enter input path": "وارد کردن مسیر ورودی",
112
+ "Output Folder": "پوشۀ خروجی",
113
+ "Select the folder where the output audios will be saved.": "پوشه ای را انتخاب کنید که صدای خروجی در ان ذخیره می شود.",
114
+ "Enter output path": "وارد کردن مسیر خروجی",
115
+ "Get information about the audio": "دریافت اطلاعات در مورد صدا",
116
+ "Information about the audio file": "اطلاعات مربوط به فایل صوتی",
117
+ "Waiting for information...": "در انتظار اطلاعات...",
118
+ "## Voice Blender": "## بلندر صوتی",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "دو مدل صوتی را انتخاب کنید، درصد ترکیب مورد نظر خود را تنظیم کنید و انها را به یک صدای کاملا جدید ترکیب کنید.",
120
+ "Voice Blender": "بلندر صوتی",
121
+ "Drag and drop your model here": "کشیدن و رها کردن مدل خود را در اینجا",
122
+ "You can also use a custom path.": "شما همچنین می توانید از یک مسیر سفارشی استفاده کنید.",
123
+ "Blend Ratio": "نسبت مخلوط",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "تنظیم موقعیت بیشتر به سمت یک طرف یا طرف دیگر، مدل را بیشتر شبیه به اول یا دوم می کند.",
125
+ "Fusion": "همجوشی",
126
+ "Path to Model": "مسیر به مدل",
127
+ "Enter path to model": "وارد کردن مسیر به مدل",
128
+ "Model information to be placed": "اطلاعات مدل قرار داده می شود",
129
+ "Inroduce the model information": "Inroduce اطلاعات مدل",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "اطلاعاتی که باید در مدل قرار داده شود (شما می توانید ان را خالی بگذارید یا هر چیزی را قرار دهید).",
131
+ "View model information": "مشاهده اطلاعات مدل",
132
+ "Introduce the model pth path": "معرفی مسیر PTH مدل",
133
+ "View": "مشاهده",
134
+ "Model extraction": "استخراج مدل",
135
+ "Model conversion": "تبدیل مدل",
136
+ "Pth file": "پرونده Pth",
137
+ "Output of the pth file": "خروجی پروندۀ pth",
138
+ "# How to Report an Issue on GitHub": "# چگونه یک مشکل را در GitHub گزارش دهیم",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. با کلیک بر روی 'ضبط صفحه نمایش' دکمه زیر برای شروع ضبط مسئله شما در حال تجربه.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. هنگامی که ضبط مسئله را به پایان رساندید، بر روی دکمه \"توقف ضبط\" کلیک کنید (همان دکمه، اما برچسب بسته به اینکه ایا شما به طور فعال ضبط می کنید یا نه تغییر می کند).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. به [GitHub Issues] (https://github.com/IAHispano/Applio/issues) بروید و بر روی دکمه \"New Issue\" کلیک کنید.",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. تکمیل قالب موضوع ارائه شده، اطمینان حاصل شود که شامل جزئیات در صورت نیاز، و استفاده از بخش دارایی برای اپلود فایل ضبط شده از مرحله قبلی.",
143
+ "Record Screen": "صفحه ضبط",
144
+ "Record": "رکورد",
145
+ "Stop Recording": "توقف ضبط",
146
+ "Introduce the model .pth path": "معرفی مسیر .pth مدل",
147
+ "See Model Information": "مشاهده اطلاعات مدل",
148
+ "## Download Model": "## دانلود مدل",
149
+ "Model Link": "پیوند مدل",
150
+ "Introduce the model link": "معرفی لینک مدل",
151
+ "Download Model": "دانلود مدل",
152
+ "## Drop files": "## رها کردن پروندهها",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "فایل .pth و .index خود را به این فضا بکشید. یکی را بکشید و سپس دیگری را بکشید.",
154
+ "TTS Voices": "TTS صداها",
155
+ "Select the TTS voice to use for the conversion.": "صدای TTS را برای استفاده برای تبدیل انتخاب کنید.",
156
+ "Text to Synthesize": "متن برای سنتز",
157
+ "Enter the text to synthesize.": "متن را برای ترکیب وارد کنید.",
158
+ "Or you can upload a .txt file": "یا شما می توانید یک فایل .txt اپلود کنید",
159
+ "Enter text to synthesize": "متن را برای سنتز وارد کنید",
160
+ "Output Path for TTS Audio": "مسیر خروجی برای صدای TTS",
161
+ "Output Path for RVC Audio": "مسیر خروجی برای RVC Audio",
162
+ "Enable Applio integration with Discord presence": "ادغام Applio را با حضور Discord فعال کنید",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "این امکان نمایش فعالیت Applio فعلی در Discord را فعال خواهد کرد.",
164
+ "Enable Applio integration with applio.org/models using flask": "فعال کردن ادغام Applio با applio.org/models با استفاده از فلاسک",
165
+ "It will activate the possibility of downloading models with a click from the website.": "این امکان دانلود مدل ها را با یک کلیک از وب سایت فعال می کند.",
166
+ "Theme": "تم",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "زمینه ای را که می خواهید استفاده کنید انتخاب کنید. (نیاز به راه اندازی مجدد Applio)",
168
+ "Language": "زبان",
169
+ "Select the language you want to use. (Requires restarting Applio)": "زبانی را که می خواهید استفاده کنید انتخاب کنید. (نیاز به راه اندازی مجدد Applio)",
170
+ "Plugin Installer": "نصب افزونه",
171
+ "Drag your plugin.zip to install it": "plugin.zip خود را بکشید تا ان را نصب کنید",
172
+ "Version Checker": "بررسی نسخه",
173
+ "Check which version of Applio is the latest to see if you need to update.": "بررسی کنید که کدام نسخه از Applio اخرین است تا ببینید ایا شما نیاز به به روز رسانی دارید.",
174
+ "Check for updates": "بررسی برای به روز رسانی"
175
+ }
assets/i18n/languages/fr_FR.json ADDED
@@ -0,0 +1,230 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Outil ultime de clonage vocal, méticuleusement optimisé pour une puissance, une modularité et une expérience conviviales inégalées.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Cette section contient quelques utilitaires supplémentaires qui peuvent souvent être en phase expérimentale.",
4
+ "Output Information": "Informations de sortie",
5
+ "The output information will be displayed here.": "Les informations de sortie seront affichées ici.",
6
+
7
+ "Inference": "Inférence",
8
+ "Train": "Train",
9
+ "Extra": "Supplémentaire",
10
+ "Merge Audios": "Fusionner les audios",
11
+ "Processing": "Traitement",
12
+ "Audio Analyzer": "Analyseur audio",
13
+ "Model Information": "Informations sur le modèle",
14
+ "Plugins": "Plugins (Plugins)",
15
+ "Download": "Télécharger",
16
+ "Report a Bug": "Signaler un bogue",
17
+ "Settings": "Paramètres",
18
+
19
+ "Preprocess": "Pré-traitement",
20
+ "Model Name": "Nom du modèle",
21
+ "Name of the new model.": "Nom du nouveau modèle.",
22
+ "Enter model name": "Entrez le nom du modèle",
23
+ "Dataset Path": "Chemin d’accès au jeu de données",
24
+ "Path to the dataset folder.": "Chemin d’accès au dossier du jeu de données.",
25
+ "Refresh Datasets": "Actualiser les jeux de données",
26
+ "Dataset Creator": "Créateur de jeux de données",
27
+ "Dataset Name": "Nom du jeu de données",
28
+ "Name of the new dataset.": "Nom du nouveau jeu de données.",
29
+ "Enter dataset name": "Entrez le nom du jeu de données",
30
+ "Upload Audio Dataset": "Envoyer un jeu de données audio",
31
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Le fichier audio a été ajouté avec succès au jeu de données. Veuillez cliquer sur le bouton de prétraitement.",
32
+ "Enter dataset path": "Entrez le chemin d’accès au jeu de données",
33
+ "Sampling Rate": "Fréquence d’échantillonnage",
34
+ "The sampling rate of the audio files.": "Fréquence d’échantillonnage des fichiers audio.",
35
+ "RVC Version": "RVC Version",
36
+ "The RVC version of the model.": "La version RVC du modèle.",
37
+ "Preprocess Dataset": "Jeu de données de prétraitement",
38
+ "Extract": "Extraire",
39
+ "Hop Length": "Longueur du houblon",
40
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Indique le temps qu’il faut au système pour passer à un changement de hauteur significatif. Les longueurs de saut plus petites nécessitent plus de temps pour l’inférence, mais ont tendance à donner une plus grande précision de hauteur.",
41
+ "Model used for learning speaker embedding.": "Modèle utilisé pour apprendre l’intégration des haut-parleurs.",
42
+ "Batch Size": "Taille du lot",
43
+
44
+ "Embedder Model": "Embedder Model",
45
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Il est conseillé de l’aligner sur la VRAM disponible de votre GPU. Un réglage de 4 offre une précision améliorée mais un traitement plus lent, tandis que 8 fournit des résultats plus rapides et standard.",
46
+ "Save Every Epoch": "Sauvez toutes les époques",
47
+ "Determine at how many epochs the model will saved at.": "Déterminez à combien d’époques le modèle sera enregistré.",
48
+ "Total Epoch": "Époque totale",
49
+ "Specifies the overall quantity of epochs for the model training process.": "Spécifie la quantité globale d’époques pour le processus d’entraînement du modèle.",
50
+ "Pretrained": "Pré-entraîné",
51
+ "Save Only Latest": "Enregistrer uniquement les plus récents",
52
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "L’activation de ce paramètre permet aux fichiers G et D d’enregistrer uniquement leurs versions les plus récentes, ce qui permet d’économiser efficacement de l’espace de stockage.",
53
+ "Save Every Weights": "Économisez tous les poids",
54
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Ce paramètre vous permet d’enregistrer les poids du modèle à la fin de chaque époque.",
55
+ "Custom Pretrained": "Pré-entraîné sur mesure",
56
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "L’utilisation de modèles préentraînés personnalisés peut conduire à des résultats supérieurs, car la sélection des modèles préentraînés les plus appropriés et adaptés au cas d’utilisation spécifique peut améliorer considérablement les performances.",
57
+ "Upload Pretrained Model": "Envoyer un modèle pré-entraîné",
58
+ "Refresh Custom Pretraineds": "Actualiser les pré-entraînés personnalisés",
59
+ "Pretrained Custom Settings": "Paramètres personnalisés préentraînés",
60
+ "The file you dropped is not a valid pretrained file. Please try again.": "Le fichier que vous avez déposé n’est pas un fichier pré-entraîné valide. Veuillez réessayer.",
61
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Cliquez sur le bouton d’actualisation pour afficher le fichier préentraîné dans le menu déroulant.",
62
+ "Pretrained G Path": "G pré-entraîné personnalisé",
63
+ "Pretrained D Path": "D pré-entraîné personnalisé",
64
+ "GPU Settings": "Paramètres GPU",
65
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Définit les paramètres GPU avancés, recommandés pour les utilisateurs disposant d’une meilleure architecture GPU.",
66
+ "GPU Custom Settings": "Paramètres personnalisés du GPU",
67
+ "GPU Number": "Numéro de GPU",
68
+ "0 to ∞ separated by -": "0 à ∞ séparés par -",
69
+ "GPU Information": "Informations sur le GPU",
70
+ "Pitch Guidance": "Guidage de la hauteur",
71
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "En utilisant le guidage de hauteur, il devient possible de refléter l’intonation de la voix d’origine, y compris sa hauteur. Cette fonctionnalité est particulièrement utile pour le chant et d’autres scénarios où la préservation de la mélodie ou du modèle de hauteur d’origine est essentielle.",
72
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Utilisez des modèles pré-entraînés lors de l’entraînement des vôtres. Cette approche permet de réduire la durée de la formation et d’améliorer la qualité globale.",
73
+ "Extract Features": "Extraire des caractéristiques",
74
+ "Overtraining Detector": "Détecteur de surentraînement",
75
+ "Detect overtraining to prevent the model from learning the training data too well and losing the ability to generalize to new data.": "Détectez le surentraînement pour éviter que le modèle n'apprenne trop bien les données d'entraînement et ne perde la capacité de généraliser à de nouvelles données.",
76
+ "Overtraining Detector Settings": "Paramètres du détecteur de surentraînement",
77
+ "Overtraining Threshold": "Seuil de surentraînement",
78
+ "Set the maximum number of epochs you want your model to stop training if no improvement is detected.": "Définissez le nombre maximal d’époques pendant lesquelles vous souhaitez que votre modèle arrête l’entraînement si aucune amélioration n’est détectée.",
79
+ "Sync Graph": "Graphique de synchronisation",
80
+ "Synchronize the graph of the tensorbaord. Only enable this setting if you are training a new model.": "Synchronisez le graphique du tensorbaord. Activez ce paramètre uniquement si vous entraînez un nouveau modèle.",
81
+
82
+ "Start Training": "Commencer l’entraînement",
83
+ "Stop Training & Restart Applio": "Arrêter l’entraînement et redémarrer Applio",
84
+ "Generate Index": "Générer un index",
85
+
86
+ "Export Model": "Modèle d’exportation",
87
+ "The button 'Upload' is only for google colab: Uploads the exported files to the ApplioExported folder in your Google Drive.": "Le bouton « Upload » est uniquement destiné à Google Colab : upload les fichiers exportés dans le dossier ApplioExported de votre Google Drive.",
88
+ "Exported Pth file": "Fichier Pth exporté",
89
+ "Exported Index file": "Fichier d’index exporté",
90
+ "Select the pth file to be exported": "Sélectionnez le fichier pth à exporter",
91
+ "Select the index file to be exported": "Sélectionnez le fichier d’index à exporter",
92
+ "Upload": "Envoyer",
93
+
94
+ "Voice Model": "Modèle vocal",
95
+ "Select the voice model to use for the conversion.": "Sélectionnez le modèle vocal à utiliser pour la conversion.",
96
+ "Index File": "Fichier d’index",
97
+ "Select the index file to use for the conversion.": "Sélectionnez le fichier d’index à utiliser pour la conversion.",
98
+ "Refresh": "Rafraîchir",
99
+ "Unload Voice": "Décharger la voix",
100
+
101
+ "Single": "Seul",
102
+ "Upload Audio": "Envoyer l’audio",
103
+ "Select Audio": "Sélectionnez Audio (Audio)",
104
+ "Select the audio to convert.": "Sélectionnez l’audio à convertir.",
105
+ "Advanced Settings": "Paramètres avancés",
106
+ "Clear Outputs (Deletes all audios in assets/audios)": "Effacer les sorties (supprime tous les audios dans les ressources/audios)",
107
+ "Custom Output Path": "Chemin de sortie personnalisé",
108
+ "Output Path": "Chemin de sortie",
109
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Le chemin où l’audio de sortie sera enregistré, par défaut dans assets/audios/output.wav",
110
+ "Split Audio": "Diviser l’audio",
111
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Divisez l’audio en morceaux pour l’inférence afin d’obtenir de meilleurs résultats dans certains cas.",
112
+ "Autotune": "Réglage automatique",
113
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Appliquez un réglage automatique doux à vos inférences, recommandé pour les conversions de chant.",
114
+ "Clean Audio": "Audio clair",
115
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Nettoyez votre sortie audio à l’aide d’algorithmes de détection de bruit, recommandés pour les audios parlants.",
116
+ "Clean Strength": "Force propre",
117
+ "Upscale Audio": "Audio haut de gamme",
118
+ "Upscale the audio to a higher quality, recommended for low-quality audios. (It could take longer to process the audio)": "Améliorez l’audio vers une qualité supérieure, recommandé pour les audios de faible qualité. (Le traitement de l’audio pourrait prendre plus de temps)",
119
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Réglez le niveau de nettoyage sur l’audio que vous souhaitez, plus vous l’augmentez plus il nettoiera, mais il est possible que l’audio soit plus compressé.",
120
+ "Pitch": "Tanguer",
121
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Réglez la hauteur de l’audio, plus la valeur est élevée, plus la hauteur est élevée.",
122
+ "Filter Radius": "Rayon du filtre",
123
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Si le nombre est supérieur ou égal à trois, l’utilisation d’un filtrage médian sur les résultats de tonalité recueillis a le potentiel de diminuer la respiration.",
124
+ "Search Feature Ratio": "Rapport de caractéristiques de recherche",
125
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Influence exercée par le fichier d’index ; Une valeur plus élevée correspond à une plus grande influence. Cependant, opter pour des valeurs plus faibles peut aider à atténuer les artefacts présents dans l’audio.",
126
+ "Volume Envelope": "Enveloppe de volume",
127
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Remplacez ou fusionnez avec l’enveloppe de volume de la sortie. Plus le rapport est proche de 1, plus l’enveloppe de sortie est utilisée.",
128
+ "Protect Voiceless Consonants": "Protéger les consonnes sourdes",
129
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Protégez les consonnes distinctes et les sons respiratoires pour éviter les déchirures électroacoustiques et autres artefacts. L’extraction du paramètre à sa valeur maximale de 0,5 offre une protection complète. Toutefois, la réduction de cette valeur peut réduire l’étendue de la protection tout en atténuant potentiellement l’effet d’indexation.",
130
+ "Pitch extraction algorithm": "Algorithme d’extraction de hauteur",
131
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Algorithme d’extraction de hauteur à utiliser pour la conversion audio. L’algorithme par défaut est rmvpe, qui est recommandé dans la plupart des cas.",
132
+
133
+ "Convert": "Convertir",
134
+ "Export Audio": "Exporter l’audio",
135
+
136
+ "Batch": "Lot",
137
+ "Input Folder": "Dossier d’entrée",
138
+ "Select the folder containing the audios to convert.": "Sélectionnez le dossier contenant les audios à convertir.",
139
+ "Enter input path": "Entrez le chemin d’entrée",
140
+ "Output Folder": "Dossier de sortie",
141
+ "Select the folder where the output audios will be saved.": "Sélectionnez le dossier dans lequel les audios de sortie seront enregistrés.",
142
+ "Enter output path": "Entrez le chemin de sortie",
143
+
144
+ "Get information about the audio": "Obtenir des informations sur l’audio",
145
+
146
+ "## Voice Blender": "## Mélangeur de voix",
147
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Sélectionnez deux modèles de voix, définissez le pourcentage de fusion souhaité et mélangez-les en une toute nouvelle voix.",
148
+ "Voice Blender": "Mélangeur de voix",
149
+ "Drag and drop your model here": "Faites glisser et déposez votre modèle ici",
150
+ "You can also use a custom path.": "Vous pouvez également utiliser un chemin personnalisé.",
151
+ "Blend Ratio": "Rapport de mélange",
152
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "En ajustant la position d’un côté ou de l’autre, le modèle sera plus similaire au premier ou au second.",
153
+ "Fusion": "Fusion",
154
+
155
+ "Path to Model": "Chemin d’accès au modèle",
156
+ "Enter path to model": "Entrez le chemin d’accès au modèle",
157
+ "Model information to be placed": "Informations sur le modèle à placer",
158
+ "Inroduce the model information": "Introduire les informations du modèle",
159
+ "The information to be placed in the model (You can leave it blank or put anything).": "Les informations à placer dans le modèle (vous pouvez les laisser vides ou mettre n’importe quoi).",
160
+ "View model information": "Afficher les informations sur le modèle",
161
+ "Introduce the model pth path": "Présentation du modèle pth path",
162
+ "View": "Vue",
163
+ "Model extraction": "Extraction de modèles",
164
+ "Model conversion": "Conversion de modèle",
165
+ "Pth file": "Fichier Pth",
166
+ "Output of the pth file": "Sortie du fichier pth",
167
+
168
+ "Extract F0 Curve": "Extraire la courbe F0",
169
+ "The f0 curve represents the variations in the base frequency of a voice over time, showing how pitch rises and falls.": "La courbe f0 représente les variations de la fréquence de base d’une voix au fil du temps, montrant comment la hauteur monte et descend.",
170
+
171
+ "# How to Report an Issue on GitHub": "# Comment signaler un problème sur GitHub",
172
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Cliquez sur le bouton « Enregistrer l’écran » ci-dessous pour commencer à enregistrer le problème que vous rencontrez.",
173
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Une fois que vous avez terminé d’enregistrer le numéro, cliquez sur le bouton « Arrêter l’enregistrement » (le même bouton, mais l’étiquette change selon que vous enregistrez activement ou non).",
174
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Allez dans [GitHub Issues](https://github.com/IAHispano/Applio/issues) et cliquez sur le bouton « New issue ».",
175
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Complétez le modèle de problème fourni, en veillant à inclure les détails nécessaires, et utilisez la section des ressources pour envoyer le fichier enregistré de l’étape précédente.",
176
+
177
+ "Record Screen": "Écran d’enregistrement",
178
+ "Record": "Enregistrer",
179
+ "Stop Recording": "Arrêter l’enregistrement",
180
+
181
+ "Introduce the model .pth path": "Présentation du chemin d’accès .pth du modèle",
182
+ "See Model Information": "Voir les informations sur le modèle",
183
+
184
+ "## Download Model": "## Télécharger le modèle",
185
+ "Model Link": "Lien vers le modèle",
186
+ "Introduce the model link": "Introduire le lien du modèle",
187
+ "Download Model": "Télécharger le modèle",
188
+ "## Drop files": "## Déposer des fichiers",
189
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Faites glisser vos fichiers .pth et .index dans cet espace. Faites glisser l’un, puis l’autre.",
190
+ "## Search Model": "## Modèle de recherche",
191
+ "Search": "Recherche",
192
+ "Introduce the model name to search.": "Introduisez le nom du modèle à rechercher.",
193
+ "We couldn't find models by that name.": "Nous n’avons pas pu trouver de modèles portant ce nom.",
194
+ "## Download Pretrained Models": "## Télécharger des modèles pré-entraînés",
195
+ "Select the pretrained model you want to download.": "Sélectionnez le modèle pré-entraîné que vous souhaitez télécharger.",
196
+ "And select the sampling rate": "Et sélectionnez le taux d’échantillonnage",
197
+
198
+ "TTS Voices": "Voix TTS",
199
+ "TTS Speed": "Vitesse TTS",
200
+ "Increase or decrease TTS speed.": "Augmenter ou diminuer la vitesse du TTS.",
201
+ "Select the TTS voice to use for the conversion.": "Sélectionnez la voix TTS à utiliser pour la conversion.",
202
+ "Text to Synthesize": "Texte à synthétiser",
203
+ "Enter the text to synthesize.": "Saisissez le texte à synthétiser.",
204
+ "Or you can upload a .txt file": "Vous pouvez également utiliser un fichier .txt",
205
+ "Enter text to synthesize": "Saisir le texte à synthétiser",
206
+ "Output Path for TTS Audio": "Chemin de sortie pour l’audio TTS",
207
+ "Output Path for RVC Audio": "Chemin de sortie pour l’audio RVC",
208
+
209
+ "Enable Applio integration with Discord presence": "Activer l’intégration d’Applio avec la présence de Discord",
210
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Il activera la possibilité d’afficher l’activité actuelle d’Applio dans Discord.",
211
+ "Enable Applio integration with applio.org/models using flask": "Activer l’intégration d’Applio avec applio.org/models à l’aide de flask",
212
+ "It will activate the possibility of downloading models with a click from the website.": "Il activera la possibilité de télécharger des modèles en un clic depuis le site web.",
213
+ "Enable fake GPU": "Activer le faux GPU",
214
+ "Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option.": "La formation n’est actuellement pas prise en charge en raison de l’absence de GPU. Pour activer l’onglet de formation, accédez à l’onglet Paramètres et activez l’option « Faux GPU ».",
215
+ "Activates the train tab. However, please note that this device lacks GPU capabilities, hence training is not supported. This option is only for testing purposes. (This option will restart Applio)": "Active l’onglet train. Cependant, veuillez noter que cet appareil ne dispose pas de capacités GPU et que la formation n’est donc pas prise en charge. Cette option est uniquement destinée à des fins de test. (Cette option redémarrera Applio)",
216
+ "Theme": "Thème",
217
+ "Select the theme you want to use. (Requires restarting Applio)": "Sélectionnez le thème que vous souhaitez utiliser. (Nécessite le redémarrage d’Applio)",
218
+ "Precision": "Précision",
219
+ "Select the precision you want to use for training and inference.": "Sélectionnez la précision que vous souhaitez utiliser pour la formation et l’inférence.",
220
+ "Update precision": "Mettre à jour la précision",
221
+ "Language": "Langue",
222
+ "Select the language you want to use. (Requires restarting Applio)": "Sélectionnez la langue que vous souhaitez utiliser. (Nécessite le redémarrage d’Applio)",
223
+
224
+ "Plugin Installer": "Installateur de plugin",
225
+ "Drag your plugin.zip to install it": "Faites glisser votre plugin.zip pour l’installer",
226
+
227
+ "Version Checker": "Vérificateur de version",
228
+ "Check which version of Applio is the latest to see if you need to update.": "Vérifiez quelle version d’Applio est la plus récente pour voir si vous devez effectuer une mise à jour.",
229
+ "Check for updates": "Vérifier les mises à jour"
230
+ }
assets/i18n/languages/gu_GU.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "અંતિમ વોઇસ ક્લોનિંગ ટૂલ, જે અજોડ શક્તિ, મોડ્યુલારિટી અને વપરાશકર્તા-મૈત્રીપૂર્ણ અનુભવ માટે સાવચેતીપૂર્વક ઓપ્ટિમાઇઝ કરવામાં આવ્યું છે.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "આ વિભાગમાં કેટલીક વધારાની ઉપયોગિતાઓ છે જે ઘણીવાર પ્રાયોગિક તબક્કામાં હોઈ શકે છે.",
4
+ "Output Information": "આઉટપુટ જાણકારી",
5
+ "The output information will be displayed here.": "આઉટપુટ જાણકારી અંહિ દર્શાવવામાં આવશે.",
6
+ "Inference": "અનુમાન",
7
+ "Train": "રેલગાડી",
8
+ "Extra": "વધારાનું",
9
+ "Merge Audios": "ઓડિયો ભેગા કરો",
10
+ "Processing": "પ્રક્રિયા કરી રહ્યા છીએ",
11
+ "Audio Analyzer": "ઓડિયો વિશ્લેષક",
12
+ "Model Information": "મોડેલ જાણકારી",
13
+ "Plugins": "પ્લગઇનો",
14
+ "Download": "ડાઉનલોડ",
15
+ "Report a Bug": "ભૂલનો અહેવાલ આપો",
16
+ "Settings": "સુયોજનો",
17
+ "Preprocess": "પ્રીપ્રોસેસ",
18
+ "Model Name": "મોડેલ નામ",
19
+ "Name of the new model.": "નવા મોડેલનું નામ.",
20
+ "Enter model name": "મોડેલ નામ દાખલ કરો",
21
+ "Dataset Path": "ડેટાસેટ પાથ",
22
+ "Path to the dataset folder.": "ડેટાસેટ ફોલ્ડરનો પાથ.",
23
+ "Refresh Datasets": "ડેટાસેટ્સ પુનઃતાજું કરો",
24
+ "Dataset Creator": "ડેટાસેટ બનાવનાર",
25
+ "Dataset Name": "ડેટાસેટ નામ",
26
+ "Name of the new dataset.": "નવા ડેટાસેટનું નામ.",
27
+ "Enter dataset name": "ડેટાસેટ નામ દાખલ કરો",
28
+ "Upload Audio Dataset": "ઓડિયો ડેટાસેટ અપલોડ કરો",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "ઓડિયો ફાઈલ સફળતાપૂર્વક ડેટાસેટમાં ઉમેરાઈ ગઈ છે. કૃપા કરીને પ્રીપ્રોસેસ બટન પર ક્લિક કરો.",
30
+ "Enter dataset path": "ડેટાસેટ પાથને દાખલ કરો",
31
+ "Sampling Rate": "નમૂનાનો દર",
32
+ "The sampling rate of the audio files.": "ઓડિયો ફાઈલોનો નમૂનાનો દર.",
33
+ "RVC Version": "RVC આવૃત્તિ",
34
+ "The RVC version of the model.": "મોડેલનું આરવીસી વર્ઝન.",
35
+ "Preprocess Dataset": "પ્રીપ્રોસેસ ડેટાસેટ",
36
+ "Extract": "અર્ક કાઢો",
37
+ "Hop Length": "હોપ લંબાઈ",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "સિસ્ટમને નોંધપાત્ર પિચ પરિવર્તનમાં સંક્રમણ કરવામાં જે સમયગાળો લાગે છે તે સૂચવે છે. નાના હોપની લંબાઈને અનુમાન માટે વધુ સમયની જરૂર હોય છે પરંતુ ઉચ્ચ પિચ ચોકસાઈ પ્રાપ્ત કરવાનું વલણ ધરાવે છે.",
39
+ "Batch Size": "બેચ માપ",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "તેને તમારા જીપીયુના ઉપલબ્ધ વીઆરએએમ સાથે સંરેખિત કરવાની સલાહ આપવામાં આવે છે. 4નું સેટિંગ સુધારેલી ચોકસાઈ આપે છે પરંતુ પ્રક્રિયા ધીમી છે, જ્યારે 8 ઝડપી અને પ્રમાણભૂત પરિણામો પ્રદાન કરે છે.",
41
+ "Save Every Epoch": "દરેક ઈપોકનો સંગ્રહ કરો",
42
+ "Determine at how many epochs the model will saved at.": "મોડેલ કેટલા યુગમાં સંગ્રહાશે તે નક્કી કરો.",
43
+ "Total Epoch": "કુલ ઈપોક",
44
+ "Specifies the overall quantity of epochs for the model training process.": "મોડેલ તાલીમ પ્રક્રિયા માટે યુગોનો એકંદર જથ્થો સ્પષ્ટ કરે છે.",
45
+ "Pretrained": "પૂર્વપ્રશિક્ષિત",
46
+ "Save Only Latest": "ફક્ત તાજેતરનાં ને સંગ્રહો",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "આ ગોઠવણને સક્રિય કરવાથી જી અને ડી (G) અને ડી (D) ફાઇલો માત્ર તેમના તાજેતરના વર્ઝનને જ સેવ કરી શકશે, અસરકારક રીતે સ્ટોરેજ સ્પેસનું સંરક્ષણ કરશે.",
48
+ "Save Every Weights": "દરેક વજનોને બચાવો",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "આ ગોઠવણી તમને દરેક યુગના અંતે મોડેલના વજનને બચાવવા માટે સક્ષમ બનાવે છે.",
50
+ "Custom Pretrained": "વૈવિધ્યપૂર્ણ પૂર્વટ્રેઈન થયેલ",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "કસ્ટમ પ્રીટ્રેઇન્ડ મોડેલ્સનો ઉપયોગ કરવાથી શ્રેષ્ઠ પરિણામો મળી શકે છે, કારણ કે ચોક્કસ ઉપયોગના કિસ્સાને અનુરૂપ સૌથી યોગ્ય પ્રિટ્રેઇન્ડ મોડેલ્સની પસંદગી કરવાથી કામગીરીમાં નોંધપાત્ર વધારો થઈ શકે છે.",
52
+ "Upload Pretrained Model": "પહેલેથી પ્રશિક્ષિત મોડેલ અપલોડ કરો",
53
+ "Refresh Custom Pretraineds": "કસ્ટમ પૂર્વપ્રશિક્ષિતોને તાજુ કરો",
54
+ "Pretrained Custom Settings": "પહેલેથી પ્રશિક્ષિત વૈવિધ્યપૂર્ણ સુયોજનો",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "તમે મૂકેલી ફાઇલ એ યોગ્ય પૂર્વતાલીમવાળી ફાઇલ નથી. કૃપા કરીને ફરી પ્રયાસ કરો.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ડ્રોપડાઉન મેનુમાં પહેલેથી તાલીમ લીધેલ ફાઈલ જોવા માટે રિફ્રેશ બટન પર ક્લિક કરો.",
57
+ "Pretrained G Path": "વૈવિધ્યપૂર્ણ પૂર્વપ્રશિક્ષિત G",
58
+ "Pretrained D Path": "વૈવિધ્યપૂર્ણ પૂર્વપ્રશિક્ષિત D",
59
+ "GPU Settings": "GPU સુયોજનો",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "અદ્યતન GPU ગોઠવણો સુયોજિત કરે છે, જે વધુ સારા GPU આર્કિટેક્ચર ધરાવતા વપરાશકર્તાઓ માટે આગ્રહણીય છે.",
61
+ "GPU Custom Settings": "GPU કસ્ટમ સુયોજનો",
62
+ "GPU Number": "GPU નંબર",
63
+ "0 to ∞ separated by -": "0 થી ∞ આના દ્વારા અલગ પાડવામાં આવે છે -",
64
+ "GPU Information": "GPU જાણકારી",
65
+ "Pitch Guidance": "પિચ માર્ગદર્શન",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "પિચ માર્ગદર્શનનો ઉપયોગ કરીને, મૂળ અવાજના રણકારને પ્રતિબિંબિત કરવાનું શક્ય બને છે, જેમાં તેની પીચનો પણ સમાવેશ થાય છે. આ સુવિધા ખાસ કરીને ગાવા અને અન્ય દૃશ્યો માટે મૂલ્યવાન છે જ્યાં મૂળ મેલોડી અથવા પિચ પેટર્નને સાચવવી જરૂરી છે.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "તમારા પોતાનાને તાલીમ આપતી વખતે પૂર્વપ્રશિક્ષિત મોડેલોનો ઉપયોગ કરો. આ અભિગમ તાલીમનો સમયગાળો ઘટાડે છે અને એકંદર ગુણવત્તામાં વધારો કરે છે.",
68
+ "Extract Features": "લક્ષણોનો અર્ક કાઢો",
69
+ "Start Training": "તાલીમ શરૂ કરો",
70
+ "Generate Index": "અનુક્રમણિકા બનાવો",
71
+ "Voice Model": "અવાજ મોડેલ",
72
+ "Select the voice model to use for the conversion.": "રૂપાંતરણ માટે વાપરવા માટે વોઇસ મોડેલ પસંદ કરો.",
73
+ "Index File": "અનુક્રમણિકા ફાઇલ",
74
+ "Select the index file to use for the conversion.": "રૂપાંતરણ માટે વાપરવા માટે અનુક્રમણિકા ફાઈલ પસંદ કરો.",
75
+ "Refresh": "પુનઃતાજું કરો",
76
+ "Unload Voice": "અવાજ અનલોડ કરો",
77
+ "Single": "એકલું",
78
+ "Upload Audio": "ઓડિયો અપલોડ કરો",
79
+ "Select Audio": "ઓડિયો પસંદ કરો",
80
+ "Select the audio to convert.": "રૂપાંતરિત કરવા માટે ઓડિયો પસંદ કરો.",
81
+ "Advanced Settings": "અદ્યતન સુયોજનો",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "આઉટપુટ સાફ કરો (સંપત્તિઓ/ઓડિયોમાં બધા ઓડિયો કાઢી નાંખે છે)",
83
+ "Custom Output Path": "કસ્ટમ આઉટપુટ પાથ",
84
+ "Output Path": "આઉટપુટ પાથ",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "પાથ કે જ્યાં આઉટપુટ ઓડિયો એ મૂળભૂત રીતે assets/audios/output.wav માં સંગ્રહાશે",
86
+ "Split Audio": "ઓડિયો વિભાજિત કરો",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "કેટલાક કિસ્સાઓમાં વધુ સારા પરિણામો મેળવવા માટે અનુમાન માટે ઓડિઓને ભાગોમાં વિભાજિત કરો.",
88
+ "Autotune": "Autotune",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "તમારા અનુમાનો પર નરમ ઓટોટ્યુન લાગુ કરો, જે ગાવા માટે ભલામણ કરવામાં આવે છે રૂપાંતરણો ગાવા માટે ભલામણ કરવામાં આવે છે.",
90
+ "Clean Audio": "ઓડિયો સાફ કરો",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "ઓડિયો બોલવા માટે ભલામણ કરવામાં આવેલા નોઇઝ ડિટેક્શન એલ્ગોરિધમ્સનો ઉપયોગ કરીને તમારા ઓડિયો આઉટપુટને સાફ કરો.",
92
+ "Clean Strength": "સ્વચ્છ મજબૂતાઈ",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "તમે ઇચ્છો તે ઓડિયો પર સફાઇનું સ્તર સુયોજિત કરો, તમે તેને જેટલું વધારશો તેટલું તે સાફ થશે, પરંતુ શક્ય છે કે ઓડિયો વધુ સંકુચિત હશે.",
94
+ "Pitch": "પિચ",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "ઓડિયોની પિચ સુયોજિત કરો, કિંમત જેટલી ઊંચી હશે, તેટલી પીચ વધુ ઊંચી હશે.",
96
+ "Filter Radius": "ફિલ્ટર ત્રિજ્યા",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "જો સંખ્યા ત્રણ કરતા વધારે અથવા સમાન હોય, તો એકત્રિત સ્વર પરિણામો પર મધ્યમ ફિલ્ટરિંગનો ઉપયોગ કરવાથી શ્વસનનક્કી થવાની સંભાવના રહે છે.",
98
+ "Search Feature Ratio": "શોધ લક્ષણ ગુણોત્તર",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "અનુક્રમણિકા ફાઈલ દ્વારા લાગતો પ્રભાવ; ઉચ્ચતર મૂલ���ય વધુ પ્રભાવને મળતું આવે છે. જો કે, નીચા મૂલ્યોની પસંદગી કરવાથી ઓડિયોમાં હાજર કલાકૃતિઓને ઘટાડવામાં મદદ મળી શકે છે.",
100
+ "Volume Envelope": "વોલ્યુમ કવરpaper size",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "આઉટપુટના વોલ્યુમ પરબિડીયા સાથે અવેજી અથવા મિશ્રણ કરો. ગુણોત્તર 1 ની નજીક હોય છે, આઉટપુટ પરબિડીયાને વધુ ઉપયોગમાં લેવામાં આવે છે.",
102
+ "Protect Voiceless Consonants": "અવાજ વગરના વ્યંજનોનું રક્ષણ કરો",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "ઇલેક્ટ્રો-એકોસ્ટિક ફાટી ન જાય અને અન્ય કલાકૃતિઓ ન ફાટી જાય તે માટે વિશિષ્ટ વ્યંજનો અને શ્વાસોચ્છવાસના અવાજનું રક્ષણ કરો. પરિમાણને તેના ૦.૫ ના મહત્તમ મૂલ્ય તરફ ખેંચવું એ વ્યાપક સુરક્ષા પ્રદાન કરે છે. જો કે, આ મૂલ્યમાં ઘટાડો કરવાથી અનુક્રમણિકાની અસરને સંભવિતપણે ઘટાડવાની સાથે સંરક્ષણની હદમાં ઘટાડો થઈ શકે છે.",
104
+ "Pitch extraction algorithm": "પિચ નિષ્કર્ષણ અલગોરિધમ",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "ઓડિઓ રૂપાંતર માટે વાપરવા માટે પિચ નિષ્કર્ષણ અલ્ગોરિધમનો. મૂળભૂત અલ્ગોરિધમ એ rmvpe છે, જે મોટાભાગના કિસ્સાઓમાં ભલામણ કરવામાં આવે છે.",
106
+ "Convert": "રૂપાંતર કરો",
107
+ "Export Audio": "ઓડિયો નિકાસ કરો",
108
+ "Batch": "બેચ",
109
+ "Input Folder": "ઇનપુટ ફોલ્ડર",
110
+ "Select the folder containing the audios to convert.": "ફેરવવા માટે ઓડિયો સમાવતા ફોલ્ડરને પસંદ કરો.",
111
+ "Enter input path": "ઇનપુટ પાથને દાખલ કરો",
112
+ "Output Folder": "આઉટપુટ ફોલ્ડર",
113
+ "Select the folder where the output audios will be saved.": "ફોલ્ડર પસંદ કરો કે જ્યાં આઉટપુટ ઓડિયો સંગ્રહાશે.",
114
+ "Enter output path": "આઉટપુટ પાથ દાખલ કરો",
115
+ "Get information about the audio": "ઓડિયો વિશે જાણકારી મેળવો",
116
+ "Information about the audio file": "ઓડિયો ફાઈલ વિશેની માહિતી",
117
+ "Waiting for information...": "જાણકારી માટે રાહ જોઇ રહ્યા છીએ...",
118
+ "## Voice Blender": "## વોઇસ બ્લેન્ડર",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "બે વોઇસ મોડલ્સ પસંદ કરો, તમારી ઇચ્છિત મિશ્રણ ટકાવારી સેટ કરો અને તેને સંપૂર્ણપણે નવા અવાજમાં મિશ્રિત કરો.",
120
+ "Voice Blender": "અવાજ બ્લેન્ડર",
121
+ "Drag and drop your model here": "તમારા મોડેલને અંહિ ખેંચો અને મૂકો",
122
+ "You can also use a custom path.": "તમે કસ્ટમ પાથનો પણ ઉપયોગ કરી શકો છો.",
123
+ "Blend Ratio": "મિશ્રણ ગુણોત્તર",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "સ્થિતિને એક બાજુ અથવા બીજી બાજુ વધુ સમાયોજિત કરવાથી મોડેલને પ્રથમ અથવા બીજી બાજુ વધુ સમાન બનાવશે.",
125
+ "Fusion": "ફ્યુઝન",
126
+ "Path to Model": "મોડેલનો પાથ",
127
+ "Enter path to model": "મોડેલ માટે પાથને દાખલ કરો",
128
+ "Model information to be placed": "મૂકવાની મોડેલ માહિતી",
129
+ "Inroduce the model information": "મોડેલની જાણકારીને ઇનરોડ્યુસ કરો",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "મોડેલમાં મૂકવાની માહિતી (તમે તેને ખાલી છોડી શકો છો અથવા કંઈપણ મૂકી શકો છો).",
131
+ "View model information": "મોડેલ જાણકારી જુઓ",
132
+ "Introduce the model pth path": "મોડેલ pth પાથનો પરિચય આપો",
133
+ "View": "જુઓ",
134
+ "Model extraction": "મોડેલ નિષ્કર્ષણ",
135
+ "Model conversion": "મોડેલ રૂપાંતરણ",
136
+ "Pth file": "Pth ફાઈલ",
137
+ "Output of the pth file": "pth ફાઇલનું આઉટપુટ",
138
+ "# How to Report an Issue on GitHub": "# GitHub પર કોઈ સમસ્યાની જાણ કેવી રીતે કરવી",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. તમે જે સમસ્યાનો સામનો કરી રહ્યા છો તેને રેકોર્ડ કરવાનું શરૂ કરવા માટે નીચે આપેલા 'રેકોર્ડ સ્ક્રીન' બટન પર ક્લિક કરો.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. એક વખત તમે સમસ્યાનું રેકોર્ડિંગ પૂરું કરી લો એટલે 'સ્ટોપ રેકોર્ડિંગ' બટન પર ક્લિક કરો (આ જ બટન, પરંતુ તમે સક્રિયપણે રેકોર્ડિંગ કરી રહ્યા છો કે નહીં તેના આધારે લેબલ બદલાય છે).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub issues] (https://github.com/IAHispano/Applio/issues) પર જાઓ અને 'ન્યૂ ઇશ્યૂ' બટન પર ક્લિક કરો.",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. પૂરી પાડવામાં આવેલ ઇશ્યૂ ટેમ્પલેટ પૂર્ણ કરો, જરૂરિયાત મુજબ વિગતોનો સમાવેશ કરવાની ખાતરી કરો અને અગાઉના પગલામાંથી રેકોર્ડ કરેલી ફાઇલને અપલોડ કરવા માટે અસ્કયામતોના વિભાગનો ઉપયોગ કરો.",
143
+ "Record Screen": "રેકોર્ડ સ્ક્રીન",
144
+ "Record": "રેકોર્ડ",
145
+ "Stop Recording": "રેકોર્ડ કરવાનું બંધ કરો",
146
+ "Introduce the model .pth path": "મોડલ .pth પાથને રજૂ કરો",
147
+ "See Model Information": "મોડેલ જાણકારી જુઓ",
148
+ "## Download Model": "## ડાઉનલોડ મોડેલ",
149
+ "Model Link": "મોડેલ કડી",
150
+ "Introduce the model link": "મોડેલ કડીનો પરિચય આપો",
151
+ "Download Model": "ડાઉનલોડ મોડેલ",
152
+ "## Drop files": "## ફાઇલો મૂકો",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "આ જગ્યામાં તમારી .pth ફાઇલ અને .index ફાઇલને ખેંચો. એકને ખેંચો અને પછી બીજું.",
154
+ "TTS Voices": "TTS અવાજો",
155
+ "Select the TTS voice to use for the conversion.": "રૂપાંતરણ માટે વાપરવા માટે TTS અવાજ પસંદ કરો.",
156
+ "Text to Synthesize": "સંશ્લેષણ કરવા માટેનું લખાણ",
157
+ "Enter the text to synthesize.": "સંશ્લેષણ કરવા માટે લખાણ દાખલ કરો.",
158
+ "Or you can upload a .txt file": "અથવા તમે .txt ફાઇલ અપલોડ કરી શકો છો",
159
+ "Enter text to synthesize": "સંશ્લેષણ કરવા માટે લખાણ દાખલ કરો",
160
+ "Output Path for TTS Audio": "TTS ઓડિયો માટે આઉટપુટ પાથ",
161
+ "Output Path for RVC Audio": "RVC ઓડિયો માટે આઉટપુટ પાથ",
162
+ "Enable Applio integration with Discord presence": "ડિસ્કોર્ડ હા��રી સાથે એપ્લિઓ સંકલન સક્રિય કરો",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "તે ડિસ્કોર્ડમાં વર્તમાન એપ્લિયો પ્રવૃત્તિ પ્રદર્શિત કરવાની સંભાવનાને સક્રિય કરશે.",
164
+ "Enable Applio integration with applio.org/models using flask": "ફ્લાસ્કની મદદથી applio.org/models સાથે એપ્લિયો સંકલન સક્રિય કરો",
165
+ "It will activate the possibility of downloading models with a click from the website.": "તે વેબસાઇટ પરથી એક ક્લિક સાથે મોડેલો ડાઉનલોડ કરવાની સંભાવનાને સક્રિય કરશે.",
166
+ "Theme": "થીમ",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "થીમ પસંદ કરો જે તમે વાપરવા માંગો છો. (એપ્લિયોને ફરી શરૂ કરવાની જરૂર છે)",
168
+ "Language": "ભાષા",
169
+ "Select the language you want to use. (Requires restarting Applio)": "તમે જે ભાષા વાપરવા માંગો તે પસંદ કરો. (એપ્લિયોને ફરી શરૂ કરવાની જરૂર છે)",
170
+ "Plugin Installer": "પ્લગઇન સ્થાપનાર",
171
+ "Drag your plugin.zip to install it": "તેને સ્થાપિત કરવા માટે તમારા plugin.zip ખેંચો",
172
+ "Version Checker": "આવૃત્તિ ચકાસનાર",
173
+ "Check which version of Applio is the latest to see if you need to update.": "તમારે અપડેટ કરવાની જરૂર છે કે નહીં તે જોવા માટે એપ્લિઓનું કયું સંસ્કરણ નવીનતમ છે તે તપાસો.",
174
+ "Check for updates": "સુધારાઓ માટે ચકાસો"
175
+ }
assets/i18n/languages/hi_IN.json ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "अल्टीमेट वॉयस क्लोनिंग टूल, बेजोड़ पॉवर, मॉड्यूलरिटी और उपयोगकर्ता-अनुकूल अनुभव के लिए बारीकी से ऑप्टिमाइज़ किया गया।\n[हिन्दी अनुवाद: Enes](https://discord.com/users/1140031358006202468)",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "इस खंड में कुछ अतिरिक्त उपयोगिताएँ होती हैं जो अक्सर प्रायोगिक चरणों में हो सकती हैं।",
4
+ "Output Information": "आउटपुट जानकारी",
5
+ "The output information will be displayed here.": "आउटपुट जानकारी यहाँ प्रदर्शित की जाएगी।",
6
+
7
+ "Inference": "निष्कर्ष",
8
+ "Train": "ट्रेन",
9
+ "Extra": "अतिरिक्त",
10
+ "Merge Audios": "इस ऑडियो को मर्ज करें",
11
+ "Processing": "प्रोसेसिंग",
12
+ "Audio Analyzer": "ऑडियो एनालाइज़र",
13
+ "Model Information": "मॉडल जानकारी",
14
+ "Plugins": "प्लगइन्स",
15
+ "Download": "डाउनलोड करें",
16
+ "Report a Bug": "एक बग की रिपोर्ट करें",
17
+ "Settings": "सेटिंग्स",
18
+
19
+ "Preprocess": "पूर्व-प्रसंस्करण",
20
+ "Model Name": "मॉडल का नाम",
21
+ "Name of the new model.": "नए मॉडल का नाम।",
22
+ "Enter model name": "मॉडल नाम डालें",
23
+ "Dataset Path": "डेटासेट पथ",
24
+ "Path to the dataset folder.": "डेटासेट फ़ोल्डर का पथ।",
25
+ "Refresh Datasets": "डेटासेट रीफ्रेश करें",
26
+ "Dataset Creator": "डेटासेट बनाने वाला",
27
+ "Dataset Name": "डेटासेट का नाम",
28
+ "Name of the new dataset.": "नए डेटासेट का नाम।",
29
+ "Enter dataset name": "डेटासेट का नाम डालें",
30
+ "Upload Audio Dataset": "ऑडियो डेटासेट अपलोड करें",
31
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "ऑडियो फ़ाइल को डेटासेट में सफलतापूर्वक जोड़ा गया है। कृपया प्रीप्रोसेस बटन पर क्लिक करें।",
32
+ "Enter dataset path": "डेटासेट पथ डालें",
33
+ "Sampling Rate": "नमूनाकरण दर",
34
+ "The sampling rate of the audio files.": "ऑडियो फ़ाइलों की नमूनाकरण दर।",
35
+ "RVC Version": "RVC वर्शन",
36
+ "The RVC version of the model.": "मॉडल का RVC वर्शन।",
37
+ "Preprocess Dataset": "डेटासेट का पूर्व-प्रसंस्करण करें",
38
+
39
+ "Embedder Model": "एम्बेडर मॉडल",
40
+ "Model used for learning speaker embedding.": "स्पीकर एम्बेडिंग सीखने के लिए उपयोग किया जाने वाला मॉडल।",
41
+ "Extract": "एक्सट्रैक्ट",
42
+ "Hop Length": "हॉप लंबाई",
43
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "यह अवधी को दर्शाती है जिसे सिस्टम को पिच में महत्वपूर्ण बदलाव के लिए ले जाना पड़ता है। कम हॉप लंबाई को अनुमान लगाने में अधिक समय लगता है लेकिन उच्च पिच सटीकता मिलती है।",
44
+ "Batch Size": "बैच आकार",
45
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "अपने GPU की उपलब्ध VRAM के साथ इसे संरेखित करना उचित है। 4 की सेटिंग में सटीकता बेहतर होती है लेकिन प्रोसेसिंग धीमी होती है, जबकि 8 तेज और मानक परिणाम प्रदान करता है।",
46
+ "Save Every Epoch": "प्रत्येक युग को से��� करें",
47
+ "Determine at how many epochs the model will saved at.": "निर्धारित करें कि कितने युग पर मॉडल सहेजा जाएगा",
48
+ "Total Epoch": "कुल युग",
49
+ "Specifies the overall quantity of epochs for the model training process.": "मॉडल प्रशिक्षण प्रक्रिया के लिए युग की समग्र मात्रा निर्दिष्ट करता है।",
50
+ "Pretrained": "पूर्व प्रशिक्षित",
51
+ "Save Only Latest": "केवल नवीनतम को सेव करें",
52
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "इस सेटिंग को सक्षम करने पर G और D फ़ाइलें अपने केवल नवीनतम संस्करण को ही सेव करेंगी, भंडारण स्थान को प्रभावी ढंग से संरक्षित करना।",
53
+ "Save Every Weights": "प्रत्येक वज़न को सेव करें",
54
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "यह सेटिंग आपको प्रत्येक युग के समापन पर मॉडल के वजन को सेव करने में सक्षम बनाती है।",
55
+ "Custom Pretrained": "कस्टम पूर्व प्रशिक्षित",
56
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "कस्टम पूर्व प्रशिक्षित मॉडलों का उपयोग करने से बेहतर परिणाम मिल सकते हैं, क्योंकि विशिष्ट उपयोग के मामले के अनुरूप सबसे उपयुक्त पूर्व प्रशिक्षित मॉडलों को चुनने से प्रदर्शन में काफी वृद्धि हो सकती है।",
57
+ "Upload Pretrained Model": "पूर्व प्रशिक्षित मॉडल अपलोड करें",
58
+ "Refresh Custom Pretraineds": "कस्टम पूर्व प्रशिक्षितों को ताज़ा करें",
59
+ "Pretrained Custom Settings": "पूर्व प्रशिक्षित कस्टम सेटिंग्स",
60
+ "The file you dropped is not a valid pretrained file. Please try again.": "जो फ़ाइल आपने छोड़ी है वह एक मान्य पूर्व प्रशिक्षित फ़ाइल नहीं है। कृपया पुनः प्रयास करें।",
61
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ड्रॉपडाउन मेनू में पूर्व प्रशिक्षित फ़ाइल को देखने के लिए रीफ़्रेश बटन पर क्लिक करें।",
62
+ "Pretrained G Path": "कस्टम पूर्व प्रशिक्षित G",
63
+ "Pretrained D Path": "कस्टम पूर्व प्रशिक्षित D",
64
+ "GPU Settings": "GPU सेटिंग्स",
65
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "उन्नत GPU सेटिंग्स सेट करता है, बेहतर GPU आर्किटेक्चर वाले उपयोगकर्ताओं के लिए अनुशंसित।",
66
+ "GPU Custom Settings": "GPU कस्टम सेटिंग्स",
67
+ "GPU Number": "GPU संख्या",
68
+ "0 to ∞ separated by -": "0 से ∞ तक अलग से -",
69
+ "GPU Information": "GPU जानकारी",
70
+ "Pitch Guidance": "पिच मार्गदर्शन",
71
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "पिच मार्गदर्शन को नियोजित करके, मूल आवाज़ के स्वर को प्रतिबिंबित करना संभव हो जाता है। यह सुविधा गायन और अन्य परिदृश्य के लिए विशेष रूप से मूल्यवान है जहाँ मूल राग या पिच पैटर्न को संरक्षित करना आवश्यक है।",
72
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "अपना खुद का प्रशिक्षण करते समय पूर्व प्रशिक्षित मॉडलों का उपयोग करें। यह दृष्टिकोण प्रशिक्षण की अवधि कम करता है और समग्र गुणवत्ता को बढ़ाता है।",
73
+ "Extract Features": "विशेषताएँ निकालें",
74
+ "Overtraining Detector": "ओवरट्रेनिंग डिटेक्टर",
75
+ "Detect overtraining to prevent the model from learning the training data too well and losing the ability to generalize to new data.": "मॉडल को प्रशिक्षण डेटा को बहुत अच्छी तरह से सीखने और नए डेटा को सामान्य बनाने की क्षमता खोने से रोकने के लिए ओवरट्रेनिंग का पता लगाएं।",
76
+ "Overtraining Detector Settings": "ओवरट्रेनिंग डिटेक्टर सेटिंग्स",
77
+ "Overtraining Threshold": "ओवरट्रेनिंग थ्रेशोल्ड",
78
+ "Set the maximum number of epochs you want your model to stop training if no improvement is detected.": "यदि कोई सुधार नहीं पाया जाता है, तो आप अपने मॉडल को प्रशिक्षण बंद करने के लिए अधिकतम युगों की संख्या निर्धारित करें।",
79
+
80
+ "Start Training": "प्रशिक्षण शुरू करें",
81
+ "Stop Training & Restart Applio": "प्रशिक्षण रोकें और Applio को पुनः आरंभ करें",
82
+ "Generate Index": "इंडेक्स बनाएँ",
83
+
84
+ "Export Model": "मॉडल निर्यात करें",
85
+ "The button 'Upload' is only for google colab: Uploads the exported files to the ApplioExported folder in your Google Drive.": "'अपलोड' बटन केवल गूगल कोलाब के लिए है: निर्यात की गई फ़ाइलों को आपके Google ड्राइव में ApplioExported फ़ोल्डर में अपलोड करता है।",
86
+ "Exported Pth file": "निर्यात की गई Pth फ़ाइल",
87
+ "Exported Index file": "निर्यात की गई इंडेक्स फ़ाइल",
88
+ "Select the pth file to be exported": "निर्यात की जाने वाली pth फ़ाइल का चयन करें",
89
+ "Select the index file to be exported": "निर्यात की जाने वाली इंडेक्स फ़ाइल का चयन करें",
90
+ "Upload": "अपलोड करें",
91
+
92
+ "Voice Model": "आवाज़ का मॉडल",
93
+ "Select the voice model to use for the conversion.": "रूपांतरण के लिए उपयोग करने के लिए आवाज मॉडल का चयन करें।",
94
+ "Index File": "इंडेक्स फ़ाइल",
95
+ "Select the index file to use for the conversion.": "रूपांतरण के लिए उपयोग करने के लिए इंडेक्स फ़ाइल का चयन करें।",
96
+ "Refresh": "ताज़ा करें",
97
+ "Unload Voice": "आवाज़ अनलोड करें",
98
+
99
+ "Single": "सिंगल",
100
+ "Upload Audio": "ऑडियो अपलोड करें",
101
+ "Select Audio": "ऑडियो चुनें",
102
+ "Select the audio to convert.": "रूपांतरित करने के लिए ऑडियो चुनें।",
103
+ "Advanced Settings": "उन्नत सेटिंग्स",
104
+ "Clear Outputs (Deletes all audios in assets/audios)": "(assets/audios में सभी ऑडियो को हटाता है) आउटपुट साफ़ करें",
105
+ "Custom Output Path": "कस्टम आउटपुट पथ",
106
+ "Output Path": "आउटपुट पथ",
107
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "आउटपुट ऑडियो का पथ जहाँ उसे सेव किया जाएगा, डिफ़ॉल्ट रूप से assets/audios/output.wav में",
108
+ "Split Audio": "ऑडियो को विभाजित करें",
109
+ "Split the audio into chunks for inference to obtain better results in some cases.": "कुछ स्थितियों में अधिक बेहतर परिणाम प्राप्त करने के लिए अनुमान के लिए ऑडियो को हिस्सों में विभाजित करें।",
110
+ "Autotune": "ऑटोट्यू��",
111
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "अपने अनुमानों पर एक नरम ऑटोट्यून लागू करें, यह गायन रूपांतरण के लिए अनुशंसित है।",
112
+ "Clean Audio": "ऑडियो साफ़ करें",
113
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "शोर का पता लगाने वाले एल्गोरिदम का उपयोग करके अपने ऑडियो आउटपुट को साफ़ करें, बोलने वाले ऑडियो के लिए अनुशंसित।",
114
+ "Clean Strength": "सफाई शक्ति",
115
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "ऑडियो को साफ़ करने का स्तर निर्धारित करें, जैसे-जैसे आप इसे बढ़ाते जाएँगे यह उतना ही अधिक साफ़ करेगा, लेकिन यह संभव है कि ऑडियो और संकुचित हो सकता है।",
116
+ "Pitch": "पिच",
117
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "ऑडियो की पिच सेट करें, मान जितना अधिक होगा, पिच उतनी ही अधिक होगी।",
118
+ "Filter Radius": "फ़िल्टर त्रिज्या",
119
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "यदि संख्या तीन से अधिक या उसके बराबर है, तो एकत्र किए गए स्वर परिणामों पर मेडियन फ़िल्टरिंग का उपयोग करके साँस लेना कम हो जाता है।",
120
+ "Search Feature Ratio": "फीचर अनुपात खोजें",
121
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "इंडेक्स फ़ाइल द्वारा प्रभावित; एक उच्च मान अधिक प्रभाव से मेल खाता है। हालाँकि, कम मूल्यों को चुनने से ऑडियो में मौजूद कलाकृतियों को कम करने में मदद मिल सकती है।",
122
+ "Volume Envelope": "आयतन आवरण",
123
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "आउटपुट के आयतन आवरण के साथ स्थानापन्न करें या सम्मिश्रित करें। अनुपात जितना 1 के करीब होगा, आउटपुट आवरण उतना ही अधिक नियोजित किया जाएगा।",
124
+ "Protect Voiceless Consonants": "वॉयसलेस व्यंजनों की सुरक्षा करें",
125
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "इलेक्ट्रो-ध्वनिक फाड़ और अन्य कलाकृतियों को रोकने के लिए अलग-अलग व्यंजन और साँस लेने की आवाज़ को सुरक्षित रखें। पैरामीटर को उसके अधिकतम मान 0.5 तक खींचना व्यापक सुरक्षा प्रदान करता है। हालाँकि, इस मान को कम करने से सुरक्षा की सीमा कम हो सकती है जबकि संभावित रूप से अनुक्रमण प्रभाव कम हो सकता है।",
126
+ "Pitch extraction algorithm": "पिच निष्कर्षण एल्गोरिदम",
127
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "ऑडियो रूपांतरण के लिए उपयोग करने के लिए पिच निष्कर्षण एल्गोरिदम। डिफ़ॉल्ट एल्गोरिथम rmvpe है, जो अधिकां�� मामलों के लिए अनुशंसित है।",
128
+
129
+ "Convert": "रूपांतरित करें",
130
+ "Export Audio": "ऑडियो एक्सपोर्ट करें",
131
+
132
+ "Batch": "बैच",
133
+ "Input Folder": "इनपुट फ़ोल्डर",
134
+ "Select the folder containing the audios to convert.": "रूपांतरित करने के लिए ऑडियो वाली फ़ोल्डर का चयन करें।",
135
+ "Enter input path": "इनपुट पथ दर्ज करें",
136
+ "Output Folder": "आउटपुट फ़ोल्डर",
137
+ "Select the folder where the output audios will be saved.": "फ़ोल्डर का चयन करें जहाँ आउटपुट ऑडियो को सेव किया जाएगा।",
138
+ "Enter output path": "आउटपुट पथ दर्ज करें",
139
+
140
+ "Get information about the audio": "ऑडियो के बारे में जानकारी प्राप्त करें",
141
+
142
+ "## Voice Blender": "## Voice Blender",
143
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "दो आवाज़ के मॉडल का चयन करें, अपना वांछित मिश्रित प्रतिशत सेट करें, और उन्हें एक पूर्ण रूप से नई आवाज़ में सम्मिश्रित करें।",
144
+ "Voice Blender": "Voice Blender",
145
+ "Drag and drop your model here": "यहाँ अपना मॉडल ड्रैग एंड ड्रॉप करें",
146
+ "You can also use a custom path.": "आप कस्टम पथ का भी उपयोग कर सकते हैं।",
147
+ "Blend Ratio": "मिश्रित अनुपात",
148
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "स्थिति को एक तरफ या दूसरी तरफ समायोजित करने से माॅडल पहले या दूसरे के समान हो जाएगा।",
149
+ "Fusion": "सम्मिश्रण",
150
+
151
+ "Path to Model": "मॉडल का पथ",
152
+ "Enter path to model": "मॉडल का पथ दर्ज करें",
153
+ "Model information to be placed": "मॉडल की जानकारी स्थान की जाएगी",
154
+ "Inroduce the model information": "मॉडल की जानकारी का परिचय दें।",
155
+ "The information to be placed in the model (You can leave it blank or put anything).": "मॉडल में रखी जाने वाली जानकारी (आप इसे खाली छोड़ सकते हैं या कुछ भी डाल सकते हैं)।",
156
+ "View model information": "मॉडल की जानकारी देखें",
157
+ "Introduce the model pth path": "मॉडल pth पथ का परिचय दें",
158
+ "View": "देखें",
159
+ "Model extraction": "मॉडल निष्कर्षण",
160
+ "Model conversion": "मॉडल रूपांतरण",
161
+ "Pth file": "Pth फ़ाइल",
162
+ "Output of the pth file": "Pth फ़ाइल का आउटपुट",
163
+
164
+ "# How to Report an Issue on GitHub": "# GitHub पर किसी समस्या की रिपोर्ट कैसे करें",
165
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1.आपके द्वारा अनुभव की जा रही समस्या को रिकॉर्ड करना शुरू करने के लिए नीचे दिए गए 'रिकॉर्ड स्क्रीन' बटन पर क्लिक करें।",
166
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. एक बार जब आप समस्या की रिकॉर्डिंग समाप्त कर लें, तो 'स्टॉप रिकॉर्डिंग' बटन पर क्लिक करें (वही बटन, लेकिन लेबल इस पर निर्भर करता है कि आप सक्रिय रूप से रिकॉर्डिंग कर रहे हैं या नहीं)।",
167
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Issues](https://github.com/IAHispano/Applio/issues) पर जाएँ और 'New Issue' बटन पर क्लिक करें।",
168
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. दिए गए समस्या टेम्पलेट को पूरा करें, आवश्यकतानुसार विवरण शामिल करना सुनिश्चित करें, और पिछले चरण से रिकॉर्ड की गई फ़ाइल को अपलोड करने के लिए एसेट सेक्शन का उपयोग करें।",
169
+
170
+ "Record Screen": "स्क्रीन रिकॉर्ड करें",
171
+ "Record": "रिकॉर्ड करें",
172
+ "Stop Recording": "रिकॉर्डिंग बंद करें",
173
+
174
+ "Introduce the model .pth path": "मॉडल .pth पथ का परिचय दें",
175
+ "See Model Information": "मॉडल की जानकारी देखें",
176
+
177
+ "## Download Model": "## मॉडल डाउनलोड करें",
178
+ "Model Link": "मॉडल लिंक",
179
+ "Introduce the model link": "मॉडल लिंक का परिचय दें",
180
+ "Download Model": "मॉडल डाउनलोड करें",
181
+ "## Drop files": "## ड्रॉप फ़ाइलें",
182
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "अपनी .pth फ़ाइल और .index फ़ाइल को इस स्थान पर ड्रैग करें। एक को ड्रैग करें और फिर दूसरे को ड्रैग करें।",
183
+ "## Search Model": "## मॉडल खोजें",
184
+ "Search": "खोज",
185
+ "Introduce the model name to search.": "खोज करने के लिए मॉडल का नाम बताएं।",
186
+ "We couldn't find models by that name.": "हमें उस नाम से मॉडल नहीं मिला।",
187
+
188
+ "TTS Voices": "TTS Voices",
189
+ "Select the TTS voice to use for the conversion.": "रूपांतरण के लिए उपयोग करने के लिए TTS वॉयस का चयन करें।",
190
+ "Text to Synthesize": "Text to Synthesize",
191
+ "Enter the text to synthesize.": "संश्लेषित करने के लिए पाठ दर्ज करें।",
192
+ "Or you can upload a .txt file": "या आप एक .txt फ़ाइल अपलोड कर सकते हैं",
193
+ "Enter text to synthesize": "संश्लेषित करने के लिए पाठ दर्ज करें",
194
+ "Output Path for TTS Audio": "TTS ऑडियो के लिए आउटपुट पथ",
195
+ "Output Path for RVC Audio": "RVC ऑडियो के लिए आउटपुट पथ",
196
+
197
+ "Enable Applio integration with Discord presence": "डिस्कॉर्ड उपस्थिति के साथ Applio एकीकरण को सक्षम करें",
198
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "यह डिस्कॉर्ड में वर्तमान Applio गतिविधि प्रदर्शित करने की संभावना को सक्रिय करेगा।",
199
+ "Enable Applio integration with applio.org/models using flask": "flask का उपयोग करके applio.org/models के साथ Applio एकीकरण को सक्षम करें",
200
+ "It will activate the possibility of downloading models with a click from the website.": "यह वेबसाइट से एक क्लिक से मॉडल डाउनलोड करने की संभावना को सक्रिय करेगा।",
201
+ "Enable fake GPU": "नकली GPU सक्षम करें",
202
+ "Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option.": "GPU की अनुपस्थिति के कारण प्रशिक्षण वर्तमान में असमर्थित है। प्रशिक्षण टैब को सक्रिय करने के लिए, सेटिंग टैब पर नेविगेट करें और 'नकली GPU' विकल्प को सक्षम करें।",
203
+ "Activates the train tab. However, please note that this device lacks GPU capabilities, hence training is not supported. This option is only for testing purposes. (This option will restart Applio)": "ट्रेन टैब को सक्रिय करता है। हालांकि, कृपया ध्यान दें कि इस डिवाइस में GPU क्षमताएं नहीं हैं, इसलिए प्रशिक्षण समर्थित नहीं है। यह विकल्प केवल परीक्षण उद्देश्यों के लिए है। (यह विकल्प Applio को पुनरारंभ करेगा)",
204
+ "Theme": "थीम",
205
+ "Select the theme you want to use. (Requires restarting Applio)": "वह थीम चुनें जिसका आप उपयोग करना चाहते हैं। (Applio को पुनरारंभ करने की आवश्यकता है)",
206
+ "Language": "भाषा",
207
+ "Select the language you want to use. (Requires restarting Applio)": "वह भाषा चुनें जिसका आप उपयोग करना चाहते हैं। (Applio को पुनरारंभ करने की आवश्यकता है)",
208
+
209
+ "Plugin Installer": "प्लगइन इंस्टॉलर",
210
+ "Drag your plugin.zip to install it": "इसे इंस्टॉल करने के लिए अपने plugin.zip को ड्रैग करें",
211
+
212
+ "Version Checker": "संस्करण चेकर",
213
+ "Check which version of Applio is the latest to see if you need to update.": "अद्यतित करने के लिए आपको चाहिए या नहीं यह देखने के लिए जाँच करें कि Applio का कौन सा संस्करण नवीनतम है।",
214
+ "Check for updates": "अपडेट जांचें"
215
+ }
assets/i18n/languages/hu_HU.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "A legjobb hangklónozó eszköz, aprólékosan optimalizálva a páratlan teljesítmény, a modularitás és a felhasználóbarát élmény érdekében.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Ez a szakasz néhány további segédprogramot tartalmaz, amelyek gyakran kísérleti fázisban vannak.",
4
+ "Output Information": "Kimeneti információk",
5
+ "The output information will be displayed here.": "A kimeneti információk itt jelennek meg.",
6
+ "Inference": "Következtetés",
7
+ "Train": "Vonat",
8
+ "Extra": "Többlet",
9
+ "Merge Audios": "Hangok egyesítése",
10
+ "Processing": "Feldolgozás",
11
+ "Audio Analyzer": "Hangelemző",
12
+ "Model Information": "Modell információk",
13
+ "Plugins": "Bővítmények",
14
+ "Download": "Letöltés",
15
+ "Report a Bug": "Hiba jelentése",
16
+ "Settings": "Beállítások",
17
+ "Preprocess": "Előfeldolgozás",
18
+ "Model Name": "Modell neve",
19
+ "Name of the new model.": "Az új modell neve.",
20
+ "Enter model name": "Adja meg a modell nevét",
21
+ "Dataset Path": "Adatkészlet elérési útja",
22
+ "Path to the dataset folder.": "Az adatkészletmappa elérési útja.",
23
+ "Refresh Datasets": "Adatkészletek frissítése",
24
+ "Dataset Creator": "Adatkészlet létrehozója",
25
+ "Dataset Name": "Adatkészlet neve",
26
+ "Name of the new dataset.": "Az új adatkészlet neve.",
27
+ "Enter dataset name": "Adja meg az adatkészlet nevét",
28
+ "Upload Audio Dataset": "Hangadatkészlet feltöltése",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "A hangfájl sikeresen hozzá lett adva az adatkészlethez. Kérem kattintson az előfeldolgozás gombra.",
30
+ "Enter dataset path": "Adja meg az adatkészlet elérési útját",
31
+ "Sampling Rate": "Mintavételi arány",
32
+ "The sampling rate of the audio files.": "Az audiofájlok mintavételi frekvenciája.",
33
+ "RVC Version": "RVC verzió",
34
+ "The RVC version of the model.": "A modell RVC verziója.",
35
+ "Preprocess Dataset": "Adatkészlet előfeldolgozása",
36
+ "Extract": "Kivonat",
37
+ "Hop Length": "Komló hossza",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Azt az időtartamot jelöli, amely alatt a rendszer jelentős hangmagasság-változásra vált. A kisebb ugráshosszak több időt igényelnek a következtetéshez, de általában nagyobb hangmagasság-pontosságot eredményeznek.",
39
+ "Batch Size": "Tétel mérete",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Javasoljuk, hogy igazítsa a GPU rendelkezésre álló VRAM-jához. A 4-es beállítás nagyobb pontosságot, de lassabb feldolgozást biztosít, míg a 8-as gyorsabb és szabványos eredményeket biztosít.",
41
+ "Save Every Epoch": "Mentsd meg minden korszakot",
42
+ "Determine at how many epochs the model will saved at.": "Határozza meg, hogy hány korszakban menti a modellt.",
43
+ "Total Epoch": "Teljes korszak",
44
+ "Specifies the overall quantity of epochs for the model training process.": "A modell betanítási folyamatának epocháinak teljes mennyiségét adja meg.",
45
+ "Pretrained": "Előre betanított",
46
+ "Save Only Latest": "Csak a legújabbak mentése",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "A beállítás engedélyezése azt eredményezi, hogy a G és D fájlok csak a legújabb verziójukat mentik, így hatékonyan megtakarítják a tárhelyet.",
48
+ "Save Every Weights": "Takarítson meg minden súlyt",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Ez a beállítás lehetővé teszi a modell súlyozásának mentését az egyes korszakok végén.",
50
+ "Custom Pretrained": "Egyéni előképzett",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "Az egyéni előre betanított modellek használata kiváló eredményekhez vezethet, mivel az adott használati esetre szabott legmegfelelőbb előre betanított modellek kiválasztása jelentősen javíthatja a teljesítményt.",
52
+ "Upload Pretrained Model": "Előre betanított modell feltöltése",
53
+ "Refresh Custom Pretraineds": "Egyéni előképzetek frissítése",
54
+ "Pretrained Custom Settings": "Előre betanított egyéni beállítások",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "Az eldobott fájl nem érvényes előre betanított fájl. Kérjük, próbálja újra.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Kattintson a frissítés gombra az előre betanított fájl megjelenítéséhez a legördülő menüben.",
57
+ "Pretrained G Path": "Egyéni előképzett G",
58
+ "Pretrained D Path": "Egyéni előképzett D",
59
+ "GPU Settings": "GPU-beállítások",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Speciális GPU-beállításokat állít be, amelyek a jobb GPU-architektúrával rendelkező felhasználók számára ajánlottak.",
61
+ "GPU Custom Settings": "GPU egyéni beállítások",
62
+ "GPU Number": "GPU-szám",
63
+ "0 to ∞ separated by -": "0-tól ∞-ig - választja el",
64
+ "GPU Information": "GPU-információk",
65
+ "Pitch Guidance": "Pitch útmutatás",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "A hangmagasság-útmutatás alkalmazásával megvalósíthatóvá válik az eredeti hang intonációjának tükrözése, beleértve annak hangmagasságát is. Ez a funkció különösen értékes énekléshez és más forgatókönyvekhez, ahol az eredeti dallam vagy hangmagasság minta megőrzése elengedhetetlen.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Használja az előre betanított modelleket a saját betanításakor. Ez a megközelítés csökkenti a képzés időtartamát és javítja az általános minőséget.",
68
+ "Extract Features": "Jellemzők kivonása",
69
+ "Start Training": "Kezdje el az edzést",
70
+ "Generate Index": "Index létrehozása",
71
+ "Voice Model": "Hangmodell",
72
+ "Select the voice model to use for the conversion.": "Válassza ki az átalakításhoz használni kívánt hangmodellt.",
73
+ "Index File": "Index fájl",
74
+ "Select the index file to use for the conversion.": "Válassza ki az átalakításhoz használni kívánt indexfájlt.",
75
+ "Refresh": "Felfrissít",
76
+ "Unload Voice": "Hang eltávolítása",
77
+ "Single": "Nőtlen",
78
+ "Upload Audio": "Hang feltöltése",
79
+ "Select Audio": "Válassza az Audio lehetőséget",
80
+ "Select the audio to convert.": "Válassza ki a konvertálni kívánt hangot.",
81
+ "Advanced Settings": "Speciális beállítások",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Kimenetek törlése (Törli az összes hangot az eszközökből/hangokból)",
83
+ "Custom Output Path": "Egyéni kimeneti útvonal",
84
+ "Output Path": "Kimeneti útvonal",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Az elérési út, ahová a kimeneti hang mentésre kerül, alapértelmezés szerint az eszközökben / hangokban / output.wav",
86
+ "Split Audio": "Osztott hang",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Ossza fel a hangot darabokra a következtetéshez, hogy bizonyos esetekben jobb eredményeket érjen el.",
88
+ "Autotune": "Automatikus hangolás",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Alkalmazzon lágy automatikus hangolást a következtetésekre, ami az énekkonverziókhoz ajánlott.",
90
+ "Clean Audio": "Tiszta hangzás",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Tisztítsa meg a hangkimenetet zajérzékelő algoritmusokkal, amelyek a hangok beszédéhez ajánlottak.",
92
+ "Clean Strength": "Tiszta szilárdság",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Állítsa be a tisztítási szintet a kívánt hangra, minél jobban növeli, annál jobban megtisztítja, de lehetséges, hogy a hang tömörítettebb lesz.",
94
+ "Pitch": "Hangmagasság",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Állítsa be a hang hangmagasságát, minél magasabb az érték, annál magasabb a hangmagasság.",
96
+ "Filter Radius": "Szűrési sugár",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Ha a szám nagyobb vagy egyenlő hárommal, az összegyűjtött tónuseredmények medián szűrésének alkalmazása csökkentheti a légzést.",
98
+ "Search Feature Ratio": "Keresési funkciók aránya",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Az indexfájl által gyakorolt hatás; A magasabb érték nagyobb befolyásnak felel meg. Az alacsonyabb értékek választása azonban segíthet enyhíteni a hangban jelen lévő műtermékeket.",
100
+ "Volume Envelope": "Térfogat boríték",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Helyettesítse vagy keverje össze a kimenet térfogatburkológörbéjét. Minél közelebb van az arány az 1-hez, annál nagyobb a kimeneti burkológörbe.",
102
+ "Protect Voiceless Consonants": "Zöngétlen mássalhangzók védelme",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Védje a különálló mássalhangzókat és légzési hangokat, hogy megakadályozza az elektroakusztikus szakadást és más műtermékeket. A paraméter maximális 0,5-ös értékre való lekérése átfogó védelmet nyújt. Ennek az értéknek a csökkentése azonban csökkentheti a védelem mértékét, miközben potenciálisan enyhítheti az indexelési hatást.",
104
+ "Pitch extraction algorithm": "Pitch extrakciós algoritmus",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Hangmagasság-kinyerési algoritmus az audio konvertáláshoz. Az alapértelmezett algoritmus az rmvpe, amely a legtöbb esetben ajánlott.",
106
+ "Convert": "Megtérít",
107
+ "Export Audio": "Hang exportálása",
108
+ "Batch": "Halom",
109
+ "Input Folder": "Bemeneti mappa",
110
+ "Select the folder containing the audios to convert.": "Válassza ki a konvertálni kívánt hangokat tartalmazó mappát.",
111
+ "Enter input path": "Adja meg a bemeneti útvonalat",
112
+ "Output Folder": "Kimeneti mappa",
113
+ "Select the folder where the output audios will be saved.": "Válassza ki azt a mappát, ahová a kimeneti hangokat menteni kívánja.",
114
+ "Enter output path": "Adja meg a kimeneti útvonalat",
115
+ "Get information about the audio": "Információk lekérése a hangról",
116
+ "Information about the audio file": "Információ a hangfájlról",
117
+ "Waiting for information...": "Információra várva...",
118
+ "## Voice Blender": "## Hangos turmixgép",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Válasszon ki két hangmodellt, állítsa be a kívánt keverési százalékot, és keverje össze őket egy teljesen új hangszínbe.",
120
+ "Voice Blender": "Hangos turmixgép",
121
+ "Drag and drop your model here": "Húzza ide a modellt",
122
+ "You can also use a custom path.": "Egyéni elérési utat is használhat.",
123
+ "Blend Ratio": "Keverési arány",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Ha a pozíciót jobban az egyik vagy a másik oldalra állítja, a modell jobban hasonlít az elsőhöz vagy a másodikhoz.",
125
+ "Fusion": "Fúzió",
126
+ "Path to Model": "A modell elérési útja",
127
+ "Enter path to model": "Adja meg a modell elérési útját",
128
+ "Model information to be placed": "Az elhelyezendő modellinformációk",
129
+ "Inroduce the model information": "A modellinformációk bemutatása",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "A modellben elhelyezendő információk (üresen hagyhatja, vagy bármit betehet).",
131
+ "View model information": "Modellinformációk megtekintése",
132
+ "Introduce the model pth path": "A modell pth elérési útjának bemutatása",
133
+ "View": "Nézet",
134
+ "Model extraction": "Modell kinyerése",
135
+ "Model conversion": "Modell átalakítás",
136
+ "Pth file": "Pth fájl",
137
+ "Output of the pth file": "A pth fájl kimenete",
138
+ "# How to Report an Issue on GitHub": "# Hogyan jelenthet problémát a GitHubon",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Kattintson az alábbi \"Felvétel képernyő\" gombra a tapasztalt probléma rögzítésének megkezdéséhez.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Miután befejezte a probléma rögzítését, kattintson a \"Felvétel leállítása\" gombra (ugyanaz a gomb, de a címke attól függően változik, hogy aktívan rögzít-e vagy sem).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Lépjen a [GitHub-problémák](https://github.com/IAHispano/Applio/issues) oldalra, és kattintson az \"Új probléma\" gombra.",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Töltse ki a megadott problémasablont, ügyelve arra, hogy szükség szerint tartalmazza a részleteket, és használja az eszközök szakaszt az előző lépésből rögzített fájl feltöltéséhez.",
143
+ "Record Screen": "Felvétel képernyő",
144
+ "Record": "Rekord",
145
+ "Stop Recording": "Felvétel leállítása",
146
+ "Introduce the model .pth path": "A modell .pth elérési útjának bemutatása",
147
+ "See Model Information": "Modellinformációk megtekintése",
148
+ "## Download Model": "## Modell letöltése",
149
+ "Model Link": "Modell link",
150
+ "Introduce the model link": "A modellhivatkozás bemutatása",
151
+ "Download Model": "Modell letöltése",
152
+ "## Drop files": "## Dobja el a fájlokat",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Húzza a .pth és .index fájlt erre a helyre. Húzza az egyiket, majd a másikat.",
154
+ "TTS Voices": "TTS-hangok",
155
+ "Select the TTS voice to use for the conversion.": "Válassza ki az átalakításhoz használni kívánt TTS-hangot.",
156
+ "Text to Synthesize": "Szintetizálandó szöveg",
157
+ "Enter the text to synthesize.": "Írja be a szintetizálni kívánt szöveget.",
158
+ "Or you can upload a .txt file": "Vagy feltölthet egy .txt fájlt",
159
+ "Enter text to synthesize": "Írja be a szintetizálni kívánt szöveget",
160
+ "Output Path for TTS Audio": "A TTS Audio kimeneti útvonala",
161
+ "Output Path for RVC Audio": "Az RVC Audio kimeneti útvonala",
162
+ "Enable Applio integration with Discord presence": "Engedélyezze az Applio integrációját a Discord jelenléttel",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Aktiválja az aktuális Applio tevékenység megjelenítésének lehetőségét a Discordban.",
164
+ "Enable Applio integration with applio.org/models using flask": "Az Applio és a applio.org/models integrációjának engedélyezése lombik használatával",
165
+ "It will activate the possibility of downloading models with a click from the website.": "Aktiválja a modellek letöltésének lehetőségét egy kattintással a weboldalról.",
166
+ "Theme": "Téma",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "Válassza ki a használni kívánt témát. (Az Applio újraindítását igényli)",
168
+ "Language": "Nyelv",
169
+ "Select the language you want to use. (Requires restarting Applio)": "Válassza ki a használni kívánt nyelvet. (Az Applio újraindítását igényli)",
170
+ "Plugin Installer": "Bővítmény telepítő",
171
+ "Drag your plugin.zip to install it": "Húzza a plugin.zip a telepítéshez",
172
+ "Version Checker": "Verzióellenőrző",
173
+ "Check which version of Applio is the latest to see if you need to update.": "Ellenőrizze, hogy az Applio melyik verziója a legújabb, hogy lássa, frissítenie kell-e.",
174
+ "Check for updates": "Frissítések keresése"
175
+ }
assets/i18n/languages/id_ID.json ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Alat kloning suara terbaik, dioptimalkan secara cermat untuk kekuatan tak tertandingi, modularitas, dan pengalaman ramah pengguna.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Bagian ini berisi beberapa utilitas tambahan yang mungkin sering berada dalam tahap percobaan.",
4
+ "Output Information": "informasi keluaran",
5
+
6
+ "Inference": "Inference",
7
+ "Train": "training model",
8
+ "Extra": "bonus",
9
+ "Merge Audios": "Gabungkan Audio",
10
+ "Processing": "Pengolahan",
11
+ "Audio Analyzer": "Penganalisis Audio",
12
+ "Model Information": "informasi",
13
+ "Plugins": "Plugin",
14
+ "Download": "Unduh",
15
+ "Report a Bug": "Laporkan Bug",
16
+ "Settings": "Pengaturan",
17
+
18
+ "Preprocess": "Proses awal",
19
+ "Model Name": "Nama model",
20
+ "Enter model name": "masukkan nama model",
21
+ "Dataset Path": "Jalur Kumpulan Data",
22
+ "Dataset Creator": "Pembuat Kumpulan Data/dataset",
23
+ "Dataset Name": "Nama kumpulan data",
24
+ "Enter dataset name": "Masukkan nama kumpulan data",
25
+ "Upload Audio Dataset": "Unggah audio kumpulan data",
26
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Berkas audio telah berhasil ditambahkan ke dataset. Silakan klik tombol praproses.",
27
+ "Enter dataset path": "Masukkan jalur kumpulan data",
28
+ "Sampling Rate": "Tingkat Pengambilan Sampel",
29
+ "RVC Version": "Versi RVC",
30
+ "Preprocess Dataset": "Kumpulan Data Praproses",
31
+
32
+ "Extract": "Ekstrak",
33
+ "Hop Length": "Panjang Lompatan",
34
+ "Batch Size": "Ukuran Batch",
35
+ "Save Every Epoch": "Simpan Setiap Epoch",
36
+ "Total Epoch": "Total Epoch",
37
+ "Pretrained": "Terlatih sebelumnya",
38
+ "Save Only Latest": "Simpan Hanya Yang Terbaru",
39
+ "Save Every Weights": "Simpan Setiap Weights/beban",
40
+ "Custom Pretrained": "Terlatih Khusus",
41
+ "Upload Pretrained Model": "Unggah Model yang Telah Dilatih sebelumnya",
42
+ "Pretrained Custom Settings": "Pengaturan Kustom yang Telah Dilatih Sebelumnya",
43
+ "The file you dropped is not a valid pretrained file. Please try again.": "File yang Anda jatuhkan bukan file terlatih yang valid. Silakan coba lagi.",
44
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Klik tombol segarkan untuk melihat file yang telah dilatih sebelumnya di menu tarik-turun.",
45
+ "Pretrained G Path": "Terlatih Khusus G",
46
+ "Pretrained D Path": "Terlatih Khusus D",
47
+ "GPU Settings": "Penggaturan GPU",
48
+ "GPU Custom Settings": "Penggaturan GPU khusus",
49
+ "GPU Number": "Angka GPU",
50
+ "0 to ∞ separated by -": "0 to ∞ dipisahkan oleh -",
51
+ "GPU Information": "Informasi GPU",
52
+ "Pitch Guidance": "Panduan Lapangan/pitch",
53
+ "Extract Features": "Ekstrak Fitur",
54
+
55
+ "Start Training": "mulai Training",
56
+ "Generate Index": "Menghasilkan Index",
57
+
58
+ "Voice Model": "Model Suara",
59
+ "Index File": "Berkas Indeks",
60
+ "Refresh": "Muat ulang",
61
+ "Unload Voice": "Bongkar Suara",
62
+
63
+ "Single": "Sendiri",
64
+ "Upload Audio": "Ungah Audio",
65
+ "Select Audio": "Pilh Audio",
66
+ "Advanced Settings": "Pengaturan lanjutan",
67
+ "Clear Outputs (Deletes all audios in assets/audios)": "Hapus Output (Menghapus semua audio di assets/audio)",
68
+ "Custom Output Path": "Kustom Jalur keluaran",
69
+ "Output Path": "Jalur keluaran",
70
+ "Split Audio": "pisah audio",
71
+ "Autotune": "Autotune",
72
+ "Pitch": "Nada",
73
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "If >=3: terapkan pemfilteran median pada hasil pitch yang dipanen. Nilai tersebut mewakili radius filter dan dapat mengurangi sesak napas",
74
+ "Search Feature Ratio": "Rasio Fitur Pencarian",
75
+ "Pitch extraction algorithm": "Algoritma ekstraksi nada",
76
+ "Convert": "Convert",
77
+ "Export Audio": "Export Audio",
78
+
79
+ "Batch": "Batch",
80
+ "Input Folder": "Input berkas",
81
+ "Enter input path": "Masukkan jalur masukan",
82
+ "Output Folder": "Folder Keluaran",
83
+ "Enter output path": "Masukkan jalur keluaran",
84
+
85
+ "Get information about the audio": "Dapatkan informasi tentang audio",
86
+ "Information about the audio file": "Informasi tentang file audio",
87
+ "Waiting for information...": "Menunggu informasi...",
88
+
89
+ "Model fusion": "Penggabungan model",
90
+ "Weight for Model A": "Weight untuk model A",
91
+ "Whether the model has pitch guidance": "Apakah model memiliki panduan nada",
92
+ "Model architecture version": "Versi arsitektur model",
93
+ "Path to Model A": "Jalan Menuju Model A",
94
+ "Path to Model B": "Jalan Menuju Model B",
95
+ "Path to model": "Jalan Menuju Model",
96
+ "Model information to be placed": "Informasi model yang akan ditempatkan",
97
+ "Fusion": "Fusi",
98
+
99
+ "Modify model information": "Ubah informasi model",
100
+ "Path to Model": "Jalan Menuju Model",
101
+ "Model information to be modified": "Informasi model yang akan dimodifikasi",
102
+ "Save file name": "Simpan nama file",
103
+ "Modify": "Ubah",
104
+
105
+ "View model information": "tampilkan informasi model",
106
+ "View": "tampilakan",
107
+ "Model extraction": "Ekstraksi model",
108
+ "Model conversion": "Konversi model",
109
+ "Pth file": "file Pth",
110
+ "Output of the pth file": "Keluaran dari file pth",
111
+
112
+ "# How to Report an Issue on GitHub": "# Cara Melaporkan Masalah di GitHub",
113
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Klik tombol 'Rekam Layar' di bawah untuk mulai merekam masalah yang Anda alami.",
114
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).",
115
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. pergi ke [GitHub Issues](https://github.com/IAHispano/Applio/issues) dan klik tombol 'Masalah Baru'.",
116
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Lengkapi templat masalah yang disediakan, pastikan untuk menyertakan detail sesuai kebutuhan, dan manfaatkan bagian aset untuk mengunggah file rekaman dari langkah sebelumnya.",
117
+
118
+ "Record Screen": "Rekam layar",
119
+ "Record": "Rekam",
120
+ "Stop Recording": "Berhenti merekam",
121
+
122
+ "Introduce the model .pth path": "Perkenalkan jalur model .pth",
123
+ "See Model Information": "Lihat informasi model",
124
+
125
+ "## Download Model": "## Unduh Model",
126
+ "Model Link": "Tautan model",
127
+ "Introduce the model link": "Perkenalkan tautan model",
128
+ "Download Model": "Unduh Model",
129
+ "## Drop files": "## masukkan file ",
130
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Seret file .pth dan file .index ke dalam ruang ini. Seret yang pertama, lalu yang lainnya.",
131
+
132
+ "TTS Voices": "suara TTS",
133
+ "Text to Synthesize": "Text ke disintesis",
134
+ "Or you can upload a .txt file": "Atau Anda dapat mengunggah file .txt",
135
+ "Enter text to synthesize": "Masukkan teks untuk disintesis",
136
+ "Output Path for TTS Audio": "Jalur Keluaran untuk Audio TTS",
137
+ "Output Path for RVC Audio": "Jalur Keluaran untuk Audio RVC",
138
+
139
+ "Enable Applio integration with Discord presence": "Aktifkan integrasi Applio dengan kehadiran Discord",
140
+ "Enable Applio integration with applio.org/models using flask": "Aktifkan integrasi Applio dengan applio.org/models menggunakan flask",
141
+ "Theme": "Tema (Diperlukan mulai ulang)",
142
+
143
+ "Plugin Installer": "Penginstal Plugin",
144
+ "Drag your plugin.zip to install it": "Seret plugin.zip Anda untuk menginstalnya",
145
+
146
+ "Version Checker": "Pemeriksa versi",
147
+ "Check for updates": "Periksa pembaruan"
148
+ }
assets/i18n/languages/it_IT.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Strumento di clonazione vocale definitivo, meticolosamente ottimizzato per potenza, modularità ed esperienza utente senza rivali.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Questa sezione contiene alcune utilità aggiuntive che spesso possono essere in fase sperimentale.",
4
+ "Output Information": "Informazioni sull'output",
5
+ "The output information will be displayed here.": "Qui verranno visualizzate le informazioni sull'output.",
6
+ "Inference": "Inferenza",
7
+ "Train": "Addestramento",
8
+ "Extra": "Extra",
9
+ "Merge Audios": "Unisci audio",
10
+ "Processing": "Elaborazione",
11
+ "Audio Analyzer": "Analizzatore audio",
12
+ "Model Information": "Informazioni sul modello",
13
+ "Plugins": "Plugin",
14
+ "Download": "Scarica",
15
+ "Report a Bug": "Segnala un bug",
16
+ "Settings": "Impostazioni",
17
+ "Preprocess": "Pre-elaborazione",
18
+ "Model Name": "Nome del modello",
19
+ "Name of the new model.": "Nome del nuovo modello.",
20
+ "Enter model name": "Inserisci il nome del modello",
21
+ "Dataset Path": "Percorso del dataset",
22
+ "Path to the dataset folder.": "Percorso della cartella del dataset.",
23
+ "Refresh Datasets": "Aggiorna dataset",
24
+ "Dataset Creator": "Creatore di dataset",
25
+ "Dataset Name": "Nome del dataset",
26
+ "Name of the new dataset.": "Nome del nuovo dataset.",
27
+ "Enter dataset name": "Inserisci il nome del dataset",
28
+ "Upload Audio Dataset": "Carica dataset audio",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Il file audio è stato aggiunto correttamente al dataset. Fare clic sul pulsante di pre-elaborazione.",
30
+ "Enter dataset path": "Inserisci il percorso del dataset",
31
+ "Sampling Rate": "Frequenza di campionamento",
32
+ "The sampling rate of the audio files.": "La frequenza di campionamento dei file audio.",
33
+ "RVC Version": "Versione RVC",
34
+ "The RVC version of the model.": "La versione RVC del modello.",
35
+ "Preprocess Dataset": "Pre-elabora dataset",
36
+ "Extract": "Estrai",
37
+ "Hop Length": "Lunghezza del salto",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Indica il tempo necessario affinché il sistema passi a un cambiamento di intonazione significativo. Lunghezze di salto più piccole richiedono più tempo per l'inferenza, ma tendono a produrre una maggiore precisione dell'intonazione.",
39
+ "Batch Size": "Dimensione del batch",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Si consiglia di allinearlo con la VRAM disponibile della GPU. Un'impostazione di 4 offre una maggiore precisione ma un'elaborazione più lenta, mentre 8 fornisce risultati più rapidi e standard.",
41
+ "Save Every Epoch": "Salva ogni epoca",
42
+ "Determine at how many epochs the model will saved at.": "Determina dopo quante epoche il modello verrà salvato.",
43
+ "Total Epoch": "Epoche totali",
44
+ "Specifies the overall quantity of epochs for the model training process.": "Specifica la quantità complessiva di epoche per il processo di addestramento del modello.",
45
+ "Pretrained": "Pre-addestrato",
46
+ "Save Only Latest": "Salva solo l'ultima versione",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Abilitando questa impostazione, i file G e D salveranno solo le versioni più recenti, risparmiando spazio di archiviazione.",
48
+ "Save Every Weights": "Salva tutti i pesi",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Questa impostazione consente di salvare i pesi del modello alla fine di ogni epoca.",
50
+ "Custom Pretrained": "Pre-addestrato personalizzato",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "L'utilizzo di modelli pre-addestrati personalizzati può portare a risultati superiori, poiché la selezione dei modelli pre-addestrati più adatti al caso d'uso specifico può migliorare significativamente le prestazioni.",
52
+ "Upload Pretrained Model": "Carica modello pre-addestrato",
53
+ "Refresh Custom Pretraineds": "Aggiorna pre-addestrati personalizzati",
54
+ "Pretrained Custom Settings": "Impostazioni personalizzate pre-addestrate",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "Il file caricato non è un file pre-addestrato valido. Si prega di riprovare.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Fare clic sul pulsante Aggiorna per visualizzare il file pre-addestrato nel menu a tendina.",
57
+ "Pretrained G Path": "Percorso G pre-addestrato personalizzato",
58
+ "Pretrained D Path": "Percorso D pre-addestrato personalizzato",
59
+ "GPU Settings": "Impostazioni GPU",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Imposta le impostazioni avanzate della GPU, consigliate per gli utenti con una migliore architettura GPU.",
61
+ "GPU Custom Settings": "Impostazioni personalizzate GPU",
62
+ "GPU Number": "Numero GPU",
63
+ "0 to ∞ separated by -": "Da 0 a ∞ separati da -",
64
+ "GPU Information": "Informazioni sulla GPU",
65
+ "Pitch Guidance": "Guida all'intonazione",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Utilizzando la guida all'intonazione, diventa possibile rispecchiare l'intonazione della voce originale, compresa la sua altezza. Questa funzione è particolarmente utile per il canto e altri scenari in cui è essenziale preservare la melodia o il modello di intonazione originale.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Utilizza modelli pre-addestrati quando addestri i tuoi. Questo approccio riduce la durata dell'addestramento e migliora la qualità complessiva.",
68
+ "Extract Features": "Estrai caratteristiche",
69
+ "Start Training": "Inizia l'addestramento",
70
+ "Generate Index": "Genera indice",
71
+ "Voice Model": "Modello vocale",
72
+ "Select the voice model to use for the conversion.": "Seleziona il modello vocale da utilizzare per la conversione.",
73
+ "Index File": "File indice",
74
+ "Select the index file to use for the conversion.": "Seleziona il file indice da utilizzare per la conversione.",
75
+ "Refresh": "Aggiorna",
76
+ "Unload Voice": "Scarica voce",
77
+ "Single": "Singolo",
78
+ "Upload Audio": "Carica audio",
79
+ "Select Audio": "Seleziona audio",
80
+ "Select the audio to convert.": "Seleziona l'audio da convertire.",
81
+ "Advanced Settings": "Impostazioni avanzate",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Cancella output (elimina tutti gli audio in assets/audios)",
83
+ "Custom Output Path": "Percorso di output personalizzato",
84
+ "Output Path": "Percorso di output",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Il percorso in cui verrà salvato l'audio di output, per impostazione predefinita in assets/audios/output.wav",
86
+ "Split Audio": "Dividi audio",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Dividi l'audio in blocchi per l'inferenza per ottenere risultati migliori in alcuni casi.",
88
+ "Autotune": "Autotune",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Applica un soft autotune alle tue inferenze, consigliato per le conversioni di canto.",
90
+ "Clean Audio": "Pulisci audio",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Pulisci l'output audio utilizzando algoritmi di rilevamento del rumore, consigliato per gli audio parlati.",
92
+ "Clean Strength": "Intensità di pulizia",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Imposta il livello di pulizia dell'audio desiderato, più lo aumenti più si pulirà, ma è possibile che l'audio risulti più compresso.",
94
+ "Pitch": "Intonazione",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Imposta l'intonazione dell'audio, più alto è il valore, più alta sarà l'intonazione.",
96
+ "Filter Radius": "Raggio del filtro",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Se il numero è maggiore o uguale a tre, l'impiego del filtraggio mediano sui risultati del tono raccolto ha il potenziale per ridurre la respirazione.",
98
+ "Search Feature Ratio": "Rapporto di ricerca delle caratteristiche",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Influenza esercitata dal file indice; un valore più alto corrisponde a una maggiore influenza. Tuttavia, optare per valori più bassi può aiutare a mitigare gli artefatti presenti nell'audio.",
100
+ "Volume Envelope": "Inviluppo del volume",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Sostituisci o miscela con l'inviluppo del volume dell'output. Più il rapporto è vicino a 1, più viene impiegato l'inviluppo di uscita.",
102
+ "Protect Voiceless Consonants": "Proteggi consonanti sorde",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Salvaguarda le consonanti distinte e i suoni respiratori per prevenire distorsioni elettroacustiche e altri artefatti. Portando il parametro al valore massimo di 0,5 si ottiene una protezione completa. Tuttavia, la riduzione di questo valore potrebbe diminuire l'estensione della protezione, riducendo al contempo l'effetto di indicizzazione.",
104
+ "Pitch extraction algorithm": "Algoritmo di estrazione dell'intonazione",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Algoritmo di estrazione dell'intonazione da utilizzare per la conversione audio. L'algoritmo predefinito è rmvpe, consigliato per la maggior parte dei casi.",
106
+ "Convert": "Converti",
107
+ "Export Audio": "Esporta audio",
108
+ "Batch": "Batch",
109
+ "Input Folder": "Cartella di input",
110
+ "Select the folder containing the audios to convert.": "Seleziona la cartella contenente gli audio da convertire.",
111
+ "Enter input path": "Inserisci il percorso di input",
112
+ "Output Folder": "Cartella di output",
113
+ "Select the folder where the output audios will be saved.": "Seleziona la cartella in cui verranno salvati gli audio di output.",
114
+ "Enter output path": "Inserisci il percorso di output",
115
+ "Get information about the audio": "Ottieni informazioni sull'audio",
116
+ "Information about the audio file": "Informazioni sul file audio",
117
+ "Waiting for information...": "In attesa di informazioni...",
118
+ "## Voice Blender": "## Miscelatore vocale",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Seleziona due modelli vocali, imposta la percentuale di fusione desiderata e uniscili in una voce completamente nuova.",
120
+ "Voice Blender": "Miscelatore vocale",
121
+ "Drag and drop your model here": "Trascina e rilascia qui il tuo modello",
122
+ "You can also use a custom path.": "Puoi anche utilizzare un percorso personalizzato.",
123
+ "Blend Ratio": "Rapporto di miscelazione",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Regolando la posizione più verso un lato o l'altro si renderà il modello più simile al primo o al secondo.",
125
+ "Fusion": "Fusione",
126
+ "Path to Model": "Percorso del modello",
127
+ "Enter path to model": "Inserisci il percorso del modello",
128
+ "Model information to be placed": "Informazioni sul modello da inserire",
129
+ "Inroduce the model information": "Introduci le informazioni sul modello",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "Le informazioni da inserire nel modello (puoi lasciarle vuote o inserire qualsiasi cosa).",
131
+ "View model information": "Visualizza le informazioni sul modello",
132
+ "Introduce the model pth path": "Introduci il percorso pth del modello",
133
+ "View": "Visualizza",
134
+ "Model extraction": "Estrazione del modello",
135
+ "Model conversion": "Conversione del modello",
136
+ "Pth file": "File Pth",
137
+ "Output of the pth file": "Output del file pth",
138
+ "# How to Report an Issue on GitHub": "# Come segnalare un problema su GitHub",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Fare clic sul pulsante \"Registra schermo\" in basso per avviare la registrazione del problema riscontrato.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Una volta terminata la registrazione del problema, fai clic sul pulsante \"Interrompi registrazione\" (lo stesso pulsante, ma l'etichetta cambia a seconda che tu stia registrando attivamente o meno).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Vai su [GitHub Issues](https://github.com/IAHispano/Applio/issues) e fai clic sul pulsante \"Nuovo problema\".",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Completa il modello di problema fornito, assicurandoti di includere i dettagli necessari e utilizza la sezione delle risorse per caricare il file registrato dal passaggio precedente.",
143
+ "Record Screen": "Registra schermo",
144
+ "Record": "Registrazione",
145
+ "Stop Recording": "Interrompi registrazione",
146
+ "Introduce the model .pth path": "Inserisci il percorso .pth del modello",
147
+ "See Model Information": "Controlla le informazioni sul modello",
148
+ "## Download Model": "## Scarica il modello",
149
+ "Model Link": "Link al modello",
150
+ "Introduce the model link": "Inserisci il collegamento al modello",
151
+ "Download Model": "Scarica il modello",
152
+ "## Drop files": "## Trascina i file",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Trascina il file .pth e il file .index in questo spazio. Trascina uno e poi l'altro.",
154
+ "TTS Voices": "Voci TTS",
155
+ "Select the TTS voice to use for the conversion.": "Selezionare la voce TTS da utilizzare per la conversione.",
156
+ "Text to Synthesize": "Testo da sintetizzare",
157
+ "Enter the text to synthesize.": "Immettere il testo da sintetizzare.",
158
+ "Or you can upload a .txt file": "In alternativa, è possibile caricare un file .txt",
159
+ "Enter text to synthesize": "Immettere il testo da sintetizzare",
160
+ "Output Path for TTS Audio": "Percorso di uscita per l'audio TTS",
161
+ "Output Path for RVC Audio": "Percorso di uscita per l'audio RVC",
162
+ "Enable Applio integration with Discord presence": "Abilita l'integrazione di Applio con la presenza di Discord",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Attiverà la possibilità di visualizzare l'attuale attività di Applio in Discord.",
164
+ "Enable Applio integration with applio.org/models using flask": "Abilita l'integrazione di Applio con applio.org/models utilizzando il pallone",
165
+ "It will activate the possibility of downloading models with a click from the website.": "Attiverà la possibilità di scaricare i modelli con un click dal sito web.",
166
+ "Theme": "Tema",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "Selezionare il tema che si desidera utilizzare. (Richiede il riavvio di Applio)",
168
+ "Language": "Lingua",
169
+ "Select the language you want to use. (Requires restarting Applio)": "Selezionare la lingua che si desidera utilizzare. (Richiede il riavvio di Applio)",
170
+ "Plugin Installer": "Programma di installazione del plug-in",
171
+ "Drag your plugin.zip to install it": "Trascina il plugin.zip per installarlo",
172
+ "Version Checker": "Controllo della versione",
173
+ "Check which version of Applio is the latest to see if you need to update.": "Controlla quale versione di Applio è l'ultima per vedere se è necessario eseguire l'aggiornamento.",
174
+ "Check for updates": "Controlla gli aggiornamenti"
175
+ }
assets/i18n/languages/ja_JA.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "他の追随を許さないパワー、モジュール性、そしてユーザーフレンドリーな操作性を実現するために綿密に最適化された究極のボイスクローニングツール。",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "このセクションには、多くの場合、実験段階にある可能性のあるいくつかの追加のユーティリティが含まれています。",
4
+ "Output Information": "出力情報",
5
+ "The output information will be displayed here.": "出力情報がここに表示されます。",
6
+ "Inference": "推論",
7
+ "Train": "学習",
8
+ "Extra": "おまけ",
9
+ "Merge Audios": "オーディオをマージ (Merge Audios)",
10
+ "Processing": "加工",
11
+ "Audio Analyzer": "オーディオアナライザ",
12
+ "Model Information": "モデル情報",
13
+ "Plugins": "プラグイン",
14
+ "Download": "ダウンロード",
15
+ "Report a Bug": "バグを報告する",
16
+ "Settings": "設定",
17
+ "Preprocess": "前処理",
18
+ "Model Name": "モデル名",
19
+ "Name of the new model.": "新しいモデルの名前。",
20
+ "Enter model name": "モデル名を入力",
21
+ "Dataset Path": "データセット パス",
22
+ "Path to the dataset folder.": "データセット フォルダーへのパス。",
23
+ "Refresh Datasets": "データセットの更新",
24
+ "Dataset Creator": "データセットクリエーター",
25
+ "Dataset Name": "データセット名",
26
+ "Name of the new dataset.": "新しいデータセットの名前。",
27
+ "Enter dataset name": "データセット名を入力",
28
+ "Upload Audio Dataset": "オーディオデータセットのアップロード",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "オーディオ ファイルがデータセットに正常に追加されました。前処理ボタンをクリックしてください。",
30
+ "Enter dataset path": "データセットのパスを入力",
31
+ "Sampling Rate": "サンプリングレート",
32
+ "The sampling rate of the audio files.": "オーディオファイルのサンプリングレートです。",
33
+ "RVC Version": "RVC バージョン",
34
+ "The RVC version of the model.": "モデルの RVC バージョン。",
35
+ "Preprocess Dataset": "データセットの前処理",
36
+ "Extract": "抽出",
37
+ "Hop Length": "ホップ長(Hop Length)",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "システムがピッチを大きく変化させるまでの時間を示します。ホップ長が短いほど、推論に時間がかかりますが、ピッチの精度は高くなる傾向があります。",
39
+ "Batch Size": "バッチサイズ",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "GPUの使用可能なVRAMに合わせることをお勧めします。4 に設定すると精度は向上しますが処理は遅くなり、8 に設定すると、より高速で標準的な結果が得られます。",
41
+ "Save Every Epoch": "すべてのエポックを保存",
42
+ "Determine at how many epochs the model will saved at.": "モデルが何エポックごとに保存されるかを指定します。",
43
+ "Total Epoch": "総エポック",
44
+ "Specifies the overall quantity of epochs for the model training process.": "総エポック数を指定します。",
45
+ "Pretrained": "事前学習済みモデル",
46
+ "Save Only Latest": "最新のみ保存",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "この設定を有効にすると、GとDファイルの最新バージョンのみを保存し、ストレージ容量を効果的に節約します。",
48
+ "Save Every Weights": "すべてのウェイトを保存(Save Every Weights)",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "この設定により、各エポックの終了時にモデルの重みを保存できます。",
50
+ "Custom Pretrained": "カスタム事前学習済みモデル",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "カスタム事前学習済みモデルを利用することで、優れた結果を得ることができます。特定のユースケースに合わせて最も適した事前学習済みモデルを選択することで、パフォーマンスが大幅に向上する可能性があります。",
52
+ "Upload Pretrained Model": "事前学習済みモデルのアップロード",
53
+ "Refresh Custom Pretraineds": "カスタム事前学習済みモデルの更新",
54
+ "Pretrained Custom Settings": "事前学習済みモデルのカスタム設定",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "ドロップしたファイルは有効な事前学習済みモデルファイルではありません。もう一度やり直してください。",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "更新ボタンをクリックすると、ドロップダウンメニューに事前学習済みモデルが表示されます。",
57
+ "Pretrained G Path": "カスタム事前学習済みモデル G",
58
+ "Pretrained D Path": "カスタム事前学習済みモデル D",
59
+ "GPU Settings": "GPU 設定",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "GPUアーキテクチャが優れているユーザーに推奨される、高度なGPU設定を設定します。",
61
+ "GPU Custom Settings": "GPU カスタム設定",
62
+ "GPU Number": "GPU番号",
63
+ "0 to ∞ separated by -": "範囲は0 から ∞ で、-で区切られます。",
64
+ "GPU Information": "GPU 情報",
65
+ "Pitch Guidance": "ピッチガイダンス",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "ピッチガイダンスを採用することで、ピッチを含め、元の声のイントネーションを反映させることが可能になります。この機能は、歌唱など、オリジナルのメロディーやピッチパターンを保持することが不可欠な場面で特に有用です。",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "独自のトレーニングを行う場合は、事前学習済みモデルを利用します。このアプローチにより、学習時間が短縮され、全体的な品質が向上します。",
68
+ "Extract Features": "特徴量の抽出",
69
+ "Start Training": "トレーニングを開始",
70
+ "Generate Index": "インデックスの生成",
71
+ "Voice Model": "音声モデル",
72
+ "Select the voice model to use for the conversion.": "変換に使用する音声モデルを選択します。",
73
+ "Index File": "インデックス ファイル",
74
+ "Select the index file to use for the conversion.": "変換に使用するインデックスファイルを選択します。",
75
+ "Refresh": "リフレッシュ",
76
+ "Unload Voice": "モデルのアンロード",
77
+ "Single": "シングル",
78
+ "Upload Audio": "オーディオのアップロード",
79
+ "Select Audio": "オーディオを選択",
80
+ "Select the audio to convert.": "変換するオーディオを選択します。",
81
+ "Advanced Settings": "詳細設定",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Clear Outputs (アセット/オーディオ内のすべてのオーディオを削除します)",
83
+ "Custom Output Path": "カスタム出力パス",
84
+ "Output Path": "出力パス",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "出力オーディオが保存されるパス (デフォルトでは assets/audios/output.wav",
86
+ "Split Audio": "オーディオの分割",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "音声をチャンクに分割して推論すると、より良い結果が得られる場合があります。",
88
+ "Autotune": "オートチューン",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "推論にソフトオートチューンを適用します。歌の変換に推奨されます。",
90
+ "Clean Audio": "クリーンオーディオ",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "音声を話すのに推奨されるノイズ検出アルゴリズムを使用して、音声出力をクリーンアップします。",
92
+ "Clean Strength": "クリーンな強さ",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "クリーンアップレベルを必要なオーディオに設定すると、上げれば上げるほどクリーンアップされますが、オーディオがより圧縮される可能性があります。",
94
+ "Pitch": "ピッチ",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "オーディオのピッチを設定し、値が大きいほどピッチが高くなります。",
96
+ "Filter Radius": "フィルタ半径(Filter Radius)",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "数値が 3 以上の場合、収集されたトーン結果に中央値フィルタリングを使用すると、呼吸が減少する可能性があり��す。",
98
+ "Search Feature Ratio": "特徴量検索比率",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "インデックスファイルによって及ぼされる影響。値が大きいほど、インデックスの影響が大きくなります。ただし、低い値を選択すると、オーディオに存在するアーティファクトを軽減できます。",
100
+ "Volume Envelope": "ボリュームエンベロープ",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "出力のボリュームエンベロープで代用またはブレンドします。比率が 1 に近づくほど、出力エンベロープが採用されます。",
102
+ "Protect Voiceless Consonants": "無声子音の保護",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "明瞭な子音と呼吸音を保護し、電気音響の引き裂きやその他のアーチファクトを防ぎます。パラメータを最大値の 0.5 までプルすると、包括的な保護が提供されます。ただし、この値を小さくすると、インデックス作成の影響が軽減される可能性がある一方で、保護の範囲が狭くなる可能性があります。",
104
+ "Pitch extraction algorithm": "ピッチ抽出アルゴリズム",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "オーディオ変換に使用するピッチ抽出アルゴリズム。デフォルトのアルゴリズムは rmvpe で、ほとんどの場合に推奨されます。",
106
+ "Convert": "コンバート",
107
+ "Export Audio": "オーディオのエクスポート",
108
+ "Batch": "バッチ",
109
+ "Input Folder": "入力フォルダ",
110
+ "Select the folder containing the audios to convert.": "変換するオーディオを含むフォルダを選択します。",
111
+ "Enter input path": "入力パスを入力",
112
+ "Output Folder": "出力フォルダ",
113
+ "Select the folder where the output audios will be saved.": "出力オーディオを保存するフォルダを選択します。",
114
+ "Enter output path": "出力パスを入力",
115
+ "Get information about the audio": "オーディオに関する情報を取得する",
116
+ "Information about the audio file": "オーディオファイルに関する情報",
117
+ "Waiting for information...": "情報を待っています...",
118
+ "## Voice Blender": "## モデルマージ",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "2つの音声モデルを選択し、希望のブレンド率を設定して、まったく新しい音声モデルにマージします。",
120
+ "Voice Blender": "モデルマージ",
121
+ "Drag and drop your model here": "ここにモデルをドラッグ&ドロップします",
122
+ "You can also use a custom path.": "カスタムパスを使用することもできます。",
123
+ "Blend Ratio": "ブレンド比(Blend Ratio)",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "位置をどちらか一方に調整すると、モデルが最初または2番目に近づきます。",
125
+ "Fusion": "マージ",
126
+ "Path to Model": "モデルへのパス",
127
+ "Enter path to model": "モデルへのパスを入力",
128
+ "Model information to be placed": "配置するモデル情報",
129
+ "Inroduce the model information": "モデル情報の取得",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "モデルに配置する情報(空白のままでも、何でも入力できます)。",
131
+ "View model information": "モデル情報の表示",
132
+ "Introduce the model pth path": ".pthのパスを指定してください。",
133
+ "View": "表示",
134
+ "Model extraction": "モデルの抽出",
135
+ "Model conversion": "モデル変換",
136
+ "Pth file": "Pth ファイル",
137
+ "Output of the pth file": "p番目のファイルの出力",
138
+ "# How to Report an Issue on GitHub": "# GitHub で問題を報告する方法",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1.下の[画面の記録]ボタンをクリックして、発生している問題の記録を開始します。",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2.問題の記録が終了したら、[記録の停止]ボタンをクリックします(同じボタンですが、アクティブに記録しているかどうかによってラ��ルが変わります)。",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Issues](https://github.com/IAHispano/Applio/issues)に移動し、[New Issue]ボタンをクリックします。",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. 提供された課題テンプレートに記入し、必要に応じて詳細を含め、アセット セクションを使用して前の手順で記録したファイルをアップロードします。",
143
+ "Record Screen": "録画画面",
144
+ "Record": "記録",
145
+ "Stop Recording": "記録の停止",
146
+ "Introduce the model .pth path": "モデルの .pth パスを導入する",
147
+ "See Model Information": "「モデル情報」を参照",
148
+ "## Download Model": "## モデルのダウンロード",
149
+ "Model Link": "モデルリンク",
150
+ "Introduce the model link": "モデルリンクの紹介",
151
+ "Download Model": "モデルのダウンロード",
152
+ "## Drop files": "## ファイルのドロップ",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": ".pth ファイルと .index ファイルをこのスペースにドラッグします。一方をドラッグしてから、もう一方をドラッグします。",
154
+ "TTS Voices": "TTS ボイス",
155
+ "Select the TTS voice to use for the conversion.": "変換に使用する TTS 音声を選択します。",
156
+ "Text to Synthesize": "合成するテキスト",
157
+ "Enter the text to synthesize.": "合成するテキストを入力します。",
158
+ "Or you can upload a .txt file": "または、.txtファイルをアップロードすることもできます",
159
+ "Enter text to synthesize": "合成するテキストを入力する",
160
+ "Output Path for TTS Audio": "TTSオーディオの出力パス",
161
+ "Output Path for RVC Audio": "RVCオーディオの出力パス",
162
+ "Enable Applio integration with Discord presence": "Applio と Discord のプレゼンスの統合を有効にする",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "これにより、Discordで現在のApplioアクティビティを表示する可能性がアクティブになります。",
164
+ "Enable Applio integration with applio.org/models using flask": "フラスコを使用して Applio と applio.org/models の統合を有効にする",
165
+ "It will activate the possibility of downloading models with a click from the website.": "ウェブサイトからクリックするだけでモデルをダウンロードする可能性がアクティブになります。",
166
+ "Theme": "テーマ",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "使用するテーマを選択します。(Applioの再起動が必要)",
168
+ "Language": "言語",
169
+ "Select the language you want to use. (Requires restarting Applio)": "使用する言語を選択します。(Applioの再起動が必要)",
170
+ "Plugin Installer": "プラグインインストーラ",
171
+ "Drag your plugin.zip to install it": "plugin.zipをドラッグしてインストールします",
172
+ "Version Checker": "バージョンチェッカー",
173
+ "Check which version of Applio is the latest to see if you need to update.": "更新が必要かどうか、Applioのどのバージョンが最新かを確認してください。",
174
+ "Check for updates": "アップデートを確認する"
175
+ }
assets/i18n/languages/jv_JV.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
assets/i18n/languages/ko_KO.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "타의 추종을 불허하는 성능, 모듈성 및 사용자 친화적인 경험을 위해 세심하게 최적화된 궁극의 음성 복제 도구입니다.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "이 섹션에는 아직 실험 단계에 있는 추가 유틸리티가 포함되어 있습니다.",
4
+ "Output Information": "출력 정보",
5
+ "The output information will be displayed here.": "출력 정보가 여기에 표시됩니다.",
6
+ "Inference": "추론",
7
+ "Train": "모델 학습",
8
+ "Extra": "기타 도구",
9
+ "Merge Audios": "오디오 병합",
10
+ "Processing": "처리",
11
+ "Audio Analyzer": "오디오 분석기",
12
+ "Model Information": "모델 정보",
13
+ "Plugins": "플러그인",
14
+ "Download": "다운로드",
15
+ "Report a Bug": "버그 신고",
16
+ "Settings": "설정",
17
+ "Preprocess": "사전 처리",
18
+ "Model Name": "모델명",
19
+ "Name of the new model.": "새 모델의 이름입니다.",
20
+ "Enter model name": "모델명 입력",
21
+ "Dataset Path": "데이터 세트 경로",
22
+ "Path to the dataset folder.": "데이터 세트 폴더의 경로입니다.",
23
+ "Refresh Datasets": "데이터 세트 새로 고침",
24
+ "Dataset Creator": "데이터셋 생성기",
25
+ "Dataset Name": "데이터 세트 이름",
26
+ "Name of the new dataset.": "새 데이터 세트의 이름입니다.",
27
+ "Enter dataset name": "데이터 세트 이름 입력",
28
+ "Upload Audio Dataset": "오디오 데이터 세트 업로드",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "오디오 파일이 데이터 세트에 성공적으로 추가되었습니다. 전처리 버튼을 클릭해주세요.",
30
+ "Enter dataset path": "데이터 세트 경로 입력",
31
+ "Sampling Rate": "샘플링 레이트",
32
+ "The sampling rate of the audio files.": "오디오 파일의 샘플링 레이트입니다.",
33
+ "RVC Version": "RVC 버전",
34
+ "The RVC version of the model.": "모델의 RVC 버전입니다.",
35
+ "Preprocess Dataset": "데이터 세트 사전 처리",
36
+ "Extract": "추출물",
37
+ "Hop Length": "홉 길이",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "시스템이 중요한 피치 변화로 전환되는 데 걸리는 시간을 나타냅니다. 홉 길이가 작을수록 추론에 더 많은 시간이 필요하지만 피치 정확도가 높아지는 경향이 있습니다.",
39
+ "Batch Size": "배치 크기(Batch Size)",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "GPU의 사용 가능한 VRAM에 맞추는 것이 좋습니다. 4로 설정하면 정확도가 향상되지만 처리 속도가 느려지고, 8로 설정하면 더 빠르고 표준적인 결과를 얻을 수 있습니다.",
41
+ "Save Every Epoch": "모든 Epoch를 저장합니다",
42
+ "Determine at how many epochs the model will saved at.": "모델이 몇 epoch에 저장될지 결정합니다.",
43
+ "Total Epoch": "Total Epoch(총 에포크)",
44
+ "Specifies the overall quantity of epochs for the model training process.": "모델 학습 프로세스에 대한 전체 epoch 수를 지정합니다.",
45
+ "Pretrained": "사전학습 모델 사용",
46
+ "Save Only Latest": "마지막 파일만 저장(Save Only Latest)",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "이 설정을 활성화하면 마지막으로 저장된 G 및 D 파일만 남게 되므로 저장 공간을 효과적으로 절약할 수 있습니다.",
48
+ "Save Every Weights": "모든 가중치 저장",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "이 설정을 사용하면 각 Epoch가 끝날 때 모델의 가중치를 저장할 수 있습니다.",
50
+ "Custom Pretrained": "커스텀 사전학습 모델 사용",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "특정 사용 사례에 맞는 가장 적합한 커스텀 사전학습 모델을 선택하면 성능이 크게 향상될 수 있고 우수한 결과를 얻을 수 있습니다.",
52
+ "Upload Pretrained Model": "사전학습 된 모델 업로드",
53
+ "Refresh Custom Pretraineds": "커스텀 사전학습 모델 새로 고침",
54
+ "Pretrained Custom Settings": "커스텀 사전학습 모델 설정",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "드롭한 파일이 유효한 사전학습 모델 파일이 아닙니다. 다시 시도하십시오.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "새로 고침 버튼을 클릭하면 드롭다운 메뉴에서 사전 학습 된 파일을 볼 수 있습니다.",
57
+ "Pretrained G Path": "커스텀 사전학습 모델 G",
58
+ "Pretrained D Path": "커스텀 사전학습 모델 D",
59
+ "GPU Settings": "GPU 설정",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "고급 GPU 아키텍처를 사용하는 사용자에게 권장되는 GPU 설정.",
61
+ "GPU Custom Settings": "GPU 커스텀 설정",
62
+ "GPU Number": "GPU 번호",
63
+ "0 to ∞ separated by -": "0 - ∞ - 로 구분",
64
+ "GPU Information": "GPU 정보",
65
+ "Pitch Guidance": "음정(Pitch) 안내",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "음정(Pitch) 가이던스를 사용하면 음정을 포함하여 원래 목소리의 억양을 미러링할 수 있습니다. 이 기능은 노래 및 원래 멜로디 또는 음정 패턴의 보존이 필수적인 것에 특히 유용합니다.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "자체 모델을 학습할 때 사전 학습된 모델을 활용합니다. 이 접근 방식은 학습 시간을 줄이고 전반적인 품질을 향상시킵니다.",
68
+ "Extract Features": "특징 추출",
69
+ "Start Training": "트레이닝 시작하기",
70
+ "Generate Index": "인덱스 생성",
71
+ "Voice Model": "음성 모델",
72
+ "Select the voice model to use for the conversion.": "변환에 사용할 음성 모델을 선택합니다.",
73
+ "Index File": "색인 파일",
74
+ "Select the index file to use for the conversion.": "변환에 사용할 인덱스 파일을 선택합니다.",
75
+ "Refresh": "새로고침",
76
+ "Unload Voice": "음성 언로드",
77
+ "Single": "싱글",
78
+ "Upload Audio": "오디오 업로드",
79
+ "Select Audio": "오디오 선택",
80
+ "Select the audio to convert.": "변환할 오디오를 선택합니다.",
81
+ "Advanced Settings": "고급 설정",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "출력 지우기(에셋/오디오의 모든 오디오 삭제)",
83
+ "Custom Output Path": "사용자 지정 출력 경로",
84
+ "Output Path": "출력 경로",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "출력 오디오가 저장될 경로 입니다, 기본값 assets/audios/output.wav",
86
+ "Split Audio": "오디오 분할",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "경우에 따라 더 나은 결과를 얻기 위해 오디오를 청크로 분할합니다.",
88
+ "Autotune": "오토튠",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "추론 시 소프트 오토튠을 적용합니다. 노래에 권장합니다",
90
+ "Clean Audio": "디-노이즈 오디오",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "노이즈 감지 알고리즘을 사용하여 출력되는 오디오의 불필요한 정보를 정리합니다. 연설과 같은 스피치 오디오에 적합합니다.",
92
+ "Clean Strength": "감지 강도",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "감지 레벨을 높이면 높일수록 정리가 더 많이 되지만 오디오가 더 압축되어 음질 저하가 생길 수 있습니다.",
94
+ "Pitch": "음정",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "오디오의 음정(Pitch)을 설정합니다. 값이 높을수록 음정이 높아집니다.",
96
+ "Filter Radius": "필터 반경",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "숫자가 3보다 크거나 같을 때 수집된 톤 결과에 중앙값 필터링을 사용하여 호흡등의 소리를 감소 시킬 수 있습니다",
98
+ "Search Feature Ratio": "특성 검색 비율(Search Feature Ratio)",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "특성 인덱스 파일이 미치는 영향; 값이 높을수록 모델의 특성을 잘 나타내지만 값이 낮을수록 인공적인 느낌을 줄어들 수도 있습니다.",
100
+ "Volume Envelope": "볼륨 엔벨로프(Volume Envelope)",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "출력의 볼륨 포락선(Envelope)로 대체하거나 혼합합니다. 비율이 1에 가까울수록 출력 엔벨로프가 더 많이 사용됩니다.",
102
+ "Protect Voiceless Consonants": "무성 자음 보호",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "뚜렷한 자음과 숨소리를 보호하여 전자 음향 찢어짐 및 기타 아티팩트를 방지합니다. 설정값을 최대치인 0.5로 끌어오면 포괄적인 보호가 제공됩니다. 반대로 보호 범위를 낮출 경우 인덱싱 효과를 완화할 수 있습니다",
104
+ "Pitch extraction algorithm": "음정(Pitch) 추출 알고리즘",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "오디오 변환에 사용할 음정 추출 알고리즘입니다. 디폴트 알고리즘은 rmvpe이며, 대부분의 경우에 권장됩니다.",
106
+ "Convert": "변환",
107
+ "Export Audio": "오디오 내보내기",
108
+ "Batch": "일괄",
109
+ "Input Folder": "입력 폴더",
110
+ "Select the folder containing the audios to convert.": "변환할 오디오가 포함된 폴더를 선택합니다.",
111
+ "Enter input path": "입력 경로 입력",
112
+ "Output Folder": "출력 폴더",
113
+ "Select the folder where the output audios will be saved.": "출력 오디오를 저장할 폴더를 선택합니다.",
114
+ "Enter output path": "출력 경로 입력",
115
+ "Get information about the audio": "오디오에 대한 정보 가져오기",
116
+ "Information about the audio file": "오디오 파일에 대한 정보",
117
+ "Waiting for information...": "정보를 기다리는 중...",
118
+ "## Voice Blender": "## 목소리 혼합",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "두 개의 음성 모델을 선택하고 원하는 혼합 비율을 설정하면 완전히 새로운 음성으로 혼합됩니다.",
120
+ "Voice Blender": "목소리 혼합",
121
+ "Drag and drop your model here": "여기에 모델을 끌어다 놓습니다.",
122
+ "You can also use a custom path.": "사용자 지정 경로를 사용할 수도 있습니다.",
123
+ "Blend Ratio": "합성 비율(Blend Ratio)",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "위치를 양쪽 방향으로 조정하며 두 모델의 혼합 비중을 선택할 수 있습니다.",
125
+ "Fusion": "목소리 혼합",
126
+ "Path to Model": "모델 경로",
127
+ "Enter path to model": "모델 경로 입력",
128
+ "Model information to be placed": "배치할 모델 정보",
129
+ "Inroduce the model information": "모델 정보 도입",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "모델의 정보(비워 두거나 아무 내용을 써도 됩니다).",
131
+ "View model information": "모델 정보 보기",
132
+ "Introduce the model pth path": "모델 pth 경로 소개",
133
+ "View": "보기",
134
+ "Model extraction": "모델 추출",
135
+ "Model conversion": "모델 변환",
136
+ "Pth file": "Pth 파일",
137
+ "Output of the pth file": "pth 파일의 출력",
138
+ "# How to Report an Issue on GitHub": "# GitHub에서 문제를 보고하는 방법",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. 아래의 '녹화 화면' 버튼을 클릭하여 발생한 문제의 녹화를 시작합니다.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. 문제 기록이 끝나면 '기록 중지' 버튼(동일한 버튼이지만 현재 기록 중인지 여부에 따라 레이블이 변경됨)을 클릭합니다.",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub 문제](https://github.com/IAHispano/Applio/issues)로 이동하여 '새 문제' 버튼을 클릭합니다.",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. 제공된 문제 템플릿을 완료하고 필요에 따라 세부 정보를 포함하고 자산 섹션을 활용하여 이전 단계에서 기록된 파일을 업로드합니다.",
143
+ "Record Screen": "녹화 화면",
144
+ "Record": "기록",
145
+ "Stop Recording": "기록 중지",
146
+ "Introduce the model .pth path": "모델 .pth 경로 소개",
147
+ "See Model Information": "모델 정보 보기",
148
+ "## Download Model": "## 모델 다운로드",
149
+ "Model Link": "모델 링크",
150
+ "Introduce the model link": "모델 소개 링크",
151
+ "Download Model": "모델 다운로드",
152
+ "## Drop files": "## 파일 드롭",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": ".pth 파일과 .index 파일을 이 공간으로 드래그합니다. 하나를 드래그한 다음 다른 하나를 드래그합니다.",
154
+ "TTS Voices": "TTS 음성",
155
+ "Select the TTS voice to use for the conversion.": "변환에 사용할 TTS 음성을 선��합니다.",
156
+ "Text to Synthesize": "합성할 텍스트(Text to Synthesize)",
157
+ "Enter the text to synthesize.": "합성할 텍스트를 입력합니다.",
158
+ "Or you can upload a .txt file": "또는 .txt 파일을 업로드할 수 있습니다.",
159
+ "Enter text to synthesize": "합성할 텍스트 입력",
160
+ "Output Path for TTS Audio": "TTS 오디오의 출력 경로",
161
+ "Output Path for RVC Audio": "RVC 오디오의 출력 경로",
162
+ "Enable Applio integration with Discord presence": "Discord와 Applio 통합 활성화",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Discord에서 Applio의 활동이 표시되는 기능을 활성화합니다.",
164
+ "Enable Applio integration with applio.org/models using flask": "플라스크를 사용하여 applio.org/models 와 Applio 통합 활성화",
165
+ "It will activate the possibility of downloading models with a click from the website.": "웹 사이트에서 클릭 한 번으로 모델을 다운로드 할 수 있습니다.",
166
+ "Theme": "테마",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "사용할 테마를 선택합니다. (Applio를 다시 시작해야 함)",
168
+ "Language": "언어",
169
+ "Select the language you want to use. (Requires restarting Applio)": "사용할 언어를 선택합니다. (Applio를 다시 시작해야 함)",
170
+ "Plugin Installer": "플러그인 인스톨러",
171
+ "Drag your plugin.zip to install it": "plugin.zip 드래그하여 설치하십시오.",
172
+ "Version Checker": "버전 검사기",
173
+ "Check which version of Applio is the latest to see if you need to update.": "Applio의 최신 버전을 확인하여 업데이트가 필요한지 확인하십시오.",
174
+ "Check for updates": "업데이트 확인"
175
+ }
assets/i18n/languages/ml_IN.json ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "അനന്തമായ ശക്തി, മോഡുലാരിറ്റി, ഉപയോക്തൃ-സൗഹൃദ അനുഭവത്തിനായി യാഥാർത്ഥ്യമാക്കിയ അത്യുന്നതമായ വോയ്സ് ക്ലോണിങ് ടൂൾ.\n[മലയാളത്തിലേക്ക് വായന: Enes](https://discord.com/users/1140031358006202468)",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "ഈ പേരിലെ കൊണ്ടാടാൻ പ്രയോജനപ്രദമായ എന്നതിനാൽ കഴിഞ്ഞത് സാധാരണയായ പോസിക്കുകളിൽ അവസാനിക്കാത്ത ചില യന്ത്രങ്ങൾ ഉള്ളതാണ്.",
4
+ "Output Information": "പ്രണാമം വിവരം",
5
+ "The output information will be displayed here.": "ഇവിടെ പ്രണയ വിവരങ്ങൾ പ്രദശിപ്പിക്കപ്പെടും.",
6
+ "Inference": "സൂചന",
7
+ "Train": "പ്രശിക്ഷണം",
8
+ "Extra": "അധികം",
9
+ "Merge Audios": "ഓഡിയോ ഒടിക്കുക",
10
+ "Processing": "പ്രൊസസ്സിംഗ്",
11
+ "Audio Analyzer": "ഓഡിയോ വിശ്ലേഷണകൾ",
12
+ "Model Information": "മോഡൽ വിവരങ്ങൾ",
13
+ "Plugins": "പ്ലഗിൻസ്",
14
+ "Download": "ഡൗൺലോഡ്",
15
+ "Report a Bug": "പിശക് റിപ്പോർട്ട്",
16
+ "Settings": "സെറ്റിംഗുകൾ",
17
+ "Preprocess": "പ്രൊസസ്",
18
+ "Model Name": "മോഡൽ പേര്",
19
+ "Name of the new model.": "പുതിയ മോഡലിന്റെ പേര്.",
20
+ "Enter model name": "മോഡൽ പേര് നൽകുക",
21
+ "Dataset Path": "ഡാറ്റാസെറ്റ് പാത",
22
+ "Path to the dataset folder.": "ഡാറ്റാസെറ്റ് ഫോൾഡർക്കുള്ള പാത.",
23
+ "Refresh Datasets": "ഡാറ്റാസെറ്റുകൾ പുനഃസൃഷ്ടിക്കുക",
24
+ "Dataset Creator": "ഡാറ്റാസെറ്റ് സൃഷ്ടാവ്",
25
+ "Dataset Name": "ഡാറ്റാസെറ്റ് പേര്",
26
+ "Name of the new dataset.": "പുതിയ ഡാറ്റാസെറ്റിന്റെ പേര്.",
27
+ "Enter dataset name": "ഡാറ്റാസെറ്റ് പേര് നൽകുക",
28
+ "Upload Audio Dataset": "ഓഡിയോ ഡാറ്റാസെറ്റ് അപ്‌ലോഡ് ചെയ്യുക",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "ഓഡിയോ ഫയൽ യഥാർത്ഥമായി ഡാറ്റാസെറ്റിലേക്ക് ചേർന്നു. ദയവായി പ്രൊസെസ് ബട്ടൺ അമർത്തുക.",
30
+ "Enter dataset path": "ഡാറ്റാസെറ്റ് പാത നൽകുക",
31
+ "Sampling Rate": "സാമ്പ്ലിംഗ് റേറ്റ്",
32
+ "The sampling rate of the audio files.": "ഓഡിയോ ഫയലുകളുടെ സാമ്പ്ലിംഗ് റേറ്റ്.",
33
+ "RVC Version": "RVC പതിപ്പ്",
34
+ "The RVC version of the model.": "മോഡലിന്റെ RVC പതിപ്പ്.",
35
+ "Preprocess Dataset": "ഡാറ്റാസെറ്റ് പ്രൊസെസ് ചെയ്യുക",
36
+
37
+ "Embedder Model": "Embedder Model",
38
+ "Model used for learning speaker embedding.": "സ്പീക്കർ എംബെഡ്ഡിംഗ് പഠിപ്പിക്കാൻ ഉപയോഗിക്കുന്ന മോഡൽ.",
39
+ "Extract": "എക്സ്ട്രാക്ട്",
40
+ "Hop Length": "ഹോപ്പ് ലെന്ത്",
41
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "സിസ്റ്റത്തിൽ ഒരു വിശദ പിച്ച് മാറ്റത്തിന്റെ ദാരിദ്ര്യം സൂചിപ്പിക്കുന്നു. ചെറിയ ഹോപ്പ് ലെന്തുകള് ഇൻഫരൻസിനായി കൂടുതൽ സമയം ആവശ്യപ്പെടുന്നു, എന്നിരുന്നാലും ഉയരമായ പിച്ച് അക്ക്യൂറസി നൽകുന്നു.",
42
+ "Batch Size": "ബാച്ച് വലുപ്പം",
43
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "നിനക്ക് ലഭ്യമായ GPU-യുടെ VRAM നുസരിച്ച് അലൈൻ ചെയ്യുന്നത് പ്രാധാന്യപ്പെടുന്നു. 4-ന്റെ സെറ്റിംഗ് മൊത്തം അക്ക്യൂറസി പരിഷ്കർത്തനവും എല്ലാത്തിനെയും അവലംബപ്പെടുന്നു, എന്നിരുന്നാലും 8 വലുപ്പം അനുഭവജീവനത്തിനായി ഉന്നയിക്കുന്നു.",
44
+ "Save Every Epoch": "എന്നാൽ എന്റെ എപ്പൊക്കാലിലെയും മോഡൽ സേവ് ചെയ്യുന്നതിനു വരെ",
45
+ "Determine at how many epochs the model will be saved at.": "എന്താണ് എപ്പൊക്കാലിൽ മോഡൽ സേവ് ചെയ്യപ്പെടുന്നതെന്ന് തിരഞ്ഞെടുക്കുക.",
46
+ "Total Epoch": "മൊത്തം എപ്പൊക്ക്",
47
+ "Specifies the overall quantity of epochs for the model training process.": "മോഡൽ പ്രശിക്ഷണ പ്രക്രിയയ്ക്കായി എപ്പൊക്ക് എത്രയാണ് എന്നത് നിര്ദിഷ്ടമാക്കുന്നു.",
48
+ "Pretrained": "പ്രീട്രെയിനെഡ്",
49
+ "Save Only Latest": "കേവലായി പുതിയത് മാത്രം സേവ് ചെയ്യുക",
50
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "ഈ സെറ്റിംഗ് പ്രവർത്തനത്തിനായി ക്രമീകരിച്ചാൽ, G മറ്റും D ഫയലുകൾ അവരുടെ അവസാന പതിപ്പുകൾക്ക് മാത്രം സേവ് ചെയ്യും, പ്രഭാവകരമായി സ്റ്റോറേജ് സ്ഥലം സംരക്ഷിക്കുന്നതാണ്.",
51
+ "Save Every Weights": "എന്റെ എപ്പൊക്കാലിലും ഭാരം സേവ് ചെയ്യുക",
52
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "ഈ സെറ്റിംഗ് നിര്ദ്ദേശപ്പെടുന്ന ഓരോ എപ്പൊക്കിലും മോഡലിന്റെ ഭാരങ്ങൾ സേവ് ചെയ്യാൻ കഴിയുന്നു.",
53
+ "Custom Pretrained": "കസ്റ്റം പ്രീട്രെയിനെഡ്",
54
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "കസ്റ്റം പ്രീട്രെയിനെഡ് മോഡലുകൾ ഉപയോഗിക്കുന്നത് ഉന്നത ഫലങ്ങൾ നൽകിയാൽ, സ്പഷ്ടമായ ഉപയോഗ കേസിനായി കൈമേലെ പ്രീട്രെയിനെഡ് മോഡലുകൾ തിരഞ്ഞെടുക്കുന്നത് സാധാരണയായ പ്രദർശനത്തെ വളർത്തുന്നതിനും പ്രദർശനം വളർത്തുന്നതിനും കൂടുതൽ സഹായകമാകും.",
55
+ "Upload Pretrained Model": "പ്രീട്രെയിനെഡ് മോഡൽ അപ്ലോഡ് ചെയ്യുക",
56
+ "Refresh Custom Pretraineds": "കസ്റ്റം പ്രീട്രെയിനെഡുകൾ പുനഃസ്വന്തമാക്കുക",
57
+ "Pretrained Custom Settings": "പ്രീട്രെയിനെഡ് കസ്റ്റം സെറ്റിംഗുകൾ",
58
+ "The file you dropped is not a valid pretrained file. Please try again.": "നിനക്ക് ഡ്രോപ്പ് ചെയ്യിയ ഫയൽ ഒരു സാധാരണ പ്രീട്രെയിനെഡ് ഫയലല്ല. ദയവായി വീണ്ടും ശ്രയിക്കുക.",
59
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "പ്രീട്രെയിനെഡ് ഫയലെ ഡ്രോപ്പ്ഡൌൺ മെനുവിലെത്താൻ റെഫ്രഷ് ബട്ടൺ ക്ലിക്കുചെയ്യുക.",
60
+ "Pretrained G Path": "കസ്റ്റം പ്രീട്രെയിനെഡ് G പാത",
61
+ "Pretrained D Path": "കസ്റ്റം പ്രീട്രെയിനെഡ് D പാത",
62
+ "GPU Settings": "GPU സെറ്റിംഗുകൾ",
63
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "അട്വാൻസ്ഡ് GPU സെ��്റിംഗുകൾ സജ്ജീവമാക്കുന്നു, പ്രശസ്ത GPU ആർക്കിടെയുള്ള ഉപയോക്താക്കളിനായി ശിഫാരസ് ചെയ്തത്.",
64
+ "GPU Custom Settings": "GPU കസ്റ്റം സെറ്റിംഗുകൾ",
65
+ "GPU Number": "GPU നമ്പർ",
66
+ "0 to ∞ separated by -": "0 മുതൽ ∞ വരെ - ഒടുക്കിയ",
67
+ "GPU Information": "GPU വിവരം",
68
+ "Pitch Guidance": "പിച്ച് ഗൈഡൻസ്",
69
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "പിച്ച് ഗൈഡൻസ് ഉപയോഗിച്ച്, ഓരിജിനൽ വോയ്സിന്റെ ഇൻറോണേഷനെ, അതിന്റെ പിച്ചു സേവനേന്ന്, സോണ്റിംഗ് മുതലായ സന്നിധികളിൽ പ്രാഥമിക സ്വരം അല്ലെങ്കിൽ പിച്ച് നമ്പറെ പരിരക്ഷിക്കേണ്ടതായ സ്ഥിതികളിലേക്ക് മികച്ച ഫലങ്ങൾ പ്രാപ്തമാക്കാനാകുന്നു.",
70
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "നിനക്ക് സ്വന്തമായി പ്രശിക്ഷണം നടത്തുമ്പോൾ പ്രീട്രെയിനെഡ് മോഡലുകൾ ഉപയോഗിക്കുക. ഈ രീതി പ്രശിക്ഷണ സമയം കുറയ്ക്കുന്നുവെങ്കിൽ മൊത്തം ഗുണമേന്മ വരും.",
71
+ "Extract Features": "ഫീച്ചർ എക്സ്ട്രാക്ട്",
72
+ "Overtraining Detector": "ഓവർട്രെയിനിംഗ് ഡിറ്റക്റ്റർ",
73
+ "Detect overtraining to prevent the model from learning the training data too well and losing the ability to generalize to new data.": "പ്രശിക്ഷണ ഡാറ്റയെ നിങ്ങളുടെ മോഡൽ അതിന്റെ തരംതിരിച്ചു പഠിക്കാൻ അനുവദിക്കുന്നത് നിലവിൽ നിന്ന് ഓവർട്രെയിനിംഗ് ശ്രമിക്കുക.",
74
+ "Overtraining Detector Settings": "ഓവർട്രെയിനിംഗ് ഡിറ്റക്റ്റർ സെറ്റിംഗുകൾ",
75
+ "Overtraining Threshold": "ഓവർട്രെയിനിംഗ് താഴ്ന്ന മിതം",
76
+ "Set the maximum number of epochs you want your model to stop training if no improvement is detected.": "യാത്രാവധി പരിശോധിച്ചിട്ടില്ലാത്ത അഭിവൃദ്ധി നിരയെടുക്കുകയാണെങ്കിൽ നിങ്ങളുടെ മോഡൽ പരിശോധനയെന്നത് പ്രശിക്ഷണം നിലനിൽക്കാനുള്ള ഏറ്റവും ഉന്നത എപ്പോക്കുകൾ സജ്ജമാക്കുക.",
77
+
78
+ "Start Training": "പ്രശിക്ഷണം ആരംഭിക്കുക",
79
+ "Stop Training & Restart Applio": "പ്രശിക്ഷണം നിർത്തുക & അപ്ലിയോ പുനഃപ്രാരംഭിക്കുക",
80
+ "Generate Index": "ഇൻഡെക്സ് സൃഷ്ടിക്കുക",
81
+
82
+ "Export Model": "എക്സ്പോർട്ട് മോഡൽ",
83
+ "The button 'Upload' is only for google colab: Uploads the exported files to the ApplioExported folder in your Google Drive.": "'അപ്ലോഡ്' ബട്ടൺ കേവലം ഗൂഗിൾ കോളാബിന് മാത്രം: നിങ്ങളുടെ ഗൂഗിൾ ഡ്രൈവിലെ ApplioExported ഫോൾഡറിലേക്ക് എക്സ്പോർട്ട് ചെയ്യുന്നു.",
84
+ "Exported Pth file": "എക്സ്പോർട്ട് ചെയ്ത Pth ഫയൽ",
85
+ "Exported Index file": "എക്സ്പോർട്ട് ചെയ്ത ഇൻഡെക്സ് ഫയൽ",
86
+ "Select the pth file to be exported": "എക്സ്പോർട്ട് ചെയ്യാൻ ആദ്യം pth ഫയൽ തിരഞ്ഞെടുക്കുക",
87
+ "Select the index file to be exported": "എക്സ്പോർട്ട് ചെയ്യാൻ ആദ്യം ഇൻഡെക്സ് ഫയൽ തിരഞ്ഞെടുക്കുക",
88
+ "Upload": "അപ്ലോഡ്",
89
+
90
+ "Voice Model": "വോയ്സ് മോഡൽ",
91
+ "Select the voice model to use for the conversion.": "കണ്വേർഷനിനായി ഉപയോഗിക്കാൻ വോയ്സ് മോഡലുകൾ തിരഞ്ഞെടുക്കുക.",
92
+ "Index File": "ഇൻഡെക്സ് ഫയൽ",
93
+ "Select the index file to use for the conversion.": "കണ്വേർഷനിനായി ഉപയോഗിക്കേണ്ട ഇൻഡെക്സ് ഫയലുകൾ തിരഞ്ഞെടുക്കുക.",
94
+ "Refresh": "പുനഃസ്വന്തമാക്കുക",
95
+ "Unload Voice": "വോയ്സ് അൺലോഡ്",
96
+ "Single": "ഏകത്വം",
97
+ "Upload Audio": "ഓഡിയോ അപ്‌ലോഡ് ചെയ്യുക",
98
+ "Select Audio": "ഓഡിയോ തിരഞ്ഞെടുക്കുക",
99
+ "Select the audio to convert.": "കണ്വേർട്ട് ചെയ്യാൻ ഓഡിയോ തിരഞ്ഞെടുക്കുക.",
100
+ "Advanced Settings": "പുതുമയായ സെറ്റിംഗുകൾ",
101
+ "Clear Outputs (Deletes all audios in assets/audios)": "പരിമാറ്റുക (assets/audios എല്ലാ ഓഡിയോകൾ ഇല്ലാതാക്കുക)",
102
+ "Custom Output Path": "കസ്റ്റം ഔട്ട്പുട്ട് പാത",
103
+ "Output Path": "ഔട്ട്പുട്ട് പാത",
104
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "ഓട്ട്പുട്ട് ഓഡിയോ സേവ്‌ചെയ്യപ്പെടുന്നത്, സ്വഭാവമായി assets/audios/output.wav ഇല്‍",
105
+ "Split Audio": "ഓഡിയോ വിഭാഗീകരണം",
106
+ "Split the audio into chunks for inference to obtain better results in some cases.": "അനുമാനത്തിന് കൂടുതൽ ഫലങ്ങൾ ലഭിക്കാൻ ഓഡിയോ ഭാഗങ്ങൾക്ക് വിഭാഗീകരണം ചെയ്യുക.",
107
+ "Autotune": "ഓട്ടോട്യൂൺ",
108
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "സോഫ്റ്റ് ഓട്ടോട്യൂൺ ആപ്ലയുകയും, സിംഗിങ് കൺവേർഷനുകളില്‍ ശിഫാരസ് ചെയ്യുകയും.",
109
+ "Clean Audio": "ശുദ്ധമായ ഓഡിയോ",
110
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "ശുദ്ധമായി നോയിസ് ഡിറ്റക്‌ഷൻ ആൾഗോരിതങ്ങൾ ഉപയോഗിച്ച് നിനക്ക് എത്ര പ്രയോജനപ്രദമായ ഓഡിയോ പരിഷ്കരിക്കാൻ, സ്പീക്കിംഗ് ഓഡിയോക്കിന് ശിഫാരസ് ചെയ്യുക.",
111
+ "Clean Strength": "ശുദ്ധി ശക്തി",
112
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "നിനക്ക് അവശ്യമായ ഓഡിയോക്ക് ശുദ്ധിയുടെ നില സജ്ജീവമാക്കുക, അതെക്കും കൂടുതൽ ഉള്ളതും അതിനെക്കുറിച്ച് ചോദിക്കുന്നതെന്തെങ്കിലും ശുദ്ധി ചെയ്തിരിക്കുന്ന ഓഡിയോ കമ്പ്രസ്‌ഡ് ആയിരിക്കാനുള്ള സാധ്യതയുണ്ട്.",
113
+ "Pitch": "പിച്ച്",
114
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "ഓഡിയോയുടെ പിച്ച് സജ്ജീവമാക്കുക, അതെക്കും ഉയരുന്നുവെങ്കിലും പിച്ച്.",
115
+ "Filter Radius": "ഫിൽട്ടർ റേഡിയസ്",
116
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "സംഖ്യ 3 അല്ലെങ്കിൽ അതിനേക്കാൾ കൂടുതൽ ആയിരിക്കുന്നാല്‍, ശ്വസനം കുറയ്ക്കാന്‍ ശേഷിക്കുന്ന രീതിയില്‍ കൂടുതല്‍ കഴിവുള്ളതാണ്.",
117
+ "Search Feature Ratio": "സേര്‍ച്ച് ഫീച്ചർ റേഷ്യോ",
118
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "ഇനഡെക്സ് ഫയലായി വികസിക്കുന്ന പ്രഭാവം; ഉയര്‍ന്ന മൂല്യം ഉയരത്തിന് അനുബന്ധ പ്രഭാവമുള്ള���ാണ്. എനിക്ക് കുറഞ്ഞ മൂല്യങ്ങളെ അനുവദിക്കാനും ആര്‍ടിഫാക്ടുകള്‍ നിലവിലുള്ള ഓഡിയോയിലെ ബുദ്ധിമുട്ടുകൾ ഉപയോഗപ്പെടുന്നു.",
119
+ "Volume Envelope": "വോള്യൂം എൻവലപ്പ്",
120
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "ആഉട്ട്പുട്ട് ഒറ്റവന്നേറ്റത്തിന്റെ വോള്യൂം എൻവലപ്പ് സ്ഥലപ്പെടുത്തുക. അനുഭവം 1-ക്കു സമീപമായിരിക്കുന്നതും, അനുഭവ എൻവലപ്പ് ഉപയോഗപ്പെടുന്നതും കൂടുതൽ ആണ്.",
121
+ "Protect Voiceless Consonants": "വോയ്സ്‌ലസ് കോൺസനന്റുകൾ സംരക്ഷിക്കുക",
122
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "എല്ലാവര്‍ക്കും പ്രകടമായ കോൺസനന്റുകൾ ഒഴുകുന്നത് എന്നതുകൊണ്ടുതന്നെ ഇലക്ട്രോ-ഓക്കുസ്റ്റിക് കൊതിയും മറ്റു ആർട്ടിഫാക്ടുകളും പ്രതിരക്ഷിക്കുന്നതിനുള്ള അരികോട്. പാരാമീറ്ററിനെ അതിന്റെ 0.5 എന്നേക്കും ഉച്ചക്കൊണ്ട് കൂട്ടിക്കൊള്ളൽ സാമൂഹ്യപ്രതിരക്ഷ നൽകുന്നു. എന്നാല്‍, ഈ മൂല്യം കുറഞ്ഞാക്കാൻ സാധ്യതയുണ്ട്, പ്രതിരക്ഷണം താഴെ കുറഞ്ഞുകൂടാൻ സഹായകരമാവുക.",
123
+ "Pitch extraction algorithm": "പിച്ച് എക്സ്ട്രാക്ഷൻ ആൾഗോരിതം",
124
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "ഓഡിയോ കൺവേർഷനിനായി ഉപയോഗിക്കേണ്ട പിച്ച് എക്സ്ട്രാക്ഷൻ ആൾഗോരിതം. സ്വതന്ത്ര ആൾഗോരിതത്താണ് rmvpe, അത് പലതരത്തിലുള്ള പ്രസ്താവനകളില്‍ ശിഫാരസ് ചെയ്യപ്പെടുന്നു.",
125
+
126
+ "Convert": "കൺവേർട്ട് ചെയ്യുക",
127
+ "Export Audio": "ഓഡിയോ എക്സ്പോർട്ട് ചെയ്യുക",
128
+
129
+ "Batch": "ബാച്ച്",
130
+ "Input Folder": "ഇൻപുട്ട് ഫോൾഡർ",
131
+ "Select the folder containing the audios to convert.": "കൺവേർട്ട് ചെയ്യാൻ ഓഡിയോകളെ കാണുന്ന ഫോൾഡർ തിരഞ്ഞെടുക്കുക.",
132
+ "Enter input path": "ഇൻപുട്ട് പാത നൽകുക",
133
+ "Output Folder": "ഔട്ട്പുട്ട് ഫോൾഡർ",
134
+ "Select the folder where the output audios will be saved.": "ഔട്ട്പുട്ട് ഓഡിയോകൾ സേവ്‌ചെയ്യപ്പെടുന്ന ഫോൾഡർ തിരഞ്ഞെടുക്കുക.",
135
+ "Enter output path": "ഔട്ട്പുട്ട് പാത നൽകുക",
136
+
137
+ "Get information about the audio": "ഓഡിയോയുടെ കുറിപ്പ് നേടുക",
138
+
139
+ "## Voice Blender": "## വോയ്സ് ബ്ലെന്ഡർ",
140
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "രണ്ട് വോയ്സ് മോഡലുകൾ തിരഞ്ഞെടുക്കുക, നിനക്ക് ആഗ്രഹിക്കുന്ന ബ്ലെന്റ് ശതകം സജ്ജീവമാക്കുക, അവയുടെ ബ്ലെന്റും പൂർണ്ണമായും പുതിയ ഒരു വോയ്സായാക്കുക.",
141
+ "Voice Blender": "വോയ്സ് ബ്ലെന്ഡർ",
142
+ "Drag and drop your model here": "നിനക്ക് ശൈലിക്കുകയോരോ മോഡൽ ഇവിടെ വികസിപ്പിക്കുക",
143
+ "You can also use a custom path.": "നിനക്ക് ഒരു സ്വന്തമായ പാതയും ഉപയോഗി���്കാം.",
144
+ "Blend Ratio": "ബ്ലെന്റ് അനുപാതം",
145
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "സ്ഥാനം കൊണ്ടുകൂടുതൽ പ്രതിരൂപമാക്കാൻ മുന്നേറ്റം ഒന്നിലേറ്റെത്തിനു അല്ലെങ്കിൽ മറ്റൊന്നിലേറ്റെത്തിനു സാധിക്കും.",
146
+ "Fusion": "ഫ്യൂഷൻ",
147
+ "Path to Model": "മോഡലിന്റെ പാത",
148
+ "Enter path to model": "മോഡലിനെ സജ്ജീവമാക്കാൻ പാത നൽകുക",
149
+ "Model information to be placed": "പ്ലേസ്മെന്റ് ചെയ്യാൻ ആവശ്യമായ മോഡലിന്റെ വിവരം",
150
+ "Introduce the model information": "മോഡലിന്റെ വിവരം പരിചയപ്പെടുക",
151
+ "The information to be placed in the model (You can leave it blank or put anything).": "മോഡലില്‍ സ്ഥലപ്പെടുത്താനുള്ള വിവരം (നിനക്ക് വിടാവുകയും അല്ലെങ്കിൽ എന്തെങ്കിലും ചേരുകയും ചെയ്യാം).",
152
+ "View model information": "മോഡലിന്റെ വിവരം കാണുക",
153
+ "Introduce the model pth path": "മോഡലിന്റെ pth പാത പരിചയപ്പെടുക",
154
+ "View": "കാണുക",
155
+ "Model extraction": "മോഡൽ എക്സ്ട്രാക്ഷൻ",
156
+ "Model conversion": "മോഡൽ കൺവേർഷൻ",
157
+ "Pth file": "Pth ഫയൽ",
158
+ "Output of the pth file": "Pth ഫയലിന്റെ പ്രോഡക്റ്റ്",
159
+ "# How to Report an Issue on GitHub": "# GitHub-ലെ ഒരു ഇഷ്യൂ റിപ്പോർട്ട് ചെയ്യുന്നതിനുള്ള രീതി",
160
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. നിന്റെ അനുഭവപ്പെടുന്ന ഇഷ്യൂ റെക്കോർഡുചെയ്യുന്നതിന് താഴെ 'Record Screen' ബട്ടൺ ക്ലിക്കുചെയ്യുക.",
161
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. ഇഷ്യൂ റെക്കോർഡുചെയ്തുതീർക്കുന്നതിനുശേഷം, 'Stop Recording' ബട്ടൺ ക്ലിക്കുചെയ്യുക (അത് തുടർന്നിരിക്കുന്നുമോ എന്ന് താഴെയോ കാണുന്ന ലേബല്‍ അനുസരിച്ച് മാറുന്നു).",
162
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Issues](https://github.com/IAHispano/Applio/issues) സ്ഥലത്തേക്ക് പോകുക, 'New Issue' ബട്ടൺ ക്ലിക്കുചെയ്യുക.",
163
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. നൽകിയ ഇഷ്യൂ ടെംപ്ലേറ്റ് പൂർത്തിയാക്കുക, ആവശ്യമായ വിവരങ്ങളെ ചേർക്കുന്നതിനുശേഷം, പഴയ ഘടനയിൽ റെക്കോർഡുചെയ്ത ഫയൽ അപ്‌ലോഡ് ചെയ്യുന്നതിന് എസെറ്റ് വിഭാഗം ഉപയോഗിക്കുക.",
164
+ "Record Screen": "റെക്കോർഡ് സ്‌ക്രീൻ",
165
+ "Record": "റെക്കോർഡ്",
166
+ "Stop Recording": "റെക്കോർഡുനിർത്തുക",
167
+ "Introduce the model .pth path": "മോഡൽ .pth പാത പരിചയപ്പെടുക",
168
+ "See Model Information": "മോഡൽ വിവരങ്ങൾ കാണുക",
169
+ "## Download Model": "## മോഡൽ ഡൗൺലോഡ്",
170
+ "Model Link": "മോഡൽ ലിങ്ക്",
171
+ "Introduce the model link": "മോഡൽ ലിങ്ക് പരിചയപ്പെടുക",
172
+ "Download Model": "മോഡൽ ഡൗൺലോഡ്",
173
+ "## Drop files": "## ഫയലുകൾ ഇടുക",
174
+ "## Search Model": "## മോഡൽ തിരയൽ",
175
+ "Search": "തിരയൽ",
176
+ "Introduce the model name to search.": "തിരയുന്നതിനായി മോഡൽ പേര് അറിയിക്കുക.",
177
+ "We couldn't find models by that name.": "അനുബന്ധമായ പേരിൽ മോഡൽസ് കണ്ട���ത്താനായില്ല.",
178
+
179
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "നിനക്ക് .pth ഫയലുകളും .index ഫയലുകളും ഇവിടെ ഡ്രാഗ് ചെയ്യുക. ഒന്നുകിട്ട് പിന്നെ മറ്റൊന്നു ഡ്രാഗ് ചെയ്യുക.",
180
+ "TTS Voices": "TTS വോയ്സുകൾ",
181
+ "Select the TTS voice to use for the conversion.": "മാറ്റത്തിനായി ഉപയോഗിക്കാൻ TTS വോയ്സ് തിരഞ്ഞെടുക്കുക.",
182
+ "Text to Synthesize": "സിന്തിയസൈസ് ചെയ്യുന്ന ടെക്സ്റ്റ്",
183
+ "Enter the text to synthesize.": "സിന്തിയസൈസ് ചെയ്യാൻ ടെക്സ്റ്റ് നൽകുക.",
184
+ "Or you can upload a .txt file": "അല്ലെങ്കിൽ .txt ഫയൽ അപ്‌ലോഡ് ചെയ്യാം",
185
+ "Enter text to synthesize": "സിന്തിയസൈസ് ചെയ്യാൻ ടെക്സ്റ്റ് നൽകുക",
186
+ "Output Path for TTS Audio": "TTS ഓഡിയോക്ക് ഔട്ട്പുട്ട് പാത",
187
+ "Output Path for RVC Audio": "RVC ഓഡിയോക്ക് ഔട്ട്പുട്ട് പാത",
188
+ "Enable Applio integration with Discord presence": "Discord പ്രസന്നതയോട് Applio ഇൻറഗ്രേഷൻ സജീവമാക്കുക",
189
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "ഇത് Discord-നായിരിക്കുന്ന നിലാവ് കാണാനുള്ള സാധ്യത സജീവമാക്കും.",
190
+ "Enable Applio integration with applio.org/models using flask": "flask ഉപയോഗിച്ച് applio.org/models ഇൻറഗ്രേഷൻ Applio സജീവമാക്കുക",
191
+ "It will activate the possibility of downloading models with a click from the website.": "ഇത് വെബ്സൈറ്റിൽ ഒരു ക്ലിക്ക് ചെയ്യുമ്പോൾ മോഡലുകൾ ഡൗൺലോഡ് ചെയ്യാനുള്ള സാധ്യത സജീവമാക്കും.",
192
+ "Enable fake GPU": "വഞ്ചി ജിപിയു ഇയക്കുക",
193
+ "Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option.": "പ്രശിക്ഷണം തറന്ന് നിലവിലുള്ളതിന് ജിപിയു ഇല്ലാതെ പ്രസ്താവിക്കുന്നതിനായി തിരഞ്ഞെടുക്കുന്നത് അനുവദിക്കാൻ 'ഫെയ്ക് ജിപിയു' ഓപ്ഷൻ സജ്ജമാക്കുക എന്ന് ക്രമീകരിക്കാൻ തിരിച്ചുവരുക. ",
194
+ "Activates the train tab. However, please note that this device lacks GPU capabilities, hence training is not supported. This option is only for testing purposes. (This option will restart Applio)": "പ്രശിക്ഷണം തുടങ്ങുന്നു. എങ്കിലും, ദയവായി ശ്രദ്ധിക്കുക എന്നത് നിങ്ങളുടെ ഉപകരണത്തിൽ GPU സാധ്യതകൾ ഇല്ലാത്തതാണ്, അതിനാൽ പ്രശിക്ഷണം അനുവദനീയമല്ല. ഈ ഓപ്ഷൻ ഇപ്പോൾ പരീക്ഷണങ്ങളിക്കായാണ്. (ഈ ഓപ്ഷൻ അപ്ലിയോ പുനഃസജ്ജമാക്കും)",
195
+ "Theme": "തീം",
196
+ "Select the theme you want to use. (Requires restarting Applio)": "നിനക്ക് ഉപയോഗിക്കാൻ എന്താണെന്ന് നിങ്ങളുടെ തീം തിരഞ്ഞെടുക്കുക. (Applio പുനഃസജീവമാക്കാൻ ആവശ്യമാണ്)",
197
+ "Language": "ഭാഷ",
198
+ "Select the language you want to use. (Requires restarting Applio)": "നിങ്ങളുടെ ഉപയോഗത്തിന് നിങ്ങളുടെ ഭാഷ തിരഞ്ഞെടുക്കുക. (Applio പുനഃസജീവമാക്കാൻ ആവശ്യമാണ്)",
199
+ "Plugin Installer": "പ്ലഗിൻ ഇൻസ്റ്റാൾലർ",
200
+ "Drag your plugin.zip to install it": "അതിനായി നിനക്ക് നിന്നെത്തിയ .zip ഫയല്‍ ഇൻസ്റ്റാൾ ചെയ്യാൻ ഇവിടെ ഡ്രാഗ് ചെയ്യുക",
201
+ "Version Checker": "വേര്‍ഷന്‍ ചെക്കർ",
202
+ "Check which version of Applio is the latest to see if you need to update.": "നിനക്ക് അപ്‌ഡേറ്റുചെയ്യേണ്ടതോ എന്ന് അപ്‌ലിയോയുടെ ഏറ്റവും പുതിയ പതിപ്പായത് പരിശോധിക്കുക.",
203
+ "Check for updates": "അപ്‌ഡേറ്റുകൾ പരിശോധിക്കുക"
204
+ }
assets/i18n/languages/mr_MR.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "अल्टिमेट व्हॉइस क्लोनिंग टूल, अप्रतिम शक्ती, मॉड्युलरिटी आणि वापरकर्ता-अनुकूल अनुभवासाठी काळजीपूर्वक ऑप्टिमाइझ केलेले.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "या विभागात काही अतिरिक्त उपयोगिता आहेत ज्या बर्याचदा प्रायोगिक टप्प्यात असू शकतात.",
4
+ "Output Information": "आउटपुट माहिती",
5
+ "The output information will be displayed here.": "आउटपुट माहिती येथे प्रदर्शित केली जाईल.",
6
+ "Inference": "निष्कर्ष",
7
+ "Train": "आगगाडी",
8
+ "Extra": "अतिरिक्त",
9
+ "Merge Audios": "Merges Tऑडिओ",
10
+ "Processing": "प्रोसेसिंग",
11
+ "Audio Analyzer": "ऑडिओ विश्लेषक",
12
+ "Model Information": "मॉडेल माहिती",
13
+ "Plugins": "प्लगइन्स",
14
+ "Download": "डाउनलोड करा",
15
+ "Report a Bug": "बग ची नोंद करा",
16
+ "Settings": "सेटिंग्स",
17
+ "Preprocess": "पूर्वप्रक्रिया",
18
+ "Model Name": "मॉडेलचे नाव",
19
+ "Name of the new model.": "नवीन मॉडेलचे नाव .",
20
+ "Enter model name": "मॉडेल नाव प्रविष्ट करा",
21
+ "Dataset Path": "डेटासेट पथ",
22
+ "Path to the dataset folder.": "डेटासेट फोल्डरचा मार्ग.",
23
+ "Refresh Datasets": "डेटासेट रिफ्रेश करा",
24
+ "Dataset Creator": "डेटासेट निर्माता",
25
+ "Dataset Name": "डेटासेट चे नाव",
26
+ "Name of the new dataset.": "नवीन डेटासेटचे नाव.",
27
+ "Enter dataset name": "डेटासेट नाव प्रविष्ट करा",
28
+ "Upload Audio Dataset": "ऑडिओ डेटासेट अपलोड करा",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "ऑडिओ फाइल डेटासेटमध्ये यशस्वीरित्या जोडली गेली आहे. कृपया प्रीप्रोसेस बटणावर क्लिक करा.",
30
+ "Enter dataset path": "डेटासेट मार्ग प्रविष्ट करा",
31
+ "Sampling Rate": "नमुना दर",
32
+ "The sampling rate of the audio files.": "ऑडिओ फायलींचे नमुने घेण्याचा दर.",
33
+ "RVC Version": "आरव्हीसी आवृत्ती",
34
+ "The RVC version of the model.": "मॉडेलची आरव्हीसी आवृत्ती.",
35
+ "Preprocess Dataset": "Preprocess Dataset",
36
+ "Extract": "अर्क",
37
+ "Hop Length": "हॉप लांबी",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "प्रणालीला महत्त्वपूर्ण खेळपट्टी बदलाकडे संक्रमण होण्यासाठी लागणारा कालावधी दर्शवितो. लहान हॉप लांबीसाठी अनुमानासाठी अधिक वेळ लागतो परंतु खेळपट्टीची अचूकता जास्त असते.",
39
+ "Batch Size": "बॅच आकार",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "हे आपल्या जीपीयूच्या उपलब्ध व्हीआरएएमसह संरेखित करण्याचा सल्ला दिला जातो. 4 ची सेटिंग सुधारित अचूकता परंतु हळू प्रक्रिया प्रदान करते, तर 8 वेगवान आणि मानक परिणाम प्रदान करते.",
41
+ "Save Every Epoch": "प्रत्येक युग वाचवा",
42
+ "Determine at how many epochs the model will saved at.": "मॉडेल किती युगात जतन करेल हे ठरवा.",
43
+ "Total Epoch": "एकूण युग",
44
+ "Specifies the overall quantity of epochs for the model training process.": "मॉडेल प्रशिक्षण प्र���्रियेसाठी युगांची एकूण मात्रा निर्दिष्ट करते.",
45
+ "Pretrained": "पूर्वप्रशिक्षित",
46
+ "Save Only Latest": "फक्त लेटेस्ट सेव्ह करा",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "ही सेटिंग सक्षम केल्याने जी आणि डी फायली केवळ त्यांच्या अलीकडील आवृत्त्या वाचवतील आणि स्टोरेज स्पेस प्रभावीपणे जतन करतील.",
48
+ "Save Every Weights": "प्रत्येक वजन वाचवा",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "ही सेटिंग आपल्याला प्रत्येक युगाच्या शेवटी मॉडेलची वजने वाचविण्यास सक्षम करते.",
50
+ "Custom Pretrained": "सानुकूल पूर्वप्रशिक्षित",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "सानुकूल पूर्वप्रशिक्षित मॉडेल्स चा वापर केल्यास उत्कृष्ट परिणाम मिळू शकतात, कारण विशिष्ट वापर प्रकरणानुसार सर्वात योग्य पूर्वप्रशिक्षित मॉडेल्स ची निवड केल्यास कार्यक्षमता लक्षणीय वाढू शकते.",
52
+ "Upload Pretrained Model": "पूर्वप्रशिक्षित मॉडेल अपलोड करा",
53
+ "Refresh Custom Pretraineds": "रिफ्रेश सानुकूल पूर्वप्रशिक्षित",
54
+ "Pretrained Custom Settings": "पूर्वप्रशिक्षित सानुकूल सेटिंग्ज",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "आपण टाकलेली फाईल वैध पूर्वप्रशिक्षित फाइल नाही. कृपया पुन्हा प्रयत्न करा.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ड्रॉपडाउन मेनूमध्ये पूर्वप्रशिक्षित फाइल पाहण्यासाठी रिफ्रेश बटणावर क्लिक करा.",
57
+ "Pretrained G Path": "सानुकूल पूर्वप्रशिक्षित जी",
58
+ "Pretrained D Path": "सानुकूल पूर्वप्रशिक्षित डी",
59
+ "GPU Settings": "जीपीयू सेटिंग्स",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "प्रगत जीपीयू सेटिंग्ज सेट करा, चांगल्या जीपीयू आर्किटेक्चर असलेल्या वापरकर्त्यांसाठी शिफारस केली आहे.",
61
+ "GPU Custom Settings": "जीपीयू सानुकूल सेटिंग्स",
62
+ "GPU Number": "जीपीयू नंबर",
63
+ "0 to ∞ separated by -": "0 ते ∞ वेगळे केले जातात -",
64
+ "GPU Information": "जीपीयू माहिती",
65
+ "Pitch Guidance": "खेळपट्टी मार्गदर्शन",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "खेळपट्टीमार्गदर्शनाचा वापर करून मूळ आवाजाच्या खेळपट्टीसह त्याच्या अंतर्मुखतेचे प्रतिबिंब उमटविणे शक्य होते. हे वैशिष्ट्य गायन आणि इतर दृश्यांसाठी विशेषतः मौल्यवान आहे जिथे मूळ सूर किंवा पिच पॅटर्न जतन करणे आवश्यक आहे.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "स्वत: चे प्रशिक्षण देताना पूर्वप्रशिक्षित मॉडेल्स वापरा. हा दृष्टिकोन प्रशिक्षण कालावधी कमी करतो आणि एकंदर गुणवत्ता वाढवतो.",
68
+ "Extract Features": "अर्क वैशिष्ट्ये",
69
+ "Start Training": "प्रशिक्षण सुरू करा",
70
+ "Generate Index": "इंडेक्स तयार करा",
71
+ "Voice Model": "व्हॉइस मॉडेल",
72
+ "Select the voice model to use for the conversion.": "रूपांतरणासाठी वापरण्यासाठी व्हॉइस मॉडेल निवडा.",
73
+ "Index File": "अनुक्रमणिका फाइल",
74
+ "Select the index file to use for the conversion.": "रूपांतरणासाठी वापरण्यासाठी अनुक्रमणिका फाइल निवडा.",
75
+ "Refresh": "टवटवी आणणे",
76
+ "Unload Voice": "आवाज अनलोड करा",
77
+ "Single": "अविवाहित",
78
+ "Upload Audio": "ऑडिओ अपलोड करा",
79
+ "Select Audio": "ऑडिओ निवडा",
80
+ "Select the audio to convert.": "रूपांतरित करण्यासाठी ऑडिओ निवडा.",
81
+ "Advanced Settings": "प्रगत सेटिंग्ज",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "स्पष्ट आउटपुट (मालमत्ता / ऑडिओमधील सर्व ऑडिओ हटवतात)",
83
+ "Custom Output Path": "सानुकूल आउटपुट पथ",
84
+ "Output Path": "आउटपुट पथ",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "तो मार्ग जिथे आउटपुट ऑडिओ जतन केला जाईल, मालमत्ता / ऑडिओ / output.wav मध्ये डिफॉल्टद्वारे",
86
+ "Split Audio": "स्प्लिट ऑडिओ",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "काही प्रकरणांमध्ये चांगले परिणाम मिळविण्यासाठी अनुमानासाठी ऑडिओचे तुकडे करा.",
88
+ "Autotune": "Autotune",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "गायन रूपांतरणासाठी शिफारस केलेल्या आपल्या निष्कर्षांवर सॉफ्ट ऑटोट्यून लागू करा.",
90
+ "Clean Audio": "स्वच्छ ऑडिओ",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "ध्वनी शोध अल्गोरिदम वापरुन आपले ऑडिओ आउटपुट स्वच्छ करा, ऑडिओ बोलण्यासाठी शिफारस केली आहे.",
92
+ "Clean Strength": "स्वच्छ शक्ती",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "आपल्याला हव्या असलेल्या ऑडिओमध्ये क्लीन-अप पातळी सेट करा, आपण ते जितके वाढवाल तितके ते साफ होईल, परंतु ऑडिओ अधिक संकुचित होण्याची शक्यता आहे.",
94
+ "Pitch": "खेळपट्टी",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "ऑडिओची खेळपट्टी सेट करा, किंमत जितकी जास्त तितकी खेळपट्टी जास्त.",
96
+ "Filter Radius": "फिल्टर त्रिज्या",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "जर संख्या तीनपेक्षा जास्त किंवा समान असेल तर संकलित टोन परिणामांवर मध्यम फिल्टरिंग वापरल्यास श्वसन कमी होण्याची क्षमता असते.",
98
+ "Search Feature Ratio": "शोध वैशिष्ट्य गुणोत्तर",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "अनुक्रमणिका संचिकेने टाकलेला प्रभाव; उच्च मूल्य अधिक प्रभावाशी संबंधित आहे. तथापि, कमी मूल्यांची निवड केल्याने ऑडिओमध्ये असलेल्या कलाकृती कमी होण्��ास मदत होते.",
100
+ "Volume Envelope": "Volume लिफाफा",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "आउटपुटच्या व्हॉल्यूम लिफाफ्यासह पर्याय किंवा मिश्रण करा. गुणोत्तर 1 च्या जितके जवळ असेल तितके आउटपुट लिफाफा वापरला जातो.",
102
+ "Protect Voiceless Consonants": "आवाजहीन व्यंजनांचे रक्षण करा",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "इलेक्ट्रो-ध्वनिक फाटणे आणि इतर कलाकृती टाळण्यासाठी विशिष्ट व्यंजने आणि श्वासोच्छवासाच्या आवाजांचे रक्षण करा. पॅरामीटरला त्याच्या 0.5 च्या जास्तीत जास्त मूल्यावर खेचणे व्यापक संरक्षण प्रदान करते. तथापि, हे मूल्य कमी केल्याने अनुक्रमणिका प्रभाव संभाव्यत: कमी करताना संरक्षणाची व्याप्ती कमी होऊ शकते.",
104
+ "Pitch extraction algorithm": "पिच निष्कर्षण अल्गोरिदम",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "ऑडिओ रूपांतरणासाठी वापरण्यासाठी पिच एक्सट्रॅक्शन अल्गोरिदम. डिफॉल्ट अल्गोरिदम आरएमव्हीपीई आहे, ज्याची शिफारस बहुतेक प्रकरणांमध्ये केली जाते.",
106
+ "Convert": "धर्मांतर करा",
107
+ "Export Audio": "निर्यात ऑडिओ",
108
+ "Batch": "तुकडी",
109
+ "Input Folder": "इनपुट फोल्डर",
110
+ "Select the folder containing the audios to convert.": "रूपांतरित करण्यासाठी ऑडिओ असलेले फोल्डर निवडा.",
111
+ "Enter input path": "इनपुट पथ प्रविष्ट करा",
112
+ "Output Folder": "आउटपुट फोल्डर",
113
+ "Select the folder where the output audios will be saved.": "फोल्डर निवडा जेथे आउटपुट ऑडिओ सेव्ह केले जातील.",
114
+ "Enter output path": "आउटपुट पथ प्रविष्ट करा",
115
+ "Get information about the audio": "ऑडिओबद्दल माहिती मिळवा",
116
+ "Information about the audio file": "ऑडिओ फाईलची माहिती",
117
+ "Waiting for information...": "माहितीच्या प्रतीक्षेत...",
118
+ "## Voice Blender": "## व्हॉइस ब्लेंडर",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "दोन व्हॉईस मॉडेल निवडा, आपली इच्छित मिश्रण टक्केवारी सेट करा आणि त्यांना पूर्णपणे नवीन आवाजात मिसळा.",
120
+ "Voice Blender": "व्हॉइस ब्लेंडर",
121
+ "Drag and drop your model here": "आपले मॉडेल येथे खेचून टाका आणि सोडा",
122
+ "You can also use a custom path.": "आपण सानुकूल मार्ग देखील वापरू शकता.",
123
+ "Blend Ratio": "मिश्रण गुणोत्तर",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "एका किंवा दुसर्या बाजूला स्थिती अधिक समायोजित केल्याने मॉडेल पहिल्या किंवा दुसर्या बाजूला अधिक समान होईल.",
125
+ "Fusion": "फ्यूजन",
126
+ "Path to Model": "मॉडेल चा मार्ग",
127
+ "Enter path to model": "मॉडेलचा मार्ग प्रविष्ट करा",
128
+ "Model information to be placed": "मॉडेल माहिती ठेवली जाईल",
129
+ "Inroduce the model information": "मॉडे��� ची माहिती सादर करा",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "मॉडेलमध्ये ठेवली जाणारी माहिती (आपण ती रिकामी ठेवू शकता किंवा काहीही टाकू शकता).",
131
+ "View model information": "मॉडेल माहिती पहा",
132
+ "Introduce the model pth path": "मॉडेल पीटीएच पथ सादर करा",
133
+ "View": "पहा",
134
+ "Model extraction": "मॉडेल निष्कर्षण",
135
+ "Model conversion": "मॉडेल रूपांतरण",
136
+ "Pth file": "पीटीएच फाईल",
137
+ "Output of the pth file": "पीटीएच फाईलचे आउटपुट",
138
+ "# How to Report an Issue on GitHub": "# गिटहबवर एखाद्या समस्येची नोंद कशी करावी",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. आपण अनुभवत असलेल्या समस्येचे रेकॉर्डिंग सुरू करण्यासाठी खालील 'रेकॉर्ड स्क्रीन' बटणावर क्लिक करा.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "२. अंक रेकॉर्ड िंग पूर्ण झाल्यावर 'स्टॉप रेकॉर्डिंग' बटणावर क्लिक करा (तेच बटण, पण तुम्ही सक्रियपणे रेकॉर्डिंग करत आहात की नाही यावर अवलंबून लेबल बदलते).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [गिटहब इश्यूज] (https://github.com/IAHispano/Applio/issues) वर जा आणि 'न्यू इश्यू' बटणावर क्लिक करा.",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. प्रदान केलेले इश्यू टेम्पलेट पूर्ण करा, आवश्यकतेनुसार तपशील समाविष्ट करण्याची खात्री करा आणि मागील चरणातून रेकॉर्ड केलेली फाइल अपलोड करण्यासाठी मालमत्ता विभागाचा वापर करा.",
143
+ "Record Screen": "रेकॉर्ड स्क्रीन",
144
+ "Record": "नोंदणे",
145
+ "Stop Recording": "रेकॉर्डिंग थांबवा",
146
+ "Introduce the model .pth path": "मॉडेल .पीटीएच पथ सादर करा",
147
+ "See Model Information": "मॉडेल माहिती पहा",
148
+ "## Download Model": "## मॉडेल डाऊनलोड करा",
149
+ "Model Link": "मॉडेल लिंक",
150
+ "Introduce the model link": "मॉडेल लिंक ची ओळख करून द्या",
151
+ "Download Model": "मॉडेल डाउनलोड करा",
152
+ "## Drop files": "## फाइल्स ड्रॉप करा",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "आपली .pth फाइल आणि .अनुक्रमणिका फाईल या जागेत खेचून घ्या. एकाला ओढून घ्या आणि मग दुसरं.",
154
+ "TTS Voices": "टीटीएस आवाज",
155
+ "Select the TTS voice to use for the conversion.": "रूपांतरणासाठी वापरण्यासाठी टीटीएस आवाज निवडा.",
156
+ "Text to Synthesize": "संश्लेषित करण्यासाठी मजकूर",
157
+ "Enter the text to synthesize.": "संश्लेषित करण्यासाठी मजकूर प्रविष्ट करा.",
158
+ "Or you can upload a .txt file": "किंवा तुम्ही .txt फाईल अपलोड करू शकता",
159
+ "Enter text to synthesize": "संश्लेषित करण्यासाठी मजकूर प्रविष्ट करा",
160
+ "Output Path for TTS Audio": "टीटीएस ऑडिओसाठी आउटपुट पथ",
161
+ "Output Path for RVC Audio": "आरव्हीसी ऑडिओसाठी आउटपुट पथ",
162
+ "Enable Applio integration with Discord presence": "डिस्कॉर्ड उपस्थितीसह अनुप्रयोग एकीकरण सक्षम करा",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "हे डिस्कॉर्डमध्ये सध्याची ऍप्लिओ क्रियाकलाप प्रदर्शित करण्याची शक्यता सक्रिय करेल.",
164
+ "Enable Applio integration with applio.org/models using flask": "फ्लास्क वापरुन applio.org/models अनुप्रयोगा एकीकरण सक्षम करा",
165
+ "It will activate the possibility of downloading models with a click from the website.": "हे वेबसाइटवरून एका क्लिकवर मॉडेल्स डाउनलोड करण्याची शक्यता सक्रिय करेल.",
166
+ "Theme": "थीम :",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "आपण वापरू इच्छित थीम निवडा. (अनुप्रयोग पुन्हा सुरू करणे आवश्यक आहे)",
168
+ "Language": "भाषा",
169
+ "Select the language you want to use. (Requires restarting Applio)": "आपल्याला जी भाषा वापरायची आहे ती निवडा. (अनुप्रयोग पुन्हा सुरू करणे आवश्यक आहे)",
170
+ "Plugin Installer": "Plugin Installer",
171
+ "Drag your plugin.zip to install it": "ते स्थापित करण्यासाठी आपले plugin.zip खेचून घ्या",
172
+ "Version Checker": "Version Checker",
173
+ "Check which version of Applio is the latest to see if you need to update.": "आपल्याला अद्ययावत करण्याची आवश्यकता आहे की नाही हे पाहण्यासाठी अ ॅप्लिओची कोणती आवृत्ती नवीनतम आहे ते पहा.",
174
+ "Check for updates": "अपडेट्ससाठी पहा"
175
+ }
assets/i18n/languages/ms_MS.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Alat pengklonan suara muktamad, dioptimumkan dengan teliti untuk kuasa yang tiada tandingan, modulariti, dan pengalaman mesra pengguna.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Bahagian ini mengandungi beberapa utiliti tambahan yang selalunya berada dalam fasa percubaan.",
4
+ "Output Information": "Maklumat Output",
5
+ "The output information will be displayed here.": "Maklumat output akan dipaparkan di sini.",
6
+ "Inference": "Inferens",
7
+ "Train": "Kereta api",
8
+ "Extra": "Tambahan",
9
+ "Merge Audios": "Mencantumkan Audio",
10
+ "Processing": "Pemprosesan",
11
+ "Audio Analyzer": "Penganalisis Audio",
12
+ "Model Information": "Maklumat Model",
13
+ "Plugins": "Plugin",
14
+ "Download": "Muat turun",
15
+ "Report a Bug": "Laporkan pepijat",
16
+ "Settings": "Seting",
17
+ "Preprocess": "Praproses",
18
+ "Model Name": "Nama Model",
19
+ "Name of the new model.": "Nama model baharu.",
20
+ "Enter model name": "Masukkan nama model",
21
+ "Dataset Path": "Laluan Set Data",
22
+ "Path to the dataset folder.": "Laluan ke folder set data.",
23
+ "Refresh Datasets": "Menyegar semula Set Data",
24
+ "Dataset Creator": "Pencipta Set Data",
25
+ "Dataset Name": "Nama Set Data",
26
+ "Name of the new dataset.": "Nama set data baru.",
27
+ "Enter dataset name": "Masukkan nama set data",
28
+ "Upload Audio Dataset": "Muat naik Set Data Audio",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Fail audio telah berjaya ditambahkan pada set data. Sila klik butang praproses.",
30
+ "Enter dataset path": "Memasukkan laluan set data",
31
+ "Sampling Rate": "Kadar Persampelan",
32
+ "The sampling rate of the audio files.": "Kadar pensampelan fail audio.",
33
+ "RVC Version": "Versi RVC",
34
+ "The RVC version of the model.": "Versi RVC model.",
35
+ "Preprocess Dataset": "Set Data Praproses",
36
+ "Extract": "Cabutan",
37
+ "Hop Length": "Panjang Hop",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Menunjukkan tempoh yang diperlukan untuk sistem beralih kepada perubahan padang yang ketara. Panjang hop yang lebih kecil memerlukan lebih banyak masa untuk kesimpulan tetapi cenderung menghasilkan ketepatan padang yang lebih tinggi.",
39
+ "Batch Size": "Saiz kelompok",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Anda dinasihatkan untuk menyelaraskannya dengan VRAM GPU anda yang tersedia. Tetapan 4 menawarkan ketepatan yang lebih baik tetapi pemprosesan yang lebih perlahan, manakala 8 memberikan hasil yang lebih cepat dan standard.",
41
+ "Save Every Epoch": "Simpan Setiap Zaman",
42
+ "Determine at how many epochs the model will saved at.": "Tentukan berapa zaman model akan disimpan.",
43
+ "Total Epoch": "Jumlah Zaman",
44
+ "Specifies the overall quantity of epochs for the model training process.": "Menentukan kuantiti keseluruhan zaman untuk proses latihan model.",
45
+ "Pretrained": "Dipralatih",
46
+ "Save Only Latest": "Simpan Terkini Sahaja",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Mendayakan tetapan ini akan menyebabkan fail G dan D menyimpan hanya versi terbaru mereka, menjimatkan ruang storan dengan berkesan.",
48
+ "Save Every Weights": "Jimat Setiap Berat",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Tetapan ini membolehkan anda menjimatkan berat model pada akhir setiap zaman.",
50
+ "Custom Pretrained": "Pralatih Tersuai",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "Menggunakan model pra-latihan tersuai boleh membawa kepada hasil yang unggul, kerana memilih model pra-latihan yang paling sesuai yang disesuaikan dengan kes penggunaan tertentu dapat meningkatkan prestasi dengan ketara.",
52
+ "Upload Pretrained Model": "Muat naik Model Pralatih",
53
+ "Refresh Custom Pretraineds": "Menyegar Semula Pralatihan Tersuai",
54
+ "Pretrained Custom Settings": "Seting Tersuai Pralatih",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "Fail yang anda gugurkan bukan fail pralatih yang sah. Sila cuba lagi.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Klik butang segar semula untuk melihat fail pralatih dalam menu juntai bawah.",
57
+ "Pretrained G Path": "Custom Pretrained G",
58
+ "Pretrained D Path": "Custom Pretrained D",
59
+ "GPU Settings": "Seting GPU",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Menetapkan tetapan GPU lanjutan, disyorkan untuk pengguna dengan seni bina GPU yang lebih baik.",
61
+ "GPU Custom Settings": "Seting Tersuai GPU",
62
+ "GPU Number": "Nombor GPU",
63
+ "0 to ∞ separated by -": "0 hingga ∞ dipisahkan oleh -",
64
+ "GPU Information": "Maklumat GPU",
65
+ "Pitch Guidance": "Panduan Padang",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Dengan menggunakan panduan padang, ia boleh dilaksanakan untuk mencerminkan intonasi suara asal, termasuk padangnya. Ciri ini amat berharga untuk nyanyian dan senario lain di mana mengekalkan corak melodi atau padang asal adalah penting.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Gunakan model yang telah dilatih semasa melatih anda sendiri. Pendekatan ini mengurangkan tempoh latihan dan meningkatkan kualiti keseluruhan.",
68
+ "Extract Features": "Ciri Ekstrak",
69
+ "Start Training": "Mulakan Latihan",
70
+ "Generate Index": "Menjana Indeks",
71
+ "Voice Model": "Model Suara",
72
+ "Select the voice model to use for the conversion.": "Pilih model suara untuk digunakan untuk penukaran.",
73
+ "Index File": "Fail Indeks",
74
+ "Select the index file to use for the conversion.": "Pilih fail indeks untuk digunakan untuk penukaran.",
75
+ "Refresh": "Refresh",
76
+ "Unload Voice": "Memunggah Suara",
77
+ "Single": "Tunggal",
78
+ "Upload Audio": "Muat naik Audio",
79
+ "Select Audio": "Pilih Audio",
80
+ "Select the audio to convert.": "Pilih audio untuk ditukar.",
81
+ "Advanced Settings": "Seting Lanjutan",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Kosongkan Output (Memadamkan semua audio dalam aset/audio)",
83
+ "Custom Output Path": "Laluan Output Tersuai",
84
+ "Output Path": "Laluan Output",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Laluan di mana audio output akan disimpan, secara lalai dalam aset/audio/output.wav",
86
+ "Split Audio": "Audio Pisah",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Pisahkan audio kepada ketulan untuk kesimpulan untuk mendapatkan hasil yang lebih baik dalam beberapa kes.",
88
+ "Autotune": "Autotune",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Gunakan autotune lembut pada kesimpulan anda, disyorkan untuk penukaran nyanyian.",
90
+ "Clean Audio": "Audio Bersih",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Bersihkan output audio anda menggunakan algoritma pengesanan bunyi, disyorkan untuk bercakap audio.",
92
+ "Clean Strength": "Kekuatan Bersih",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Tetapkan tahap pembersihan ke audio yang anda mahukan, semakin banyak anda meningkatkannya semakin banyak ia akan membersihkan, tetapi ada kemungkinan audio akan lebih dimampatkan.",
94
+ "Pitch": "Pitch",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Tetapkan padang audio, semakin tinggi nilai, semakin tinggi padang.",
96
+ "Filter Radius": "Jejari Penapis",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Sekiranya bilangannya lebih besar daripada atau sama dengan tiga, menggunakan penapisan median pada hasil nada yang dikumpulkan berpotensi untuk mengurangkan pernafasan.",
98
+ "Search Feature Ratio": "Nisbah Ciri Carian",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Pengaruh yang dikenakan oleh fail indeks; Nilai yang lebih tinggi sepadan dengan pengaruh yang lebih besar. Walau bagaimanapun, memilih nilai yang lebih rendah boleh membantu mengurangkan artifak yang terdapat dalam audio.",
100
+ "Volume Envelope": "Sampul Kelantangan",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Gantikan atau gabungkan dengan sampul kelantangan output. Semakin dekat nisbahnya kepada 1, semakin banyak sampul output digunakan.",
102
+ "Protect Voiceless Consonants": "Lindungi Konsonan Tanpa Suara",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Lindungi konsonan yang berbeza dan bunyi pernafasan untuk mengelakkan koyakan elektro-akustik dan artifak lain. Menarik parameter ke nilai maksimum 0.5 menawarkan perlindungan komprehensif. Walau bagaimanapun, mengurangkan nilai ini mungkin mengurangkan tahap perlindungan sambil berpotensi mengurangkan kesan pengindeksan.",
104
+ "Pitch extraction algorithm": "Algoritma pengekstrakan padang",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Algoritma pengekstrakan padang untuk digunakan untuk penukaran audio. Algoritma lalai ialah rmvpe, yang disyorkan untuk kebanyakan kes.",
106
+ "Convert": "Menukar",
107
+ "Export Audio": "Eksport Audio",
108
+ "Batch": "Kelompok",
109
+ "Input Folder": "Input Folder",
110
+ "Select the folder containing the audios to convert.": "Pilih folder yang mengandungi audio untuk ditukar.",
111
+ "Enter input path": "Masukkan laluan input",
112
+ "Output Folder": "Output Folder",
113
+ "Select the folder where the output audios will be saved.": "Pilih folder di mana audio output akan disimpan.",
114
+ "Enter output path": "Masukkan laluan output",
115
+ "Get information about the audio": "Mendapatkan maklumat tentang audio",
116
+ "Information about the audio file": "Maklumat mengenai fail audio",
117
+ "Waiting for information...": "Menunggu maklumat...",
118
+ "## Voice Blender": "## Pengisar Suara",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Pilih dua model suara, tetapkan peratusan campuran yang anda inginkan, dan gabungkannya ke dalam suara yang sama sekali baru.",
120
+ "Voice Blender": "Pengisar Suara",
121
+ "Drag and drop your model here": "Seret dan lepas model anda di sini",
122
+ "You can also use a custom path.": "Anda juga boleh menggunakan laluan tersuai.",
123
+ "Blend Ratio": "Nisbah Campuran",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Melaraskan kedudukan lebih ke arah satu sisi atau yang lain akan menjadikan model lebih serupa dengan yang pertama atau kedua.",
125
+ "Fusion": "Gabungan",
126
+ "Path to Model": "Laluan ke Model",
127
+ "Enter path to model": "Masukkan laluan ke model",
128
+ "Model information to be placed": "Maklumat model yang akan diletakkan",
129
+ "Inroduce the model information": "Menghasut maklumat model",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "Maklumat yang akan diletakkan dalam model (Anda boleh membiarkannya kosong atau meletakkan apa-apa).",
131
+ "View model information": "Lihat maklumat model",
132
+ "Introduce the model pth path": "Perkenalkan laluan pth model",
133
+ "View": "Lihat",
134
+ "Model extraction": "Pengekstrakan model",
135
+ "Model conversion": "Penukaran model",
136
+ "Pth file": "Pth fail",
137
+ "Output of the pth file": "Output fail pth",
138
+ "# How to Report an Issue on GitHub": "# Cara Melaporkan Isu di GitHub",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Klik pada butang 'Skrin Rekod' di bawah untuk mula merakam isu yang anda alami.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Setelah anda selesai merakam isu ini, klik pada butang 'Hentikan Rakaman' (butang yang sama, tetapi label berubah bergantung pada sama ada anda merakam secara aktif atau tidak).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Pergi ke [Isu GitHub](https://github.com/IAHispano/Applio/issues) dan klik pada butang 'Isu Baru'.",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Lengkapkan templat isu yang disediakan, pastikan untuk memasukkan butiran mengikut keperluan, dan gunakan bahagian aset untuk memuat naik fail yang dirakam dari langkah sebelumnya.",
143
+ "Record Screen": "Skrin Rakam",
144
+ "Record": "Rekod",
145
+ "Stop Recording": "Hentikan Rakaman",
146
+ "Introduce the model .pth path": "Memperkenalkan model laluan .pth",
147
+ "See Model Information": "Lihat Maklumat Model",
148
+ "## Download Model": "## Muat Turun Model",
149
+ "Model Link": "Pautan Model",
150
+ "Introduce the model link": "Memperkenalkan pautan model",
151
+ "Download Model": "Model Muat Turun",
152
+ "## Drop files": "## Jatuhkan fail",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Seret fail .pth dan fail .index anda ke dalam ruang ini. Seret satu dan kemudian yang lain.",
154
+ "TTS Voices": "Suara TTS",
155
+ "Select the TTS voice to use for the conversion.": "Pilih suara TTS untuk digunakan bagi penukaran.",
156
+ "Text to Synthesize": "Teks untuk Mensintesis",
157
+ "Enter the text to synthesize.": "Masukkan teks untuk mensintesiskan.",
158
+ "Or you can upload a .txt file": "Atau anda boleh memuat naik fail .txt",
159
+ "Enter text to synthesize": "Masukkan teks untuk mensintesis saiz",
160
+ "Output Path for TTS Audio": "Laluan output untuk TTS Audio",
161
+ "Output Path for RVC Audio": "Laluan Output untuk Audio RVC",
162
+ "Enable Applio integration with Discord presence": "Dayakan integrasi Applio dengan kehadiran Discord",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Ia akan mengaktifkan kemungkinan memaparkan aktiviti Applio semasa di Discord.",
164
+ "Enable Applio integration with applio.org/models using flask": "Dayakan integrasi Applio dengan applio.org/models menggunakan kelalang",
165
+ "It will activate the possibility of downloading models with a click from the website.": "Ia akan mengaktifkan kemungkinan memuat turun model dengan satu klik dari laman web.",
166
+ "Theme": "Tema",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "Pilih tema yang anda mahu gunakan. (Memerlukan memulakan semula Applio)",
168
+ "Language": "Bahasa",
169
+ "Select the language you want to use. (Requires restarting Applio)": "Pilih bahasa yang anda mahu gunakan. (Memerlukan memulakan semula Applio)",
170
+ "Plugin Installer": "Pemasang Plugin",
171
+ "Drag your plugin.zip to install it": "Seret plugin.zip anda untuk memasangnya",
172
+ "Version Checker": "Penyemak Versi",
173
+ "Check which version of Applio is the latest to see if you need to update.": "Semak versi Applio yang terkini untuk melihat sama ada anda perlu mengemas kini.",
174
+ "Check for updates": "Semak kemas kini"
175
+ }
assets/i18n/languages/nl_NL.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Ultieme tool voor het klonen van stemmen, zorgvuldig geoptimaliseerd voor ongeëvenaarde kracht, modulariteit en gebruiksvriendelijke ervaring.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Deze sectie bevat enkele extra hulpprogramma's die zich vaak in experimentele fasen bevinden.",
4
+ "Output Information": "Output Informatie",
5
+ "The output information will be displayed here.": "De uitvoerinformatie wordt hier weergegeven.",
6
+ "Inference": "Conclusie",
7
+ "Train": "Trein",
8
+ "Extra": "Extra",
9
+ "Merge Audios": "Audio samenvoegen",
10
+ "Processing": "Verwerking",
11
+ "Audio Analyzer": "Audio Analyzer",
12
+ "Model Information": "Modelinformatie",
13
+ "Plugins": "Insteekplaatsen",
14
+ "Download": "Downloaden",
15
+ "Report a Bug": "Een bug melden",
16
+ "Settings": "Instellingen",
17
+ "Preprocess": "Voorbewerking",
18
+ "Model Name": "Modelnaam",
19
+ "Name of the new model.": "Naam van het nieuwe model.",
20
+ "Enter model name": "Voer de modelnaam in",
21
+ "Dataset Path": "Pad naar gegevensset",
22
+ "Path to the dataset folder.": "Pad naar de map met gegevenssets.",
23
+ "Refresh Datasets": "Gegevenssets vernieuwen",
24
+ "Dataset Creator": "Maker van gegevenssets",
25
+ "Dataset Name": "Naam van gegevensset",
26
+ "Name of the new dataset.": "Naam van de nieuwe dataset.",
27
+ "Enter dataset name": "Voer de naam van de gegevensset in",
28
+ "Upload Audio Dataset": "Audiogegevensset uploaden",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Het audiobestand is toegevoegd aan de dataset. Klik op de knop voorbewerking.",
30
+ "Enter dataset path": "Pad naar gegevensset invoeren",
31
+ "Sampling Rate": "Bemonsteringsfrequentie",
32
+ "The sampling rate of the audio files.": "De bemonsteringsfrequentie van de audiobestanden.",
33
+ "RVC Version": "RVC-versie",
34
+ "The RVC version of the model.": "De RVC-versie van het model.",
35
+ "Preprocess Dataset": "Gegevensset voor het proces",
36
+ "Extract": "Extract",
37
+ "Hop Length": "Hop Lengte",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Geeft de tijd aan die nodig is om het systeem over te zetten op een significante toonhoogteverandering. Kleinere hoplengtes hebben meer tijd nodig om conclusies te trekken, maar hebben de neiging om een hogere toonhoogtenauwkeurigheid op te leveren.",
39
+ "Batch Size": "Batchgrootte",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Het is aan te raden om deze af te stemmen op het beschikbare VRAM van je GPU. Een instelling van 4 biedt verbeterde nauwkeurigheid maar langzamere verwerking, terwijl 8 snellere en standaardresultaten oplevert.",
41
+ "Save Every Epoch": "Red elk tijdperk",
42
+ "Determine at how many epochs the model will saved at.": "Bepaal op hoeveel epochs het model wordt opgeslagen.",
43
+ "Total Epoch": "Totale tijdvak",
44
+ "Specifies the overall quantity of epochs for the model training process.": "Hiermee geeft u het totale aantal epochs op voor het modeltrainingsproces.",
45
+ "Pretrained": "Voorgetraind",
46
+ "Save Only Latest": "Alleen de nieuwste opslaan",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Als u deze instelling inschakelt, worden de G- en D-bestanden alleen hun meest recente versies opgeslagen, waardoor er effectief opslagruimte wordt bespaard.",
48
+ "Save Every Weights": "Sla alle gewichten op",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Met deze instelling kunt u de gewichten van het model aan het einde van elk tijdperk opslaan.",
50
+ "Custom Pretrained": "Aangepaste voorgetrainde",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "Het gebruik van op maat gemaakte voorgetrainde modellen kan tot superieure resultaten leiden, aangezien het selecteren van de meest geschikte vooraf getrainde modellen die zijn afgestemd op de specifieke gebruikssituatie de prestaties aanzienlijk kan verbeteren.",
52
+ "Upload Pretrained Model": "Vooraf getraind model uploaden",
53
+ "Refresh Custom Pretraineds": "Aangepaste vooraf getrainde bestanden vernieuwen",
54
+ "Pretrained Custom Settings": "Vooraf getrainde aangepaste instellingen",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "Het bestand dat u hebt neergezet, is geen geldig vooraf getraind bestand. Probeer het opnieuw.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Klik op de knop Vernieuwen om het vooraf getrainde bestand in het vervolgkeuzemenu te zien.",
57
+ "Pretrained G Path": "Aangepaste voorgetrainde G",
58
+ "Pretrained D Path": "Aangepaste voorgetrainde D",
59
+ "GPU Settings": "GPU-instellingen",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Hiermee stelt u geavanceerde GPU-instellingen in, aanbevolen voor gebruikers met een betere GPU-architectuur.",
61
+ "GPU Custom Settings": "Aangepaste GPU-instellingen",
62
+ "GPU Number": "GPU-nummer",
63
+ "0 to ∞ separated by -": "0 tot ∞ gescheiden door -",
64
+ "GPU Information": "GPU-informatie",
65
+ "Pitch Guidance": "Begeleiding bij het veld",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Door gebruik te maken van toonhoogtebegeleiding wordt het mogelijk om de intonatie van de originele stem, inclusief de toonhoogte, te spiegelen. Deze functie is met name waardevol voor zang en andere scenario's waarbij het behoud van de originele melodie of het toonhoogtepatroon essentieel is.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Gebruik vooraf getrainde modellen bij het trainen van uw eigen modellen. Deze aanpak verkort de trainingsduur en verbetert de algehele kwaliteit.",
68
+ "Extract Features": "Extraheer functies",
69
+ "Start Training": "Begin met trainen",
70
+ "Generate Index": "Index genereren",
71
+ "Voice Model": "Stem Model",
72
+ "Select the voice model to use for the conversion.": "Selecteer het spraakmodel dat u voor de conversie wilt gebruiken.",
73
+ "Index File": "Index-bestand",
74
+ "Select the index file to use for the conversion.": "Selecteer het indexbestand dat u voor de conversie wilt gebruiken.",
75
+ "Refresh": "Opfrissen",
76
+ "Unload Voice": "Stem lossen",
77
+ "Single": "Ongetrouwd",
78
+ "Upload Audio": "Audio uploaden",
79
+ "Select Audio": "Selecteer Audio",
80
+ "Select the audio to convert.": "Selecteer de audio die u wilt converteren.",
81
+ "Advanced Settings": "Geavanceerde instellingen",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Uitvoer wissen (verwijdert alle audio in assets/audio)",
83
+ "Custom Output Path": "Aangepast uitvoerpad",
84
+ "Output Path": "Uitgang Pad",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Het pad waar de uitvoeraudio wordt opgeslagen, standaard in assets/audios/output.wav",
86
+ "Split Audio": "Audio splitsen",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Splits de audio op in stukken voor gevolgtrekking om in sommige gevallen betere resultaten te verkrijgen.",
88
+ "Autotune": "Automatisch afstemmen",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Pas een zachte autotune toe op je inferenties, aanbevolen voor zangconversies.",
90
+ "Clean Audio": "Schone audio",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Reinig uw audio-uitvoer met behulp van ruisdetectie-algoritmen, aanbevolen voor gesproken audio.",
92
+ "Clean Strength": "Schone kracht",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Stel het opschoningsniveau in op de gewenste audio, hoe meer u het verhoogt, hoe meer het zal opschonen, maar het is mogelijk dat de audio meer gecomprimeerd zal zijn.",
94
+ "Pitch": "Toonhoogte",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Stel de toonhoogte van de audio in, hoe hoger de waarde, hoe hoger de toonhoogte.",
96
+ "Filter Radius": "Filter Straal",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Als het getal groter is dan of gelijk is aan drie, kan het gebruik van mediane filtering op de verzamelde toonresultaten de ademhaling verminderen.",
98
+ "Search Feature Ratio": "Verhouding zoekfunctie",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Invloed uitgeoefend door het indexbestand; Een hogere waarde komt overeen met een grotere invloed. Als u echter voor lagere waarden kiest, kunt u de artefacten in de audio verminderen.",
100
+ "Volume Envelope": "Volume Envelop",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Vervang of meng met de volume-envelop van de uitvoer. Hoe dichter de verhouding bij 1 ligt, hoe meer de uitvoerenveloppe wordt gebruikt.",
102
+ "Protect Voiceless Consonants": "Bescherm stemloze medeklinkers",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Bescherm verschillende medeklinkers en ademhalingsgeluiden om elektro-akoestische scheuren en andere artefacten te voorkomen. Door de parameter naar de maximale waarde van 0,5 te trekken, wordt uitgebreide bescherming geboden. Het verlagen van deze waarde kan echter de mate van bescherming verminderen en mogelijk het indexeringseffect beperken.",
104
+ "Pitch extraction algorithm": "Algoritme voor het extraheren van toonhoogte",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Pitch-extractie-algoritme om te gebruiken voor de audioconversie. Het standaardalgoritme is rmvpe, wat in de meeste gevallen wordt aanbevolen.",
106
+ "Convert": "Omzetten",
107
+ "Export Audio": "Audio exporteren",
108
+ "Batch": "Batch",
109
+ "Input Folder": "Invoermap",
110
+ "Select the folder containing the audios to convert.": "Selecteer de map met de audio die u wilt converteren.",
111
+ "Enter input path": "Voer het invoerpad in",
112
+ "Output Folder": "Uitvoer map",
113
+ "Select the folder where the output audios will be saved.": "Selecteer de map waar de uitvoeraudio wordt opgeslagen.",
114
+ "Enter output path": "Voer het uitvoerpad in",
115
+ "Get information about the audio": "Informatie over de audio opvragen",
116
+ "Information about the audio file": "Informatie over het audiobestand",
117
+ "Waiting for information...": "Wachten op informatie...",
118
+ "## Voice Blender": "## Stem Blender",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Selecteer twee stemmodellen, stel het gewenste mengpercentage in en meng ze tot een geheel nieuwe stem.",
120
+ "Voice Blender": "Stem Blender",
121
+ "Drag and drop your model here": "Sleep uw model hierheen",
122
+ "You can also use a custom path.": "U kunt ook een aangepast pad gebruiken.",
123
+ "Blend Ratio": "Mengverhouding",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Door de positie meer naar de ene of de andere kant aan te passen, lijkt het model meer op het eerste of tweede.",
125
+ "Fusion": "Samensmelting",
126
+ "Path to Model": "Pad naar model",
127
+ "Enter path to model": "Pad naar model invoeren",
128
+ "Model information to be placed": "Te plaatsen modelinformatie",
129
+ "Inroduce the model information": "Produceer de modelinformatie",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "De informatie die in het model moet worden geplaatst (u kunt het leeg laten of alles plaatsen).",
131
+ "View model information": "Modelinformatie weergeven",
132
+ "Introduce the model pth path": "Introduceer het model pth pad",
133
+ "View": "Bekijken",
134
+ "Model extraction": "Extractie van modellen",
135
+ "Model conversion": "Model conversie",
136
+ "Pth file": "Pth-bestand",
137
+ "Output of the pth file": "Uitvoer van het pth-bestand",
138
+ "# How to Report an Issue on GitHub": "# Een probleem melden op GitHub",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Klik op de knop 'Opnamescherm' hieronder om te beginnen met het opnemen van het probleem dat u ondervindt.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Als u klaar bent met het opnemen van het probleem, klikt u op de knop 'Opname stoppen' (dezelfde knop, maar het label verandert afhankelijk van of u actief aan het opnemen bent of niet).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Ga naar [GitHub Issues](https://github.com/IAHispano/Applio/issues) en klik op de knop 'New Issue'.",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Vul het meegeleverde uitgiftesjabloon in, zorg ervoor dat u indien nodig details opneemt en gebruik het gedeelte Activa om het opgenomen bestand uit de vorige stap te uploaden.",
143
+ "Record Screen": "Scherm opnemen",
144
+ "Record": "Record",
145
+ "Stop Recording": "Opname stoppen",
146
+ "Introduce the model .pth path": "Introduceer het model .pth-pad",
147
+ "See Model Information": "Modelinformatie bekijken",
148
+ "## Download Model": "## Model downloaden",
149
+ "Model Link": "Koppeling naar het model",
150
+ "Introduce the model link": "Introduceer de modellink",
151
+ "Download Model": "Model downloaden",
152
+ "## Drop files": "## Bestanden neerzetten",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Sleep uw .pth-bestand en .index-bestand naar deze ruimte. Sleep de ene en dan de andere.",
154
+ "TTS Voices": "TTS-stemmen",
155
+ "Select the TTS voice to use for the conversion.": "Selecteer de TTS-stem die u voor de conversie wilt gebruiken.",
156
+ "Text to Synthesize": "Tekst om te synthetiseren",
157
+ "Enter the text to synthesize.": "Voer de tekst in die u wilt synthetiseren.",
158
+ "Or you can upload a .txt file": "Of u kunt een .txt bestand uploaden",
159
+ "Enter text to synthesize": "Voer tekst in om te synthetiseren",
160
+ "Output Path for TTS Audio": "Uitvoerpad voor TTS-audio",
161
+ "Output Path for RVC Audio": "Uitvoerpad voor RVC-audio",
162
+ "Enable Applio integration with Discord presence": "Applio-integratie inschakelen met Discord-aanwezigheid",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Het activeert de mogelijkheid om de huidige Applio-activiteit in Discord weer te geven.",
164
+ "Enable Applio integration with applio.org/models using flask": "Applio-integratie met applio.org/models inschakelen met behulp van kolf",
165
+ "It will activate the possibility of downloading models with a click from the website.": "Het activeert de mogelijkheid om modellen te downloaden met een klik van de website.",
166
+ "Theme": "Thema",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "Selecteer het thema dat je wilt gebruiken. (Vereist het opnieuw opstarten van Applio)",
168
+ "Language": "Taal",
169
+ "Select the language you want to use. (Requires restarting Applio)": "Selecteer de taal die u wilt gebruiken. (Vereist het opnieuw opstarten van Applio)",
170
+ "Plugin Installer": "Plug-in-installatieprogramma",
171
+ "Drag your plugin.zip to install it": "Sleep uw plugin.zip om deze te installeren",
172
+ "Version Checker": "Versie Checker",
173
+ "Check which version of Applio is the latest to see if you need to update.": "Controleer welke versie van Applio de nieuwste is om te zien of u moet updaten.",
174
+ "Check for updates": "Controleren op updates"
175
+ }
assets/i18n/languages/pa_PA.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "ਅੰਤਮ ਵੌਇਸ ਕਲੋਨਿੰਗ ਟੂਲ, ਬੇਮਿਸਾਲ ਸ਼ਕਤੀ, ਮਾਡਿਊਲਰਿਟੀ, ਅਤੇ ਉਪਭੋਗਤਾ-ਅਨੁਕੂਲ ਅਨੁਭਵ ਲਈ ਧਿਆਨ ਨਾਲ ਅਨੁਕੂਲ ਬਣਾਇਆ ਗਿਆ ਹੈ.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "ਇਸ ਭਾਗ ਵਿੱਚ ਕੁਝ ਵਾਧੂ ਉਪਯੋਗਤਾਵਾਂ ਹਨ ਜੋ ਅਕਸਰ ਪ੍ਰਯੋਗਾਤਮਕ ਪੜਾਵਾਂ ਵਿੱਚ ਹੋ ਸਕਦੀਆਂ ਹਨ।",
4
+ "Output Information": "ਆਊਟਪੁੱਟ ਜਾਣਕਾਰੀ",
5
+ "The output information will be displayed here.": "ਆਉਟਪੁੱਟ ਜਾਣਕਾਰੀ ਇੱਥੇ ਪ੍ਰਦਰਸ਼ਿਤ ਕੀਤੀ ਜਾਵੇਗੀ।",
6
+ "Inference": "ਅਨੁਮਾਨ",
7
+ "Train": "ਟ੍ਰੇਨ",
8
+ "Extra": "ਵਾਧੂ",
9
+ "Merge Audios": "ਆਡੀਓ ਨੂੰ ਮਿਲਾਓ",
10
+ "Processing": "ਪ੍ਰੋਸੈਸਿੰਗ",
11
+ "Audio Analyzer": "ਆਡੀਓ ਵਿਸ਼ਲੇਸ਼ਕ",
12
+ "Model Information": "ਮਾਡਲ ਜਾਣਕਾਰੀ",
13
+ "Plugins": "ਪਲੱਗਇਨ",
14
+ "Download": "ਡਾਊਨਲੋਡ ਕਰੋ",
15
+ "Report a Bug": "ਇੱਕ ਬਗ ਦੀ ਰਿਪੋਰਟ ਕਰੋ",
16
+ "Settings": "ਸੈਟਿੰਗਾਂ",
17
+ "Preprocess": "ਪ੍ਰੀਪ੍ਰੋਸੈਸ",
18
+ "Model Name": "ਮਾਡਲ ਦਾ ਨਾਮ",
19
+ "Name of the new model.": "ਨਵੇਂ ਮਾਡਲ ਦਾ ਨਾਮ।",
20
+ "Enter model name": "ਮਾਡਲ ਨਾਮ ਦਾਖਲ ਕਰੋ",
21
+ "Dataset Path": "ਡਾਟਾਸੈਟ ਪਾਥ",
22
+ "Path to the dataset folder.": "ਡੇਟਾਸੈਟ ਫੋਲਡਰ ਲਈ ਰਾਹ।",
23
+ "Refresh Datasets": "ਡੇਟਾਸੈਟਾਂ ਨੂੰ ਤਾਜ਼ਾ ਕਰੋ",
24
+ "Dataset Creator": "ਡਾਟਾਸੈਟ ਨਿਰਮਾਤਾ",
25
+ "Dataset Name": "ਡੇਟਾਸੈਟ ਨਾਮ",
26
+ "Name of the new dataset.": "ਨਵੇਂ ਡੇਟਾਸੈਟ ਦਾ ਨਾਮ।",
27
+ "Enter dataset name": "ਡੇਟਾਸੈਟ ਦਾ ਨਾਮ ਦਾਖਲ ਕਰੋ",
28
+ "Upload Audio Dataset": "ਆਡੀਓ ਡੇਟਾਸੈਟ ਅੱਪਲੋਡ ਕਰੋ",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "ਆਡੀਓ ਫਾਇਲ ਨੂੰ ਡੇਟਾਸੈਟ ਵਿੱਚ ਸਫਲਤਾਪੂਰਵਕ ਜੋੜਿਆ ਗਿਆ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਪ੍ਰੀਪ੍ਰੋਸੈਸ ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
30
+ "Enter dataset path": "ਡਾਟਾਸੈਟ ਪਾਥ ਦਾਖਲ ਕਰੋ",
31
+ "Sampling Rate": "ਨਮੂਨੇ ਲੈਣ ਦੀ ਦਰ",
32
+ "The sampling rate of the audio files.": "ਆਡੀਓ ਫਾਇਲਾਂ ਦੀ ਨਮੂਨੇ ਲੈਣ ਦੀ ਦਰ।",
33
+ "RVC Version": "RVC ਸੰਸਕਰਣ",
34
+ "The RVC version of the model.": "ਮਾਡਲ ਦਾ ਆਰਵੀਸੀ ਸੰਸਕਰਣ.",
35
+ "Preprocess Dataset": "ਪ੍ਰੀਪ੍ਰੋਸੈਸ ਡੇਟਾਸੈਟ",
36
+ "Extract": "ਐਕਸਟਰੈਕਟ",
37
+ "Hop Length": "ਹੌਪ ਲੰਬਾਈ",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "ਸਿਸਟਮ ਨੂੰ ਮਹੱਤਵਪੂਰਣ ਪਿਚ ਤਬਦੀਲੀ ਵਿੱਚ ਤਬਦੀਲ ਹੋਣ ਵਿੱਚ ਲੱਗਣ ਵਾਲੇ ਸਮੇਂ ਨੂੰ ਦਰਸਾਉਂਦਾ ਹੈ। ਛੋਟੀਆਂ ਹੌਪ ਲੰਬਾਈਆਂ ਨੂੰ ਅਨੁਮਾਨ ਲਗਾਉਣ ਲਈ ਵਧੇਰੇ ਸਮੇਂ ਦੀ ਲੋੜ ਹੁੰਦੀ ਹੈ ਪਰ ਪਿੱਚ ਦੀ ਸਟੀਕਤਾ ਵਧੇਰੇ ਹੁੰਦੀ ਹੈ।",
39
+ "Batch Size": "ਬੈਚ ਦਾ ਆਕਾਰ",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "ਇਸ ਨੂੰ ਆਪਣੇ GPU ਦੇ ਉਪਲਬਧ VRAM ਨਾਲ ਜੋੜਨ ਦੀ ਸਲਾਹ ਦਿੱਤੀ ਜਾਂਦੀ ਹੈ। 4 ਦੀ ਸੈਟਿੰਗ ਬਿਹਤਰ ਸ਼ੁੱਧਤਾ ਪਰ ਹੌਲੀ ਪ੍ਰੋਸੈਸਿੰਗ ਦੀ ਪੇਸ਼ਕਸ਼ ਕਰਦੀ ਹੈ, ਜਦੋਂ ਕਿ 8 ਤੇਜ਼ ਅਤੇ ਮਿਆਰੀ ਨਤੀਜੇ ਪ੍ਰਦਾਨ ਕਰਦੀ ਹੈ.",
41
+ "Save Every Epoch": "ਹਰ ਯੁੱਗ ਨੂੰ ਸੁਰੱਖਿਅਤ ਕਰੋ",
42
+ "Determine at how many epochs the model will saved at.": "ਇਹ ਨਿਰਧਾਰਤ ਕਰੋ ਕਿ ਮਾਡਲ ਕਿੰਨੇ ਯੁੱਗਾਂ ਵਿੱਚ ਸੁਰੱਖਿਅਤ ਹੋਵੇਗਾ।",
43
+ "Total Epoch": "ਕੁੱਲ ਯੁੱਗ",
44
+ "Specifies the overall quantity of epochs for the model training process.": "ਮ���ਡਲ ਸਿਖਲਾਈ ਪ੍ਰਕਿਰਿਆ ਲਈ ਯੁੱਗਾਂ ਦੀ ਸਮੁੱਚੀ ਮਾਤਰਾ ਨਿਰਧਾਰਤ ਕਰਦਾ ਹੈ.",
45
+ "Pretrained": "ਪਹਿਲਾਂ ਤੋਂ ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ",
46
+ "Save Only Latest": "ਕੇਵਲ ਨਵੀਨਤਮ ਨੂੰ ਸੁਰੱਖਿਅਤ ਕਰੋ",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "ਇਸ ਸੈਟਿੰਗ ਨੂੰ ਸਮਰੱਥ ਕਰਨ ਦੇ ਨਤੀਜੇ ਵਜੋਂ ਜੀ ਅਤੇ ਡੀ ਫਾਈਲਾਂ ਸਿਰਫ ਆਪਣੇ ਸਭ ਤੋਂ ਤਾਜ਼ਾ ਸੰਸਕਰਣਾਂ ਨੂੰ ਸੁਰੱਖਿਅਤ ਕਰਨਗੀਆਂ, ਸਟੋਰੇਜ ਸਪੇਸ ਨੂੰ ਪ੍ਰਭਾਵਸ਼ਾਲੀ ਢੰਗ ਨਾਲ ਸੁਰੱਖਿਅਤ ਕਰਨਗੀਆਂ.",
48
+ "Save Every Weights": "ਹਰ ਭਾਰ ਨੂੰ ਬਚਾਓ",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "ਇਹ ਸੈਟਿੰਗ ਤੁਹਾਨੂੰ ਹਰੇਕ ਯੁੱਗ ਦੇ ਅੰਤ 'ਤੇ ਮਾਡਲ ਦੇ ਭਾਰ ਨੂੰ ਬਚਾਉਣ ਦੇ ਯੋਗ ਬਣਾਉਂਦੀ ਹੈ।",
50
+ "Custom Pretrained": "ਕਸਟਮ ਪ੍ਰੀਟ੍ਰੇਨਡ",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "ਕਸਟਮ ਪ੍ਰੀਟ੍ਰੇਨਡ ਮਾਡਲਾਂ ਦੀ ਵਰਤੋਂ ਕਰਨ ਨਾਲ ਵਧੀਆ ਨਤੀਜੇ ਨਿਕਲ ਸਕਦੇ ਹਨ, ਕਿਉਂਕਿ ਵਿਸ਼ੇਸ਼ ਵਰਤੋਂ ਦੇ ਕੇਸ ਦੇ ਅਨੁਸਾਰ ਸਭ ਤੋਂ ਢੁਕਵੇਂ ਪੂਰਵ-ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ ਮਾਡਲਾਂ ਦੀ ਚੋਣ ਕਰਨ ਨਾਲ ਪ੍ਰਦਰਸ਼ਨ ਵਿੱਚ ਮਹੱਤਵਪੂਰਣ ਵਾਧਾ ਹੋ ਸਕਦਾ ਹੈ.",
52
+ "Upload Pretrained Model": "ਪਹਿਲਾਂ ਤੋਂ ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ ਮਾਡਲ ਅਪਲੋਡ ਕਰੋ",
53
+ "Refresh Custom Pretraineds": "ਕਸਟਮ ਪ੍ਰੀਟ੍ਰੇਨਡਾਂ ਨੂੰ ਤਾਜ਼ਾ ਕਰੋ",
54
+ "Pretrained Custom Settings": "ਪਹਿਲਾਂ ਤੋਂ ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ ਕਸਟਮ ਸੈਟਿੰਗਾਂ",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "ਤੁਹਾਡੇ ਵੱਲੋਂ ਛੱਡੀ ਗਈ ਫਾਇਲ ਇੱਕ ਵੈਧ ਪੂਰਵ-ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ ਫਾਇਲ ਨਹੀਂ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ਡ੍ਰੌਪਡਾਊਨ ਮੀਨੂ ਵਿੱਚ ਪਹਿਲਾਂ ਤੋਂ ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ ਫਾਇਲ ਨੂੰ ਦੇਖਣ ਲਈ ਰੀਫਰੈਸ਼ ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
57
+ "Pretrained G Path": "ਕਸਟਮ ਪ੍ਰੀਟ੍ਰੇਨਡ G",
58
+ "Pretrained D Path": "ਕਸਟਮ ਪ੍ਰੀਟ੍ਰੇਨਡ ਡੀ",
59
+ "GPU Settings": "GPU ਸੈਟਿੰਗਾਂ",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "ਉੱਨਤ GPU ਸੈਟਿੰਗਾਂ ਸੈੱਟ ਕਰਦਾ ਹੈ, ਜੋ ਬਿਹਤਰ GPU ਆਰਕੀਟੈਕਚਰ ਵਾਲੇ ਉਪਭੋਗਤਾਵਾਂ ਲਈ ਸਿਫਾਰਸ਼ ਕੀਤੀ ਜਾਂਦੀ ਹੈ।",
61
+ "GPU Custom Settings": "GPU ਕਸਟਮ ਸੈਟਿੰਗਾਂ",
62
+ "GPU Number": "GPU ਨੰਬਰ",
63
+ "0 to ∞ separated by -": "0 ਤੋਂ ∞ ਦੁਆਰਾ ਵੱਖ ਕੀਤਾ ਜਾਂਦਾ ਹੈ -",
64
+ "GPU Information": "GPU ਜਾਣਕਾਰੀ",
65
+ "Pitch Guidance": "ਪਿਚ ਗਾਈਡੈਂਸ",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "ਪਿਚ ਗਾਈਡੈਂਸ ਦੀ ਵਰਤੋਂ ਕਰਕੇ, ਅਸਲ ਆਵਾਜ਼ ਦੇ ਇੰਟਰਨੇਸ਼ਨ ਨੂੰ ਦਰਸਾਉਣਾ ਸੰਭਵ ਹੋ ਜਾਂਦਾ ਹੈ, ਜਿਸ ਵਿੱਚ ਇਸਦੀ ਪਿੱਚ ਵੀ ਸ਼ਾਮਲ ਹੈ. ਇਹ ਵਿਸ਼ੇਸ਼ਤਾ ਗਾਇਕੀ ਅਤੇ ਹੋਰ ਦ੍ਰਿਸ਼ਾਂ ਲਈ ਵਿਸ਼ੇਸ਼ ਤੌਰ 'ਤੇ ਕੀਮਤੀ ਹੈ ਜਿੱਥੇ ਮੂਲ ਸੁਰ ਜਾਂ ਪਿੱਚ ਪੈਟਰਨ ਨੂੰ ਸੁਰੱਖਿਅਤ ਰੱਖਣਾ ਜ਼ਰੂਰੀ ਹੈ।",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "ਆਪਣੇ ਆਪ ਨੂੰ ਸਿਖਲਾਈ ਦਿੰਦੇ ਸਮੇਂ ਪਹਿਲਾਂ ਤੋਂ ਸਿਖਲ���ਈ ਪ੍ਰਾਪਤ ਮਾਡਲਾਂ ਦੀ ਵਰਤੋਂ ਕਰੋ। ਇਹ ਪਹੁੰਚ ਸਿਖਲਾਈ ਦੀ ਮਿਆਦ ਨੂੰ ਘਟਾਉਂਦੀ ਹੈ ਅਤੇ ਸਮੁੱਚੀ ਗੁਣਵੱਤਾ ਨੂੰ ਵਧਾਉਂਦੀ ਹੈ।",
68
+ "Extract Features": "ਐਕਸਟਰੈਕਟ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ",
69
+ "Start Training": "ਸਿਖਲਾਈ ਸ਼ੁਰੂ ਕਰੋ",
70
+ "Generate Index": "ਇੰਡੈਕਸ ਜਨਰੇਟ ਕਰੋ",
71
+ "Voice Model": "ਵੌਇਸ ਮਾਡਲ",
72
+ "Select the voice model to use for the conversion.": "ਪਰਿਵਰਤਨ ਲਈ ਵਰਤਣ ਲਈ ਵੌਇਸ ਮਾਡਲ ਦੀ ਚੋਣ ਕਰੋ।",
73
+ "Index File": "ਇੰਡੈਕਸ ਫਾਇਲ",
74
+ "Select the index file to use for the conversion.": "ਪਰਿਵਰਤਨ ਲਈ ਵਰਤਣ ਲਈ ਇੰਡੈਕਸ ਫਾਇਲ ਦੀ ਚੋਣ ਕਰੋ।",
75
+ "Refresh": "ਤਾਜ਼ਾ ਕਰੋ",
76
+ "Unload Voice": "ਆਵਾਜ਼ ਨੂੰ ਅਨਲੋਡ ਕਰੋ",
77
+ "Single": "ਸਿੰਗਲ",
78
+ "Upload Audio": "ਆਡੀਓ ਅੱਪਲੋਡ ਕਰੋ",
79
+ "Select Audio": "ਆਡੀਓ ਚੁਣੋ",
80
+ "Select the audio to convert.": "ਕਨਵਰਟ ਕਰਨ ਲਈ ਆਡੀਓ ਦੀ ਚੋਣ ਕਰੋ।",
81
+ "Advanced Settings": "ਉੱਨਤ ਸੈਟਿੰਗਾਂ",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "ਸਪਸ਼ਟ ਆਊਟਪੁੱਟ (ਜਾਇਦਾਦਾਂ/ਆਡੀਓ ਵਿੱਚ ਸਾਰੇ ਆਡੀਓ ਮਿਟਾ ਦਿੰਦਾ ਹੈ)",
83
+ "Custom Output Path": "ਕਸਟਮ ਆਉਟਪੁੱਟ ਪਾਥ",
84
+ "Output Path": "ਆਊਟਪੁੱਟ ਪਾਥ",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "ਉਹ ਰਸਤਾ ਜਿੱਥੇ ਆਉਟਪੁੱਟ ਆਡੀਓ ਨੂੰ ਸੁਰੱਖਿਅਤ ਕੀਤਾ ਜਾਵੇਗਾ, ਸੰਪਤੀਆਂ/ਆਡੀਓਜ਼/output.wav",
86
+ "Split Audio": "ਸਪਲਿਟ ਆਡੀਓ",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "ਕੁਝ ਮਾਮਲਿਆਂ ਵਿੱਚ ਬਿਹਤਰ ਨਤੀਜੇ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਅਨੁਮਾਨ ਲਈ ਆਡੀਓ ਨੂੰ ਟੁਕੜਿਆਂ ਵਿੱਚ ਵੰਡੋ।",
88
+ "Autotune": "Autotune",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "ਆਪਣੇ ਅਨੁਮਾਨਾਂ ਲਈ ਇੱਕ ਨਰਮ ਆਟੋਟਿਊਨ ਲਾਗੂ ਕਰੋ, ਜਿਸ ਦੀ ਸਿਫਾਰਸ਼ ਗਾਇਨ ਪਰਿਵਰਤਨ ਲਈ ਕੀਤੀ ਜਾਂਦੀ ਹੈ।",
90
+ "Clean Audio": "ਕਲੀਨ ਆਡੀਓ",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "ਆਡੀਓ ਬੋਲਣ ਲਈ ਸਿਫਾਰਸ਼ ਕੀਤੇ ਗਏ ਸ਼ੋਰ ਦਾ ਪਤਾ ਲਗਾਉਣ ਵਾਲੇ ਐਲਗੋਰਿਦਮ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਆਪਣੇ ਆਡੀਓ ਆਉਟਪੁੱਟ ਨੂੰ ਸਾਫ਼ ਕਰੋ।",
92
+ "Clean Strength": "ਸਾਫ਼ ਤਾਕਤ",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "ਜਿਸ ਆਡੀਓ ਨੂੰ ਤੁਸੀਂ ਚਾਹੁੰਦੇ ਹੋ ਉਸ 'ਤੇ ਕਲੀਨ-ਅੱਪ ਪੱਧਰ ਸੈੱਟ ਕਰੋ, ਜਿੰਨਾ ਜ਼ਿਆਦਾ ਤੁਸੀਂ ਇਸ ਨੂੰ ਵਧਾਓਗੇ, ਓਨਾ ਹੀ ਇਹ ਸਾਫ਼ ਹੋ ਜਾਵੇਗਾ, ਪਰ ਇਹ ਸੰਭਵ ਹੈ ਕਿ ਆਡੀਓ ਵਧੇਰੇ ਸੰਕੁਚਿਤ ਹੋ ਜਾਵੇਗਾ.",
94
+ "Pitch": "ਪਿਚ",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "ਆਡੀਓ ਦੀ ਪਿਚ ਸੈੱਟ ਕਰੋ, ਜਿੰਨਾ ਜ਼ਿਆਦਾ ਮੁੱਲ ਹੋਵੇਗਾ, ਪਿਚ ਓਨੀ ਹੀ ਉੱਚੀ ਹੋਵੇਗੀ।",
96
+ "Filter Radius": "ਫਿਲਟਰ ਰੇਡੀਅਸ",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "ਜੇ ਗਿਣਤੀ ਤਿੰਨ ਤੋਂ ਵੱਧ ਜਾਂ ਬਰਾਬਰ ਹੈ, ਤਾਂ ਇਕੱਤਰ ਕੀਤੇ ਟੋਨ ਨਤੀਜਿਆਂ 'ਤੇ ਮੀਡੀਅਨ ਫਿਲਟਰਿੰਗ ਲਗਾਉਣ ਨਾਲ ਸਾਹ ਲੈਣ ਵਿੱਚ ਕਮੀ ਆਉਣ ਦੀ ਸੰਭਾਵਨਾ ਹੁੰਦੀ ਹੈ.",
98
+ "Search Feature Ratio": "ਖੋਜ ਵਿਸ਼ੇਸ਼ਤਾ ਅਨੁਪਾਤ",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "ਇੰਡੈਕਸ ਫਾਈਲ ਦੁਆਰਾ ਪਾਇਆ ਗਿਆ ਪ੍ਰਭਾਵ; ਇੱਕ ਉੱਚ ਮੁੱਲ ਵਧੇਰੇ ਪ੍ਰਭਾਵ ਨਾਲ ਮੇਲ ਖਾਂਦਾ ਹੈ. ਹਾਲਾਂਕਿ, ਘੱਟ ਮ���ੱਲਾਂ ਦੀ ਚੋਣ ਕਰਨਾ ਆਡੀਓ ਵਿੱਚ ਮੌਜੂਦ ਕਲਾਕ੍ਰਿਤੀਆਂ ਨੂੰ ਘਟਾਉਣ ਵਿੱਚ ਮਦਦ ਕਰ ਸਕਦਾ ਹੈ।",
100
+ "Volume Envelope": "ਵਾਲਿਊਮ ਲਿਫਾਫਾ",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "ਆਉਟਪੁੱਟ ਦੇ ਵਾਲੀਅਮ ਲਿਫਾਫੇ ਨੂੰ ਬਦਲੋ ਜਾਂ ਮਿਸ਼ਰਣ ਕਰੋ। ਅਨੁਪਾਤ ਜਿੰਨਾ 1 ਦੇ ਨੇੜੇ ਹੁੰਦਾ ਹੈ, ਓਨਾ ਹੀ ਆਉਟਪੁੱਟ ਲਿਫਾਫਾ ਵਰਤਿਆ ਜਾਂਦਾ ਹੈ.",
102
+ "Protect Voiceless Consonants": "ਅਵਾਜ਼ ਰਹਿਤ ਵਿੰਜਨਾਂ ਦੀ ਰੱਖਿਆ ਕਰੋ",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "ਇਲੈਕਟ੍ਰੋ-ਐਕੋਸਟਿਕ ਫਾੜਨ ਅਤੇ ਹੋਰ ਕਲਾਕ੍ਰਿਤੀਆਂ ਨੂੰ ਰੋਕਣ ਲਈ ਵੱਖਰੇ ਵਿਜਨਾਂ ਅਤੇ ਸਾਹ ਲੈਣ ਦੀਆਂ ਆਵਾਜ਼ਾਂ ਦੀ ਰੱਖਿਆ ਕਰੋ। ਪੈਰਾਮੀਟਰ ਨੂੰ ਇਸਦੇ ਵੱਧ ਤੋਂ ਵੱਧ ਮੁੱਲ 0.5 ਤੱਕ ਖਿੱਚਣਾ ਵਿਆਪਕ ਸੁਰੱਖਿਆ ਪ੍ਰਦਾਨ ਕਰਦਾ ਹੈ। ਹਾਲਾਂਕਿ, ਇਸ ਮੁੱਲ ਨੂੰ ਘਟਾਉਣ ਨਾਲ ਸੁਰੱਖਿਆ ਦੀ ਹੱਦ ਘੱਟ ਹੋ ਸਕਦੀ ਹੈ ਜਦੋਂ ਕਿ ਸੰਭਾਵਿਤ ਤੌਰ 'ਤੇ ਸੂਚਕਪ੍ਰਭਾਵ ਨੂੰ ਘਟਾਇਆ ਜਾ ਸਕਦਾ ਹੈ.",
104
+ "Pitch extraction algorithm": "ਪਿਚ ਐਕਸਟਰੈਕਸ਼ਨ ਐਲਗੋਰਿਦਮ",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "ਆਡੀਓ ਪਰਿਵਰਤਨ ਲਈ ਵਰਤਣ ਲਈ ਪਿਚ ਐਕਸਟਰੈਕਸ਼ਨ ਐਲਗੋਰਿਦਮ. ਡਿਫਾਲਟ ਐਲਗੋਰਿਦਮ rmvpe ਹੈ, ਜਿਸਦੀ ਸਿਫਾਰਸ਼ ਜ਼ਿਆਦਾਤਰ ਮਾਮਲਿਆਂ ਲਈ ਕੀਤੀ ਜਾਂਦੀ ਹੈ।",
106
+ "Convert": "ਕਨਵਰਟ ਕਰੋ",
107
+ "Export Audio": "ਆਡੀਓ ਨਿਰਯਾਤ ਕਰੋ",
108
+ "Batch": "ਬੈਚ",
109
+ "Input Folder": "ਇਨਪੁੱਟ ਫੋਲਡਰ",
110
+ "Select the folder containing the audios to convert.": "ਬਦਲਣ ਲਈ ਆਡੀਓ ਵਾਲੇ ਫੋਲਡਰ ਦੀ ਚੋਣ ਕਰੋ।",
111
+ "Enter input path": "ਇਨਪੁੱਟ ਪਾਥ ਦਾਖਲ ਕਰੋ",
112
+ "Output Folder": "ਆਊਟਪੁੱਟ ਫੋਲਡਰ",
113
+ "Select the folder where the output audios will be saved.": "ਉਹ ਫੋਲਡਰ ਚੁਣੋ ਜਿੱਥੇ ਆਉਟਪੁੱਟ ਆਡੀਓ ਸੁਰੱਖਿਅਤ ਕੀਤੇ ਜਾਣਗੇ।",
114
+ "Enter output path": "ਆਊਟਪੁੱਟ ਪਾਥ ਦਾਖਲ ਕਰੋ",
115
+ "Get information about the audio": "ਆਡੀਓ ਬਾਰੇ ਜਾਣਕਾਰੀ ਪ੍ਰਾਪਤ ਕਰੋ",
116
+ "Information about the audio file": "ਆਡੀਓ ਫਾਇਲ ਬਾਰੇ ਜਾਣਕਾਰੀ",
117
+ "Waiting for information...": "ਜਾਣਕਾਰੀ ਦੀ ਉਡੀਕ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ...",
118
+ "## Voice Blender": "## ਵੌਇਸ ਬਲੇਂਡਰ",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "ਦੋ ਵੌਇਸ ਮਾਡਲਾਂ ਦੀ ਚੋਣ ਕਰੋ, ਆਪਣੀ ਲੋੜੀਂਦੀ ਮਿਸ਼ਰਣ ਪ੍ਰਤੀਸ਼ਤਤਾ ਸੈੱਟ ਕਰੋ, ਅਤੇ ਉਨ੍ਹਾਂ ਨੂੰ ਪੂਰੀ ਤਰ੍ਹਾਂ ਨਵੀਂ ਆਵਾਜ਼ ਵਿੱਚ ਮਿਲਾਓ.",
120
+ "Voice Blender": "ਵੌਇਸ ਬਲੇਂਡਰ",
121
+ "Drag and drop your model here": "ਆਪਣੇ ਮਾਡਲ ਨੂੰ ਇੱਥੇ ਖਿੱਚ ਕੇ ਛੱਡ ਦਿਓ",
122
+ "You can also use a custom path.": "ਤੁਸੀਂ ਇੱਕ ਕਸਟਮ ਪਾਥ ਦੀ ਵਰਤੋਂ ਵੀ ਕਰ ਸਕਦੇ ਹੋ।",
123
+ "Blend Ratio": "ਮਿਸ਼ਰਣ ਅਨੁਪਾਤ",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "ਸਥਿਤੀ ਨੂੰ ਇੱਕ ਪਾਸੇ ਜਾਂ ਦੂਜੇ ਪਾਸੇ ਵਧੇਰੇ ਵਿਵਸਥਿਤ ਕਰਨਾ ਮਾਡਲ ਨੂੰ ਪਹਿਲੇ ਜਾਂ ਦੂਜੇ ਦੇ ਸਮਾਨ ਬਣਾ ਦੇਵੇਗਾ।",
125
+ "Fusion": "ਫਿਊਜ਼ਨ",
126
+ "Path to Model": "ਮਾਡਲ ਲਈ ਰਾਹ",
127
+ "Enter path to model": "ਮਾਡਲ ਲਈ ਪਾਥ ਦਾਖਲ ਕਰੋ",
128
+ "Model information to be placed": "ਮਾਡਲ ਜਾਣਕਾਰੀ ਰੱਖੀ ਜਾ���ੀ ਚਾਹੀਦੀ ਹੈ",
129
+ "Inroduce the model information": "ਮਾਡਲ ਜਾਣਕਾਰੀ ਨੂੰ ਪੇਸ਼ ਕਰੋ",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "ਮਾਡਲ ਵਿੱਚ ਰੱਖੀ ਜਾਣ ਵਾਲੀ ਜਾਣਕਾਰੀ (ਤੁਸੀਂ ਇਸ ਨੂੰ ਖਾਲੀ ਛੱਡ ਸਕਦੇ ਹੋ ਜਾਂ ਕੁਝ ਵੀ ਪਾ ਸਕਦੇ ਹੋ)।",
131
+ "View model information": "ਮਾਡਲ ਜਾਣਕਾਰੀ ਦੇਖੋ",
132
+ "Introduce the model pth path": "ਮਾਡਲ pth ਪਾਥ ਨੂੰ ਪੇਸ਼ ਕਰੋ",
133
+ "View": "ਦ੍ਰਿਸ਼",
134
+ "Model extraction": "ਮਾਡਲ ਕੱਢਣਾ",
135
+ "Model conversion": "ਮਾਡਲ ਪਰਿਵਰਤਨ",
136
+ "Pth file": "Pth ਫਾਇਲ",
137
+ "Output of the pth file": "pth ਫਾਇਲ ਦਾ ਆਊਟਪੁੱਟ",
138
+ "# How to Report an Issue on GitHub": "# GitHub 'ਤੇ ਕਿਸੇ ਮੁੱਦੇ ਦੀ ਰਿਪੋਰਟ ਕਿਵੇਂ ਕਰਨੀ ਹੈ",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. ਤੁਹਾਡੇ ਵੱਲੋਂ ਅਨੁਭਵ ਕੀਤੀ ਜਾ ਰਹੀ ਸਮੱਸਿਆ ਨੂੰ ਰਿਕਾਰਡ ਕਰਨਾ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਹੇਠਾਂ ਦਿੱਤੇ 'ਰਿਕਾਰਡ ਸਕ੍ਰੀਨ' ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. ਇੱਕ ਵਾਰ ਜਦੋਂ ਤੁਸੀਂ ਸਮੱਸਿਆ ਨੂੰ ਰਿਕਾਰਡ ਕਰਨਾ ਪੂਰਾ ਕਰ ਲੈਂਦੇ ਹੋ, ਤਾਂ 'ਸਟਾਪ ਰਿਕਾਰਡਿੰਗ' ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ (ਉਹੀ ਬਟਨ, ਪਰ ਲੇਬਲ ਇਸ ਗੱਲ 'ਤੇ ਨਿਰਭਰ ਕਰਦਾ ਹੈ ਕਿ ਤੁਸੀਂ ਸਰਗਰਮੀ ਨਾਲ ਰਿਕਾਰਡਿੰਗ ਕਰ ਰਹੇ ਹੋ ਜਾਂ ਨਹੀਂ)।",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub ਮੁੱਦੇ] (https://github.com/IAHispano/Applio/issues) 'ਤੇ ਜਾਓ ਅਤੇ 'ਨਵਾਂ ਮੁੱਦਾ' ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. ਪ੍ਰਦਾਨ ਕੀਤੇ ਮੁੱਦੇ ਦੇ ਟੈਂਪਲੇਟ ਨੂੰ ਪੂਰਾ ਕਰੋ, ਲੋੜ ਅਨੁਸਾਰ ਵੇਰਵੇ ਸ਼ਾਮਲ ਕਰਨਾ ਯਕੀਨੀ ਬਣਾਓ, ਅਤੇ ਪਿਛਲੇ ਕਦਮ ਤੋਂ ਰਿਕਾਰਡ ਕੀਤੀ ਫਾਈਲ ਨੂੰ ਅੱਪਲੋਡ ਕਰਨ ਲਈ ਸੰਪਤੀ ਸੈਕਸ਼ਨ ਦੀ ਵਰਤੋਂ ਕਰੋ.",
143
+ "Record Screen": "ਰਿਕਾਰਡ ਸਕ੍ਰੀਨ",
144
+ "Record": "ਰਿਕਾਰਡ",
145
+ "Stop Recording": "ਰਿਕਾਰਡਿੰਗ ਬੰਦ ਕਰੋ",
146
+ "Introduce the model .pth path": "ਮਾਡਲ .pth path ਨੂੰ ਪੇਸ਼ ਕਰੋ",
147
+ "See Model Information": "ਮਾਡਲ ਜਾਣਕਾਰੀ ਦੇਖੋ",
148
+ "## Download Model": "## ਡਾਊਨਲੋਡ ਮਾਡਲ",
149
+ "Model Link": "ਮਾਡਲ ਲਿੰਕ",
150
+ "Introduce the model link": "ਮਾਡਲ ਲਿੰਕ ਪੇਸ਼ ਕਰੋ",
151
+ "Download Model": "ਮਾਡਲ ਡਾਊਨਲੋਡ ਕਰੋ",
152
+ "## Drop files": "## ਫਾਇਲਾਂ ਛੱਡੋ",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "ਆਪਣੀ .pth ਫਾਇਲ ਅਤੇ .index ਫਾਇਲ ਨੂੰ ਇਸ ਸਪੇਸ ਵਿੱਚ ਖਿੱਚੋ। ਇੱਕ ਨੂੰ ਖਿੱਚੋ ਅਤੇ ਫਿਰ ਦੂਜੇ ਨੂੰ।",
154
+ "TTS Voices": "TTS ਆਵਾਜ਼ਾਂ",
155
+ "Select the TTS voice to use for the conversion.": "ਪਰਿਵਰਤਨ ਲਈ ਵਰਤਣ ਲਈ TTS ਆਵਾਜ਼ ਦੀ ਚੋਣ ਕਰੋ।",
156
+ "Text to Synthesize": "ਸੰਸ਼ਲੇਸ਼ਣ ਕਰਨ ਲਈ ਟੈਕਸਟ",
157
+ "Enter the text to synthesize.": "ਸੰਸ਼ਲੇਸ਼ਿਤ ਕਰਨ ਲਈ ਟੈਕਸਟ ਦਾਖਲ ਕਰੋ।",
158
+ "Or you can upload a .txt file": "ਜਾਂ ਤੁਸੀਂ ਕੋਈ .txt ਫਾਇਲ ਅੱਪਲੋਡ ਕਰ ਸਕਦੇ ਹੋ",
159
+ "Enter text to synthesize": "ਸੰਸ਼ਲੇਸ਼ਿਤ ਕਰਨ ਲਈ ਟੈਕਸਟ ਦਾਖਲ ਕਰੋ",
160
+ "Output Path for TTS Audio": "TTS ਆਡੀਓ ਲਈ ਆਉਟਪੁੱਟ ਪਾਥ",
161
+ "Output Path for RVC Audio": "RVC ਆਡੀਓ ਲਈ ਆਉਟਪੁੱਟ ਪਾਥ",
162
+ "Enable Applio integration with Discord presence": "ਡਿਸਕਾਰਡ ਦੀ ਮੌਜੂਦਗੀ ਨਾਲ ਐਪਲੀਓ ਏਕੀਕਰਣ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "ਇਹ ਡਿਸਕਾਰਡ ਵਿੱਚ ਮੌਜੂਦਾ ਐਪਲੀਓ ਗਤੀਵਿਧੀ ਨੂੰ ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਨ ਦੀ ਸੰਭਾਵਨਾ ਨੂੰ ਕਿਰਿਆਸ਼ੀਲ ਕਰੇਗਾ।",
164
+ "Enable Applio integration with applio.org/models using flask": "ਫਲਾਸਕ ਦੀ ਵਰਤੋਂ ਕਰਕੇ applio.org/models ਨਾਲ ਐਪਲਿਓ ਏਕੀਕਰਣ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
165
+ "It will activate the possibility of downloading models with a click from the website.": "ਇਹ ਵੈਬਸਾਈਟ ਤੋਂ ਇੱਕ ਕਲਿੱਕ ਨਾਲ ਮਾਡਲਾਂ ਨੂੰ ਡਾਊਨਲੋਡ ਕਰਨ ਦੀ ਸੰਭਾਵਨਾ ਨੂੰ ਕਿਰਿਆਸ਼ੀਲ ਕਰੇਗਾ।",
166
+ "Theme": "ਥੀਮ",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "ਉਹ ਥੀਮ ਚੁਣੋ ਜਿਸਨੂੰ ਤੁਸੀਂ ਵਰਤਣਾ ਚਾਹੁੰਦੇ ਹੋ। (ਐਪਲੀਕੇਸ਼ਨ ਨੂੰ ਦੁਬਾਰਾ ਸ਼ੁਰੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ)",
168
+ "Language": "ਭਾਸ਼ਾ",
169
+ "Select the language you want to use. (Requires restarting Applio)": "ਉਹ ਭਾਸ਼ਾ ਚੁਣੋ ਜਿਸਨੂੰ ਤੁਸੀਂ ਵਰਤਣਾ ਚਾਹੁੰਦੇ ਹੋ। (ਐਪਲੀਕੇਸ਼ਨ ਨੂੰ ਦੁਬਾਰਾ ਸ਼ੁਰੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ)",
170
+ "Plugin Installer": "ਪਲੱਗਇਨ ਇੰਸਟਾਲਰ",
171
+ "Drag your plugin.zip to install it": "ਇਸ ਨੂੰ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਆਪਣੇ plugin.zip ਨੂੰ ਖਿੱਚੋ",
172
+ "Version Checker": "ਸੰਸਕਰਣ ਚੈਕਰ",
173
+ "Check which version of Applio is the latest to see if you need to update.": "ਇਹ ਦੇਖਣ ਲਈ ਜਾਂਚ ਕਰੋ ਕਿ ਕੀ ਤੁਹਾਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੈ, ਐਪਲੀਓ ਦਾ ਕਿਹੜਾ ਸੰਸਕਰਣ ਨਵੀਨਤਮ ਹੈ।",
174
+ "Check for updates": "ਅੱਪਡੇਟਾਂ ਵਾਸਤੇ ਜਾਂਚ ਕਰੋ"
175
+ }
assets/i18n/languages/pl_PL.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Najlepsze narzędzie do klonowania głosu, skrupulatnie zoptymalizowane pod kątem niezrównanej mocy, modułowości i przyjazności dla użytkownika.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Ta sekcja zawiera kilka dodatkowych narzędzi, które często mogą znajdować się w fazie eksperymentalnej.",
4
+ "Output Information": "Informacje wyjściowe",
5
+ "The output information will be displayed here.": "W tym miejscu zostaną wyświetlone informacje wyjściowe.",
6
+ "Inference": "Wnioskowanie",
7
+ "Train": "Pociąg",
8
+ "Extra": "Dodatkowych",
9
+ "Merge Audios": "Scal audio",
10
+ "Processing": "Przetwarzanie",
11
+ "Audio Analyzer": "Analizator dźwięku",
12
+ "Model Information": "Informacje o modelu",
13
+ "Plugins": "Wtyczki",
14
+ "Download": "Pobierać",
15
+ "Report a Bug": "Zgłoś błąd",
16
+ "Settings": "Ustawienia",
17
+ "Preprocess": "Przetwarzanie wstępne",
18
+ "Model Name": "Nazwa modelu",
19
+ "Name of the new model.": "Nazwa nowego modelu.",
20
+ "Enter model name": "Wprowadź nazwę modelu",
21
+ "Dataset Path": "Ścieżka zestawu danych",
22
+ "Path to the dataset folder.": "Ścieżka do folderu zestawu danych.",
23
+ "Refresh Datasets": "Odświeżanie zestawów danych",
24
+ "Dataset Creator": "Twórca zestawu danych",
25
+ "Dataset Name": "Nazwa zestawu danych",
26
+ "Name of the new dataset.": "Nazwa nowego zestawu danych.",
27
+ "Enter dataset name": "Wprowadź nazwę zestawu danych",
28
+ "Upload Audio Dataset": "Przekazywanie zestawu danych audio",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Plik audio został pomyślnie dodany do zestawu danych. Kliknij przycisk przetwarzania wstępnego.",
30
+ "Enter dataset path": "Wprowadź ścieżkę zestawu danych",
31
+ "Sampling Rate": "Częstotliwość próbkowania",
32
+ "The sampling rate of the audio files.": "Częstotliwość próbkowania plików audio.",
33
+ "RVC Version": "Wersja RVC",
34
+ "The RVC version of the model.": "Wersja modelu RVC.",
35
+ "Preprocess Dataset": "Wstępne przetwarzanie zestawu danych",
36
+ "Extract": "Ekstrakt",
37
+ "Hop Length": "Długość chmielu",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Oznacza czas potrzebny systemowi do przejścia do znaczącej zmiany wysokości dźwięku. Mniejsze długości przeskoków wymagają więcej czasu na wnioskowanie, ale zwykle zapewniają wyższą dokładność skoku.",
39
+ "Batch Size": "Wielkość partii",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Wskazane jest, aby dostosować go do dostępnej pamięci VRAM procesora graficznego. Ustawienie 4 zapewnia lepszą dokładność, ale wolniejsze przetwarzanie, podczas gdy 8 zapewnia szybsze i standardowe wyniki.",
41
+ "Save Every Epoch": "Ocal każdą epokę",
42
+ "Determine at how many epochs the model will saved at.": "Określ, w ilu epokach model zostanie zapisany.",
43
+ "Total Epoch": "Epoka ogółem",
44
+ "Specifies the overall quantity of epochs for the model training process.": "Określa całkowitą liczbę epok dla procesu trenowania modelu.",
45
+ "Pretrained": "Wstępnie wytrenowany",
46
+ "Save Only Latest": "Zapisz tylko najnowsze",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Włączenie tego ustawienia spowoduje, że pliki G i D będą zapisywać tylko swoje najnowsze wersje, skutecznie oszczędzając miejsce na dysku.",
48
+ "Save Every Weights": "Oszczędzaj wszystkie ciężary",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "To ustawienie umożliwia zapisanie wag modelu na końcu każdej epoki.",
50
+ "Custom Pretrained": "Niestandardowe wstępnie wytrenowane",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "Korzystanie z niestandardowych wstępnie wytrenowanych modeli może prowadzić do doskonałych wyników, ponieważ wybranie najbardziej odpowiednich wstępnie wytrenowanych modeli dostosowanych do konkretnego przypadku użycia może znacznie zwiększyć wydajność.",
52
+ "Upload Pretrained Model": "Przekazywanie wstępnie wytrenowanego modelu",
53
+ "Refresh Custom Pretraineds": "Odświeżanie niestandardowych wstępnie wytrenowanych",
54
+ "Pretrained Custom Settings": "Wstępnie wytrenowane ustawienia niestandardowe",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "Upuszczony plik nie jest prawidłowym wstępnie wytrenowanym plikiem. Spróbuj ponownie.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Kliknij przycisk odświeżania, aby wyświetlić wstępnie wytrenowany plik w menu rozwijanym.",
57
+ "Pretrained G Path": "Niestandardowe wstępnie wytrenowane G",
58
+ "Pretrained D Path": "Niestandardowy wstępnie wytrenowany D",
59
+ "GPU Settings": "Ustawienia GPU",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Ustawia zaawansowane ustawienia GPU, zalecane dla użytkowników z lepszą architekturą GPU.",
61
+ "GPU Custom Settings": "Niestandardowe ustawienia GPU",
62
+ "GPU Number": "Numer GPU",
63
+ "0 to ∞ separated by -": "Od 0 do ∞ oddzielone -",
64
+ "GPU Information": "Informacje o procesorze GPU",
65
+ "Pitch Guidance": "Wskazówki dotyczące wysokości dźwięku",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Stosując wskazówki dotyczące wysokości dźwięku, możliwe staje się odzwierciedlenie intonacji oryginalnego głosu, w tym jego wysokości. Ta funkcja jest szczególnie cenna w przypadku śpiewu i innych scenariuszy, w których niezbędne jest zachowanie oryginalnej melodii lub wzoru wysokości dźwięku.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Korzystaj ze wstępnie wytrenowanych modeli podczas trenowania własnych. Takie podejście skraca czas trwania szkolenia i poprawia ogólną jakość.",
68
+ "Extract Features": "Wyodrębnij funkcje",
69
+ "Start Training": "Rozpocznij szkolenie",
70
+ "Generate Index": "Generuj indeks",
71
+ "Voice Model": "Model głosu",
72
+ "Select the voice model to use for the conversion.": "Wybierz model głosu, który ma zostać użyty do konwersji.",
73
+ "Index File": "Plik indeksu",
74
+ "Select the index file to use for the conversion.": "Wybierz plik indeksu, który ma zostać użyty do konwersji.",
75
+ "Refresh": "Odświeżyć",
76
+ "Unload Voice": "Uwolnij głos",
77
+ "Single": "Pojedynczy",
78
+ "Upload Audio": "Prześlij dźwięk",
79
+ "Select Audio": "Wybierz Audio (Dźwięk)",
80
+ "Select the audio to convert.": "Wybierz dźwięk do konwersji.",
81
+ "Advanced Settings": "Ustawienia zaawansowane",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Wyczyść wyjścia (usuwa wszystkie pliki audio w zasobach/plikach audio)",
83
+ "Custom Output Path": "Niestandardowa ścieżka wyjściowa",
84
+ "Output Path": "Ścieżka wyjściowa",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Ścieżka, w której zostanie zapisany dźwięk wyjściowy, domyślnie w assets/audios/output.wav",
86
+ "Split Audio": "Podziel dźwięk",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Podziel dźwięk na fragmenty w celu wnioskowania, aby w niektórych przypadkach uzyskać lepsze wyniki.",
88
+ "Autotune": "Automatyczne dostrajanie",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Zastosuj miękkie autotune do swoich wniosków, zalecane do konwersji śpiewu.",
90
+ "Clean Audio": "Czysty dźwięk",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Wyczyść wyjście audio za pomocą algorytmów wykrywania szumów, zalecanych do mówienia audio.",
92
+ "Clean Strength": "Czysta siła",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Ustaw żądany poziom czyszczenia na żądany dźwięk, im bardziej go zwiększysz, tym bardziej się oczyści, ale możliwe, że dźwięk będzie bardziej skompresowany.",
94
+ "Pitch": "Rzucać",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Ustaw wysokość dźwięku, im wyższa wartość, tym wyższa wysokość.",
96
+ "Filter Radius": "Promień filtra",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Jeśli liczba ta jest większa lub równa trzem, zastosowanie filtrowania mediany na zebranych wynikach tonów może potencjalnie zmniejszyć oddychanie.",
98
+ "Search Feature Ratio": "Współczynnik funkcji wyszukiwania",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Wpływ wywierany przez plik indeksu; Wyższa wartość odpowiada większemu wpływowi. Jednak wybranie niższych wartości może pomóc w ograniczeniu artefaktów obecnych w dźwięku.",
100
+ "Volume Envelope": "Koperta objętości",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Zastąp lub zmieszaj z obwiednią głośności wyjścia. Im współczynnik jest bliższy 1, tym bardziej wykorzystywana jest obwiednia wyjściowa.",
102
+ "Protect Voiceless Consonants": "Chroń bezdźwięczne spółgłoski",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Chroń wyraźne spółgłoski i dźwięki oddychania, aby zapobiec rozdarciu elektroakustycznemu i innym artefaktom. Pociągnięcie parametru do maksymalnej wartości 0,5 zapewnia kompleksową ochronę. Jednak zmniejszenie tej wartości może zmniejszyć zakres ochrony, jednocześnie potencjalnie łagodząc efekt indeksowania.",
104
+ "Pitch extraction algorithm": "Algorytm ekstrakcji wysokości dźwięku",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Algorytm ekstrakcji wysokości dźwięku do użycia do konwersji dźwięku. Domyślnym algorytmem jest rmvpe, który jest zalecany w większości przypadków.",
106
+ "Convert": "Nawrócić",
107
+ "Export Audio": "Eksportuj dźwięk",
108
+ "Batch": "Partia",
109
+ "Input Folder": "Folder wejściowy",
110
+ "Select the folder containing the audios to convert.": "Wybierz folder zawierający pliki audio do konwersji.",
111
+ "Enter input path": "Wprowadź ścieżkę wejściową",
112
+ "Output Folder": "Folder wyjściowy",
113
+ "Select the folder where the output audios will be saved.": "Wybierz folder, w którym zostaną zapisane wyjściowe pliki audio.",
114
+ "Enter output path": "Wprowadź ścieżkę wyjściową",
115
+ "Get information about the audio": "Uzyskiwanie informacji o dźwięku",
116
+ "Information about the audio file": "Informacje o pliku audio",
117
+ "Waiting for information...": "Czekam na informację...",
118
+ "## Voice Blender": "## Blender głosowy",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Wybierz dwa modele brzmienia, ustaw żądany procent mieszania i połącz je w zupełnie nowy głos.",
120
+ "Voice Blender": "Blender głosu",
121
+ "Drag and drop your model here": "Przeciągnij i upuść swój model tutaj",
122
+ "You can also use a custom path.": "Możesz również użyć ścieżki niestandardowej.",
123
+ "Blend Ratio": "Proporcje mieszania",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Dostosowanie pozycji bardziej w jedną lub drugą stronę sprawi, że model będzie bardziej podobny do pierwszego lub drugiego.",
125
+ "Fusion": "Fuzja",
126
+ "Path to Model": "Ścieżka do modelu",
127
+ "Enter path to model": "Wprowadź ścieżkę do modelu",
128
+ "Model information to be placed": "Informacje o modelu, które mają zostać umieszczone",
129
+ "Inroduce the model information": "Zapoznaj się z informacjami o modelu",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "Informacje, które mają zostać umieszczone w modelu (możesz pozostawić je puste lub umieścić cokolwiek).",
131
+ "View model information": "Wyświetlanie informacji o modelu",
132
+ "Introduce the model pth path": "Wprowadzenie ścieżki pth modelu",
133
+ "View": "Widok",
134
+ "Model extraction": "Wyodrębnianie modelu",
135
+ "Model conversion": "Konwersja modelu",
136
+ "Pth file": "P-ty plik",
137
+ "Output of the pth file": "Wyjście pliku pth",
138
+ "# How to Report an Issue on GitHub": "# Jak zgłosić problem na GitHub",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Kliknij przycisk \"Ekran nagrywania\" poniżej, aby rozpocząć nagrywanie napotkanego problemu.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Po zakończeniu nagrywania problemu kliknij przycisk \"Zatrzymaj nagrywanie\" (ten sam przycisk, ale etykieta zmienia się w zależności od tego, czy aktywnie nagrywasz, czy nie).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Przejdź do [GitHub Issues](https://github.com/IAHispano/Applio/issues) i kliknij przycisk \"Nowe zgłoszenie\".",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Wypełnij dostarczony szablon problemu, upewniając się, że w razie potrzeby dołączyłeś szczegóły, i skorzystaj z sekcji zasobów, aby przesłać nagrany plik z poprzedniego kroku.",
143
+ "Record Screen": "Ekran nagrywania",
144
+ "Record": "Rekord",
145
+ "Stop Recording": "Zatrzymaj nagrywanie",
146
+ "Introduce the model .pth path": "Wprowadzenie ścieżki pth modelu",
147
+ "See Model Information": "Zobacz informacje o modelu",
148
+ "## Download Model": "## Pobierz model",
149
+ "Model Link": "Link do modelu",
150
+ "Introduce the model link": "Wprowadzenie linku do modelu",
151
+ "Download Model": "Pobierz model",
152
+ "## Drop files": "## Upuść pliki",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Przeciągnij plik .pth i plik .index do tego miejsca. Przeciągnij jedną, a potem drugą.",
154
+ "TTS Voices": "Głosy TTS",
155
+ "Select the TTS voice to use for the conversion.": "Wybierz głos TTS, który ma być używany do konwersji.",
156
+ "Text to Synthesize": "Tekst do syntezy",
157
+ "Enter the text to synthesize.": "Wprowadź tekst do syntezy.",
158
+ "Or you can upload a .txt file": "Możesz też przesłać plik .txt",
159
+ "Enter text to synthesize": "Wprowadzanie tekstu do syntezy",
160
+ "Output Path for TTS Audio": "Ścieżka wyjściowa dla TTS Audio",
161
+ "Output Path for RVC Audio": "Ścieżka wyjściowa dla dźwięku RVC",
162
+ "Enable Applio integration with Discord presence": "Włącz integrację Applio z obecnością Discord",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Aktywuje możliwość wyświetlania aktualnej aktywności Applio w Discordzie.",
164
+ "Enable Applio integration with applio.org/models using flask": "Włączanie integracji aplikacji Applio z applio.org/models przy użyciu kolby",
165
+ "It will activate the possibility of downloading models with a click from the website.": "Aktywuje możliwość pobierania modeli jednym kliknięciem ze strony internetowej.",
166
+ "Theme": "Kompozycja",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "Wybierz motyw, którego chcesz użyć. (Wymaga ponownego uruchomienia aplikacji)",
168
+ "Language": "Język",
169
+ "Select the language you want to use. (Requires restarting Applio)": "Wybierz język, którego chcesz używać. (Wymaga ponownego uruchomienia aplikacji)",
170
+ "Plugin Installer": "Instalator wtyczek",
171
+ "Drag your plugin.zip to install it": "Przeciągnij plugin.zip, aby go zainstalować",
172
+ "Version Checker": "Sprawdzanie wersji",
173
+ "Check which version of Applio is the latest to see if you need to update.": "Sprawdź, która wersja Applio jest najnowsza, aby sprawdzić, czy musisz ją zaktualizować.",
174
+ "Check for updates": "Sprawdź dostępność aktualizacji"
175
+ }
assets/i18n/languages/pt_BR.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "A melhor ferramenta de clonagem de voz, meticulosamente otimizada para potência incomparável, modularidade e experiência amigável.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Esta seção contém alguns utilitários extras que muitas vezes podem estar em fases experimentais.",
4
+ "Output Information": "Informações de saída",
5
+ "Inference": "Inferência",
6
+ "Train": "Treinar",
7
+ "Extra": "Extra",
8
+ "Merge Audios": "Mesclar áudios",
9
+ "Processing": "Processamento",
10
+ "Audio Analyzer": "Analisador de áudio",
11
+ "Model Information": "Informação do modelo",
12
+ "Download": "Baixar",
13
+ "Report a Bug": "Reportar um Bug",
14
+ "Preprocess": "Pré-processo",
15
+ "Model Name": "Nome do modelo",
16
+ "Enter model name": "Insira o nome do modelo",
17
+ "Dataset Path": "Caminho do dataset",
18
+ "Enter dataset path": "Insira o caminho do dataset",
19
+ "Sampling Rate": "Taxa de amostragem",
20
+ "RVC Version": "Versão RVC",
21
+ "Preprocess Dataset": "Pré-processar dataset",
22
+ "Extract": "Extrair",
23
+ "Hop Length": "Comprimento do Hop",
24
+ "Batch Size": "Tamanho do lote",
25
+ "Save Every Epoch": "Salve Cada Epoch",
26
+ "Total Epoch": "Epoch Total",
27
+ "Pretrained": "Pré-treinamento",
28
+ "Save Only Latest": "Salvar Apenas o último",
29
+ "Save Every Weights": "Salvar todos os Weights",
30
+ "Custom Pretrained": "Pretrain personalizado",
31
+ "Upload Pretrained Model": "Carregar Pretrain",
32
+ "Pretrained Custom Settings": "Configurações personalizadas do pretrain",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "O arquivo que você soltou não é um arquivo de pretrain válido. Por favor, tente novamente.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Clique no botão Atualizar para ver o arquivo pretrain no menu suspenso.",
35
+ "Pretrained G Path": "Personalizado Pré-treinado G",
36
+ "Pretrained D Path": "Personalizado Pré-treinado D",
37
+ "GPU Settings": "Configurações da GPU",
38
+ "GPU Custom Settings": "Configurações personalizadas da GPU",
39
+ "GPU Number": "Número da GPU",
40
+ "0 to ∞ separated by -": "0 a ∞ separados por -",
41
+ "GPU Information": "Informações da GPU",
42
+ "Pitch Guidance": "Orientação de Pitch",
43
+ "Extract Features": "Extrair recursos",
44
+ "Start Training": "Iniciar Treinamento",
45
+ "Generate Index": "Gerar Index",
46
+ "Voice Model": "Modelo de voz",
47
+ "Index File": "Arquivo de Index",
48
+ "Refresh": "Atualizar",
49
+ "Unload Voice": "Descarregar voz",
50
+ "Single": "Único",
51
+ "Upload Audio": "Carregar áudio",
52
+ "Select Audio": "Selecione Áudio",
53
+ "Advanced Settings": "Configurações avançadas",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Limpar saídas (exclui todos os áudios em ativos/áudios)",
55
+ "Custom Output Path": "Caminho de saída personalizado",
56
+ "Output Path": "Caminho de saída",
57
+ "Pitch": "Pitch",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Se >=3: aplicar filtragem mediana aos resultados do pitch colhido. O valor representa o raio do filtro e pode reduzir a soprosidade",
59
+ "Search Feature Ratio": "Proporção de recursos de Index",
60
+ "Pitch extraction algorithm": "Algoritmo de extração de pitch",
61
+ "Convert": "Converter",
62
+ "Export Audio": "Exportar áudio",
63
+ "Batch": "Lote",
64
+ "Input Folder": "Pasta de entrada",
65
+ "Enter input path": "Insira o caminho de entrada",
66
+ "Output Folder": "Pasta de saída",
67
+ "Enter output path": "Insira o caminho de saída",
68
+ "Get information about the audio": "Obter informações sobre o áudio",
69
+ "Information about the audio file": "Informações sobre o arquivo de áudio",
70
+ "Waiting for information...": "À espera de informações...",
71
+ "Model fusion": "Fusão de modelos",
72
+ "Weight for Model A": "Peso para o modelo A",
73
+ "Whether the model has pitch guidance": "Se o modelo tem orientação de pitch",
74
+ "Model architecture version": "Versão da arquitetura do modelo",
75
+ "Path to Model A": "Caminho para o Modelo A",
76
+ "Path to Model B": "Caminho para o Modelo B",
77
+ "Path to model": "Caminho para o modelo",
78
+ "Model information to be placed": "Modelo de informação a colocar",
79
+ "Fusion": "Fusão",
80
+ "Modify model information": "Modificar informações do modelo",
81
+ "Path to Model": "Caminho para o modelo",
82
+ "Model information to be modified": "Modelo de informação a modificar",
83
+ "Save file name": "Guardar nome de ficheiro",
84
+ "Modify": "Modificar",
85
+ "View model information": "Ver informações do modelo",
86
+ "View": "View",
87
+ "Model extraction": "Extração do modelo",
88
+ "Model conversion": "Conversão de modelo",
89
+ "Pth file": "Arquivo Pth",
90
+ "Output of the pth file": "Saída do arquivo pth",
91
+ "# How to Report an Issue on GitHub": "# Como relatar um problema no GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Clique no botão 'Gravar tela' abaixo para começar a gravar o problema que você está enfrentando.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Depois de terminar de gravar o problema, clique no botão 'Parar gravação' (o mesmo botão, mas a etiqueta muda dependendo se você está gravando ativamente ou não).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Vá para [GitHub Issues](https://github.com/IAHispano/Applio/issues) e clique no botão 'New Issue'.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Preencha o modelo de problema fornecido, garantindo incluir detalhes conforme necessário, e utilize a seção de ativos para carregar o arquivo gravado da etapa anterior.",
96
+ "Record Screen": "Gravar tela",
97
+ "Record": "Gravar",
98
+ "Stop Recording": "Parar gravação",
99
+ "Introduce the model .pth path": "Introduza o caminho .pth do modelo",
100
+ "See Model Information": "Consulte as informações do modelo",
101
+ "## Download Model": "## Baixar Modelo",
102
+ "Model Link": "Link do modelo",
103
+ "Introduce the model link": "Introduza o link do modelo",
104
+ "Download Model": "Baixar Modelo",
105
+ "## Drop files": "## Soltar arquivos",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Arraste o arquivo .pth e o arquivo .index para este espaço. Arraste um e depois o outro.",
107
+ "TTS Voices": "Vozes TTS",
108
+ "Text to Synthesize": "Texto a sintetizar",
109
+ "Enter text to synthesize": "Insira texto para sintetizar",
110
+ "Output Path for TTS Audio": "Caminho de saída para áudio TTS",
111
+ "Output Path for RVC Audio": "Caminho de saída para áudio RVC",
112
+ "Enable Applio integration with Discord presence": "Presença do Applio"
113
+ }
assets/i18n/languages/pt_PT.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "A melhor ferramenta de clonagem de voz, meticulosamente otimizada para potência, modularidade e experiência de fácil utilização incomparáveis.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Esta seção contém alguns utilitários extras que muitas vezes podem estar em fases experimentais.",
4
+ "Output Information": "Informações de saída",
5
+ "The output information will be displayed here.": "As informações de saída serão exibidas aqui.",
6
+ "Inference": "Inferência",
7
+ "Train": "Trem",
8
+ "Extra": "Extra",
9
+ "Merge Audios": "Mesclar áudios",
10
+ "Processing": "Processamento",
11
+ "Audio Analyzer": "Analisador de áudio",
12
+ "Model Information": "Informações do modelo",
13
+ "Plugins": "Plug-ins",
14
+ "Download": "Baixar",
15
+ "Report a Bug": "Relatar um bug",
16
+ "Settings": "Configurações",
17
+ "Preprocess": "Pré-processar",
18
+ "Model Name": "Nome do modelo",
19
+ "Name of the new model.": "Nome do novo modelo.",
20
+ "Enter model name": "Digite o nome do modelo",
21
+ "Dataset Path": "Caminho do conjunto de dados",
22
+ "Path to the dataset folder.": "Caminho para a pasta do conjunto de dados.",
23
+ "Refresh Datasets": "Atualizar conjuntos de dados",
24
+ "Dataset Creator": "Criador de conjunto de dados",
25
+ "Dataset Name": "Nome do conjunto de dados",
26
+ "Name of the new dataset.": "Nome do novo conjunto de dados.",
27
+ "Enter dataset name": "Insira o nome do conjunto de dados",
28
+ "Upload Audio Dataset": "Carregar conjunto de dados de áudio",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "O arquivo de áudio foi adicionado com êxito ao conjunto de dados. Clique no botão de pré-processo.",
30
+ "Enter dataset path": "Inserir caminho do conjunto de dados",
31
+ "Sampling Rate": "Taxa de amostragem",
32
+ "The sampling rate of the audio files.": "A taxa de amostragem dos arquivos de áudio.",
33
+ "RVC Version": "Versão RVC",
34
+ "The RVC version of the model.": "A versão RVC do modelo.",
35
+ "Preprocess Dataset": "Pré-processar conjunto de dados",
36
+ "Extract": "Extrair",
37
+ "Hop Length": "Comprimento do salto",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Denota a duração necessária para que o sistema faça a transição para uma mudança de tom significativa. Comprimentos de salto menores requerem mais tempo para inferência, mas tendem a produzir maior precisão de pitch.",
39
+ "Batch Size": "Tamanho do lote",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "É aconselhável alinhá-lo com a VRAM disponível da sua GPU. Uma configuração de 4 oferece precisão aprimorada, mas processamento mais lento, enquanto 8 fornece resultados mais rápidos e padrão.",
41
+ "Save Every Epoch": "Salve todas as épocas",
42
+ "Determine at how many epochs the model will saved at.": "Determine em quantas épocas o modelo será salvo.",
43
+ "Total Epoch": "Época Total",
44
+ "Specifies the overall quantity of epochs for the model training process.": "Especifica a quantidade total de épocas para o processo de treinamento do modelo.",
45
+ "Pretrained": "Pré-treinado",
46
+ "Save Only Latest": "Salvar somente as últimas",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Habilitar essa configuração resultará nos arquivos G e D salvando apenas suas versões mais recentes, efetivamente conservando espaço de armazenamento.",
48
+ "Save Every Weights": "Economize todos os pesos",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Essa configuração permite que você salve os pesos do modelo na conclusão de cada época.",
50
+ "Custom Pretrained": "Pré-treinado personalizado",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "A utilização de modelos pré-treinados personalizados pode levar a resultados superiores, pois a seleção dos modelos pré-treinados mais adequados adaptados ao caso de uso específico pode melhorar significativamente o desempenho.",
52
+ "Upload Pretrained Model": "Carregar modelo pré-treinado",
53
+ "Refresh Custom Pretraineds": "Atualizar pré-treinados personalizados",
54
+ "Pretrained Custom Settings": "Configurações personalizadas pré-treinadas",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "O arquivo descartado não é um arquivo pré-treinado válido. Tente novamente.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Clique no botão Atualizar para ver o arquivo pré-treinado no menu suspenso.",
57
+ "Pretrained G Path": "G pré-treinado personalizado",
58
+ "Pretrained D Path": "D pré-treinado personalizado",
59
+ "GPU Settings": "Configurações da GPU",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Define configurações avançadas de GPU, recomendadas para usuários com melhor arquitetura de GPU.",
61
+ "GPU Custom Settings": "Configurações personalizadas da GPU",
62
+ "GPU Number": "Número da GPU",
63
+ "0 to ∞ separated by -": "0 a ∞ separados por -",
64
+ "GPU Information": "Informações da GPU",
65
+ "Pitch Guidance": "Orientação de Pitch",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Ao empregar a orientação de pitch, torna-se viável espelhar a entonação da voz original, incluindo seu pitch. Esta característica é particularmente valiosa para o canto e outros cenários onde preservar a melodia original ou padrão de tom é essencial.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Utilize modelos pré-treinados ao treinar seus próprios. Essa abordagem reduz a duração do treinamento e melhora a qualidade geral.",
68
+ "Extract Features": "Recursos de extração",
69
+ "Start Training": "Comece a Treinar",
70
+ "Generate Index": "Gerar índice",
71
+ "Voice Model": "Modelo de Voz",
72
+ "Select the voice model to use for the conversion.": "Selecione o modelo de voz a ser usado para a conversão.",
73
+ "Index File": "Arquivo de índice",
74
+ "Select the index file to use for the conversion.": "Selecione o arquivo de índice a ser usado para a conversão.",
75
+ "Refresh": "Atualizar",
76
+ "Unload Voice": "Descarregar voz",
77
+ "Single": "Único",
78
+ "Upload Audio": "Carregar áudio",
79
+ "Select Audio": "Selecione Áudio",
80
+ "Select the audio to convert.": "Selecione o áudio a ser convertido.",
81
+ "Advanced Settings": "Configurações avançadas",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Limpar saídas (exclui todos os áudios em ativos/áudios)",
83
+ "Custom Output Path": "Caminho de saída personalizado",
84
+ "Output Path": "Caminho de saída",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "O caminho onde o áudio de saída será salvo, por padrão em ativos/áudios/output.wav",
86
+ "Split Audio": "Áudio dividido",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Divida o áudio em pedaços para inferência para obter melhores resultados em alguns casos.",
88
+ "Autotune": "Autotune",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Aplique um autotune suave às suas inferências, recomendado para conversões de canto.",
90
+ "Clean Audio": "Áudio limpo",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Limpe sua saída de áudio usando algoritmos de detecção de ruído, recomendados para falar áudios.",
92
+ "Clean Strength": "Força Limpa",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Defina o nível de limpeza para o áudio desejado, quanto mais você aumentá-lo, mais ele será limpo, mas é possível que o áudio seja mais compactado.",
94
+ "Pitch": "Campo",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Defina o tom do áudio, quanto maior o valor, maior o pitch.",
96
+ "Filter Radius": "Raio do filtro",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Se o número for maior ou igual a três, empregar a filtragem mediana nos resultados de tom coletados tem o potencial de diminuir a respiração.",
98
+ "Search Feature Ratio": "Taxa de recursos de pesquisa",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Influência exercida pelo arquivo de índice; quanto maior o valor corresponde maior a influência. No entanto, optar por valores mais baixos pode ajudar a mitigar artefatos presentes no áudio.",
100
+ "Volume Envelope": "Volume Envelope",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Substitua ou misture com o envelope de volume da saída. Quanto mais próxima a proporção estiver de 1, mais o envelope de saída será empregado.",
102
+ "Protect Voiceless Consonants": "Proteja as consoantes surdas",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Proteja consoantes distintas e sons respiratórios para evitar rasgos eletroacústicos e outros artefatos. Puxar o parâmetro para seu valor máximo de 0,5 oferece proteção abrangente. No entanto, a redução desse valor pode diminuir a extensão da proteção e, ao mesmo tempo, potencialmente atenuar o efeito de indexação.",
104
+ "Pitch extraction algorithm": "Algoritmo de extração de pitch",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Algoritmo de extração de pitch para usar na conversão de áudio. O algoritmo padrão é rmvpe, que é recomendado para a maioria dos casos.",
106
+ "Convert": "Converter",
107
+ "Export Audio": "Exportar áudio",
108
+ "Batch": "Lote",
109
+ "Input Folder": "Pasta de entrada",
110
+ "Select the folder containing the audios to convert.": "Selecione a pasta que contém os áudios a serem convertidos.",
111
+ "Enter input path": "Insira o caminho de entrada",
112
+ "Output Folder": "Pasta de saída",
113
+ "Select the folder where the output audios will be saved.": "Selecione a pasta onde os áudios de saída serão salvos.",
114
+ "Enter output path": "Insira o caminho de saída",
115
+ "Get information about the audio": "Obter informações sobre o áudio",
116
+ "Information about the audio file": "Informações sobre o arquivo de áudio",
117
+ "Waiting for information...": "Aguardando informações...",
118
+ "## Voice Blender": "## Liquidificador de Voz",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Selecione dois modelos de voz, defina a porcentagem de mistura desejada e misture-os em uma voz totalmente nova.",
120
+ "Voice Blender": "Liquidificador de voz",
121
+ "Drag and drop your model here": "Arraste e solte seu modelo aqui",
122
+ "You can also use a custom path.": "Você também pode usar um caminho personalizado.",
123
+ "Blend Ratio": "Proporção de mistura",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Ajustar a posição mais para um lado ou para o outro tornará o modelo mais semelhante ao primeiro ou ao segundo.",
125
+ "Fusion": "Fusão",
126
+ "Path to Model": "Caminho para o modelo",
127
+ "Enter path to model": "Insira o caminho para o modelo",
128
+ "Model information to be placed": "Informações do modelo a ser colocado",
129
+ "Inroduce the model information": "Inroduce as informações do modelo",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "As informações a serem colocadas no modelo (Você pode deixá-lo em branco ou colocar qualquer coisa).",
131
+ "View model information": "Exibir informações do modelo",
132
+ "Introduce the model pth path": "Apresentar o caminho pth do modelo",
133
+ "View": "Vista",
134
+ "Model extraction": "Extração do modelo",
135
+ "Model conversion": "Conversão de modelos",
136
+ "Pth file": "Arquivo Pth",
137
+ "Output of the pth file": "Saída do arquivo pth",
138
+ "# How to Report an Issue on GitHub": "# Como relatar um problema no GitHub",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Clique no botão 'Gravar tela' abaixo para começar a gravar o problema que você está enfrentando.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Depois de terminar de gravar o problema, clique no botão 'Parar gravação' (o mesmo botão, mas a etiqueta muda dependendo se você está gravando ativamente ou não).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Vá para [Problemas do GitHub](https://github.com/IAHispano/Applio/issues) e clique no botão 'Novo problema'.",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Preencha o modelo de problema fornecido, garantindo incluir detalhes conforme necessário, e utilize a seção de ativos para carregar o arquivo gravado da etapa anterior.",
143
+ "Record Screen": "Tela de gravação",
144
+ "Record": "Registro",
145
+ "Stop Recording": "Parar gravação",
146
+ "Introduce the model .pth path": "Apresentar o caminho .pth do modelo",
147
+ "See Model Information": "Ver informações do modelo",
148
+ "## Download Model": "## Baixar Modelo",
149
+ "Model Link": "Link do modelo",
150
+ "Introduce the model link": "Apresentar o link do modelo",
151
+ "Download Model": "Download do Modelo",
152
+ "## Drop files": "## Soltar arquivos",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Arraste o arquivo .pth e o arquivo .index para este espaço. Arraste um e depois o outro.",
154
+ "TTS Voices": "Vozes TTS",
155
+ "Select the TTS voice to use for the conversion.": "Selecione a voz TTS a ser usada para a conversão.",
156
+ "Text to Synthesize": "Texto para sintetizar",
157
+ "Enter the text to synthesize.": "Digite o texto a ser sintetizado.",
158
+ "Or you can upload a .txt file": "Ou você pode carregar um arquivo .txt",
159
+ "Enter text to synthesize": "Digite o texto para sintetizar",
160
+ "Output Path for TTS Audio": "Caminho de saída para áudio TTS",
161
+ "Output Path for RVC Audio": "Caminho de saída para áudio RVC",
162
+ "Enable Applio integration with Discord presence": "Habilitar a integração do Applio com a presença do Discord",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Ele ativará a possibilidade de exibir a atividade atual do Applio no Discord.",
164
+ "Enable Applio integration with applio.org/models using flask": "Habilitar a integração do Applio com applio.org/models usando frasco",
165
+ "It will activate the possibility of downloading models with a click from the website.": "Ele ativará a possibilidade de baixar modelos com um clique no site.",
166
+ "Theme": "Tema",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "Selecione o tema que deseja usar. (Requer reiniciar o Applio)",
168
+ "Language": "Idioma",
169
+ "Select the language you want to use. (Requires restarting Applio)": "Selecione o idioma que deseja usar. (Requer reiniciar o Applio)",
170
+ "Plugin Installer": "Instalador de Plug-ins",
171
+ "Drag your plugin.zip to install it": "Arraste o plugin.zip para instalá-lo",
172
+ "Version Checker": "Verificador de versão",
173
+ "Check which version of Applio is the latest to see if you need to update.": "Verifique qual versão do Applio é a mais recente para ver se você precisa atualizar.",
174
+ "Check for updates": "Verificar se há atualizações"
175
+ }
assets/i18n/languages/ro_RO.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Cel mai bun instrument de clonare a vocii, optimizat meticulos pentru putere, modularitate și experiență ușor de utilizat.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Această secțiune conține câteva utilități suplimentare care pot fi adesea în faze experimentale.",
4
+ "Output Information": "Informații despre ieșire",
5
+ "The output information will be displayed here.": "Informațiile de ieșire vor fi afișate aici.",
6
+ "Inference": "Deducţie",
7
+ "Train": "Tren",
8
+ "Extra": "Superfluu",
9
+ "Merge Audios": "Îmbinare audio",
10
+ "Processing": "Prelucrare",
11
+ "Audio Analyzer": "Analizor audio",
12
+ "Model Information": "Informații despre model",
13
+ "Plugins": "Plugin-uri",
14
+ "Download": "Descărca",
15
+ "Report a Bug": "Raportați o eroare",
16
+ "Settings": "Setări",
17
+ "Preprocess": "Preproces",
18
+ "Model Name": "Numele modelului",
19
+ "Name of the new model.": "Numele noului model.",
20
+ "Enter model name": "Introduceți numele modelului",
21
+ "Dataset Path": "Calea setului de date",
22
+ "Path to the dataset folder.": "Calea către folderul setului de date.",
23
+ "Refresh Datasets": "Reîmprospătarea seturilor de date",
24
+ "Dataset Creator": "Creator de seturi de date",
25
+ "Dataset Name": "Numele setului de date",
26
+ "Name of the new dataset.": "Numele noului set de date.",
27
+ "Enter dataset name": "Introduceți numele setului de date",
28
+ "Upload Audio Dataset": "Încărcați setul de date audio",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Fișierul audio a fost adăugat cu succes la setul de date. Vă rugăm să faceți clic pe butonul de preprocesare.",
30
+ "Enter dataset path": "Introduceți calea setului de date",
31
+ "Sampling Rate": "Rata de eșantionare",
32
+ "The sampling rate of the audio files.": "Rata de eșantionare a fișierelor audio.",
33
+ "RVC Version": "Versiunea RVC",
34
+ "The RVC version of the model.": "Versiunea RVC a modelului.",
35
+ "Preprocess Dataset": "Set de date preproces",
36
+ "Extract": "Extract",
37
+ "Hop Length": "Lungimea hameiului",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Denotă durata necesară pentru ca sistemul să treacă la o schimbare semnificativă a înălțimii. Lungimile mai mici ale hameiului necesită mai mult timp pentru inferență, dar tind să producă o precizie mai mare a pasului.",
39
+ "Batch Size": "Mărimea lotului",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Este recomandabil să îl aliniați cu VRAM disponibil al GPU-ului. O setare de 4 oferă o precizie îmbunătățită, dar o procesare mai lentă, în timp ce 8 oferă rezultate mai rapide și standard.",
41
+ "Save Every Epoch": "Salvați fiecare epocă",
42
+ "Determine at how many epochs the model will saved at.": "Determinați la câte epoci va fi salvat modelul.",
43
+ "Total Epoch": "Epoca totală",
44
+ "Specifies the overall quantity of epochs for the model training process.": "Specifică numărul total de epoci pentru procesul de instruire a modelului.",
45
+ "Pretrained": "Preinstruit",
46
+ "Save Only Latest": "Salvați numai cele mai recente",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Activarea acestei setări va avea ca rezultat salvarea fișierelor G și D numai a celor mai recente versiuni, economisind în mod eficient spațiul de stocare.",
48
+ "Save Every Weights": "Economisiți fiecare greutate",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Această setare vă permite să economisiți greutățile modelului la sfârșitul fiecărei epoci.",
50
+ "Custom Pretrained": "Personalizat Pretrained",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "Utilizarea modelelor personalizate pre-antrenate poate duce la rezultate superioare, deoarece selectarea celor mai potrivite modele pre-antrenate adaptate cazului de utilizare specific poate îmbunătăți semnificativ performanța.",
52
+ "Upload Pretrained Model": "Încărcați modelul preinstruit",
53
+ "Refresh Custom Pretraineds": "Reîmprospătați preinstruiții personalizați",
54
+ "Pretrained Custom Settings": "Setări personalizate pre-instruite",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "Fișierul pe care l-ați scăpat nu este un fișier preinstruit valid. Vă rugăm să încercați din nou.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Faceți clic pe butonul de reîmprospătare pentru a vedea fișierul preantrenat în meniul derulant.",
57
+ "Pretrained G Path": "G personalizat preantrenat",
58
+ "Pretrained D Path": "Personalizat Pretrained D",
59
+ "GPU Settings": "Setări GPU",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Setează setări GPU avansate, recomandate utilizatorilor cu o arhitectură GPU mai bună.",
61
+ "GPU Custom Settings": "Setări personalizate GPU",
62
+ "GPU Number": "Număr GPU",
63
+ "0 to ∞ separated by -": "0 până la ∞ separate de -",
64
+ "GPU Information": "Informații GPU",
65
+ "Pitch Guidance": "Pitch Guidance",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Prin utilizarea ghidării tonului, devine fezabilă oglindirea intonației vocii originale, inclusiv a înălțimii acesteia. Această caracteristică este deosebit de valoroasă pentru cântat și alte scenarii în care păstrarea melodiei originale sau a modelului de înălțime este esențială.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Utilizați modele pre-antrenate atunci când vă antrenați propriul. Această abordare reduce durata antrenamentului și îmbunătățește calitatea generală.",
68
+ "Extract Features": "Extrageți caracteristicile",
69
+ "Start Training": "Începeți instruirea",
70
+ "Generate Index": "Generare index",
71
+ "Voice Model": "Model vocal",
72
+ "Select the voice model to use for the conversion.": "Selectați modelul vocal de utilizat pentru conversie.",
73
+ "Index File": "Fișier index",
74
+ "Select the index file to use for the conversion.": "Selectați fișierul index de utilizat pentru conversie.",
75
+ "Refresh": "Împrospăta",
76
+ "Unload Voice": "Descărcare voce",
77
+ "Single": "Singur",
78
+ "Upload Audio": "Încărcare audio",
79
+ "Select Audio": "Selectați Audio",
80
+ "Select the audio to convert.": "Selectați sunetul de convertit.",
81
+ "Advanced Settings": "Setări avansate",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Ștergeți ieșirile (Șterge toate audio-urile din active / audio)",
83
+ "Custom Output Path": "Cale de ieșire personalizată",
84
+ "Output Path": "Cale de ieșire",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Calea în care va fi salvat sunetul de ieșire, în mod implicit în active / audio / output.wav",
86
+ "Split Audio": "Împărțire audio",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Împărțiți sunetul în bucăți pentru inferență pentru a obține rezultate mai bune în unele cazuri.",
88
+ "Autotune": "Reglare automată",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Aplicați o reglare automată ușoară la inferențele dvs., recomandată pentru conversiile de cântat.",
90
+ "Clean Audio": "Sunet curat",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Curățați ieșirea audio utilizând algoritmi de detectare a zgomotului, recomandați pentru enunțarea sunetului.",
92
+ "Clean Strength": "Rezistență curată",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Setați nivelul de curățare la sunetul dorit, cu cât îl măriți mai mult, cu atât se va curăța mai mult, dar este posibil ca sunetul să fie mai comprimat.",
94
+ "Pitch": "Smoală",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Setați înălțimea sunetului, cu cât este mai mare valoarea, cu atât este mai mare înălțimea.",
96
+ "Filter Radius": "Raza filtrului",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Dacă numărul este mai mare sau egal cu trei, utilizarea filtrării mediane pe rezultatele tonului colectat are potențialul de a scădea respirația.",
98
+ "Search Feature Ratio": "Raportul caracteristicilor de căutare",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Influența exercitată de fișierul index; O valoare mai mare corespunde unei influențe mai mari. Cu toate acestea, optarea pentru valori mai mici poate ajuta la atenuarea artefactelor prezente în audio.",
100
+ "Volume Envelope": "Plic de volum",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Înlocuiți sau amestecați cu plicul de volum al ieșirii. Cu cât raportul este mai apropiat de 1, cu atât este folosit mai mult plicul de ieșire.",
102
+ "Protect Voiceless Consonants": "Protejați consoanele fără voce",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Protejați consoanele distincte și sunetele de respirație pentru a preveni ruperea electro-acustică și alte artefacte. Tragerea parametrului la valoarea maximă de 0,5 oferă o protecție completă. Cu toate acestea, reducerea acestei valori ar putea reduce gradul de protecție, atenuând în același timp efectul de indexare.",
104
+ "Pitch extraction algorithm": "Algoritm de extracție a pitch-ului",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Algoritm de extragere a pitch-ului de utilizat pentru conversia audio. Algoritmul implicit este rmvpe, care este recomandat în majoritatea cazurilor.",
106
+ "Convert": "Converti",
107
+ "Export Audio": "Exportați audio",
108
+ "Batch": "Lot",
109
+ "Input Folder": "Folder de intrare",
110
+ "Select the folder containing the audios to convert.": "Selectați folderul care conține audio-urile de convertit.",
111
+ "Enter input path": "Introduceți calea de intrare",
112
+ "Output Folder": "Dosar de ieșire",
113
+ "Select the folder where the output audios will be saved.": "Selectați folderul în care vor fi salvate audio-urile de ieșire.",
114
+ "Enter output path": "Introduceți calea de ieșire",
115
+ "Get information about the audio": "Obțineți informații despre audio",
116
+ "Information about the audio file": "Informații despre fișierul audio",
117
+ "Waiting for information...": "În așteptarea informațiilor...",
118
+ "## Voice Blender": "## Blender de voce",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Selectați două modele de voce, setați procentajul de amestec dorit și amestecați-le într-o voce complet nouă.",
120
+ "Voice Blender": "Blender de voce",
121
+ "Drag and drop your model here": "Glisați și fixați modelul aici",
122
+ "You can also use a custom path.": "De asemenea, puteți utiliza un traseu personalizat.",
123
+ "Blend Ratio": "Raport de amestecare",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Ajustarea poziției mai mult spre o parte sau alta va face modelul mai asemănător cu primul sau al doilea.",
125
+ "Fusion": "Fuziune",
126
+ "Path to Model": "Calea către model",
127
+ "Enter path to model": "Introduceți calea către model",
128
+ "Model information to be placed": "Informații despre model care trebuie plasate",
129
+ "Inroduce the model information": "Inroduceți informațiile despre model",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "Informațiile care trebuie plasate în model (Puteți să-l lăsați necompletat sau să puneți orice).",
131
+ "View model information": "Vizualizarea informațiilor despre model",
132
+ "Introduce the model pth path": "Introduceți calea pth a modelului",
133
+ "View": "Vedere",
134
+ "Model extraction": "Extragerea modelului",
135
+ "Model conversion": "Conversia modelului",
136
+ "Pth file": "Fișier Pth",
137
+ "Output of the pth file": "Ieșirea fișierului pth",
138
+ "# How to Report an Issue on GitHub": "# Cum să raportați o problemă pe GitHub",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Faceți clic pe butonul \"Ecran de înregistrare\" de mai jos pentru a începe înregistrarea problemei pe care o întâmpinați.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. După ce ați terminat de înregistrat problema, faceți clic pe butonul \"Opriți înregistrarea\" (același buton, dar eticheta se schimbă în funcție de înregistrarea activă sau nu).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Accesați [Probleme GitHub] (https://github.com/IAHispano/Applio/issues) și faceți clic pe butonul \"Problemă nouă\".",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Completați șablonul de problemă furnizat, asigurându-vă că includeți detalii după cum este necesar și utilizați secțiunea active pentru a încărca fișierul înregistrat din pasul anterior.",
143
+ "Record Screen": "Ecran de înregistrare",
144
+ "Record": "Disc",
145
+ "Stop Recording": "Opriți înregistrarea",
146
+ "Introduce the model .pth path": "Introducerea căii .pth a modelului",
147
+ "See Model Information": "Consultați informațiile despre model",
148
+ "## Download Model": "## Descărcați modelul",
149
+ "Model Link": "Model Link",
150
+ "Introduce the model link": "Introduceți linkul modelului",
151
+ "Download Model": "Descărcați modelul",
152
+ "## Drop files": "## Aruncați fișiere",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Glisați fișierul .pth și fișierul .index în acest spațiu. Trageți unul și apoi celălalt.",
154
+ "TTS Voices": "Voci TTS",
155
+ "Select the TTS voice to use for the conversion.": "Selectați vocea TTS de utilizat pentru conversie.",
156
+ "Text to Synthesize": "Text pentru sintetizare",
157
+ "Enter the text to synthesize.": "Introduceți textul pentru a sintetiza.",
158
+ "Or you can upload a .txt file": "Sau puteți încărca un fișier .txt",
159
+ "Enter text to synthesize": "Introduceți text pentru sintetizare",
160
+ "Output Path for TTS Audio": "Cale de ieșire pentru TTS Audio",
161
+ "Output Path for RVC Audio": "Cale de ieșire pentru RVC Audio",
162
+ "Enable Applio integration with Discord presence": "Activați integrarea Applio cu prezența Discord",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Acesta va activa posibilitatea afișării activității curente Applio în Discord.",
164
+ "Enable Applio integration with applio.org/models using flask": "Activați integrarea Applio cu applio.org/models folosind balonul",
165
+ "It will activate the possibility of downloading models with a click from the website.": "Acesta va activa posibilitatea de a descărca modele cu un clic de pe site.",
166
+ "Theme": "Temă",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "Selectați tema pe care doriți să o utilizați. (Necesită repornirea Applio)",
168
+ "Language": "Limbă",
169
+ "Select the language you want to use. (Requires restarting Applio)": "Selectați limba pe care doriți să o utilizați. (Necesită repornirea Applio)",
170
+ "Plugin Installer": "Instalator de plugin-uri",
171
+ "Drag your plugin.zip to install it": "Trageți plugin.zip pentru a-l instala",
172
+ "Version Checker": "Verificator de versiuni",
173
+ "Check which version of Applio is the latest to see if you need to update.": "Verificați ce versiune de Applio este cea mai recentă pentru a vedea dacă trebuie să actualizați.",
174
+ "Check for updates": "Căutați actualizări"
175
+ }
assets/i18n/languages/ru_RU.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Идеальный инструмент для клонирования голоса, тщательно оптимизированный для непревзойденной мощности, модульности и удобства использования.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Этот раздел содержит некоторые дополнительные утилиты, которые часто находятся на экспериментальных стадиях.",
4
+ "Output Information": "Выходная информация",
5
+ "The output information will be displayed here.": "Здесь будет отображена выходная информация.",
6
+ "Inference": "Вывод",
7
+ "Train": "Поезд",
8
+ "Extra": "Дополнительный",
9
+ "Merge Audios": "Слияние аудиозаписей",
10
+ "Processing": "Обработка",
11
+ "Audio Analyzer": "Анализатор звука",
12
+ "Model Information": "Информация о модели",
13
+ "Plugins": "Плагины",
14
+ "Download": "Загружать",
15
+ "Report a Bug": "Сообщить об ошибке",
16
+ "Settings": "Параметры",
17
+ "Preprocess": "Предварительной обработки",
18
+ "Model Name": "Название модели",
19
+ "Name of the new model.": "Название новой модели.",
20
+ "Enter model name": "Введите название модели",
21
+ "Dataset Path": "Путь к набору данных",
22
+ "Path to the dataset folder.": "Путь к папке набора данных.",
23
+ "Refresh Datasets": "Обновление наборов данных",
24
+ "Dataset Creator": "Создатель набора данных",
25
+ "Dataset Name": "Имя набора данных",
26
+ "Name of the new dataset.": "Имя нового набора данных.",
27
+ "Enter dataset name": "Введите имя набора данных",
28
+ "Upload Audio Dataset": "Загрузка набора аудиоданных",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Аудиофайл успешно добавлен в набор данных. Пожалуйста, нажмите кнопку предварительной обработки.",
30
+ "Enter dataset path": "Введите путь к набору данных",
31
+ "Sampling Rate": "Частота дискретизации",
32
+ "The sampling rate of the audio files.": "Частота дискретизации аудиофайлов.",
33
+ "RVC Version": "Версия РВК",
34
+ "The RVC version of the model.": "Версия модели РВК.",
35
+ "Preprocess Dataset": "Набор данных предварительной обработки",
36
+ "Extract": "Экстракт",
37
+ "Hop Length": "Длина хмеля",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Обозначает время, необходимое системе для перехода к значительному изменению высоты тона. Меньшая длина скачка требует больше времени для логического вывода, но, как правило, обеспечивает более высокую точность шага.",
39
+ "Batch Size": "Размер партии",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Рекомендуется выровнять его с доступной видеопамятью вашего графического процессора. Значение 4 обеспечивает повышенную точность, но более медленную обработку, в то время как значение 8 обеспечивает более быстрые и стандартные результаты.",
41
+ "Save Every Epoch": "Сохраняйте каждую эпоху",
42
+ "Determine at how many epochs the model will saved at.": "Определите, в скольких эпохах будет сохраняться модель.",
43
+ "Total Epoch": "Общая эпоха",
44
+ "Specifies the overall quantity of epochs for the model training process.": "Задает общее количество эпох для процесса обучения модели.",
45
+ "Pretrained": "Предварительно обученный",
46
+ "Save Only Latest": "Сохранить только последние новости",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Включение этого параметра приведет к тому, что файлы G и D будут сохранять только свои самые последние версии, эффективно экономя место на диске.",
48
+ "Save Every Weights": "Сохраняйте все веса",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Эта настройка позволяет сохранять весовые коэффициенты модели в конце каждой эпохи.",
50
+ "Custom Pretrained": "Пользовательский предварительно обученный",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "Использование пользовательских предварительно обученных моделей может привести к превосходным результатам, так как выбор наиболее подходящих предварительно обученных моделей, адаптированных к конкретному сценарию использования, может значительно повысить производительность.",
52
+ "Upload Pretrained Model": "Отправка предварительно обученной модели",
53
+ "Refresh Custom Pretraineds": "Обновление пользовательских предварительно обученных объектов",
54
+ "Pretrained Custom Settings": "Предварительно обученные пользовательские параметры",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "Файл, который вы удалили, не является допустимым предварительно обученным файлом. Повторите попытку.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Нажмите кнопку обновления, чтобы увидеть предварительно обученный файл в раскрывающемся меню.",
57
+ "Pretrained G Path": "Пользовательский предварительно обученный G",
58
+ "Pretrained D Path": "Пользовательский предварительно обученный D",
59
+ "GPU Settings": "Настройки графического процессора",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Устанавливает расширенные настройки графического процессора, рекомендуемые для пользователей с улучшенной архитектурой графического процессора.",
61
+ "GPU Custom Settings": "Пользовательские настройки графического процессора",
62
+ "GPU Number": "Номер графического процессора",
63
+ "0 to ∞ separated by -": "от 0 до ∞ разделенных -",
64
+ "GPU Information": "Информация о графическом процессоре",
65
+ "Pitch Guidance": "Руководство по питчу",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Используя управление высотой тона, становится возможным отразить интонацию исходного голоса, включая его высоту. Эта функция особенно ценна для пения и других сценариев, где важно сохранить оригинальную мелодию или тональность.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Используйте предварительно обученные модели при обучении своих собственных. Такой подход сокращает продолжительность обучения и повышает общее качество.",
68
+ "Extract Features": "Извлечение объектов",
69
+ "Start Training": "Начать обучение",
70
+ "Generate Index": "Сгенерировать индекс",
71
+ "Voice Model": "Голосовая модель",
72
+ "Select the voice model to use for the conversion.": "Выберите голосовую модель, которая будет использоваться для преобразования.",
73
+ "Index File": "Индексный файл",
74
+ "Select the index file to use for the conversion.": "Выберите индексный файл, который будет использоваться для преобразования.",
75
+ "Refresh": "Освежать",
76
+ "Unload Voice": "Выгрузить голос",
77
+ "Single": "Единственный",
78
+ "Upload Audio": "Загрузить аудио",
79
+ "Select Audio": "Выберите Аудио",
80
+ "Select the audio to convert.": "Выберите аудио для преобразования.",
81
+ "Advanced Settings": "Расширенные настройки",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Clear Outputs (Удаляет все аудиозаписи в assets/audios)",
83
+ "Custom Output Path": "Пользовательский выходной путь",
84
+ "Output Path": "Выходной путь",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Путь, по которому будет сохранен выходной звук, по умолчанию в assets/audios/output.wav",
86
+ "Split Audio": "Разделенное аудио",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Разделите аудио на фрагменты для вывода, чтобы получить лучшие результаты в некоторых случаях.",
88
+ "Autotune": "Автотюн",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Примените мягкую автонастройку к своим выводам, рекомендуемую для певческих преобразований.",
90
+ "Clean Audio": "Чистый звук",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Очистите аудиовыход с помощью алгоритмов обнаружения шума, рекомендуемых для проговаривания аудио.",
92
+ "Clean Strength": "Чистая прочность",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Установите желаемый уровень очистки звука, чем больше вы его увеличите, тем больше он будет очищаться, но возможно, что звук будет более сжатым.",
94
+ "Pitch": "Смола",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Установите высоту звука, чем выше значение, тем выше высота тона.",
96
+ "Filter Radius": "Радиус фильтра",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Если это число больше или равно трем, использование медианной фильтрации по собранным результатам тона может привести к снижению дыхания.",
98
+ "Search Feature Ratio": "Соотношение объектов поиска",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Влияние, оказываемое индексным файлом; Чем выше значение, тем больше влияние. Однако выбор более низких значений может помочь смягчить артефакты, присутствующие в аудио.",
100
+ "Volume Envelope": "Огибающая объема",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Замените или смешайте с огибающей громкости выхода. Чем ближе отношение к 1, тем больше используется выходная огибающая.",
102
+ "Protect Voiceless Consonants": "Защита глухих согласных",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Защитите отчетливые согласные и звуки дыхания, чтобы предотвратить электроакустические разрывы и другие артефакты. Извлечение параметра до максимального значения 0,5 обеспечивает комплексную защиту. Однако уменьшение этого значения может снизить степень защиты, потенциально смягчив эффект индексирования.",
104
+ "Pitch extraction algorithm": "Алгоритм извлечения высоты тона",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Алгоритм извлечения высоты тона, используемый для преобразования звука. По умолчанию используется алгоритм rmvpe, который рекомендуется для большинства случаев.",
106
+ "Convert": "Обращать",
107
+ "Export Audio": "Экспорт аудио",
108
+ "Batch": "Партия",
109
+ "Input Folder": "Входная папка",
110
+ "Select the folder containing the audios to convert.": "Выберите папку, содержащую аудиофайлы для преобразования.",
111
+ "Enter input path": "Введите путь ввода",
112
+ "Output Folder": "Выходная папка",
113
+ "Select the folder where the output audios will be saved.": "Выберите папку, в которой будут сохранены выходные аудиозаписи.",
114
+ "Enter output path": "Введите выходной путь",
115
+ "Get information about the audio": "Получение информации об аудио",
116
+ "Information about the audio file": "Информация об аудиофайле",
117
+ "Waiting for information...": "Жду информации...",
118
+ "## Voice Blender": "## Голосовой блендер",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Выберите две модели голоса, установите желаемый процент смешивания и смешайте их в совершенно новый голос.",
120
+ "Voice Blender": "Голосовой блендер",
121
+ "Drag and drop your model here": "Перетащите сюда свою модель",
122
+ "You can also use a custom path.": "Вы также можете использовать пользовательский путь.",
123
+ "Blend Ratio": "Соотношение смешивания",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Изменение положения в ту или иную сторону сделает модель более похожей на первую или вторую.",
125
+ "Fusion": "Слияние",
126
+ "Path to Model": "Путь к модели",
127
+ "Enter path to model": "Введите путь к модели",
128
+ "Model information to be placed": "Информация о модели, которая будет размещена",
129
+ "Inroduce the model information": "Ввод информации о модели",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "Информация, которая будет размещена в модели (Вы можете оставить ее пустой или поставить что угодно).",
131
+ "View model information": "Просмотр информации о модели",
132
+ "Introduce the model pth path": "Знакомство с моделью pth-пути",
133
+ "View": "Вид",
134
+ "Model extraction": "Извлечение модели",
135
+ "Model conversion": "Преобразование модели",
136
+ "Pth file": "P-й файл",
137
+ "Output of the pth file": "Вывод p-го файла",
138
+ "# How to Report an Issue on GitHub": "# Как сообщить о проблеме на GitHub",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Нажмите кнопку «Записать экран» ниже, чтобы начать запись проблемы, с которой вы столкнулись.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. После того, как вы закончили запись задачи, нажмите кнопку «Остановить запись» (та же кнопка, но метка меняется в зависимости от того, ведете ли вы активную запись или нет).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Перейдите в [GitHub Issues](https://github.com/IAHispano/Applio/issues) и нажмите кнопку «Новая проблема».",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Заполните предоставленный шаблон задачи, не забудьте включить необходимые сведения и используйте раздел ресурсов для загрузки записанного файла с предыдущего шага.",
143
+ "Record Screen": "Запись экрана",
144
+ "Record": "Запись",
145
+ "Stop Recording": "Остановить запись",
146
+ "Introduce the model .pth path": "Знакомство с моделью .pth-пути",
147
+ "See Model Information": "Посмотреть информацию о модели",
148
+ "## Download Model": "## Скачать модель",
149
+ "Model Link": "Ссылка на модель",
150
+ "Introduce the model link": "Введение ссылки на модель",
151
+ "Download Model": "Скачать модель",
152
+ "## Drop files": "## Удаление файлов",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Перетащите файлы .pth и .index в это пространство. Перетащите один, а затем другой.",
154
+ "TTS Voices": "Голоса TTS",
155
+ "Select the TTS voice to use for the conversion.": "Выберите голос TTS, который будет использоваться для преобразования.",
156
+ "Text to Synthesize": "Синтезируемый текст",
157
+ "Enter the text to synthesize.": "Введите текст для синтеза.",
158
+ "Or you can upload a .txt file": "Или вы можете загрузить .txt файл",
159
+ "Enter text to synthesize": "Введите текст для синтеза",
160
+ "Output Path for TTS Audio": "Выходной тракт для TTS Audio",
161
+ "Output Path for RVC Audio": "Выходной тракт для RVC Audio",
162
+ "Enable Applio integration with Discord presence": "Включите интеграцию Applio с присутствием в Discord",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Это активирует возможность отображения текущей активности Applio в Discord.",
164
+ "Enable Applio integration with applio.org/models using flask": "Включите интеграцию Applio с applio.org/models с помощью flask",
165
+ "It will activate the possibility of downloading models with a click from the website.": "Он активирует возможность скачивания моделей одним кликом с сайта.",
166
+ "Theme": "Тема",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "Выберите тему, которую хотите использовать. (Требуется перезапуск Applio)",
168
+ "Language": "Язык",
169
+ "Select the language you want to use. (Requires restarting Applio)": "Выберите язык, который вы хотите использовать. (Требуется перезапуск Applio)",
170
+ "Plugin Installer": "Установщик плагинов",
171
+ "Drag your plugin.zip to install it": "Перетащите plugin.zip, чтобы установить его",
172
+ "Version Checker": "Проверка версий",
173
+ "Check which version of Applio is the latest to see if you need to update.": "Проверьте, какая версия Applio является последней, чтобы узнать, нужно ли вам обновление.",
174
+ "Check for updates": "Проверьте наличие обновлений"
175
+ }
assets/i18n/languages/ta-IN.json ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "முழுமையான குரல் குளோனிங் கருவி, அநாகரமாக ஒருமிக்க, பகுக்காதது, பயனர் உருவாக்கத்திற்கு உயரியது.\n[தமிழ் மொழிபெயர்ப்பு: Enes](https://discord.com/users/1140031358006202468)",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "இந்த பிரிவில் சேர்ந்துள்ள கொடுமை கருவிகளில் சார்ந்த பல கூட்டுத்தரங்களைக் கொண்டுள்ளது.",
4
+ "Output Information": "வெளியீடு தகவல்",
5
+ "The output information will be displayed here.": "வெளியீடு தகவல் இங்கே காட்டப்படும்.",
6
+ "Inference": "கருத்து",
7
+ "Train": "பயிற்சி",
8
+ "Extra": "கூடுதல்",
9
+ "Merge Audios": "ஒரேபோனில் ஒன்றாக்குக",
10
+ "Processing": "செயலாக்கம்",
11
+ "Audio Analyzer": "ஆடியோ பகுப்பாய்வாளர்",
12
+ "Model Information": "மாதிரி தகவல்",
13
+ "Plugins": "பிளகின்கள்",
14
+ "Download": "பதிவிறக்கம்",
15
+ "Report a Bug": "பிழை அறிக்கை",
16
+ "Settings": "அமைப்புகள்",
17
+ "Preprocess": "முன்பாகவும்",
18
+ "Model Name": "மாதிரி பெயர்",
19
+ "Name of the new model.": "புதிய மாதிரி பெயர்.",
20
+ "Enter model name": "மாதிரி பெயரை உள்ளிடவும்",
21
+ "Dataset Path": "தரவுத்தொகுதி பாதை",
22
+ "Path to the dataset folder.": "தரவுத்தொகுதி கோப்புக்கு பாதை.",
23
+ "Refresh Datasets": "தரவுத்தொகுதிகளை புதுப்பிக்கவும்",
24
+ "Dataset Creator": "தரவுத்தொகுதி உருவாக்கி",
25
+ "Dataset Name": "தரவுத்தொகுதி பெயர்",
26
+ "Name of the new dataset.": "புதிய தரவுத்தொகுதி பெயர்.",
27
+ "Enter dataset name": "தரவுத்தொகுதி பெயரை உள்ளிடவும்",
28
+ "Upload Audio Dataset": "ஆடியோ தரவுத்தொகுதியை பதிவேற்றவும்",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "ஆடியோ கோப்பு தரவுத்தொகுதிக்கு வெற்றிகரமாக சேர்க்கப்பட்டுள்ளது. தயவுசெய்து முன்னிருப்பை அழுத்தவும்.",
30
+ "Enter dataset path": "தரவுத்தொகுதி பாதையை உள்ளிடவும்",
31
+ "Sampling Rate": "மாதிரி விகிதம்",
32
+ "The sampling rate of the audio files.": "ஆடியோ கோப்புகளின் மாதிரி விகிதம்.",
33
+ "RVC Version": "RVC பதிப்பு",
34
+ "The RVC version of the model.": "மாதிரி RVC பதிப்பு.",
35
+ "Preprocess Dataset": "முன்பாகவும் தரவுத்தொகுதி",
36
+
37
+ "Embedder Model": "உள்ளீடு மாதிரி",
38
+ "Model used for learning speaker embedding.": "பேச்சாளர் உள்ளீட்டை கற்க பயன்படுத்தப்படும் மாதிரி.",
39
+ "Extract": "எக்ஸ்ட்ராக்ட்",
40
+ "Hop Length": "ஹாப் நீளம்",
41
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "கருத்துக்கு எவ்வளவு நேரம் எடுத்துக் கொள்கிறது என்றால், அது ஒரு முக்கிய பிச் மாற்றத்திற்கு அமைந்துகொள்கின்றது. சிறிய ஹாப் நீளங்களுக்கு அதிக நேரம் தேவைப்படுகின்றது ஆனால் அவை உயரமான பிச் சரிசெய்தியை உருவாக்க உதவுகின்றன.",
42
+ "Batch Size": "பேட்ச் அளவு",
43
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "உங்கள் GPU கிடைக்கும் கிடைச்சதை அவசியமாக உள்ளிட பரிந்திருக்கின்றது. 4 என்ற அமைப்பு உயர்த்தப்பட்ட உறுதியுள்ள சொல்லத்தைக் கொண்டுள்ளது ஆனால் அதிக நேரம் பயன்படுகின்றது, 8 அமைப்பு விரைவாக மற்றும் நிலைக்குப் பொருத்தப்படுகிறது.",
44
+ "Save Every Epoch": "ஒவ்வொரு காலமும் சேமிக்கவும்",
45
+ "Determine at how many epochs the model will saved at.": "மாதிரி எதிர்காலங்களில் எத்தனை படிப்புகளில் மாதிரியைச் சேமிக்க விரும்புகிறீர்கள்.",
46
+ "Total Epoch": "மொத்த எபக்",
47
+ "Specifies the overall quantity of epochs for the model training process.": "மாதிரி பயிற்சி செய்திகளின் மொத்த அளவை குறிப்பிடுகிறது.",
48
+ "Pretrained": "பூர்வதயாரிக",
49
+ "Save Only Latest": "கடைசியே சேமிக்கவும்",
50
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "இந்த அமைப்பை இயக்கும் போது G மற்றும் D கோப்புகள் உங்கள் கடைசி பதிப்புகளைச் சேமிக்கும், வாயிலாக சேமிக்கப்படுகின்றன.",
51
+ "Save Every Weights": "ஒவ்வொரு எடைக்கும் சேமிக்கவும்",
52
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "இந்த அமைப்பு உங்கள் மாதிரி பயிற்சி செய்தியின் முடிவில் மாதிரிகளை சேமிக்க அனுமதிக்கின்றது.",
53
+ "Custom Pretrained": "கஸ்டம் பூர்வதயாரிக",
54
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "கஸ்டம் பூர்வதயாரிக மாதிரிகளை பயன்படுத்துவது சிறந்த விளக்கங்களை தரலாம், குறிப்பிடுகின்ற குழப்பத்திற்கு ஏற்றதும் பூர்வதயாரிக மாதிரிகளைத் தேர்ந்தெடுக்க உடனே அந்தக் குழப்பத்தை அபூர்வமாக செயல்படுத்தலாம்.",
55
+ "Upload Pretrained Model": "பூர்வதயாரிக மாதிரி மோடெலை பதிவேற்றவும்",
56
+ "Refresh Custom Pretraineds": "கஸ்டம் பூர்வதயாரிகளை புதுப்பிக்கவும்",
57
+ "Pretrained Custom Settings": "கஸ்டம் பூர்வதயாரிக அமைப்புகள்",
58
+ "The file you dropped is not a valid pretrained file. Please try again.": "நீங்கள் பொருத்தவில்லை என்றால் பூர்வதயாரிக கோப்பு அல்ல. மீண்டும் முயற்சிக்கவும்.",
59
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "கீழேயுள்ள பட்டி பட்டியில் பூர்வதயாரிக கோப்புக்கு உருவாக்க முயலுங்கள்.",
60
+ "Pretrained G Path": "கஸ்டம் பூர்வதயாரிக G பாதை",
61
+ "Pretrained D Path": "கஸ்டம் பூர்வதயாரிக D பாதை",
62
+ "GPU Settings": "GPU அமைப்புகள்",
63
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "மேலும் முதிர்ச்சியான GPU அமைப்புகளை அமைக்கின்றது, உடனடியான GPU கருவிக்கு பரிந்திரமான பயனாளர்களுக்கு பரிந்துரிக்கப்படுகிறது.",
64
+ "GPU Custom Settings": "GPU கஸ்டம் அமைப்புகள்",
65
+ "GPU Number": "GPU எண்",
66
+ "0 to ∞ separated by -": "0 இரு ∞ பிரிவாக - வாக்கப்பட்டு",
67
+ "GPU Information": "GPU தகவல்",
68
+ "Pitch Guidance": "பிச் வழிநிரப்பல்",
69
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "பிச் வழிநிரப்பல் மூலம், மூல குரலின் ஒலிக்கோட்டைக் கண்டுகொள்வது சாத்தியமாகின்றது, அதன் பிச்சை கூட. இந்த அம்சம் குரல் பாடலுக்கும் மற்றும் உலாவிகளுக்கும் மூல இசை அல்லது பிச் முதிரையைக் காப்பாற்ற எளியதாக இருக்கும்.",
70
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "உங்கள் பயிற்சியில் உங்கள் தனிப்பட்ட மாதிரிகளை பயன்படுத்துவது பூர்வதயாரிக மாதிரிகளை பயன்படுத்துவது குரல் பயிற்சி காலத்தை குறைக்கின்றது மற்றும் மொத்த தரவின் உயர்த்துத்தை அதிகரிக்கின்றது.",
71
+ "Extract Features": "அம்சங்கள் எடு",
72
+ "Overtraining Detector": "அதிகமாக பயிற்சிப்படுத்தும் அறிவுப்பால்",
73
+ "Detect overtraining to prevent the model from learning the training data too well and losing the ability to generalize to new data.": "பயிற்சிப்படுத்தும் தரவை மிகவும் நன்றாக அறியும் பாதுகாப்பு மூலம் மாதிரி பயிற்சிப்படுத்துதலை தடுக்க, புதிய தரவுக்கு பொதுவாக பொருத்தமாக மாற்ற அனுமதியை இழக்குகிறது.",
74
+ "Overtraining Detector Settings": "அதிக பயிற்சிப்படுத்தும் அறிவுப்பால் அமைப்புகள்",
75
+ "Overtraining Threshold": "அதிக பயிற்சிப்படுத்தும் அறிவுப்பால் அதிகம்",
76
+ "Set the maximum number of epochs you want your model to stop training if no improvement is detected.": "அதிகமாக பயிற்சிப்படுத்தும் தரவு அறியப்படாதால் உங்கள் மாதிரியின் பயிற்சிப்படுத்தும் மொத்த எண்ணிக்கையை அமைக்கவும்.",
77
+
78
+ "Start Training": "பயிற்சி ஆரம்பிக்கவும்",
79
+ "Stop Training & Restart Applio": "பயிற்சி நிறுத்து & புதுப்பிக்க Applio",
80
+ "Generate Index": "சுருக்கம் உருவாக்கு",
81
+
82
+ "Export Model": "ஏற்றுமதி மாதிரி",
83
+ "The button 'Upload' is only for google colab: Uploads the exported files to the ApplioExported folder in your Google Drive.": "'பதிவேற்று' பொத்தான்கள் உள்ளீட்டிற்கு மட்டுமே கூகுள் கோலாப் சேமிப்பகத்திற்கு கடைசியாக கூகுள் டிரைவில் உங்கள் ApplioExported கோப்புக்கு ஏற்றுமதிக்கும்.",
84
+ "Exported Pth file": "ஏற்றுமதிக்கப்பட்ட Pth கோப்பு",
85
+ "Exported Index file": "ஏற்றுமதிக்கப்பட்ட சுட்டி கோப்பு",
86
+ "Select the pth file to be exported": "ஏற்றுமதிக்க வேண்டிய pth கோப்பைத் தேர்ந்தெடுக்கவும்",
87
+ "Select the index file to be exported": "ஏற்றுமதிக்க வேண்டிய சுட்டி கோப்பைத் தேர்ந்தெடுக்கவும்",
88
+ "Upload": "பதிவேற்று",
89
+
90
+ "Voice Model": "குரல் மாதிரி",
91
+ "Select the voice model to use for the conversion.": "மாற்றத்திற்கு பயன்படுத்த விரும்பும் குரல் மாதிரியை தேர்ந்தெடுக்��வும்.",
92
+ "Index File": "சுருக்க கோப்பு",
93
+ "Select the index file to use for the conversion.": "மாற்றத்திற்கு பயன்படுத்த உள்ள சுருக்க கோப்பை தேர்ந்தெடுக்கவும்.",
94
+ "Refresh": "புதுப்பிக்கவும்",
95
+ "Unload Voice": "குரல் அமைதி",
96
+ "Single": "ஒற்றை",
97
+ "Upload Audio": "ஒலியை பதிவேற்று",
98
+ "Select Audio": "ஒலியைத் தேர்ந்தெடு",
99
+ "Select the audio to convert.": "மாற்றுவதற்கு ஒலியைத் தேர்ந்தெடு.",
100
+ "Advanced Settings": "மேம்பாடு அமைப்புகள்",
101
+ "Clear Outputs (Deletes all audios in assets/audios)": "வெற்றிகளை அழித்தல் (assets/audios உள்ள அனைத்து ஒலிகளையும் நீக்கும்)",
102
+ "Custom Output Path": "கஸ்டம் வெற்றிப் பாதை",
103
+ "Output Path": "வெற்றி பாதை",
104
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "வெற்றிகள் உள்ளிடப்பட்ட ஒலியைச் சேமிக்கப்படும் பாதை, பொதுவாக assets/audios/output.wav இல்.",
105
+ "Split Audio": "ஒலியை பிரித்தல்",
106
+ "Split the audio into chunks for inference to obtain better results in some cases.": "கொலுசுகளாக ஒலியை பிரிக்க, சில நிலைகளில் சிறப்பு விளக்கங்களைப் பெற விரும்புகின்றது.",
107
+ "Autotune": "ஆட்டோடியூன்",
108
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "உங்கள் முன்னோடிகளுக்கு ஒரு மென்னுரை ஆட்டோடியூனை பயன்படுத்தவும், பாடல் மாற்றங்களுக்கு பரிந்துரிக்கப்படுகின்றது.",
109
+ "Clean Audio": "சுத்தமான ஒலி",
110
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "உங்கள் ஒலி வெற்றியை சுத்தமாக்க, பேசும் ஒலிகளுக்கு பரிந்துரிக்கப்படுகின்றது.",
111
+ "Clean Strength": "சுத்த வலிமை",
112
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "நீங்கள் விரும்பும் ஒலிக்கு சுத்தமாக்க விளக்கு, அதை அதிகரிக்கும்போது அது அதிகரிக்கும், ஆனால் ஒலி குறுகியாக இருக்கலாம்.",
113
+ "Pitch": "பிச்",
114
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "ஒலியின் பிச் அமைக்கவும், மதிப்பு உயரானதும் அதிகமாகும்.",
115
+ "Filter Radius": "குழப்பத்தின் அருகு",
116
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "எண் மூலம் மூன்று அல்லது அதனை விட அதிகமாக இருந்தால், சேகரித்த இசை முடிவுகளில் இயலுமை குறைவாகும் என்று சொல்லப்படுகின்றது.",
117
+ "Search Feature Ratio": "தேடல் அம்ச விகிதம்",
118
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "இடைவரிசு கோப்பின் மூலம் உள்ள பாதியான ஒருவரிடத்திற்கு உருவாகும் அந்தக் கோப்பு; அதிக மதிப்பு அதிக உருவாகும் என்று அர்த்தம். எனவே, குறோக்கின் குறைந்த மதிப்புகளைத் தேர்வுசெய்வதால் ஒலியில் உள்ள கலப்புகளைத் தவிர்க்க உதவலாம்.",
119
+ "Volume Envelope": "அளவு என்வெலோப்",
120
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "வெற்றியின் அளவு என்வெலோப் இல் மாறியது அல்லது இணைந்தது. விளக்கு அந்த விகிதம் 1 க்கு அழைத்திருந்தால், வெற்றியின் அளவு என்வெலோப் பயன்படும்.",
121
+ "Protect Voiceless Consonants": "குரலின் இல்லாத ஸ்வரக்களைக் காப்பாற்றவும்",
122
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "எலக்ட்ரோ-ஒலி கொழுகு மற்றும் பிற கலப்புகளை தடுக்குவதற்கு விரிவான ஸ்வரக்களுக்கு மற்றும் சுவாசத் தானங்களுக்கு பாதுகாக்க. இந்த அளவுக்கு அதிகமாக 0.5 க்கு அழைத்துக் கொள்வது பொருத்தமான பாதுகாப்பை வழங்குகின்றது. ஆனால், இந்த மதிப்பை குறைந்ததாக்கின்றார் என்றால், பாதுகாப்புக்குரிய நிலை குறைந்துவிடப்படலாம் மற்றும் அதுவே இந்தக் குறோக்குனை பரிந்துரிக்கும் என்று எச்சரிக்கை தரகின்றது.",
123
+ "Pitch extraction algorithm": "பிச் எக்ஸ்டிரக்ஷன் அளவுத் தொகுப்பு",
124
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "ஒலி மாற்றத்திற்கு பயன்படுத்த வேண்டிய பிச் எக்ஸ்டிரக்ஷன் அளவுத் தொகுப்பு. இயல்பான அளவுத் தொகுப்பு rmvpe ஆகும், இது அதிகமாக பரிந்துரிக்கப்படுகின்றது.",
125
+
126
+ "Convert": "மாற்று",
127
+ "Export Audio": "ஒலியை ஏற்றுமதி செய்",
128
+
129
+ "Batch": "பேட்ச்",
130
+ "Input Folder": "உள்ளிடும் கோப்பு",
131
+ "Select the folder containing the audios to convert.": "மாற்ற ஒலிகளைக் கொண்ட கோப்புகளைக் கொண்ட கோப்புக்கு தேர்ந்தெடு.",
132
+ "Enter input path": "உள்ளிடும் பாதையை உள்ளிடுக",
133
+ "Output Folder": "வெற்றி கோப்பு",
134
+ "Select the folder where the output audios will be saved.": "வெற்றிகளைச் சேமிக்கப்படும் கோப்புக்கு தேர்ந்தெடு.",
135
+ "Enter output path": "வெற்றியின் பாதையை உள்ளிடுக",
136
+
137
+ "Get information about the audio": "ஒலியை பற்றிய தகவல் பெறுக",
138
+
139
+ "## Voice Blender": "## குரல் பிளெண்டர்",
140
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "இரண்டு குரல் மாதிரிகளைத் தேர்வு செய்து, விரும்பிய குரல் சதவீதம் அமைக்கவும், அவைகளை முழுமையாக ஒரு புதிய குரலாக பிளெண்டுகின்றன.",
141
+ "Voice Blender": "குரல் பிளெண்டர்",
142
+ "Drag and drop your model here": "உங்கள் மாதிரி இங்கே எழுதவும்",
143
+ "You can also use a custom path.": "நீங்கள் கஸ்டம் பாதையையும் பயன்படுத்தலாம்.",
144
+ "Blend Ratio": "குரல் சதவீதம்",
145
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "ஒரு பக்கத்திற்கு அல்லது மற்றும் மற்றும் அதிகமாக செய்யும் உள்ளீடு இரட்டிப் பார்த்துக் கொள்ளுதல் மாதிரியாகின்றது.",
146
+ "Fusion": "ஐக்கியம்",
147
+ "Path to Model": "மாதிரிக்கு பாதை",
148
+ "Enter path to model": "மாதிரிக்கு பாதையை உள்ளிடுக",
149
+ "Model information to be placed": "இருந்து விடப்பட வேண்டிய மாதிரி தகவல்",
150
+ "Introduce the model information": "மாதிரி தகவல் அறிமுகம்",
151
+ "The information to be placed in the model (You can leave it blank or put anything).": "மாதிரிக்கு வைக்கப்பட வேண்டிய தகவல் (நீங்கள் அந்தச் செயலை விட அந்தச் செய்யாமல் அனைத்ததையும் வைக்கலாம்).",
152
+ "View model information": "மாதிரி தகவலைக் காண்க",
153
+ "Introduce the model pth path": "மாதிரி pth பாதையை உள்ளிடுக",
154
+ "View": "காண்க",
155
+ "Model extraction": "மாதிரி எடுத்தல்",
156
+ "Model conversion": "மாதிரி மாற்றம்",
157
+ "Pth file": "Pth கோப்பு",
158
+ "Output of the pth file": "Pth கோப்பின் வெளியேற்றம்",
159
+ "# How to Report an Issue on GitHub": "# GitHub-ல் ஒரு பிரச்சினையை புகாரளிக்குவது எப்படி",
160
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. நீங்கள் அந்தப் பிரச்சினையை பரிசோதிக்கும் கீழே 'திரையை பதிகம் செய்யும்' பொத்தானை கிளிக் செய்யவும்.",
161
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. நீங்கள் அந்தப் பிரச்சினையை பரிசோதித்துக் கொண்டிருக்கின்றீர்கள், அந்தச் செய்யப்படும் பொத்தானை கிளிக் செய்யவும் (இது நீங்கள் சொல்லப்படும் பொத்தான், ஆனால் நீங்கள் எந்தவேணையும் செய்யக்கூடிய நிலையின் போது பொத்தானின் பெயர் மாறுகின்றது).",
162
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Issues](https://github.com/IAHispano/Applio/issues) க்கு செல்லவும் மற்றும் 'புதிய பிரச்சினை' பொத்தானை கிளிக் செய்யவும்.",
163
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. வழுதுணர்ந்து, தேவையான விவரங்களைக் கொண்டு விரிவாக பிரச்சினை பதிவேடு செய்து, முந்தைய படித்த கோப்பை பதிவேடுக்கு பயன்படுத்தலாம்.",
164
+ "Record Screen": "திரையை பதிகம் செய்க",
165
+ "Record": "பதிகம் செய்க",
166
+ "Stop Recording": "பதிகம் நிறுத்துக",
167
+ "Introduce the model .pth path": "மாதிரி .pth பாதையை உள்ளிடுக",
168
+ "See Model Information": "மாதிரி தகவலைக் காண்க",
169
+ "## Download Model": "## மாதிரி பதிவிறக்கம்",
170
+ "Model Link": "மாதிரி இணைப்பு",
171
+ "Introduce the model link": "மாதிரி இணைப்பை உள்ளிடுக",
172
+ "Download Model": "மாதிரி பதிவிறக்கம்",
173
+ "## Drop files": "## கோப்புகளை விழுக",
174
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "உங்கள் .pth கோப்பு மற்றும் .index கோப்பை இந்த இடத்திற்கு எழுதுங்கள். ஒருவருக்கு பிறகு ஒருவருக்கு எழுதுங்கள்.",
175
+ "## Search Model": "## மாதிரி தேடு",
176
+ "Search": "தேடு",
177
+ "Introduce the model name to search.": "தேடுவதற்கு மாதிரிப் பெயரை அறிமுகப்படுத்து.",
178
+ "We couldn't find models by that name.": "அந்த பெயரில் மாதிரி���ளைக் கண்டுபிடிக்க முடியவில்லை.",
179
+
180
+ "TTS Voices": "TTS குரல்கள்",
181
+ "Select the TTS voice to use for the conversion.": "மாற்றத்திற்கு பயன்படுத்த உள்ள TTS குரலை தேர்ந்தெடுக்கவும்.",
182
+ "Text to Synthesize": "சிந்தனை செய்ய உள்ள உரை",
183
+ "Enter the text to synthesize.": "சிந்தனை செய்ய உள்ள உரையை உள்ளிடுக.",
184
+ "Or you can upload a .txt file": "அல்லது .txt கோப்பை பதிவேற்றலாம்",
185
+ "Enter text to synthesize": "சிந்தனை செய்ய உள்ள உரையை உள்ளிடுக",
186
+ "Output Path for TTS Audio": "TTS குரலுக்கான வெளியேற்ற பாதை",
187
+ "Output Path for RVC Audio": "RVC குரலுக்கான வெளியேற்ற பாதை",
188
+ "Enable Applio integration with Discord presence": "Discord உள்ளிட்டது உள்ளிடத்துடன் Applio ஒருவருக்கு இயங்குதல் இயல்புநிலை செய்தியை இயக்குங்கள்",
189
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "இது Applio செயல்திறனை Discord-ல் காண்பிக்க முடியும்.",
190
+ "Enable Applio integration with applio.org/models using flask": "flask ஐப் பயன்படுத்தி applio.org/models உடன் Applio ஒருவருக்கு இயங்குதல் இயல்புநிலை செய்தியை இயக்குங்கள்",
191
+ "It will activate the possibility of downloading models with a click from the website.": "இது இணையத்திலிருந்து ஒரு கிளிக்குட்டுடன் மாதிரிகளை பதிவிறக்க முடியும்.",
192
+ "Enable fake GPU": "கப்பூ ஜி.பி.யூ ஐ இயக்கு",
193
+ "Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option.": "ஒரு ஜி.பி.யூ இல்லாமல் தற்போது பயிற்சிப்படுத்தல் ஆதரிக்கப்படவில்லை. பயிற்சிக்கு பட்டி செயல்முறையை செயலாக்க, அமைப்புகள் பட்டியலில் செல்ல, 'பெயர் ஜி.பி.யூ' விருப்பத்தை இயக்கவும்.",
194
+ "Activates the train tab. However, please note that this device lacks GPU capabilities, hence training is not supported. This option is only for testing purposes. (This option will restart Applio)": "பயிற்சிக்கு பட்டி செயலாக்கிறது. எனவே, இந்த சாதனம் ஜி.பி.யூ திறன் இல்லையாம், அதனால் பயிற்சி ஆதரிக்கப்படவில்லை. இந்த விருப்பம் மட்டுமே சோதனை காரணங்களுக்காக உள்ளது. (இந்த விருப்பம் Applio ஐ மீண்டும் திரும்பியிருப்பதற்காக)",
195
+ "Theme": "தீமா",
196
+ "Select the theme you want to use. (Requires restarting Applio)": "நீங்கள் பயன்படுத்த விரும்பும் தீமையை தேர்ந்தெடுக்கவும். (Applio-ஐ மீளவே போகும்)",
197
+ "Language": "மொழி",
198
+ "Select the language you want to use. (Requires restarting Applio)": "நீங்கள் பயன்படுத்த விரும்பும் மொழியை தேர்ந்தெடுக்கவும். (Applio-ஐ மீளவே போகும்)",
199
+ "Plugin Installer": "பிளகின் நிறுவி",
200
+ "Drag your plugin.zip to install it": "உங்கள் plugin.zip கோப்பை இதுக்கு இழுக்கவும் அதை நிறுவுக",
201
+ "Version Checker": "பதிப்பு சரிபார்க்கல்",
202
+ "Check which version of Applio is the latest to see if you need to update.": "நீங்கள் புதியதாகப் புதுப்பிக்க வேண்டும் என்பதை பார்க்க, Applio இன் எந்த பதிப்பு சரிபார்க்கவும்.",
203
+ "Check for updates": "புதுப்பிக்கவும்"
204
+ }
assets/i18n/languages/ta_TA.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "இறுதி குரல் குளோனிங் கருவி, நிகரற்ற சக்தி, மாடுலாரிட்டி மற்றும் பயனர் நட்பு அனுபவத்திற்காக உன்னிப்பாக உகந்ததாக உள்ளது.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "இந்த பிரிவில் சில கூடுதல் பயன்பாடுகள் உள்ளன, அவை பெரும்பாலும் சோதனை கட்டங்களில் இருக்கலாம்.",
4
+ "Output Information": "வெளியீட்டு தகவல்",
5
+ "The output information will be displayed here.": "வெளியீட்டு தகவல் இங்கே காட்டப்படும்.",
6
+ "Inference": "அனுமானம்",
7
+ "Train": "தொடர்வண்டி",
8
+ "Extra": "கூடுதல்",
9
+ "Merge Audios": "ஆடியோக்களை ஒன்றிணைக்கவும்",
10
+ "Processing": "செயலாக்க",
11
+ "Audio Analyzer": "ஆடியோ அனலைசர்",
12
+ "Model Information": "மாதிரி தகவல்",
13
+ "Plugins": "செருகுநிரல்கள்",
14
+ "Download": "பதிவிறக்க",
15
+ "Report a Bug": "பிழையைப் புகாரளி",
16
+ "Settings": "அமைப்புகள்",
17
+ "Preprocess": "முன் செயல்முறை",
18
+ "Model Name": "மாடல் பெயர்",
19
+ "Name of the new model.": "புதிய மாடலின் பெயர்.",
20
+ "Enter model name": "மாடல் பெயரை உள்ளிடவும்",
21
+ "Dataset Path": "தரவுத்தொகுப்பு பாதை",
22
+ "Path to the dataset folder.": "தரவுத்தொகுப்பு கோப்புறைக்கான பாதை.",
23
+ "Refresh Datasets": "தரவுத்தொகுப்புகளைப் புதுப்பிக்கவும்",
24
+ "Dataset Creator": "தரவுத்தொகுப்பை உருவாக்கியவர்",
25
+ "Dataset Name": "தரவுத்தொகுப்பு பெயர்",
26
+ "Name of the new dataset.": "புதிய தரவுத்தொகுப்பின் பெயர்.",
27
+ "Enter dataset name": "தரவுத்தொகுப்பு பெயரை உள்ளிடவும்",
28
+ "Upload Audio Dataset": "ஆடியோ தரவுத்தொகுப்பைப் பதிவேற்றவும்",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "ஆடியோ கோப்பு வெற்றிகரமாக தரவுத்தொகுப்பில் சேர்க்கப்பட்டது. செயல்முறைக்கு முந்தைய பட்டனை கிளிக் செய்யவும்.",
30
+ "Enter dataset path": "தரவுத்தொகுப்பு பாதையை உள்ளிடவும்",
31
+ "Sampling Rate": "மாதிரி மதிப்பீடு",
32
+ "The sampling rate of the audio files.": "ஆடியோ கோப்புகளின் மாதிரி விகிதம்.",
33
+ "RVC Version": "RVC பதிப்பு",
34
+ "The RVC version of the model.": "மாடலின் RVC பதிப்பு.",
35
+ "Preprocess Dataset": "செயல்முறைக்கு முந்தைய தரவுத்தொகுப்பு",
36
+ "Extract": "பிரித்தெடுத்தல்",
37
+ "Hop Length": "ஹாப் நீளம்",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "கணினி ஒரு குறிப்பிடத்தக்க சுருதி மாற்றத்திற்கு மாறுவதற்கு எடுக்கும் காலத்தைக் குறிக்கிறது. சிறிய ஹாப் நீளங்களுக்கு அனுமானத்திற்கு அதிக நேரம் தேவைப்படுகிறது, ஆனால் அதிக சுருதி துல்லியத்தை அளிக்க முனைகிறது.",
39
+ "Batch Size": "தொகுதி அளவு",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "உங்கள் GPU இன் கிடைக்கக்கூடிய VRAM உடன் அதை சீரமைப்பது நல்லது. 4 இன் அமை���்பு மேம்பட்ட துல்லியம் ஆனால் மெதுவான செயலாக்கத்தை வழங்குகிறது, அதே நேரத்தில் 8 வேகமான மற்றும் நிலையான முடிவுகளை வழங்குகிறது.",
41
+ "Save Every Epoch": "ஒவ்வொரு சகாப்தத்தையும் காப்பாற்றுங்கள்",
42
+ "Determine at how many epochs the model will saved at.": "மாதிரி எத்தனை சகாப்தங்களில் சேமிக்கப்படும் என்பதை தீர்மானிக்கவும்.",
43
+ "Total Epoch": "மொத்த சகாப்தம்",
44
+ "Specifies the overall quantity of epochs for the model training process.": "மாதிரி பயிற்சி செயல்முறைக்கான சகாப்தங்களின் ஒட்டுமொத்த அளவைக் குறிப்பிடுகிறது.",
45
+ "Pretrained": "முன் பயிற்சி",
46
+ "Save Only Latest": "சமீபத்தியதை மட்டும் சேமிக்கவும்",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "இந்த அமைப்பை இயக்குவது G மற்றும் D கோப்புகளை அவற்றின் மிகச் சமீபத்திய பதிப்புகளை மட்டுமே சேமிக்கும், சேமிப்பக இடத்தை திறம்பட சேமிக்கும்.",
48
+ "Save Every Weights": "ஒவ்வொரு எடைகளையும் சேமிக்கவும்",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "இந்த அமைப்பு ஒவ்வொரு சகாப்தத்தின் முடிவிலும் மாதிரியின் எடைகளை சேமிக்க உதவுகிறது.",
50
+ "Custom Pretrained": "தனிப்பயன் முன்பயிற்சி",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "தனிப்பயன் முன்பயிற்சி மாதிரிகளைப் பயன்படுத்துவது சிறந்த முடிவுகளுக்கு வழிவகுக்கும், ஏனெனில் குறிப்பிட்ட பயன்பாட்டு வழக்குக்கு ஏற்ப மிகவும் பொருத்தமான முன்பயிற்சி மாதிரிகளைத் தேர்ந்தெடுப்பது செயல்திறனை கணிசமாக மேம்படுத்தும்.",
52
+ "Upload Pretrained Model": "முன்பயிற்சி பெற்ற மாதிரியைப் பதிவேற்றவும்",
53
+ "Refresh Custom Pretraineds": "தனிப்பயன் ப்ரீட்ரெய்ன்ட்களைப் புதுப்பிக்கவும்",
54
+ "Pretrained Custom Settings": "முன் பயிற்சி பெற்ற தனிப்பயன் அமைப்புகள்",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "நீங்கள் கைவிட்ட கோப்பு ஒரு செல்லத்தக்க முன்பயிற்சி பெற்ற கோப்பு அல்ல. மீண்டும் முயற்சிக்கவும்.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "கீழ்தோன்றும் மெனுவில் முன்பயிற்சி பெற்ற கோப்பைக் காண புதுப்பிப்பு பொத்தானைக் கிளிக் செய்யவும்.",
57
+ "Pretrained G Path": "தனிப்பயன் முன் பயிற்சி ஜி",
58
+ "Pretrained D Path": "தனிப்பயன் முன்பயிற்சி D",
59
+ "GPU Settings": "GPU அமைப்புகள்",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "மேம்பட்ட GPU அமைப்புகளை அமைக்கிறது, சிறந்த GPU கட்டமைப்பு கொண்ட பயனர்களுக்கு பரிந்துரைக்கப்படுகிறது.",
61
+ "GPU Custom Settings": "GPU தனிப்பயன் அமைப்புகள்",
62
+ "GPU Number": "GPU எண்",
63
+ "0 to ∞ separated by -": "0 முதல் ∞ வரை பிரிக்கப்பட்டுள்���து -",
64
+ "GPU Information": "தகவல்",
65
+ "Pitch Guidance": "சுருதி வழிகாட்டுதல்",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "சுருதி வழிகாட்டுதலைப் பயன்படுத்துவதன் மூலம், அதன் சுருதி உட்பட அசல் குரலின் தொனியை பிரதிபலிப்பது சாத்தியமாகும். அசல் மெல்லிசை அல்லது சுருதி வடிவத்தைப் பாதுகாப்பது அவசியம் என்று பாடுவதற்கும் பிற காட்சிகளுக்கும் இந்த அம்சம் குறிப்பாக மதிப்புமிக்கது.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "உங்கள் சொந்த பயிற்சியின் போது முன்கூட்டியே பயிற்சி பெற்ற மாதிரிகளைப் பயன்படுத்தவும். இந்த அணுகுமுறை பயிற்சி காலத்தை குறைக்கிறது மற்றும் ஒட்டுமொத்த தரத்தை மேம்படுத்துகிறது.",
68
+ "Extract Features": "பிரித்தெடுக்கும் அம்சங்கள்",
69
+ "Start Training": "பயிற்சியைத் தொடங்குங்கள்",
70
+ "Generate Index": "குறியீட்டை உருவாக்கவும்",
71
+ "Voice Model": "குரல் மாதிரி",
72
+ "Select the voice model to use for the conversion.": "மாற்றத்திற்கு பயன்படுத்த குரல் மாதிரியைத் தேர்ந்தெடுக்கவும்.",
73
+ "Index File": "அட்டவணை கோப்பு",
74
+ "Select the index file to use for the conversion.": "மாற்றத்திற்கு பயன்படுத்த குறியீட்டு கோப்பைத் தேர்ந்தெடுக்கவும்.",
75
+ "Refresh": "புதுப்பி",
76
+ "Unload Voice": "குரலை இறக்கவும்",
77
+ "Single": "ஒற்றை",
78
+ "Upload Audio": "ஆடியோவை பதிவேற்றவும்",
79
+ "Select Audio": "ஆடியோவை தேர்ந்தெடு",
80
+ "Select the audio to convert.": "மாற்ற ஆடியோவைத் தேர்ந்தெடுக்கவும்.",
81
+ "Advanced Settings": "மேம்பட்ட அமைப்புகள்",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "வெளியீடுகளை அழிக்கவும் (சொத்துக்கள் / ஆடியோக்களில் உள்ள அனைத்து ஆடியோக்களையும் நீக்குகிறது)",
83
+ "Custom Output Path": "தனிப்பயன் வெளியீட்டு பாதை",
84
+ "Output Path": "வெளியீட்டுப் பாதை",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "வெளியீட்டு ஆடியோ சேமிக்கப்படும் பாதை, இயல்பாக சொத்துக்கள் / ஆடியோக்கள் / output.wav",
86
+ "Split Audio": "பிளவு ஆடியோ",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "சில சந்தர்ப்பங்களில் சிறந்த முடிவுகளைப் பெற அனுமானத்திற்காக ஆடியோவை துண்டுகளாகப் பிரிக்கவும்.",
88
+ "Autotune": "ஆட்டோடியூன்",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "உங்கள் அனுமானங்களுக்கு ஒரு மென்மையான ஆட்டோட்யூனைப் பயன்படுத்துங்கள், பாடல் மாற்றங்களுக்கு பரிந்துரைக்கப்படுகிறது.",
90
+ "Clean Audio": "சுத்தமான ஆடியோ",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "ஆடியோக்களைப் பேசுவதற்குப் பரிந்துரைக்கப்படும் இரைச்சல் கண்டறிதல் அல்காரிதம்களைப் ���யன்படுத்தி உங்கள் ஆடியோ அவுட்புட்டை சுத்தம் செய்யவும்.",
92
+ "Clean Strength": "சுத்தமான வலிமை",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "நீங்கள் விரும்பும் ஆடியோவுக்கு சுத்தம் செய்யும் அளவை அமைக்கவும், நீங்கள் அதை எவ்வளவு அதிகரிக்கிறீர்களோ, அவ்வளவு அதிகமாக அது சுத்தம் செய்யப்படும், ஆனால் ஆடியோ மிகவும் சுருக்கப்பட்டிருக்கும்.",
94
+ "Pitch": "எறி",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "ஆடியோவின் சுருதியை அமைக்கவும், அதிக மதிப்பு, அதிக சுருதி.",
96
+ "Filter Radius": "வடிகட்டி ஆரம்",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "எண்ணிக்கை மூன்றை விட அதிகமாகவோ அல்லது சமமாகவோ இருந்தால், சேகரிக்கப்பட்ட தொனி முடிவுகளில் சராசரி வடிகட்டலைப் பயன்படுத்துவது சுவாசத்தைக் குறைக்கும் ஆற்றலைக் கொண்டுள்ளது.",
98
+ "Search Feature Ratio": "தேடல் அம்ச விகிதம்",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "குறியீட்டு கோப்பு செலுத்தும் செல்வாக்கு; அதிக மதிப்பு அதிக செல்வாக்குக்கு ஒத்திருக்கிறது. இருப்பினும், குறைந்த மதிப்புகளைத் தேர்ந்தெடுப்பது ஆடியோவில் இருக்கும் கலைப்பொருட்களைத் தணிக்க உதவும்.",
100
+ "Volume Envelope": "தொகுதி உறை",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "வெளியீட்டின் தொகுதி உறையுடன் மாற்றவும் அல்லது கலக்கவும். விகிதம் 1 க்கு நெருக்கமாக இருந்தால், வெளியீடு உறை அதிகமாக பயன்படுத்தப்படுகிறது.",
102
+ "Protect Voiceless Consonants": "குரலற்ற மெய்யெழுத்துக்களைப் பாதுகாக்கவும்",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "மின்-ஒலி கிழித்தல் மற்றும் பிற கலைப்பொருட்களைத் தடுக்க தனித்துவமான மெய்யெழுத்துக்கள் மற்றும் சுவாச ஒலிகளைப் பாதுகாக்கவும். அளவுருவை அதன் அதிகபட்ச மதிப்பான 0.5 க்கு இழுப்பது விரிவான பாதுகாப்பை வழங்குகிறது. இருப்பினும், இந்த மதிப்பைக் குறைப்பது பாதுகாப்பின் அளவைக் குறைக்கலாம், அதே நேரத்தில் குறியீட்டு விளைவைத் தணிக்கலாம்.",
104
+ "Pitch extraction algorithm": "சுருதி பிரித்தெடுத்தல் அல்காரிதம்",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "ஆடியோ மாற்றத்திற்கு பயன்படுத்த சுருதி பிரித்தெடுத்தல் வழிமுறை. இயல்புநிலை அல்காரிதம் rmvpe ஆகும், இது பெரு���்பாலான சந்தர்ப்பங்களில் பரிந்துரைக்கப்படுகிறது.",
106
+ "Convert": "உருமாற்று",
107
+ "Export Audio": "ஆடியோவை ஏற்றுமதி செய்யவும்",
108
+ "Batch": "தொகுதி",
109
+ "Input Folder": "உள்ளீட்டு கோப்புறை",
110
+ "Select the folder containing the audios to convert.": "மாற்ற ஆடியோக்களைக் கொண்ட கோப்புறையைத் தேர்ந்தெடுக்கவும்.",
111
+ "Enter input path": "உள்ளீட்டு பாதையை உள்ளிடவும்",
112
+ "Output Folder": "வெளியீட்டு கோப்புறை",
113
+ "Select the folder where the output audios will be saved.": "வெளியீடு ஆடியோக்கள் சேமிக்கப்படும் கோப்புறையைத் தேர்ந்தெடுக்கவும்.",
114
+ "Enter output path": "வெளியீட்டு பாதையை உள்ளிடவும்",
115
+ "Get information about the audio": "ஆடியோ பற்றிய தகவலைப் பெறுங்கள்",
116
+ "Information about the audio file": "ஆடியோ கோப்பு பற்றிய தகவல்",
117
+ "Waiting for information...": "தகவலுக்காக காத்திருக்கிறேன்...",
118
+ "## Voice Blender": "## வாய்ஸ் பிளெண்டர்",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "இரண்டு குரல் மாதிரிகளைத் தேர்ந்தெடுத்து, நீங்கள் விரும்பிய கலவை சதவீதத்தை அமைத்து, அவற்றை முற்றிலும் புதிய குரலில் கலக்கவும்.",
120
+ "Voice Blender": "குரல் பிளெண்டர்",
121
+ "Drag and drop your model here": "உங்கள் மாதிரியை இங்கே இழுத்து விடுங்கள்",
122
+ "You can also use a custom path.": "நீங்கள் தனிப்பயன் பாதையையும் பயன்படுத்தலாம்.",
123
+ "Blend Ratio": "கலப்பு விகிதம்",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "நிலையை ஒரு பக்கம் அல்லது மறுபுறம் நோக்கி சரிசெய்வது மாதிரியை முதல் அல்லது இரண்டாவதைப் போலவே மாற்றும்.",
125
+ "Fusion": "இணைவு",
126
+ "Path to Model": "மாதிரிக்கான பாதை",
127
+ "Enter path to model": "மாதிரிக்கான பாதையை உள்ளிடவும்",
128
+ "Model information to be placed": "வைக்கப்பட வேண்டிய மாதிரி தகவல்",
129
+ "Inroduce the model information": "மாதிரி தகவலை அறிமுகப்படுத்தவும்",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "மாதிரியில் வைக்கப்பட வேண்டிய தகவல் (நீங்கள் அதை காலியாக விடலாம் அல்லது எதையும் வைக்கலாம்).",
131
+ "View model information": "மாதிரி தகவலைக் காண்க",
132
+ "Introduce the model pth path": "மாதிரி pth பாதையை அறிமுகப்படுத்தவும்",
133
+ "View": "பார்வை",
134
+ "Model extraction": "மாதிரி பிரித்தெடுத்தல்",
135
+ "Model conversion": "மாதிரி மாற்றம்",
136
+ "Pth file": "Pth கோப்பு",
137
+ "Output of the pth file": "pth கோப்பின் வெளியீடு",
138
+ "# How to Report an Issue on GitHub": "# GitHub இல் ஒரு சிக்கலை எவ்வாறு புகாரளிப்பது",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. நீங்கள் அனுபவிக்கும் சிக்கலைப் பதிவு செய்யத் தொடங்க கீழே உள்ள 'ரெக்கார்ட் ஸ்கிரீன்' பொத்தானைக் கிளிக் செய்க.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. நீங்கள் சிக்கலைப் பதிவு செய்து முடித்ததும், 'பதிவு செய்வதை நிறுத்து' பொத்தானைக் கிளிக் செய்க (அதே பொத்தான், ஆனால் நீங்கள் தீவிரமாக பதிவு செய்கிறீர்களா இல்லையா என்பதைப் பொறுத்து லேபிள் மாறுகிறது).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Issues](https://github.com/IAHispano/Applio/issues) என்பதற்குச் சென்று 'புதிய சிக்கல்' பொத்தானைக் கிளிக் செய்யவும்.",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. வழங்கப்பட்ட சிக்கல் வார்ப்புருவை முடிக்கவும், தேவைக்கேற்ப விவரங்களைச் சேர்ப்பதை உறுதிசெய்து, முந்தைய கட்டத்திலிருந்து பதிவுசெய்யப்பட்ட கோப்பை பதிவேற்ற சொத்துக்கள் பிரிவைப் பயன்படுத்தவும்.",
143
+ "Record Screen": "பதிவு திரை",
144
+ "Record": "பதிவேடு",
145
+ "Stop Recording": "பதிவு செய்வதை நிறுத்து",
146
+ "Introduce the model .pth path": "மாதிரியை அறிமுகப்படுத்துங்கள் .pth பாதையை அறிமுகப்படுத்துங்கள்",
147
+ "See Model Information": "மாதிரி தகவலைப் பார்க்கவும்",
148
+ "## Download Model": "## பதிவிறக்க மாதிரி",
149
+ "Model Link": "மாதிரி இணைப்பு",
150
+ "Introduce the model link": "மாதிரி இணைப்பை அறிமுகப்படுத்தவும்",
151
+ "Download Model": "மாடலைப் பதிவிறக்கவும்",
152
+ "## Drop files": "## கோப்புகளை கைவிடுங்கள்",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "உங்கள் .pth கோப்பு மற்றும் .index கோப்பை இந்த இடத்திற்கு இழுக்கவும். ஒன்றை இழுத்து மற்றொன்றை இழுக்கவும்.",
154
+ "TTS Voices": "TTS குரல்கள்",
155
+ "Select the TTS voice to use for the conversion.": "மாற்றத்திற்கு பயன்படுத்த TTS குரலைத் தேர்ந்தெடுக்கவும்.",
156
+ "Text to Synthesize": "தொகுக்க உரை",
157
+ "Enter the text to synthesize.": "ஒருங்கிணைக்க உரையை உள்ளிடவும்.",
158
+ "Or you can upload a .txt file": "அல்லது .txt கோப்பை பதிவேற்றலாம்",
159
+ "Enter text to synthesize": "ஒருங்கிணைக்க உரையை உள்ளிடவும்",
160
+ "Output Path for TTS Audio": "TTS ஆடியோவுக்கான வெளியீட்டு பாதை",
161
+ "Output Path for RVC Audio": "RVC ஆடியோவுக்கான வெளியீட்டு பாதை",
162
+ "Enable Applio integration with Discord presence": "Discord இருப்புடன் Applio ஒருங்கிணைப்பை இயக்கவும்",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "டிஸ்கார்டில் தற்போதைய Applio செயல்பாட்டைக் காண்பிப்பதற்கான வாய்ப்பை இது செயல்படுத்தும்.",
164
+ "Enable Applio integration with applio.org/models using flask": "குடுவையைப் பயன்படுத்தி applio.org/models உடன் அப்லியோ ஒருங்கிணைப்பை இயக்கவும்",
165
+ "It will activate the possibility of downloading models with a click from the website.": "இணையதளத்தில் இருந்து ஒரு கிளிக்கில் மாடல்களைப் பதிவிறக்கும் வாய்ப்பை இது செயல்படுத்தும்.",
166
+ "Theme": "கருப்பொருள்",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "நீங்கள் பயன்படுத்த விரும்பும் கருப்பொருளை தேர்ந்தெடுக்கவும். (அப்ளியோவை மறுதொடக்கம் செய்ய வேண்டும்)",
168
+ "Language": "மொழி",
169
+ "Select the language you want to use. (Requires restarting Applio)": "நீங்கள் பயன்படுத்த விரும்பும் மொழியைத் தேர்ந்தெடுக்கவும். (அப்ளியோவை மறுதொடக்கம் செய்ய வேண்டும்)",
170
+ "Plugin Installer": "செருகுநிரல் நிறுவி",
171
+ "Drag your plugin.zip to install it": "அதை நிறுவ உங்கள் plugin.zip இழுக்கவும்",
172
+ "Version Checker": "பதிப்பு சரிபார்ப்பு",
173
+ "Check which version of Applio is the latest to see if you need to update.": "நீங்கள் புதுப்பிக்க வேண்டுமா என்பதைப் பார்க்க அப்லியோவின் எந்த பதிப்பு சமீபத்தியது என்பதைச் சரிபார்க்கவும்.",
174
+ "Check for updates": "புதுப்பிப்புகளைச் சரிபார்க்கவும்"
175
+ }
assets/i18n/languages/te_TE.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "అల్టిమేట్ వాయిస్ క్లోనింగ్ టూల్, సాటిలేని శక్తి, మాడ్యులారిటీ మరియు వినియోగదారు-స్నేహపూర్వక అనుభవం కోసం జాగ్రత్తగా ఆప్టిమైజ్ చేయబడింది.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "ఈ విభాగంలో కొన్ని అదనపు ఉపయోగాలు ఉన్నాయి, అవి తరచుగా ప్రయోగాత్మక దశలలో ఉండవచ్చు.",
4
+ "Output Information": "అవుట్ పుట్ సమాచారం",
5
+ "The output information will be displayed here.": "అవుట్ పుట్ సమాచారం ఇక్కడ ప్రదర్శించబడుతుంది.",
6
+ "Inference": "అనిమితి",
7
+ "Train": "రైలు",
8
+ "Extra": "అదనం",
9
+ "Merge Audios": "ఆడియోలను విలీనం చేయండి",
10
+ "Processing": "ప్రాసెసింగ్",
11
+ "Audio Analyzer": "Audio Analyzer",
12
+ "Model Information": "నమూనా సమాచారం",
13
+ "Plugins": "Plugins",
14
+ "Download": "డౌన్ లోడ్ చేసుకోండి",
15
+ "Report a Bug": "బగ్ ని రిపోర్ట్ చేయండి",
16
+ "Settings": "సెట్టింగ్ లు",
17
+ "Preprocess": "ప్రీప్రాసెస్",
18
+ "Model Name": "మోడల్ పేరు",
19
+ "Name of the new model.": "కొత్త మోడల్ పేరు..",
20
+ "Enter model name": "మోడల్ పేరు నమోదు చేయండి",
21
+ "Dataset Path": "Dataset Path",
22
+ "Path to the dataset folder.": "డేటాసెట్ ఫోల్డర్ కు మార్గం.",
23
+ "Refresh Datasets": "రిఫ్రెష్ డేటాసెట్ లు",
24
+ "Dataset Creator": "డేటాసెట్ సృష్టికర్త",
25
+ "Dataset Name": "డేటాసెట్ పేరు",
26
+ "Name of the new dataset.": "కొత్త డేటాసెట్ పేరు.",
27
+ "Enter dataset name": "డేటాసెట్ పేరును నమోదు చేయండి",
28
+ "Upload Audio Dataset": "ఆడియో డేటాసెట్ అప్ లోడ్ చేయండి",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "ఆడియో ఫైల్ డేటాసెట్ కు విజయవంతంగా జోడించబడింది. దయచేసి ప్రీప్రాసెస్ బటన్ మీద క్లిక్ చేయండి.",
30
+ "Enter dataset path": "డేటాసెట్ మార్గాన్ని నమోదు చేయండి",
31
+ "Sampling Rate": "నమూనా రేటు",
32
+ "The sampling rate of the audio files.": "ఆడియో ఫైల్స్ యొక్క నమూనా రేటు.",
33
+ "RVC Version": "RVC Version",
34
+ "The RVC version of the model.": "మోడల్ యొక్క ఆర్ విసి వెర్షన్.",
35
+ "Preprocess Dataset": "ప్రీప్రాసెస్ Dataset",
36
+ "Extract": "ఉద్ధరించు",
37
+ "Hop Length": "హాప్ పొడవు",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "గణనీయమైన పిచ్ మార్పుకు సిస్టమ్ పరివర్తన చెందడానికి పట్టే వ్యవధిని సూచిస్తుంది. చిన్న హాప్ పొడవులు అంచనా వేయడానికి ఎక్కువ సమయం అవసరం, కానీ అధిక పిచ్ ఖచ్చితత్వాన్ని ఇస్తాయి.",
39
+ "Batch Size": "బ్యాచ్ పరిమాణం",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "దీన్ని మీ జీపీయూలో అందుబాటులో ఉన్న వీఆర్ఏఎంతో అనుసంధానం చేసుకోవడం మంచిది. 4 యొక్క అమరిక మెరుగైన ఖచ్చితత్వాన్ని అందిస్తుంది కాని నెమ్మదిగా ప్రాసెసింగ్ చేస్తుంది, అయితే 8 వేగవంతమైన మరియు ప్రామాణిక ఫలితాలను అందిస్తుంది.",
41
+ "Save Every Epoch": "ప్రతి యుగాన్ని కాపాడండి",
42
+ "Determine at how many epochs the model will saved at.": "మోడల్ ఎన్ని యుగాలలో సేవ్ చేయబడుతుందో నిర్ణయించండి.",
43
+ "Total Epoch": "మొత్తం యుగం",
44
+ "Specifies the overall quantity of epochs for the model training process.": "మోడల్ ట్రైనింగ్ ప్రాసెస్ కొరకు యుగాల యొక్క మొత్తం పరిమాణాన్ని నిర్దేశిస్తుంది.",
45
+ "Pretrained": "ప్రీ ట్రైనింగ్ చేయబడింది",
46
+ "Save Only Latest": "సేవ్ ఓన్లీ లేటెస్ట్",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "ఈ సెట్టింగ్ ని ఎనేబుల్ చేయడం వల్ల G మరియు D ఫైల్స్ వాటి ఇటీవలి వెర్షన్ లను మాత్రమే సేవ్ చేస్తాయి, స్టోరేజీ స్పేస్ ని సమర్థవంతంగా సంరక్షిస్తాయి.",
48
+ "Save Every Weights": "ప్రతి బరువులను ఆదా చేయండి",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "ఈ అమరిక ప్రతి యుగం ముగింపులో మోడల్ యొక్క బరువులను సేవ్ చేయడానికి మిమ్మల్ని అనుమతిస్తుంది.",
50
+ "Custom Pretrained": "Custom Pretrained",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "కస్టమ్ ప్రీ-ట్రైన్డ్ మోడళ్లను ఉపయోగించడం మెరుగైన ఫలితాలకు దారితీస్తుంది, ఎందుకంటే నిర్దిష్ట ఉపయోగం కేసుకు అనుగుణంగా అత్యంత తగిన ప్రీట్రైనింగ్ మోడళ్లను ఎంచుకోవడం పనితీరును గణనీయంగా మెరుగుపరుస్తుంది.",
52
+ "Upload Pretrained Model": "ప్రీ ట్రైన్డ్ మోడల్ అప్ లోడ్ చేయండి",
53
+ "Refresh Custom Pretraineds": "రిఫ్రెష్ కస్టమ్ ప్రీ ట్రైన్డ్ లు",
54
+ "Pretrained Custom Settings": "ముందస్తుగా శిక్షణ పొందిన కస్టమ్ సెట్టింగ్ లు",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "మీరు డ్రాప్ చేసిన ఫైల్ చెల్లుబాటు అయ్యే ముందస్తు శిక్షణ పొందిన ఫైల్ కాదు. దయచేసి మళ్లీ ప్రయత్నించండి.",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "డ్రాప్ డౌన్ మెనూలో ముందుగా శిక్షణ పొందిన ఫైల్ ను చూడటం కొరకు రిఫ్రెష్ బటన్ మీద క్లిక్ చేయండి.",
57
+ "Pretrained G Path": "Custom Pretrained G",
58
+ "Pretrained D Path": "Custom Pretrained D",
59
+ "GPU Settings": "GPU సెట్టింగ్ లు",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "మెరుగైన GPU ఆర్కిటెక్చర్ ఉన్న వినియోగదారుల కొరకు సిఫారసు చేయబడ్డ అధునాతన GPU సెట్టింగ్ లను సెట్ చేస్తుంది.",
61
+ "GPU Custom Settings": "GPU కస్టమ్ సెట్టింగ్ లు",
62
+ "GPU Number": "జిపియు నెంబరు",
63
+ "0 to ∞ separated by -": "0 నుండి ∞ వరకు దీని ద్వారా వేరు చేయబడతాయి -",
64
+ "GPU Information": "GPU సమాచారం",
65
+ "Pitch Guidance": "పిచ్ మార్గదర్శకత్వం",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "పిచ్ మార్గదర్శకత్వాన్ని ఉపయోగించడం ద్వారా, దాని పిచ్తో సహా అసలు స్వరం యొక్క స్వరాన్ని ప్రతిబింబించడం సాధ్యమ���ుతుంది. అసలు మెలోడీ లేదా పిచ్ నమూనాను సంరక్షించడం అవసరమైన గానం మరియు ఇతర సందర్భాలకు ఈ లక్షణం ముఖ్యంగా విలువైనది.",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "మీ స్వంత శిక్షణ చేసేటప్పుడు ముందస్తు శిక్షణ పొందిన నమూనాలను ఉపయోగించండి. ఈ విధానం శిక్షణ వ్యవధిని తగ్గిస్తుంది మరియు మొత్తం నాణ్యతను పెంచుతుంది.",
68
+ "Extract Features": "ఎక్స్ ట్రాక్ట్ ఫీచర్లు",
69
+ "Start Training": "శిక్షణ ప్రారంభించండి",
70
+ "Generate Index": "ఇండెక్స్ జనరేట్ చేయండి",
71
+ "Voice Model": "వాయిస్ మోడల్",
72
+ "Select the voice model to use for the conversion.": "కన్వర్షన్ కొరకు ఉపయోగించాల్సిన వాయిస్ మోడల్ ని ఎంచుకోండి.",
73
+ "Index File": "ఇండెక్స్ ఫైల్",
74
+ "Select the index file to use for the conversion.": "మార్పిడి కొరకు ఉపయోగించాల్సిన ఇండెక్స్ ఫైల్ ని ఎంచుకోండి.",
75
+ "Refresh": "రిఫ్రెష్",
76
+ "Unload Voice": "వాయిస్ ను అన్ లోడ్ చేయండి",
77
+ "Single": "ఏక",
78
+ "Upload Audio": "ఆడియో అప్ లోడ్ చేయండి",
79
+ "Select Audio": "ఆడియోను ఎంచుకోండి",
80
+ "Select the audio to convert.": "కన్వర్ట్ చేయడానికి ఆడియోను ఎంచుకోండి.",
81
+ "Advanced Settings": "అధునాతన సెట్టింగ్ లు",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "క్లియర్ అవుట్ పుట్స్ (అసెట్స్/ఆడియోల్లోని అన్ని ఆడియోలను తొలగిస్తుంది)",
83
+ "Custom Output Path": "కస్టమ్ అవుట్ పుట్ మార్గం",
84
+ "Output Path": "అవుట్ పుట్ మార్గం",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "అవుట్ పుట్ ఆడియో సేవ్ చేయబడే మార్గం, ఆస్తులు/ఆడియోలు/output.wav",
86
+ "Split Audio": "స్ప్లిట్ ఆడియో",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "కొన్ని సందర్భాల్లో మెరుగైన ఫలితాలను పొందడానికి ఆడియోను భాగాలుగా విభజించండి.",
88
+ "Autotune": "Autotune",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "పాటల మార్పిడి కోసం సిఫార్సు చేయబడిన మీ అంచనాలకు మృదువైన ఆటోట్యూన్ను వర్తించండి.",
90
+ "Clean Audio": "క్లీన్ ఆడియో",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "ఆడియోలు మాట్లాడటానికి సిఫారసు చేయబడిన నాయిస్ డిటెక్షన్ అల్గారిథమ్ లను ఉపయోగించి మీ ఆడియో అవుట్ పుట్ ను శుభ్రం చేయండి.",
92
+ "Clean Strength": "క్లీన్ స్ట్రెంత్",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "మీకు కావలసిన ఆడియోకు క్లీన్-అప్ స్థాయిని సెట్ చేయండి, మీరు దానిని ఎంత పెంచితే అది మరింత క్లీన్ అవుతుంది, కానీ ఆడియో మరింత కంప్రెస్ అయ్యే అవకాశం ఉంది.",
94
+ "Pitch": "గొంతు",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "ఆడియో యొక్క పిచ్ సెట్ చేయండి, విలువ ఎక్కువ, పిచ్ ఎక్కువ.",
96
+ "Filter Radius": "Filter వ్యాసార్థం",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "��ంఖ్య మూడు కంటే ఎక్కువగా లేదా సమానంగా ఉంటే, సేకరించిన టోన్ ఫలితాలపై మధ్యస్థ వడపోతను ఉపయోగించడం శ్వాసక్రియను తగ్గించే సామర్థ్యాన్ని కలిగి ఉంటుంది.",
98
+ "Search Feature Ratio": "శోధన ఫీచర్ నిష్పత్తి",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "ఇండెక్స్ ఫైలు ప్రభావం; అధిక విలువ ఎక్కువ ప్రభావానికి అనుగుణంగా ఉంటుంది. అయినప్పటికీ, తక్కువ విలువలను ఎంచుకోవడం ఆడియోలో ఉన్న కళాఖండాలను తగ్గించడానికి సహాయపడుతుంది.",
100
+ "Volume Envelope": "వాల్యూమ్ కవరు",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "అవుట్ పుట్ యొక్క వాల్యూమ్ కవర్ తో ప్రత్యామ్నాయం చేయండి లేదా కలపండి. నిష్పత్తి 1 కి దగ్గరగా ఉంటే, అవుట్ పుట్ కవరు ఎక్కువగా ఉపయోగించబడుతుంది.",
102
+ "Protect Voiceless Consonants": "వాయిస్ లెస్ కన్సొనెంట్ లను సంరక్షించండి",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "ఎలక్ట్రో-అకౌస్టిక్ చిరిగిపోవడం మరియు ఇతర కళాఖండాలను నిరోధించడానికి విభిన్న ధ్వనులు మరియు శ్వాస శబ్దాలను సంరక్షించండి. పరామీటర్ ను దాని గరిష్ట విలువ 0.5కు లాగడం సమగ్ర రక్షణను అందిస్తుంది. ఏదేమైనా, ఈ విలువను తగ్గించడం వల్ల ఇండెక్సింగ్ ప్రభావాన్ని తగ్గించేటప్పుడు రక్షణ పరిధి తగ్గుతుంది.",
104
+ "Pitch extraction algorithm": "పిచ్ వెలికితీత అల్గోరిథం",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "ఆడియో మార్పిడి కోసం ఉపయోగించే పిచ్ వెలికితీత అల్గోరిథం. డిఫాల్ట్ అల్గోరిథం ఆర్ఎమ్విపిఇ, ఇది చాలా సందర్భాలలో సిఫార్సు చేయబడింది.",
106
+ "Convert": "మార్చండి",
107
+ "Export Audio": "Export Audio",
108
+ "Batch": "దొంతర",
109
+ "Input Folder": "ఇన్ పుట్ ఫోల్డర్",
110
+ "Select the folder containing the audios to convert.": "కన్వర్ట్ చేయడానికి ఆడియోలను కలిగి ఉన్న సంచికను ఎంచుకోండి.",
111
+ "Enter input path": "ఇన్ పుట్ మార్గాన్ని నమోదు చేయండి",
112
+ "Output Folder": "అవుట్ పుట్ ఫోల్డర్",
113
+ "Select the folder where the output audios will be saved.": "అవుట్ పుట్ ఆడియోలు సేవ్ చేయబడే ఫోల్డర్ ను ఎంచుకోండి.",
114
+ "Enter output path": "అవుట్ పుట్ మార్గాన్ని నమోదు చేయండి",
115
+ "Get information about the audio": "ఆడియో గురించి సమాచారం పొందండి",
116
+ "Information about the audio file": "ఆడియో ఫైలు గురించి సమాచారం",
117
+ "Waiting for information...": "సమాచారం కోసం ఎదురుచూస్తూ...",
118
+ "## Voice Blender": "## వాయిస్ బ్లెండర్",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "రెండు వాయిస్ మోడళ్లను ఎంచుకోండి, మీకు కావలసిన మిశ్రమ శాతాన్ని సెట్ చేయండి మరియు వాటిని పూర్తిగా కొత్త గొంతులో కలపండి.",
120
+ "Voice Blender": "వాయిస్ బ్లెండర్",
121
+ "Drag and drop your model here": "మీ మోడల్ ని ఇక్కడ డ్రాగ్ చేయండి మరియు డ్రాప్ చేయండి",
122
+ "You can also use a custom path.": "మీరు కస్టమ్ మార్గాన్ని కూడా ఉపయోగించవచ్చు.",
123
+ "Blend Ratio": "మిశ్రమ నిష్పత్తి",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "పొజిషన్ ను ఒక వైపు లేదా మరొక వైపుకు మరింత సర్దుబాటు చేయడం వల్ల మోడల్ మొదటి లేదా రెండవ వైపు మరింత పోలి ఉంటుంది.",
125
+ "Fusion": "ఫ్యూజన్",
126
+ "Path to Model": "మోడల్ కు మార్గం[మార్చు]",
127
+ "Enter path to model": "మోడల్ కు మార్గాన్ని నమోదు చేయండి",
128
+ "Model information to be placed": "మోడల్ సమాచారం ఉంచాలి",
129
+ "Inroduce the model information": "మోడల్ సమాచారాన్ని ఇన్ డ్యూక్ చేయండి",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "మోడల్ లో ఉంచాల్సిన సమాచారం (మీరు దానిని ఖాళీగా ఉంచవచ్చు లేదా ఏదైనా ఉంచవచ్చు).",
131
+ "View model information": "నమూనా సమాచారాన్ని వీక్షించండి",
132
+ "Introduce the model pth path": "మోడల్ పిటిహెచ్ మార్గాన్ని పరిచయం చేయండి",
133
+ "View": "దృశ్యం",
134
+ "Model extraction": "నమూనా వెలికితీత",
135
+ "Model conversion": "నమూనా మార్పిడి",
136
+ "Pth file": "PTH ఫైల్",
137
+ "Output of the pth file": "పిటిహెచ్ ఫైల్ యొక్క అవుట్ పుట్",
138
+ "# How to Report an Issue on GitHub": "# గిట్హబ్లో సమస్యను ఎలా రిపోర్ట్ చేయాలి",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. మీరు ఎదుర్కొంటున్న సమస్యను రికార్డ్ చేయడం ప్రారంభించడానికి దిగువ 'రికార్డ్ స్క్రీన్' బటన్పై క్లిక్ చేయండి.",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. మీరు సమస్యను రికార్డ్ చేయడం పూర్తి చేసిన తర్వాత, 'స్టాప్ రికార్డింగ్' బటన్పై క్లిక్ చేయండి (అదే బటన్, కానీ మీరు చురుకుగా రికార్డ్ చేస్తున్నారా లేదా అనే దానిపై ఆధారపడి లేబుల్ మారుతుంది).",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. 'గిట్హబ్ ఇష్యూస్'(https://github.com/IAHispano/Applio/issues)లోకి వెళ్లి 'న్యూ ఇష్యూ' బటన్పై క్లిక్ చేయాలి.",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. ఇచ్చిన ఇష్యూ టెంప్లేట్ ను పూర్తి చేసి, అవసరమైన విధంగా వివరాలను పొందుపర్చేలా చూసుకోవాలి మరియు మునుపటి దశ నుండి రికార్డ్ చేయబడిన ఫైల్ ను అప్ లోడ్ చేయడానికి ఆస్తుల విభాగాన్ని ఉపయోగించండి.",
143
+ "Record Screen": "స్క్రీన్ రికార్డ్ చేయండి",
144
+ "Record": "నమోదు",
145
+ "Stop Recording": "రికార్డింగ్ ఆపండి",
146
+ "Introduce the model .pth path": "మోడల్ .pth మార్గాన్ని పరిచయం చేయండి",
147
+ "See Model Information": "మోడల్ సమాచారం చూడండి",
148
+ "## Download Model": "## డౌన్ లోడ్ మోడల్",
149
+ "Model Link": "మోడల్ లింక్",
150
+ "Introduce the model link": "మోడల్ లింక్ ను పరిచయం చేయండి",
151
+ "Download Model": "మోడల్ డౌన్ లోడ్ చేయండి",
152
+ "## Drop files": "## డ్రాప్ ఫైళ్లు",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "మీ .pth ఫైల్ మరియు .index ఫైల్ ని ఈ స్పేస్ లోకి లాగండి. ఒకదాన్ని లాగి, తర్వాత మరొకటి లాగండి.",
154
+ "TTS Voices": "టిటిఎస్ వాయిస్",
155
+ "Select the TTS voice to use for the conversion.": "కన్వర్షన్ కొరకు ఉపయోగించడానికి TTS వాయిస్ ని ఎంచుకోండి.",
156
+ "Text to Synthesize": "సంశ్లేషణ చేయడానికి టెక్స్ట్",
157
+ "Enter the text to synthesize.": "సంశ్లేషణ చేయడానికి టెక్స్ట్ ను నమోదు చేయండి.",
158
+ "Or you can upload a .txt file": "లేదా .txt ఫైల్ ను అప్ లోడ్ చేయవచ్చు.",
159
+ "Enter text to synthesize": "సంశ్లేషణ చేయడానికి టెక్స్ట్ ను నమోదు చేయండి",
160
+ "Output Path for TTS Audio": "TTS ఆడియో కొరకు అవుట్ పుట్ మార్గం",
161
+ "Output Path for RVC Audio": "RVC ఆడియో కొరకు అవుట్ పుట్ మార్గం",
162
+ "Enable Applio integration with Discord presence": "Discord సమక్షంలో Applio ఇంటిగ్రేషన్ ప్రారంభించు",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "ఇది డిస్కార్డ్ లో ప్రస్తుత అప్లైయో యాక్టివిటీని ప్రదర్శించే అవకాశాన్ని యాక్టివేట్ చేస్తుంది.",
164
+ "Enable Applio integration with applio.org/models using flask": "ఫ్లాస్క్ ను ఉపయోగించి applio.org/models అప్లికేషన్ ఇంటిగ్రేషన్ ప్రారంభించండి",
165
+ "It will activate the possibility of downloading models with a click from the website.": "వెబ్ సైట్ నుంచి క్లిక్ తో మోడళ్లను డౌన్ లోడ్ చేసుకునే సదుపాయాన్ని యాక్టివేట్ చేస్తుంది.",
166
+ "Theme": "థీమ్",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "మీరు ఉపయోగించాలనుకుంటున్న థీమ్ ఎంచుకోండి. (అప్లికేషన్ ను పునఃప్రారంభించడం అవసరం)",
168
+ "Language": "భాష",
169
+ "Select the language you want to use. (Requires restarting Applio)": "మీరు ఉపయోగించాలనుకుంటున్న భాషను ఎంచుకోండి. (అప్లికేషన్ ను పునఃప్రారంభించడం అవసరం)",
170
+ "Plugin Installer": "Plugin Installer",
171
+ "Drag your plugin.zip to install it": "దీన్ని ఇన్ స్టాల్ చేయడానికి మీ plugin.zip లాగండి",
172
+ "Version Checker": "Version Checker",
173
+ "Check which version of Applio is the latest to see if you need to update.": "అప్లియో యొక్క ఏ వెర్షన్ లేటెస్ట్ అని చెక్ చేయండి, మీరు అప్ డేట్ చేయాల్సిన అవసరం ఉందా అని చూడండి.",
174
+ "Check for updates": "అప్ డేట్ ల కొరకు చెక్ చేయండి"
175
+ }
assets/i18n/languages/th_TH.json ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "สุดยอดเครื่องมือโคลนเสียงที่ได้รับการปรับให้เหมาะสมอย่างพิถีพิถันเพื่อพลังที่ไม่มีใครเทียบได้ความเป็นโมดูลและประสบการณ์ที่ใช้งานง่าย",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "ส่วนนี้ประกอบด้วยยูทิลิตี้พิเศษบางอย่างที่มักจะอยู่ในขั้นตอนการทดลอง",
4
+ "Output Information": "ข้อมูลเอาต์พุต",
5
+ "The output information will be displayed here.": "ข้อมูลผลลัพธ์จะแสดงที่นี่",
6
+ "Inference": "การอนุมาน",
7
+ "Train": "รถไฟ",
8
+ "Extra": "พิเศษ",
9
+ "Merge Audios": "รวมไฟล์เสียง",
10
+ "Processing": "ประมวล ผล",
11
+ "Audio Analyzer": "เครื่องวิเคราะห์เสียง",
12
+ "Model Information": "ข้อมูลรุ่น",
13
+ "Plugins": "ปลั๊กอิน",
14
+ "Download": "ดาวน์โหลด",
15
+ "Report a Bug": "รายงานข้อบกพร่อง",
16
+ "Settings": "การตั้งค่า",
17
+ "Preprocess": "กระบวนการล่วงหน้า",
18
+ "Model Name": "ชื่อรุ่น",
19
+ "Name of the new model.": "ชื่อของรุ่นใหม่",
20
+ "Enter model name": "ใส่ชื่อรุ่น",
21
+ "Dataset Path": "เส้นทางชุดข้อมูล",
22
+ "Path to the dataset folder.": "เส้นทางไปยังโฟลเดอร์ชุดข้อมูล",
23
+ "Refresh Datasets": "รีเฟรชชุดข้อมูล",
24
+ "Dataset Creator": "ผู้สร้างชุดข้อมูล",
25
+ "Dataset Name": "ชื่อชุดข้อมูล",
26
+ "Name of the new dataset.": "ชื่อของชุดข้อมูลใหม่",
27
+ "Enter dataset name": "ป้อนชื่อชุดข้อมูล",
28
+ "Upload Audio Dataset": "อัปโหลดชุดข้อมูลเสียง",
29
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "เพิ่มไฟล์เสียงลงในชุดข้อมูลเรียบร้อยแล้ว โปรดคลิกปุ่มดําเนินการล่วงหน้า",
30
+ "Enter dataset path": "ป้อนเส้นทางชุดข้อมูล",
31
+ "Sampling Rate": "Samp อัตราลิง",
32
+ "The sampling rate of the audio files.": "อัตราการสุ่มตัวอย่างของไฟล์เสียง",
33
+ "RVC Version": "รุ่น RVC",
34
+ "The RVC version of the model.": "รุ่น RVC ของรุ่น",
35
+ "Preprocess Dataset": "ชุดข้อมูลประมวลผลล่วงหน้า",
36
+ "Extract": "สกัด",
37
+ "Hop Length": "ความยาวกระโดด",
38
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "หมายถึงระยะเวลาที่ระบบใช้ในการเปลี่ยนไปใช้การเปลี่ยนแปลงระดับเสียงที่สําคัญ ความยาวฮ็อพที่เล็กกว่าต้องใช้เวลามากขึ้นในการอนุมาน แต่มักจะให้ความแม่นยําของพิทช์ที่สูงขึ้น",
39
+ "Batch Size": "ขนาดแบทช์",
40
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "ขอแนะนําให้จัดตําแหน่งให้ตรงกับ VRAM ที่มีอยู่ของ GPU ของคุณ การตั้งค่า 4 ให้ความแม่นยําที่ดีขึ้น แต่การประมวลผลช้าลง ในขณะที่ 8 ให้ผลลัพธ์ที่เร็วขึ้นและเป็นมาตรฐาน",
41
+ "Save Every Epoch": "บันทึกทุกยุค",
42
+ "Determine at how many epochs the model will saved at.": "กําหนดจํานวนยุคที่โมเดลจะบันทึกไว้",
43
+ "Total Epoch": "ยุคทั้งหมด",
44
+ "Specifies the overall quantity of epochs for the model training process.": "ระบุปริมาณโดยรวมของยุคสําหรับกระบวนการฝึกอบรมแบบจําลอง",
45
+ "Pretrained": "ได้รับการฝึกฝนล่วงหน้า",
46
+ "Save Only Latest": "บันทึกเฉพาะล่าสุด",
47
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "การเปิดใช้งานการตั้งค่านี้จะส่งผลให้ไฟล์ G และ D บันทึกเฉพาะเวอร์ชันล่าสุด ซึ่งช่วยประหยัดพื้นที่จัดเก็บได้อย่างมีประสิทธิภาพ",
48
+ "Save Every Weights": "ประหยัดทุกตุ้มน้ําหนัก",
49
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "การตั้งค่านี้ช่วยให้คุณประหยัดน้ําหนักของโมเดลเมื่อสิ้นสุดแต่ละยุค",
50
+ "Custom Pretrained": "กําหนดเอง Pretrained",
51
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "การใช้โมเดลที่ผ่านการฝึกอบรมล่วงหน้าแบบกําหนดเองสามารถนําไปสู่ผลลัพธ์ที่เหนือกว่า เนื่องจากการเลือกโมเดลที่ผ่านการฝึกอบรมล่วงหน้าที่เหมาะสมที่สุดซึ่งปรับให้เหมาะกับกรณีการใช้งานเฉพาะสามารถเพิ่มประสิทธิภาพได้อย่างมาก",
52
+ "Upload Pretrained Model": "อัปโหลดโมเดลที่ผ่านการฝึกอบรม",
53
+ "Refresh Custom Pretraineds": "รีเฟรช Custom Pretraineds",
54
+ "Pretrained Custom Settings": "การตั้งค่าแบบกําหนดเองที่ผ่านการฝึกอบรมล่วงหน้า",
55
+ "The file you dropped is not a valid pretrained file. Please try again.": "ไฟล์ที่คุณทิ้งไม่ใช่ไฟล์ที่ผ่านการฝึกอบรมล่วงหน้าที่ถูกต้อง โปรดลองอีกครั้ง",
56
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "คลิกปุ่มรีเฟรชเพื่อดูไฟล์ที่ฝึกไว้ล่วงหน้าในเมนูแบบเลื่อนลง",
57
+ "Pretrained G Path": "Custom Pretrained G",
58
+ "Pretrained D Path": "กําหนดเอง Pretrained D",
59
+ "GPU Settings": "การตั้งค่า GPU",
60
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "ตั้งค่า GPU ขั้นสูง แนะนําสําหรับผู้ใช้ที่มีสถาปัตยกรรม GPU ที่ดีกว่า",
61
+ "GPU Custom Settings": "การตั้งค่าแบบกําหนดเองของ GPU",
62
+ "GPU Number": "หมายเลข GPU",
63
+ "0 to ∞ separated by -": "0 ถึง ∞ คั่นด้วย -",
64
+ "GPU Information": "ข้อมูล GPU",
65
+ "Pitch Guidance": "คําแนะนําสนาม",
66
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "ด้วยการใช้คําแนะนําระดับเสียง จึงเป็นไปได้ที่จะสะท้อนน้ําเสียงของเสียงต้นฉบับ รวมถึงระดับเสียงด้วย คุณลักษณะนี้มีประโยชน์อย่างยิ่งสําหรับการร้องเพลงและสถานการณ์อื่นๆ ที่การรักษาท่วงทํานองดั้งเดิมหรือรูปแบบระดับเสียงเป็นสิ่งสําคัญ",
67
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "ใช้โมเดลที่ผ่านการฝึกอบรมล่วงหน้าเมื่อฝึกของคุณเอง วิธีการนี้ช่วยลดระยะเวลาการฝึกอบรมและปรับปรุงคุณภาพโดยรวม",
68
+ "Extract Features": "คุณสมบัติสารสกัด",
69
+ "Start Training": "เริ่มการฝึกอบรม",
70
+ "Generate Index": "สร้างดัชนี",
71
+ "Voice Model": "รูปแบบเสียง",
72
+ "Select the voice model to use for the conversion.": "เลือกรูปแบบเสียงที่จะใช้สําหรับการแปลง",
73
+ "Index File": "ไฟล์ดัชนี",
74
+ "Select the index file to use for the conversion.": "เลือกไฟล์ดัชนีที่จะใช้สําหรับการแปลง",
75
+ "Refresh": "ฟื้นฟู",
76
+ "Unload Voice": "ยกเลิกการโหลดเสียง",
77
+ "Single": "โสด",
78
+ "Upload Audio": "อัพโหลดเสียง",
79
+ "Select Audio": "เลือกเสียง",
80
+ "Select the audio to convert.": "เลือกเสียงที่จะแปลง",
81
+ "Advanced Settings": "การตั้งค่าขั้นสูง",
82
+ "Clear Outputs (Deletes all audios in assets/audios)": "Clear Outputs (ลบไฟล์เสียงทั้งหมดในเนื้อหา/ไฟล์เสียง)",
83
+ "Custom Output Path": "เส้นทางเอาต์พุตที่กําหนดเอง",
84
+ "Output Path": "เส้นทางเอาต์พุต",
85
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "เส้นทางที่จะบันทึกเสียงเอาต์พุตโดยค่าเริ่มต้นในเนื้อหา/ไฟล์เสียง/output.wav",
86
+ "Split Audio": "แยกเสียง",
87
+ "Split the audio into chunks for inference to obtain better results in some cases.": "แบ่งเสียงออกเป็นชิ้นๆ เพื่อการอนุมานเพื่อให้ได้ผลลัพธ์ที่ดีขึ้นในบางกรณี",
88
+ "Autotune": "ออโต้จูน",
89
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "ใช้ซอฟต์ออโต้จูนกับการอนุมานของคุณ ซึ่งแนะนําสําหรับการแปลงการร้องเพลง",
90
+ "Clean Audio": "ทําความสะอาดเสียง",
91
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "ทําความสะอาดเอาต์พุตเสียงของคุณโดยใช้อัลกอริธึมการตรวจจับเสียงรบกวน ซึ่งแนะนําสําหรับการพูดไฟล์เสียง",
92
+ "Clean Strength": "ความแข็งแรงสะอาด",
93
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "ตั้งค่าระดับการล้างข้อมูลเป็นเสียงที่คุณต้องการยิ่งคุณเพิ่มมากเท่าไหร่ก็ยิ่งทําความสะอาดได้มากขึ้นเท่านั้น แต่เป็นไปได้ว่าเสียงจะถูกบีบอัดมากขึ้น",
94
+ "Pitch": "ขว้าง",
95
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "ตั้งค่าระดับเสียง ยิ่งค่าสูง ระดับเสียงก็จะยิ่งสูงขึ้น",
96
+ "Filter Radius": "รัศมีตัวกรอง",
97
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "หากจํานวนมากกว่าหรือเท่ากับสามการใช้การกรองค่ามัธยฐานกับผลลัพธ์ของโทนเสียงที่รวบรวมได้มีศักยภาพในการลดการหายใจ",
98
+ "Search Feature Ratio": "อัตราส่วนคุณลักษณะการค้นหา",
99
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "อิทธิพลที่เกิดจากไฟล์ดัชนี ค่าที่สูงขึ้นสอดคล้องกับอิทธิพลที่มากขึ้น อย่างไรก็ตาม การเลือกใช้ค่าที่ต่ํากว่าสามารถช่วยบรรเทาสิ่งประดิษฐ์ที่มีอยู่ในเสียงได้",
100
+ "Volume Envelope": "ซองจดหมายปริมาณ",
101
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "แทนที่หรือผสมกับซองปริมาตรของเอาต์พุต ยิ่งอัตราส่วนใกล้เคียงกับ 1 มากเท่าไหร่ก็ยิ่งใช้ซองเอาต์พุตมากขึ้นเท่านั้น",
102
+ "Protect Voiceless Consonants": "ปกป้องพยัญชนะไร้เสียง",
103
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "ปกป้องพยัญชนะและเสียงหายใจที่แตกต่างกันเพื่อป้องกันการฉีกขาดของอิเล็กโทรอะคูสติกและสิ่งประดิษฐ์อื่นๆ การดึงพารามิเตอร์ไปที่ค่าสูงสุด 0.5 ให้การป้องกันที่ครอบคลุม อย่างไรก็ตาม การลดค่านี้อาจลดขอบเขตของการป้องกันในขณะที่อาจบรรเทาผลกระทบจากการจัดทําดัชนี",
104
+ "Pitch extraction algorithm": "อัลกอริธึมการแยกระดับเสียง",
105
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "อัลกอริธึมการแยกระดับเสียงเพื่อใช้สําหรับการแปลงเสียง อัลกอริทึมเริ่มต้นคือ rmvpe ซึ่งแนะนําสําหรับกรณีส่วนใหญ่",
106
+ "Convert": "แปลง",
107
+ "Export Audio": "ส่งออกเสียง",
108
+ "Batch": "ชุด",
109
+ "Input Folder": "โฟลเดอร์อินพุต",
110
+ "Select the folder containing the audios to convert.": "เลือกโฟลเดอร์ที่มีไฟล์เสียงที่จะแปลง",
111
+ "Enter input path": "ป้อนเส้นทางอินพุต",
112
+ "Output Folder": "โฟลเดอร์ผลลัพธ์",
113
+ "Select the folder where the output audios will be saved.": "เลือกโฟลเดอร์ที่จะบันทึกไฟล์เสียงที่ส่งออก",
114
+ "Enter output path": "ป้อนเส้นทางเอาต์พุต",
115
+ "Get information about the audio": "รับข้อมูลเกี่ยวกับเสียง",
116
+ "Information about the audio file": "ข้อมูลเกี่ยวกับไฟล์เสียง",
117
+ "Waiting for information...": "รอข้อมูล...",
118
+ "## Voice Blender": "## เครื่องปั่นเสียง",
119
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "เลือกรุ่นเสียงสองแบบตั้งค่าเปอร์เซ็นต์การผสมที่คุณต้องการและผสมผสานเป็นเสียงใหม่ทั้งหมด",
120
+ "Voice Blender": "เครื่องปั่นเสียง",
121
+ "Drag and drop your model here": "ลากและวางโมเดลของคุณที่นี่",
122
+ "You can also use a custom path.": "คุณยังสามารถใช้เส้นทางที่กําหนดเอง",
123
+ "Blend Ratio": "อัตราส่วนการผสม",
124
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "การปรับตําแหน่งไปทางด้านใดด้านหนึ่งมากขึ้นจะทําให้โมเดลคล้ายกับครั้งแรกหรือครั้งที่สองมากขึ้น",
125
+ "Fusion": "ฟิวชั่น",
126
+ "Path to Model": "เส้นทางสู่โมเดล",
127
+ "Enter path to model": "ป้อนเส้นทางไปยังแบบจําลอง",
128
+ "Model information to be placed": "ข้อมูลรุ่นที่จะวาง",
129
+ "Inroduce the model information": "ให้ข้อมูลโมเดล",
130
+ "The information to be placed in the model (You can leave it blank or put anything).": "ข้อมูลที่จะวางในแบบจําลอง (คุณสามารถเว้นว่างไว้หรือใส่อะไรก็ได้)",
131
+ "View model information": "ดูข้อมูลรุ่น",
132
+ "Introduce the model pth path": "แนะนําเส้นทาง pth ของโมเดล",
133
+ "View": "ทิวทัศน์",
134
+ "Model extraction": "การสกัดแบบจําลอง",
135
+ "Model conversion": "การแปลงโมเดล",
136
+ "Pth file": "ไฟล์ Pth",
137
+ "Output of the pth file": "เอาต์พุตของไฟล์ pth",
138
+ "# How to Report an Issue on GitHub": "# วิธีรายงานปัญหาใน GitHub",
139
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. คลิกที่ปุ่ม 'บันทึกหน้าจอ' ด้านล่างเพื่อเริ่มบันทึกปัญหาที่คุณพบ",
140
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. เมื่อคุณบันทึกปัญหาเสร็จแล้ว ให้คลิกที่ปุ่ม 'หยุดการบันทึก' (ปุ่มเดิม แต่ป้ายกํากับจะเปลี่ยนขึ้นอยู่กับว่าคุณกําลังบันทึกอยู่หรือไม่)",
141
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. ไปที่ [GitHub Issues](https://github.com/IAHispano/Applio/issues) และคลิกที่ปุ่ม 'New Issue'",
142
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. กรอกเทมเพลตปัญหาที่ให้มา เพื่อให้แน่ใจว่ามีรายละเอียดตามต้องการ และใช้ส่วนเนื้อหาเพื่ออัปโหลดไฟล์ที่บันทึกไว้จากขั้นตอนก่อนหน้า",
143
+ "Record Screen": "หน้าจอบันทึก",
144
+ "Record": "บันทึก",
145
+ "Stop Recording": "หยุดการบันทึก",
146
+ "Introduce the model .pth path": "แนะนําโมเดล .pth path",
147
+ "See Model Information": "ดูข้อมูลรุ่น",
148
+ "## Download Model": "## ดาวน์โหลดโมเดล",
149
+ "Model Link": "ลิงค์โมเดล",
150
+ "Introduce the model link": "แนะนําลิงค์โมเดล",
151
+ "Download Model": "ดาวน์โหลดโมเดล",
152
+ "## Drop files": "## วางไฟล์",
153
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "ลากไฟล์ .pth และไฟล์ .index ลงในช่องว่างนี้ ลากหนึ่งแล้วลากอีกอันหนึ่ง",
154
+ "TTS Voices": "เสียง TTS",
155
+ "Select the TTS voice to use for the conversion.": "เลือกเสียง TTS ที่จะใช้สําหรับการแปลง",
156
+ "Text to Synthesize": "ข้อความที่จะสังเคราะห์",
157
+ "Enter the text to synthesize.": "ป้อนข้อความที่จะสังเคราะห์",
158
+ "Or you can upload a .txt file": "หรือคุณสามารถอัปโหลดไฟล์ .txt",
159
+ "Enter text to synthesize": "ป้อนข้อความที่จะสังเคราะห์",
160
+ "Output Path for TTS Audio": "เส้นทางเอาต์พุตสําหรับเสียง TTS",
161
+ "Output Path for RVC Audio": "เส้นทางเอาต์พุตสําหรับเสียง RVC",
162
+ "Enable Applio integration with Discord presence": "เปิดใช้งานการรวม Applio กับการแสดงตนของ Discord",
163
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "มันจะเปิดใช้งานความเป็นไปได้ในการแสดงกิจกรรม Applio ปัจจุบันใน Discord",
164
+ "Enable Applio integration with applio.org/models using flask": "เปิดใช้งานการรวม Applio กับ applio.org/models โดยใช้ขวด",
165
+ "It will activate the possibility of downloading models with a click from the website.": "มันจะเปิดใช้งานความเป็นไปได้ในการดาวน์โหลดโมเดลด้วยการคลิกจากเว็บไซต์",
166
+ "Theme": "หัวข้อ",
167
+ "Select the theme you want to use. (Requires restarting Applio)": "เลือกธีมที่คุณต้องการใช้ (ต้องรีสตาร์ท Applio)",
168
+ "Language": "ภาษา",
169
+ "Select the language you want to use. (Requires restarting Applio)": "เลือกภาษาที่คุณต้องการใช้ (ต้องรีสตาร์ท Applio)",
170
+ "Plugin Installer": "ตัวติดตั้งปลั๊กอิน",
171
+ "Drag your plugin.zip to install it": "ลาก plugin.zip ของคุณเพื่อติดตั้ง",
172
+ "Version Checker": "ตัวตรวจสอบเวอร์ชัน",
173
+ "Check which version of Applio is the latest to see if you need to update.": "ตรวจสอบว่า Applio เวอร์ชันใดเป็นเวอร์ชันล่าสุดเพื่อดูว่าคุณจําเป็นต้องอัปเดตหรือไม่",
174
+ "Check for updates": "ตรวจหาการอัปเดต"
175
+ }
assets/i18n/languages/tr_TR.json ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Üstün ses kopyalama aracı, rakipsiz güç, modülerlik ve kullanıcı dostu deneyim için özenle optimize edilmiştir.\n[Türkçe çeviri: Enes](https://discord.com/users/1140031358006202468)",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Bu bölümde, genellikle deneysel aşamalarda olabilecek bazı ekstra yardımcı programlar bulunur.",
4
+ "Output Information": "Çıktı Bilgileri",
5
+ "The output information will be displayed here.": "Çıktı bilgileri burada görüntülenecektir.",
6
+
7
+ "Inference": "Arayüz",
8
+ "Train": "Eğitim",
9
+ "Extra": "Ekstra",
10
+ "Merge Audios": "Sesleri Birleştir",
11
+ "Processing": "İşleme",
12
+ "Audio Analyzer": "Ses Analizörü",
13
+ "Model Information": "Model Bilgileri",
14
+ "Plugins": "Eklentiler",
15
+ "Download": "İndir",
16
+ "Report a Bug": "Bir Hata Bildir",
17
+ "Settings": "Ayarlar",
18
+
19
+ "Preprocess": "İşlem Öncesi",
20
+ "Model Name": "Model Adı",
21
+ "Name of the new model.": "Yeni modelin adı.",
22
+ "Enter model name": "Model adını girin",
23
+ "Dataset Path": "Veri Kümesi Yolu",
24
+ "Path to the dataset folder.": "Veri kümesi klasörünün yolu.",
25
+ "Refresh Datasets": "Veri Kümelerini Yenile",
26
+ "Dataset Creator": "Veri Kümesi Oluşturucu",
27
+ "Dataset Name": "Veri Kümesi Adı",
28
+ "Name of the new dataset.": "Yeni veri kümesinin adı.",
29
+ "Enter dataset name": "Veri kümesi adını girin",
30
+ "Upload Audio Dataset": "Ses Veri Kümesini Yükle",
31
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Ses dosyası veri kümesine başarıyla eklendi. Lütfen işlem öncesi düğmesine tıklayın.",
32
+ "Enter dataset path": "Veri kümesi yolunu girin",
33
+ "Sampling Rate": "Örnekleme Hızı",
34
+ "The sampling rate of the audio files.": "Ses dosyalarının örnekleme hızı.",
35
+ "RVC Version": "RVC Sürümü",
36
+ "The RVC version of the model.": "Modelin RVC sürümü.",
37
+ "Preprocess Dataset": "Veri Kümesini İşlem Öncesinden Geçir",
38
+
39
+ "Embedder Model": "Gömme Modeli",
40
+ "Model used for learning speaker embedding.": "Konuşmacı gömmelerini öğrenmek için kullanılan model.",
41
+ "Extract": "Çıkar",
42
+ "Hop Length": "Adım Uzunluğu",
43
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Sistemin önemli bir perde değişikliğine geçmesi için gereken süreyi belirtir. Daha küçük adım uzunlukları, çıkarsama için daha fazla zaman gerektirir ancak daha yüksek perde doğruluğu sağlar.",
44
+ "Batch Size": "Toplu Boyutu",
45
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Bunu GPU'nuzun mevcut VRAM'iyle uyumlu hale getirmeniz önerilir. 4'lük bir ayar daha iyi doğruluk ancak daha yavaş işleme sunarken, 8 daha hızlı ve standart sonuçlar sağlar.",
46
+ "Save Every Epoch": "Her Dönemde Kaydet",
47
+ "Determine at how many epochs the model will saved at.": "Modelin kaçıncı çağlarda kaydedileceğini belirleyin.",
48
+ "Total Epoch": "Toplam Çağ",
49
+ "Specifies the overall quantity of epochs for the model training process.": "Model eğitim süreci için gereken toplam dönem sayısını belirtir.",
50
+ "Pretrained": "Önceden Eğitimli",
51
+ "Save Only Latest": "Sadece Son Sürümü Kaydet",
52
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Bu ayarın etkinleştirilmesi, G ve D dosyalarının yalnızca en son sürümlerinin kaydedilmesine neden olur ve depolama alanından tasarruf sağlar.",
53
+ "Save Every Weights": "Tüm Ağırlıkları Kaydet",
54
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Bu ayar, her dönemin sonunda modelin ağırlıklarını kaydetmenizi sağlar.",
55
+ "Custom Pretrained": "Özel Önceden Eğitimli",
56
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "Özel önceden eğitilmiş modelleri kullanmak üstün sonuçlar doğurabilir, çünkü belirli kullanım durumuna göre uyarlanmış en uygun önceden eğitilmiş modelleri seçmek performansı önemli ölçüde artırabilir.",
57
+ "Upload Pretrained Model": "Önceden Eğitimli Model Yükle",
58
+ "Refresh Custom Pretraineds": "Özel Önceden Eğitimleri Yenile",
59
+ "Pretrained Custom Settings": "Önceden Eğitimli Özel Ayarlar",
60
+ "The file you dropped is not a valid pretrained file. Please try again.": "Bıraktığınız dosya geçerli bir önceden eğitilmiş dosya değil. Lütfen tekrar deneyin.",
61
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Açılır menüde önceden eğitilmiş dosyayı görmek için yenile düğmesine tıklayın.",
62
+ "Pretrained G Path": "Özel Önceden Eğitimli G",
63
+ "Pretrained D Path": "Özel Önceden Eğitimli D",
64
+ "GPU Settings": "GPU Ayarları",
65
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Gelişmiş GPU ayarlarını belirler, daha iyi GPU mimarisine sahip kullanıcılar için önerilir.",
66
+ "GPU Custom Settings": "GPU Özel Ayarları",
67
+ "GPU Number": "GPU Numarası",
68
+ "0 to ∞ separated by -": "0'dan sonsuza kadar - ile ayrılmış",
69
+ "GPU Information": "GPU Bilgileri",
70
+ "Pitch Guidance": "Perde Rehberliği",
71
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Perde rehberliğini kullanarak, orijinal sesin tonlamasını, perde de dahil olmak üzere yansıtmak mümkün hale gelir. Bu özellik, özellikle orijinal melodiyi veya perde düzenini korumak için hayati önem taşıyan şarkı söyleme ve diğer senaryolar için değerlidir.",
72
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Kendi modelinizi eğitirken önceden eğitilmiş modelleri kullanın. Bu yaklaşım, eğitim süresini azaltır ve genel kaliteyi artırır.",
73
+ "Extract Features": "Özellikleri Çıkar",
74
+ "Overtraining Detector": "Aşırı Eğitim Dedektörü",
75
+ "Detect overtraining to prevent the model from learning the training data too well and losing the ability to generalize to new data.": "Modelin eğitim verilerini çok iyi öğrenmesini ve yeni verilere genelleme yeteneğini kaybetmesini önlemek için aşırı eğitimi tespit edin.",
76
+ "Overtraining Detector Settings": "Aşırı Eğitim Dedektörü Ayarları",
77
+ "Overtraining Threshold": "Aşırı Eğitim Eşiği",
78
+ "Set the maximum number of epochs you want your model to stop training if no improvement is detected.": "Herhangi bir iyileşme tespit edilmezse modelinizin eğitimini durdurmasını istediğiniz maksimum epoch sayısını ayarlayın.",
79
+
80
+ "Start Training": "Eğitmeye Başla",
81
+ "Stop Training & Restart Applio": "Eğitimi Durdur ve Applio'yu Yeniden Başlat",
82
+ "Generate Index": "Dizin Oluştur",
83
+
84
+ "Export Model": "Modeli Dışa Aktar",
85
+ "The button 'Upload' is only for google colab: Uploads the exported files to the ApplioExported folder in your Google Drive.": "'Yükle' düğmesi yalnızca google colab içindir: Dışa aktarılan dosyaları Google Drive'ınızdaki ApplioExported klasörüne yükler.",
86
+ "Exported Pth file": "Dışa Aktarılan Pth dosyası",
87
+ "Exported Index file": "Dışa Aktarılan Dizin dosyası",
88
+ "Select the pth file to be exported": "Dışa aktarılacak pth dosyasını seçin",
89
+ "Select the index file to be exported": "Dışa aktarılacak dizin dosyasını seçin",
90
+ "Upload": "Yükle",
91
+
92
+ "Voice Model": "Ses Modeli",
93
+ "Select the voice model to use for the conversion.": "Dönüştürme için kullanılacak ses modelini seçin.",
94
+ "Index File": "Dizin Dosyası",
95
+ "Select the index file to use for the conversion.": "Dönüştürme için kullanılacak dizin dosyasını seçin.",
96
+ "Refresh": "Yenile",
97
+ "Unload Voice": "Sesi Kaldır",
98
+
99
+ "Single": "Tek",
100
+ "Upload Audio": "Ses Yükle",
101
+ "Select Audio": "Ses Seç",
102
+ "Select the audio to convert.": "Dönüştürülecek sesi seçin.",
103
+ "Advanced Settings": "Gelişmiş Ayarlar",
104
+ "Clear Outputs (Deletes all audios in assets/audios)": "Çıktıları Temizle (assets/audios klasöründeki tüm sesleri siler)",
105
+ "Custom Output Path": "Özel Çıktı Yolu",
106
+ "Output Path": "Çıktı Yolu",
107
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Varsayılan olarak assets/audios/output.wav'da kaydedilecek çıktı sesinin yolu",
108
+ "Split Audio": "Sesi Böl",
109
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Daha iyi sonuçlar elde etmek için bazı durumlarda çıkarım için sesi parçalara bölün.",
110
+ "Autotune": "Autotune",
111
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Çıkarımlarınıza yumuşak bir autotune uygulayın, şarkı dönüştürmeleri için önerilir.",
112
+ "Clean Audio": "Sesi Temizle",
113
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Ses algılama algoritmaları kullanarak ses çıktınızı temizleyin, konuşan sesler için önerilir.",
114
+ "Clean Strength": "Temiz Gücü",
115
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "İstediğiniz sese temizleme seviyesini ayarlayın, ne kadar artırırsanız o kadar temizler, ancak sesin daha fazla sıkıştırılması mümkündür.",
116
+ "Pitch": "Perde",
117
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Sesin perdesini ayarlayın, değer ne kadar yüksek olursa perde o kadar yüksek olur.",
118
+ "Filter Radius": "Filtre Yarıçapı",
119
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Sayı üçten büyük veya ona eşitse, toplanan ton sonuçlarına ortanca filtreleme uygulamak solunumu azaltabilir.",
120
+ "Search Feature Ratio": "Arama Özelliği Oranı",
121
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Dizin dosyası tarafından uygulanan etki; daha yüksek bir değer daha büyük etkiye karşılık gelir. Ancak daha düşük değerler seçmek, sesteki var olan eserlerin azaltılmasına yardımcı olabilir.",
122
+ "Volume Envelope": "Ses Zarıfı",
123
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Çıktının ses zarfı ile değiştirme veya karıştırma yapın. Oran 1'e ne kadar yakınsa, çıktı zarfı o kadar fazla kullanılır.",
124
+ "Protect Voiceless Consonants": "Sessiz Ünsüzleri Koru",
125
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Elektro-akustik yırtılmayı ve diğer eserleri önlemek için farklı ünsüzleri ve solunum seslerini koruyun. Parametreyi maksimum değeri 0,5'e çekmek kapsamlı koruma sağlar. Ancak bu değeri azaltmak, koruma kapsamını azaltırken dizin oluşturma etkisini azaltabilir.",
126
+ "Pitch extraction algorithm": "Perde çıkarma algoritması",
127
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Ses dönüşümü için kullanılacak perde çıkarma algoritması. Varsayılan algoritma, çoğu durum için önerilen rmvpedir.",
128
+
129
+ "Convert": "Dönüştür",
130
+ "Export Audio": "Sesi Dışa Aktar",
131
+
132
+ "Batch": "Toplu",
133
+ "Input Folder": "Giriş Klasörü",
134
+ "Select the folder containing the audios to convert.": "Dönüştürülecek sesleri içeren klasörü seçin.",
135
+ "Enter input path": "Giriş yolunu girin",
136
+ "Output Folder": "Çıktı Klasörü",
137
+ "Select the folder where the output audios will be saved.": "Çıktı seslerinin kaydedileceği klasörü seçin.",
138
+ "Enter output path": "Çıktı yolunu girin",
139
+
140
+ "Get information about the audio": "Ses hakkında bilgi al",
141
+
142
+ "## Voice Blender": "## Ses Karıştırıcı",
143
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "İki ses modeli seçin, istediğiniz karışım yüzdesini ayarlayın ve bunları tamamen yeni bir sese karıştırın.",
144
+ "Voice Blender": "Ses Karıştırıcı",
145
+ "Drag and drop your model here": "Modelinizi buraya sürükleyip bırakın",
146
+ "You can also use a custom path.": "Özel bir yol da kullanabilirsiniz.",
147
+ "Blend Ratio": "Karışım Oranı",
148
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Konumu bir yöne veya diğerine daha fazla ayarlayarak modeli birinci veya ikinciye daha benzer hale getireceksiniz.",
149
+ "Fusion": "Birleştirme",
150
+
151
+ "Path to Model": "Modele Giden Yol",
152
+ "Enter path to model": "Modele giden yolu girin",
153
+ "Model information to be placed": "Yerleştirilecek model bilgileri",
154
+ "Inroduce the model information": "Model bilgilerini tanıtın",
155
+ "The information to be placed in the model (You can leave it blank or put anything).": "Modele yerleştirilecek bilgiler (Boş bırakabilir veya bir şey koyabilirsiniz).",
156
+ "View model information": "Model bilgilerini görüntüleyin",
157
+ "Introduce the model pth path": "Model pth yolunu tanıtın",
158
+ "View": "Görüntüle",
159
+ "Model extraction": "Model çıkarımı",
160
+ "Model conversion": "Model dönüştürme",
161
+ "Pth file": "Pth dosyası",
162
+ "Output of the pth file": "Pth dosyasının çıktısı",
163
+
164
+ "# How to Report an Issue on GitHub": "# GitHub'da Bir Sorunu Nasıl Bildirirsiniz",
165
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Yaşadığınız sorunu kaydetmeye başlamak için aşağıdaki 'Ekran Kaydı' düğmesine tıklayın.",
166
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Sorunu kaydetmeyi tamamladığınızda, 'Kaydı Durdur' düğmesine tıklayın (aynı düğme, ancak aktif olarak kayıt yapıp yapmadığınıza bağlı olarak etiket değişir).",
167
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Sorunlarına](https://github.com/IAHispano/Applio/issues) gidin ve 'Yeni Sorun' düğmesine tıklayın.",
168
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Sağlanan sorun şablonunu tamamlayın, gerektiği gibi ayrıntıları eklediğinizden emin olun ve önceki adımdan kaydedilen dosyayı yüklemek için varlıklar bölümünü kullanın.",
169
+
170
+ "Record Screen": "Ekranı Kaydet",
171
+ "Record": "Kayıt Yap",
172
+ "Stop Recording": "Kaydı Durdur",
173
+
174
+ "Introduce the model .pth path": "Model .pth yolunu tanıtın",
175
+ "See Model Information": "Model Bilgilerini Görün",
176
+
177
+ "## Download Model": "## Model İndirin",
178
+ "Model Link": "Model Bağlantısı",
179
+ "Introduce the model link": "Model bağlantısını tanıtın",
180
+ "Download Model": "Modeli İndirin",
181
+ "## Drop files": "## Dosyaları bırakın",
182
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": ".pth dosyanızı ve .index dosyanızı bu alana sürükleyin. Önce birini sonra diğerini sürükleyin.",
183
+ "## Search Model": "## Modeli Ara",
184
+ "Search": "Ara",
185
+ "Introduce the model name to search.": "Aramak için model adını girin.",
186
+ "We couldn't find models by that name.": "Bu isim'e sahip bir model bulunamadı.",
187
+
188
+ "TTS Voices": "TTS Sesleri",
189
+ "Select the TTS voice to use for the conversion.": "Dönüşüm için kullanılacak TTS sesini seçin.",
190
+ "Text to Synthesize": "Sentezlemek İçin Metin",
191
+ "Enter the text to synthesize.": "Sentezlemek için metni girin.",
192
+ "Or you can upload a .txt file": "Veya bir .txt dosyası yükleyebilirsiniz",
193
+ "Enter text to synthesize": "Sentezlemek için metin girin",
194
+ "Output Path for TTS Audio": "TTS Sesinin Çıktı Yolu",
195
+ "Output Path for RVC Audio": "RVC Sesinin Çıktı Yolu",
196
+
197
+ "Enable Applio integration with Discord presence": "Discord oynuyor Applio entegrasyonunu etkinleştirin",
198
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Applio geçerli etkinliğini Discord'da görüntüleme olasılığını etkinleştirir.",
199
+ "Enable Applio integration with applio.org/models using flask": "Flask kullanarak applio.org/models ile Applio entegrasyonunu etkinleştirin",
200
+ "It will activate the possibility of downloading models with a click from the website.": "Web sitesinden bir tıklama ile modellerin indirilmesi olasılığını etkinleştirir.",
201
+ "Enable fake GPU": "Sahte GPU'yu Etkinleştir",
202
+ "Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option.": "GPU olmadığı için eğitim şu anda desteklenmiyor. Eğitim sekmesini etkinleştirmek için ayarlar sekmesine gidin ve 'Sahte GPU' seçeneğini etkinleştirin.",
203
+ "Activates the train tab. However, please note that this device lacks GPU capabilities, hence training is not supported. This option is only for testing purposes. (This option will restart Applio)": "Eğitim sekmesini etkinleştirir. Ancak, bu cihazda GPU yetenekleri olmadığından, eğitim desteklenmez. Bu seçenek yalnızca test amaçlıdır. (Bu seçenek Applio'yu yeniden başlatacaktır)",
204
+ "Theme": "Tema",
205
+ "Select the theme you want to use. (Requires restarting Applio)": "Kullanmak istediğiniz temayı seçin. (Applio'yu yeniden başlatmayı gerektirir)",
206
+ "Language": "Dil",
207
+ "Select the language you want to use. (Requires restarting Applio)": "Kullanmak istediğiniz dili seçin. (Applio'yu yeniden başlatmayı gerektirir)",
208
+
209
+ "Plugin Installer": "Plugin Yükleyici",
210
+ "Drag your plugin.zip to install it": "Yüklemek için plugin.zip'inizi sürükleyin",
211
+
212
+ "Version Checker": "Sürüm Denetleyicisi",
213
+ "Check which version of Applio is the latest to see if you need to update.": "Güncellemeniz gerekip gerekmediğini görmek için Applio'nun hangi sürümünün en son olduğunu kontrol edin.",
214
+ "Check for updates": "Güncellemeleri kontrol et"
215
+ }
assets/i18n/languages/uk_UK.json ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Найкращий інструмент для клонування голосу, ретельно оптимізований для неперевершеної потужності, модульності та зручного використання.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Цей розділ містить деякі додаткові утиліти, які часто можуть перебувати в експериментальних стадіях.",
4
+ "Output Information": "Вихідна інформація",
5
+ "The output information will be displayed here.": "Тут буде відображена вихідна інформація.",
6
+
7
+ "Inference": "Заміна голосу",
8
+ "Train": "Навчання моделі",
9
+ "Extra": "Додатково",
10
+ "Merge Audios": "Об'єднання аудіо",
11
+ "Processing": "Обробка",
12
+ "Audio Analyzer": "Аналізатор звуку",
13
+ "Model Information": "Інформація про модель",
14
+ "Plugins": "Плагіни",
15
+ "Download": "Завантажити",
16
+ "Report a Bug": "Повідомити про помилку",
17
+ "Settings": "Параметри",
18
+
19
+ "Preprocess": "Обробка",
20
+ "Model Name": "Назва моделі",
21
+ "Name of the new model.": "Назва нової моделі.",
22
+ "Enter model name": "Введіть назву моделі",
23
+ "Dataset Path": "Шлях датасету",
24
+ "Path to the dataset folder.": "Шлях до папки з аудіо датасетом.",
25
+ "Refresh Datasets": "Оновити датасети",
26
+ "Dataset Creator": "Створити датасет",
27
+ "Dataset Name": "Назва датасету",
28
+ "Name of the new dataset.": "Назва нового датасету.",
29
+ "Enter dataset name": "Введіть назву датасету",
30
+ "Upload Audio Dataset": "Завантажити датасет",
31
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "Аудіофайл успішно додано до датасету. Будь ласка, натисніть кнопку обробки датасету.",
32
+ "Enter dataset path": "Введіть шлях до датасету",
33
+ "Sampling Rate": "Частота дискретизації",
34
+ "The sampling rate of the audio files.": "Частота дискретизації аудіофайлів.",
35
+ "RVC Version": "Версія RVC",
36
+ "The RVC version of the model.": "Версія моделі RVC.",
37
+ "Preprocess Dataset": "Обробити датасет",
38
+
39
+ "Embedder Model": "Модель розгортання",
40
+ "Model used for learning speaker embedding.": "Модель, що використовується для навчання динаміки голосу.",
41
+ "Extract": "Видобування",
42
+ "Hop Length": "Довжина кроку",
43
+ "Denotes the duration it takes for the system to transition to a significant pitch change. Smaller hop lengths require more time for inference but tend to yield higher pitch accuracy.": "Позначає час, необхідний для обробки, системою для виявлення значної зміни висоти тону. Менша довжина кроку вимагає більше часу для обробки, але, як правило, забезпечує вищу точність визначення висоти тону.",
44
+ "Batch Size": "Використання відеопам'яті (ГБ)",
45
+ "It's advisable to align it with the available VRAM of your GPU. A setting of 4 offers improved accuracy but slower processing, while 8 provides faster and standard results.": "Кількість VRAM яка буде використана в процесі навчання. Бажано встановити значення відповідно до доступної відеопам'яті вашої відеокарти. Значення 4 забезпечує кращу точність, але повільнішу обробку, тоді як 8 забезпечує швидші та стандартні результати.",
46
+ "Save Every Epoch": "Частота збереження епох",
47
+ "Determine at how many epochs the model will saved at.": "Визначає інтервал збереження проміжкових епох.",
48
+ "Total Epoch": "Кількість епох",
49
+ "Specifies the overall quantity of epochs for the model training process.": "Визначає загальну кількість епох для процесу навчання моделі.",
50
+ "Pretrained": "Попередньо навчені моделі",
51
+ "Save Only Latest": "Зберігати лише останні",
52
+ "Enabling this setting will result in the G and D files saving only their most recent versions, effectively conserving storage space.": "Увімкнення цієї опції призведе до того, що файли G і D (які потрібні для відновлення навчаня моделі) будуть збережені лише в останній версії. Ефективно заощаджуючи місце на диску, але без можливості відновити навчання з попередніх епох.",
53
+ "Save Every Weights": "Збереження проміжкових моделей",
54
+ "This setting enables you to save the weights of the model at the conclusion of each epoch.": "Цей параметр дозволяє зберігати проможкові епохи моделі у встановленому інтервалі.",
55
+ "Custom Pretrained": "Користувацькі попередньо навчені моделі",
56
+ "Utilizing custom pretrained models can lead to superior results, as selecting the most suitable pretrained models tailored to the specific use case can significantly enhance performance.": "Використання користувацьких попередньо навчених моделей може призвести до чудових результатів навчання, оскільки вибір найбільш підходящих попередньо навчених моделей, адаптованих до конкретного випадку використання, може значно підвищити продуктивність. (Увімкніть цей параметр для відновлення призупиненого навчання.)",
57
+ "Upload Pretrained Model": "Завантажте попередньо навчену модель",
58
+ "Refresh Custom Pretraineds": "Оновити",
59
+ "Pretrained Custom Settings": "Налаштування попередньо навчених моделей",
60
+ "The file you dropped is not a valid pretrained file. Please try again.": "Файл, який ви скинули, не є дійсним попередньо навченим файлом. Будь ласка, спробуйте ще раз.",
61
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Натисніть кнопку «Оновити», щоб переглянути попередньо підготовлений файл у розгортуваному меню.",
62
+ "Pretrained G Path": "Шлях до G файлу",
63
+ "Pretrained D Path": "Шлях до D файлу",
64
+ "GPU Settings": "Налаштування GPU",
65
+ "Sets advanced GPU settings, recommended for users with better GPU architecture.": "Встановлення розширених налаштувань графічного процесора, рекомендовано для користувачів з кількома відеокартами.",
66
+ "GPU Custom Settings": "Налаштування GPU",
67
+ "GPU Number": "Індексовані GPU",
68
+ "0 to ∞ separated by -": "Вкажіть індекс графічних процесорів, які ви хочете використати для навчання, ввівши їх через дефіс (-). Наприклад: 0-1-3 ",
69
+ "GPU Information": "Список GPU",
70
+ "Pitch Guidance": "Керування тоном голосу",
71
+ "By employing pitch guidance, it becomes feasible to mirror the intonation of the original voice, including its pitch. This feature is particularly valuable for singing and other scenarios where preserving the original melody or pitch pattern is essential.": "Використовуючи висоту тону, стає можливим відтворити інтонацію оригінального голосу, включаючи його висоту. Ця функція особливо корисна для співу та інших сценаріїв, де важливо зберегти оригінальну мелодію або висоту тону.",
72
+ "Utilize pretrained models when training your own. This approach reduces training duration and enhances overall quality.": "Використовуйте попередньо навчені моделі, коли тренуєте свої власні. Такий підхід скорочує тривалість навчання та підвищує загальну якість.",
73
+ "Extract Features": "Обробити характеристики голосу",
74
+ "Overtraining Detector": "Детектор перенавченості",
75
+ "Detect overtraining to prevent the model from learning the training data too well and losing the ability to generalize to new data.": "Виявляє перенавчання моделі, щоб запобігти надмірному засвоєнню навчальної інформації та втраті здатності до узагальнення нових даних.",
76
+ "Overtraining Detector Settings": "Налаштування детектора пере��авченості",
77
+ "Overtraining Threshold": "Поріг перетренованості",
78
+ "Set the maximum number of epochs you want your model to stop training if no improvement is detected.": "Встановіть максимальну кількість епох, через яку модель припинить навчання, якщо не буде виявлено ознак прогрессу.",
79
+ "Sync Graph": "Синхронізація графіків",
80
+ "Synchronize the graph of the tensorbaord. Only enable this setting if you are training a new model.": "Синхронізувати графіки «tensorbaord» для відображення процесу навчання. Використовуйте цей параметр, тільки якщо ви навчаєте нову модель.",
81
+
82
+ "Start Training": "Почати навчання",
83
+ "Stop Training & Restart Applio": "Зупинити навчання та Перезапустити Applio",
84
+ "Generate Index": "Згенерувати індекс",
85
+
86
+ "Export Model": "Експортувати модель",
87
+ "The button 'Upload' is only for google colab: Uploads the exported files to the ApplioExported folder in your Google Drive.": "Кнопка «Завантажити» призначена лише для google colab: Завантажує експортовані файли до папки ApplioExported у вашому Google Диску.",
88
+ "Exported Pth file": "Експортований Pth файл",
89
+ "Exported Index file": "Експортований Index файл",
90
+ "Select the pth file to be exported": "Виберіть pth файл для експорту",
91
+ "Select the index file to be exported": "Виберіть файл індексу для експорту",
92
+ "Upload": "Завантажити",
93
+
94
+ "Voice Model": "Голосова модель",
95
+ "Select the voice model to use for the conversion.": "Виберіть модель голосу, яку буде використано для перетворення.",
96
+ "Index File": "Індекс файл",
97
+ "Select the index file to use for the conversion.": "Виберіть індекс, який буде використано для перетворення.",
98
+ "Refresh": "Оновити",
99
+ "Unload Voice": "Скинути голос",
100
+
101
+ "Single": "Один файл",
102
+ "Upload Audio": "Завантажити аудіо",
103
+ "Select Audio": "Виберіть Аудіо",
104
+ "Select the audio to convert.": "Виберіть аудіо, яке потрібно конвертувати.",
105
+ "Advanced Settings": "Розширені налаштування",
106
+ "Clear Outputs (Deletes all audios in assets/audios)": "Очистити результати (видаляє всі аудіофайли в assets/audios",
107
+ "Custom Output Path": "Власний вихідний шлях",
108
+ "Output Path": "Вихідний шлях",
109
+ "The path where the output audio will be saved, by default in assets/audios/output.wav": "Шлях, куди буде збережено вихідний аудіофайл, за замовчуванням у assets/audios/output.wav",
110
+ "Split Audio": "Розділити аудіо",
111
+ "Split the audio into chunks for inference to obtain better results in some cases.": "Розділяє аудіо на фрагменти для виведення - в деяких випадках це сприяє отриманню кращих результатів.",
112
+ "Autotune": "Автотюн",
113
+ "Apply a soft autotune to your inferences, recommended for singing conversions.": "Додає до вихідного файлу м'який автотюн, рекомендується для вокальних перетворень.",
114
+ "Clean Audio": "Очищення аудіо",
115
+ "Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Очищення вихідного звуку за допомогою алгоритмів виявлення шуму, рекомендується для розмовних перетворень.",
116
+ "Clean Strength": "Сила очищення",
117
+ "Upscale Audio": "Покращення аудіо",
118
+ "Upscale the audio to a higher quality, recommended for low-quality audios. (It could take longer to process the audio)": "Підвищує якість аудіо до більш високої, рекомендується для аудіо низької якості. (Обробка аудіо може зайняти більше часу)",
119
+ "Set the clean-up level to the audio you want, the more you increase it the more it will clean up, but it is possible that the audio will be more compressed.": "Встановіть рівень очищення відповідно до бажаного результату, чим більше значення, тим більше аудіо буде очищено, при значеннях близьких до 1 можлива поява артефактів.",
120
+ "Pitch": "Тембр голосу",
121
+ "Set the pitch of the audio, the higher the value, the higher the pitch.": "Встановлення висоти голосу (кількість півтонів, підвищити на октаву: 12, понизити на октаву: -12). Рекомендована позначка 12 для перетворення чоловічого голосу на жіночий, і -12 для перетворення жіночого голосу на чоловічий. Якщо діапазон звуку занадто далеко і голос спотворюється, ви можете самостійно відрегулювати його до відповідного діапазону.",
122
+ "Filter Radius": "Радіус фільтра",
123
+ "If the number is greater than or equal to three, employing median filtering on the collected tone results has the potential to decrease respiration.": "Якщо це число більше або дорівнює трьом, застосування медіанної фільтрації на зібраних результатах тонів, може призвести до зменшення звуків дихання.",
124
+ "Search Feature Ratio": "Співвідношення функцій пошуку",
125
+ "Influence exerted by the index file; a higher value corresponds to greater influence. However, opting for lower values can help mitigate artifacts present in the audio.": "Вплив файлу індексації; чим більше значення, тим більший вплив. Однак, вибір менших значень може допомогти зменшити артефакти, присутні в аудіо.",
126
+ "Volume Envelope": "Динаміка гучності",
127
+ "Substitute or blend with the volume envelope of the output. The closer the ratio is to 1, the more the output envelope is employed.": "Замінити або змішати з форму вихідного сигналу. Чим ближче співвідношення до 1, тим більше використовується динаміка гучності оригінального аудіофайлу.",
128
+ "Protect Voiceless Consonants": "Захист глухих приголосних",
129
+ "Safeguard distinct consonants and breathing sounds to prevent electro-acoustic tearing and other artifacts. Pulling the parameter to its maximum value of 0.5 offers comprehensive protection. However, reducing this value might decrease the extent of protection while potentially mitigating the indexing effect.": "Захист чіткості приголосних і звуків дихання для запобігання електроакустичного розриву та інших артефактів. Збільшення цього параметра до максимального значення 0,5 забезпечує комплексний захист. Однак зменшення цього значення може зменшити ступінь захисту, а також потенційно послабити ефект індексування.",
130
+ "Pitch extraction algorithm": "Алгоритм виділення тембру",
131
+ "Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases.": "Алгоритм виділення висоти тону голосу, який використовуватиметься для перетворення аудіо. ('pm': швидке перетворення, але нижча якість звучання; 'harvest': кращі басові тембри, але дуже повільний). Алгоритм за замовчуванням - rmvpe, який рекомендується для більшості випадків.",
132
+
133
+ "Convert": "Перетворити",
134
+ "Export Audio": "Експорт аудіо",
135
+
136
+ "Batch": "Група файлів",
137
+ "Input Folder": "Вхідна тека",
138
+ "Select the folder containing the audios to convert.": "Виберіть теку, що містить аудіозаписи для перетворення.",
139
+ "Enter input path": "Введіть вхідний шлях",
140
+ "Output Folder": "Вихідна тека",
141
+ "Select the folder where the output audios will be saved.": "Виберіть теку, куди будуть збережені вихідні аудіозаписи.",
142
+ "Enter output path": "Введіть шлях для збереження",
143
+
144
+ "Get information about the audio": "Отримати інформацію про аудіо",
145
+
146
+ "## Voice Blender": "Голосовий мікшер",
147
+ "Select two voice models, set your desired blend percentage, and blend them into an entirely new voice.": "Виберіть дві моделі голосу, встановіть бажаний відсоток змішування і змішайте їх в абсолютно новий голос.",
148
+ "Voice Blender": "Голосовий мікшер",
149
+ "Drag and drop your model here": "Перетягніть модель сюди",
150
+ "You can also use a custom path.": "Ви також можете використовувати власний шлях.",
151
+ "Blend Ratio": "Пропорції змішування",
152
+ "Adjusting the position more towards one side or the other will make the model more similar to the first or second.": "Регулювання положення більше в ту чи іншу сторону зробить модель більш схожою на першу або другу.",
153
+ "Fusion": "З'єднати",
154
+ "Path to Model": "Шлях до моделі",
155
+ "Enter path to model": "Введіть шлях до моделі",
156
+ "Model information to be placed": "Інформація про модель, яку потрібно розмістити",
157
+ "Inroduce the model information": "Ознайомлення з інформацією про модель",
158
+ "The information to be placed in the model (You can leave it blank or put anything).": "Інформація, яку потрібно розмістити в моделі (Ви можете залишити поле порожім або написати що завгодно).",
159
+ "View model information": "Перегляд інформації про модель",
160
+ "Introduce the model pth path": "Вкажіть шлях до pth файлу моделі",
161
+ "View": "Перегляд",
162
+ "Model extraction": "Видобування моделі",
163
+ "Model conversion": "Перетворення моделі",
164
+ "Pth file": "Pth файл",
165
+ "Output of the pth file": "Вихід pth файлу",
166
+
167
+ "# How to Report an Issue on GitHub": "# Як повідомити про проблему на GitHub",
168
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Натисніть кнопку «Записати екран» нижче, щоб почати запис проблеми, з якою ви зіткнулися.",
169
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Після того, як ви закінчите запис помилки, натисніть кнопку «Зупинити запис» (та сама кнопка, але мітка змінюється залежно від того, активно ви записуєте чи ні).",
170
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Перейдіть до [GitHub Issues](https://github.com/IAHispano/Applio/issues) і натисніть кнопку 'New Issue'.",
171
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Заповніть наданий шаблон про проблему, обов'язково включивши деталі за потреби, і скористайтеся розділом активів, щоб завантажити записаний файл з попереднього кроку.",
172
+
173
+ "Record Screen": "Записати екран",
174
+ "Record": "Запис",
175
+ "Stop Recording": "Зупинити запис екрану",
176
+
177
+ "Introduce the model .pth path": "Вкажіть шлях до .pth файлу моделі",
178
+ "See Model Information": "Перегляд інформації про модель",
179
+
180
+ "## Download Model": "Завантажити модель",
181
+ "Model Link": "Посилання на модель",
182
+ "Introduce the model link": "Введіть посилання на модель",
183
+ "Download Model": "Завантажити модель",
184
+ "## Drop files": "Додати модель",
185
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Перетягніть файл .pth і файл .index у цей простір. Перетягніть їх по черзі.",
186
+ "## Search Model": "Шукати модель",
187
+ "Search": "Пошук",
188
+ "Introduce the model name to search.": "Введіть назву моделі.",
189
+ "We couldn't find models by that name.": "Ми не знайшли ні одної моделі зі схожим ім'ям.",
190
+ "## Download Pretrained Models": "Завантажити підготовлену модель",
191
+ "Select the pretrained model you want to download.": "Виберіть попередньо навчену модель, яку ви хочете завантажити.",
192
+ "And select the sampling rate": "І виберіть частоту дискретизації.",
193
+
194
+ "TTS Voices": "Голоси TTS",
195
+ "TTS Speed": "Швидкість TTS",
196
+ "Increase or decrease TTS speed.": "Збільшити або зменшити швидкість синтезу мови.",
197
+ "Select the TTS voice to use for the conversion.": "Вибер��ть голос синтезу мови, який буде використано для перетворення.",
198
+ "Text to Synthesize": "Текст для синтезу",
199
+ "Enter the text to synthesize.": "Введіть текст для синтезу.",
200
+ "Or you can upload a .txt file": "Або ви можете завантажити файл .txt",
201
+ "Enter text to synthesize": "Введіть текст для синтезу",
202
+ "Output Path for TTS Audio": "Вихідний шлях для TTS аудіо файлу",
203
+ "Output Path for RVC Audio": "Вихідний шлях для RVC аудіо файлу",
204
+
205
+ "Enable Applio integration with Discord presence": "Увімкнути Applio інтеграцію з Discord активністю",
206
+ "It will activate the possibility of displaying the current Applio activity in Discord.": "Це активує можливість відображати поточну активність Applio в Discord.",
207
+ "Enable Applio integration with applio.org/models using flask": "Увімкнути інтеграцію Applio з applio.org/models за допомогою Flaskk",
208
+ "It will activate the possibility of downloading models with a click from the website.": "Це активує можливість завантаження моделей одним кліком з веб-сайту.",
209
+ "Enable fake GPU": "Увімкнути фальшивий GPU",
210
+ "Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option.": "Наразі навчання не доступне через відсутність графічного процесора. Щоб увімкнути тренування, перейдіть на вкладку налаштувань і увімкніть опцію «Фальшивий GPU».",
211
+ "Activates the train tab. However, please note that this device lacks GPU capabilities, hence training is not supported. This option is only for testing purposes. (This option will restart Applio)": "Активує вкладку тренування. Однак зауважте, що цей пристрій не має графічного процесора, тому тренування не підтримується. Ця опція призначена лише для тестування. (Ця опція перезапустить Applio)",
212
+ "Theme": "Теми",
213
+ "Select the theme you want to use. (Requires restarting Applio)": "Виберіть тему, яку хочете використовувати. (Потрібно перезапустити Applio)",
214
+ "Language": "Мова",
215
+ "Select the language you want to use. (Requires restarting Applio)": "Виберіть мову, яку ви хочете використовувати. (Потрібно перезапустити Applio)",
216
+
217
+ "Plugin Installer": "Інсталятор плагінів",
218
+ "Drag your plugin.zip to install it": "Перетягніть plugin.zip, щоб встановити його",
219
+
220
+ "Version Checker": "Перевірка Оновлень",
221
+ "Check which version of Applio is the latest to see if you need to update.": "Перевірте, яка версія Applio найновіша, щоб дізнатися, чи потрібно вам оновлюватися.",
222
+ "Check for updates": "Перевірити наявність оновлень",
223
+
224
+ "Export Format": "Формат експорту",
225
+ "Select the format to export the audio.": "Виберіть формат експорту аудіо.",
226
+
227
+ "Specify the number of GPUs you wish to utilize for training by entering them separated by hyphens (-).": "Вкажіть індекс графічних процесорів, які ви хочете використати для навчання, ввівши їх через дефіс (-). Наприклад: 0-1-3 ",
228
+ "The GPU information will be displayed here.": "Тут вказана інформація про графічні процесори (у форматі [Індекс:Інформація]).",
229
+ "Restart Applio": "Перезапустити Applio"
230
+
231
+ }