Fixed a typo in l10n docs

Signed-off-by: Thomas Citharel <nextcloud@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-01-05 11:10:11 +01:00 committed by backportbot[bot]
parent abeeda3860
commit 496f76746d

View File

@ -119,7 +119,7 @@ There are global functions **t()** and **n()** available for translating strings
.. code-block:: js
t('myapp', 'Hello World!');
t('myapp', '{name} is available. Get {linkstart}more information{linkend}}', {name: 'Nextcloud 16', linkstart: '<a href="...">', linkend: '</a>'});
t('myapp', '{name} is available. Get {linkstart}more information{linkend}', {name: 'Nextcloud 16', linkstart: '<a href="...">', linkend: '</a>'});
n('myapp', 'Import %n calendar into {collection}', 'Import %n calendars into {collection}', selectionLength, {collection: 'Nextcloud'});