diff --git a/management/univention-appcenter/conffiles/usr/share/univention-management-console/i18n/de/apps.mo b/management/univention-appcenter/conffiles/usr/share/univention-management-console/i18n/de/apps.mo index 5da5c73..4a41d10 100644 --- a/management/univention-appcenter/conffiles/usr/share/univention-management-console/i18n/de/apps.mo +++ b/management/univention-appcenter/conffiles/usr/share/univention-management-console/i18n/de/apps.mo @@ -37,9 +37,11 @@ for app in apps: app_de = app.get_app_cache_obj().copy(locale='de').find_by_component_id(app.component_id) msgid = getattr(app_en, attr) msgstr = getattr(app_de, attr) + if not msgid: + continue entry = POEntry( msgid=msgid, - msgstr=msgstr + msgstr=msgstr or '' ) po.append(entry) print po.to_binary()