diff --git a/htdocs/admin/export.php b/htdocs/admin/export.php
index c4ad077296a..936c6e2f135 100644
--- a/htdocs/admin/export.php
+++ b/htdocs/admin/export.php
@@ -51,37 +51,37 @@ include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
* View
*/
+$form=new Form($db);
+
$page_name = "ExportSetup";
llxHeader('', $langs->trans($page_name));
// Subheader
-$linkback = ''
- . $langs->trans("BackToModuleList") . '';
+$linkback = '' . $langs->trans("BackToModuleList") . '';
+
print_fiche_titre($langs->trans($page_name), $linkback);
-// Configuration header
+//$head = export_admin_prepare_head();
+$h=0;
+$head = array();
+$head[$h][0] = DOL_URL_ROOT.'/admin/export.php';
+$head[$h][1] = $langs->trans("Setup");
+$head[$h][2] = 'setup';
+$h++;
-dol_fiche_head(
- $head,
- 'settings',
- $langs->trans("ExportsArea"),
- 0,
- "exports"
-);
+dol_fiche_head($head, 'setup', $langs->trans("ExportsArea"), -1, "exports");
-// Setup page goes here
-$form=new Form($db);
print '
';
print '';
-print '| '.$langs->trans("ExportModel").' | '."\n";
+print ''.$langs->trans("Parameters").' | '."\n";
print ' | ';
print ' | '."\n";
// Example with a yes / no select
print '
';
-print '| '.$langs->trans("set_EXPORTS_SHARE_MODELS").' | ';
+print ''.$langs->trans("EXPORTS_SHARE_MODELS").' | ';
print ' | ';
print '';
print ' |
';
print '
';
+dol_fiche_end();
+
// End of page
llxFooter();
$db->close();
diff --git a/htdocs/langs/en_US/admin.lang b/htdocs/langs/en_US/admin.lang
index b50e25f50d4..7083ed1114e 100644
--- a/htdocs/langs/en_US/admin.lang
+++ b/htdocs/langs/en_US/admin.lang
@@ -1846,7 +1846,6 @@ FormatZip=Zip
MainMenuCode=Menu entry code (mainmenu)
ECMAutoTree=Show automatic ECM tree
OperationParamDesc=Define values to use for action, or how to extract values. For example:
VALUE:abc
REGEX:SUBJECT:([^\s]*)
REGEX:BODY:My company name is\s([^\s]*)
-##### Resource ####
ResourceSetup=Configuration du module Resource
UseSearchToSelectResource=Use a search form to choose a resource (rather than a drop-down list).
DisabledResourceLinkUser=Disable feature to link a resource to users
@@ -1856,4 +1855,6 @@ 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 use application from a text browser like lynx or links.
-ABankAccountMustBeDefinedOnPaymentModeSetup=Note: The bank account must be defined on the module of each payment mode (Paypal, Stripe, ...) to have this feature working.
\ No newline at end of file
+ABankAccountMustBeDefinedOnPaymentModeSetup=Note: The bank account must be defined on the module of each payment mode (Paypal, Stripe, ...) to have this feature working.
+EXPORTS_SHARE_MODELS=Export models are share with everybody
+ExportSetup=Setup of module Export
\ No newline at end of file