Minor text changes

This commit is contained in:
Koper
2023-10-15 17:45:41 +01:00
parent f97174e863
commit 09a2d7bbae
2 changed files with 3 additions and 3 deletions

View File

@@ -488,7 +488,7 @@ const supportedLanguages: LanguageOption[] = [
const supportedLatinLanguages = supportedLanguages.filter(
(lan) => lan.script == "Latn",
);
supportedLatinLanguages.push({ value: undefined, name: "None" });
supportedLatinLanguages.push({ value: undefined, name: "No Translation" });
export { supportedLatinLanguages };

View File

@@ -91,7 +91,7 @@ const TranscriptCreate = () => {
</label>
<label className="mb-3">
<p>Live translate to </p>
<p>Do you want to enable live translation?</p>
<SelectSearch
search
options={supportedLatinLanguages}
@@ -124,7 +124,7 @@ const TranscriptCreate = () => {
onClick={send}
disabled={!permissionOk || loadingSend}
>
{loadingSend ? "loading" : "Send"}
{loadingSend ? "Loading..." : "Confirm"}
</button>
</div>
</section>