Fix translation strings for use with util/extract.php

- Change parentheses to “\x28” and “\x29”
- Remove leading commas
- Remove quotes before commas
This commit is contained in:
Hypolite Petovan 2018-01-24 16:51:32 -05:00
parent 6b44fbbda0
commit 9cd3b17743
17 changed files with 52 additions and 52 deletions

View file

@ -404,7 +404,7 @@ function check_form_security_token($typename = '', $formname = 'form_security_to
function check_form_security_std_err_msg()
{
return L10n::t('The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it.') . EOL;
return L10n::t("The form security token was not correct. This probably happened because the form has been opened for too long \x28>3 hours\x29 before submitting it.") . EOL;
}
function check_form_security_token_redirectOnErr($err_redirect, $typename = '', $formname = 'form_security_token')