mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 12:28:50 +03:00
Merge pull request #1588 from pvagner/develop
Add some missing translatable strings
This commit is contained in:
commit
4603d593de
3 changed files with 5 additions and 2 deletions
|
@ -478,7 +478,7 @@ module.exports = React.createClass({
|
||||||
}
|
}
|
||||||
const toggleButton = (
|
const toggleButton = (
|
||||||
<div className={"mx_MemberEventListSummary_toggle"} onClick={this._toggleSummary}>
|
<div className={"mx_MemberEventListSummary_toggle"} onClick={this._toggleSummary}>
|
||||||
{ expanded ? 'collapse' : 'expand' }
|
{ expanded ? _t('collapse') : _t('expand') }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -253,7 +253,7 @@ module.exports = React.createClass({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h3>Addresses</h3>
|
<h3>{ _t('Addresses') }</h3>
|
||||||
<div className="mx_RoomSettings_aliasLabel">
|
<div className="mx_RoomSettings_aliasLabel">
|
||||||
{ _t('The main address for this room is') }: { canonical_alias_section }
|
{ _t('The main address for this room is') }: { canonical_alias_section }
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -448,6 +448,7 @@
|
||||||
"not specified": "not specified",
|
"not specified": "not specified",
|
||||||
"not set": "not set",
|
"not set": "not set",
|
||||||
"Remote addresses for this room:": "Remote addresses for this room:",
|
"Remote addresses for this room:": "Remote addresses for this room:",
|
||||||
|
"Addresses": "Addresses",
|
||||||
"The main address for this room is": "The main address for this room is",
|
"The main address for this room is": "The main address for this room is",
|
||||||
"Local addresses for this room:": "Local addresses for this room:",
|
"Local addresses for this room:": "Local addresses for this room:",
|
||||||
"This room has no local addresses": "This room has no local addresses",
|
"This room has no local addresses": "This room has no local addresses",
|
||||||
|
@ -612,6 +613,8 @@
|
||||||
"%(items)s and %(count)s others|other": "%(items)s and %(count)s others",
|
"%(items)s and %(count)s others|other": "%(items)s and %(count)s others",
|
||||||
"%(items)s and %(count)s others|one": "%(items)s and one other",
|
"%(items)s and %(count)s others|one": "%(items)s and one other",
|
||||||
"%(items)s and %(lastItem)s": "%(items)s and %(lastItem)s",
|
"%(items)s and %(lastItem)s": "%(items)s and %(lastItem)s",
|
||||||
|
"collapse": "collapse",
|
||||||
|
"expand": "expand",
|
||||||
"Custom of %(powerLevel)s": "Custom of %(powerLevel)s",
|
"Custom of %(powerLevel)s": "Custom of %(powerLevel)s",
|
||||||
"Custom level": "Custom level",
|
"Custom level": "Custom level",
|
||||||
"Room directory": "Room directory",
|
"Room directory": "Room directory",
|
||||||
|
|
Loading…
Reference in a new issue