Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 3d91b31

Browse files
committed
i18n invited, and delete stale warning
1 parent 5e3af22 commit 3d91b31

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

src/components/views/rooms/MemberList.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ var CallHandler = require("../../../CallHandler");
2828
var Invite = require("../../../Invite");
2929

3030
var INITIAL_LOAD_NUM_MEMBERS = 30;
31-
var SHARE_HISTORY_WARNING =
32-
<span>
33-
Newly invited users will see the history of this room. <br/>
34-
If you'd prefer invited users not to see messages that were sent before they joined, <br/>
35-
turn off, 'Share message history with new users' in the settings for this room.
36-
</span>;
3731

3832
module.exports = React.createClass({
3933
displayName: 'MemberList',
@@ -355,7 +349,7 @@ module.exports = React.createClass({
355349
if (invitedMemberTiles.length > 0) {
356350
invitedSection = (
357351
<div className="mx_MemberList_invited">
358-
<h2>Invited</h2>
352+
<h2>{ _t("Invited") }</h2>
359353
<div className="mx_MemberList_wrapper">
360354
{invitedMemberTiles}
361355
</div>

src/i18n/strings/en_EN.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,7 @@
305305
"Invalid file%(extra)s": "Invalid file%(extra)s",
306306
"%(senderName)s invited %(targetName)s.": "%(senderName)s invited %(targetName)s.",
307307
"Invite new room members": "Invite new room members",
308+
"Invited": "Invited",
308309
"Invites": "Invites",
309310
"Invites user with given id to current room": "Invites user with given id to current room",
310311
"is a": "is a",

src/i18n/strings/fr.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@
311311
"Invalid Email Address": "Adresse e-mail invalide",
312312
"%(senderName)s invited %(targetName)s.": "%(senderName)s a invité %(targetName)s.",
313313
"Invite new room members": "Inviter de nouveaux membres",
314+
"Invited": "Invités",
314315
"Invites": "Invitations",
315316
"Invites user with given id to current room": "Inviter l’utilisateur avec un ID donné dans le salon actuel",
316317
"is a": "est un",

0 commit comments

Comments
 (0)