summaryrefslogtreecommitdiff
path: root/vendor/symfony/translation/Tests/fixtures/extractor/translation.html.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-11-23 14:53:24 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-11-23 17:58:41 +0000
commitd501c45d339d4a2d06248f9197d7875a4df14e48 (patch)
tree6354050630acc6b16124600a9a6597fcb9fb599c /vendor/symfony/translation/Tests/fixtures/extractor/translation.html.php
parentb5f5afdbfd53e7e50eb7aa9959fdbdfed101a6e5 (diff)
downloadwebtrees-d501c45d339d4a2d06248f9197d7875a4df14e48.tar.gz
webtrees-d501c45d339d4a2d06248f9197d7875a4df14e48.tar.bz2
webtrees-d501c45d339d4a2d06248f9197d7875a4df14e48.zip
Remove dependency on symfony httpfoundation/kernel
Diffstat (limited to 'vendor/symfony/translation/Tests/fixtures/extractor/translation.html.php')
-rw-r--r--vendor/symfony/translation/Tests/fixtures/extractor/translation.html.php59
1 files changed, 0 insertions, 59 deletions
diff --git a/vendor/symfony/translation/Tests/fixtures/extractor/translation.html.php b/vendor/symfony/translation/Tests/fixtures/extractor/translation.html.php
deleted file mode 100644
index 5085eab439..0000000000
--- a/vendor/symfony/translation/Tests/fixtures/extractor/translation.html.php
+++ /dev/null
@@ -1,59 +0,0 @@
-This template is used for translation message extraction tests
-<?php echo $view['translator']->trans('single-quoted key'); ?>
-<?php echo $view['translator']->trans('double-quoted key'); ?>
-<?php echo $view['translator']->trans(<<<EOF
-heredoc key
-EOF
-); ?>
-<?php echo $view['translator']->trans(<<<'EOF'
-nowdoc key
-EOF
-); ?>
-<?php echo $view['translator']->trans(
- "double-quoted key with whitespace and escaped \$\n\" sequences"
-); ?>
-<?php echo $view['translator']->trans(
- 'single-quoted key with whitespace and nonescaped \$\n\' sequences'
-); ?>
-<?php echo $view['translator']->trans(<<<EOF
-heredoc key with whitespace and escaped \$\n sequences
-EOF
-); ?>
-<?php echo $view['translator']->trans(<<<'EOF'
-nowdoc key with whitespace and nonescaped \$\n sequences
-EOF
-); ?>
-
-<?php echo $view['translator']->trans('single-quoted key with "quote mark at the end"'); ?>
-
-<?php echo $view['translator']->transChoice(
- '{0} There is no apples|{1} There is one apple|]1,Inf[ There are %count% apples',
- 10,
- ['%count%' => 10]
-); ?>
-
-<?php echo $view['translator']->trans('concatenated'.' message'.<<<EOF
- with heredoc
-EOF
-.<<<'EOF'
- and nowdoc
-EOF
-); ?>
-
-<?php echo $view['translator']->trans('other-domain-test-no-params-short-array', [], 'not_messages'); ?>
-
-<?php echo $view['translator']->trans('other-domain-test-no-params-long-array', [], 'not_messages'); ?>
-
-<?php echo $view['translator']->trans('other-domain-test-params-short-array', ['foo' => 'bar'], 'not_messages'); ?>
-
-<?php echo $view['translator']->trans('other-domain-test-params-long-array', ['foo' => 'bar'], 'not_messages'); ?>
-
-<?php echo $view['translator']->transChoice('other-domain-test-trans-choice-short-array-%count%', 10, ['%count%' => 10], 'not_messages'); ?>
-
-<?php echo $view['translator']->transChoice('other-domain-test-trans-choice-long-array-%count%', 10, ['%count%' => 10], 'not_messages'); ?>
-
-<?php echo $view['translator']->trans('typecast', ['a' => (int) '123'], 'not_messages'); ?>
-<?php echo $view['translator']->transChoice('msg1', 10 + 1, [], 'not_messages'); ?>
-<?php echo $view['translator']->transChoice('msg2', ceil(4.5), [], 'not_messages'); ?>
-
-<?php echo $view['translator']->trans('default domain', [], null); ?>