diff options
author | thdox <thdox@free.fr> | 2014-05-18 10:20:43 +0200 |
---|---|---|
committer | thdox <thdox@free.fr> | 2014-05-18 10:20:43 +0200 |
commit | f390a50f25ae800bbafb8c37edf37b3e30808bec (patch) | |
tree | 3cd6d9578c1c4bae277951b9d36e9ddbff4a959a /tools | |
parent | 762546d34b48ae70c16985914046245239654c35 (diff) | |
download | fork-ledger-f390a50f25ae800bbafb8c37edf37b3e30808bec.tar.gz fork-ledger-f390a50f25ae800bbafb8c37edf37b3e30808bec.tar.bz2 fork-ledger-f390a50f25ae800bbafb8c37edf37b3e30808bec.zip |
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.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/spellcheck.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |