You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the ICU genrb command is not installed on your system, you can download and install it using the ICU ReadMe. If you do not wish to install ICU, and do not mind obscure error messages, edit Base/LocaleUtil.php:
publicstaticfunctiongetLocalizedMessageFromBundle($bundleName, $key, $locale)
{
return$key; // Add this line/* ... rest is ignored ... */
}
publicstaticfunctiongetLocalizedMessageFromBundleWithArguments($bundleName, $key, $args, $locale)
{
return$key; // Add this line/* ... rest is ignored ... */
}
You can also parse the language .txt files in Base/ErrorMessages, but since fallbacks are used, this could get complicated. root.txt contains the default en_US locale messages.
The text was updated successfully, but these errors were encountered:
If the ICU
genrb
command is not installed on your system, you can download and install it using the ICU ReadMe. If you do not wish to install ICU, and do not mind obscure error messages, editBase/LocaleUtil.php
:You can also parse the language
.txt
files inBase/ErrorMessages
, but since fallbacks are used, this could get complicated.root.txt
contains the defaulten_US
locale messages.The text was updated successfully, but these errors were encountered: