Improve comment
[friendica-addons.git/.git] / morepokes / morepokes.php
1 <?php
2 /**
3  * Name: More Pokes
4  * Description: Additional poke options
5  * Version: 1.0
6  * Author: Thomas Willingham <https://kakste.com/profile/beardyunixer>
7  *
8  */
9 use Friendica\Core\Hook;
10 use Friendica\DI;
11
12 function morepokes_install()
13 {
14           Hook::register('poke_verbs', 'addon/morepokes/morepokes.php', 'morepokes_poke_verbs');
15 }
16
17 function morepokes_poke_verbs($a, &$b)
18 {
19         $b['bitchslap'] = ['bitchslapped', DI::l10n()->t('bitchslap'), DI::l10n()->t('bitchslapped')];
20         $b['shag'] = ['shag', DI::l10n()->t('shag'), DI::l10n()->t('shagged')];
21         $b['somethingobscenelybiological'] = ['something obscenely biological', DI::l10n()->t('do something obscenely biological to'), DI::l10n()->t('did something obscenely biological to')];
22         $b['newpokefeature'] = ['pointed out the poke feature to', DI::l10n()->t('point out the poke feature to'), DI::l10n()->t('pointed out the poke feature to')];
23         $b['declareundyinglove'] = ['declared undying love for', DI::l10n()->t('declare undying love for'), DI::l10n()->t('declared undying love for')];
24         $b['patent'] = ['patented', DI::l10n()->t('patent'), DI::l10n()->t('patented')];
25         $b['strokebeard'] = ['stroked their beard at', DI::l10n()->t('stroke beard'), DI::l10n()->t('stroked their beard at')];
26         $b['bemoan'] = ['bemoaned the declining standards of modern secondary and tertiary education to', DI::l10n()->t('bemoan the declining standards of modern secondary and tertiary education to'), DI::l10n()->t('bemoans the declining standards of modern secondary and tertiary education to')];
27         $b['hugs'] = ['hugged', DI::l10n()->t('hug'), DI::l10n()->t('hugged')];
28         $b['kiss'] = ['kissed', DI::l10n()->t('kiss'), DI::l10n()->t('kissed')];
29         $b['raiseeyebrows'] = ['raised their eyebrows at', DI::l10n()->t('raise eyebrows at'), DI::l10n()->t('raised their eyebrows at')];
30         $b['insult'] = ['insulted', DI::l10n()->t('insult'), DI::l10n()->t('insulted')];
31         $b['praise'] = ['praised', DI::l10n()->t('praise'), DI::l10n()->t('praised')];
32         $b['bedubiousof'] = ['was dubious of', DI::l10n()->t('be dubious of'), DI::l10n()->t('was dubious of')];
33         $b['eat'] = ['ate', DI::l10n()->t('eat'), DI::l10n()->t('ate')];
34         $b['giggleandfawn'] = ['giggled and fawned at', DI::l10n()->t('giggle and fawn at'), DI::l10n()->t('giggled and fawned at')];
35         $b['doubt'] = ['doubted', DI::l10n()->t('doubt'), DI::l10n()->t('doubted')];
36         $b['glare'] = ['glared at', DI::l10n()->t('glare'), DI::l10n()->t('glared at')];
37 }