diff options
author | Chocobozzz <me@florianbigard.com> | 2022-06-16 17:05:24 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-06-16 17:07:50 +0200 |
commit | baf99fcc65b2118d794a8b6fd537055505630b34 (patch) | |
tree | 0a8db9afd6f6f70b6403377e49064fec3b6b3acf /client/src/app/+admin/overview/users | |
parent | 8fe45ea7be58e499ce105fa9594a5f1bf9f1dd72 (diff) | |
download | PeerTube-baf99fcc65b2118d794a8b6fd537055505630b34.tar.gz PeerTube-baf99fcc65b2118d794a8b6fd537055505630b34.tar.zst PeerTube-baf99fcc65b2118d794a8b6fd537055505630b34.zip |
Fix strings that cannot be merged by xlf-merge
Diffstat (limited to 'client/src/app/+admin/overview/users')
-rw-r--r-- | client/src/app/+admin/overview/users/user-list/user-list.component.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+admin/overview/users/user-list/user-list.component.ts b/client/src/app/+admin/overview/users/user-list/user-list.component.ts index c3a7646cc..91f42546b 100644 --- a/client/src/app/+admin/overview/users/user-list/user-list.component.ts +++ b/client/src/app/+admin/overview/users/user-list/user-list.component.ts | |||
@@ -224,7 +224,7 @@ export class UserListComponent extends RestTable implements OnInit { | |||
224 | .subscribe({ | 224 | .subscribe({ |
225 | next: () => { | 225 | next: () => { |
226 | this.notifier.success( | 226 | this.notifier.success( |
227 | prepareIcu($localize`{count, plural, =1 {1 user} other {{count} users}} unbanned.`)( | 227 | prepareIcu($localize`{count, plural, =1 {1 user unbanned.} other {{count} users unbanned.}}`)( |
228 | { count: users.length }, | 228 | { count: users.length }, |
229 | $localize`${users.length} users unbanned.` | 229 | $localize`${users.length} users unbanned.` |
230 | ) | 230 | ) |
@@ -253,7 +253,7 @@ export class UserListComponent extends RestTable implements OnInit { | |||
253 | .subscribe({ | 253 | .subscribe({ |
254 | next: () => { | 254 | next: () => { |
255 | this.notifier.success( | 255 | this.notifier.success( |
256 | prepareIcu($localize`{count, plural, =1 {1 user} other {{count} users}} deleted.`)( | 256 | prepareIcu($localize`{count, plural, =1 {1 user deleted.} other {{count} users deleted.}}`)( |
257 | { count: users.length }, | 257 | { count: users.length }, |
258 | $localize`${users.length} users deleted.` | 258 | $localize`${users.length} users deleted.` |
259 | ) | 259 | ) |
@@ -271,7 +271,7 @@ export class UserListComponent extends RestTable implements OnInit { | |||
271 | .subscribe({ | 271 | .subscribe({ |
272 | next: () => { | 272 | next: () => { |
273 | this.notifier.success( | 273 | this.notifier.success( |
274 | prepareIcu($localize`{count, plural, =1 {1 user} other {{count} users}} email set as verified.`)( | 274 | prepareIcu($localize`{count, plural, =1 {1 user email set as verified.} other {{count} user emails set as verified.}}`)( |
275 | { count: users.length }, | 275 | { count: users.length }, |
276 | $localize`${users.length} users email set as verified.` | 276 | $localize`${users.length} users email set as verified.` |
277 | ) | 277 | ) |