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
What if there is spaces in the input text where these spaces should be preserved? So, comparing the spaces around | character with the input text would be a better solution.
I notice some unnecessary spaces when translating keys for plural. This cause the incorrect handling by laravel trans_choice() function.
there is
return array (
'restaurants' => '{0} :count Restaurants | {1} :count Restaurant | [2.4] :count Restaurants | [5, *] :count Restaurants',
);
should be
return array (
'restaurants' => '{0} :count Restaurants|{1} :count Restaurant|[2.4] :count Restaurants|[5, *] :count Restaurants'
);
The text was updated successfully, but these errors were encountered: