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
In many case when an exception is thrown there is a user-readable message, which is translated to English, but not all. Many of the translated ones are also marked for localization with the L.m() call.
Proposal is:
(1) Translate all German strings to English
(2) Mark them for localization as needed.
Current list can be queried with
git grep "throw new .*Exception" | grep -v "L.m"
(this gives now 191 hits, not all of them relevant though)
The text was updated successfully, but these errors were encountered:
In many case when an exception is thrown there is a user-readable message, which is translated to English, but not all. Many of the translated ones are also marked for localization with the L.m() call.
Proposal is:
(1) Translate all German strings to English
(2) Mark them for localization as needed.
Current list can be queried with
git grep "throw new .*Exception" | grep -v "L.m"
(this gives now 191 hits, not all of them relevant though)
The text was updated successfully, but these errors were encountered: