CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/locales/common.sh
Views: 791
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