diff options
author | friendica <info@friendica.com> | 2012-08-23 20:00:10 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-23 20:00:10 -0700 |
commit | 2456174cc905d2d0ae19d21c94fec2c5552322a8 (patch) | |
tree | 1e64335bad03cadb168d9cd88627e6a893459efb /include/text.php | |
parent | a9dabd8eb918436b57d9263ad3d635774455f28f (diff) | |
download | volse-hubzilla-2456174cc905d2d0ae19d21c94fec2c5552322a8.tar.gz volse-hubzilla-2456174cc905d2d0ae19d21c94fec2c5552322a8.tar.bz2 volse-hubzilla-2456174cc905d2d0ae19d21c94fec2c5552322a8.zip |
back to identity creation form
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php index d49b2269c..feafafd06 100644 --- a/include/text.php +++ b/include/text.php @@ -670,6 +670,39 @@ function get_poke_verbs() { return $arr; } +function get_mood_verbs() { + + // index is present tense verb + // value is array containing past tense verb, translation of present, translation of past + + $arr = array( + 'happy' => t('happy'), + 'sad' => t('sad'), + 'mellow' => t('mellow'), + 'tired' => t('tired'), + 'perky' => t('perky'), + 'angry' => t('angry'), + 'stupefied' => t('stupified'), + 'puzzled' => t('puzzled'), + 'interested' => t('interested'), + 'bitter' => t('bitter'), + 'cheerful' => t('cheerful'), + 'alive' => t('alive'), + 'annoyed' => t('annoyed'), + 'anxious' => t('anxious'), + 'cranky' => t('cranky'), + 'disturbed' => t('disturbed'), + 'frustrated' => t('frustrated'), + 'motivated' => t('motivated'), + 'relaxed' => t('relaxed'), + 'surprised' => t('surprised'), + ); + + call_hooks('mood_verbs', $arr); + return $arr; +} + + /** * * Function: smilies |