Migrate more strings to translation keys (#11637)

This commit is contained in:
Michael Telatynski 2023-09-21 09:11:26 +01:00 committed by GitHub
parent fc9caa3269
commit d77b871769
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
107 changed files with 7689 additions and 6497 deletions

View file

@ -104,7 +104,7 @@ export default class CommandProvider extends AutocompleteProvider {
}
public getName(): string {
return "*️⃣ " + _t("Commands");
return "*️⃣ " + _t("composer|autocomplete|command_description");
}
public renderCompletions(completions: React.ReactNode[]): React.ReactNode {
@ -112,7 +112,7 @@ export default class CommandProvider extends AutocompleteProvider {
<div
className="mx_Autocomplete_Completion_container_pill"
role="presentation"
aria-label={_t("Command Autocomplete")}
aria-label={_t("composer|autocomplete|command_a11y")}
>
{completions}
</div>