Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong translation domain #9196

Merged
merged 1 commit into from Jun 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 0 additions & 13 deletions app/Resources/translations/default/AdminGlobalError.xlf

This file was deleted.

Expand Up @@ -614,6 +614,12 @@ File: controllers/admin/AdminThemesController.php:316</note>
</file>
<file original="src/PrestaShopBundle/Controller/Admin/ProductController.php" source-language="en-US" target-language="en" datatype="plaintext">
<body>
<trans-unit id="d3ee9a41133f8fc3c83c91d09053f249">
<source>The value of the PHP.ini setting "max_input_vars" must be increased to %value% in order to be able to submit the product form.</source>
<target>The value of the PHP.ini setting "max_input_vars" must be increased to %value% in order to be able to submit the product form.</target>
<note>Context:
File: src/PrestaShopBundle/Controller/Admin/ProductController.php:506</note>
</trans-unit>
<trans-unit id="11a257a80f8c8d76132470b171de6795">
<source>You do not have permission to delete this.</source>
<target>You do not have permission to delete this.</target>
Expand Down
Expand Up @@ -504,7 +504,7 @@ public function formAction($id, Request $request)
'error',
$this->trans(
'The value of the PHP.ini setting "max_input_vars" must be increased to %value% in order to be able to submit the product form.',
'Admin.Global.Error',
'Admin.Notifications.Error',
['%value%' => $combinationsInputs]
)
);
Expand Down