mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
29 lines
782 B
Plaintext
29 lines
782 B
Plaintext
export const emoji = <%= Emoji.standard.map(&:name).flatten.inspect %>;
|
|
export const aliases = <%= Emoji.aliases.inspect.gsub("=>", ":") %>;
|
|
export const translations = {
|
|
':)' : 'slight_smile',
|
|
':-)' : 'slight_smile',
|
|
':(' : 'frowning',
|
|
':-(' : 'frowning',
|
|
';)' : 'wink',
|
|
';-)' : 'wink',
|
|
':\'(' : 'cry',
|
|
':\'-(': 'cry',
|
|
':-\'(': 'cry',
|
|
':p' : 'stuck_out_tongue',
|
|
':P' : 'stuck_out_tongue',
|
|
':-P' : 'stuck_out_tongue',
|
|
':O' : 'open_mouth',
|
|
':-O' : 'open_mouth',
|
|
':D' : 'smiley',
|
|
':-D' : 'smiley',
|
|
':|' : 'expressionless',
|
|
':-|' : 'expressionless',
|
|
':/' : 'confused',
|
|
'8-)' : 'sunglasses',
|
|
";P" : 'stuck_out_tongue_winking_eye',
|
|
";-P" : 'stuck_out_tongue_winking_eye',
|
|
":$" : 'blush',
|
|
":-$" : 'blush'
|
|
};
|