From 2aa4a82499d4becd2284cdb482213d541b8804dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 16:29:10 +0200 Subject: Adding upstream version 86.0.1. Signed-off-by: Daniel Baumann --- .../hunspell/dictionary-sources/install-new-dict | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 l10n-zh-TW/extensions/spellcheck/hunspell/dictionary-sources/install-new-dict (limited to 'l10n-zh-TW/extensions/spellcheck/hunspell/dictionary-sources/install-new-dict') diff --git a/l10n-zh-TW/extensions/spellcheck/hunspell/dictionary-sources/install-new-dict b/l10n-zh-TW/extensions/spellcheck/hunspell/dictionary-sources/install-new-dict new file mode 100755 index 0000000000..24492cad22 --- /dev/null +++ b/l10n-zh-TW/extensions/spellcheck/hunspell/dictionary-sources/install-new-dict @@ -0,0 +1,39 @@ +#!/bin/sh + +# +# This script copies the new dictionary created by make-new-dict in +# place. +# + +set -e + +WKDIR="`pwd`" +export SCOWL="$WKDIR/scowl/" +SPELLER="$SCOWL/speller" + +set -x + +if [ -e orig-bk ]; then echo "$0: directory 'orig-bk' exists." 1>&2 ; exit 0; fi +mv orig orig-bk +mkdir orig +cp $SPELLER/en_US-custom.dic $SPELLER/en_US-custom.aff $SPELLER/README_en_US-custom.txt orig + +mkdir mozilla-bk +mv ../en-US.dic ../en-US.aff ../README_en_US.txt mozilla-bk + +# Convert the affix file to ISO8859-1 +sed -i=bak -e '/^ICONV/d' -e 's/^SET UTF-8$/SET ISO8859-1/' en_US-mozilla.aff + +# Convert the dictionary to ISO8859-1 +mv en_US-mozilla.dic en_US-mozilla-utf8.dic +iconv -f utf-8 -t iso-8859-1 < en_US-mozilla-utf8.dic > en_US-mozilla.dic + +cp en_US-mozilla.aff ../en-US.aff +cp en_US-mozilla.dic ../en-US.dic +cp README_en_US-mozilla.txt ../README_en_US.txt + +set +x + +echo "New dictionary copied into place. Please commit the changes." + + -- cgit v1.2.3