Skip to content

Commit d724d0f

Browse files
authored
Merge pull request #682 from telerik/DinkoK-patch-15
Update dictionaries.md
2 parents 4ff6370 + 82d0dd1 commit d724d0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

controls/spellchecker/dictionaries.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Dictionaries
33
page_title: Dictionaries - WinForms SpellChecker
4-
description: WinForms SpellChecker comes with one predefined dictionary which checks the English language. Check what dictonaries are available.
4+
description: WinForms SpellChecker comes with one predefined dictionary that checks the English language. Check what dictionaries are available.
55
slug: winforms/spellchecker/dictionaries
66
tags: dictionaries
77
published: True
@@ -11,7 +11,7 @@ previous_url: spellchecker-dictionaries
1111

1212
# Dictionaries
1313

14-
**RadSpellChecker** comes with one predefined dictionary which checks the English language. In case you need a dictionary for another language, you check the [Dictionaries for RadSpellChecker](http://www.telerik.com/community/code-library/winforms/localization-providers/dictionaries-for-radspellchecker.aspx) article where our customers have provided their own implementation of dictionaries for the different languages. The following section demonstrates how you can load one of these dictionaries in your own project.
14+
**RadSpellChecker** comes with one predefined dictionary that checks the English language. In case you need a dictionary for another language, you check the [Dictionaries for RadSpellChecker](https://github.com/telerik/winforms-sdk/tree/master/Localization%20Providers%20and%20Dictionaries) article where our customers have provided their own implementation of dictionaries for the different languages. The following section demonstrates how you can load one of these dictionaries in your own project.
1515

1616
>note If you are experiencing any difficulties with downloading the dictionaries from the Code Library, feel free to download them from [this](https://www.telerik.com/forums/dictionaries-for-radspellchecker) forum post.
1717
@@ -24,7 +24,7 @@ previous_url: spellchecker-dictionaries
2424

2525
2. Now let's load the dictionary file (*.TDF) in our project as a [project resource](http://msdn.microsoft.com/en-us/library/3bka19x4(v=vs.100).aspx).
2626

27-
3. Further, we should create a **WordDictionary** descendant. Let's call the descendant **GermanDictionary**. In this class we should override the **EnsureDictionaryLoadedOverride** method, create a **MemoryStream** based on the TDF resource and call the **Load** method of the **WordDictionary** class passing the **MemoryStream** as a parameter. The code looks as shown below:
27+
3. Further, we should create a **WordDictionary** descendant. Let's call the descendant **GermanDictionary**. In this class, we should override the **EnsureDictionaryLoadedOverride** method, create a **MemoryStream** based on the TDF resource and call the **Load** method of the **WordDictionary** class passing the **MemoryStream** as a parameter. The code looks as shown below:
2828

2929
#### Creating a custom WordDictionary
3030

0 commit comments

Comments
 (0)