From f390a50f25ae800bbafb8c37edf37b3e30808bec Mon Sep 17 00:00:00 2001 From: thdox Date: Sun, 18 May 2014 10:20:43 +0200 Subject: Fix spell check language. I am on a non English based system, and when spell check starts it uses by default my language that is not English. This fix should work on Linux and Mac OS. I doubt it will work on Windows, but anyway spellcheck.sh is a development tool and the base of our developers are on Unix based systems. --- tools/spellcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/spellcheck.sh b/tools/spellcheck.sh index 7a51a18d..182f32cb 100755 --- a/tools/spellcheck.sh +++ b/tools/spellcheck.sh @@ -1,3 +1,3 @@ #!/bin/sh -aspell check --mode=texinfo $(dirname $0)/../doc/ledger3.texi +aspell --lang=en_US.UTF-8 check --mode=texinfo $(dirname $0)/../doc/ledger3.texi -- cgit v1.2.3