1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| $t('header.titles.title_a');
| $tc('missing.a', 2);
| $t('header.steps[0]');
| i18n.t('header.titles.title_a');
| i18n.t(
| 'header.titles.title_a',
| 2,
| );
| $t('Don\'t leave me behind!');
| $t('Early ' string termination');
| $t("Early " string termination");
| $t(`Backtick: \``);
| .t("Optimistic match 1")
| t("Optimistic match 2")
|
| // False positive. Should not produce a match.
| gt("FALSE POSITIVE 1")
| // False positive. Should not produce a match.
| ;t("FALSE POSITIVE 2")
|
|