diff options
Diffstat (limited to 'inc/Twig/Gettext/Test/Fixtures')
-rw-r--r-- | inc/Twig/Gettext/Test/Fixtures/twig/empty.twig | 1 | ||||
-rw-r--r-- | inc/Twig/Gettext/Test/Fixtures/twig/plural.twig | 5 | ||||
-rw-r--r-- | inc/Twig/Gettext/Test/Fixtures/twig/singular.twig | 9 |
3 files changed, 15 insertions, 0 deletions
diff --git a/inc/Twig/Gettext/Test/Fixtures/twig/empty.twig b/inc/Twig/Gettext/Test/Fixtures/twig/empty.twig new file mode 100644 index 00000000..05f0d26a --- /dev/null +++ b/inc/Twig/Gettext/Test/Fixtures/twig/empty.twig | |||
@@ -0,0 +1 @@ | |||
Nothing to translate here. | |||
diff --git a/inc/Twig/Gettext/Test/Fixtures/twig/plural.twig b/inc/Twig/Gettext/Test/Fixtures/twig/plural.twig new file mode 100644 index 00000000..f9754ff4 --- /dev/null +++ b/inc/Twig/Gettext/Test/Fixtures/twig/plural.twig | |||
@@ -0,0 +1,5 @@ | |||
1 | {% trans %} | ||
2 | Hey {{ name }}, I have one apple. | ||
3 | {% plural apple_count %} | ||
4 | Hey {{ name }}, I have {{ count }} apples. | ||
5 | {% endtrans %} | ||
diff --git a/inc/Twig/Gettext/Test/Fixtures/twig/singular.twig b/inc/Twig/Gettext/Test/Fixtures/twig/singular.twig new file mode 100644 index 00000000..d757cf90 --- /dev/null +++ b/inc/Twig/Gettext/Test/Fixtures/twig/singular.twig | |||
@@ -0,0 +1,9 @@ | |||
1 | {% trans "Hello World!" %} | ||
2 | |||
3 | {% trans %} | ||
4 | Hello World! | ||
5 | {% endtrans %} | ||
6 | |||
7 | {% trans %} | ||
8 | Hello {{ name }}! | ||
9 | {% endtrans %} | ||