Fix missing translation reported by Stefan Unverricht

This commit is contained in:
nathangray 2020-04-16 11:34:10 -06:00
parent 92af8ec297
commit 397fc8a620
2 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ function egwDragActionImplementation()
var restRows = pseudoNumRows - maxRows;
if (restRows)
{
moreRow.text((pseudoNumRows - maxRows) +' '+egw.lang('more %1 selected ...', itemLabel));
moreRow.text(egw.lang("%1 more %2 selected ...", (pseudoNumRows - maxRows), itemLabel));
}
table.append(moreRow);
break;

View File

@ -1968,7 +1968,7 @@ $filter['before']= date("d-M-Y", $cutoffdate2);
$attachments = $header['attachments'];
if (count($attachments) == 1)
{
$image = Api\Html::image('mail','attach',$attachments[0]['name'].(!empty($attachments[0]['mimeType'])?' ('.$attachments[0]['mimeType'].')':''));
$image = Api\Html::image('mail','attach',$attachments[0]['name']);
}
else
{