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

Commit 1e442b2

Browse files
authored
Fix inconsistent grammar in device sign out modal (#8253)
1 parent 137c015 commit 1e442b2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/components/views/settings/DevicesPanel.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,9 @@ export default class DevicesPanel extends React.Component<IProps, IState> {
205205
continueKind: "primary",
206206
},
207207
[SSOAuthEntry.PHASE_POSTAUTH]: {
208-
title: _t("Confirm signing out these devices"),
208+
title: _t("Confirm signing out these devices", {
209+
count: numDevices,
210+
}),
209211
body: _t("Click the button below to confirm signing out these devices.", {
210212
count: numDevices,
211213
}),

src/i18n/strings/en_EN.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,8 @@
12261226
"Unable to load device list": "Unable to load device list",
12271227
"Confirm logging out these devices by using Single Sign On to prove your identity.|other": "Confirm logging out these devices by using Single Sign On to prove your identity.",
12281228
"Confirm logging out these devices by using Single Sign On to prove your identity.|one": "Confirm logging out this device by using Single Sign On to prove your identity.",
1229-
"Confirm signing out these devices": "Confirm signing out these devices",
1229+
"Confirm signing out these devices|other": "Confirm signing out these devices",
1230+
"Confirm signing out these devices|one": "Confirm signing out this device",
12301231
"Click the button below to confirm signing out these devices.|other": "Click the button below to confirm signing out these devices.",
12311232
"Click the button below to confirm signing out these devices.|one": "Click the button below to confirm signing out this device.",
12321233
"Sign out devices|other": "Sign out devices",

0 commit comments

Comments
 (0)