diff --git a/htdocs/install/check.php b/htdocs/install/check.php
index 06e9e5147e9..97ddb315ca9 100644
--- a/htdocs/install/check.php
+++ b/htdocs/install/check.php
@@ -122,7 +122,7 @@ if (!function_exists("imagecreate"))
print '
'.$langs->trans("ErrorPHPDoesNotSupportGD")."
\n";
// $checksok = 0; // If ko, just warning. So check must still be 1 (otherwise no way to install)
} else {
- print '
'.$langs->trans("PHPSupportGD")."
\n";
+ print '
'.$langs->trans("PHPSupport", "GD")."
\n";
}
@@ -133,7 +133,7 @@ if (!function_exists("curl_init"))
print '
'.$langs->trans("ErrorPHPDoesNotSupportCurl")."
\n";
// $checksok = 0; // If ko, just warning. So check must still be 1 (otherwise no way to install)
} else {
- print '
'.$langs->trans("PHPSupportCurl")."
\n";
+ print '
'.$langs->trans("PHPSupport", "Curl")."
\n";
}
// Check if PHP calendar extension is available
@@ -141,7 +141,7 @@ if (!function_exists("easter_date"))
{
print '
'.$langs->trans("ErrorPHPDoesNotSupportCalendar")."
\n";
} else {
- print '
'.$langs->trans("PHPSupportCalendar")."
\n";
+ print '
'.$langs->trans("PHPSupport", "Calendar")."
\n";
}
@@ -152,7 +152,7 @@ if (!function_exists("utf8_encode"))
print '
'.$langs->trans("ErrorPHPDoesNotSupportUTF8")."
\n";
// $checksok = 0; // If ko, just warning. So check must still be 1 (otherwise no way to install)
} else {
- print '
'.$langs->trans("PHPSupportUTF8")."
\n";
+ print '
'.$langs->trans("PHPSupport", "UTF8")."
\n";
}
@@ -165,7 +165,7 @@ if (empty($_SERVER["SERVER_ADMIN"]) || $_SERVER["SERVER_ADMIN"] != 'doliwamp@loc
print '
'.$langs->trans("ErrorPHPDoesNotSupportIntl")."
\n";
// $checksok = 0; // If ko, just warning. So check must still be 1 (otherwise no way to install)
} else {
- print '
'.$langs->trans("PHPSupportIntl")."
\n";
+ print '
'.$langs->trans("PHPSupport", "Intl")."
\n";
}
}