Browse Source

add special characters (fix warnings)

remotes/karagrat/master
Romain Goffe 12 years ago
parent
commit
1b0e1b453e
  1. 5
      sortindex.py

5
sortindex.py

@ -9,6 +9,8 @@ replacePattern = {
'`A': 'À',
'`a': 'à',
'^a': 'â',
"'a": 'á',
"~a": 'ã',
'oe': 'œ',
"'e" : 'é',
"`e" : 'è',
@ -21,6 +23,9 @@ replacePattern = {
r'"\i' : 'i',
r'^\i' : 'i',
'"u' : 'ü',
'`u' : 'ù',
'`u' : 'ù',
'~n' : 'ñ',
"c C" : 'Ç',
"c c" : 'ç',
}

Loading…
Cancel
Save