mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-10-02 08:28:41 -04:00
Avoid the use of <i> markup in a translation.
This commit is contained in:
parent
7006598d87
commit
42e609e66f
29 changed files with 42 additions and 29 deletions
|
@ -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)):
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue