Fix missing translation

This commit is contained in:
Laurent Destailleur
2023-09-10 21:41:55 +02:00
parent 58d7531048
commit aa78a1e27a
4 changed files with 8 additions and 4 deletions

View File

@@ -630,6 +630,10 @@ Module600Desc=Send email notifications triggered by a business event: per user (
Module600Long=Note that this module sends emails in real-time when a specific business event occurs. If you are looking for a feature to send email reminders for agenda events, go into the setup of module Agenda.
Module610Name=Product Variants
Module610Desc=Creation of product variants (color, size etc.)
Module650Name=Bills Of Material (BOM)
Module650Desc=Module to define your Bills Of Materials (BOM). Can be used for Manufacturing Resource Planning by the module Manufacturing Orders (MO)
Module660Name=Manufacturing Resource Planning (MRP)
Module660Desc=Module to Manage Manufacturing Orders (MO)
Module700Name=Donations
Module700Desc=Donation management
Module770Name=Expense Reports

View File

@@ -7796,7 +7796,7 @@ table.jPicker {
max-width: 370px;
}
}
/* rule to reduce top menu - 2nd reduction: Reduce width of top menu icons again */
/* rule to reduce top menu - 2nd reduction: Reduce width of top menu icons again (<?php echo $nbtopmenuentries ?> menu entries) */
@media only screen and (max-width: <?php echo empty($conf->global->THEME_ELDY_WITDHOFFSET_FOR_REDUC2) ? round($nbtopmenuentries * 69, 0) + 130 : $conf->global->THEME_ELDY_WITDHOFFSET_FOR_REDUC2; ?>px) /* reduction 2 */
{
li.tmenucompanylogo {
@@ -7806,7 +7806,7 @@ table.jPicker {
height: 23px;
}
div.tmenucenter {
max-width: <?php echo round(26); ?>px; /* size of viewport */
max-width: <?php echo max(26, ceil(300 / ($nbtopmenuentriesreal + 2))); ?>px; /* size of viewport */
text-overflow: clip;
}
span.mainmenuaspan {

View File

@@ -265,12 +265,11 @@ $colortext = join(',', colorStringToArray($colortext));
$colortextlink = join(',', colorStringToArray($colortextlink));
$nbtopmenuentries = $menumanager->showmenu('topnb');
$nbtopmenuentriesreal = $nbtopmenuentries;
if ($conf->browser->layout == 'phone') {
$nbtopmenuentries = max($nbtopmenuentries, 10);
}
$minwidthtmenu = 66; /* minimum width for one top menu entry */
$heightmenu = 50; /* height of top menu, part with image */
$heightmenu2 = 49; /* height of top menu, part with login */

View File

@@ -271,6 +271,7 @@ $colortext = join(',', colorStringToArray($colortext));
$colortextlink = join(',', colorStringToArray($colortextlink));
$nbtopmenuentries = $menumanager->showmenu('topnb');
$nbtopmenuentriesreal = $nbtopmenuentries;
if ($conf->browser->layout == 'phone') {
$nbtopmenuentries = max($nbtopmenuentries, 10);
}