Mercurial > hg > sonic-visualiser
view misc/update-i18n.sh @ 2265:d33dff02b39b sandbox-notarize
Work on sandboxing (possibly) and using the hardened runtime for notarization. Supply appropriate bundle ID for helpers as well as main application, and request inherited sandbox entitlements. Currently works with sandboxing (apparently) but not yet with the hardened runtime, where we can't load plugins signed by third parties even with the com.apple.security.cs.disable-library-validation entitlement because their team IDs don't match the host. Possibly that exception is supposed to be requested some other way?
author | Chris Cannam |
---|---|
date | Thu, 25 Apr 2019 16:46:02 +0100 |
parents | bd3cb9d6db66 |
children |
line wrap: on
line source
#!/bin/sh LUPDATE="lupdate" LRELEASE="lrelease" if lupdate-qt5 -version >/dev/null 2>&1; then LUPDATE="lupdate-qt5" LRELEASE="lrelease-qt5" fi LANGUAGES="ru en_GB en_US cs_CZ" for LANG in $LANGUAGES; do $LUPDATE \ svcore/*/*.h svcore/*/*.cpp \ svcore/*/*/*.h svcore/*/*/*.cpp \ svgui/*/*.h svgui/*/*.cpp \ svapp/*/*.h svapp/*/*.cpp \ */*.h */*.cpp \ -ts i18n/sonic-visualiser_$LANG.ts done for LANG in $LANGUAGES; do $LRELEASE i18n/sonic-visualiser_$LANG.ts done