Tango/GNOME smilies. Props jdub. fixes #10145
git-svn-id: http://svn.automattic.com/wordpress/trunk@11685 1a063a9b-81f0-0310-95a4-ce76da25c4cd
|
@ -2607,50 +2607,63 @@ function smilies_init() {
|
||||||
|
|
||||||
if ( !isset( $wpsmiliestrans ) ) {
|
if ( !isset( $wpsmiliestrans ) ) {
|
||||||
$wpsmiliestrans = array(
|
$wpsmiliestrans = array(
|
||||||
':mrgreen:' => 'icon_mrgreen.gif',
|
':mrgreen:' => 'mrgreen.png',
|
||||||
':neutral:' => 'icon_neutral.gif',
|
':neutral:' => 'face-plain.png',
|
||||||
':twisted:' => 'icon_twisted.gif',
|
':twisted:' => 'face-devilish.png',
|
||||||
':arrow:' => 'icon_arrow.gif',
|
':monkey:' => 'face-monkey.png',
|
||||||
':shock:' => 'icon_eek.gif',
|
':angel:' => 'face-angel.png',
|
||||||
':smile:' => 'icon_smile.gif',
|
':arrow:' => 'stock_right.png',
|
||||||
':???:' => 'icon_confused.gif',
|
':devil:' => 'face-devilish.png',
|
||||||
':cool:' => 'icon_cool.gif',
|
':shock:' => 'face-surprise.png',
|
||||||
':evil:' => 'icon_evil.gif',
|
':smile:' => 'face-smile.png',
|
||||||
':grin:' => 'icon_biggrin.gif',
|
':smirk:' => 'face-smirk.png',
|
||||||
':idea:' => 'icon_idea.gif',
|
':???:' => 'face-worried.png',
|
||||||
':oops:' => 'icon_redface.gif',
|
':cool:' => 'face-cool.png',
|
||||||
':razz:' => 'icon_razz.gif',
|
':evil:' => 'face-devilish.png',
|
||||||
':roll:' => 'icon_rolleyes.gif',
|
':grin:' => 'face-smile-big.png',
|
||||||
':wink:' => 'icon_wink.gif',
|
':idea:' => 'dialog-information.png',
|
||||||
':cry:' => 'icon_cry.gif',
|
':kiss:' => 'face-kiss.png',
|
||||||
':eek:' => 'icon_surprised.gif',
|
':oops:' => 'face-embarrassed.png',
|
||||||
':lol:' => 'icon_lol.gif',
|
':razz:' => 'face-raspberry.png',
|
||||||
':mad:' => 'icon_mad.gif',
|
':roll:' => 'face-raspberry.png',
|
||||||
':sad:' => 'icon_sad.gif',
|
':wink:' => 'face-wink.png',
|
||||||
'8-)' => 'icon_cool.gif',
|
':cry:' => 'face-crying.png',
|
||||||
'8-O' => 'icon_eek.gif',
|
':eek:' => 'face-surprise.png',
|
||||||
':-(' => 'icon_sad.gif',
|
':lol:' => 'face-laugh.png',
|
||||||
':-)' => 'icon_smile.gif',
|
':mad:' => 'face-angry.png',
|
||||||
':-?' => 'icon_confused.gif',
|
':sad:' => 'face-sad.png',
|
||||||
':-D' => 'icon_biggrin.gif',
|
'O:-)' => 'face-angel.png',
|
||||||
':-P' => 'icon_razz.gif',
|
'O:)' => 'face-angel.png',
|
||||||
':-o' => 'icon_surprised.gif',
|
'8-)' => 'face-cool.png',
|
||||||
':-x' => 'icon_mad.gif',
|
'8-O' => 'face-surprise.png',
|
||||||
':-|' => 'icon_neutral.gif',
|
':-(' => 'face-sad.png',
|
||||||
';-)' => 'icon_wink.gif',
|
':-)' => 'face-smile.png',
|
||||||
'8)' => 'icon_cool.gif',
|
':-?' => 'face-worried.png',
|
||||||
'8O' => 'icon_eek.gif',
|
':-D' => 'face-smile-big.png',
|
||||||
':(' => 'icon_sad.gif',
|
':-P' => 'face-raspberry.png',
|
||||||
':)' => 'icon_smile.gif',
|
':-o' => 'face-surprise.png',
|
||||||
':?' => 'icon_confused.gif',
|
':-x' => 'face-angry.png',
|
||||||
':D' => 'icon_biggrin.gif',
|
':-|' => 'face-plain.png',
|
||||||
':P' => 'icon_razz.gif',
|
';-)' => 'face-wink.png',
|
||||||
':o' => 'icon_surprised.gif',
|
';-,' => 'face-smirk.png',
|
||||||
':x' => 'icon_mad.gif',
|
':-/' => 'face-uncertain.png',
|
||||||
':|' => 'icon_neutral.gif',
|
':-\\' => 'face-uncertain.png',
|
||||||
';)' => 'icon_wink.gif',
|
'8)' => 'face-cool.png',
|
||||||
':!:' => 'icon_exclaim.gif',
|
'8O' => 'face-surprise.png',
|
||||||
':?:' => 'icon_question.gif',
|
':(' => 'face-sad.png',
|
||||||
|
':)' => 'face-smile.png',
|
||||||
|
':?' => 'face-worried.png',
|
||||||
|
':D' => 'face-smile-big.png',
|
||||||
|
':P' => 'face-raspberry.png',
|
||||||
|
':o' => 'face-surprise.png',
|
||||||
|
':x' => 'face-angry.png',
|
||||||
|
':|' => 'face-plain.png',
|
||||||
|
';)' => 'face-wink.png',
|
||||||
|
';,' => 'face-smirk.png',
|
||||||
|
':/' => 'face-uncertain.png',
|
||||||
|
':\\' => 'face-uncertain.png',
|
||||||
|
':!:' => 'dialog-warning.png',
|
||||||
|
':?:' => 'help-browser.png',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
After Width: | Height: | Size: 863 B |
After Width: | Height: | Size: 603 B |
After Width: | Height: | Size: 851 B |
After Width: | Height: | Size: 864 B |
After Width: | Height: | Size: 860 B |
After Width: | Height: | Size: 948 B |
After Width: | Height: | Size: 875 B |
After Width: | Height: | Size: 876 B |
After Width: | Height: | Size: 893 B |
After Width: | Height: | Size: 849 B |
After Width: | Height: | Size: 840 B |
After Width: | Height: | Size: 854 B |
After Width: | Height: | Size: 865 B |
After Width: | Height: | Size: 880 B |
After Width: | Height: | Size: 850 B |
After Width: | Height: | Size: 873 B |
After Width: | Height: | Size: 858 B |
After Width: | Height: | Size: 884 B |
After Width: | Height: | Size: 866 B |
After Width: | Height: | Size: 876 B |
After Width: | Height: | Size: 859 B |
After Width: | Height: | Size: 932 B |
After Width: | Height: | Size: 940 B |
After Width: | Height: | Size: 676 B |