Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aitronz committed May 18, 2024
1 parent 4ae7582 commit 5f9f65b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/i18n/languages/en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
"Clean your audio output using noise detection algorithms, recommended for speaking audios.": "Clean your audio output using noise detection algorithms, recommended for speaking audios.",
"Clean Strength": "Clean Strength",
"Upscale Audio": "Upscale Audio",
"Upscale the audio to a higher quality, recommended for low-quality audios. (Only use it if the audio duration is less than 10 seconds)": "Upscale the audio to a higher quality, recommended for low-quality audios. (Only use it if the audio duration is less than 10 seconds)",
"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)",
"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.",
"Pitch": "Pitch",
"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.",
Expand Down
2 changes: 1 addition & 1 deletion assets/i18n/languages/es_ES.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"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.",
"Clean Strength": "Fuerza de limpieza",
"Upscale Audio": "Audio de alta calidad",
"Upscale the audio to a higher quality, recommended for low-quality audios. (Only use it if the audio duration is less than 10 seconds)": "Mejore la calidad del audio a una calidad superior, recomendado para audios de baja calidad. (Sólo úselo si la duración del audio es inferior a 10 segundos)",
"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)",
"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.",
"Pitch": "Tono",
"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.",
Expand Down
4 changes: 2 additions & 2 deletions tabs/inference/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def inference_tab():
upscale_audio = gr.Checkbox(
label=i18n("Upscale Audio"),
info=i18n(
"Upscale the audio to a higher quality, recommended for low-quality audios. (Only use it if the audio duration is less than 10 seconds)"
"Upscale the audio to a higher quality, recommended for low-quality audios. (It could take longer to process the audio)"
),
visible=True,
value=False,
Expand Down Expand Up @@ -465,7 +465,7 @@ def inference_tab():
upscale_audio_batch = gr.Checkbox(
label=i18n("Upscale Audio"),
info=i18n(
"Upscale the audio to a higher quality, recommended for low-quality audios. (Only use it if the audio duration is less than 10 seconds)"
"Upscale the audio to a higher quality, recommended for low-quality audios. (It could take longer to process the audio)"
),
visible=True,
value=False,
Expand Down
2 changes: 1 addition & 1 deletion tabs/tts/tts.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def tts_tab():
upscale_audio = gr.Checkbox(
label=i18n("Upscale Audio"),
info=i18n(
"Upscale the audio to a higher quality, recommended for low-quality audios. (Only use it if the audio duration is less than 10 seconds)"
"Upscale the audio to a higher quality, recommended for low-quality audios. (It could take longer to process the audio)"
),
visible=True,
value=False,
Expand Down

0 comments on commit 5f9f65b

Please sign in to comment.