mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
Fix missing translation reported by Stefan Unverricht
This commit is contained in:
parent
92af8ec297
commit
397fc8a620
@ -129,7 +129,7 @@ function egwDragActionImplementation()
|
|||||||
var restRows = pseudoNumRows - maxRows;
|
var restRows = pseudoNumRows - maxRows;
|
||||||
if (restRows)
|
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);
|
table.append(moreRow);
|
||||||
break;
|
break;
|
||||||
|
@ -1968,7 +1968,7 @@ $filter['before']= date("d-M-Y", $cutoffdate2);
|
|||||||
$attachments = $header['attachments'];
|
$attachments = $header['attachments'];
|
||||||
if (count($attachments) == 1)
|
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
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user