This template is used for translation message extraction tests trans('single-quoted key') ?> trans('double-quoted key') ?> trans(<<<'EOF' heredoc key EOF ) ?> trans(<<<'EOF' nowdoc key EOF ) ?> trans( "double-quoted key with whitespace and escaped \$\n\" sequences" ) ?> trans( 'single-quoted key with whitespace and nonescaped \$\n\' sequences' ) ?> trans(<< trans(<<<'EOF' nowdoc key with whitespace and nonescaped \$\n sequences EOF ) ?> trans('single-quoted key with "quote mark at the end"') ?> transChoice( '{0} There is no apples|{1} There is one apple|]1,Inf[ There are %count% apples', 10, array('%count%' => 10) ) ?> trans('other-domain-test-no-params-short-array', array(), 'not_messages'); ?> trans('other-domain-test-no-params-long-array', array(), 'not_messages'); ?> trans('other-domain-test-params-short-array', array('foo' => 'bar'), 'not_messages'); ?> trans('other-domain-test-params-long-array', array('foo' => 'bar'), 'not_messages'); ?> transChoice('other-domain-test-trans-choice-short-array-%count%', 10, array('%count%' => 10), 'not_messages'); ?> transChoice('other-domain-test-trans-choice-long-array-%count%', 10, array('%count%' => 10), 'not_messages'); ?> trans('typecast', array('a' => (int) '123'), 'not_messages'); ?> transChoice('msg1', 10 + 1, array(), 'not_messages'); ?> transChoice('msg2', ceil(4.5), array(), 'not_messages'); ?>