aboutsummaryrefslogtreecommitdiff
path: root/basic.sh
diff options
context:
space:
mode:
Diffstat (limited to 'basic.sh')
-rw-r--r--basic.sh17
1 files changed, 9 insertions, 8 deletions
diff --git a/basic.sh b/basic.sh
index 891d9c5..0cb5186 100644
--- a/basic.sh
+++ b/basic.sh
@@ -25,14 +25,7 @@
# All methods operate on the file "$tmp".
-typeset -a langs
-langs=(
- fra-deu deu-fra
- deu-eng eng-deu
- fra-eng eng-fra
- spa-eng eng-spa
- )
-
+# Dictionaries in the VCS tree, GPL2 assumed.
typeset -a vcs_langs
vcs_langs=(
deu-eng eng-deu
@@ -40,6 +33,14 @@ vcs_langs=(
spa-eng eng-spa
)
+typeset -a wikdict_langs
+wikdict_langs=(
+ fra-deu deu-fra
+ )
+
+typeset -a langs
+langs=( ${vcs_langs[@]} ${wikdict_langs[@]} )
+
function init
{
tmp_d="$(mktemp -d)"