1 🚨 [Error] test/input/js/broken.js:0
3 line: c('Action').t('Salut')
4 fix: You should not use - c(<context>).t(<string>) or c(<context>).c(<string>)
5 but c(<context>).t`<string>`
7 🚨 [Error] test/input/js/broken.js:1
9 line: c('Action').c('Robert')
10 fix: You should not use - c(<context>).t(<string>) or c(<context>).c(<string>)
11 but c(<context>).t`<string>`
13 🚨 [Error] test/input/js/broken.js:2
15 line: c('Action').c('jeanne')
16 fix: You should not use - c(<context>).t(<string>) or c(<context>).c(<string>)
17 but c(<context>).t`<string>`
19 🚨 [Error] test/input/js/broken.js:3
21 line: c('Action').t('Monique')
22 fix: You should not use - c(<context>).t(<string>) or c(<context>).c(<string>)
23 but c(<context>).t`<string>`
25 🚨 [Error] test/input/js/broken.js:4
27 line: c('Action').`OUPS`
28 fix: You should not use - c(<context>).c`<string>` or c(<context>).`<string>`
29 but c(<context>).t`<string>`
31 🚨 [Error] test/input/js/broken.js:5
33 line: c('Action').`OUPS 2`
34 fix: You should not use - c(<context>).c`<string>` or c(<context>).`<string>`
35 but c(<context>).t`<string>`
37 🚨 [Error] test/input/js/broken.js:6
39 line: c('Action').c`Nope monique`
40 fix: You should not use - c(<context>).c`<string>` or c(<context>).`<string>`
41 but c(<context>).t`<string>`
43 🚨 [Error] test/input/js/broken.js:7
45 line: c('Action').c`Nope monique 2`
46 fix: You should not use - c(<context>).c`<string>` or c(<context>).`<string>`
47 but c(<context>).t`<string>`
49 🚨 [Error] test/input/js/broken.js:8
50 match: c('Action').ngettext(msgid`Day`, '
51 line: c('Action').ngettext(msgid`Day`, 'Days', modifiedValue)
52 fix: Plural form is - ngettext(msgid`<string single>`, `<string plural>`, value)
54 🚨 [Error] test/input/js/broken.js:9
55 match: c('Action').ngettext(msgid`Miinute`, "
56 line: c('Action').ngettext(msgid`Miinute`, "Miinutes", modifiedValue)
57 fix: Plural form is - ngettext(msgid`<string single>`, `<string plural>`, value)
59 🚨 [Error] test/input/js/broken.js:10
60 match: c('Action').ngettext(msgid('Miinute'), "
61 line: c('Action').ngettext(msgid('Miinute'), "Miinutes", modifiedValue)
62 fix: Plural form is - ngettext(msgid`<string single>`, `<string plural>`, value)
64 🚨 [Error] test/input/js/broken.js:16
66 `new_plans_mailpro2022_team_management_session_management_tooltip`
68 line: `new_plans_mailpro2022_team_management_session_management_tooltip`
69 fix: You should not use backticks for the context definition. It is a static string
70 best to use c('<context>').t`<string>`