diff --git a/htdocs/admin/agenda_other.php b/htdocs/admin/agenda_other.php
index f16226c812b..639671b4647 100644
--- a/htdocs/admin/agenda_other.php
+++ b/htdocs/admin/agenda_other.php
@@ -35,7 +35,7 @@ if (!$user->admin)
accessforbidden();
// Load translation files required by the page
-$langs->loadLangs(array('admin', 'other', 'agenda'));
+$langs->loadLangs(array('admin', 'other', 'agenda', 'users'));
$action = GETPOST('action','alpha');
$value = GETPOST('value','alpha');
@@ -353,7 +353,8 @@ print ''."\n";
// AGENDA_DEFAULT_VIEW
print '
'."\n";
-print '| '.$langs->trans("AGENDA_DEFAULT_VIEW").' | '."\n";
+$htmltext=$langs->trans("ThisValueCanOverwrittenOnUserLevel", $langs->transnoentitiesnoconv("UserGUISetup"));
+print ''.$form->textwithpicto($langs->trans("AGENDA_DEFAULT_VIEW"), $htmltext).' | '."\n";
print ' | '."\n";
print ''."\n";
$tmplist=array(''=>' ', 'show_list'=>$langs->trans("ViewList"), 'show_month'=>$langs->trans("ViewCal"), 'show_week'=>$langs->trans("ViewWeek"), 'show_day'=>$langs->trans("ViewDay"), 'show_peruser'=>$langs->trans("ViewPerUser"));
diff --git a/htdocs/langs/en_US/admin.lang b/htdocs/langs/en_US/admin.lang
index 77b5894b709..d92a0b47bcc 100644
--- a/htdocs/langs/en_US/admin.lang
+++ b/htdocs/langs/en_US/admin.lang
@@ -1853,4 +1853,5 @@ ConfirmUnactivation=Confirm module reset
OnMobileOnly=On small screen (smartphone) only
DisableProspectCustomerType=Disable the "Prospect + Customer" third party type (so third party must be Prospect or Customer but can't be both)
MAIN_OPTIMIZEFORTEXTBROWSER=Simplify interface for blind person
-MAIN_OPTIMIZEFORTEXTBROWSERDesc=Enable this option if you are a blind person, or if you use the application from a text browser like Lynx or Links.
\ No newline at end of file
+MAIN_OPTIMIZEFORTEXTBROWSERDesc=Enable this option if you are a blind person, or if you use the application from a text browser like Lynx or Links.
+ThisValueCanOverwrittenOnUserLevel=This value can be overwritten by each user from its user page - tab '%s'
\ No newline at end of file
|