Spaces:
Running
Running
Eddycrack864
commited on
Upload 19 files
Browse files- assets/config.json +10 -0
- assets/i18n/i18n.py +52 -0
- assets/i18n/languages/en_US.json +70 -0
- assets/i18n/languages/es_ES.json +70 -0
- assets/i18n/languages/hi_IN.json +70 -0
- assets/i18n/languages/id_ID.json +70 -0
- assets/i18n/languages/it_IT.json +70 -0
- assets/i18n/languages/ja_JP.json +70 -0
- assets/i18n/languages/ko_KR.json +70 -0
- assets/i18n/languages/ms_MY.json +70 -0
- assets/i18n/languages/pt_BR.json +70 -0
- assets/i18n/languages/ru_RU.json +70 -0
- assets/i18n/languages/th_TH.json +70 -0
- assets/i18n/languages/tr_TR.json +70 -0
- assets/i18n/languages/uk_UA.json +70 -0
- assets/i18n/languages/zh_CN.json +70 -0
- assets/i18n/scan.py +64 -0
- assets/themes/loadThemes.py +119 -0
- assets/themes/themes_list.json +24 -0
assets/config.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"theme": {
|
3 |
+
"file": null,
|
4 |
+
"class": "NoCrypt/miku"
|
5 |
+
},
|
6 |
+
"lang": {
|
7 |
+
"override": false,
|
8 |
+
"selected_lang": "en_US"
|
9 |
+
}
|
10 |
+
}
|
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/en_US.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "Select the model",
|
5 |
+
"Select the output format": "Select the output format",
|
6 |
+
"Overlap": "Overlap",
|
7 |
+
"Amount of overlap between prediction windows": "Amount of overlap between prediction windows",
|
8 |
+
"Segment size": "Segment size",
|
9 |
+
"Larger consumes more resources, but may give better results": "Larger consumes more resources, but may give better results",
|
10 |
+
"Input audio": "Input audio",
|
11 |
+
"Separation by link": "Separation by link",
|
12 |
+
"Link": "Link",
|
13 |
+
"Paste the link here": "Paste the link here",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)",
|
15 |
+
"Download!": "Download!",
|
16 |
+
"Batch separation": "Batch separation",
|
17 |
+
"Input path": "Input path",
|
18 |
+
"Place the input path here": "Place the input path here",
|
19 |
+
"Output path": "Output path",
|
20 |
+
"Place the output path here": "Place the output path here",
|
21 |
+
"Separate!": "Separate!",
|
22 |
+
"Output information": "Output information",
|
23 |
+
"Stem 1": "Stem 1",
|
24 |
+
"Stem 2": "Stem 2",
|
25 |
+
"Denoise": "Denoise",
|
26 |
+
"Enable denoising during separation": "Enable denoising during separation",
|
27 |
+
"Window size": "Window size",
|
28 |
+
"Agression": "Agression",
|
29 |
+
"Intensity of primary stem extraction": "Intensity of primary stem extraction",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "Enable Test-Time-Augmentation; slow but improves quality",
|
32 |
+
"High end process": "High end process",
|
33 |
+
"Mirror the missing frequency range of the output": "Mirror the missing frequency range of the output",
|
34 |
+
"Shifts": "Shifts",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "Number of predictions with random shifts, higher = slower but better quality",
|
36 |
+
"Stem 3": "Stem 3",
|
37 |
+
"Stem 4": "Stem 4",
|
38 |
+
"Themes": "Themes",
|
39 |
+
"Theme": "Theme",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "Select the theme you want to use. (Requires restarting the App)",
|
41 |
+
"Credits": "Credits",
|
42 |
+
"Language": "Language",
|
43 |
+
"Advanced settings": "Advanced settings",
|
44 |
+
"Override model default segment size instead of using the model default value": "Override model default segment size instead of using the model default value",
|
45 |
+
"Override segment size": "Override segment size",
|
46 |
+
"Batch size": "Batch size",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "Larger consumes more RAM but may process slightly faster",
|
48 |
+
"Normalization threshold": "Normalization threshold",
|
49 |
+
"The threshold for audio normalization": "The threshold for audio normalization",
|
50 |
+
"Amplification threshold": "Amplification threshold",
|
51 |
+
"The threshold for audio amplification": "The threshold for audio amplification",
|
52 |
+
"Hop length": "Hop length",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "Usually called stride in neural networks; only change if you know what you're doing",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "Identify leftover artifacts within vocal output; may improve separation for some songs",
|
56 |
+
"Post process": "Post process",
|
57 |
+
"Post process threshold": "Post process threshold",
|
58 |
+
"Threshold for post-processing": "Threshold for post-processing",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "Size of segments into which the audio is split. Higher = slower but better quality",
|
60 |
+
"Enable segment-wise processing": "Enable segment-wise processing",
|
61 |
+
"Segment-wise processing": "Segment-wise processing",
|
62 |
+
"Stem 5": "Stem 5",
|
63 |
+
"Stem 6": "Stem 6",
|
64 |
+
"Output only single stem": "Output only single stem",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental",
|
66 |
+
"Leaderboard": "Leaderboard",
|
67 |
+
"List filter": "List filter",
|
68 |
+
"Filter and sort the model list by stem": "Filter and sort the model list by stem",
|
69 |
+
"Show list!": "Show list!"
|
70 |
+
}
|
assets/i18n/languages/es_ES.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "Si te gusta UVR5 UI puedes darle una estrella a mi repo en [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "Prueba UVR5 UI en Hugging Face con una A100 [aquí](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "Selecciona el modelo",
|
5 |
+
"Select the output format": "Selecciona el formato de salida",
|
6 |
+
"Overlap": "Superposición",
|
7 |
+
"Amount of overlap between prediction windows": "Cantidad de superposición entre ventanas de predicción",
|
8 |
+
"Segment size": "Tamaño del segmento",
|
9 |
+
"Larger consumes more resources, but may give better results": "Un tamaño más grande consume más recursos, pero puede dar mejores resultados",
|
10 |
+
"Input audio": "Audio de entrada",
|
11 |
+
"Separation by link": "Separación por link",
|
12 |
+
"Link": "Link",
|
13 |
+
"Paste the link here": "Pega el link aquí",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "Puedes pegar el enlace al video/audio desde muchos sitios, revisa la lista completa [aquí](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)",
|
15 |
+
"Download!": "Descargar!",
|
16 |
+
"Batch separation": "Separación por lotes",
|
17 |
+
"Input path": "Ruta de entrada",
|
18 |
+
"Place the input path here": "Coloca la ruta de entrada aquí",
|
19 |
+
"Output path": "Ruta de salida",
|
20 |
+
"Place the output path here": "Coloca la ruta de salida aquí",
|
21 |
+
"Separate!": "Separar!",
|
22 |
+
"Output information": "Información de la salida",
|
23 |
+
"Stem 1": "Pista 1",
|
24 |
+
"Stem 2": "Pista 2",
|
25 |
+
"Denoise": "Eliminación de ruido",
|
26 |
+
"Enable denoising during separation": "Habilitar la eliminación de ruido durante la separación",
|
27 |
+
"Window size": "Tamaño de la ventana",
|
28 |
+
"Agression": "Agresión",
|
29 |
+
"Intensity of primary stem extraction": "Intensidad de extracción de la pista primaria",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "Habilitar Aumento del Tiempo de Prueba; lento pero mejora la calidad",
|
32 |
+
"High end process": "Procesamiento de alto rendimiento",
|
33 |
+
"Mirror the missing frequency range of the output": "Reflejar el rango de frecuencia faltante de la salida",
|
34 |
+
"Shifts": "Desplazamientos temporales",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "Número de predicciones con desplazamientos temporales, mayor = más lento pero mejor calidad",
|
36 |
+
"Stem 3": "Pista 3",
|
37 |
+
"Stem 4": "Pista 4",
|
38 |
+
"Themes": "Temas",
|
39 |
+
"Theme": "Tema",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "Selecciona el tema que deseas utilizar. (Requiere reiniciar la aplicación)",
|
41 |
+
"Credits": "Créditos",
|
42 |
+
"Language": "Idioma",
|
43 |
+
"Advanced settings": "Configuración avanzada",
|
44 |
+
"Override model default segment size instead of using the model default value": "Anular el tamaño del segmento predeterminado del modelo en lugar de usar el valor predeterminado del modelo",
|
45 |
+
"Override segment size": "Anular tamaño del segmento",
|
46 |
+
"Batch size": "Tamaño del lote",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "Más grande consume más RAM pero puede procesar un poco más rápido",
|
48 |
+
"Normalization threshold": "Umbral de normalización",
|
49 |
+
"The threshold for audio normalization": "El umbral para la normalización del audio",
|
50 |
+
"Amplification threshold": "Umbral de amplificación",
|
51 |
+
"The threshold for audio amplification": "El umbral para la amplificación de audio",
|
52 |
+
"Hop length": "Longitud del salto",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing" : "Generalmente llamado paso en redes neuronales; solo cambialo si sabes lo que estás haciendo",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "Equilibra la calidad y la velocidad. 1024 = más rápido pero de menor calidad, 320 = más lento pero de mejor calidad",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "Identifica artefactos sobrantes en la salida vocal; puede mejorar la separación de algunas canciones",
|
56 |
+
"Post process": "Posproceso",
|
57 |
+
"Post process threshold": "Umbral de posproceso",
|
58 |
+
"Threshold for post-processing": "Umbral para el posprocesamiento",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "Tamaño de los segmentos en los que se divide el audio. Más alto = más lento pero de mejor calidad",
|
60 |
+
"Enable segment-wise processing": "Habilitar el procesamiento por segmentos",
|
61 |
+
"Segment-wise processing": "Procesamiento por segmentos",
|
62 |
+
"Stem 5": "Pista 5",
|
63 |
+
"Stem 6": "Pista 6",
|
64 |
+
"Output only single stem": "Salida de única pista",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "Escribe la pista que quieres, consulta las pistas de cada modelo en la tabla de clasificación. Por ejemplo, Instrumental",
|
66 |
+
"Leaderboard": "Tabla de clasificación",
|
67 |
+
"List filter": "Lista de filtros",
|
68 |
+
"Filter and sort the model list by stem": "Filtra y ordena la lista de modelos por pista",
|
69 |
+
"Show list!": "Mostrar lista!"
|
70 |
+
}
|
assets/i18n/languages/hi_IN.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "यदि आपको UVR5 UI पसंद है तो आप मेरे GitHub रेपो को स्टार कर सकते हैं [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "UVR5 UI को A100 के साथ Hugging Face पर [यहाँ](https://huggingface.co/spaces/TheStinger/UVR5_UI) आज़माएं",
|
4 |
+
"Select the model": "मॉडल चुनें",
|
5 |
+
"Select the output format": "आउटपुट फॉर्मेट चुनें",
|
6 |
+
"Overlap": "ओवरलैप",
|
7 |
+
"Amount of overlap between prediction windows": "पूर्वानुमान विंडोज़ के बीच ओवरलैप की मात्रा",
|
8 |
+
"Segment size": "सेगमेंट साइज़",
|
9 |
+
"Larger consumes more resources, but may give better results": "बड़ा साइज़ अधिक संसाधन खपत करता है, लेकिन बेहतर परिणाम दे सकता है",
|
10 |
+
"Input audio": "इनपुट ऑडियो",
|
11 |
+
"Separation by link": "लिंक द्वारा अलगाव",
|
12 |
+
"Link": "लिंक",
|
13 |
+
"Paste the link here": "लिंक यहाँ पेस्ट करें",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "आप कई साइटों से वीडियो/ऑडियो का लिंक पेस्ट कर सकते हैं, पूरी सूची [यहाँ](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md) देखें",
|
15 |
+
"Download!": "डाउनलोड करें!",
|
16 |
+
"Batch separation": "बैच अलगाव",
|
17 |
+
"Input path": "इनपुट पाथ",
|
18 |
+
"Place the input path here": "इनपुट पाथ यहाँ डालें",
|
19 |
+
"Output path": "आउटपुट पाथ",
|
20 |
+
"Place the output path here": "आउटपुट पाथ यहाँ डालें",
|
21 |
+
"Separate!": "अलग करें!",
|
22 |
+
"Output information": "आउटपुट जानकारी",
|
23 |
+
"Stem 1": "स्टेम 1",
|
24 |
+
"Stem 2": "स्टेम 2",
|
25 |
+
"Denoise": "डीनॉइज़",
|
26 |
+
"Enable denoising during separation": "अलगाव के दौरान डीनॉइज़िंग सक्षम करें",
|
27 |
+
"Window size": "विंडो साइज़",
|
28 |
+
"Agression": "आक्रामकता",
|
29 |
+
"Intensity of primary stem extraction": "प्राथमिक स्टेम निष्कर्षण की तीव्रता",
|
30 |
+
"TTA": "टीटीए",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "टेस्ट-टाइम-ऑगमेंटेशन सक्षम करें; धीमा लेकिन गुणवत्ता में सुधार करता है",
|
32 |
+
"High end process": "उच्च स्तरीय प्रक्रिया",
|
33 |
+
"Mirror the missing frequency range of the output": "आउटपुट की गायब फ्रीक्वेंसी रेंज को मिरर करें",
|
34 |
+
"Shifts": "शिफ्ट्स",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "रैंडम शिफ्ट्स के साथ पूर्वानुमानों की संख्या, अधिक = धीमा लेकिन बेहतर गुणवत्ता",
|
36 |
+
"Stem 3": "स्टेम 3",
|
37 |
+
"Stem 4": "स्टेम 4",
|
38 |
+
"Themes": "थीम्स",
|
39 |
+
"Theme": "थीम",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "वह थीम चुनें जिसका आप उपयोग करना चाहते हैं। (ऐप को पुनः प्रारंभ करना आवश्यक है)",
|
41 |
+
"Credits": "क्रेडिट्स",
|
42 |
+
"Language": "भाषा",
|
43 |
+
"Advanced settings": "उन्नत सेटिंग्स",
|
44 |
+
"Override model default segment size instead of using the model default value": "मॉडल के डिफ़ॉल्ट सेगमेंट आकार का उपयोग करने के बजाय उसे ओवरराइड करें",
|
45 |
+
"Override segment size": "सेगमेंट आकार ओवरराइड करें",
|
46 |
+
"Batch size": "बैच आकार",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "बड़ा आकार अधिक RAM का उपयोग करता है लेकिन थोड़ी तेज़ी से प्रोसेस कर सकता है",
|
48 |
+
"Normalization threshold": "नॉर्मलाइज़ेशन थ्रेशोल्ड",
|
49 |
+
"The threshold for audio normalization": "ऑडियो नॉर्मलाइज़ेशन के लिए थ्रेशोल्ड",
|
50 |
+
"Amplification threshold": "एम्पलीफिकेशन थ्रेशोल्ड",
|
51 |
+
"The threshold for audio amplification": "ऑडियो एम्पलीफिकेशन के लिए थ्रेशोल्ड",
|
52 |
+
"Hop length": "हॉप लंबाई",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "आमतौर पर तंत्रिका नेटवर्क में स्ट्राइड कहा जाता है; केवल तभी बदलें जब आप जानते हों कि आप क्या कर रहे हैं",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "गुणवत्ता और गति को संतुलित करें। 1024 = तेज़ लेकिन कम, 320 = धीमा लेकिन बेहतर गुणवत्ता",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "वोकल आउटपुट के भीतर बचे हुए कलाकृतियों की पहचान करें; कुछ गानों के लिए पृथक्करण में सुधार हो सकता है",
|
56 |
+
"Post process": "पोस्ट प्रोसेस",
|
57 |
+
"Post process threshold": "पोस्ट प्रोसेस थ्रेशोल्ड",
|
58 |
+
"Threshold for post-processing": "पोस्ट-प्रोसेसिंग के लिए थ्रेशोल्ड",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "सेगमेंट का आकार जिसमें ऑडियो विभाजित है। उच्च = धीमा लेकिन बेहतर गुणवत्ता",
|
60 |
+
"Enable segment-wise processing": "सेगमेंट-वार प्रोसेसिंग सक्षम करें",
|
61 |
+
"Segment-wise processing": "सेगमेंट-वार प्रोसेसिंग",
|
62 |
+
"Stem 5": "स्टेम ५",
|
63 |
+
"Stem 6": "स्टेम ६",
|
64 |
+
"Output only single stem": "केवल एकल स्टेम आउटपुट करें",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "आप जो स्टेम चाहते हैं उसे लिखें, लीडरबोर्ड पर प्रत्येक मॉडल के स्टेम की जांच करें। उदाहरण के लिए Instrumental",
|
66 |
+
"Leaderboard": "लीडरबोर्ड",
|
67 |
+
"List filter": "सूची फ़िल्टर",
|
68 |
+
"Filter and sort the model list by stem": "स्टेम द्वारा मॉडल सूची को फ़िल्टर और सॉर्ट करें",
|
69 |
+
"Show list!": "सूची दिखाएं!"
|
70 |
+
}
|
assets/i18n/languages/id_ID.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "Jika Anda suka UI UVR5, Anda dapat memberikan bintang pada repo saya di [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "Coba UVR5 UI di Hugging Face dengan A100 [di sini](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "Pilih model",
|
5 |
+
"Select the output format": "Pilih format output",
|
6 |
+
"Overlap": "Tumpang tindih",
|
7 |
+
"Amount of overlap between prediction windows": "Jumlah tumpang tindih antara jendela prediksi",
|
8 |
+
"Segment size": "Ukuran segmen",
|
9 |
+
"Larger consumes more resources, but may give better results": "Lebih besar menggunakan lebih banyak sumber daya, tetapi dapat memberikan hasil yang lebih baik",
|
10 |
+
"Input audio": "Input audio",
|
11 |
+
"Separation by link": "Pemisahan berdasarkan tautan",
|
12 |
+
"Link": "Tautan",
|
13 |
+
"Paste the link here": "Tempel tautan di sini",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "Anda dapat menempelkan tautan ke video/audio dari banyak situs, lihat daftar lengkap [di sini](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)",
|
15 |
+
"Download!": "Unduh!",
|
16 |
+
"Batch separation": "Pemisahan batch",
|
17 |
+
"Input path": "Jalur input",
|
18 |
+
"Place the input path here": "Letakkan jalur input di sini",
|
19 |
+
"Output path": "Jalur output",
|
20 |
+
"Place the output path here": "Tempatkan jalur output di sini",
|
21 |
+
"Separate!": "Pisahkan!",
|
22 |
+
"Output information": "Informasi output",
|
23 |
+
"Stem 1": "Stem 1",
|
24 |
+
"Stem 2": "Stem 2",
|
25 |
+
"Denoise": "Mengurangi kebisingan",
|
26 |
+
"Enable denoising during separation": "Aktifkan pengurangan kebisingan selama pemisahan",
|
27 |
+
"Window size": "Ukuran jendela",
|
28 |
+
"Agression": "Agresi",
|
29 |
+
"Intensity of primary stem extraction": "Intensitas ekstraksi batang primer",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "Aktifkan Augmentasi Saat Uji; lambat tetapi meningkatkan kualitas",
|
32 |
+
"High end process": "Proses Kelas Atas",
|
33 |
+
"Mirror the missing frequency range of the output": "Cerminkan rentang frekuensi yang hilang dari output",
|
34 |
+
"Shifts": "Pergeseran",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "Jumlah prediksi dengan pergeseran acak, lebih tinggi = lebih lambat tetapi kualitas lebih baik",
|
36 |
+
"Stem 3": "Stem 3",
|
37 |
+
"Stem 4": "Stem 4",
|
38 |
+
"Themes": "Tema",
|
39 |
+
"Theme": "Tema",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "Pilih tema yang ingin Anda gunakan. (Membutuhkan restart Aplikasi)",
|
41 |
+
"Credits": "Kredits",
|
42 |
+
"Language": "Bahasa",
|
43 |
+
"Advanced settings": "Pengaturan lanjutan",
|
44 |
+
"Override model default segment size instead of using the model default value": "Ganti ukuran segmen default model alih-alih menggunakan nilai default model",
|
45 |
+
"Override segment size": "Ganti ukuran segmen",
|
46 |
+
"Batch size": "Ukuran batch",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "Lebih besar mengkonsumsi lebih banyak RAM tetapi mungkin memproses sedikit lebih cepat",
|
48 |
+
"Normalization threshold": "Ambang normalisasi",
|
49 |
+
"The threshold for audio normalization": "Ambang batas untuk normalisasi audio",
|
50 |
+
"Amplification threshold": "Ambang amplifikasi",
|
51 |
+
"The threshold for audio amplification": "Ambang batas untuk amplifikasi audio",
|
52 |
+
"Hop length": "Panjang hop",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "Biasanya disebut langkah dalam jaringan saraf; hanya berubah jika anda tahu apa yang Anda lakukan",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "Seimbangkan kualitas dan kecepatan. 1024 = cepat tapi lebih rendah, 320 = lebih lambat tapi kualitasnya lebih baik",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "Identifikasi artefak sisa dalam keluaran vokal; dapat meningkatkan pemisahan untuk beberapa lagu",
|
56 |
+
"Post process": "Proses pasca",
|
57 |
+
"Post process threshold": "Ambang batas pasca proses",
|
58 |
+
"Threshold for post-processing": "Ambang batas untuk pasca-pemrosesan",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "Ukuran segmen tempat audio dibagi. Lebih tinggi = lebih lambat tetapi kualitasnya lebih baik",
|
60 |
+
"Enable segment-wise processing": "Aktifkan pemrosesan berdasarkan segmen",
|
61 |
+
"Segment-wise processing": "Pemrosesan berdasarkan segmen",
|
62 |
+
"Stem 5": "Stem 5",
|
63 |
+
"Stem 6": "Stem 6",
|
64 |
+
"Output only single stem": "Output hanya satu stem",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "Tulis stem yang Anda inginkan, periksa stem dari setiap model di Papan Peringkat. misalnya. Instrumental",
|
66 |
+
"Leaderboard": "Papan Peringkat",
|
67 |
+
"List filter": "Filter daftar",
|
68 |
+
"Filter and sort the model list by stem": "Filter dan urutkan daftar model berdasarkan stem",
|
69 |
+
"Show list!": "Tampilkan daftar!"
|
70 |
+
}
|
assets/i18n/languages/it_IT.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "Se ti piace UVR5 UI puoi aggiungere una stella al mio repository su [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "Prova UVR5 UI su Hugging Face con A100 [qui](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "Seleziona il modello",
|
5 |
+
"Select the output format": "Seleziona il formato di output",
|
6 |
+
"Overlap": "Sovrapposizione",
|
7 |
+
"Amount of overlap between prediction windows": "Quantità di sovrapposizione tra le finestre di predizione",
|
8 |
+
"Segment size": "Dimensione del segmento",
|
9 |
+
"Larger consumes more resources, but may give better results": "Dimensioni maggiori consumano più risorse, ma potrebbero dare risultati migliori",
|
10 |
+
"Input audio": "Audio di input",
|
11 |
+
"Separation by link": "Separazione tramite link",
|
12 |
+
"Link": "Link",
|
13 |
+
"Paste the link here": "Incolla il link qui",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "Puoi incollare il link al video/audio da molti siti, controlla la lista completa [qui](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)",
|
15 |
+
"Download!": "Scarica!",
|
16 |
+
"Batch separation": "Separazione in batch",
|
17 |
+
"Input path": "Percorso di input",
|
18 |
+
"Place the input path here": "Inserisci il percorso di input qui",
|
19 |
+
"Output path": "Percorso di output",
|
20 |
+
"Place the output path here": "Inserisci il percorso di output qui",
|
21 |
+
"Separate!": "Separa!",
|
22 |
+
"Output information": "Informazioni di output",
|
23 |
+
"Stem 1": "Traccia 1",
|
24 |
+
"Stem 2": "Traccia 2",
|
25 |
+
"Denoise": "Riduzione del rumore",
|
26 |
+
"Enable denoising during separation": "Abilita la riduzione del rumore durante la separazione",
|
27 |
+
"Window size": "Dimensione della finestra",
|
28 |
+
"Agression": "Aggressività",
|
29 |
+
"Intensity of primary stem extraction": "Intensità dell'estrazione della traccia primaria",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "Abilita l'Aumento del Tempo di Prova; lento ma migliora la qualità",
|
32 |
+
"High end process": "Elaborazione ad alte prestazion",
|
33 |
+
"Mirror the missing frequency range of the output": "Rifletti l'intervallo di frequenze mancante dell'output",
|
34 |
+
"Shifts": "Spostamenti",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "Numero di predizioni con spostamenti casuali, maggiore = più lento ma qualità migliore",
|
36 |
+
"Stem 3": "Traccia 3",
|
37 |
+
"Stem 4": "Traccia 4",
|
38 |
+
"Themes": "Temi",
|
39 |
+
"Theme": "Tema",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "Seleziona il tema che desideri utilizzare. (Richiede il riavvio dell'app)",
|
41 |
+
"Credits": "Crediti",
|
42 |
+
"Language": "Lingua",
|
43 |
+
"Advanced settings": "Impostazioni avanzate",
|
44 |
+
"Override model default segment size instead of using the model default value": "Sovrascrivi la dimensione di segmento predefinita del modello invece di utilizzare il valore predefinito del modello",
|
45 |
+
"Override segment size": "Ignora dimensione segmento",
|
46 |
+
"Batch size": "Dimensione del batch",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "Più grande consuma più RAM ma potrebbe elaborare leggermente più velocemente",
|
48 |
+
"Normalization threshold": "Soglia di normalizzazione",
|
49 |
+
"The threshold for audio normalization": "La soglia per la normalizzazione dell'audio",
|
50 |
+
"Amplification threshold": "Soglia di amplificazione",
|
51 |
+
"The threshold for audio amplification": "La soglia per l'amplificazione dell'audio",
|
52 |
+
"Hop length": "Lunghezza del salto",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "Solitamente chiamato passo nelle reti neurali; cambialo solo se sai cosa stai facendo",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "Bilancia la qualità e la velocità. 1024 = veloce ma inferiore, 320 = più lento ma migliore qualità",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "Identifica gli artefatti residui nell'output vocale; potrebbe migliorare la separazione per alcune canzoni",
|
56 |
+
"Post process": "Post-elaborazione",
|
57 |
+
"Post process threshold": "Soglia di post-elaborazione",
|
58 |
+
"Threshold for post-processing": "Soglia per la post-elaborazione",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "Dimensione dei segmenti in cui l'audio è diviso. Più alto = più lento ma migliore qualità",
|
60 |
+
"Enable segment-wise processing": "Abilita l'elaborazione per segmenti",
|
61 |
+
"Segment-wise processing": "Elaborazione per segmenti",
|
62 |
+
"Stem 5": "Traccia 5",
|
63 |
+
"Stem 6": "Traccia 6",
|
64 |
+
"Output only single stem": "Visualizza solo la traccia singola",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "Scrivi la traccia che desideri, controlla le tracce di ciascun modello nella classifica. Ad esempio, Instrumental",
|
66 |
+
"Leaderboard": "Classifica",
|
67 |
+
"List filter": "Elenco filtri",
|
68 |
+
"Filter and sort the model list by stem": "Filtra e ordina l'elenco dei modelli per traccia",
|
69 |
+
"Show list!": "Mostra elenco!"
|
70 |
+
}
|
assets/i18n/languages/ja_JP.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "UVR5 UIが気に入ったら、私の[GitHub](https://github.com/Eddycrack864/UVR5-UI)リポジトリにスターを付けてください",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "A100搭載の Hugging Face で UVR5 UI を試してみる [ここ](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "モデルを選択",
|
5 |
+
"Select the output format": "出力形式を選択",
|
6 |
+
"Overlap": "重複",
|
7 |
+
"Amount of overlap between prediction windows": "予測ウィンドウ間の重複量",
|
8 |
+
"Segment size": "セグメントサイズ",
|
9 |
+
"Larger consumes more resources, but may give better results": "大きいほどリソースを消費しますが、より良い結果が得られる可能性がある",
|
10 |
+
"Input audio": "入力オーディオ",
|
11 |
+
"Separation by link": "リンクによる分離",
|
12 |
+
"Link": "リンク",
|
13 |
+
"Paste the link here": "ここにリンクを貼り付け",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "ビデオ/オーディオへのリンクをさまざまなサイトから貼り付けることができる。完全なリストは [ここ](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md) で確認して",
|
15 |
+
"Download!": "ダウンロード!",
|
16 |
+
"Batch separation": "バッチ分離",
|
17 |
+
"Input path": "入力パス",
|
18 |
+
"Place the input path here": "入力パスをここに配置する",
|
19 |
+
"Output path": "出力パス",
|
20 |
+
"Place the output path here": "出力パスをここに配置する",
|
21 |
+
"Separate!": "分離!",
|
22 |
+
"Output information": "出力情報",
|
23 |
+
"Stem 1": "ステム 1",
|
24 |
+
"Stem 2": "ステム 2",
|
25 |
+
"Denoise": "ノイズ除去",
|
26 |
+
"Enable denoising during separation": "分離中にノイズ除去を有効にする",
|
27 |
+
"Window size": "ウィンドウサイズ",
|
28 |
+
"Agression": "アグレッシブネス",
|
29 |
+
"Intensity of primary stem extraction": "プライマリステム抽出の強度",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "テスト時データ拡張を有効にする; 遅いですが品質が向上する",
|
32 |
+
"High end process": "ハイエンドプロセス",
|
33 |
+
"Mirror the missing frequency range of the output": "出力の欠落した周波数範囲をミラーリングする",
|
34 |
+
"Shifts": "シフト",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "ランダムシフトによる予測の数、高いほど遅いが品質が向上する",
|
36 |
+
"Stem 3": "ステム 3",
|
37 |
+
"Stem 4": "ステム 4",
|
38 |
+
"Themes": "テーマ",
|
39 |
+
"Theme": "テーマ",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "使用したいテーマを選択して。(アプリの再起動が必要です)",
|
41 |
+
"Credits": "クレジット",
|
42 |
+
"Language": "言語",
|
43 |
+
"Advanced settings": "詳細設定",
|
44 |
+
"Override model default segment size instead of using the model default value": "モデルのデフォルト値を使用する代わりに、モデルのデフォルトのセグメント サイズを上書きする",
|
45 |
+
"Override segment size": "セグメントサイズを上書きする",
|
46 |
+
"Batch size": "バッチサイズ",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "大きいほどRAMの消費量は多くなりますが、処理速度が若干速くなる",
|
48 |
+
"Normalization threshold": "正規化しきい値",
|
49 |
+
"The threshold for audio normalization": "オーディオ正規化の閾値",
|
50 |
+
"Amplification threshold": "増幅閾値",
|
51 |
+
"The threshold for audio amplification": "オーディオ増幅の閾値",
|
52 |
+
"Hop length": "ホップ長",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "ニューラル ネットワークでは通常、ストライドと呼ばれます。何をしているのかわかっている場合にのみ変更してください",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "品質と速度のバランスをとる。1024 = 高速だが低速、320 = 低速だが高品質",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "ボーカル出力内の残留アーティファクトを識別します。一部の曲では分離が改善される可能性がある",
|
56 |
+
"Post process": "ポストプロセス",
|
57 |
+
"Post process threshold": "ポストプロセスしきい値",
|
58 |
+
"Threshold for post-processing": "後処理のしきい値",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "オーディオを分割するセグメントのサイズ。大きいほど遅くなりますが、品質は向上する",
|
60 |
+
"Enable segment-wise processing": "セグメントごとの処理を有効にする",
|
61 |
+
"Segment-wise processing": "セグメントごとの処理",
|
62 |
+
"Stem 5": "ステム 5",
|
63 |
+
"Stem 6": "ステム 6",
|
64 |
+
"Output only single stem": "1つのステムのみを出力",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "望むステムを書き込み、リーダーボードの各モデルのステムを確認してください。例 Instrumental",
|
66 |
+
"Leaderboard": "リーダーボード",
|
67 |
+
"List filter": "リストフィルタ",
|
68 |
+
"Filter and sort the model list by stem": "ステムでモデルリストをフィルタおよびソート",
|
69 |
+
"Show list!": "リストを表示!"
|
70 |
+
}
|
assets/i18n/languages/ko_KR.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "UVR5 UI가 마음에 드신다면 [GitHub](https://github.com/Eddycrack864/UVR5-UI)에서 제 리포지토리에 별을 추가해 주세요",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "Hugging Face에서 A100으로 구동되는 UVR5 UI를 사용해 보세요 [이곳](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "모델 선택",
|
5 |
+
"Select the output format": "출력 형식 선택",
|
6 |
+
"Overlap": "오버랩",
|
7 |
+
"Amount of overlap between prediction windows": "예측 기간 간의 오버랩 정도",
|
8 |
+
"Segment size": "세그먼트 크기",
|
9 |
+
"Larger consumes more resources, but may give better results": "크기가 클수록 더 많은 리소스가 소모되지만, 더 나은 결과를 얻을 수 있습니다",
|
10 |
+
"Input audio": "오디오 입력",
|
11 |
+
"Separation by link": "링크로 분리하기",
|
12 |
+
"Link": "링크",
|
13 |
+
"Paste the link here": "링크를 여기에 붙여 넣으세요",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "여러 사이트의 비디오/오디오 링크를 붙여 넣을 수 있습니다. 지원되는 사이트 목록은 [이곳](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)에서 확인하세요",
|
15 |
+
"Download!": "다운로드!",
|
16 |
+
"Batch separation": "일괄 분리",
|
17 |
+
"Input path": "입력 경로",
|
18 |
+
"Place the input path here": "입력 경로를 여기에 입력하세요",
|
19 |
+
"Output path": "출력 경로",
|
20 |
+
"Place the output path here": "출력 경로를 여기에 입력하세요",
|
21 |
+
"Separate!": "분리하기!",
|
22 |
+
"Output information": "출력 정보",
|
23 |
+
"Stem 1": "스템 1",
|
24 |
+
"Stem 2": "스템 2",
|
25 |
+
"Denoise": "디노이즈",
|
26 |
+
"Enable denoising during separation": "분리 중 노이즈 제거 활성화",
|
27 |
+
"Window size": "윈도우 크기",
|
28 |
+
"Agression": "추출 강도",
|
29 |
+
"Intensity of primary stem extraction": "주요 스템 추출 강도",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "테스트 시간 증강 활성화; 느리지만 품질이 향상됩니다",
|
32 |
+
"High end process": "고급 처리",
|
33 |
+
"Mirror the missing frequency range of the output": "출력의 누락된 주파수 범위를 보정합니다",
|
34 |
+
"Shifts": "시프트",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "랜덤 시프트 사용 예측 횟수; 높을수록 느리지만 품질 향상",
|
36 |
+
"Stem 3": "스템 3",
|
37 |
+
"Stem 4": "스템 4",
|
38 |
+
"Themes": "테마 목록",
|
39 |
+
"Theme": "테마 선택",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "사용할 테마를 선택하세요. (앱 재시작 필요)",
|
41 |
+
"Credits": "크레딧",
|
42 |
+
"Language": "언어",
|
43 |
+
"Advanced settings": "고급 설정",
|
44 |
+
"Override model default segment size instead of using the model default value": "모델 기본값 대신 세그먼트 크기를 재정의합니다.",
|
45 |
+
"Override segment size": "세그먼트 크기 재정의",
|
46 |
+
"Batch size": "배치 크기",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "값이 클수록 RAM 사용량이 증가하지만 처리 속도가 빨라질 수 있습니다.",
|
48 |
+
"Normalization threshold": "정규화 임계값",
|
49 |
+
"The threshold for audio normalization": "오디오 정규화의 기준 값입니다.",
|
50 |
+
"Amplification threshold": "증폭 임계값",
|
51 |
+
"The threshold for audio amplification": "오디오 증폭의 기준 값입니다.",
|
52 |
+
"Hop length": "홉 길이",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "신경망에서는 보통 보폭(stride)이라고 하며, 이 설정을 정확히 이해한 경우에만 변경하세요.",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "품질과 속도의 균형을 조정합니다. 1024는 빠르지만 품질이 낮고, 320은 느리지만 품질이 더 우수합니다.",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "보컬 출력에 남은 아티팩트를 식별하여 일부 곡에서 분리 품질을 향상시킬 수 있습니다.",
|
56 |
+
"Post process": "후처리",
|
57 |
+
"Post process threshold": "후처리 임계값",
|
58 |
+
"Threshold for post-processing": "후처리의 기준 값입니다.",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "오디오를 분할하는 세그먼트 크기입니다. 값이 클수록 처리 속도는 느려지지만 품질이 향상됩니다.",
|
60 |
+
"Enable segment-wise processing": "세그먼트별 처리 활성화",
|
61 |
+
"Segment-wise processing": "세그먼트별 처리",
|
62 |
+
"Stem 5": "스템 5",
|
63 |
+
"Stem 6": "스��� 6",
|
64 |
+
"Output only single stem": "단일 스템만 출력",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "원하는 스템을 작성하고 리더보드에서 각 모델의 스템을 확인하세요. 예 Instrumental",
|
66 |
+
"Leaderboard": "리더보드",
|
67 |
+
"List filter": "목록 필터",
|
68 |
+
"Filter and sort the model list by stem": "스템 으로 모델 목록을 필터링하고 정렬합니다",
|
69 |
+
"Show list!": "목록 표시!"
|
70 |
+
}
|
assets/i18n/languages/ms_MY.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "Jika anda suka UI UVR5, anda boleh bintang repositori saya di [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "Cuba UI UVR5 pada Memeluk Wajah dengan A100 [di sini](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "Pilih model",
|
5 |
+
"Select the output format": "Pilih format output",
|
6 |
+
"Overlap": "Pertindihan",
|
7 |
+
"Amount of overlap between prediction windows": "Jumlah pertindihan antara tetingkap ramalan",
|
8 |
+
"Segment size": "Saiz segmen",
|
9 |
+
"Larger consumes more resources, but may give better results": "Saiz besar menggunakan lebih banyak sumber, tetapi mungkin memberikan hasil yang lebih baik",
|
10 |
+
"Input audio": "Input audio",
|
11 |
+
"Separation by link": "Pemisahan mengikut pautan",
|
12 |
+
"Link": "Pautan",
|
13 |
+
"Paste the link here": "Tampal pautan di sini",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "Anda boleh tampal pautan ke video/audio dari banyak laman, semak senarai lengkap [di sini](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)",
|
15 |
+
"Download!": "Muat turun!",
|
16 |
+
"Batch separation": "Pemisahan kelompok",
|
17 |
+
"Input path": "Laluan input",
|
18 |
+
"Place the input path here": "Letakkan laluan input di sini",
|
19 |
+
"Output path": "Laluan output",
|
20 |
+
"Place the output path here": "Letakkan laluan output di sini",
|
21 |
+
"Separate!": "Pisahkan!",
|
22 |
+
"Output information": "Maklumat output",
|
23 |
+
"Stem 1": "Lapis 1",
|
24 |
+
"Stem 2": "Lapis 2",
|
25 |
+
"Denoise": "Nyahbunyi",
|
26 |
+
"Enable denoising during separation": "Aktifkan nyahbunyi semasa pemisahan",
|
27 |
+
"Window size": "Saiz tetingkap",
|
28 |
+
"Agression": "Kekasaran",
|
29 |
+
"Intensity of primary stem extraction": "Intensiti pengekstrakan lapis utama",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "Aktifkan Augmentasi Ujian Masa; perlahan tetapi meningkatkan kualiti",
|
32 |
+
"High end process": "Proses hujung tinggi",
|
33 |
+
"Mirror the missing frequency range of the output": "Cerminkan julat frekuensi yang hilang pada output",
|
34 |
+
"Shifts": "Peralihan",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "Bilangan ramalan dengan peralihan rawak, lebih tinggi = lebih perlahan tetapi kualiti lebih baik",
|
36 |
+
"Stem 3": "Lapis 3",
|
37 |
+
"Stem 4": "Lapis 4",
|
38 |
+
"Themes": "Tema",
|
39 |
+
"Theme": "Tema",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "Pilih tema yang anda mahu gunakan. (Perlu mulakan semula Aplikasi)",
|
41 |
+
"Credits": "Kredit",
|
42 |
+
"Language": "Bahasa",
|
43 |
+
"Advanced settings": "Tetapan lanjutan",
|
44 |
+
"Override model default segment size instead of using the model default value": "Gantikan saiz segmen lalai model daripada menggunakan nilai lalai model",
|
45 |
+
"Override segment size": "Gantikan saiz segmen",
|
46 |
+
"Batch size": "Saiz Batch",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "Saiz lebih besar menggunakan lebih banyak RAM tetapi mungkin memproses dengan lebih cepat",
|
48 |
+
"Normalization threshold": "Ambang normalisasi",
|
49 |
+
"The threshold for audio normalization": "Ambang untuk normalisasi audio",
|
50 |
+
"Amplification threshold": "Ambang amplifikasi",
|
51 |
+
"The threshold for audio amplification": "Ambang untuk amplifikasi audio",
|
52 |
+
"Hop length": "Panjang Hop",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "Biasanya dipanggil langkah dalam rangkaian neural; hanya ubah jika anda tahu apa yang anda lakukan",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "Imbangkan kualiti dan kelajuan. 1024 = cepat tetapi lebih rendah, 320 = lebih perlahan tetapi kualiti lebih baik",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "Kenalpasti artifak sisa dalam keluaran vokal; boleh meningkatkan pemisahan untuk sesetengah lagu",
|
56 |
+
"Post process": "Proses pasca",
|
57 |
+
"Post process threshold": "Ambang proses pasca",
|
58 |
+
"Threshold for post-processing": "Ambang untuk pemprosesan pasca",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "Saiz segmen di mana audio dipecahkan. Lebih besar = lebih perlahan tetapi kualiti lebih baik",
|
60 |
+
"Enable segment-wise processing": "Aktifkan pemprosesan mengikut segmen",
|
61 |
+
"Segment-wise processing": "Pemprosesan mengikut segmen",
|
62 |
+
"Stem 5": "Lapis 5",
|
63 |
+
"Stem 6": "Lapis 6",
|
64 |
+
"Output only single stem": "Output hanya satu lapis",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "Tulis lapis yang anda mahu, semak lapis setiap model pada Papan pendahulu. contoh. Instrumental",
|
66 |
+
"Leaderboard": "Papan pendahulu",
|
67 |
+
"List filter": "Penapis senarai",
|
68 |
+
"Filter and sort the model list by stem": "Penapis dan susun senarai model mengikut lapis",
|
69 |
+
"Show list!": "Tunjukkan senarai!"
|
70 |
+
}
|
assets/i18n/languages/pt_BR.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "Se você gosta do UVR5 UI, você pode favoritar meu repo em [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "Tente UVR5 UI no Hugging Face com A100 [aqui](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "Selecione o modelo",
|
5 |
+
"Select the output format": "Selecione o formato de saída",
|
6 |
+
"Overlap": "Sobreposição",
|
7 |
+
"Amount of overlap between prediction windows": "Quantidade de sobreposição entre janelas de previsão",
|
8 |
+
"Segment size": "Tamanho de segmento",
|
9 |
+
"Larger consumes more resources, but may give better results": "Maior consume mais recursos, mas retorna melhores resultados",
|
10 |
+
"Input audio": "Áudio de entrada",
|
11 |
+
"Separation by link": "Separação por link",
|
12 |
+
"Link": "Link",
|
13 |
+
"Paste the link here": "Cole o link aqui",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "Você pode colar o link de um vídeo/áudio de vários sites, confira a lista [aqui](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)",
|
15 |
+
"Download!": "Download!",
|
16 |
+
"Batch separation": "Separação de lote",
|
17 |
+
"Input path": "Caminho de entrada",
|
18 |
+
"Place the input path here": "Coloque o caminho de entrada aqui",
|
19 |
+
"Output path": "Caminho de saída",
|
20 |
+
"Place the output path here": "Coloque o caminho de saída aqui",
|
21 |
+
"Separate!": "Separar!",
|
22 |
+
"Output information": "Informação de saída",
|
23 |
+
"Stem 1": "Stem 1",
|
24 |
+
"Stem 2": "Stem 2",
|
25 |
+
"Denoise": "Reduçao de ruído",
|
26 |
+
"Enable denoising during separation": "Ativar redução de ruído durante separação",
|
27 |
+
"Window size": "Tamanho da janela",
|
28 |
+
"Agression": "Agressividade",
|
29 |
+
"Intensity of primary stem extraction": "Intensidade da extração de stem primaria",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "Aumentar tempo de teste; lento mas melhora qualidade",
|
32 |
+
"High end process": "Processo de alta qualidade",
|
33 |
+
"Mirror the missing frequency range of the output": "Espelhar a frequência faltante de saida",
|
34 |
+
"Shifts": "Turnos",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "Numero de previsões com turnos aleatorios, maior = mais lento porem mais qualidade",
|
36 |
+
"Stem 3": "Stem 3",
|
37 |
+
"Stem 4": "Stem 4",
|
38 |
+
"Themes": "Temas",
|
39 |
+
"Theme": "Tema",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "Selecione o tema que deseja utilizar. (Requer reiniciar o App)",
|
41 |
+
"Credits": "Créditos",
|
42 |
+
"Language": "Idioma",
|
43 |
+
"Advanced settings": "Opções Avançadas",
|
44 |
+
"Override model default segment size instead of using the model default value": "Substituir tamanho de segmento padrão ao invés de usar valor padrão do modelo",
|
45 |
+
"Override segment size": "Substituir tamanho de segmento",
|
46 |
+
"Batch size": "Tamanho do lote",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "Maior consome mais RAM, mas processa mais rapido",
|
48 |
+
"Normalization threshold": "Limite de normalização",
|
49 |
+
"The threshold for audio normalization": "Limite de normalização para áudio",
|
50 |
+
"Amplification threshold": "Limite para amplicação",
|
51 |
+
"The threshold for audio amplification": "Limite para amplicação para áudio",
|
52 |
+
"Hop length": "Tamanho do pulo",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "Normalmente chamado stride em redes neurais; Somente altere se souber o que está fazendo",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "Balancear qualidade e velocidade. 1024 = Rápido porem lento, 320 = Lento porem melhor qualidade",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "Identificar artefatos restantes na saída de vocal; Pode melhorar isolamento para algumas músicas",
|
56 |
+
"Post process": "Pós-processamento",
|
57 |
+
"Post process threshold": "Limite de pós-processamento",
|
58 |
+
"Threshold for post-processing": "Limite para pós-processamento",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "Tamanho de segmentos para cortar o áudio. Maior = Lento porem melhor qualidade",
|
60 |
+
"Enable segment-wise processing": "Ativar Processamento por segmento",
|
61 |
+
"Segment-wise processing": "Processamento por segmento",
|
62 |
+
"Stem 5": "Stem 5",
|
63 |
+
"Stem 6": "Stem 6",
|
64 |
+
"Output only single stem": "Saída apenas de uma stem",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "Escreva a stem que deseja, verifique as stems de cada modelo no Tabela de classificação. Ex. Instrumental",
|
66 |
+
"Leaderboard": "Tabela de classificação",
|
67 |
+
"List filter": "Filtro de lista",
|
68 |
+
"Filter and sort the model list by stem": "Filtrar e classificar a lista de modelos por stem",
|
69 |
+
"Show list!": "Mostrar lista!"
|
70 |
+
}
|
assets/i18n/languages/ru_RU.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "Если вам нравится UVR5 UI, вы можете посмотреть мое репо на [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "Попробуйте UVR5 UI на Hugging Face с A100 [здесь](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "Выбор модели",
|
5 |
+
"Select the output format": "Выброр выходного формата",
|
6 |
+
"Overlap": "Пересечение",
|
7 |
+
"Amount of overlap between prediction windows": "Величина пересечения между окнами прогнозов",
|
8 |
+
"Segment size": "Размер сегмента",
|
9 |
+
"Larger consumes more resources, but may give better results": "Больший размер потребляет больше ресурсов, но может дать лучшие результаты",
|
10 |
+
"Input audio": "Входной аудиосигнал",
|
11 |
+
"Separation by link": "Разделение по ссылке",
|
12 |
+
"Link": "Ссылка",
|
13 |
+
"Paste the link here": "Вставьте ссылку здесь",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "Вы можете вставить ссылку на видео/аудио с многих сайтов, посмотрите полный список [здесь](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)",
|
15 |
+
"Download!": "Скачать!",
|
16 |
+
"Batch separation": "Пакетное разделение",
|
17 |
+
"Input path": "Входной путь",
|
18 |
+
"Place the input path here": "Вставьте путь входного аудио здесь",
|
19 |
+
"Output path": "Выходной путь",
|
20 |
+
"Place the output path here": "Вставьте путь выходного аудио здесь",
|
21 |
+
"Separate!": "Разделить!",
|
22 |
+
"Output information": "Выходная информация",
|
23 |
+
"Stem 1": "Трек 1",
|
24 |
+
"Stem 2": "Трек 2",
|
25 |
+
"Denoise": "Шумоподавление",
|
26 |
+
"Enable denoising during separation": "Включить подавление шума при разделении",
|
27 |
+
"Window size": "Размер окна",
|
28 |
+
"Agression": "Агрессия",
|
29 |
+
"Intensity of primary stem extraction": "Интенсивность извлечения первичной дорожки",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "Включение функции Test-Time-Augmentation; работает медленно, но улучшает качество",
|
32 |
+
"High end process": "Высокопроизводительная обработка",
|
33 |
+
"Mirror the missing frequency range of the output": "Зеркальное отображение недостающего диапазона частот на выходе",
|
34 |
+
"Shifts": "Сдвиги",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "Количество прогнозов со случайными сдвигами, больше = медленнее, но качественнее",
|
36 |
+
"Stem 3": "Трек 3",
|
37 |
+
"Stem 4": "Трек 4",
|
38 |
+
"Themes": "Темы",
|
39 |
+
"Theme": "Тема",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "Выберите тему, которую вы хотите использовать. (Требуется перезапуск приложения)",
|
41 |
+
"Credits": "Благодарность",
|
42 |
+
"Language": "Язык",
|
43 |
+
"Advanced settings": "Продвинутая настройка",
|
44 |
+
"Override model default segment size instead of using the model default value": "Переопределение размера сегмента по умолчанию вместо использования значения по умолчанию для модели",
|
45 |
+
"Override segment size": "Переопределение размера сегмента",
|
46 |
+
"Batch size": "Размер сегмента",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "Большие размеры используют больше оперативной памяти, но обработка данных может происходить немного быстрее",
|
48 |
+
"Normalization threshold": "Порог нормализации",
|
49 |
+
"The threshold for audio normalization": "Порог нормализации звука",
|
50 |
+
"Amplification threshold": "Порог усиления",
|
51 |
+
"The threshold for audio amplification": "Порог усиления звука",
|
52 |
+
"Hop length": "Длина шага",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "В ИИ обычно ��азывается шагом; меняйте его, только если знаете, что делаете",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "Балансировка качества и скорости. 1024 = быстро, но качество ниже, 320 = медленнее, но качество выше",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "Выявление остаточных артефактов в вокальном потоке; может улучшить разделение для некоторых песен",
|
56 |
+
"Post process": "Постобработка",
|
57 |
+
"Post process threshold": "Порог постобработки",
|
58 |
+
"Threshold for post-processing": "Порог для постобработки",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "Размер сегментов, на которые разбивается аудио. Больше = медленнее, но качественнее",
|
60 |
+
"Enable segment-wise processing": "Включить сегментную обработку",
|
61 |
+
"Segment-wise processing": "Сегментная обработка",
|
62 |
+
"Stem 5": "Трек 5",
|
63 |
+
"Stem 6": "Трек 6",
|
64 |
+
"Output only single stem": "Вывод только одного трека",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "Напишите трек, который вы хотите, проверьте треки каждой модели в таблице лидеров. например. Instrumental",
|
66 |
+
"Leaderboard": "Таблица лидеров",
|
67 |
+
"List filter": "Фильтр списка",
|
68 |
+
"Filter and sort the model list by stem": "Фильтровать и сортировать список моделей по трек",
|
69 |
+
"Show list!": "Показать список!"
|
70 |
+
}
|
assets/i18n/languages/th_TH.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "ถ้าคุณชอบ UVR5 UI คุณสามารถให้ดาว repo ของผมได้ที่ [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "ลอง UVR5 UI ผ่าน Hugging Face กับ A100 ได้ [ที่นี่](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "เลือกโมเดล",
|
5 |
+
"Select the output format": "เลือกรูปแบบของเอาท์พุต",
|
6 |
+
"Overlap": "ความทับซ้อน",
|
7 |
+
"Amount of overlap between prediction windows": "ปริมาณความทับซ้อนระหว่างช่วงเวลาของหน้าต่าง",
|
8 |
+
"Segment size": "ขนาดส่วน",
|
9 |
+
"Larger consumes more resources, but may give better results": "ยิ่งมีขนาดใหญ่ยิ่งใช้ทรัพยากรมากขึ้น แต่ก็อาจจะให้ผลลัพธ์ที่ดีกว่า",
|
10 |
+
"Input audio": "อินพุตเสียง",
|
11 |
+
"Separation by link": "แยกด้วยลิงค์",
|
12 |
+
"Link": "ลิงค์",
|
13 |
+
"Paste the link here": "วางลิ้งค์ที่นี้",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "คุณสามารถวางลิงก์ไปยังวิดีโอหรือเสียงจากหลากหลายเว็บไซต์ได้ ตรวจสอบรายการทั้งหมดได้ [ที่นี่](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)",
|
15 |
+
"Download!": "ดาวน์โหลด!",
|
16 |
+
"Batch separation": "การแยกเป็นชุด",
|
17 |
+
"Input path": "ที่อยู่ของอินพุต",
|
18 |
+
"Place the input path here": "วางที่อยู่ของอินพุตที่นี่",
|
19 |
+
"Output path": "ที่อยู่ของเอาท์พุต",
|
20 |
+
"Place the output path here": "วางที่อยู่ของเอาท์พุตที่นี่",
|
21 |
+
"Separate!": "เริ่มการแยก!",
|
22 |
+
"Output information": "ข้อมูลเอาท์พุต",
|
23 |
+
"Stem 1": "สเต็มที่ 1",
|
24 |
+
"Stem 2": "สเต็มที่ 2",
|
25 |
+
"Denoise": "ลดเสียงรบกวน",
|
26 |
+
"Enable denoising during separation": "เปิดการลดเสียงรบกวนระหว่างการแยก",
|
27 |
+
"Window size": "ขนาดหน้าต่าง",
|
28 |
+
"Agression": "ความก้าวร้าว",
|
29 |
+
"Intensity of primary stem extraction": "ความเข้มข้นของการคัดแยกสเต็มหลัก",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "เปิดการปรับปรุงข้อมูลในช่วงเวลาทดสอบ; ช้าแต่ปรับปรุงคุณภาพได้",
|
32 |
+
"High end process": "กระบวนการระดับชั้นสูง",
|
33 |
+
"Mirror the missing frequency range of the output": "สะท้อนช่วงความถี่ที่หายไปของเอาต์พุต",
|
34 |
+
"Shifts": "การกะระยะ",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "จำนวนการทำนายที่มีการกะระยะแบบสุ่ม, สูงมาก = ช้าแต่มีคุณภาพที่ดีกว่า",
|
36 |
+
"Stem 3": "สเต็มที่ 3",
|
37 |
+
"Stem 4": "สเต็มที่ 4",
|
38 |
+
"Themes": "ธีม",
|
39 |
+
"Theme": "ธีม",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "เลือกธีมที่คุณต้องการจะใช้ (จำเป็นต้องเริ่มแอปใหม่)",
|
41 |
+
"Credits": "เครดิตผู้มีส่วนร่วม",
|
42 |
+
"Language": "ภาษา",
|
43 |
+
"Advanced settings": "การตั้งค่าขั้นสูง",
|
44 |
+
"Override model default segment size instead of using the model default value": "แทนที่ขนาดส่วนค่าเริ่มต้นของโมเดลแทนการใช้ค่าเริ่มต้นของโมเดล",
|
45 |
+
"Override segment size": "ขนาดของส่วนที่จะแทนที่",
|
46 |
+
"Batch size": "ขนาดชุดข้อมูล",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "ส่วนที่ใหญ่ใช้หน่วยความจำมากขึ้น แต่การประมวลผลนั้นค่อนข้างเร็วกว่า",
|
48 |
+
"Normalization threshold": "เกณฑ์การปรับเสียงสมดุล",
|
49 |
+
"The threshold for audio normalization": "เกณฑ์การปรับเสียงสมดุลของเสียง",
|
50 |
+
"Amplification threshold": "เกณฑ์การขยายเสียง",
|
51 |
+
"The threshold for audio amplification": "เกณฑ์การขยายของเสียง",
|
52 |
+
"Hop length": "ความยาวการข้าม",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "โดยทั่วไปเรียกว่าก้าวย่างในเครือข่ายประสาท เปลี่ยนแปลงก็ต่อเมื่อคุณรู้ว่าคุณกำลังทำอะไรอยู่",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "ความสมดุลของคุณภาพและความเร็ว. 1024 = เร็วแต่ให้คุณภาพที่ต่ำกว่า, 320 = ช้าแต่ให้คุณภาพที่ดีกว่า",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "ระบุส่วนที่เทียมที่เหลืออยู่ในเอาต์พุตเสียง อาจช่วยให้แยกเพลงบางเพลงไก้ดีขึ้น",
|
56 |
+
"Post process": "หลังกระบวนการ",
|
57 |
+
"Post process threshold": "เกณฑ์หลังกระบวนการ",
|
58 |
+
"Threshold for post-processing": "เกณฑ์สำหรับหลังกระบวนการ",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "ขนาดของส่วนของเสียงใดเสียงหนึ่งที่แยกออก ค่าที่สูงขึ้น = ช้าแต่ให้คุณภาพที่ดีกว่า",
|
60 |
+
"Enable segment-wise processing": "เปิดการประมวลผลแบบเป็นส่วนๆ",
|
61 |
+
"Segment-wise processing": "การประมวลผลแบบเป็นส่วนๆ",
|
62 |
+
"Stem 5": "สเต็มที่ 5",
|
63 |
+
"Stem 6": "สเต็มที่ 6",
|
64 |
+
"Output only single stem": "ผลลัพธ์เฉพาะสเต็มเดียว",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "เขียนสเต็มที่คุณต้องการ, ตรวจสอบสเต็มของแต่ละโมเดลใน ลีดเดอร์บอร์ด ตัวอย่างเช่น Instrumental",
|
66 |
+
"Leaderboard": "ลีดเดอร์บอร์ด",
|
67 |
+
"List filter": "ตัวกรองรายการ",
|
68 |
+
"Filter and sort the model list by stem": "กรองและเรียงลำดับรายการโมเดลตาม สเต็มที่",
|
69 |
+
"Show list!": "แสดงรายการ!"
|
70 |
+
}
|
assets/i18n/languages/tr_TR.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "UVR5 UI'ı beğendiyseniz GitHub'daki repoma yıldız verebilirsiniz [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "UVR5 UI'ı A100 ile Hugging Face'de deneyin [buradan](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "Modeli seçin",
|
5 |
+
"Select the output format": "Çıktı formatını seçin",
|
6 |
+
"Overlap": "Örtüşme",
|
7 |
+
"Amount of overlap between prediction windows": "Tahmin pencereleri arasındaki örtüşme miktarı",
|
8 |
+
"Segment size": "Segment boyutu",
|
9 |
+
"Larger consumes more resources, but may give better results": "Daha büyük boyut daha fazla kaynak tüketir ancak daha iyi sonuçlar verebilir",
|
10 |
+
"Input audio": "Ses girişi",
|
11 |
+
"Separation by link": "Bağlantı ile ayırma",
|
12 |
+
"Link": "Bağlantı",
|
13 |
+
"Paste the link here": "Bağlantıyı buraya yapıştırın",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "Birçok siteden video/ses bağlantısını yapıştırabilirsiniz, tam listeyi [buradan](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md) kontrol edin",
|
15 |
+
"Download!": "İndir!",
|
16 |
+
"Batch separation": "Toplu ayırma",
|
17 |
+
"Input path": "Giriş yolu",
|
18 |
+
"Place the input path here": "Giriş yolunu buraya yerleştirin",
|
19 |
+
"Output path": "Çıkış yolu",
|
20 |
+
"Place the output path here": "Çıkış yolunu buraya yerleştirin",
|
21 |
+
"Separate!": "Ayır!",
|
22 |
+
"Output information": "Çıktı bilgisi",
|
23 |
+
"Stem 1": "Kanal 1",
|
24 |
+
"Stem 2": "Kanal 2",
|
25 |
+
"Denoise": "Gürültü giderme",
|
26 |
+
"Enable denoising during separation": "Ayırma sırasında gürültü gidermeyi etkinleştir",
|
27 |
+
"Window size": "Pencere boyutu",
|
28 |
+
"Agression": "Saldırganlık",
|
29 |
+
"Intensity of primary stem extraction": "Birincil kanal çıkarma yoğunluğu",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "Test-Zamanı-Artırımını etkinleştir; yavaş ama kaliteyi artırır",
|
32 |
+
"High end process": "Yüksek kalite işleme",
|
33 |
+
"Mirror the missing frequency range of the output": "Eksik frekans aralığını çıktıda yansıt",
|
34 |
+
"Shifts": "Kaymalar",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "Rastgele kaymalarla tahmin sayısı, yüksek = daha yavaş ama daha iyi kalite",
|
36 |
+
"Stem 3": "Kanal 3",
|
37 |
+
"Stem 4": "Kanal 4",
|
38 |
+
"Themes": "Temalar",
|
39 |
+
"Theme": "Tema",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "Kullanmak istediğiniz temayı seçin. (Uygulamayı yeniden başlatmayı gerektirir)",
|
41 |
+
"Credits": "Katkıda Bulunanlar",
|
42 |
+
"Language": "Dil",
|
43 |
+
"Advanced settings": "Gelişmiş Ayarlar",
|
44 |
+
"Override model default segment size instead of using the model default value": "Modelin varsayılan segment boyutunu kullanmak yerine geçersiz kıl",
|
45 |
+
"Override segment size": "Segment boyutunu geçersiz kıl",
|
46 |
+
"Batch size": "Toplu iş boyutu",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "Daha büyük boyut daha fazla RAM tüketir ancak biraz daha hızlı işleyebilir",
|
48 |
+
"Normalization threshold": "Normalleştirme eşiği",
|
49 |
+
"The threshold for audio normalization": "Ses normalleştirme eşiği",
|
50 |
+
"Amplification threshold": "Yükseltme eşiği",
|
51 |
+
"The threshold for audio amplification": "Ses yükseltme eşiği",
|
52 |
+
"Hop length": "Atlama uzunluğu",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "Genellikle sinir ağlarında adım olarak adlandırılır; yalnızca ne yaptığınızı biliyorsanız değiştirin",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "Kalite ve hızı dengeleyin. 1024 = hızlı ancak düşük kalite, 320 = yavaş ancak daha iyi kalite",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "Vokal çıktısındaki kalan yapaylıkları belirleyin; bazı şarkılar için ayrımı iyileştirebilir",
|
56 |
+
"Post process": "Son işlem",
|
57 |
+
"Post process threshold": "Son işlem eşiği",
|
58 |
+
"Threshold for post-processing": "Son işlem için eşik",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "Sesin bölündüğü segmentlerin boyutu. Daha yüksek = daha yavaş ancak daha iyi kalite",
|
60 |
+
"Enable segment-wise processing": "Segment bazında işlemeyi etkinleştir",
|
61 |
+
"Segment-wise processing": "Segment bazında işleme",
|
62 |
+
"Stem 5": "Kanal 5",
|
63 |
+
"Stem 6": "Kanal 6",
|
64 |
+
"Output only single stem": "Sadece tek kanal çıkışı",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "İstediğiniz kanalı yazın, her modelin gövdelerini Lider Tablosunda kontrol edin. Örn. Instrumental",
|
66 |
+
"Leaderboard": "Liderlik tablosu",
|
67 |
+
"List filter": "Liste filtresi",
|
68 |
+
"Filter and sort the model list by stem": "Model listesini kanala göre filtreleyin ve sıralayın",
|
69 |
+
"Show list!": "Listeyi göster!"
|
70 |
+
}
|
assets/i18n/languages/uk_UA.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "Якщо вам подобається UVR5 UI, ви можете подивитися моє репо на [GitHub](https://github.com/Eddycrack864/UVR5-UI)",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "Спробуйте UVR5 UI на Hugging Face з A100 [тут](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "Вибір моделі",
|
5 |
+
"Select the output format": "Вибір вихідного формату",
|
6 |
+
"Overlap": "Перетин",
|
7 |
+
"Amount of overlap between prediction windows": "Величина перетину між вікнами прогнозів",
|
8 |
+
"Segment size": "Розмір сегмента",
|
9 |
+
"Larger consumes more resources, but may give better results": "Більший розмір споживає більше ресурсів, але може дати кращі результати",
|
10 |
+
"Input audio": "Вхідний аудіосигнал",
|
11 |
+
"Separation by link": "Поділ за посиланням",
|
12 |
+
"Link": "Посилання",
|
13 |
+
"Paste the link here": "Вставте посилання тут",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "Ви можете вставити посилання на відео/аудіо з багатьох сайтів, подивіться повний список [тут](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)",
|
15 |
+
"Download!": "Скачати!",
|
16 |
+
"Batch separation": "Пакетний поділ",
|
17 |
+
"Input path": "Вхідний шлях",
|
18 |
+
"Place the input path here": "Вставте шлях вхідного аудіо тут",
|
19 |
+
"Output path": "Вихідний шлях",
|
20 |
+
"Place the output path here": "Вставте шлях вихідного аудіо тут",
|
21 |
+
"Separate!": "Розділити!",
|
22 |
+
"Output information": "Вихідна інформація",
|
23 |
+
"Stem 1": "Трек 1",
|
24 |
+
"Stem 2": "Трек 2",
|
25 |
+
"Denoise": "Шумозаглушення",
|
26 |
+
"Enable denoising during separation": "Увімкнути придушення шуму під час поділу",
|
27 |
+
"Window size": "Розмір вікна",
|
28 |
+
"Agression": "Агресія",
|
29 |
+
"Intensity of primary stem extraction": "Інтенсивність вилучення первинної доріжки",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "Увімкнення функції Test-Time-Augmentation; працює повільно, але покращує якість",
|
32 |
+
"High end process": "Високопродуктивне оброблення",
|
33 |
+
"Mirror the missing frequency range of the output": "Дзеркальне відображення відсутнього діапазону частот на виході",
|
34 |
+
"Shifts": "Здвиги",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "Кількість прогнозів із випадковими зсувами, більше = повільніше, але якісніше",
|
36 |
+
"Stem 3": "Трек 3",
|
37 |
+
"Stem 4": "Трек 4",
|
38 |
+
"Themes": "Теми",
|
39 |
+
"Theme": "Тема",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "Виберіть тему, яку ви хочете використовувати. (Потрібен перезапуск програми)",
|
41 |
+
"Credits": "Вдячність",
|
42 |
+
"Language": "Мова",
|
43 |
+
"Advanced settings": "Просунута налаштування",
|
44 |
+
"Override model default segment size instead of using the model default value": "Перевизначення розміру сегмента за замовчуванням замість використання значення за замовчуванням для моделі",
|
45 |
+
"Override segment size": "Перевизначення розміру сегмента",
|
46 |
+
"Batch size": "Розмір сегмента",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "Великі розміри використовують більше оперативної пам'яті, але обробка даних може відбуватися трохи швидше",
|
48 |
+
"Normalization threshold": "Поріг нормалізації",
|
49 |
+
"The threshold for audio normalization": "Поріг нормалізації звуку",
|
50 |
+
"Amplification threshold": "Поріг підсилення",
|
51 |
+
"The threshold for audio amplification": "Поріг підсилення звуку",
|
52 |
+
"Hop length": "Довжина кроку",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "У ШІ зазвичай називається кроком; змінюйте його, тільки якщо знаєте, що робите",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "Балансування якості та швидкості. 1024 = швидко, але якість нижча, 320 = повільніше, але якість вища",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "Виявлення залишкових артефактів у вокальному потоці; може поліпшити поділ для деяких пісень",
|
56 |
+
"Post process": "Постобробка",
|
57 |
+
"Post process threshold": "Поріг постоброблення",
|
58 |
+
"Threshold for post-processing": "Поріг для постоброблення",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "Розмір сегментів, на які розбивається аудіо. Більше = повільніше, але якісніше",
|
60 |
+
"Enable segment-wise processing": "Увімкнути сегментне оброблення",
|
61 |
+
"Segment-wise processing": "Сегментне оброблення",
|
62 |
+
"Stem 5": "Трек 5",
|
63 |
+
"Stem 6": "Трек 6",
|
64 |
+
"Output only single stem": "Вихід тільки одного треку",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "Напишіть трек, який ви хочете, перевірте треки кожної моделі на дошці лідерів. наприклад. Instrumental",
|
66 |
+
"Leaderboard": "Дошка лідерів",
|
67 |
+
"List filter": "Фільтр списку",
|
68 |
+
"Filter and sort the model list by stem": "Фільтрувати та сортувати список моделей за трек",
|
69 |
+
"Show list!": "Показати список!"
|
70 |
+
}
|
assets/i18n/languages/zh_CN.json
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"If you like UVR5 UI you can star my repo on [GitHub](https://github.com/Eddycrack864/UVR5-UI)": "喜欢 UVR5 UI 的话,可以在 [GitHub](https://github.com/Eddycrack864/UVR5-UI) 上标星我的仓库",
|
3 |
+
"Try UVR5 UI on Hugging Face with A100 [here](https://huggingface.co/spaces/TheStinger/UVR5_UI)": "在 Huggingface 上尝试 A100 的 UVR5 UI [这里](https://huggingface.co/spaces/TheStinger/UVR5_UI)",
|
4 |
+
"Select the model": "选择模型",
|
5 |
+
"Select the output format": "选择输出格式",
|
6 |
+
"Overlap": "重叠",
|
7 |
+
"Amount of overlap between prediction windows": "预测窗口之间的重叠量",
|
8 |
+
"Segment size": "段大小",
|
9 |
+
"Larger consumes more resources, but may give better results": "更大的模型消耗更多资源,但可能产生更好的结果",
|
10 |
+
"Input audio": "输入音频",
|
11 |
+
"Separation by link": "按链接分离",
|
12 |
+
"Link": "链接",
|
13 |
+
"Paste the link here": "请在此粘贴链接",
|
14 |
+
"You can paste the link to the video/audio from many sites, check the complete list [here](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)": "您可以从许多站点粘贴视频/音频的链接,完整列表请参见 [这里](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md)",
|
15 |
+
"Download!": "下载!",
|
16 |
+
"Batch separation": "批量分离",
|
17 |
+
"Input path": "输入路径",
|
18 |
+
"Place the input path here": "在此处放置输入路径",
|
19 |
+
"Output path": "输出路径",
|
20 |
+
"Place the output path here": "将输出路径放在这里",
|
21 |
+
"Separate!": "分离!",
|
22 |
+
"Output information": "输出信息",
|
23 |
+
"Stem 1": "干声 1",
|
24 |
+
"Stem 2": "干声 2",
|
25 |
+
"Denoise": "去噪",
|
26 |
+
"Enable denoising during separation": "分离过程中启用降噪",
|
27 |
+
"Window size": "窗口大小",
|
28 |
+
"Agression": "攻击性",
|
29 |
+
"Intensity of primary stem extraction": "初生茎提取强度",
|
30 |
+
"TTA": "TTA",
|
31 |
+
"Enable Test-Time-Augmentation; slow but improves quality": "启用测试时间增强;速度较慢但提高质量",
|
32 |
+
"High end process": "高频处理",
|
33 |
+
"Mirror the missing frequency range of the output": "镜像输出中缺失的频率范围",
|
34 |
+
"Shifts": "偏移",
|
35 |
+
"Number of predictions with random shifts, higher = slower but better quality": "随机偏移预测次数,越高越慢但质量越好",
|
36 |
+
"Stem 3": "干声 3",
|
37 |
+
"Stem 4": "干声 4",
|
38 |
+
"Themes": "主题",
|
39 |
+
"Theme": "主题",
|
40 |
+
"Select the theme you want to use. (Requires restarting the App)": "选择您要使用的主题。(需要重新启动应用程序)",
|
41 |
+
"Credits": "鸣谢",
|
42 |
+
"Language": "语言",
|
43 |
+
"Advanced settings": "高级设置",
|
44 |
+
"Override model default segment size instead of using the model default value": "覆盖模型默认段大小,而不是使用模型默认值",
|
45 |
+
"Override segment size": "覆盖段大小",
|
46 |
+
"Batch size": "批大小",
|
47 |
+
"Larger consumes more RAM but may process slightly faster": "更大的批次消耗更多的内存,但可能处理速度稍快",
|
48 |
+
"Normalization threshold": "归一化阈值",
|
49 |
+
"The threshold for audio normalization": "音频归一化的阈值",
|
50 |
+
"Amplification threshold": "放大量阈值",
|
51 |
+
"The threshold for audio amplification": "音频放大量阈值",
|
52 |
+
"Hop length": "跳跃长度",
|
53 |
+
"Usually called stride in neural networks; only change if you know what you're doing": "通常称为神经网络中的步幅;仅在你知道自己在做什么的情况下更改",
|
54 |
+
"Balance quality and speed. 1024 = fast but lower, 320 = slower but better quality": "平衡质量和速度。1024 = 快但质量较低,320 = 慢但质量更好",
|
55 |
+
"Identify leftover artifacts within vocal output; may improve separation for some songs": "识别声乐输出中的残留人工制品;可能改善某些歌曲的分离",
|
56 |
+
"Post process": "后处理",
|
57 |
+
"Post process threshold": "后处理阈值",
|
58 |
+
"Threshold for post-processing": "后处理阈值",
|
59 |
+
"Size of segments into which the audio is split. Higher = slower but better quality": "音频分割成的片段的大小。越大 = 速度越慢但质量越好",
|
60 |
+
"Enable segment-wise processing": "启用分段处理",
|
61 |
+
"Segment-wise processing": "分段处理",
|
62 |
+
"Stem 5": "干声 5",
|
63 |
+
"Stem 6": "干声 6",
|
64 |
+
"Output only single stem": "仅输出单个干声",
|
65 |
+
"Write the stem you want, check the stems of each model on Leaderboard. e.g. Instrumental": "写下你想要的干声,检查排行榜上每个模型的干声。例如 Instrumental",
|
66 |
+
"Leaderboard": "排行榜",
|
67 |
+
"List filter": "列表过滤器",
|
68 |
+
"Filter and sort the model list by stem": "通过干声筛选和排序模型列表",
|
69 |
+
"Show list!": "显示列表!"
|
70 |
+
}
|
assets/i18n/scan.py
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import ast
|
2 |
+
import json
|
3 |
+
from pathlib import Path
|
4 |
+
from collections import OrderedDict
|
5 |
+
|
6 |
+
def extract_i18n_strings(node):
|
7 |
+
i18n_strings = []
|
8 |
+
|
9 |
+
if (
|
10 |
+
isinstance(node, ast.Call)
|
11 |
+
and isinstance(node.func, ast.Name)
|
12 |
+
and node.func.id == "i18n"
|
13 |
+
):
|
14 |
+
for arg in node.args:
|
15 |
+
if isinstance(arg, ast.Str):
|
16 |
+
i18n_strings.append(arg.s)
|
17 |
+
|
18 |
+
for child_node in ast.iter_child_nodes(node):
|
19 |
+
i18n_strings.extend(extract_i18n_strings(child_node))
|
20 |
+
|
21 |
+
return i18n_strings
|
22 |
+
|
23 |
+
def process_file(file_path):
|
24 |
+
with open(file_path, "r", encoding="utf8") as file:
|
25 |
+
code = file.read()
|
26 |
+
if "I18nAuto" in code:
|
27 |
+
tree = ast.parse(code)
|
28 |
+
i18n_strings = extract_i18n_strings(tree)
|
29 |
+
print(file_path, len(i18n_strings))
|
30 |
+
return i18n_strings
|
31 |
+
return []
|
32 |
+
|
33 |
+
py_files = Path(".").rglob("*.py")
|
34 |
+
|
35 |
+
code_keys = set()
|
36 |
+
|
37 |
+
for py_file in py_files:
|
38 |
+
strings = process_file(py_file)
|
39 |
+
code_keys.update(strings)
|
40 |
+
|
41 |
+
print()
|
42 |
+
print("Total unique:", len(code_keys))
|
43 |
+
|
44 |
+
standard_file = "languages/en_US.json"
|
45 |
+
with open(standard_file, "r", encoding="utf-8") as file:
|
46 |
+
standard_data = json.load(file, object_pairs_hook=OrderedDict)
|
47 |
+
standard_keys = set(standard_data.keys())
|
48 |
+
|
49 |
+
unused_keys = standard_keys - code_keys
|
50 |
+
missing_keys = code_keys - standard_keys
|
51 |
+
|
52 |
+
print("Unused keys:", len(unused_keys))
|
53 |
+
for unused_key in unused_keys:
|
54 |
+
print("\t", unused_key)
|
55 |
+
|
56 |
+
print("Missing keys:", len(missing_keys))
|
57 |
+
for missing_key in missing_keys:
|
58 |
+
print("\t", missing_key)
|
59 |
+
|
60 |
+
code_keys_dict = OrderedDict((s, s) for s in code_keys)
|
61 |
+
|
62 |
+
with open(standard_file, "w", encoding="utf-8") as file:
|
63 |
+
json.dump(code_keys_dict, file, ensure_ascii=False, indent=4, sort_keys=True)
|
64 |
+
file.write("\n")
|
assets/themes/loadThemes.py
ADDED
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
import os
|
3 |
+
import importlib
|
4 |
+
import gradio as gr
|
5 |
+
|
6 |
+
now_dir = os.getcwd()
|
7 |
+
|
8 |
+
folder = os.path.join(now_dir, "assets", "themes")
|
9 |
+
config_file = os.path.join(now_dir, "assets", "config.json")
|
10 |
+
|
11 |
+
import sys
|
12 |
+
|
13 |
+
sys.path.append(folder)
|
14 |
+
|
15 |
+
|
16 |
+
def get_class(filename):
|
17 |
+
with open(filename, "r", encoding="utf8") as file:
|
18 |
+
for line_number, line in enumerate(file, start=1):
|
19 |
+
if "class " in line:
|
20 |
+
found = line.split("class ")[1].split(":")[0].split("(")[0].strip()
|
21 |
+
return found
|
22 |
+
break
|
23 |
+
return None
|
24 |
+
|
25 |
+
|
26 |
+
def get_list():
|
27 |
+
|
28 |
+
themes_from_files = [
|
29 |
+
os.path.splitext(name)[0]
|
30 |
+
for root, _, files in os.walk(folder, topdown=False)
|
31 |
+
for name in files
|
32 |
+
if name.endswith(".py") and root == folder and name != "loadThemes.py"
|
33 |
+
]
|
34 |
+
|
35 |
+
json_file_path = os.path.join(folder, "themes_list.json")
|
36 |
+
|
37 |
+
try:
|
38 |
+
with open(json_file_path, "r", encoding="utf8") as json_file:
|
39 |
+
themes_from_url = [item["id"] for item in json.load(json_file)]
|
40 |
+
except FileNotFoundError:
|
41 |
+
themes_from_url = []
|
42 |
+
|
43 |
+
combined_themes = set(themes_from_files + themes_from_url)
|
44 |
+
|
45 |
+
return list(combined_themes)
|
46 |
+
|
47 |
+
|
48 |
+
def select_theme(name):
|
49 |
+
selected_file = name + ".py"
|
50 |
+
full_path = os.path.join(folder, selected_file)
|
51 |
+
|
52 |
+
if not os.path.exists(full_path):
|
53 |
+
with open(config_file, "r", encoding="utf8") as json_file:
|
54 |
+
config_data = json.load(json_file)
|
55 |
+
|
56 |
+
config_data["theme"]["file"] = None
|
57 |
+
config_data["theme"]["class"] = name
|
58 |
+
|
59 |
+
with open(config_file, "w", encoding="utf8") as json_file:
|
60 |
+
json.dump(config_data, json_file, indent=2)
|
61 |
+
print(f"Theme {name} successfully selected, restart the App.")
|
62 |
+
gr.Info(f"Theme {name} successfully selected, restart the App.")
|
63 |
+
return
|
64 |
+
|
65 |
+
class_found = get_class(full_path)
|
66 |
+
if class_found:
|
67 |
+
with open(config_file, "r", encoding="utf8") as json_file:
|
68 |
+
config_data = json.load(json_file)
|
69 |
+
|
70 |
+
config_data["theme"]["file"] = selected_file
|
71 |
+
config_data["theme"]["class"] = class_found
|
72 |
+
|
73 |
+
with open(config_file, "w", encoding="utf8") as json_file:
|
74 |
+
json.dump(config_data, json_file, indent=2)
|
75 |
+
print(f"Theme {name} successfully selected, restart the App.")
|
76 |
+
gr.Info(f"Theme {name} successfully selected, restart the App.")
|
77 |
+
else:
|
78 |
+
print(f"Theme {name} was not found.")
|
79 |
+
|
80 |
+
|
81 |
+
def read_json():
|
82 |
+
try:
|
83 |
+
with open(config_file, "r", encoding="utf8") as json_file:
|
84 |
+
data = json.load(json_file)
|
85 |
+
selected_file = data["theme"]["file"]
|
86 |
+
class_name = data["theme"]["class"]
|
87 |
+
|
88 |
+
if selected_file is not None and class_name:
|
89 |
+
return class_name
|
90 |
+
elif selected_file == None and class_name:
|
91 |
+
return class_name
|
92 |
+
else:
|
93 |
+
return "NoCrypt/miku"
|
94 |
+
except Exception as error:
|
95 |
+
print(f"An error occurred loading the theme: {error}")
|
96 |
+
return "NoCrypt/miku"
|
97 |
+
|
98 |
+
|
99 |
+
def load_json():
|
100 |
+
try:
|
101 |
+
with open(config_file, "r", encoding="utf8") as json_file:
|
102 |
+
data = json.load(json_file)
|
103 |
+
selected_file = data["theme"]["file"]
|
104 |
+
class_name = data["theme"]["class"]
|
105 |
+
|
106 |
+
if selected_file is not None and class_name:
|
107 |
+
module = importlib.import_module(selected_file[:-3])
|
108 |
+
obtained_class = getattr(module, class_name)
|
109 |
+
instance = obtained_class()
|
110 |
+
print(f"Theme {class_name} successfully loaded.")
|
111 |
+
return instance
|
112 |
+
elif selected_file == None and class_name:
|
113 |
+
return class_name
|
114 |
+
else:
|
115 |
+
print("The theme is incorrect.")
|
116 |
+
return None
|
117 |
+
except Exception as error:
|
118 |
+
print(f"An error occurred loading the theme: {error}")
|
119 |
+
return None
|
assets/themes/themes_list.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{"id": "freddyaboulton/dracula_revamped"},
|
3 |
+
{"id": "freddyaboulton/bad-theme-space"},
|
4 |
+
{"id": "gradio/dracula_revamped"},
|
5 |
+
{"id": "abidlabs/dracula_revamped"},
|
6 |
+
{"id": "gradio/seafoam"},
|
7 |
+
{"id": "gradio/monochrome"},
|
8 |
+
{"id": "gradio/soft"},
|
9 |
+
{"id": "gradio/default"},
|
10 |
+
{"id": "dawood/microsoft_windows"},
|
11 |
+
{"id": "ysharma/steampunk"},
|
12 |
+
{"id": "ysharma/huggingface"},
|
13 |
+
{"id": "gstaff/xkcd"},
|
14 |
+
{"id": "JohnSmith9982/small_and_pretty"},
|
15 |
+
{"id": "abidlabs/Lime"},
|
16 |
+
{"id": "bethecloud/storj_theme"},
|
17 |
+
{"id": "sudeepshouche/minimalist"},
|
18 |
+
{"id": "knotdgaf/gradiotest"},
|
19 |
+
{"id": "ParityError/Interstellar"},
|
20 |
+
{"id": "ParityError/Anime"},
|
21 |
+
{"id": "Ajaxon6255/Emerald_Isle"},
|
22 |
+
{"id": "NoCrypt/miku"},
|
23 |
+
{"id": "Hev832/Applio"}
|
24 |
+
]
|