It would be better to trim whitespaces at the beginning and end of the string.
Related to the laravel documentation, my string looks like this:
'{1} 1 inaktives Meeting|[0,2,*] :cnt inaktive Meetings
There is always a whitespace between the number and the text like in the official laravel documentation. This whitespace is removed if laravel provides the translated string. With this library the whitespace remains.
It would be better to trim whitespaces at the beginning and end of the string. Related to the laravel documentation, my string looks like this:
'{1} 1 inaktives Meeting|[0,2,*] :cnt inaktive Meetings
There is always a whitespace between the number and the text like in the official laravel documentation. This whitespace is removed if laravel provides the translated string. With this library the whitespace remains.Laravel results in: "
1 inaktives Meeting
" This library results in: "1 inaktives Meeting
"This could be a problem if I would add brackets or other content directly before or after the string.