Migrate more strings to translation keys (#11613)
This commit is contained in:
parent
d46d4b3d04
commit
5cb8cbd893
111 changed files with 8214 additions and 6766 deletions
|
@ -40,7 +40,7 @@ export const DeveloperToolsOption: React.FC<Props> = ({ onFinished, roomId }) =>
|
|||
);
|
||||
onFinished();
|
||||
}}
|
||||
label={_t("Developer tools")}
|
||||
label={_t("devtools|title")}
|
||||
iconClassName="mx_IconizedContextMenu_developerTools"
|
||||
/>
|
||||
);
|
||||
|
|
|
@ -87,7 +87,9 @@ export const IconizedContextMenuCheckbox: React.FC<ICheckboxProps> = ({
|
|||
}) => {
|
||||
let marker: JSX.Element;
|
||||
if (words) {
|
||||
marker = <span className="mx_IconizedContextMenu_activeText">{active ? _t("On") : _t("Off")}</span>;
|
||||
marker = (
|
||||
<span className="mx_IconizedContextMenu_activeText">{active ? _t("common|on") : _t("common|off")}</span>
|
||||
);
|
||||
} else {
|
||||
marker = (
|
||||
<span
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue