diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-02 22:40:51 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-02 22:40:51 +0200 |
commit | a4565e88edbc8e3bd092a475469769c86a4c350c (patch) | |
tree | a6a3c935b03a23ff87575c8c315cf8ba78fe68c2 /inc/Twig/Gettext/Test/Fixtures | |
parent | f6c9baab3efeec1d0efa151e276fc08d5b58f9e9 (diff) | |
download | wallabag-a4565e88edbc8e3bd092a475469769c86a4c350c.tar.gz wallabag-a4565e88edbc8e3bd092a475469769c86a4c350c.tar.zst wallabag-a4565e88edbc8e3bd092a475469769c86a4c350c.zip |
add Twig & refactor poche
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 %} | ||