diff --git a/src/components/views/elements/RoomAliasField.js b/src/components/views/elements/RoomAliasField.js
index d3de6a5d34..ee18913971 100644
--- a/src/components/views/elements/RoomAliasField.js
+++ b/src/components/views/elements/RoomAliasField.js
@@ -45,7 +45,7 @@ export default class RoomAliasField extends React.PureComponent {
const maxlength = 255 - this.props.domain.length - 2; // 2 for # and :
return (
allowEmpty || !!value,
- invalid: () => _t("Please provide a room alias"),
+ invalid: () => _t("Please provide a room address"),
}, {
key: "taken",
final: true,
@@ -107,8 +107,8 @@ export default class RoomAliasField extends React.PureComponent {
return !!err.errcode;
}
},
- valid: () => _t("This alias is available to use"),
- invalid: () => _t("This alias is already in use"),
+ valid: () => _t("This address is available to use"),
+ invalid: () => _t("This address is already in use"),
},
],
});
diff --git a/src/components/views/room_settings/AliasSettings.js b/src/components/views/room_settings/AliasSettings.js
index 3994d78390..37d1e66e98 100644
--- a/src/components/views/room_settings/AliasSettings.js
+++ b/src/components/views/room_settings/AliasSettings.js
@@ -220,10 +220,10 @@ export default class AliasSettings extends React.Component {
}
}).catch((err) => {
console.error(err);
- Modal.createTrackedDialog('Error creating alias', '', ErrorDialog, {
- title: _t("Error creating alias"),
+ Modal.createTrackedDialog('Error creating address', '', ErrorDialog, {
+ title: _t("Error creating address"),
description: _t(
- "There was an error creating that alias. It may not be allowed by the server " +
+ "There was an error creating that address. It may not be allowed by the server " +
"or a temporary failure occurred.",
),
});
@@ -245,15 +245,15 @@ export default class AliasSettings extends React.Component {
console.error(err);
let description;
if (err.errcode === "M_FORBIDDEN") {
- description = _t("You don't have permission to delete the alias.");
+ description = _t("You don't have permission to delete the address.");
} else {
description = _t(
- "There was an error removing that alias. It may no longer exist or a temporary " +
+ "There was an error removing that address. It may no longer exist or a temporary " +
"error occurred.",
);
}
- Modal.createTrackedDialog('Error removing alias', '', ErrorDialog, {
- title: _t("Error removing alias"),
+ Modal.createTrackedDialog('Error removing address', '', ErrorDialog, {
+ title: _t("Error removing address"),
description,
});
});
diff --git a/src/components/views/settings/tabs/room/SecurityRoomSettingsTab.js b/src/components/views/settings/tabs/room/SecurityRoomSettingsTab.js
index eb2b885a22..c67596a3a5 100644
--- a/src/components/views/settings/tabs/room/SecurityRoomSettingsTab.js
+++ b/src/components/views/settings/tabs/room/SecurityRoomSettingsTab.js
@@ -247,7 +247,7 @@ export default class SecurityRoomSettingsTab extends React.Component {
- {_t("To link to this room, please add an alias.")}
+ {_t("To link to this room, please add an address.")}
);
diff --git a/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.js b/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.js
index d22b7ec183..f1fe5f2556 100644
--- a/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.js
+++ b/src/components/views/settings/tabs/user/MjolnirUserSettingsTab.js
@@ -84,7 +84,7 @@ export default class MjolnirUserSettingsTab extends React.Component {
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createTrackedDialog('Failed to subscribe to Mjolnir list', '', ErrorDialog, {
title: _t('Error subscribing to list'),
- description: _t('Please verify the room ID or alias and try again.'),
+ description: _t('Please verify the room ID or address and try again.'),
});
} finally {
this.setState({busy: false});
@@ -305,7 +305,7 @@ export default class MjolnirUserSettingsTab extends React.Component {