mirror of https://github.com/vector-im/riot-web
Translate credits in help about section (#10676)
parent
2cec8b5a44
commit
483b53c148
|
@ -137,57 +137,97 @@ export default class HelpUserSettingsTab extends React.Component<IProps, IState>
|
||||||
<span className="mx_SettingsTab_subheading">{_t("Credits")}</span>
|
<span className="mx_SettingsTab_subheading">{_t("Credits")}</span>
|
||||||
<ul className="mx_SettingsTab_subsectionText">
|
<ul className="mx_SettingsTab_subsectionText">
|
||||||
<li>
|
<li>
|
||||||
The{" "}
|
{_t(
|
||||||
<a href="themes/element/img/backgrounds/lake.jpg" rel="noreferrer noopener" target="_blank">
|
"The <photo>default cover photo</photo> is © " +
|
||||||
default cover photo
|
"<author>Jesús Roncero</author> used under the terms of <terms>CC-BY-SA 4.0</terms>.",
|
||||||
</a>{" "}
|
{},
|
||||||
is ©
|
{
|
||||||
<a href="https://www.flickr.com/golan" rel="noreferrer noopener" target="_blank">
|
photo: (sub) => (
|
||||||
Jesús Roncero
|
<a
|
||||||
</a>{" "}
|
href="themes/element/img/backgrounds/lake.jpg"
|
||||||
used under the terms of
|
rel="noreferrer noopener"
|
||||||
<a
|
target="_blank"
|
||||||
href="https://creativecommons.org/licenses/by-sa/4.0/"
|
>
|
||||||
rel="noreferrer noopener"
|
{sub}
|
||||||
target="_blank"
|
</a>
|
||||||
>
|
),
|
||||||
CC-BY-SA 4.0
|
author: (sub) => (
|
||||||
</a>
|
<a href="https://www.flickr.com/golan" rel="noreferrer noopener" target="_blank">
|
||||||
.
|
{sub}
|
||||||
|
</a>
|
||||||
|
),
|
||||||
|
terms: (sub) => (
|
||||||
|
<a
|
||||||
|
href="https://creativecommons.org/licenses/by-sa/4.0/"
|
||||||
|
rel="noreferrer noopener"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
{sub}
|
||||||
|
</a>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
)}
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
The{" "}
|
{_t(
|
||||||
<a href="https://github.com/matrix-org/twemoji-colr" rel="noreferrer noopener" target="_blank">
|
"The <colr>twemoji-colr</colr> font is © <author>Mozilla Foundation</author> " +
|
||||||
twemoji-colr
|
"used under the terms of <terms>Apache 2.0</terms>.",
|
||||||
</a>{" "}
|
{},
|
||||||
font is ©
|
{
|
||||||
<a href="https://mozilla.org" rel="noreferrer noopener" target="_blank">
|
colr: (sub) => (
|
||||||
Mozilla Foundation
|
<a
|
||||||
</a>{" "}
|
href="https://github.com/matrix-org/twemoji-colr"
|
||||||
used under the terms of
|
rel="noreferrer noopener"
|
||||||
<a href="https://www.apache.org/licenses/LICENSE-2.0" rel="noreferrer noopener" target="_blank">
|
target="_blank"
|
||||||
Apache 2.0
|
>
|
||||||
</a>
|
{sub}
|
||||||
.
|
</a>
|
||||||
|
),
|
||||||
|
author: (sub) => (
|
||||||
|
<a href="https://mozilla.org" rel="noreferrer noopener" target="_blank">
|
||||||
|
{sub}
|
||||||
|
</a>
|
||||||
|
),
|
||||||
|
terms: (sub) => (
|
||||||
|
<a
|
||||||
|
href="https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
|
rel="noreferrer noopener"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
{sub}
|
||||||
|
</a>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
)}
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
The{" "}
|
{_t(
|
||||||
<a href="https://twemoji.twitter.com/" rel="noreferrer noopener" target="_blank">
|
"The <twemoji>Twemoji</twemoji> emoji art is © " +
|
||||||
Twemoji
|
"<author>Twitter, Inc and other contributors</author> used under the terms of " +
|
||||||
</a>{" "}
|
"<terms>CC-BY 4.0</terms>.",
|
||||||
emoji art is ©
|
{},
|
||||||
<a href="https://twemoji.twitter.com/" rel="noreferrer noopener" target="_blank">
|
{
|
||||||
Twitter, Inc and other contributors
|
twemoji: (sub) => (
|
||||||
</a>{" "}
|
<a href="https://twemoji.twitter.com/" rel="noreferrer noopener" target="_blank">
|
||||||
used under the terms of
|
{sub}
|
||||||
<a
|
</a>
|
||||||
href="https://creativecommons.org/licenses/by/4.0/"
|
),
|
||||||
rel="noreferrer noopener"
|
author: (sub) => (
|
||||||
target="_blank"
|
<a href="https://twemoji.twitter.com/" rel="noreferrer noopener" target="_blank">
|
||||||
>
|
{sub}
|
||||||
CC-BY 4.0
|
</a>
|
||||||
</a>
|
),
|
||||||
.
|
terms: (sub) => (
|
||||||
|
<a
|
||||||
|
href="https://creativecommons.org/licenses/by/4.0/"
|
||||||
|
rel="noreferrer noopener"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
{sub}
|
||||||
|
</a>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
)}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1568,6 +1568,9 @@
|
||||||
"Olm version:": "Olm version:",
|
"Olm version:": "Olm version:",
|
||||||
"Legal": "Legal",
|
"Legal": "Legal",
|
||||||
"Credits": "Credits",
|
"Credits": "Credits",
|
||||||
|
"The <photo>default cover photo</photo> is © <author>Jesús Roncero</author> used under the terms of <terms>CC-BY-SA 4.0</terms>.": "The <photo>default cover photo</photo> is © <author>Jesús Roncero</author> used under the terms of <terms>CC-BY-SA 4.0</terms>.",
|
||||||
|
"The <colr>twemoji-colr</colr> font is © <author>Mozilla Foundation</author> used under the terms of <terms>Apache 2.0</terms>.": "The <colr>twemoji-colr</colr> font is © <author>Mozilla Foundation</author> used under the terms of <terms>Apache 2.0</terms>.",
|
||||||
|
"The <twemoji>Twemoji</twemoji> emoji art is © <author>Twitter, Inc and other contributors</author> used under the terms of <terms>CC-BY 4.0</terms>.": "The <twemoji>Twemoji</twemoji> emoji art is © <author>Twitter, Inc and other contributors</author> used under the terms of <terms>CC-BY 4.0</terms>.",
|
||||||
"For help with using %(brand)s, click <a>here</a>.": "For help with using %(brand)s, click <a>here</a>.",
|
"For help with using %(brand)s, click <a>here</a>.": "For help with using %(brand)s, click <a>here</a>.",
|
||||||
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.",
|
"For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.": "For help with using %(brand)s, click <a>here</a> or start a chat with our bot using the button below.",
|
||||||
"Chat with %(brand)s Bot": "Chat with %(brand)s Bot",
|
"Chat with %(brand)s Bot": "Chat with %(brand)s Bot",
|
||||||
|
|
Loading…
Reference in New Issue