Migrate more strings to translation keys (#11680)

This commit is contained in:
Michael Telatynski 2023-09-29 08:49:26 +01:00 committed by GitHub
parent 8014cebb20
commit 6af4335db1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
101 changed files with 6739 additions and 5973 deletions

View file

@ -178,10 +178,10 @@ const PinnedMessagesCard: React.FC<IProps> = ({ room, onClose, permalinkCreator
</div>
<Heading size="4" className="mx_PinnedMessagesCard_empty_header">
{_t("Nothing pinned, yet")}
{_t("right_panel|pinned_messages|empty")}
</Heading>
{_t(
"If you have permissions, open the menu on any message and select <b>Pin</b> to stick them here.",
"right_panel|pinned_messages|explainer",
{},
{
b: (sub) => <b>{sub}</b>,
@ -223,7 +223,7 @@ const PinnedMessagesCard: React.FC<IProps> = ({ room, onClose, permalinkCreator
header={
<div className="mx_BaseCard_header_title">
<Heading size="4" className="mx_BaseCard_header_title_heading">
{_t("Pinned messages")}
{_t("right_panel|pinned_messages|title")}
</Heading>
</div>
}