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
all strings was added to the lang/en.php file with NULL as the translation - I would have hoped that the translated string was the same as the key, but that's another issue :)
I then did
php artisan translations:check en --translate-missing
and the result is not as expected, e.g.
'Address: :address' => 'Address: :side5',
not sure why :address is changed to :side5 and in general all :placeholder is changed in the language file
The text was updated successfully, but these errors were encountered:
'Go to page :page' => 'Go to page :base_asset2',
'Symbol :symbol Quantity to sell :symbolBalance is more than is available :availableSymbolBalance ' => 'Symbol :side1 Quantity to sell :side2 is more than is available :side3 ',
'Welcome to :sitename' => 'Welcome to :id1',
This is working:
':symbol performance' => ':symbol performance',
All of the above was => null
before I executed
php artisan translations:check en --translate-missing
I use
__()
for all stringsExample:
I did a
all strings was added to the lang/en.php file with NULL as the translation - I would have hoped that the translated string was the same as the key, but that's another issue :)
I then did
and the result is not as expected, e.g.
not sure why :address is changed to :side5 and in general all :placeholder is changed in the language file
The text was updated successfully, but these errors were encountered: