Use short form array syntax everywhere

This commit is contained in:
Hypolite Petovan 2018-01-15 08:15:33 -05:00
parent 4ee41c64a3
commit 27b60e003f
68 changed files with 869 additions and 869 deletions

View file

@ -16,22 +16,22 @@ function morepokes_uninstall() {
}
function morepokes_poke_verbs($a,&$b) {
$b['bitchslap'] = array('bitchslapped', t('bitchslap'), t('bitchslapped'));
$b['shag'] = array('shag', t('shag'), t('shagged'));
$b['somethingobscenelybiological'] = array('something obscenely biological', t('do something obscenely biological to'), t('did something obscenely biological to'));
$b['newpokefeature'] = array('pointed out the poke feature to', t('point out the poke feature to'), t('pointed out the poke feature to'));
$b['declareundyinglove'] = array('declared undying love for', t('declare undying love for'), t('declared undying love for'));
$b['patent'] = array('patented', t('patent'), t('patented'));
$b['strokebeard'] = array('stroked their beard at', t('stroke beard'), t('stroked their beard at'));
$b['bemoan'] = array('bemoaned the declining standards of modern secondary and tertiary education to', t('bemoan the declining standards of modern secondary and tertiary education to'), t('bemoans the declining standards of modern secondary and tertiary education to'));
$b['hugs'] = array('hugged', t('hug'), t('hugged'));
$b['kiss'] = array('kissed', t('kiss'), t('kissed'));
$b['raiseeyebrows'] = array('raised their eyebrows at', t('raise eyebrows at'), t('raised their eyebrows at'));
$b['insult'] = array('insulted', t('insult'), t('insulted'));
$b['praise'] = array('praised', t('praise'), t('praised'));
$b['bedubiousof'] = array('was dubious of', t('be dubious of'), t('was dubious of'));
$b['eat'] = array('ate', t('eat'), t('ate'));
$b['giggleandfawn'] = array('giggled and fawned at', t('giggle and fawn at'), t('giggled and fawned at'));
$b['doubt'] = array('doubted', t('doubt'), t('doubted'));
$b['glare'] = array('glared at', t('glare'), t('glared at'));
$b['bitchslap'] = ['bitchslapped', t('bitchslap'), t('bitchslapped')];
$b['shag'] = ['shag', t('shag'), t('shagged')];
$b['somethingobscenelybiological'] = ['something obscenely biological', t('do something obscenely biological to'), t('did something obscenely biological to')];
$b['newpokefeature'] = ['pointed out the poke feature to', t('point out the poke feature to'), t('pointed out the poke feature to')];
$b['declareundyinglove'] = ['declared undying love for', t('declare undying love for'), t('declared undying love for')];
$b['patent'] = ['patented', t('patent'), t('patented')];
$b['strokebeard'] = ['stroked their beard at', t('stroke beard'), t('stroked their beard at')];
$b['bemoan'] = ['bemoaned the declining standards of modern secondary and tertiary education to', t('bemoan the declining standards of modern secondary and tertiary education to'), t('bemoans the declining standards of modern secondary and tertiary education to')];
$b['hugs'] = ['hugged', t('hug'), t('hugged')];
$b['kiss'] = ['kissed', t('kiss'), t('kissed')];
$b['raiseeyebrows'] = ['raised their eyebrows at', t('raise eyebrows at'), t('raised their eyebrows at')];
$b['insult'] = ['insulted', t('insult'), t('insulted')];
$b['praise'] = ['praised', t('praise'), t('praised')];
$b['bedubiousof'] = ['was dubious of', t('be dubious of'), t('was dubious of')];
$b['eat'] = ['ate', t('eat'), t('ate')];
$b['giggleandfawn'] = ['giggled and fawned at', t('giggle and fawn at'), t('giggled and fawned at')];
$b['doubt'] = ['doubted', t('doubt'), t('doubted')];
$b['glare'] = ['glared at', t('glare'), t('glared at')];
;}