s/canonical address/main address/g for consistency

This commit is contained in:
Matthew Hodgson 2018-09-20 11:41:59 +01:00
parent a8d224736c
commit 1157320cba
2 changed files with 4 additions and 4 deletions

View file

@ -246,13 +246,13 @@ function textForCanonicalAliasEvent(ev) {
const newAlias = ev.getContent().alias;
if (newAlias) {
return _t('%(senderName)s set the canonical address for this room to %(address)s.', {
return _t('%(senderName)s set the main address for this room to %(address)s.', {
senderName: senderName,
address: ev.getContent().alias,
});
}
else if (oldAlias) {
return _t('%(senderName)s removed the canonical address for this room.', {
return _t('%(senderName)s removed the main address for this room.', {
senderName: senderName,
});
}