aboutsummaryrefslogtreecommitdiffstats
path: root/include/taxonomy.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-07-03 20:37:39 -0700
committerfriendica <info@friendica.com>2013-07-03 20:37:39 -0700
commitfbdee83dca4aa9e5d66488f32121d8c62e378316 (patch)
treec86139c1ea524170e67cc41bb6077e3da5689a75 /include/taxonomy.php
parent8ec5f8b07a0f1d5ad266bfdfdfb48d4f5647eed6 (diff)
downloadvolse-hubzilla-fbdee83dca4aa9e5d66488f32121d8c62e378316.tar.gz
volse-hubzilla-fbdee83dca4aa9e5d66488f32121d8c62e378316.tar.bz2
volse-hubzilla-fbdee83dca4aa9e5d66488f32121d8c62e378316.zip
some object/thing tweaks
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r--include/taxonomy.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php
index 1ccb18b47..70c2ad3e0 100644
--- a/include/taxonomy.php
+++ b/include/taxonomy.php
@@ -173,6 +173,15 @@ function tagblock($link,$uid,$count = 0,$authors = '',$flags = 0,$type = TERM_HA
}
+ /**
+ * verbs: [0] = first person singular, e.g. "I want", [1] = 3rd person singular, e.g. "Bill wants"
+ * We use the first person form when creating an activity, but the third person for use in activities
+ * FIXME: There is no accounting for verb gender for languages where this is significant. We may eventually
+ * require obj_verbs() to provide full conjugations and specify which form to use in the $_REQUEST params to this module.
+ */
+
+
+
function obj_verbs() {
$verbs = array(
'has' => array( t('have'), t('has')),
@@ -186,3 +195,4 @@ function obj_verbs() {
return $arr['verbs'];
}
+