]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
DE update to the translation
[friendica.git] / boot.php
index fe16e0193505e5464a208866b2f5a484c216a92e..ea14428fd0565f2fc6fe5fbb4ba8a5d468d34044 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -182,13 +182,25 @@ define ( 'PAGE_PRVGROUP',          5 );
 /** @}*/
 
 /**
- * @name page types
+ * @name account types
  *
+ * ACCOUNT_TYPE_PERSON - the account belongs to a person
+ *     Associated page types: PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE
+ *
+ * ACCOUNT_TYPE_ORGANISATION - the account belongs to an organisation
+ *     Associated page type: PAGE_SOAPBOX
+ *
+ * ACCOUNT_TYPE_NEWS - the account is a news reflector
+ *     Associated page type: PAGE_SOAPBOX
+ *
+ * ACCOUNT_TYPE_COMMUNITY - the account is community forum
+ *     Associated page types: PAGE_COMMUNITY, PAGE_PRVGROUP
  * @{
  */
-define ( 'PAGE_TYPE_PERSON',      0 );
-define ( 'PAGE_TYPE_COMPANY',     1 );
-define ( 'PAGE_TYPE_COMMUNITY',   2 );
+define ( 'ACCOUNT_TYPE_PERSON',      0 );
+define ( 'ACCOUNT_TYPE_ORGANISATION',1 );
+define ( 'ACCOUNT_TYPE_NEWS',        2 );
+define ( 'ACCOUNT_TYPE_COMMUNITY',   3 );
 /** @}*/
 
 /**