mirror of
https://github.com/mattermost/mattermost.git
synced 2026-08-26 21:27:40 -05:00
Fix reversed preposition in the audit log's user-removed row
audit_table.userRemoved read 'Removed {username} to the {channelName} channel'
-- it described a removal as an addition, right next to audit_table.userAdded
which uses the same wording with 'to'. In an audit log, a row that states the
opposite of what happened is worse than a typo.
Nothing needs re-translating. All 20 non-English locales already say 'from'
(von, du canal, から, из, khỏi): every translator silently corrected the English
rather than reproducing it, so this makes the English match translations that
were already right. The single exception is en-AU, which is a deliberate copy
of the source and therefore inherited the bug; it is corrected here too.
I previously flagged this as needing 21 re-translations. That was wrong -- I
had not checked what the catalogs actually said.
This commit is contained in:
@@ -34,7 +34,7 @@ const holders = defineMessages({
|
||||
},
|
||||
userRemoved: {
|
||||
id: 'audit_table.userRemoved',
|
||||
defaultMessage: 'Removed {username} to the {channelName} channel',
|
||||
defaultMessage: 'Removed {username} from the {channelName} channel',
|
||||
},
|
||||
attemptedRegisterApp: {
|
||||
id: 'audit_table.attemptedRegisterApp',
|
||||
|
||||
@@ -3512,7 +3512,7 @@
|
||||
"audit_table.updatedRol": "Updated user role(s) to ",
|
||||
"audit_table.userAdded": "Added {username} to the {channelName} channel",
|
||||
"audit_table.userId": "User ID",
|
||||
"audit_table.userRemoved": "Removed {username} to the {channelName} channel",
|
||||
"audit_table.userRemoved": "Removed {username} from the {channelName} channel",
|
||||
"audit_table.verified": "Successfully verified your email address",
|
||||
"authorize.allow": "Allow",
|
||||
"authorize.allowAccess": "Allow <b>{appName}</b> access?",
|
||||
|
||||
@@ -4297,7 +4297,7 @@
|
||||
"audit_table.updatePicture": "Updated your profile picture",
|
||||
"audit_table.userAdded": "Added {username} to the {channelName} channel",
|
||||
"audit_table.userId": "User ID",
|
||||
"audit_table.userRemoved": "Removed {username} to the {channelName} channel",
|
||||
"audit_table.userRemoved": "Removed {username} from the {channelName} channel",
|
||||
"audit_table.verified": "Successfully verified your email address",
|
||||
"authorize.allow": "Allow",
|
||||
"authorize.allowAccess": "Allow <b>{appName}</b> access?",
|
||||
|
||||
Reference in New Issue
Block a user