File: wdanish.config

package info (click to toggle)
ispell-da 1.4.22-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,304 kB
  • ctags: 5
  • sloc: makefile: 84; sh: 62
file content (18 lines) | stat: -rw-r--r-- 497 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh -e

## Source debconf library.
. /usr/share/debconf/confmodule.sh

## Ask about default dictionary
db_input medium wdanish/default_dict
db_go

## Set default dictionary
db_get wdanish/default_dict
if [ "$RET" = "true" ]; then
  /usr/sbin/update-alternatives --install /usr/share/dict/words dictionary \
					  /usr/share/dict/dansk 60
else
  /usr/sbin/update-alternatives --install /usr/share/dict/words dictionary \
                                          /usr/share/dict/dansk 10
fi