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/edit-dictionary | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 l10n-zh-TW/extensions/spellcheck/hunspell/dictionary-sources/edit-dictionary (limited to 'l10n-zh-TW/extensions/spellcheck/hunspell/dictionary-sources/edit-dictionary') diff --git a/l10n-zh-TW/extensions/spellcheck/hunspell/dictionary-sources/edit-dictionary b/l10n-zh-TW/extensions/spellcheck/hunspell/dictionary-sources/edit-dictionary new file mode 100755 index 0000000000..ad77e47fd1 --- /dev/null +++ b/l10n-zh-TW/extensions/spellcheck/hunspell/dictionary-sources/edit-dictionary @@ -0,0 +1,31 @@ +#!/bin/sh +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +# +# edit-dictionary + +set -e + +if [ -z "$EDITOR" ]; then + echo 'Need to set the $EDITOR environment variable to your favorite editor!' + exit 1 +fi + +# Strip the first line that contains the count +tail -n +2 ../en-US.dic > en-US.stripped + +# Open the patched hunspell editor and let the user edit it +echo "Now the dictionary is going to be opened for you to edit. When you're done, just quit the editor" +echo -n "Press Enter to begin." +read foo +$EDITOR en-US.stripped + +# Add back the line count +wc -l < en-US.stripped | tr -d '[:blank:]' > en-US.dic +LC_ALL=C sort en-US.stripped >> en-US.dic + +# Clean up +rm -f en-US.stripped + -- cgit v1.2.3