Skip to content

Commit

Permalink
Fixed list of excluded dirs for JMS translation extraction (#318)
Browse files Browse the repository at this point in the history
For more details see #318

* Fixed incorrect list of excluded directories for JMS translation extraction

* [UI] Regenerated JMS translations
  • Loading branch information
alongosz authored Jan 10, 2024
1 parent b650333 commit 025412e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/bundle/Core/DependencyInjection/IbexaCoreExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ private function prependJMSTranslation(ContainerBuilder $container): void
],
'output_dir' => __DIR__ . '/../Resources/translations/',
'output_format' => 'xlf',
'excluded_dirs' => ['Behat', 'Tests', 'node_modules', 'Features'],
'excluded_dirs' => ['Test', 'Features'],
],
],
]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@
<target>The User does not have the '%function%' '%module%' permission with: %with%</target>
<note>key: The User does not have the '%function%' '%module%' permission with: %with%</note>
</trans-unit>
<trans-unit id="3b2e044f9c9821aef27834972d90f59f28b1a0b4" resname="Token '%tokenType%:%token%' expired on '%when%'">
<source>Token '%tokenType%:%token%' expired on '%when%'</source>
<target>Token '%tokenType%:%token%' expired on '%when%'</target>
<note>key: Token '%tokenType%:%token%' expired on '%when%'</note>
</trans-unit>
<trans-unit id="27a77deaffe8551b169928675adc64ae8450937f" resname="User &quot;%login%&quot; already exists">
<source>User "%login%" already exists</source>
<target>User "%login%" already exists</target>
Expand Down

0 comments on commit 025412e

Please sign in to comment.