mirror of
https://github.com/friendica/friendica
synced 2024-12-22 22:00:16 +00:00
fix gettext error
xgettext was complaining that the term 'Error' was used once without the plural form
This commit is contained in:
parent
b2b879851c
commit
db95def246
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class Source extends BaseModeration
|
|||
'urllbl' => $this->t('URL'),
|
||||
'mentionlbl' => $this->t('Mention'),
|
||||
'implicitlbl' => $this->t('Implicit Mention'),
|
||||
'error' => $this->t('Error'),
|
||||
'error' => $this->tt('Error','Errors', 1),
|
||||
'notfound' => $this->t('Item not found'),
|
||||
'nosource' => $this->t('No source recorded'),
|
||||
'noconfig' => !$this->config->get('debug', 'store_source') ? $this->t('Please make sure the <code>debug.store_source</code> config key is set in <code>config/local.config.php</code> for future items to have sources.') : '',
|
||||
|
|
Loading…
Reference in a new issue