diff --git a/htdocs/admin/dav.php b/htdocs/admin/dav.php
index cb3f7ab2072..90b82421702 100644
--- a/htdocs/admin/dav.php
+++ b/htdocs/admin/dav.php
@@ -123,7 +123,9 @@ else
{
print '
| ';
$tooltiphelp = (($langs->trans($key.'Tooltip') != $key.'Tooltip') ? $langs->trans($key.'Tooltip') : '');
- print $form->textwithpicto($langs->trans($key), $tooltiphelp);
+ $label = $langs->trans($key);
+ if ($key == 'DAV_RESTICT_ON_IP') $label = $langs->trans("RESTRICT_ON_IP");
+ print $form->textwithpicto($label, $tooltiphelp);
print ' | ';
if ($key == 'DAV_ALLOW_PRIVATE_DIR')
{
|