sync changes

This commit is contained in:
friendica
2012-07-19 18:53:26 -07:00
parent 6402fa1170
commit 49c0e0de9b
8 changed files with 259 additions and 24 deletions

View File

@@ -705,6 +705,20 @@ function linkify($s) {
return($s);
}}
function get_poke_verbs() {
// index is present tense verb
// value is array containing past tense verb, translation of present, translation of past
$arr = array(
'poke' => array( 'poked', t('poke'), t('poked')),
'prod' => array( 'prodded', t('prod'), t('prodded')),
'slap' => array( 'slapped', t('slap'), t('slapped')),
'finger' => array( 'fingered', t('finger'), t('fingered'))
);
call_hooks('poke_verbs', $arr);
return $arr;
}
/**
*