diff --git a/admin-dev/themes/default/template/controllers/translations/helpers/view/translation_modules.tpl b/admin-dev/themes/default/template/controllers/translations/helpers/view/translation_modules.tpl
index 56d1eea55..3abee6038 100644
--- a/admin-dev/themes/default/template/controllers/translations/helpers/view/translation_modules.tpl
+++ b/admin-dev/themes/default/template/controllers/translations/helpers/view/translation_modules.tpl
@@ -30,9 +30,23 @@
{l s='Language'} : {$lang} - {$translation_type}
{l s='Expressions to translate'} : {$count}.
- {l s='Click on the titles to open fieldsets'}.
- {$limit_warning}
- {if !$suoshin_exceeded}
+ {if $post_limit_exceeded}
+
+ {if $limit_warning['error_type'] == 'suhosin'}
+ {l s='Warning, your hosting provider is using the suhosin patch for PHP, which limits the maximum number of fields to post in a form:'}
+
+ {$limit_warning['post.max_vars']}{l s='for suhosin.post.max_vars.'}
+ {$limit_warning['request.max_vars']} {l s='for suhosin.request.max_vars.'}
+ {l s='Please ask your hosting provider to increase the suhosin post and request limit to'}
+ {else}
+ {l s='Warning, your PHP configuration limits the maximum number of fields to post in a form:'}
+ {$limit_warning['max_input_vars']} {l s='for max_input_vars.'}
+ {l s='Please ask your hosting provider to increase the this limit to'}
+ {/if}
+ {$limit_warning['needed_limit']} {l s='at least.'} {l s='or edit the translation file manually.'}
+
+ {else}
+ {l s='Click on the titles to open fieldsets'}.