Avoid the use of <i> markup in a translation.

This commit is contained in:
hogren 2021-03-06 14:12:59 +01:00
parent 7006598d87
commit 42e609e66f
29 changed files with 42 additions and 29 deletions

View file

@ -76,7 +76,14 @@ endif;
<body data-compression="<?php echo rawurlencode($COMPRESSION); ?>">
<header>
<div id="aboutbox">
<?php echo I18n::_('%s is a minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted <i>in the browser</i> using 256 bits AES.', I18n::_($NAME)), ' ', $INFO; ?><br />
<?php echo sprintf(
I18n::_('%s is a minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted %sin the browser%s using 256 bits AES.',
I18n::_($NAME),
'%s', '%s'
),
'<i>', '</i>'), ' ', $INFO;
?>
<br />
<?php
if (strlen($NOTICE)):
?>