fix sorting of emotjies
This commit is contained in:
parent
c407f2f418
commit
59c4a2beb4
@ -6,6 +6,7 @@
|
||||
|
||||
from fenrirscreenreader.core import debug
|
||||
import string
|
||||
from collections import OrderedDict
|
||||
|
||||
punctuationData = {
|
||||
'LEVELDICT':{
|
||||
@ -15,47 +16,7 @@ punctuationData = {
|
||||
'all': string.punctuation + ' §',
|
||||
},
|
||||
'PUNCTDICT':{
|
||||
' ':'space',
|
||||
'&':'and',
|
||||
"'":"apostrophe",
|
||||
'@':'at',
|
||||
'\\':'backslash',
|
||||
'|':'bar',
|
||||
'!':'bang',
|
||||
'^':'carrot',
|
||||
':':'colon',
|
||||
',':'comma',
|
||||
'-':'dash',
|
||||
'$':'dollar',
|
||||
'.':'dot',
|
||||
'>':'greater',
|
||||
'`':'grave',
|
||||
'#':'hash',
|
||||
'{':'left brace',
|
||||
'[':'left bracket',
|
||||
'(':'left paren',
|
||||
'<':'less',
|
||||
'%':'percent',
|
||||
'+':'plus',
|
||||
'?':'question',
|
||||
'"':'quote',
|
||||
')':'right paren',
|
||||
'}':'right brace',
|
||||
']':'right bracket',
|
||||
';':'semicolon',
|
||||
'/':'slash',
|
||||
'*':'star',
|
||||
'~':'tilde',
|
||||
'_':'line',
|
||||
'=':'equals',
|
||||
},
|
||||
'CUSTOMDICT':{
|
||||
},
|
||||
'EMOTICONDICT':{
|
||||
':)':'smiley',
|
||||
';)':'winking face',
|
||||
'XD':'loool',
|
||||
':@':'angry face',
|
||||
':D':'lought'
|
||||
},
|
||||
'CUSTOMDICT':OrderedDict(),
|
||||
'EMOTICONDICT':OrderedDict(),
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user