Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7c9dffe

Browse filesBrowse files
committed
Merge branch '3.4' into 4.2
* 3.4: relax assertions in tests [Validator] Translate messages into Japanese Fix Thai translation in validators.th.xlf [FramworkBundle] mark any env vars found in the ide setting as used
2 parents 454574b + 46645ec commit 7c9dffe
Copy full SHA for 7c9dffe

File tree

Expand file treeCollapse file tree

4 files changed

+36
-7
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+36
-7
lines changed

‎src/Symfony/Bridge/Twig/Tests/Extension/AbstractBootstrap3LayoutTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/Twig/Tests/Extension/AbstractBootstrap3LayoutTest.php
+1-6Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2413,11 +2413,7 @@ public function testTimezone()
24132413
[@name="name"]
24142414
[@class="my&class form-control"]
24152415
[not(@required)]
2416-
[./optgroup
2417-
[@label="Europe"]
2418-
[./option[@value="Europe/Vienna"][@selected="selected"][.="Vienna"]]
2419-
]
2420-
[count(./optgroup)>10]
2416+
[.//option[@value="Europe/Vienna"][@selected="selected"]]
24212417
[count(.//option)>200]
24222418
'
24232419
);
@@ -2434,7 +2430,6 @@ public function testTimezoneWithPlaceholder()
24342430
'/select
24352431
[@class="my&class form-control"]
24362432
[./option[@value=""][not(@selected)][not(@disabled)][.="[trans]Select&Timezone[/trans]"]]
2437-
[count(./optgroup)>10]
24382433
[count(.//option)>201]
24392434
'
24402435
);

‎src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,8 @@ public function load(array $configs, ContainerBuilder $container)
193193
'vscode' => 'vscode://file/%%f:%%l',
194194
];
195195
$ide = $config['ide'];
196+
// mark any env vars found in the ide setting as used
197+
$container->resolveEnvPlaceholders($ide);
196198

197199
$container->setParameter('templating.helper.code.file_link_format', str_replace('%', '%%', ini_get('xdebug.file_link_format') ?: get_cfg_var('xdebug.file_link_format')) ?: (isset($links[$ide]) ? $links[$ide] : $ide));
198200
}

‎src/Symfony/Component/Validator/Resources/translations/validators.ja.xlf

Copy file name to clipboardExpand all lines: src/Symfony/Component/Validator/Resources/translations/validators.ja.xlf
+32Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,38 @@
330330
<source>This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}.</source>
331331
<target>このSWIFTコードはIBANコード({{ iban }})に関連付けられていません。</target>
332332
</trans-unit>
333+
<trans-unit id="86">
334+
<source>This value should be valid JSON.</source>
335+
<target>JSONでなければなりません。</target>
336+
</trans-unit>
337+
<trans-unit id="87">
338+
<source>This collection should contain only unique elements.</source>
339+
<target>要素は重複してはなりません。</target>
340+
</trans-unit>
341+
<trans-unit id="88">
342+
<source>This value should be positive.</source>
343+
<target>正の数でなければなりません。</target>
344+
</trans-unit>
345+
<trans-unit id="89">
346+
<source>This value should be either positive or zero.</source>
347+
<target>正の数、または0でなければなりません。</target>
348+
</trans-unit>
349+
<trans-unit id="90">
350+
<source>This value should be negative.</source>
351+
<target>負の数でなければなりません。</target>
352+
</trans-unit>
353+
<trans-unit id="91">
354+
<source>This value should be either negative or zero.</source>
355+
<target>負の数、または0でなければなりません。</target>
356+
</trans-unit>
357+
<trans-unit id="92">
358+
<source>This value is not a valid timezone.</source>
359+
<target>有効なタイムゾーンではありません。</target>
360+
</trans-unit>
361+
<trans-unit id="93">
362+
<source>This password has been leaked in a data breach, it must not be used. Please use another password.</source>
363+
<target>このパスワードは漏洩している為使用できません。</target>
364+
</trans-unit>
333365
</body>
334366
</file>
335367
</xliff>

‎src/Symfony/Component/Validator/Resources/translations/validators.th.xlf

Copy file name to clipboardExpand all lines: src/Symfony/Component/Validator/Resources/translations/validators.th.xlf
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
</trans-unit>
153153
<trans-unit id="41">
154154
<source>This value is already used.</source>
155-
<target>Tค่านี้ถูกใช้งานไปแล้ว</target>
155+
<target>ค่านี้ถูกใช้งานไปแล้ว</target>
156156
</trans-unit>
157157
<trans-unit id="42">
158158
<source>The size of the image could not be detected.</source>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.