Fix help
This commit is contained in:
parent
72623f88df
commit
d503c1b6be
@ -482,8 +482,8 @@ if ($nbofactivatedmodules <= 1) $moreinfo .= ' '.img_warning($langs->trans("YouM
|
||||
print load_fiche_titre($langs->trans("ModulesSetup"), '', 'title_setup');
|
||||
|
||||
// Start to show page
|
||||
if ($mode == 'common') print '<span class="opacitymedium hideonsmartphone">'.$langs->trans("ModulesDesc")."<br></span>\n";
|
||||
if ($mode == 'commonkanban') print '<span class="opacitymedium hideonsmartphone">'.$langs->trans("ModulesDesc")."<br></span>\n";
|
||||
if ($mode == 'common') print '<span class="opacitymedium hideonsmartphone">'.$langs->trans("ModulesDesc", img_picto('', 'switch_off'))."<br></span>\n";
|
||||
if ($mode == 'commonkanban') print '<span class="opacitymedium hideonsmartphone">'.$langs->trans("ModulesDesc", img_picto('', 'switch_off'))."<br></span>\n";
|
||||
if ($mode == 'marketplace') print '<span class="opacitymedium hideonsmartphone">'.$langs->trans("ModulesMarketPlaceDesc")."<br></span>\n";
|
||||
if ($mode == 'deploy') print '<span class="opacitymedium hideonsmartphone">'.$langs->trans("ModulesDeployDesc", $langs->transnoentitiesnoconv("AvailableModules"))."<br></span>\n";
|
||||
if ($mode == 'develop') print '<span class="opacitymedium hideonsmartphone">'.$langs->trans("ModulesDevelopDesc")."<br></span>\n";
|
||||
|
||||
@ -158,11 +158,11 @@ class modWebsite extends DolibarrModules
|
||||
$this->remove($options);
|
||||
|
||||
// Copy flags and octicons directory
|
||||
$dirarray = array('common/flags', 'common/octicons');
|
||||
foreach ($dirarray as $dir)
|
||||
$dirarray = array('common/flags'=>'flags', 'common/octicons/build/svg'=>'octicons');
|
||||
foreach ($dirarray as $dirfrom => $dirtarget)
|
||||
{
|
||||
$src = DOL_DOCUMENT_ROOT.'/theme/'.$dir;
|
||||
$dest = DOL_DATA_ROOT.'/medias/image/'.$dir;
|
||||
$src = DOL_DOCUMENT_ROOT.'/theme/'.$dirfrom;
|
||||
$dest = DOL_DATA_ROOT.'/medias/image/'.$dirtarget;
|
||||
|
||||
if (is_dir($src))
|
||||
{
|
||||
|
||||
@ -199,7 +199,7 @@ FeatureDisabledInDemo=Feature disabled in demo
|
||||
FeatureAvailableOnlyOnStable=Feature only available on official stable versions
|
||||
BoxesDesc=Widgets are components showing some information that you can add to personalize some pages. You can choose between showing the widget or not by selecting target page and clicking 'Activate', or by clicking the trashcan to disable it.
|
||||
OnlyActiveElementsAreShown=Only elements from <a href="%s">enabled modules</a> are shown.
|
||||
ModulesDesc=The modules/applications determine which features are available in the software. Some modules require permissions to be granted to users after activating the module. Click the on/off button (at end of module line) to enable/disable a module/application.
|
||||
ModulesDesc=The modules/applications determine which features are available in the software. Some modules require permissions to be granted to users after activating the module. Click the on/off button <span class="small valignmiddle">%s</span> of each module to enable or disable a module/application.
|
||||
ModulesMarketPlaceDesc=You can find more modules to download on external websites on the Internet...
|
||||
ModulesDeployDesc=If permissions on your file system allow it, you can use this tool to deploy an external module. The module will then be visible on the tab <strong>%s</strong>.
|
||||
ModulesMarketPlaces=Find external app/modules
|
||||
|
||||
Loading…
Reference in New Issue
Block a user