mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-12 18:36:53 +00:00
16 lines
272 B
Plaintext
Executable File
16 lines
272 B
Plaintext
Executable File
--TEST--
|
|
"plural" filter
|
|
--TEMPLATE--
|
|
{{ 'partition'|plural('fr') }}
|
|
{{ 'partition'|plural('fr', all=true)|join(',') }}
|
|
{{ 'person'|plural('fr') }}
|
|
{{ 'person'|plural('en', all=true)|join(',') }}
|
|
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
partitions
|
|
partitions
|
|
persons
|
|
persons,people
|