mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Use "%s" instead of "%h" in format strings
Use the standard string type specifier instead of "%h" in format strings. Both specifiers are treated equally in __() so we shouldn't break anything here. This also allows us to replace the hacky substitution algorithm in __() by vsprintf(). Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
72b657eb17
commit
ee4b398033
4 changed files with 10 additions and 10 deletions
|
@ -25,7 +25,7 @@ $dbh = db_connect();
|
|||
|
||||
<?php
|
||||
echo __(
|
||||
'Welcome to the AUR! Please read the %hAUR User Guidelines%h and %hAUR TU Guidelines%h for more information.',
|
||||
'Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU Guidelines%s for more information.',
|
||||
'<a href="http://wiki.archlinux.org/index.php/AUR_User_Guidelines">',
|
||||
'</a>',
|
||||
'<a href="http://wiki.archlinux.org/index.php/AUR_Trusted_User_Guidelines">',
|
||||
|
@ -37,7 +37,7 @@ echo __(
|
|||
|
||||
<?php
|
||||
echo __(
|
||||
'Contributed PKGBUILDs %hmust%h conform to the %hArch Packaging Standards%h otherwise they will be deleted!',
|
||||
'Contributed PKGBUILDs %smust%s conform to the %sArch Packaging Standards%s otherwise they will be deleted!',
|
||||
'<b>', '</b>',
|
||||
'<a href="http://wiki.archlinux.org/index.php/Arch_Packaging_Standards">',
|
||||
'</a>'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue