firewalld: fix i18n

+13
+1
pkgs/by-name/fi/firewalld/package.nix
··· 54 54 55 55 patches = [ 56 56 ./respect-xml-catalog-files-var.patch 57 + ./specify-localedir.patch 57 58 ]; 58 59 59 60 postPatch =
+12
pkgs/by-name/fi/firewalld/specify-localedir.patch
··· 1 + --- a/src/firewall/config/__init__.py.in 2 + +++ b/src/firewall/config/__init__.py.in 3 + @@ -19,6 +19,9 @@ 4 + DOMAIN = "firewalld" 5 + import gettext 6 + 7 + +locale.bindtextdomain(DOMAIN, "/usr/share/locale") 8 + +gettext.bindtextdomain(DOMAIN, "/usr/share/locale") 9 + + 10 + gettext.install(domain=DOMAIN) 11 + 12 + from . import dbus # noqa: F401