Merge pull request #1408 from riking/patch-1
Add "nose" faces to the translations table
This commit is contained in:
commit
7dedc773bb
|
@ -12,16 +12,28 @@
|
||||||
// Also support default emotions
|
// Also support default emotions
|
||||||
var translations = {
|
var translations = {
|
||||||
':)' : 'smile',
|
':)' : 'smile',
|
||||||
|
':-)' : 'smile',
|
||||||
':(' : 'frowning',
|
':(' : 'frowning',
|
||||||
|
':-(' : 'frowning',
|
||||||
';)' : 'wink',
|
';)' : 'wink',
|
||||||
|
';-)' : 'wink',
|
||||||
':\'(' : 'cry',
|
':\'(' : 'cry',
|
||||||
|
':\'-(' : 'cry',
|
||||||
|
':-\'(' : 'cry',
|
||||||
':P' : 'stuck_out_tongue',
|
':P' : 'stuck_out_tongue',
|
||||||
|
':-P' : 'stuck_out_tongue',
|
||||||
':O' : 'open_mouth',
|
':O' : 'open_mouth',
|
||||||
|
':-O' : 'open_mouth',
|
||||||
':D' : 'grin',
|
':D' : 'grin',
|
||||||
|
':-D' : 'grin',
|
||||||
':|' : 'expressionless',
|
':|' : 'expressionless',
|
||||||
|
':-|' : 'expressionless',
|
||||||
";P" : 'stuck_out_tongue_winking_eye',
|
";P" : 'stuck_out_tongue_winking_eye',
|
||||||
|
";-P" : 'stuck_out_tongue_winking_eye',
|
||||||
';)' : 'wink',
|
';)' : 'wink',
|
||||||
|
';-)' : 'wink',
|
||||||
":$" : 'blush'
|
":$" : 'blush'
|
||||||
|
":-$" : 'blush'
|
||||||
};
|
};
|
||||||
|
|
||||||
Object.keys(translations).forEach(function (code) {
|
Object.keys(translations).forEach(function (code) {
|
||||||
|
|
Loading…
Reference in New Issue