Reputation: 9750
I am using TortoiseSVN on Windows 10 and want to use the English (default) spell-checker in TortoiseSVN. Instead, it uses a German language checker that I neither installed nor want. It is exactly the opposite from this question.
Note, that I have changed my Windows locale to EN-US, because the TortoiseSVN manual says that the following strategy applies to TortoiseSVN:
- If no project language is set, or that language is not installed, try the language corresponding to the Windows locale.
here are my Windows language settings. I even specified that my Location to be in the US (which I'm not), but still it does not work.
Any ideas?
Upvotes: 10
Views: 1719
Reputation: 1
I used the following workaround with a custom dictionary. Go to the TortoiseSVN installation folder
C:\Program Files\TortoiseSVN\Languages\
and open the file en_GB.dic
in a text editor.
Copy the whole content into the custom dictionary file located under
%APPDATA%\TortoiseSVN\1031.dic
Finally, replace the word suffixes with RegEx.
Search for ^(.*)/.*$
and replace with
$1
.
Upvotes: 0
Reputation: 2135
Make sure you don't have tsvn:projectlanguage set for the project
Open TortoiseSVN ==> Settings ==> General ==> Dialogs 2 and check "Only use spellchecker when tsvn:projectlanguage is set"
This will disable spell checking, at least you don't have every word underlined with red and can read what you type clearly
Tortoise SVN developers should have add an option to disable their not working spell-checker completely, but they seem to not care at all
Upvotes: 6
Reputation: 26816
Quoting an answer from a thread at the TortoiseSVN discussion forums:
On Win8 and later, TSVN uses the spell checker that's built into the OS itself. And the language it uses is the one of the OS, or if you set the
tsvn:projectlanguage
then it uses that language.So you have to set the
tsvn:projectlanguage
to English [for every project] to get the correct spell checking.
An alternative would be to install the language pack (in your case English) to the OS and use English as default system language.
Upvotes: 5