Align action_* strings with Element X project in Localazy (#11437)

This commit is contained in:
Michael Telatynski 2023-08-22 20:55:15 +01:00 committed by GitHub
parent bdd3710f25
commit df4a2218d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
166 changed files with 1697 additions and 1555 deletions

View file

@ -53,7 +53,7 @@ export const EnableLiveShare: React.FC<Props> = ({ onSubmit }) => {
onClick={onSubmit}
disabled={!isEnabled}
>
{_t("OK")}
{_t("action|ok")}
</AccessibleButton>
</div>
);

View file

@ -44,7 +44,7 @@ export const MapError: React.FC<MapErrorProps> = ({ error, isMinimised, classNam
<p className="mx_MapError_message">{getLocationShareErrorMessage(error)}</p>
{onFinished && (
<AccessibleButton element="button" kind="primary" onClick={onFinished}>
{_t("OK")}
{_t("action|ok")}
</AccessibleButton>
)}
</div>

View file

@ -63,7 +63,7 @@ const getPermissionsErrorParams = (
const modalParams = {
title: _t("You don't have permission to share locations"),
description: _t("You need to have the right permissions in order to share locations in this room."),
button: _t("OK"),
button: _t("action|ok"),
hasCancelButton: false,
onFinished: () => {}, // NOOP
};