mirror of
https://github.com/friendica/friendica
synced 2025-04-27 11:50:11 +00:00
Capitalize post action translation strings
This commit is contained in:
parent
e7884b1409
commit
cac038639d
3 changed files with 22 additions and 22 deletions
|
@ -3016,18 +3016,18 @@ class Item
|
|||
'href' => "display/" . $item['guid'],
|
||||
'orig' => "display/" . $item['guid'],
|
||||
'title' => DI::l10n()->t('View on separate page'),
|
||||
'orig_title' => DI::l10n()->t('view on separate page'),
|
||||
'orig_title' => DI::l10n()->t('View on separate page'),
|
||||
];
|
||||
|
||||
if (!empty($item['plink'])) {
|
||||
$ret['href'] = DI::baseUrl()->remove($item['plink']);
|
||||
$ret["title"] = DI::l10n()->t('link to source');
|
||||
$ret['title'] = DI::l10n()->t('Link to source');
|
||||
}
|
||||
} elseif (!empty($item['plink']) && ($item['private'] != self::PRIVATE)) {
|
||||
$ret = [
|
||||
'href' => $item['plink'],
|
||||
'orig' => $item['plink'],
|
||||
'title' => DI::l10n()->t('link to source'),
|
||||
'title' => DI::l10n()->t('Link to source'),
|
||||
'orig_title' => DI::l10n()->t('Link to source'),
|
||||
];
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue