aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-19 18:53:26 -0700
committerfriendica <info@friendica.com>2012-07-19 18:53:26 -0700
commit49c0e0de9ba81883ccde15cdb2b1dc4d28f25a0a (patch)
treea355b82d15ca85a944083823ddc5f252b2e424cc /include/text.php
parent6402fa11703b094426ed99f53f04ad8e9fbbbf90 (diff)
downloadvolse-hubzilla-49c0e0de9ba81883ccde15cdb2b1dc4d28f25a0a.tar.gz
volse-hubzilla-49c0e0de9ba81883ccde15cdb2b1dc4d28f25a0a.tar.bz2
volse-hubzilla-49c0e0de9ba81883ccde15cdb2b1dc4d28f25a0a.zip
sync changes
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php
index fe36e1319..05fcad6be 100644
--- a/include/text.php
+++ b/include/text.php
@@ -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;
+}
/**
*