19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:32:28 +01:00
parent 20ddc1b4a3
commit c0efcc53f5
1162 changed files with 125577 additions and 105287 deletions

View file

@ -0,0 +1,6 @@
def get_iap_error_message(env, error):
errors = {
"not_configured": env._("Something went wrong. Try again later"),
"no_subscription": env._("You don't have an active subscription"),
}
return errors.get(error, error)