OLD | NEW |
1 # phonetic suggestions by PHONE and optional ph field of dictionary words | 1 # phonetic suggestions by PHONE and optional ph field of dictionary words |
2 # Documentationo of PHONE: http://aspell.net/man-html/Phonetic-Code.html | 2 # Documentationo of PHONE: http://aspell.net/man-html/Phonetic-Code.html |
3 | 3 |
4 # phonetic_english.h - phonetic transformation rules for use with phonetic.c | 4 # phonetic_english.h - phonetic transformation rules for use with phonetic.c |
5 # Copyright (C) 2000 Björn Jacke | 5 # Copyright (C) 2000 Björn Jacke |
6 # | 6 # |
7 # This rule set is based on Lawrence Phillips original metaphone | 7 # This rule set is based on Lawrence Phillips original metaphone |
8 # algorithm with modifications made by Michael Kuhn in his | 8 # algorithm with modifications made by Michael Kuhn in his |
9 # C implantation, more modifications by Björn Jacke when | 9 # C implantation, more modifications by Björn Jacke when |
10 # converting the algorithm to a rule set and minor | 10 # converting the algorithm to a rule set and minor |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 # | 246 # |
247 # W --> SILENT if not followed by a vowel | 247 # W --> SILENT if not followed by a vowel |
248 # W if followed by a vowel | 248 # W if followed by a vowel |
249 # | 249 # |
250 # X --> KS | 250 # X --> KS |
251 # | 251 # |
252 # Y --> SILENT if not followed by a vowel | 252 # Y --> SILENT if not followed by a vowel |
253 # Y if followed by a vowel | 253 # Y if followed by a vowel |
254 # | 254 # |
255 # Z --> S | 255 # Z --> S |
OLD | NEW |