2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 05:26:47 +00:00

remove const keyword

This commit is contained in:
Oliver Walters 2022-05-02 13:20:37 +10:00
parent 95c3bc5ae5
commit 69bbc3bec3

View File

@ -105,7 +105,7 @@ def generate_locale_list(locales):
lc = locale
cc = ''
output.write(f' const Locale("{lc}", "{cc}"), // Translations available in app_{locale}.arb\n')
output.write(f' Locale("{lc}", "{cc}"), // Translations available in app_{locale}.arb\n')
output.write("];\n")
output.write("")