Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/locales/common.sh
1447 views
1
LANGS="en es de zh ru fr it nl ja hi pt ko pl tr he hu ar"
2
3
check_api_key() {
4
if [ -z "${SIMPLELOCALIZE_KEY_NEXT}" ]; then
5
echo "Error: SIMPLELOCALIZE_KEY_NEXT is not set or is empty. Please provide a valid API key for the CoCalc Pages project." >&2
6
exit 1
7
fi
8
}
9
10