mirror of
https://github.com/juewuy/ShellCrash.git
synced 2026-03-11 16:01:28 +00:00
8 lines
175 B
Bash
8 lines
175 B
Bash
|
|
load_lang() {
|
|
i18n=$(cat "$CRASHDIR"/configs/i18n.cfg 2>/dev/null)
|
|
[ -z "$i18n" ] && i18n=chs
|
|
|
|
file="$CRASHDIR/lang/$i18n/$1.lang"
|
|
[ -s "$file" ] && . "$file"
|
|
} |