From ab2d11b37ee2a568fcbe04a155131a3545ccab80 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 18 Dec 2014 19:48:23 -0800 Subject: mod/import: try ten times to create a unique webbie if the chosen one is in use. --- mod/import.php | 30 +++++++++++++++++++++++++++--- version.inc | 2 +- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/mod/import.php b/mod/import.php index 6cb3767a6..c9a4edb67 100644 --- a/mod/import.php +++ b/mod/import.php @@ -101,9 +101,33 @@ function import_post(&$a) { // We should probably also verify the hash if($r) { - logger('mod_import: duplicate channel. ', print_r($channel,true)); - notice( t('Cannot create a duplicate channel identifier on this system. Import failed.') . EOL); - return; + if($r[0]['channel_guid'] === $channel['channel_guid'] || $r[0]['channel_hash'] === $channel['channel_hash']) { + logger('mod_import: duplicate channel. ', print_r($channel,true)); + notice( t('Cannot create a duplicate channel identifier on this system. Import failed.') . EOL); + return; + } + else { + // try at most ten times to generate a unique address. + $x = 0; + $found_unique = false; + do { + $tmp = $channel['channel_address'] . mt_rand(1000,9999); + $r = q("select * from channel where channel_address = '%s' limit 1", + dbesc($tmp) + ); + if(! $r) { + $channel['channel_address'] = $tmp; + $found_unique = true; + break; + } + $x ++; + } while ($x < 10); + if(! $found_unique) { + logger('mod_import: duplicate channel. randomisation failed.', print_r($channel,true)); + notice( t('Unable to create a unique channel address. Import failed.') . EOL); + return; + } + } } unset($channel['channel_id']); diff --git a/version.inc b/version.inc index 7a9fd83c4..faff20925 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-12-17.892 +2014-12-18.893 -- cgit v1.2.3 From 9c445e98175b55e369f06220a46cf36893960cdc Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 19 Dec 2014 00:28:36 -0800 Subject: incorrect check for sys ownership --- mod/display.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mod/display.php b/mod/display.php index 55f7c1306..7d7f4ca13 100644 --- a/mod/display.php +++ b/mod/display.php @@ -157,6 +157,7 @@ function display_content(&$a, $update = 0, $load = false) { require_once('include/identity.php'); $sys = get_sys_channel(); + $sysid = $sys['channel_id']; if(local_user()) { $r = q("SELECT * from item @@ -178,8 +179,8 @@ function display_content(&$a, $update = 0, $load = false) { // in case somebody turned off public access to sys channel content using permissions // make that content unsearchable by ensuring the owner_xchan can't match - if(! perm_is_allowed($sys['channel_id'],$observer_hash,'view_stream')) - $sys['xchan_hash'] .= 'disabled'; + if(! perm_is_allowed($sysid,$observer_hash,'view_stream')) + $sysid = 0; $r = q("SELECT * from item @@ -188,11 +189,11 @@ function display_content(&$a, $update = 0, $load = false) { AND (((( `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' AND item_private = 0 ) and owner_xchan in ( " . stream_perms_xchans(($observer_hash) ? (PERMS_NETWORK|PERMS_PUBLIC) : PERMS_PUBLIC) . " )) - OR owner_xchan = '%s') + OR uid = %d ) $sql_extra ) limit 1", dbesc($target_item['parent_mid']), - dbesc($sys['xchan_hash']) + intval($sysid) ); } -- cgit v1.2.3 From 26105b53d4ce5fcbacfe8d10d540121a89849d34 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 19 Dec 2014 00:29:10 -0800 Subject: doc updates --- doc/html/apw_2php_2style_8php.html | 4 +- doc/html/auth_8php.html | 33 +- doc/html/auth_8php.js | 1 + doc/html/bbcode_8php.html | 36 + doc/html/bbcode_8php.js | 2 + doc/html/boot_8php.html | 12 +- .../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html | 4 +- doc/html/datetime_8php.html | 2 +- doc/html/dba__driver_8php.html | 2 +- doc/html/dir_d44c64559bbebec7f509842c48db8b23.html | 2 + doc/html/dir_d44c64559bbebec7f509842c48db8b23.js | 1 + doc/html/extract_8php.html | 2 +- doc/html/features_8php.html | 2 +- doc/html/files.html | 89 +- doc/html/fixd_8php.html | 181 + doc/html/fixd_8php.js | 7 + doc/html/globals.html | 9 + doc/html/globals_0x62.html | 6 + doc/html/globals_0x67.html | 6 + doc/html/globals_0x6c.html | 3 + doc/html/globals_0x6e.html | 3 +- doc/html/globals_0x75.html | 3 + doc/html/globals_0x77.html | 3 + doc/html/globals_func_0x62.html | 6 + doc/html/globals_func_0x67.html | 6 + doc/html/globals_func_0x6c.html | 3 + doc/html/globals_func_0x75.html | 3 + doc/html/globals_func_0x77.html | 3 + doc/html/globals_vars.html | 9 + doc/html/globals_vars_0x6e.html | 3 +- doc/html/include_2config_8php.html | 2 +- doc/html/language_8php.html | 2 +- doc/html/navtree.js | 18 +- doc/html/navtreeindex0.js | 50 +- doc/html/navtreeindex1.js | 8 +- doc/html/navtreeindex2.js | 8 +- doc/html/navtreeindex3.js | 8 +- doc/html/navtreeindex4.js | 20 +- doc/html/navtreeindex5.js | 124 +- doc/html/navtreeindex6.js | 370 +- doc/html/navtreeindex7.js | 154 +- doc/html/navtreeindex8.js | 310 +- doc/html/navtreeindex9.js | 164 +- doc/html/notifier_8php.html | 1 + doc/html/plugin_8php.html | 4 +- doc/html/search/all_24.js | 4 +- doc/html/search/all_62.js | 2 + doc/html/search/all_66.js | 3 +- doc/html/search/all_67.js | 4 +- doc/html/search/all_6c.js | 1 + doc/html/search/all_6e.js | 2 +- doc/html/search/all_75.js | 1 + doc/html/search/all_77.js | 3 +- doc/html/search/files_66.js | 3 +- doc/html/search/functions_62.js | 2 + doc/html/search/functions_67.js | 2 + doc/html/search/functions_6c.js | 1 + doc/html/search/functions_75.js | 1 + doc/html/search/functions_77.js | 3 +- doc/html/search/variables_24.js | 4 +- doc/html/search/variables_6e.js | 2 +- doc/html/taxonomy_8php.html | 58 +- doc/html/taxonomy_8php.js | 3 +- doc/html/text_8php.html | 79 +- doc/html/text_8php.js | 2 + doc/html/typo_8php.html | 2 +- doc/html/uexport_8php.html | 18 + doc/html/uexport_8php.js | 1 + util/messages.po | 6306 ++++++++++---------- version.inc | 2 +- 70 files changed, 4356 insertions(+), 3842 deletions(-) create mode 100644 doc/html/fixd_8php.html create mode 100644 doc/html/fixd_8php.js diff --git a/doc/html/apw_2php_2style_8php.html b/doc/html/apw_2php_2style_8php.html index 6c183a3a5..942032e54 100644 --- a/doc/html/apw_2php_2style_8php.html +++ b/doc/html/apw_2php_2style_8php.html @@ -246,7 +246,7 @@ Variables
-

Referenced by admin_page_channels(), admin_page_channels_post(), admin_page_users(), admin_page_users_post(), all_friends(), app_destroy(), app_install(), app_installed(), app_list(), blocks_content(), build_sync_packet(), catblock(), chat_message(), chatroom_list(), chatroom_list_count(), check_item_source(), check_list_permissions(), common_friends(), common_friends_zcid(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), del_pconfig(), delete_imported_item(), diaspora_get_contact_by_handle(), drop_items(), editblock_content(), editlayout_content(), editwebpage_content(), event_addtocal(), events_post(), feature_enabled(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), follow_init(), get_all_perms(), get_channel_default_perms(), get_pconfig(), get_theme_uid(), get_things(), get_words(), group_add(), group_add_member(), group_byname(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_feed(), import_channel_photo(), item_add_cid(), item_expire(), item_post(), item_remove_cid(), item_store_update(), items_fetch(), layouts_content(), list_post_dates(), load_contact_links(), load_pconfig(), local_dir_update(), FKOAuth1\loginUser(), menu_add_item(), menu_content(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit_item(), menu_fetch(), menu_post(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_init(), new_contact(), notifier_run(), pdl_selector(), perm_is_allowed(), photo_init(), poke_init(), posted_dates(), private_messages_list(), remove_community_tag(), send_message(), service_class_allows(), service_class_fetch(), set_pconfig(), Conversation\set_profile_owner(), photo_driver\store(), store_item_tag(), suggestion_query(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), update_feed_item(), webpages_content(), widget_archive(), widget_follow(), widget_item(), widget_tagcloud(), and zot_feed().

+

Referenced by admin_page_channels(), admin_page_channels_post(), admin_page_users(), admin_page_users_post(), all_friends(), app_destroy(), app_install(), app_installed(), app_list(), blocks_content(), build_sync_packet(), catblock(), chat_message(), chatroom_list(), chatroom_list_count(), check_item_source(), check_list_permissions(), common_friends(), common_friends_zcid(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), del_pconfig(), delete_imported_item(), diaspora_get_contact_by_handle(), drop_items(), editblock_content(), editlayout_content(), editwebpage_content(), event_addtocal(), events_post(), feature_enabled(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), follow_init(), get_all_perms(), get_channel_default_perms(), get_pconfig(), get_theme_uid(), get_things(), get_words(), group_add(), group_add_member(), group_byname(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_feed(), import_channel_photo(), item_add_cid(), item_expire(), item_post(), item_remove_cid(), item_store_update(), items_fetch(), layouts_content(), list_post_dates(), load_contact_links(), load_pconfig(), local_dir_update(), FKOAuth1\loginUser(), menu_add_item(), menu_content(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit_item(), menu_fetch(), menu_post(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_init(), new_contact(), notifier_run(), pdl_selector(), perm_is_allowed(), photo_init(), poke_init(), posted_dates(), private_messages_list(), remove_community_tag(), send_message(), service_class_allows(), service_class_fetch(), set_pconfig(), Conversation\set_profile_owner(), photo_driver\store(), store_item_tag(), suggestion_query(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), update_feed_item(), webpages_content(), widget_archive(), widget_follow(), widget_item(), widget_tagcloud(), wtagblock(), and zot_feed().

@@ -260,7 +260,7 @@ Variables
-

Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_channels(), admin_page_themes(), advanced_profile(), aes_encapsulate(), api_group_members(), api_login(), app_decode(), app_install(), app_list(), app_render(), app_store(), app_update(), apps_content(), argv(), array_sanitise(), attach_change_permissions(), attach_delete(), attach_store(), autoname(), bb_parse_crypt(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), change_channel(), channel_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_item_source(), check_list_permissions(), check_webbie(), RedMatrix\RedDAV\RedDirectory\childExists(), cloud_init(), common_init(), connedit_content(), construct_page(), consume_feed(), conversation(), RedMatrix\RedDAV\RedDirectory\createFile(), photo_gd\cropImage(), photo_imagick\cropImage(), decode_tags(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_mention_callback(), diaspora_request(), dir_tagadelic(), directory_content(), directory_run(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editwebpage_content(), email_header_encode(), encode_item(), encode_mail(), dba_postgres\escape(), event_store_item(), events_post(), expand_groups(), expire_run(), externals_run(), feature_enabled(), fetch_post_tags(), fetch_xrd_links(), filer_content(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), foofoo(), fsuggest_post(), get_all_perms(), get_diaspora_reshare_xml(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_mentions(), get_online_status(), get_profile_elements(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), get_system_apps(), get_terms_oftype(), get_theme_uid(), get_things(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getQuotaInfo(), gprobe_run(), handle_feed(), hcard_init(), hostxrd_init(), ids_to_querystr(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_xchan(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_content(), invite_post(), item_post(), item_remove_cid(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), locs_content(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), mark_orphan_hubsxchans(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), netgrowth_content(), network_content(), new_channel_init(), new_contact(), notification(), notifications_off(), notifications_on(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_init(), parse_app_description(), parse_xml_string(), pdledit_content(), pemtome(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), reflect_comment_store(), reflect_find_user(), reflect_photo_callback(), remote_online_status(), remove_community_tag(), remove_obsolete_hublocs(), rpost_content(), photo_driver\save(), scrape_feed(), scrape_vcard(), search_ac_init(), send_status_notifications(), service_limits_content(), share_init(), share_unshield(), site_default_perms(), smilies(), sources_content(), sslify_init(), photo_driver\store(), store_diaspora_comment_sig(), string_splitter(), stringify_array_elms(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), thing_content(), toggle_theme(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_directory_entry(), update_imported_item(), upgrade_bool_message(), upgrade_message(), valid_email(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), webpages_content(), what_next(), widget_affinity(), widget_bookmarkedchats(), widget_suggestedchats(), widget_suggestions(), xchan_query(), xmlify(), zfinger_init(), zot_build_packet(), zot_encode_locations(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

+

Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_channels(), admin_page_themes(), advanced_profile(), aes_encapsulate(), api_group_members(), api_login(), app_decode(), app_install(), app_list(), app_render(), app_store(), app_update(), apps_content(), argv(), array_sanitise(), attach_change_permissions(), attach_delete(), attach_store(), autoname(), bb_parse_crypt(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), change_channel(), channel_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_item_source(), check_list_permissions(), check_webbie(), RedMatrix\RedDAV\RedDirectory\childExists(), cloud_init(), common_init(), connedit_content(), construct_page(), consume_feed(), conversation(), RedMatrix\RedDAV\RedDirectory\createFile(), photo_gd\cropImage(), photo_imagick\cropImage(), decode_tags(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_mention_callback(), diaspora_request(), dir_tagadelic(), directory_content(), directory_run(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editwebpage_content(), email_header_encode(), encode_item(), encode_mail(), dba_postgres\escape(), event_store_item(), events_post(), expand_groups(), expire_run(), externals_run(), feature_enabled(), fetch_post_tags(), fetch_xrd_links(), filer_content(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), foofoo(), fsuggest_post(), get_all_perms(), get_diaspora_reshare_xml(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_mentions(), get_online_status(), get_profile_elements(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), get_system_apps(), get_terms_oftype(), get_theme_uid(), get_things(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getQuotaInfo(), gprobe_run(), handle_feed(), hcard_init(), hostxrd_init(), ids_to_querystr(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_xchan(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_content(), invite_post(), item_post(), item_remove_cid(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), locs_content(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), mark_orphan_hubsxchans(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), netgrowth_content(), network_content(), new_channel_init(), new_contact(), notification(), notifications_off(), notifications_on(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_init(), parse_app_description(), parse_xml_string(), pdledit_content(), pemtome(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), reflect_comment_store(), reflect_find_user(), reflect_photo_callback(), remote_online_status(), remove_community_tag(), remove_obsolete_hublocs(), rpost_content(), photo_driver\save(), scrape_feed(), scrape_vcard(), search_ac_init(), send_status_notifications(), service_limits_content(), share_init(), share_unshield(), site_default_perms(), smilies(), sources_content(), sslify_init(), photo_driver\store(), store_diaspora_comment_sig(), string_splitter(), stringify_array_elms(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), thing_content(), toggle_theme(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_directory_entry(), update_imported_item(), upgrade_bool_message(), upgrade_message(), valid_email(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), webpages_content(), what_next(), widget_affinity(), widget_bookmarkedchats(), widget_suggestedchats(), widget_suggestions(), xchan_query(), xmlify(), zfinger_init(), zot_build_packet(), zot_encode_locations(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

diff --git a/doc/html/auth_8php.html b/doc/html/auth_8php.html index 644e47434..9145b5ef3 100644 --- a/doc/html/auth_8php.html +++ b/doc/html/auth_8php.html @@ -122,6 +122,9 @@ Functions  account_verify_password ($email, $pass)  Verify login credentials. More...
  + log_failed_login ($errormsg) + Log failed logins to a separate auth log. More...
if((x($_POST, 'auth-params'))&&$_POST['auth-params']===
'login') match_openid ($authid)  Returns the channel_id for a given openid_identity. More...
@@ -164,6 +167,7 @@ Variables

Verify login credentials.

+

If system authlog is set a log entry will be added for failed login attempts.

Parameters
@@ -172,10 +176,37 @@ Variables
Returns
array|null Returns account record on success, null on failure.
-

A plugin indicates successful login by setting 'authenticated' to non-zero value and returning a user record Plugins should never set 'authenticated' except to indicate success - as hooks may be chained and later plugins should not interfere with an earlier one that succeeded.

Referenced by api_login(), removeaccount_post(), removeme_post(), and RedMatrix\RedDAV\RedBasicAuth\validateUserPass().

+ + + +
+
+
string$emailThe email address to verify.
+ + + + + + + +
log_failed_login ( $errormsg)
+
+ +

Log failed logins to a separate auth log.

+

Can be used to reduce overhead for server side intrusion prevention, like parse the authlog file with something like fail2ban, OSSEC, etc.

+
Parameters
+ + +
string$errormsgError message to display for failed login.
+
+
+

A plugin indicates successful login by setting 'authenticated' to non-zero value and returning a user record Plugins should never set 'authenticated' except to indicate success - as hooks may be chained and later plugins should not interfere with an earlier one that succeeded.

+ +

Referenced by account_verify_password(), and RedMatrix\RedDAV\RedBasicAuth\validateUserPass().

+
diff --git a/doc/html/auth_8php.js b/doc/html/auth_8php.js index 0727b8234..b4ab0b9b1 100644 --- a/doc/html/auth_8php.js +++ b/doc/html/auth_8php.js @@ -1,6 +1,7 @@ var auth_8php = [ [ "account_verify_password", "auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee", null ], + [ "log_failed_login", "auth_8php.html#ae3ecb5f34f202c7f9a61c5d589f6c6e1", null ], [ "match_openid", "auth_8php.html#a69fa663e6baf65f80d1b114ad72615f2", null ], [ "nuke_session", "auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a", null ], [ "else", "auth_8php.html#a6f60fb54f60cd36c2430d6615a7b4f3f", null ] diff --git a/doc/html/bbcode_8php.html b/doc/html/bbcode_8php.html index 06bf7cfa8..4eaf2b009 100644 --- a/doc/html/bbcode_8php.html +++ b/doc/html/bbcode_8php.html @@ -141,6 +141,10 @@ Functions    rpost_callback ($match)   + bb_map_coords ($match) +  + bb_map_location ($match) +   bb_sanitize_style ($input)    bbcode ($Text, $preserve_nl=false, $tryoembed=true) @@ -161,6 +165,38 @@ Functions
+
+ + +
+
+ + + + + + + + +
bb_map_coords ( $match)
+
+ +
+
+ +
+
+ + + + + + + + +
bb_map_location ( $match)
+
+
diff --git a/doc/html/bbcode_8php.js b/doc/html/bbcode_8php.js index f8a7871fd..ad5bce44c 100644 --- a/doc/html/bbcode_8php.js +++ b/doc/html/bbcode_8php.js @@ -1,6 +1,8 @@ var bbcode_8php = [ [ "bb_location", "bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd", null ], + [ "bb_map_coords", "bbcode_8php.html#a02d5f2434e7bb5cf683e52a9b4787f24", null ], + [ "bb_map_location", "bbcode_8php.html#a7cb403fd1c36d7376c2f3932a1ceb54d", null ], [ "bb_parse_app", "bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2", null ], [ "bb_parse_crypt", "bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f", null ], [ "bb_parse_element", "bbcode_8php.html#aa73fb62e7be1fa5fce4ad5f3d4487fc9", null ], diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index 603970251..95f0d437d 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -1102,7 +1102,7 @@ Variables

Useful in functions which require it but don't get it passed to them

Returns
App
-

Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), account_remove(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), app_render(), app_store(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), comanche_get_channel_id(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_transmit(), diaspora_unshare(), dir_tagblock(), dirsearch_content(), drop_item(), editpost_content(), event_store_item(), externals_run(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), ical_wrapper(), identity_selector(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_developer(), is_public_profile(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), onedirsync_run(), onepoll_run(), page_init(), parse_app_description(), photos_album_widget(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), prepare_body(), proc_run(), process_delivery(), process_location_delivery(), profile_activity(), profile_sidebar(), register_page_template(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), siteinfo_init(), smilies(), store_diaspora_comment_sig(), tag_deliver(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), user_approve(), vcard_from_xchan(), verify_email_address(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_photo_rand(), widget_profile(), widget_random_block(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

+

Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), account_remove(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), app_render(), app_store(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), comanche_get_channel_id(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_transmit(), diaspora_unshare(), dir_tagblock(), dirsearch_content(), drop_item(), editpost_content(), event_store_item(), externals_run(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), ical_wrapper(), identity_selector(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_developer(), is_public_profile(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), onedirsync_run(), onepoll_run(), page_init(), parse_app_description(), photos_album_widget(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), proc_run(), process_delivery(), process_location_delivery(), profile_activity(), profile_sidebar(), register_page_template(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), siteinfo_init(), smilies(), store_diaspora_comment_sig(), tag_deliver(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), user_approve(), vcard_from_xchan(), verify_email_address(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_photo_rand(), widget_profile(), widget_random_block(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

@@ -1704,7 +1704,7 @@ Variables
See Also
App::get_baseurl()
Returns
string
-

Referenced by admin_content(), admin_page_profs(), admin_page_profs_post(), allowed_public_recips(), app_render(), app_store(), app_update(), appman_post(), authenticate_success(), bb_parse_crypt(), bbcode(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), channel_remove(), chat_content(), chat_post(), chatsvc_content(), check_config(), connect_post(), connections_content(), connections_post(), conversation(), create_identity(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_post(), diaspora_request(), diaspora_reshare(), directory_content(), discover_by_url(), discover_by_webbie(), display_content(), event_store_item(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), get_parent_cloudpath(), RedMatrix\RedDAV\RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_content(), home_init(), hostxrd_init(), import_post(), import_xchan(), invite_content(), item_photo_menu(), item_post(), item_store(), layouts_content(), like_content(), locs_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), mail_post(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), oembed_iframe(), openid_content(), pagelist_widget(), parse_app_description(), pdledit_post(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_create_item(), photos_list_photos(), poll_content(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), rbmark_content(), rbmark_post(), reflect_article_callback(), reflect_comment_store(), reflect_photo_callback(), register_post(), remove_obsolete_hublocs(), removeaccount_content(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), verify_email_address(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xchan_store(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

+

Referenced by admin_content(), admin_page_profs(), admin_page_profs_post(), allowed_public_recips(), app_render(), app_store(), app_update(), appman_post(), authenticate_success(), bb_parse_crypt(), bbcode(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), channel_remove(), chat_content(), chat_post(), chatsvc_content(), check_config(), connect_post(), connections_content(), connections_post(), conversation(), create_identity(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_post(), diaspora_request(), diaspora_reshare(), directory_content(), discover_by_url(), discover_by_webbie(), display_content(), event_store_item(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), get_parent_cloudpath(), Item\get_template_data(), RedMatrix\RedDAV\RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_content(), home_init(), hostxrd_init(), import_post(), import_xchan(), invite_content(), item_photo_menu(), item_post(), item_store(), layouts_content(), like_content(), locs_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), mail_post(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), oembed_iframe(), openid_content(), pagelist_widget(), parse_app_description(), pdledit_post(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_create_item(), photos_list_photos(), poll_content(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), rbmark_content(), rbmark_post(), reflect_article_callback(), reflect_comment_store(), reflect_photo_callback(), register_post(), remove_obsolete_hublocs(), removeaccount_content(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), verify_email_address(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xchan_store(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

@@ -2546,7 +2546,7 @@ Variables @@ -4912,7 +4912,7 @@ Variables @@ -4940,7 +4940,7 @@ Variables @@ -5423,7 +5423,7 @@ Variables diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html index 9cd342a8d..732ee436e 100644 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html +++ b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html @@ -143,7 +143,7 @@ Public Member Functions  Set browser plugin for SabreDAV. More...
   log () - Prints out all RedBasicAuth variables to logger(). More...
+ Prints out all RedBasicAuth variables to logger(). More...
 

@@ -232,7 +232,7 @@ Protected Attributes

-

Prints out all RedBasicAuth variables to logger().

+

Prints out all RedBasicAuth variables to logger().

Returns
void
diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html index de2e7f9ac..a6556efd7 100644 --- a/doc/html/datetime_8php.html +++ b/doc/html/datetime_8php.html @@ -309,7 +309,7 @@ Functions
-

Referenced by abook_toggle_flag(), account_verify_password(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_delete(), attach_mkdir(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), channel_remove(), chat_message(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_post(), Cache\clear(), comments_are_now_closed(), consume_feed(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_message(), diaspora_post(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_status(), diaspora_transmit(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), dlogger(), dob(), editpost_content(), ev_compare(), event_store_event(), events_content(), events_post(), externals_run(), first_post_date(), fix_system_urls(), format_event_diaspora(), format_event_html(), format_event_ical(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), RedMatrix\RedDAV\RedFile\getLastModified(), RedMatrix\RedDAV\RedDirectory\getLastModified(), home_content(), impel_init(), import_author_rss(), import_author_unknown(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), list_post_dates(), logger(), magic_init(), mail_content(), mail_post(), mail_store(), manage_content(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), openid_content(), p_init(), pagelist_widget(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), post_post(), posted_dates(), profile_photo_post(), profiles_content(), profiles_post(), prune_hub_reinstalls(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), relative_date(), removeaccount_post(), removeme_post(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), sync_directories(), sync_locations(), tag_deliver(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), verify_email_address(), webpages_content(), widget_archive(), xchan_store(), z_birthday(), zot_feed(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by abook_toggle_flag(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_delete(), attach_mkdir(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), channel_remove(), chat_message(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_post(), Cache\clear(), comments_are_now_closed(), consume_feed(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_message(), diaspora_post(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_status(), diaspora_transmit(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), dlogger(), dob(), editpost_content(), ev_compare(), event_store_event(), events_content(), events_post(), externals_run(), first_post_date(), fix_system_urls(), format_event_diaspora(), format_event_html(), format_event_ical(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), RedMatrix\RedDAV\RedFile\getLastModified(), RedMatrix\RedDAV\RedDirectory\getLastModified(), home_content(), impel_init(), import_author_rss(), import_author_unknown(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), list_post_dates(), log_failed_login(), logger(), magic_init(), mail_content(), mail_post(), mail_store(), manage_content(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), openid_content(), p_init(), pagelist_widget(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), post_post(), posted_dates(), profile_photo_post(), profiles_content(), profiles_post(), prune_hub_reinstalls(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), relative_date(), removeaccount_post(), removeme_post(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), sync_directories(), sync_locations(), tag_deliver(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), verify_email_address(), webpages_content(), widget_archive(), xchan_store(), z_birthday(), zot_feed(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html index 324178b0b..dcfa2ffac 100644 --- a/doc/html/dba__driver_8php.html +++ b/doc/html/dba__driver_8php.html @@ -577,7 +577,7 @@ Functions
Returns
bool|array
-

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_fetch(), account_total(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_profs(), admin_page_profs_post(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_group(), api_group_members(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), app_destroy(), app_installed(), app_list(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), bb2diaspora_itemwallwall(), bb2dmention_callback(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), catblock(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatroom_list_count(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_upstream_directory(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_mention_callback(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_parse_query(), dir_tagadelic(), directory_content(), directory_init(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filter_insecure(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedMatrix\RedDAV\RedBrowser\findAttachHash(), RedMatrix\RedDAV\RedBrowser\findAttachIdByHash(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_channel_default_perms(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), RedMatrix\RedDAV\RedDirectory\getQuotaInfo(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_feed(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), identity_basic_export(), identity_check_service_class(), identity_selector(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), is_matrix_url(), is_sys_channel(), item_add_cid(), item_check_service_class(), item_content(), item_expire(), item_message_id(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), locs_content(), locs_post(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_content(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), menu_list_count(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), nav(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_off(), notifications_on(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_init(), pagelist_widget(), pdl_selector(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco_init(), poco_load(), poke_content(), poke_init(), poll_content(), poll_post(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), RedMatrix\RedDAV\RedFile\put(), queue_run(), random_profile(), rconnect_url(), receive_post(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), reflect_get_channel(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), retain_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_channels_total_stat(), update_directory_entry(), update_local_posts_stat(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_filer(), widget_follow(), widget_item(), widget_random_block(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), xchan_content(), xchan_fetch(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_fetch(), account_total(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_profs(), admin_page_profs_post(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_group(), api_group_members(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), app_destroy(), app_installed(), app_list(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), bb2diaspora_itemwallwall(), bb2dmention_callback(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), catblock(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatroom_list_count(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_upstream_directory(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_mention_callback(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_parse_query(), dir_tagadelic(), directory_content(), directory_init(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filter_insecure(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedMatrix\RedDAV\RedBrowser\findAttachHash(), RedMatrix\RedDAV\RedBrowser\findAttachIdByHash(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_channel_default_perms(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), RedMatrix\RedDAV\RedDirectory\getQuotaInfo(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_feed(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), identity_basic_export(), identity_check_service_class(), identity_selector(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), is_matrix_url(), is_sys_channel(), item_add_cid(), item_check_service_class(), item_content(), item_expire(), item_message_id(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), locs_content(), locs_post(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_content(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), menu_list_count(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), nav(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_off(), notifications_on(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_init(), pagelist_widget(), pdl_selector(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco_init(), poco_load(), poke_content(), poke_init(), poll_content(), poll_post(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), RedMatrix\RedDAV\RedFile\put(), queue_run(), random_profile(), rconnect_url(), receive_post(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), reflect_get_channel(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), retain_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_channels_total_stat(), update_directory_entry(), update_local_posts_stat(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_filer(), widget_follow(), widget_item(), widget_random_block(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), wtagblock(), xchan_content(), xchan_fetch(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html index a58495859..538c6c7a9 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html @@ -188,6 +188,8 @@ Files   file  features.php   +file  fixd.php +  file  follow.php   file  gprobe.php diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js index af0e32f40..30877f15e 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js @@ -45,6 +45,7 @@ var dir_d44c64559bbebec7f509842c48db8b23 = [ "expire.php", "expire_8php.html", "expire_8php" ], [ "externals.php", "externals_8php.html", "externals_8php" ], [ "features.php", "features_8php.html", "features_8php" ], + [ "fixd.php", "fixd_8php.html", "fixd_8php" ], [ "follow.php", "include_2follow_8php.html", "include_2follow_8php" ], [ "gprobe.php", "gprobe_8php.html", "gprobe_8php" ], [ "group.php", "include_2group_8php.html", "include_2group_8php" ], diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html index 25918da16..422f1cf38 100644 --- a/doc/html/extract_8php.html +++ b/doc/html/extract_8php.html @@ -132,7 +132,7 @@ Variables
-

Referenced by _well_known_init(), account_service_class_fetch(), activity_sanitise(), api_rss_extra(), api_statuses_user_timeline(), app_store(), app_update(), appman_post(), array_sanitise(), attach_mkdir(), attach_store(), bookmark_add(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatsvc_post(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), diaspora_like(), diaspora_process_outbound(), directory_content(), discover_by_url(), discover_by_webbie(), drop_item(), event_store_event(), event_store_item(), externals_run(), feature_enabled(), fetch_xrd_links(), filter_insecure(), find_xchan_in_array(), foofoo(), format_like(), get_all_perms(), get_atom_elements(), get_cloudpath(), get_features(), get_item_elements(), get_mail_elements(), get_mood_verbs(), get_poke_verbs(), get_profile_elements(), Item\get_template_data(), get_terms_oftype(), App\get_widgets(), group_select(), hostxrd_init(), ids_to_querystr(), impel_init(), import_author_rss(), import_author_unknown(), import_author_xchan(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), magic_init(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), mood_init(), network_content(), new_channel_post(), new_contact(), obj_verbs(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profiles_content(), redbasic_form(), refimport_content(), reflect_comment_store(), register_page_template(), register_post(), remove_community_tag(), replace_macros(), rmagic_post(), photo_driver\save(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), sort_by_date(), stringify_array_elms(), subthread_content(), suggest_content(), sync_locations(), tag_deliver(), tagger_content(), theme_attachments(), theme_content(), thing_init(), translate_system_apps(), validate_channelname(), verify_email_address(), wfinger_init(), widget_affinity(), widget_archive(), widget_catcloud_wall(), widget_clock(), widget_item(), widget_photo(), widget_photo_rand(), widget_random_block(), widget_suggestions(), widget_tagcloud_wall(), xchan_fetch(), xchan_mail_query(), xchan_query(), xchan_store(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_feed(), zot_fetch(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), and zot_register_hub().

+

Referenced by _well_known_init(), account_service_class_fetch(), activity_sanitise(), api_rss_extra(), api_statuses_user_timeline(), app_store(), app_update(), appman_post(), array_sanitise(), attach_mkdir(), attach_store(), bookmark_add(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatsvc_post(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), diaspora_like(), diaspora_process_outbound(), directory_content(), discover_by_url(), discover_by_webbie(), drop_item(), event_store_event(), event_store_item(), externals_run(), feature_enabled(), fetch_xrd_links(), filter_insecure(), find_xchan_in_array(), foofoo(), format_like(), generate_map(), generate_named_map(), get_all_perms(), get_atom_elements(), get_cloudpath(), get_features(), get_item_elements(), get_mail_elements(), get_mood_verbs(), get_poke_verbs(), get_profile_elements(), Item\get_template_data(), get_terms_oftype(), App\get_widgets(), group_select(), hostxrd_init(), ids_to_querystr(), impel_init(), import_author_rss(), import_author_unknown(), import_author_xchan(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), magic_init(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), mood_init(), network_content(), new_channel_post(), new_contact(), obj_verbs(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profiles_content(), redbasic_form(), refimport_content(), reflect_comment_store(), register_page_template(), register_post(), remove_community_tag(), replace_macros(), rmagic_post(), photo_driver\save(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), sort_by_date(), stringify_array_elms(), subthread_content(), suggest_content(), sync_locations(), tag_deliver(), tagger_content(), theme_attachments(), theme_content(), thing_init(), translate_system_apps(), validate_channelname(), verify_email_address(), wfinger_init(), widget_affinity(), widget_archive(), widget_catcloud_wall(), widget_clock(), widget_item(), widget_photo(), widget_photo_rand(), widget_random_block(), widget_suggestions(), widget_tagcloud_wall(), xchan_fetch(), xchan_mail_query(), xchan_query(), xchan_store(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_feed(), zot_fetch(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), and zot_register_hub().

diff --git a/doc/html/features_8php.html b/doc/html/features_8php.html index 0d914c1ca..cbd3e1603 100644 --- a/doc/html/features_8php.html +++ b/doc/html/features_8php.html @@ -142,7 +142,7 @@ Functions diff --git a/doc/html/files.html b/doc/html/files.html index 2ca4bfe6b..c711be295 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -162,50 +162,51 @@ $(document).ready(function(){initNavTree('files.html','');}); |o*expire.php |o*externals.php |o*features.php -|o*follow.php -|o*gprobe.php -|o*group.php -|o*html2bbcode.php -|o*html2plain.php -|o*hubloc.php -|o*identity.php -|o*ItemObject.php -|o*ITemplateEngine.php -|o*items.php -|o*language.phpTranslation support -|o*menu.php -|o*message.php -|o*nav.php -|o*network.php -|o*notifier.php -|o*notify.php -|o*oauth.php -|o*oembed.php -|o*onedirsync.php -|o*onepoll.php -|o*page_widgets.php -|o*permissions.php -|o*photos.php -|o*plugin.phpSome functions to handle addons and themes -|o*poller.php -|o*probe.php -|o*profile_selectors.php -|o*ProtoDriver.php -|o*queue.php -|o*queue_fn.php -|o*reddav.phpSome DAV related functions for RedMatrix -|o*security.php -|o*session.php -|o*smarty.php -|o*socgraph.php -|o*spam.php -|o*statistics_fns.php -|o*system_unavailable.php -|o*taxonomy.php -|o*template_processor.php -|o*text.php -|o*widgets.phpThis file contains the widgets -|\*zot.php +|o*fixd.php +|o*follow.php +|o*gprobe.php +|o*group.php +|o*html2bbcode.php +|o*html2plain.php +|o*hubloc.php +|o*identity.php +|o*ItemObject.php +|o*ITemplateEngine.php +|o*items.php +|o*language.phpTranslation support +|o*menu.php +|o*message.php +|o*nav.php +|o*network.php +|o*notifier.php +|o*notify.php +|o*oauth.php +|o*oembed.php +|o*onedirsync.php +|o*onepoll.php +|o*page_widgets.php +|o*permissions.php +|o*photos.php +|o*plugin.phpSome functions to handle addons and themes +|o*poller.php +|o*probe.php +|o*profile_selectors.php +|o*ProtoDriver.php +|o*queue.php +|o*queue_fn.php +|o*reddav.phpSome DAV related functions for RedMatrix +|o*security.php +|o*session.php +|o*smarty.php +|o*socgraph.php +|o*spam.php +|o*statistics_fns.php +|o*system_unavailable.php +|o*taxonomy.php +|o*template_processor.php +|o*text.php +|o*widgets.phpThis file contains the widgets +|\*zot.php o+mod |o*_well_known.php |o*achievements.php diff --git a/doc/html/fixd_8php.html b/doc/html/fixd_8php.html new file mode 100644 index 000000000..7386d674a --- /dev/null +++ b/doc/html/fixd_8php.html @@ -0,0 +1,181 @@ + + + + + + +The Red Matrix: include/fixd.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
fixd.php File Reference
+
+
+ + + + + + + + + + +

+Variables

 $rand = db_getfunc('RAND')
 
 $r = q("select xchan_addr, hubloc_url from xchan left join hubloc on hubloc_hash = xchan_hash where xchan_network like '%%diaspora%%' order by $rand")
 
 $total = 0
 
foreach($r as $rr) print $total n
 
+

Variable Documentation

+ +
+
+ + + + +
$r = q("select xchan_addr, hubloc_url from xchan left join hubloc on hubloc_hash = xchan_hash where xchan_network like '%%diaspora%%' order by $rand")
+
+ +

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_fetch(), account_total(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_dbsync(), admin_page_hubloc_post(), admin_page_profs(), admin_page_profs_post(), admin_page_summary(), all_friends(), allowed_public_recips(), api_call(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_group(), api_group_members(), api_login(), api_oauth_access_token(), api_oauth_request_token(), api_red_xchan(), api_statuses_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_user_timeline(), app_destroy(), app_installed(), app_list(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), autoname(), bb2diaspora_itemwallwall(), bb2dmention_callback(), bb_translate_video(), block_content(), blocks_content(), bookmark_add(), build_sync_packet(), catblock(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatroom_list_count(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_upstream_directory(), check_webbie(), collect_recipients(), comanche_block(), common_content(), common_friends(), common_friends_visitor_widget(), common_friends_zcid(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_init(), connedit_post(), construct_activity_object(), construct_activity_target(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), current_theme(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_mention_callback(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_images(), diaspora_send_mail(), diaspora_signed_retraction(), dir_tagadelic(), dir_tagblock(), directory_content(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editwebpage_content(), encode_item(), event_addtocal(), event_store_event(), event_store_item(), events_content(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filter_insecure(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedMatrix\RedDAV\RedBrowser\findAttachHash(), RedMatrix\RedDAV\RedBrowser\findAttachIdByHash(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_channel_default_perms(), get_cloudpath(), get_diaspora_key(), get_events(), get_item_elements(), get_online_status(), get_plugin_info(), get_sys_channel(), get_theme_info(), get_things(), get_words(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), identity_basic_export(), identity_check_service_class(), identity_selector(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), importelm_post(), install_plugin(), invite_post(), is_matrix_url(), is_sys_channel(), item_add_cid(), item_check_service_class(), item_expire(), item_getfeedattach(), item_message_id(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_xconfig(), local_dir_update(), lockview_content(), locs_content(), locs_post(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_content(), match_openid(), member_of(), menu_add_item(), menu_content(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), menu_list_count(), menu_post(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_post(), mood_init(), msearch_post(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_off(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_content(), page_init(), pagelist_widget(), pdl_selector(), pemtome(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_post(), preg_heart(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), random_profile(), rconnect_url(), receive_post(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), register_content(), register_hook(), register_post(), relative_date(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), replace_macros(), FriendicaSmartyEngine\replace_macros(), retain_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_default_login_identity(), RedMatrix\RedDAV\RedBasicAuth\setAuthenticated(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_content(), suggestion_query(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), theme_attachments(), thing_content(), thing_init(), unregister_hook(), update_birthdays(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_channels_total_stat(), update_directory_entry(), update_remote_id(), update_suggestions(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_attach_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_item(), widget_random_block(), widget_savedsearch(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), wtagblock(), xchan_content(), xchan_fetch(), xchan_store(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), zotfeed_init(), and zping_content().

+ +
+
+ +
+
+ + + + +
$rand = db_getfunc('RAND')
+
+ +

Referenced by common_friends().

+ +
+
+ + + +
+
+ + + + +
foreach ($r as $rr) print $total n
+
+ +
+
+
+
+ diff --git a/doc/html/fixd_8php.js b/doc/html/fixd_8php.js new file mode 100644 index 000000000..2486b89d6 --- /dev/null +++ b/doc/html/fixd_8php.js @@ -0,0 +1,7 @@ +var fixd_8php = +[ + [ "$r", "fixd_8php.html#a8abe176bc41afd728f32ba8c506cbd98", null ], + [ "$rand", "fixd_8php.html#a2da3681c9cce2efe7de29aa578ff4219", null ], + [ "$total", "fixd_8php.html#a241b818f48030b628685b2e5119c5624", null ], + [ "n", "fixd_8php.html#a9d4f8a2ab4d92b3ccfd7cba0458098eb", null ] +]; \ No newline at end of file diff --git a/doc/html/globals.html b/doc/html/globals.html index a7aaa8b45..b0a91ce95 100644 --- a/doc/html/globals.html +++ b/doc/html/globals.html @@ -239,6 +239,12 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $pofile : php2po.php
  • +
  • $r +: fixd.php +
  • +
  • $rand +: fixd.php +
  • $res : docblox_errorchecker.php
  • @@ -269,6 +275,9 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $strongmacro : style.php
  • +
  • $total +: fixd.php +
  • $uid : style.php
  • diff --git a/doc/html/globals_0x62.html b/doc/html/globals_0x62.html index 6e98928f8..a5ffe38ed 100644 --- a/doc/html/globals_0x62.html +++ b/doc/html/globals_0x62.html @@ -165,6 +165,12 @@ $(document).ready(function(){initNavTree('globals_0x62.html','');});
  • bb_location() : bbcode.php
  • +
  • bb_map_coords() +: bbcode.php +
  • +
  • bb_map_location() +: bbcode.php +
  • bb_parse_app() : bbcode.php
  • diff --git a/doc/html/globals_0x67.html b/doc/html/globals_0x67.html index f71204ab9..aca38280d 100644 --- a/doc/html/globals_0x67.html +++ b/doc/html/globals_0x67.html @@ -150,6 +150,12 @@ $(document).ready(function(){initNavTree('globals_0x67.html','');});
  • gender_selector_min() : profile_selectors.php
  • +
  • generate_map() +: text.php +
  • +
  • generate_named_map() +: text.php +
  • get_account_id() : boot.php
  • diff --git a/doc/html/globals_0x6c.html b/doc/html/globals_0x6c.html index 57ca38e8b..7c8fc6085 100644 --- a/doc/html/globals_0x6c.html +++ b/doc/html/globals_0x6c.html @@ -237,6 +237,9 @@ $(document).ready(function(){initNavTree('globals_0x6c.html','');});
  • locs_post() : locs.php
  • +
  • log_failed_login() +: auth.php +
  • logger() : text.php
  • diff --git a/doc/html/globals_0x6e.html b/doc/html/globals_0x6e.html index 4d5aa9883..0da5b30b7 100644 --- a/doc/html/globals_0x6e.html +++ b/doc/html/globals_0x6e.html @@ -145,7 +145,8 @@ $(document).ready(function(){initNavTree('globals_0x6e.html','');});

    - n -

    • n -: php2po.php +: fixd.php +, php2po.php
    • namesList() : docblox_errorchecker.php diff --git a/doc/html/globals_0x75.html b/doc/html/globals_0x75.html index bec61a442..95ad7b526 100644 --- a/doc/html/globals_0x75.html +++ b/doc/html/globals_0x75.html @@ -144,6 +144,9 @@ $(document).ready(function(){initNavTree('globals_0x75.html','');});
      Here is a list of all file members with links to the files they belong to:

      - u -

        +
      • uexport_content() +: uexport.php +
      • uexport_init() : uexport.php
      • diff --git a/doc/html/globals_0x77.html b/doc/html/globals_0x77.html index 34f372963..4eed5dc3a 100644 --- a/doc/html/globals_0x77.html +++ b/doc/html/globals_0x77.html @@ -273,6 +273,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
      • writepages_widget() : page_widgets.php
      • +
      • wtagblock() +: taxonomy.php +
      diff --git a/doc/html/globals_func_0x62.html b/doc/html/globals_func_0x62.html index 651c1783f..c9af0a0ff 100644 --- a/doc/html/globals_func_0x62.html +++ b/doc/html/globals_func_0x62.html @@ -164,6 +164,12 @@ $(document).ready(function(){initNavTree('globals_func_0x62.html','');});
    • bb_location() : bbcode.php
    • +
    • bb_map_coords() +: bbcode.php +
    • +
    • bb_map_location() +: bbcode.php +
    • bb_parse_app() : bbcode.php
    • diff --git a/doc/html/globals_func_0x67.html b/doc/html/globals_func_0x67.html index 65c9a87dd..d37424b7f 100644 --- a/doc/html/globals_func_0x67.html +++ b/doc/html/globals_func_0x67.html @@ -149,6 +149,12 @@ $(document).ready(function(){initNavTree('globals_func_0x67.html','');});
    • gender_selector_min() : profile_selectors.php
    • +
    • generate_map() +: text.php +
    • +
    • generate_named_map() +: text.php +
    • get_account_id() : boot.php
    • diff --git a/doc/html/globals_func_0x6c.html b/doc/html/globals_func_0x6c.html index 9cdb99640..7747b6fde 100644 --- a/doc/html/globals_func_0x6c.html +++ b/doc/html/globals_func_0x6c.html @@ -230,6 +230,9 @@ $(document).ready(function(){initNavTree('globals_func_0x6c.html','');});
    • locs_post() : locs.php
    • +
    • log_failed_login() +: auth.php +
    • logger() : text.php
    • diff --git a/doc/html/globals_func_0x75.html b/doc/html/globals_func_0x75.html index 354e67a8d..23cce5cc1 100644 --- a/doc/html/globals_func_0x75.html +++ b/doc/html/globals_func_0x75.html @@ -143,6 +143,9 @@ $(document).ready(function(){initNavTree('globals_func_0x75.html','');});  

      - u -

        +
      • uexport_content() +: uexport.php +
      • uexport_init() : uexport.php
      • diff --git a/doc/html/globals_func_0x77.html b/doc/html/globals_func_0x77.html index 6891bd04a..399f6a6fc 100644 --- a/doc/html/globals_func_0x77.html +++ b/doc/html/globals_func_0x77.html @@ -269,6 +269,9 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
      • writepages_widget() : page_widgets.php
      • +
      • wtagblock() +: taxonomy.php +
      diff --git a/doc/html/globals_vars.html b/doc/html/globals_vars.html index 7b4732b89..ee5b3dd4e 100644 --- a/doc/html/globals_vars.html +++ b/doc/html/globals_vars.html @@ -235,6 +235,12 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
    • $pofile : php2po.php
    • +
    • $r +: fixd.php +
    • +
    • $rand +: fixd.php +
    • $res : docblox_errorchecker.php
    • @@ -265,6 +271,9 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
    • $strongmacro : style.php
    • +
    • $total +: fixd.php +
    • $uid : style.php
    • diff --git a/doc/html/globals_vars_0x6e.html b/doc/html/globals_vars_0x6e.html index 645094fe8..42504fe64 100644 --- a/doc/html/globals_vars_0x6e.html +++ b/doc/html/globals_vars_0x6e.html @@ -141,7 +141,8 @@ $(document).ready(function(){initNavTree('globals_vars_0x6e.html','');});

      - n -

      • n -: php2po.php +: fixd.php +, php2po.php
      • NAMESPACE_ACTIVITY : boot.php diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index 7a0448003..9f222df93 100644 --- a/doc/html/include_2config_8php.html +++ b/doc/html/include_2config_8php.html @@ -340,7 +340,7 @@ Functions
        Returns
        mixed Return value or false on error or if not set
        -

        Referenced by account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), bb2diaspora_itembody(), bbcode(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), check_upstream_directory(), check_webbie(), cli_startup(), create_account(), create_identity(), create_sys_channel(), RedMatrix\RedDAV\RedDirectory\createFile(), detect_language(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch(), diaspora_dispatch_public(), diaspora_is_blacklisted(), diaspora_like(), diaspora_message(), diaspora_process_outbound(), diaspora_send_followup(), diaspora_send_mail(), diaspora_send_relay(), diaspora_transmit(), directory_content(), directory_run(), dirsearch_content(), display_content(), dlogger(), dob(), downgrade_accounts(), editblock_content(), editpost_content(), editwebpage_content(), encode_item(), encode_mail(), events_content(), expire_run(), externals_run(), feature_enabled(), feed_init(), filter_insecure(), find_upstream_directory(), findpeople_widget(), get_all_perms(), Item\get_comment_box(), get_default_profile_photo(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_max_import_size(), get_online_status(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), group_content(), guess_image_type(), home_content(), home_init(), ical_wrapper(), identity_basic_export(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), is_public_profile(), item_post(), item_store(), item_store_update(), photo_imagick\load(), localize_item(), logger(), login(), lostpass_content(), lostpass_post(), mark_orphan_hubsxchans(), nav(), navbar_complete(), network_content(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_contact(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), openid_content(), parse_url_content(), perm_is_allowed(), photo_factory(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), RedMatrix\RedDAV\RedFile\put(), receive_post(), ref_session_gc(), register_content(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_obsolete_hublocs(), scale_external_images(), search_content(), send_message(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), settings_post(), site_default_perms(), siteinfo_content(), siteinfo_init(), smilies(), start_delivery_chain(), store_diaspora_comment_sig(), tag_deliver(), tgroup_check(), unobscure(), update_modtime(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), verify_email_address(), viewconnections_content(), viewconnections_init(), viewsrc_content(), widget_fullprofile(), widget_profile(), z_fetch_url(), z_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

        +

        Referenced by account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), bb2diaspora_itembody(), bbcode(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), check_upstream_directory(), check_webbie(), cli_startup(), create_account(), create_identity(), create_sys_channel(), RedMatrix\RedDAV\RedDirectory\createFile(), detect_language(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch(), diaspora_dispatch_public(), diaspora_is_blacklisted(), diaspora_like(), diaspora_message(), diaspora_process_outbound(), diaspora_send_followup(), diaspora_send_mail(), diaspora_send_relay(), diaspora_transmit(), directory_content(), directory_run(), dirsearch_content(), display_content(), dlogger(), dob(), downgrade_accounts(), editblock_content(), editpost_content(), editwebpage_content(), encode_item(), encode_mail(), events_content(), expire_run(), externals_run(), feature_enabled(), feed_init(), filter_insecure(), find_upstream_directory(), findpeople_widget(), get_all_perms(), Item\get_comment_box(), get_default_profile_photo(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_max_import_size(), get_online_status(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), group_content(), guess_image_type(), home_content(), home_init(), ical_wrapper(), identity_basic_export(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), is_public_profile(), item_post(), item_store(), item_store_update(), photo_imagick\load(), localize_item(), log_failed_login(), logger(), login(), lostpass_content(), lostpass_post(), mark_orphan_hubsxchans(), nav(), navbar_complete(), network_content(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_contact(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), openid_content(), parse_url_content(), perm_is_allowed(), photo_factory(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), RedMatrix\RedDAV\RedFile\put(), receive_post(), ref_session_gc(), register_content(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_obsolete_hublocs(), scale_external_images(), search_content(), send_message(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), settings_post(), site_default_perms(), siteinfo_content(), siteinfo_init(), smilies(), start_delivery_chain(), store_diaspora_comment_sig(), tag_deliver(), tgroup_check(), unobscure(), update_modtime(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), verify_email_address(), viewconnections_content(), viewconnections_init(), viewsrc_content(), widget_fullprofile(), widget_profile(), z_fetch_url(), z_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

        diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index a8f6e04f1..df5ee1a79 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -372,7 +372,7 @@ Functions
        Returns
        translated string if exists, otherwise return $s
        -

        Referenced by account_remove(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), app_render(), app_store(), app_update(), appman_content(), appman_post(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bb2diaspora_itembody(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), bookmarks_init(), catblock(), categories_widget(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatsvc_content(), check_account_email(), check_account_invite(), check_config(), check_form_security_std_err_msg(), check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), check_smarty3(), check_store(), cloud_init(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), conversation(), create_account(), create_identity(), day_translate(), delegate_content(), design_tools(), diaspora_like(), dir_safe_mode(), dir_sort_links(), dir_tagblock(), directory_content(), dirsearch_content(), display_content(), dob(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store_item(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), foofoo(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), gender_selector_min(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), Item\get_template_data(), group_add(), group_content(), group_post(), group_side(), hcard_init(), help_content(), home_content(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_check_service_class(), impel_init(), import_author_rss(), import_author_unknown(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_content(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), like_puller(), load_database(), localize_item(), lockview_content(), locs_content(), locs_post(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), marital_selector_min(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_init(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), poll_content(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), role_selector(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_scope(), translate_system_apps(), update_birthdays(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_approve(), user_deny(), validate_channelname(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_photo(), widget_photo_rand(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

        +

        Referenced by account_remove(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), app_render(), app_store(), app_update(), appman_content(), appman_post(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bb2diaspora_itembody(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), bookmarks_init(), catblock(), categories_widget(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatsvc_content(), check_account_email(), check_account_invite(), check_config(), check_form_security_std_err_msg(), check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), check_smarty3(), check_store(), cloud_init(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), conversation(), create_account(), create_identity(), day_translate(), delegate_content(), design_tools(), diaspora_like(), dir_safe_mode(), dir_sort_links(), dir_tagblock(), directory_content(), dirsearch_content(), display_content(), dob(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store_item(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), foofoo(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), gender_selector_min(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), Item\get_template_data(), group_add(), group_content(), group_post(), group_side(), hcard_init(), help_content(), home_content(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_check_service_class(), impel_init(), import_author_rss(), import_author_unknown(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_content(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), like_puller(), load_database(), localize_item(), lockview_content(), locs_content(), locs_post(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), marital_selector_min(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_init(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), poll_content(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), role_selector(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_scope(), translate_system_apps(), uexport_content(), update_birthdays(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_approve(), user_deny(), validate_channelname(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_photo(), widget_photo_rand(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), wtagblock(), xchan_content(), z_readdir(), and zfinger_init().

        diff --git a/doc/html/navtree.js b/doc/html/navtree.js index 8356fd3ac..36a0f36dc 100644 --- a/doc/html/navtree.js +++ b/doc/html/navtree.js @@ -37,15 +37,15 @@ var NAVTREE = var NAVTREEINDEX = [ "BS-Default_8php.html", -"boot_8php.html#a56fd673eaa7014150297ce1162502db5", -"classApp.html#a495ec082c2719314e536070ca1ce073d", -"classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677", -"dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67", -"globals_0x69.html", -"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e", -"mod_2chat_8php.html", -"refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c", -"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186" +"boot_8php.html#a52b599cd13e152ebc80d7e4413683195", +"classApp.html#a4659785d13e4bac0bed50dbb1b0d4299", +"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10", +"datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826", +"globals_0x61.html", +"include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a", +"mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2", +"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266", +"text_8php.html#acedb584f65114a33f389efb796172a91" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index 9c46f8184..dcfaca689 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -20,10 +20,10 @@ var NAVTREEINDEX0 = "Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5":[6,0,0,21,1], "Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e":[6,0,0,21,0], "ConversationObject_8php.html":[6,0,0,25], -"ITemplateEngine_8php.html":[6,0,0,47], +"ITemplateEngine_8php.html":[6,0,0,48], "Importer_8php.html":[6,0,0,1,0], -"ItemObject_8php.html":[6,0,0,46], -"ProtoDriver_8php.html":[6,0,0,67], +"ItemObject_8php.html":[6,0,0,47], +"ProtoDriver_8php.html":[6,0,0,68], "RedBasicAuth_8php.html":[6,0,0,3,0], "RedBrowser_8php.html":[6,0,0,3,1], "RedDirectory_8php.html":[6,0,0,3,2], @@ -104,9 +104,10 @@ var NAVTREEINDEX0 = "apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89":[6,0,3,1,0,1,3,0], "auth_8php.html":[6,0,0,10], "auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee":[6,0,0,10,0], -"auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a":[6,0,0,10,2], -"auth_8php.html#a69fa663e6baf65f80d1b114ad72615f2":[6,0,0,10,1], -"auth_8php.html#a6f60fb54f60cd36c2430d6615a7b4f3f":[6,0,0,10,3], +"auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a":[6,0,0,10,3], +"auth_8php.html#a69fa663e6baf65f80d1b114ad72615f2":[6,0,0,10,2], +"auth_8php.html#a6f60fb54f60cd36c2430d6615a7b4f3f":[6,0,0,10,4], +"auth_8php.html#ae3ecb5f34f202c7f9a61c5d589f6c6e1":[6,0,0,10,1], "bb2diaspora_8php.html":[6,0,0,12], "bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93":[6,0,0,12,13], "bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863":[6,0,0,12,9], @@ -124,22 +125,24 @@ var NAVTREEINDEX0 = "bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba":[6,0,0,12,4], "bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc":[6,0,0,12,8], "bbcode_8php.html":[6,0,0,13], -"bbcode_8php.html#a009f61aaf78771737ed0765c8463911b":[6,0,0,13,10], -"bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d":[6,0,0,13,9], -"bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a":[6,0,0,13,6], -"bbcode_8php.html#a2be26414a367118143cc89e2d58e7377":[6,0,0,13,7], +"bbcode_8php.html#a009f61aaf78771737ed0765c8463911b":[6,0,0,13,12], +"bbcode_8php.html#a02d5f2434e7bb5cf683e52a9b4787f24":[6,0,0,13,1], +"bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d":[6,0,0,13,11], +"bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a":[6,0,0,13,8], +"bbcode_8php.html#a2be26414a367118143cc89e2d58e7377":[6,0,0,13,9], "bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd":[6,0,0,13,0], -"bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322":[6,0,0,13,14], -"bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e":[6,0,0,13,5], -"bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7":[6,0,0,13,12], -"bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7":[6,0,0,13,13], -"bbcode_8php.html#a7cc811ff1939a508cfb54f39c1d584d7":[6,0,0,13,11], -"bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f":[6,0,0,13,2], -"bbcode_8php.html#a8911e027907820df3db03b4f76724b50":[6,0,0,13,8], -"bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c":[6,0,0,13,4], -"bbcode_8php.html#aa73fb62e7be1fa5fce4ad5f3d4487fc9":[6,0,0,13,3], -"bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8":[6,0,0,13,15], -"bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2":[6,0,0,13,1], +"bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322":[6,0,0,13,16], +"bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e":[6,0,0,13,7], +"bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7":[6,0,0,13,14], +"bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7":[6,0,0,13,15], +"bbcode_8php.html#a7cb403fd1c36d7376c2f3932a1ceb54d":[6,0,0,13,2], +"bbcode_8php.html#a7cc811ff1939a508cfb54f39c1d584d7":[6,0,0,13,13], +"bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f":[6,0,0,13,4], +"bbcode_8php.html#a8911e027907820df3db03b4f76724b50":[6,0,0,13,10], +"bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c":[6,0,0,13,6], +"bbcode_8php.html#aa73fb62e7be1fa5fce4ad5f3d4487fc9":[6,0,0,13,5], +"bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8":[6,0,0,13,17], +"bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2":[6,0,0,13,3], "block_8php.html":[6,0,1,8], "block_8php.html#a8a82a470acdfbc7a8e749509caeeea45":[6,0,1,8,0], "block_8php.html#a9b61c96044ed2a068f18c10370a78d5c":[6,0,1,8,1], @@ -246,8 +249,5 @@ var NAVTREEINDEX0 = "boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,248], "boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,215], "boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,30], -"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,169], -"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,44], -"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,88], -"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,36] +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,169] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index 64cbc6cec..299da6394 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,5 +1,8 @@ var NAVTREEINDEX1 = { +"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,44], +"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,88], +"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,36], "boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,207], "boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,247], "boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,310], @@ -246,8 +249,5 @@ var NAVTREEINDEX1 = "classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,6,62], "classApp.html#a344d2b7dc2f276648d521aee4da1731c":[5,0,6,23], "classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,6,50], -"classApp.html#a3d84af5e42082098672531cd1a618853":[5,0,6,22], -"classApp.html#a4659785d13e4bac0bed50dbb1b0d4299":[5,0,6,6], -"classApp.html#a4776d9322edea17fae56afa5d01a323e":[5,0,6,24], -"classApp.html#a487332f8de40414ca1a54a4265570b70":[5,0,6,81] +"classApp.html#a3d84af5e42082098672531cd1a618853":[5,0,6,22] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 08f832bc4..9deea102a 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,5 +1,8 @@ var NAVTREEINDEX2 = { +"classApp.html#a4659785d13e4bac0bed50dbb1b0d4299":[5,0,6,6], +"classApp.html#a4776d9322edea17fae56afa5d01a323e":[5,0,6,24], +"classApp.html#a487332f8de40414ca1a54a4265570b70":[5,0,6,81], "classApp.html#a495ec082c2719314e536070ca1ce073d":[5,0,6,40], "classApp.html#a4b67935096f66d1f14b657399a8461ac":[5,0,6,64], "classApp.html#a4bdd7bfed62f50515fce652127bf481b":[5,0,6,25], @@ -246,8 +249,5 @@ var NAVTREEINDEX2 = "classTemplate.html#a317d535946dc065c35dd5cd38380e6c6":[5,0,25,22], "classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[5,0,25,2], "classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[5,0,25,3], -"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[5,0,25,6], -"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[5,0,25,21], -"classTemplate.html#a6f0efc256688c36110180b501067ff11":[5,0,25,23], -"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[5,0,25,15] +"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[5,0,25,6] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index cf1224387..d623cb5b7 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,5 +1,8 @@ var NAVTREEINDEX3 = { +"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[5,0,25,21], +"classTemplate.html#a6f0efc256688c36110180b501067ff11":[5,0,25,23], +"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[5,0,25,15], "classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677":[5,0,25,9], "classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1":[5,0,25,19], "classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29":[5,0,25,4], @@ -246,8 +249,5 @@ var NAVTREEINDEX3 = "datetime_8php.html#aba971b67f17fecf050813f1eba72367f":[6,0,0,28,8], "datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df":[6,0,0,28,0], "datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[6,0,0,28,3], -"datetime_8php.html#aea356409ba69f9de412298c998595dd2":[6,0,0,28,1], -"datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826":[6,0,0,28,13], -"db__update_8php.html":[6,0,2,1], -"dba__driver_8php.html":[6,0,0,0,0] +"datetime_8php.html#aea356409ba69f9de412298c998595dd2":[6,0,0,28,1] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index d5abd2a22..b59cdb5ae 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,5 +1,8 @@ var NAVTREEINDEX4 = { +"datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826":[6,0,0,28,13], +"db__update_8php.html":[6,0,2,1], +"dba__driver_8php.html":[6,0,0,0,0], "dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67":[6,0,0,0,0,2], "dba__driver_8php.html#a2a38996670c2936b5769270c49c57593":[6,0,0,0,0,11], "dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f":[6,0,0,0,0,17], @@ -169,6 +172,11 @@ var NAVTREEINDEX4 = "filestorage_8php.html":[6,0,1,34], "filestorage_8php.html#a61bb1be78472555df4ce619f51014040":[6,0,1,34,0], "filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd":[6,0,1,34,1], +"fixd_8php.html":[6,0,0,39], +"fixd_8php.html#a241b818f48030b628685b2e5119c5624":[6,0,0,39,2], +"fixd_8php.html#a2da3681c9cce2efe7de29aa578ff4219":[6,0,0,39,1], +"fixd_8php.html#a8abe176bc41afd728f32ba8c506cbd98":[6,0,0,39,0], +"fixd_8php.html#a9d4f8a2ab4d92b3ccfd7cba0458098eb":[6,0,0,39,3], "fpostit_8php.html":[6,0,2,0,0], "fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443":[6,0,2,0,0,0], "fpostit_8php.html#a501b5ca82f287509fc691c88524064c1":[6,0,2,0,0,1], @@ -217,8 +225,8 @@ var NAVTREEINDEX4 = "functions_0x76.html":[5,3,0,20], "functions_8php.html":[6,0,3,1,0,1,1], "functions_8php.html#adefe514c95680928b3aae250cbc3c663":[6,0,3,1,0,1,1,0], -"functions_func.html":[5,3,1], "functions_func.html":[5,3,1,0], +"functions_func.html":[5,3,1], "functions_func_0x61.html":[5,3,1,1], "functions_func_0x62.html":[5,3,1,2], "functions_func_0x63.html":[5,3,1,3], @@ -241,13 +249,5 @@ var NAVTREEINDEX4 = "functions_vars.html":[5,3,2], "globals.html":[6,1,0,0], "globals.html":[6,1,0], -"globals_0x5f.html":[6,1,0,1], -"globals_0x61.html":[6,1,0,2], -"globals_0x62.html":[6,1,0,3], -"globals_0x63.html":[6,1,0,4], -"globals_0x64.html":[6,1,0,5], -"globals_0x65.html":[6,1,0,6], -"globals_0x66.html":[6,1,0,7], -"globals_0x67.html":[6,1,0,8], -"globals_0x68.html":[6,1,0,9] +"globals_0x5f.html":[6,1,0,1] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index 6507e74c2..5ff3f0feb 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,5 +1,13 @@ var NAVTREEINDEX5 = { +"globals_0x61.html":[6,1,0,2], +"globals_0x62.html":[6,1,0,3], +"globals_0x63.html":[6,1,0,4], +"globals_0x64.html":[6,1,0,5], +"globals_0x65.html":[6,1,0,6], +"globals_0x66.html":[6,1,0,7], +"globals_0x67.html":[6,1,0,8], +"globals_0x68.html":[6,1,0,9], "globals_0x69.html":[6,1,0,10], "globals_0x6a.html":[6,1,0,11], "globals_0x6b.html":[6,1,0,12], @@ -68,8 +76,8 @@ var NAVTREEINDEX5 = "globals_vars_0x77.html":[6,1,2,20], "globals_vars_0x78.html":[6,1,2,21], "globals_vars_0x7a.html":[6,1,2,22], -"gprobe_8php.html":[6,0,0,40], -"gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[6,0,0,40,0], +"gprobe_8php.html":[6,0,0,41], +"gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[6,0,0,41,0], "greenthumbnails_8php.html":[6,0,3,1,0,2,3], "hcard_8php.html":[6,0,1,38], "hcard_8php.html#a3663012f1549849af88aba2bb87388e3":[6,0,1,38,0], @@ -86,57 +94,57 @@ var NAVTREEINDEX5 = "home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[6,0,1,40,1], "hostxrd_8php.html":[6,0,1,41], "hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[6,0,1,41,0], -"html2bbcode_8php.html":[6,0,0,42], -"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[6,0,0,42,3], -"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[6,0,0,42,1], -"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[6,0,0,42,0], -"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[6,0,0,42,2], -"html2plain_8php.html":[6,0,0,43], -"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[6,0,0,43,0], -"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[6,0,0,43,3], -"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[6,0,0,43,2], -"html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[6,0,0,43,1], -"hubloc_8php.html":[6,0,0,44], -"hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea":[6,0,0,44,3], -"hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b":[6,0,0,44,5], -"hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002":[6,0,0,44,2], -"hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d":[6,0,0,44,0], -"hubloc_8php.html#aebd244b4616ded022cbbee5e82926951":[6,0,0,44,1], -"hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea":[6,0,0,44,4], -"identity_8php.html":[6,0,0,45], -"identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[6,0,0,45,3], -"identity_8php.html#a224710dfb7465b706c91134247c20afa":[6,0,0,45,12], -"identity_8php.html#a293f416ce9050220b183e08ff5890216":[6,0,0,45,6], -"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[6,0,0,45,18], -"identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe":[6,0,0,45,23], -"identity_8php.html#a332df795f684788002f5a6424abacfd7":[6,0,0,45,11], -"identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[6,0,0,45,2], -"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[6,0,0,45,27], -"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[6,0,0,45,26], -"identity_8php.html#a47d6f53216f23a3484061793bef29854":[6,0,0,45,28], -"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[6,0,0,45,9], -"identity_8php.html#a4e996e44b50330098a04b467367a559f":[6,0,0,45,21], -"identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21":[6,0,0,45,13], -"identity_8php.html#a5650319c799de09d1b6d1076b6f839a4":[6,0,0,45,24], -"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[6,0,0,45,31], -"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[6,0,0,45,32], -"identity_8php.html#a77d2237f1846964634b1c99089c27c7d":[6,0,0,45,1], -"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[6,0,0,45,29], -"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[6,0,0,45,20], -"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[6,0,0,45,10], -"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[6,0,0,45,22], -"identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[6,0,0,45,0], -"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[6,0,0,45,15], -"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[6,0,0,45,14], -"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[6,0,0,45,7], -"identity_8php.html#ac73b3e13778c564c877554517a7f51ba":[6,0,0,45,5], -"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[6,0,0,45,17], -"identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[6,0,0,45,4], -"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[6,0,0,45,25], -"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[6,0,0,45,19], -"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[6,0,0,45,8], -"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[6,0,0,45,30], -"identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249":[6,0,0,45,16], +"html2bbcode_8php.html":[6,0,0,43], +"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[6,0,0,43,3], +"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[6,0,0,43,1], +"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[6,0,0,43,0], +"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[6,0,0,43,2], +"html2plain_8php.html":[6,0,0,44], +"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[6,0,0,44,0], +"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[6,0,0,44,3], +"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[6,0,0,44,2], +"html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[6,0,0,44,1], +"hubloc_8php.html":[6,0,0,45], +"hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea":[6,0,0,45,3], +"hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b":[6,0,0,45,5], +"hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002":[6,0,0,45,2], +"hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d":[6,0,0,45,0], +"hubloc_8php.html#aebd244b4616ded022cbbee5e82926951":[6,0,0,45,1], +"hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea":[6,0,0,45,4], +"identity_8php.html":[6,0,0,46], +"identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[6,0,0,46,3], +"identity_8php.html#a224710dfb7465b706c91134247c20afa":[6,0,0,46,12], +"identity_8php.html#a293f416ce9050220b183e08ff5890216":[6,0,0,46,6], +"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[6,0,0,46,18], +"identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe":[6,0,0,46,23], +"identity_8php.html#a332df795f684788002f5a6424abacfd7":[6,0,0,46,11], +"identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[6,0,0,46,2], +"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[6,0,0,46,27], +"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[6,0,0,46,26], +"identity_8php.html#a47d6f53216f23a3484061793bef29854":[6,0,0,46,28], +"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[6,0,0,46,9], +"identity_8php.html#a4e996e44b50330098a04b467367a559f":[6,0,0,46,21], +"identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21":[6,0,0,46,13], +"identity_8php.html#a5650319c799de09d1b6d1076b6f839a4":[6,0,0,46,24], +"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[6,0,0,46,31], +"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[6,0,0,46,32], +"identity_8php.html#a77d2237f1846964634b1c99089c27c7d":[6,0,0,46,1], +"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[6,0,0,46,29], +"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[6,0,0,46,20], +"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[6,0,0,46,10], +"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[6,0,0,46,22], +"identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[6,0,0,46,0], +"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[6,0,0,46,15], +"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[6,0,0,46,14], +"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[6,0,0,46,7], +"identity_8php.html#ac73b3e13778c564c877554517a7f51ba":[6,0,0,46,5], +"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[6,0,0,46,17], +"identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[6,0,0,46,4], +"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[6,0,0,46,25], +"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[6,0,0,46,19], +"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[6,0,0,46,8], +"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[6,0,0,46,30], +"identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249":[6,0,0,46,16], "impel_8php.html":[6,0,1,42], "impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b":[6,0,1,42,0], "import_8php.html":[6,0,1,43], @@ -241,13 +249,5 @@ var NAVTREEINDEX5 = "include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639":[6,0,0,16,2], "include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91":[6,0,0,16,3], "include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422":[6,0,0,16,1], -"include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3":[6,0,0,16,0], -"include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a":[6,0,0,16,5], -"include_2config_8php.html":[6,0,0,20], -"include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[6,0,0,20,7], -"include_2config_8php.html#a549910227348003efc3c05c9105c42da":[6,0,0,20,0], -"include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b":[6,0,0,20,8], -"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[6,0,0,20,11], -"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[6,0,0,20,1], -"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[6,0,0,20,2] +"include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3":[6,0,0,16,0] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index e72a0633b..1aca50ae6 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,5 +1,13 @@ var NAVTREEINDEX6 = { +"include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a":[6,0,0,16,5], +"include_2config_8php.html":[6,0,0,20], +"include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[6,0,0,20,7], +"include_2config_8php.html#a549910227348003efc3c05c9105c42da":[6,0,0,20,0], +"include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b":[6,0,0,20,8], +"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[6,0,0,20,11], +"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[6,0,0,20,1], +"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[6,0,0,20,2], "include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[6,0,0,20,6], "include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[6,0,0,20,5], "include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[6,0,0,20,10], @@ -9,97 +17,97 @@ var NAVTREEINDEX6 = "include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[6,0,0,20,12], "include_2directory_8php.html":[6,0,0,33], "include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[6,0,0,33,0], -"include_2follow_8php.html":[6,0,0,39], -"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[6,0,0,39,0], -"include_2group_8php.html":[6,0,0,41], -"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[6,0,0,41,2], -"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[6,0,0,41,10], -"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[6,0,0,41,1], -"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[6,0,0,41,0], -"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[6,0,0,41,6], -"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[6,0,0,41,7], -"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[6,0,0,41,4], -"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[6,0,0,41,8], -"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[6,0,0,41,5], -"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[6,0,0,41,11], -"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[6,0,0,41,3], -"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[6,0,0,41,9], -"include_2menu_8php.html":[6,0,0,50], -"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[6,0,0,50,11], -"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[6,0,0,50,1], -"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[6,0,0,50,10], -"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[6,0,0,50,9], -"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[6,0,0,50,3], -"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[6,0,0,50,8], -"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[6,0,0,50,7], -"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[6,0,0,50,5], -"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[6,0,0,50,2], -"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[6,0,0,50,6], -"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[6,0,0,50,4], -"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[6,0,0,50,0], -"include_2message_8php.html":[6,0,0,51], -"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[6,0,0,51,2], -"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[6,0,0,51,1], -"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[6,0,0,51,3], -"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[6,0,0,51,4], -"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[6,0,0,51,0], -"include_2network_8php.html":[6,0,0,53], -"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[6,0,0,53,7], -"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[6,0,0,53,14], -"include_2network_8php.html#a316f318167a039c89719afbd129a8f3c":[6,0,0,53,16], -"include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a":[6,0,0,53,20], -"include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b":[6,0,0,53,6], -"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[6,0,0,53,12], -"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[6,0,0,53,11], -"include_2network_8php.html#a5176176ddc1906d91f186df6fbd87b48":[6,0,0,53,4], -"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[6,0,0,53,19], -"include_2network_8php.html#a63e62946e194928eb17c5a9f2bbef0fe":[6,0,0,53,5], -"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[6,0,0,53,10], -"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[6,0,0,53,9], -"include_2network_8php.html#a872bbe72d23826c64c9e0f822180a3ec":[6,0,0,53,13], -"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[6,0,0,53,18], -"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[6,0,0,53,8], -"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[6,0,0,53,24], -"include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b":[6,0,0,53,25], -"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[6,0,0,53,21], -"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[6,0,0,53,22], -"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[6,0,0,53,23], -"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[6,0,0,53,2], -"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[6,0,0,53,0], -"include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070":[6,0,0,53,17], -"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[6,0,0,53,3], -"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[6,0,0,53,15], -"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[6,0,0,53,1], -"include_2notify_8php.html":[6,0,0,55], -"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[6,0,0,55,0], -"include_2oembed_8php.html":[6,0,0,57], -"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[6,0,0,57,5], -"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[6,0,0,57,7], -"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[6,0,0,57,1], -"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[6,0,0,57,4], -"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[6,0,0,57,3], -"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[6,0,0,57,6], -"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[6,0,0,57,0], -"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[6,0,0,57,2], -"include_2photos_8php.html":[6,0,0,62], -"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[6,0,0,62,0], -"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[6,0,0,62,2], -"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[6,0,0,62,1], -"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[6,0,0,62,7], -"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[6,0,0,62,3], -"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[6,0,0,62,6], -"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[6,0,0,62,5], -"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[6,0,0,62,4], -"include_2probe_8php.html":[6,0,0,65], -"include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a":[6,0,0,65,3], -"include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7":[6,0,0,65,4], -"include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c":[6,0,0,65,1], -"include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85":[6,0,0,65,8], -"include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8":[6,0,0,65,0], -"include_2probe_8php.html#a950a200372393f706851103cd3fffcba":[6,0,0,65,6], -"include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0":[6,0,0,65,2], -"include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[6,0,0,65,7], -"include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[6,0,0,65,5], +"include_2follow_8php.html":[6,0,0,40], +"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[6,0,0,40,0], +"include_2group_8php.html":[6,0,0,42], +"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[6,0,0,42,2], +"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[6,0,0,42,10], +"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[6,0,0,42,1], +"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[6,0,0,42,0], +"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[6,0,0,42,6], +"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[6,0,0,42,7], +"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[6,0,0,42,4], +"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[6,0,0,42,8], +"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[6,0,0,42,5], +"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[6,0,0,42,11], +"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[6,0,0,42,3], +"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[6,0,0,42,9], +"include_2menu_8php.html":[6,0,0,51], +"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[6,0,0,51,11], +"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[6,0,0,51,1], +"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[6,0,0,51,10], +"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[6,0,0,51,9], +"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[6,0,0,51,3], +"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[6,0,0,51,8], +"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[6,0,0,51,7], +"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[6,0,0,51,5], +"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[6,0,0,51,2], +"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[6,0,0,51,6], +"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[6,0,0,51,4], +"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[6,0,0,51,0], +"include_2message_8php.html":[6,0,0,52], +"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[6,0,0,52,2], +"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[6,0,0,52,1], +"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[6,0,0,52,3], +"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[6,0,0,52,4], +"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[6,0,0,52,0], +"include_2network_8php.html":[6,0,0,54], +"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[6,0,0,54,7], +"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[6,0,0,54,14], +"include_2network_8php.html#a316f318167a039c89719afbd129a8f3c":[6,0,0,54,16], +"include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a":[6,0,0,54,20], +"include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b":[6,0,0,54,6], +"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[6,0,0,54,12], +"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[6,0,0,54,11], +"include_2network_8php.html#a5176176ddc1906d91f186df6fbd87b48":[6,0,0,54,4], +"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[6,0,0,54,19], +"include_2network_8php.html#a63e62946e194928eb17c5a9f2bbef0fe":[6,0,0,54,5], +"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[6,0,0,54,10], +"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[6,0,0,54,9], +"include_2network_8php.html#a872bbe72d23826c64c9e0f822180a3ec":[6,0,0,54,13], +"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[6,0,0,54,18], +"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[6,0,0,54,8], +"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[6,0,0,54,24], +"include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b":[6,0,0,54,25], +"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[6,0,0,54,21], +"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[6,0,0,54,22], +"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[6,0,0,54,23], +"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[6,0,0,54,2], +"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[6,0,0,54,0], +"include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070":[6,0,0,54,17], +"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[6,0,0,54,3], +"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[6,0,0,54,15], +"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[6,0,0,54,1], +"include_2notify_8php.html":[6,0,0,56], +"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[6,0,0,56,0], +"include_2oembed_8php.html":[6,0,0,58], +"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[6,0,0,58,5], +"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[6,0,0,58,7], +"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[6,0,0,58,1], +"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[6,0,0,58,4], +"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[6,0,0,58,3], +"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[6,0,0,58,6], +"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[6,0,0,58,0], +"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[6,0,0,58,2], +"include_2photos_8php.html":[6,0,0,63], +"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[6,0,0,63,0], +"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[6,0,0,63,2], +"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[6,0,0,63,1], +"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[6,0,0,63,7], +"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[6,0,0,63,3], +"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[6,0,0,63,6], +"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[6,0,0,63,5], +"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[6,0,0,63,4], +"include_2probe_8php.html":[6,0,0,66], +"include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a":[6,0,0,66,3], +"include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7":[6,0,0,66,4], +"include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c":[6,0,0,66,1], +"include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85":[6,0,0,66,8], +"include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8":[6,0,0,66,0], +"include_2probe_8php.html#a950a200372393f706851103cd3fffcba":[6,0,0,66,6], +"include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0":[6,0,0,66,2], +"include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[6,0,0,66,7], +"include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[6,0,0,66,5], "index.html":[], "interfaceITemplateEngine.html":[5,0,20], "interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[5,0,20,1], @@ -113,93 +121,93 @@ var NAVTREEINDEX6 = "item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[6,0,1,46,4], "item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[6,0,1,46,3], "item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[6,0,1,46,1], -"items_8php.html":[6,0,0,48], -"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[6,0,0,48,3], -"items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df":[6,0,0,48,42], -"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[6,0,0,48,30], -"items_8php.html#a0790a4550b829e85504af548623002ca":[6,0,0,48,9], -"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[6,0,0,48,35], -"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[6,0,0,48,44], -"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[6,0,0,48,27], -"items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92":[6,0,0,48,72], -"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[6,0,0,48,5], -"items_8php.html#a251343637ff40a50cca93452cd530c26":[6,0,0,48,34], -"items_8php.html#a25221826fa4621f523c68483e3b6af26":[6,0,0,48,64], -"items_8php.html#a2541e6861a56d145c9281877cc501615":[6,0,0,48,47], -"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[6,0,0,48,4], -"items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6":[6,0,0,48,71], -"items_8php.html#a2c3f97b2109c05df86d97449b3c78ebc":[6,0,0,48,38], -"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[6,0,0,48,22], -"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[6,0,0,48,0], -"items_8php.html#a37f79991f36811cf847446ff60e8e11f":[6,0,0,48,40], -"items_8php.html#a410f9c743877c125ca06312373346903":[6,0,0,48,54], -"items_8php.html#a49905ea75adfe8a2d110be344d18d6a6":[6,0,0,48,56], -"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[6,0,0,48,59], -"items_8php.html#a52c24114b73c0bdb605a03cd29712223":[6,0,0,48,36], -"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[6,0,0,48,32], -"items_8php.html#a555762e1022a4b8e3c3abd32e7812408":[6,0,0,48,16], -"items_8php.html#a566c601726697e044e75284af7fb6f17":[6,0,0,48,21], -"items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86":[6,0,0,48,18], -"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[6,0,0,48,14], -"items_8php.html#a5e5be7bf1f8257dec0b2647e60a3f3f1":[6,0,0,48,29], -"items_8php.html#a5ed782ff5b9cf050bec931e06de12c00":[6,0,0,48,46], -"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[6,0,0,48,19], -"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[6,0,0,48,45], -"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[6,0,0,48,17], -"items_8php.html#a6bee35961f2e32905f20367a9309d627":[6,0,0,48,39], -"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[6,0,0,48,43], -"items_8php.html#a756738301f2ed96be50232500677d58a":[6,0,0,48,49], -"items_8php.html#a77051724d1784074ff187e73a4db93fe":[6,0,0,48,37], -"items_8php.html#a772f0ae77ad77c8ab68ed918a3870946":[6,0,0,48,7], -"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[6,0,0,48,52], -"items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a":[6,0,0,48,60], -"items_8php.html#a81565acf729e629e588d823308448e3c":[6,0,0,48,1], -"items_8php.html#a83a349062945d585edb4b3c5d763ab6e":[6,0,0,48,57], -"items_8php.html#a8675e62674de6fb7c42e4a408c7116cc":[6,0,0,48,53], -"items_8php.html#a87ac9e359591721a824ecd23bbb56296":[6,0,0,48,6], -"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[6,0,0,48,67], -"items_8php.html#a8cda98925a4c5c2f6dade70d9586d79a":[6,0,0,48,26], -"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[6,0,0,48,12], -"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[6,0,0,48,33], -"items_8php.html#a9b449eeae50003414b8b30ca927af434":[6,0,0,48,70], -"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[6,0,0,48,68], -"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[6,0,0,48,11], -"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[6,0,0,48,23], -"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[6,0,0,48,10], -"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[6,0,0,48,31], -"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[6,0,0,48,62], -"items_8php.html#aabfaa193b83154c2a81e91284e5d5e59":[6,0,0,48,69], -"items_8php.html#aac8c9eb4338e2a996c43914392c6cfdb":[6,0,0,48,15], -"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[6,0,0,48,65], -"items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00":[6,0,0,48,51], -"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[6,0,0,48,28], -"items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723":[6,0,0,48,8], -"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[6,0,0,48,2], -"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[6,0,0,48,20], -"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[6,0,0,48,48], -"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[6,0,0,48,55], -"items_8php.html#ad34827ed330898456783fb14c7b46154":[6,0,0,48,66], -"items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a":[6,0,0,48,58], -"items_8php.html#adc26e08aa61f5666da04ab5d2a9d68a6":[6,0,0,48,13], -"items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2":[6,0,0,48,63], -"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[6,0,0,48,25], -"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[6,0,0,48,41], -"items_8php.html#af6237605c60d69abdd959ddbbee3420c":[6,0,0,48,61], -"items_8php.html#af94c281016c6c912d06e064113336c5c":[6,0,0,48,50], -"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[6,0,0,48,24], +"items_8php.html":[6,0,0,49], +"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[6,0,0,49,3], +"items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df":[6,0,0,49,42], +"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[6,0,0,49,30], +"items_8php.html#a0790a4550b829e85504af548623002ca":[6,0,0,49,9], +"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[6,0,0,49,35], +"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[6,0,0,49,44], +"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[6,0,0,49,27], +"items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92":[6,0,0,49,72], +"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[6,0,0,49,5], +"items_8php.html#a251343637ff40a50cca93452cd530c26":[6,0,0,49,34], +"items_8php.html#a25221826fa4621f523c68483e3b6af26":[6,0,0,49,64], +"items_8php.html#a2541e6861a56d145c9281877cc501615":[6,0,0,49,47], +"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[6,0,0,49,4], +"items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6":[6,0,0,49,71], +"items_8php.html#a2c3f97b2109c05df86d97449b3c78ebc":[6,0,0,49,38], +"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[6,0,0,49,22], +"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[6,0,0,49,0], +"items_8php.html#a37f79991f36811cf847446ff60e8e11f":[6,0,0,49,40], +"items_8php.html#a410f9c743877c125ca06312373346903":[6,0,0,49,54], +"items_8php.html#a49905ea75adfe8a2d110be344d18d6a6":[6,0,0,49,56], +"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[6,0,0,49,59], +"items_8php.html#a52c24114b73c0bdb605a03cd29712223":[6,0,0,49,36], +"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[6,0,0,49,32], +"items_8php.html#a555762e1022a4b8e3c3abd32e7812408":[6,0,0,49,16], +"items_8php.html#a566c601726697e044e75284af7fb6f17":[6,0,0,49,21], +"items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86":[6,0,0,49,18], +"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[6,0,0,49,14], +"items_8php.html#a5e5be7bf1f8257dec0b2647e60a3f3f1":[6,0,0,49,29], +"items_8php.html#a5ed782ff5b9cf050bec931e06de12c00":[6,0,0,49,46], +"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[6,0,0,49,19], +"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[6,0,0,49,45], +"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[6,0,0,49,17], +"items_8php.html#a6bee35961f2e32905f20367a9309d627":[6,0,0,49,39], +"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[6,0,0,49,43], +"items_8php.html#a756738301f2ed96be50232500677d58a":[6,0,0,49,49], +"items_8php.html#a77051724d1784074ff187e73a4db93fe":[6,0,0,49,37], +"items_8php.html#a772f0ae77ad77c8ab68ed918a3870946":[6,0,0,49,7], +"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[6,0,0,49,52], +"items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a":[6,0,0,49,60], +"items_8php.html#a81565acf729e629e588d823308448e3c":[6,0,0,49,1], +"items_8php.html#a83a349062945d585edb4b3c5d763ab6e":[6,0,0,49,57], +"items_8php.html#a8675e62674de6fb7c42e4a408c7116cc":[6,0,0,49,53], +"items_8php.html#a87ac9e359591721a824ecd23bbb56296":[6,0,0,49,6], +"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[6,0,0,49,67], +"items_8php.html#a8cda98925a4c5c2f6dade70d9586d79a":[6,0,0,49,26], +"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[6,0,0,49,12], +"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[6,0,0,49,33], +"items_8php.html#a9b449eeae50003414b8b30ca927af434":[6,0,0,49,70], +"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[6,0,0,49,68], +"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[6,0,0,49,11], +"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[6,0,0,49,23], +"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[6,0,0,49,10], +"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[6,0,0,49,31], +"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[6,0,0,49,62], +"items_8php.html#aabfaa193b83154c2a81e91284e5d5e59":[6,0,0,49,69], +"items_8php.html#aac8c9eb4338e2a996c43914392c6cfdb":[6,0,0,49,15], +"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[6,0,0,49,65], +"items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00":[6,0,0,49,51], +"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[6,0,0,49,28], +"items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723":[6,0,0,49,8], +"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[6,0,0,49,2], +"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[6,0,0,49,20], +"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[6,0,0,49,48], +"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[6,0,0,49,55], +"items_8php.html#ad34827ed330898456783fb14c7b46154":[6,0,0,49,66], +"items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a":[6,0,0,49,58], +"items_8php.html#adc26e08aa61f5666da04ab5d2a9d68a6":[6,0,0,49,13], +"items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2":[6,0,0,49,63], +"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[6,0,0,49,25], +"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[6,0,0,49,41], +"items_8php.html#af6237605c60d69abdd959ddbbee3420c":[6,0,0,49,61], +"items_8php.html#af94c281016c6c912d06e064113336c5c":[6,0,0,49,50], +"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[6,0,0,49,24], "lang_8php.html":[6,0,1,47], "lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[6,0,1,47,0], -"language_8php.html":[6,0,0,49], -"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[6,0,0,49,7], -"language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[6,0,0,49,3], -"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[6,0,0,49,0], -"language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997":[6,0,0,49,9], -"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[6,0,0,49,5], -"language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[6,0,0,49,4], -"language_8php.html#a980dee1d8715a98ab02e36b59facf8ed":[6,0,0,49,1], -"language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96":[6,0,0,49,8], -"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[6,0,0,49,6], -"language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[6,0,0,49,2], +"language_8php.html":[6,0,0,50], +"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[6,0,0,50,7], +"language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[6,0,0,50,3], +"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[6,0,0,50,0], +"language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997":[6,0,0,50,9], +"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[6,0,0,50,5], +"language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[6,0,0,50,4], +"language_8php.html#a980dee1d8715a98ab02e36b59facf8ed":[6,0,0,50,1], +"language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96":[6,0,0,50,8], +"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[6,0,0,50,6], +"language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[6,0,0,50,2], "layouts_8php.html":[6,0,1,48], "layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa":[6,0,1,48,1], "layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[6,0,1,48,0], @@ -241,13 +249,5 @@ var NAVTREEINDEX6 = "mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[6,0,1,60,1], "mod_2api_8php.html":[6,0,1,4], "mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[6,0,1,4,2], -"mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[6,0,1,4,0], -"mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2":[6,0,1,4,1], -"mod_2apps_8php.html":[6,0,1,6], -"mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[6,0,1,6,0], -"mod_2attach_8php.html":[6,0,1,7], -"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[6,0,1,7,0], -"mod_2bookmarks_8php.html":[6,0,1,10], -"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[6,0,1,10,1], -"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[6,0,1,10,0] +"mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[6,0,1,4,0] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index bf389c22f..6e9f98d6f 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,5 +1,13 @@ var NAVTREEINDEX7 = { +"mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2":[6,0,1,4,1], +"mod_2apps_8php.html":[6,0,1,6], +"mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[6,0,1,6,0], +"mod_2attach_8php.html":[6,0,1,7], +"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[6,0,1,7,0], +"mod_2bookmarks_8php.html":[6,0,1,10], +"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[6,0,1,10,1], +"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[6,0,1,10,0], "mod_2chat_8php.html":[6,0,1,13], "mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f":[6,0,1,13,0], "mod_2chat_8php.html#a999d594745597c656c9760253ae297ad":[6,0,1,13,2], @@ -45,8 +53,8 @@ var NAVTREEINDEX7 = "mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8":[6,0,3,1,2,0,2,0], "namespaceFriendica.html":[4,0,1], "namespaceFriendica.html":[5,0,1], -"namespaceRedMatrix.html":[4,0,3], "namespaceRedMatrix.html":[5,0,3], +"namespaceRedMatrix.html":[4,0,3], "namespaceRedMatrix_1_1Import.html":[5,0,3,0], "namespaceRedMatrix_1_1Import.html":[4,0,3,0], "namespaceRedMatrix_1_1RedDAV.html":[5,0,3,1], @@ -59,13 +67,13 @@ var NAVTREEINDEX7 = "namespacemembers_func.html":[4,1,1], "namespacemembers_vars.html":[4,1,2], "namespaces.html":[4,0], -"namespaceupdatetpl.html":[5,0,4], "namespaceupdatetpl.html":[4,0,4], -"namespaceutil.html":[4,0,5], +"namespaceupdatetpl.html":[5,0,4], "namespaceutil.html":[5,0,5], -"nav_8php.html":[6,0,0,52], -"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[6,0,0,52,0], -"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[6,0,0,52,1], +"namespaceutil.html":[4,0,5], +"nav_8php.html":[6,0,0,53], +"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[6,0,0,53,0], +"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[6,0,0,53,1], "netgrowth_8php.html":[6,0,1,63], "netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919":[6,0,1,63,0], "new__channel_8php.html":[6,0,1,65], @@ -78,20 +86,20 @@ var NAVTREEINDEX7 = "notifications_8php.html":[6,0,1,67], "notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[6,0,1,67,1], "notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[6,0,1,67,0], -"notifier_8php.html":[6,0,0,54], -"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[6,0,0,54,0], +"notifier_8php.html":[6,0,0,55], +"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[6,0,0,55,0], "notred_8php.html":[6,0,3,1,3,1,3], -"oauth_8php.html":[6,0,0,56], -"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[6,0,0,56,3], -"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[6,0,0,56,2], +"oauth_8php.html":[6,0,0,57], +"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[6,0,0,57,3], +"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[6,0,0,57,2], "oexchange_8php.html":[6,0,1,70], "oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[6,0,1,70,0], "oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[6,0,1,70,1], "olddefault_8php.html":[6,0,3,1,0,2,5], -"onedirsync_8php.html":[6,0,0,58], -"onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[6,0,0,58,0], -"onepoll_8php.html":[6,0,0,59], -"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[6,0,0,59,0], +"onedirsync_8php.html":[6,0,0,59], +"onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[6,0,0,59,0], +"onepoll_8php.html":[6,0,0,60], +"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[6,0,0,60,0], "online_8php.html":[6,0,1,71], "online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[6,0,1,71,0], "openid_8php.html":[6,0,1,72], @@ -103,9 +111,9 @@ var NAVTREEINDEX7 = "page_8php.html":[6,0,1,75], "page_8php.html#a4d89800c0366a239191b1692c09635cf":[6,0,1,75,1], "page_8php.html#a91a5f649f68406149108bded1dc90b22":[6,0,1,75,0], -"page__widgets_8php.html":[6,0,0,60], -"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[6,0,0,60,1], -"page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[6,0,0,60,0], +"page__widgets_8php.html":[6,0,0,61], +"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[6,0,0,61,1], +"page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[6,0,0,61,0], "pages.html":[], "parse__url_8php.html":[6,0,1,76], "parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[6,0,1,76,2], @@ -117,14 +125,14 @@ var NAVTREEINDEX7 = "pdledit_8php.html":[6,0,1,77], "pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[6,0,1,77,0], "pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[6,0,1,77,1], -"permissions_8php.html":[6,0,0,61], -"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[6,0,0,61,2], -"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[6,0,0,61,0], -"permissions_8php.html#a50e8099ea8a4d7ed68b2a0a7ea9aa724":[6,0,0,61,5], -"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[6,0,0,61,4], -"permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe":[6,0,0,61,3], -"permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[6,0,0,61,6], -"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[6,0,0,61,1], +"permissions_8php.html":[6,0,0,62], +"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[6,0,0,62,2], +"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[6,0,0,62,0], +"permissions_8php.html#a50e8099ea8a4d7ed68b2a0a7ea9aa724":[6,0,0,62,5], +"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[6,0,0,62,4], +"permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe":[6,0,0,62,3], +"permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[6,0,0,62,6], +"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[6,0,0,62,1], "photo_8php.html":[6,0,1,78], "photo_8php.html#a582779d24882b0d31ee909a91d70a448":[6,0,1,78,0], "photo__driver_8php.html":[6,0,0,2,0], @@ -152,34 +160,34 @@ var NAVTREEINDEX7 = "pine_8php.html":[6,0,3,1,0,2,8], "ping_8php.html":[6,0,1,81], "ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[6,0,1,81,0], -"plugin_8php.html":[6,0,0,63], -"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[6,0,0,63,24], -"plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[6,0,0,63,22], -"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[6,0,0,63,8], -"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[6,0,0,63,17], -"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[6,0,0,63,20], -"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[6,0,0,63,7], -"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[6,0,0,63,16], -"plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4":[6,0,0,63,14], -"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[6,0,0,63,9], -"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[6,0,0,63,26], -"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[6,0,0,63,11], -"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[6,0,0,63,23], -"plugin_8php.html#a67ca417634de2d0beffffc54aeb951ff":[6,0,0,63,12], -"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[6,0,0,63,4], -"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[6,0,0,63,0], -"plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9":[6,0,0,63,19], -"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[6,0,0,63,1], -"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[6,0,0,63,25], -"plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf":[6,0,0,63,13], -"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[6,0,0,63,18], -"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[6,0,0,63,3], -"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[6,0,0,63,6], -"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[6,0,0,63,2], -"plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b":[6,0,0,63,15], -"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[6,0,0,63,10], -"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[6,0,0,63,21], -"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[6,0,0,63,5], +"plugin_8php.html":[6,0,0,64], +"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[6,0,0,64,24], +"plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[6,0,0,64,22], +"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[6,0,0,64,8], +"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[6,0,0,64,17], +"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[6,0,0,64,20], +"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[6,0,0,64,7], +"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[6,0,0,64,16], +"plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4":[6,0,0,64,14], +"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[6,0,0,64,9], +"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[6,0,0,64,26], +"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[6,0,0,64,11], +"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[6,0,0,64,23], +"plugin_8php.html#a67ca417634de2d0beffffc54aeb951ff":[6,0,0,64,12], +"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[6,0,0,64,4], +"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[6,0,0,64,0], +"plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9":[6,0,0,64,19], +"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[6,0,0,64,1], +"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[6,0,0,64,25], +"plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf":[6,0,0,64,13], +"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[6,0,0,64,18], +"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[6,0,0,64,3], +"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[6,0,0,64,6], +"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[6,0,0,64,2], +"plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b":[6,0,0,64,15], +"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[6,0,0,64,10], +"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[6,0,0,64,21], +"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[6,0,0,64,5], "po2php_8php.html":[6,0,2,6], "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[6,0,2,6,0], "poco_8php.html":[6,0,1,82], @@ -191,8 +199,8 @@ var NAVTREEINDEX7 = "poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77":[6,0,1,84,2], "poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263":[6,0,1,84,0], "poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930":[6,0,1,84,1], -"poller_8php.html":[6,0,0,64], -"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[6,0,0,64,0], +"poller_8php.html":[6,0,0,65], +"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[6,0,0,65,0], "post_8php.html":[6,0,1,85], "post_8php.html#af4b48181ce773ef0cdfc972441445c34":[6,0,1,85,0], "post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[6,0,1,85,1], @@ -205,13 +213,13 @@ var NAVTREEINDEX7 = "profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[6,0,1,89,0], "profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[6,0,1,89,1], "profile__photo_8php.html#a561103564199da56e58061a4196eb102":[6,0,1,89,2], -"profile__selectors_8php.html":[6,0,0,66], -"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[6,0,0,66,4], -"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[6,0,0,66,2], -"profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816":[6,0,0,66,1], -"profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074":[6,0,0,66,5], -"profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534":[6,0,0,66,3], -"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[6,0,0,66,0], +"profile__selectors_8php.html":[6,0,0,67], +"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[6,0,0,67,4], +"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[6,0,0,67,2], +"profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816":[6,0,0,67,1], +"profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074":[6,0,0,67,5], +"profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534":[6,0,0,67,3], +"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[6,0,0,67,0], "profiles_8php.html":[6,0,1,90], "profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[6,0,1,90,1], "profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[6,0,1,90,0], @@ -221,11 +229,11 @@ var NAVTREEINDEX7 = "profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[6,0,1,91,0], "pubsites_8php.html":[6,0,1,92], "pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[6,0,1,92,0], -"queue_8php.html":[6,0,0,68], -"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[6,0,0,68,0], -"queue__fn_8php.html":[6,0,0,69], -"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[6,0,0,69,1], -"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[6,0,0,69,0], +"queue_8php.html":[6,0,0,69], +"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[6,0,0,69,0], +"queue__fn_8php.html":[6,0,0,70], +"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[6,0,0,70,1], +"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[6,0,0,70,0], "randprof_8php.html":[6,0,1,93], "randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[6,0,1,93,0], "rbmark_8php.html":[6,0,1,94], @@ -241,13 +249,5 @@ var NAVTREEINDEX7 = "redbasic_2php_2theme_8php.html":[6,0,3,1,3,0,2], "redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b":[6,0,3,1,3,0,2,0], "redbasic_8php.html":[6,0,3,1,0,2,9], -"reddav_8php.html":[6,0,0,70], -"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[6,0,0,70,1], -"reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[6,0,0,70,2], -"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[6,0,0,70,0], -"refimport_8php.html":[6,0,0,1,1], -"refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c":[6,0,0,1,1,2], -"refimport_8php.html#a53434bc19e6264db89e18d92ddc09860":[6,0,0,1,1,1], -"refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6":[6,0,0,1,1,6], -"refimport_8php.html#a684a44d2401abf75f441591bcb41d10d":[6,0,0,1,1,12] +"reddav_8php.html":[6,0,0,71] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index 5591a2630..ee6d9a365 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,5 +1,13 @@ var NAVTREEINDEX8 = { +"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[6,0,0,71,1], +"reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[6,0,0,71,2], +"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[6,0,0,71,0], +"refimport_8php.html":[6,0,0,1,1], +"refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c":[6,0,0,1,1,2], +"refimport_8php.html#a53434bc19e6264db89e18d92ddc09860":[6,0,0,1,1,1], +"refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6":[6,0,0,1,1,6], +"refimport_8php.html#a684a44d2401abf75f441591bcb41d10d":[6,0,0,1,1,12], "refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c":[6,0,0,1,1,4], "refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f":[6,0,0,1,1,8], "refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f":[6,0,0,1,1,10], @@ -36,32 +44,32 @@ var NAVTREEINDEX8 = "search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[6,0,1,104,1], "search__ac_8php.html":[6,0,1,105], "search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[6,0,1,105,0], -"security_8php.html":[6,0,0,71], -"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[6,0,0,71,2], -"security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[6,0,0,71,11], -"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[6,0,0,71,4], -"security_8php.html#a6126c77a1267e046ac59cf864613f011":[6,0,0,71,10], -"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[6,0,0,71,5], -"security_8php.html#a8d23d2597aae380a3341872fe9513380":[6,0,0,71,1], -"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[6,0,0,71,7], -"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[6,0,0,71,3], -"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[6,0,0,71,9], -"security_8php.html#acd06ef411116115c2f0a92633700db8a":[6,0,0,71,6], -"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[6,0,0,71,0], -"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[6,0,0,71,8], +"security_8php.html":[6,0,0,72], +"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[6,0,0,72,2], +"security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[6,0,0,72,11], +"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[6,0,0,72,4], +"security_8php.html#a6126c77a1267e046ac59cf864613f011":[6,0,0,72,10], +"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[6,0,0,72,5], +"security_8php.html#a8d23d2597aae380a3341872fe9513380":[6,0,0,72,1], +"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[6,0,0,72,7], +"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[6,0,0,72,3], +"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[6,0,0,72,9], +"security_8php.html#acd06ef411116115c2f0a92633700db8a":[6,0,0,72,6], +"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[6,0,0,72,0], +"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[6,0,0,72,8], "service__limits_8php.html":[6,0,1,106], "service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[6,0,1,106,0], -"session_8php.html":[6,0,0,72], -"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[6,0,0,72,4], -"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[6,0,0,72,0], -"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[6,0,0,72,1], -"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[6,0,0,72,8], -"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[6,0,0,72,5], -"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[6,0,0,72,7], -"session_8php.html#ac4461c1984543d3553e73dba2771568f":[6,0,0,72,6], -"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[6,0,0,72,3], -"session_8php.html#af0100a2642a5268594bbd5742a03d885":[6,0,0,72,9], -"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[6,0,0,72,2], +"session_8php.html":[6,0,0,73], +"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[6,0,0,73,4], +"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[6,0,0,73,0], +"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[6,0,0,73,1], +"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[6,0,0,73,8], +"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[6,0,0,73,5], +"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[6,0,0,73,7], +"session_8php.html#ac4461c1984543d3553e73dba2771568f":[6,0,0,73,6], +"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[6,0,0,73,3], +"session_8php.html#af0100a2642a5268594bbd5742a03d885":[6,0,0,73,9], +"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[6,0,0,73,2], "settings_8php.html":[6,0,1,107], "settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[6,0,1,107,0], "settings_8php.html#a3a4cde287482fced008583f54ba2a722":[6,0,1,107,1], @@ -94,34 +102,34 @@ var NAVTREEINDEX8 = "siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[6,0,1,110,0], "sitelist_8php.html":[6,0,1,111], "sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[6,0,1,111,0], -"smarty_8php.html":[6,0,0,73], +"smarty_8php.html":[6,0,0,74], "smilies_8php.html":[6,0,1,112], "smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[6,0,1,112,0], -"socgraph_8php.html":[6,0,0,74], -"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[6,0,0,74,0], -"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[6,0,0,74,6], -"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[6,0,0,74,7], -"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[6,0,0,74,8], -"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[6,0,0,74,1], -"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[6,0,0,74,4], -"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[6,0,0,74,2], -"socgraph_8php.html#af175807406d94407a5e11742a3287746":[6,0,0,74,5], -"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[6,0,0,74,3], +"socgraph_8php.html":[6,0,0,75], +"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[6,0,0,75,0], +"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[6,0,0,75,6], +"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[6,0,0,75,7], +"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[6,0,0,75,8], +"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[6,0,0,75,1], +"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[6,0,0,75,4], +"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[6,0,0,75,2], +"socgraph_8php.html#af175807406d94407a5e11742a3287746":[6,0,0,75,5], +"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[6,0,0,75,3], "sources_8php.html":[6,0,1,113], "sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[6,0,1,113,0], "sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[6,0,1,113,1], -"spam_8php.html":[6,0,0,75], -"spam_8php.html#a05861201147b9a538d006f0269255cf9":[6,0,0,75,1], -"spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[6,0,0,75,0], +"spam_8php.html":[6,0,0,76], +"spam_8php.html#a05861201147b9a538d006f0269255cf9":[6,0,0,76,1], +"spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[6,0,0,76,0], "sslify_8php.html":[6,0,1,114], "sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[6,0,1,114,0], "starred_8php.html":[6,0,1,115], "starred_8php.html#a63024fb418c678e49fd535e3752d349a":[6,0,1,115,0], -"statistics__fns_8php.html":[6,0,0,76], -"statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c":[6,0,0,76,2], -"statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[6,0,0,76,0], -"statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa":[6,0,0,76,3], -"statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe":[6,0,0,76,1], +"statistics__fns_8php.html":[6,0,0,77], +"statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c":[6,0,0,77,2], +"statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[6,0,0,77,0], +"statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa":[6,0,0,77,3], +"statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe":[6,0,0,77,1], "stumble_2php_2style_8php.html":[6,0,3,1,4,0,0], "stumble_2php_2theme_8php.html":[6,0,3,1,4,0,1], "stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753":[6,0,3,1,4,0,1,0], @@ -133,121 +141,113 @@ var NAVTREEINDEX8 = "suggest_8php.html":[6,0,1,117], "suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[6,0,1,117,0], "suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[6,0,1,117,1], -"system__unavailable_8php.html":[6,0,0,77], -"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[6,0,0,77,0], +"system__unavailable_8php.html":[6,0,0,78], +"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[6,0,0,78,0], "tagger_8php.html":[6,0,1,118], "tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[6,0,1,118,0], "tagrm_8php.html":[6,0,1,119], "tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[6,0,1,119,1], "tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[6,0,1,119,0], -"taxonomy_8php.html":[6,0,0,78], -"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[6,0,0,78,10], -"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[6,0,0,78,1], -"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[6,0,0,78,3], -"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[6,0,0,78,7], -"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[6,0,0,78,5], -"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[6,0,0,78,4], -"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[6,0,0,78,11], -"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[6,0,0,78,2], -"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[6,0,0,78,8], -"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[6,0,0,78,15], -"taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4":[6,0,0,78,0], -"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[6,0,0,78,14], -"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[6,0,0,78,12], -"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[6,0,0,78,13], -"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[6,0,0,78,6], -"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[6,0,0,78,9], -"template__processor_8php.html":[6,0,0,79], -"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[6,0,0,79,3], -"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[6,0,0,79,1], -"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[6,0,0,79,2], -"text_8php.html":[6,0,0,80], -"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[6,0,0,80,42], -"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[6,0,0,80,48], -"text_8php.html#a070384ec000fd65043fce11d5392d241":[6,0,0,80,6], -"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[6,0,0,80,16], -"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[6,0,0,80,11], -"text_8php.html#a10dde167249ed5abf190a7a0986878ea":[6,0,0,80,73], -"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[6,0,0,80,47], -"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[6,0,0,80,5], -"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[6,0,0,80,84], -"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[6,0,0,80,35], -"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[6,0,0,80,38], -"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[6,0,0,80,52], -"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[6,0,0,80,55], -"text_8php.html#a1e510c53624933ce9b7d6715784894db":[6,0,0,80,49], -"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[6,0,0,80,50], -"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[6,0,0,80,45], -"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[6,0,0,80,74], -"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[6,0,0,80,4], -"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[6,0,0,80,92], -"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[6,0,0,80,81], -"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[6,0,0,80,51], -"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[6,0,0,80,10], -"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[6,0,0,80,78], -"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[6,0,0,80,94], -"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[6,0,0,80,24], -"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[6,0,0,80,89], -"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[6,0,0,80,76], -"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[6,0,0,80,32], -"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[6,0,0,80,44], -"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[6,0,0,80,26], -"text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc":[6,0,0,80,19], -"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[6,0,0,80,75], -"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[6,0,0,80,7], -"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[6,0,0,80,90], -"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[6,0,0,80,36], -"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[6,0,0,80,33], -"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[6,0,0,80,46], -"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[6,0,0,80,64], -"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[6,0,0,80,53], -"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[6,0,0,80,25], -"text_8php.html#a4e7698aca48982512594b274543c3b9b":[6,0,0,80,63], -"text_8php.html#a543447c5ed766535221e2d9636b379ee":[6,0,0,80,86], -"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[6,0,0,80,9], -"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[6,0,0,80,14], -"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[6,0,0,80,85], -"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[6,0,0,80,43], -"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[6,0,0,80,29], -"text_8php.html#a740ad03e00459039a2c0992246c4e727":[6,0,0,80,82], -"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[6,0,0,80,1], -"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[6,0,0,80,37], -"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[6,0,0,80,28], -"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[6,0,0,80,83], -"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[6,0,0,80,8], -"text_8php.html#a876e94892867019935b348b573299352":[6,0,0,80,71], -"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[6,0,0,80,77], -"text_8php.html#a87a3cefc603302c78982f1d8e1245265":[6,0,0,80,15], -"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[6,0,0,80,21], -"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[6,0,0,80,62], -"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[6,0,0,80,20], -"text_8php.html#a905c3895feb6f276df23f07f16f9bb52":[6,0,0,80,87], -"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[6,0,0,80,3], -"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[6,0,0,80,57], -"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[6,0,0,80,68], -"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[6,0,0,80,66], -"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[6,0,0,80,70], -"text_8php.html#aa22feef4de326e1d7078dedd892e615c":[6,0,0,80,34], -"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[6,0,0,80,31], -"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[6,0,0,80,17], -"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[6,0,0,80,58], -"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[6,0,0,80,39], -"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[6,0,0,80,30], -"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[6,0,0,80,93], -"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[6,0,0,80,72], -"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[6,0,0,80,88], -"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[6,0,0,80,91], -"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[6,0,0,80,59], -"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[6,0,0,80,40], -"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[6,0,0,80,79], -"text_8php.html#ace3c98538c63e09b70a363210b414112":[6,0,0,80,22], -"text_8php.html#acedb584f65114a33f389efb796172a91":[6,0,0,80,2], -"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[6,0,0,80,13], -"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[6,0,0,80,67], -"text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[6,0,0,80,27], -"text_8php.html#adba17ec946f4285285dc100f7860bf51":[6,0,0,80,54], -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[6,0,0,80,41], -"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[6,0,0,80,69], -"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[6,0,0,80,18], -"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[6,0,0,80,60] +"taxonomy_8php.html":[6,0,0,79], +"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[6,0,0,79,10], +"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[6,0,0,79,1], +"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[6,0,0,79,3], +"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[6,0,0,79,7], +"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[6,0,0,79,5], +"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[6,0,0,79,4], +"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[6,0,0,79,11], +"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[6,0,0,79,2], +"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[6,0,0,79,8], +"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[6,0,0,79,15], +"taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287":[6,0,0,79,16], +"taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4":[6,0,0,79,0], +"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[6,0,0,79,14], +"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[6,0,0,79,12], +"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[6,0,0,79,13], +"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[6,0,0,79,6], +"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[6,0,0,79,9], +"template__processor_8php.html":[6,0,0,80], +"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[6,0,0,80,3], +"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[6,0,0,80,1], +"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[6,0,0,80,2], +"text_8php.html":[6,0,0,81], +"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[6,0,0,81,44], +"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[6,0,0,81,50], +"text_8php.html#a070384ec000fd65043fce11d5392d241":[6,0,0,81,6], +"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[6,0,0,81,16], +"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[6,0,0,81,11], +"text_8php.html#a10dde167249ed5abf190a7a0986878ea":[6,0,0,81,75], +"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[6,0,0,81,49], +"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[6,0,0,81,5], +"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[6,0,0,81,86], +"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[6,0,0,81,37], +"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[6,0,0,81,40], +"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[6,0,0,81,54], +"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[6,0,0,81,57], +"text_8php.html#a1e510c53624933ce9b7d6715784894db":[6,0,0,81,51], +"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[6,0,0,81,52], +"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[6,0,0,81,47], +"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[6,0,0,81,76], +"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[6,0,0,81,4], +"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[6,0,0,81,94], +"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[6,0,0,81,83], +"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[6,0,0,81,53], +"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[6,0,0,81,10], +"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[6,0,0,81,80], +"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[6,0,0,81,96], +"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[6,0,0,81,24], +"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[6,0,0,81,91], +"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[6,0,0,81,78], +"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[6,0,0,81,34], +"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[6,0,0,81,46], +"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[6,0,0,81,26], +"text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc":[6,0,0,81,19], +"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[6,0,0,81,77], +"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[6,0,0,81,7], +"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[6,0,0,81,92], +"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[6,0,0,81,38], +"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[6,0,0,81,35], +"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[6,0,0,81,48], +"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[6,0,0,81,66], +"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[6,0,0,81,55], +"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[6,0,0,81,25], +"text_8php.html#a4e7698aca48982512594b274543c3b9b":[6,0,0,81,65], +"text_8php.html#a543447c5ed766535221e2d9636b379ee":[6,0,0,81,88], +"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[6,0,0,81,9], +"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[6,0,0,81,14], +"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[6,0,0,81,87], +"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[6,0,0,81,45], +"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[6,0,0,81,31], +"text_8php.html#a740ad03e00459039a2c0992246c4e727":[6,0,0,81,84], +"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[6,0,0,81,1], +"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[6,0,0,81,39], +"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[6,0,0,81,30], +"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[6,0,0,81,85], +"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[6,0,0,81,8], +"text_8php.html#a876e94892867019935b348b573299352":[6,0,0,81,73], +"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[6,0,0,81,79], +"text_8php.html#a87a3cefc603302c78982f1d8e1245265":[6,0,0,81,15], +"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[6,0,0,81,21], +"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[6,0,0,81,64], +"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[6,0,0,81,20], +"text_8php.html#a905c3895feb6f276df23f07f16f9bb52":[6,0,0,81,89], +"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[6,0,0,81,3], +"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[6,0,0,81,59], +"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[6,0,0,81,70], +"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[6,0,0,81,68], +"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[6,0,0,81,72], +"text_8php.html#aa22feef4de326e1d7078dedd892e615c":[6,0,0,81,36], +"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[6,0,0,81,33], +"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[6,0,0,81,17], +"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[6,0,0,81,60], +"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[6,0,0,81,41], +"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[6,0,0,81,32], +"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[6,0,0,81,95], +"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[6,0,0,81,74], +"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[6,0,0,81,90], +"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[6,0,0,81,93], +"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[6,0,0,81,61], +"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[6,0,0,81,42], +"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[6,0,0,81,81], +"text_8php.html#ace3c98538c63e09b70a363210b414112":[6,0,0,81,22] }; diff --git a/doc/html/navtreeindex9.js b/doc/html/navtreeindex9.js index 8313a874d..b4480a2eb 100644 --- a/doc/html/navtreeindex9.js +++ b/doc/html/navtreeindex9.js @@ -1,12 +1,23 @@ var NAVTREEINDEX9 = { -"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[6,0,0,80,0], -"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[6,0,0,80,80], -"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[6,0,0,80,65], -"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[6,0,0,80,23], -"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[6,0,0,80,12], -"text_8php.html#afe54312607d92f7ce9593f5760831f80":[6,0,0,80,61], -"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[6,0,0,80,56], +"text_8php.html#acedb584f65114a33f389efb796172a91":[6,0,0,81,2], +"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[6,0,0,81,13], +"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[6,0,0,81,69], +"text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[6,0,0,81,27], +"text_8php.html#adba17ec946f4285285dc100f7860bf51":[6,0,0,81,56], +"text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357":[6,0,0,81,28], +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[6,0,0,81,43], +"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[6,0,0,81,71], +"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[6,0,0,81,18], +"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[6,0,0,81,62], +"text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b":[6,0,0,81,29], +"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[6,0,0,81,0], +"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[6,0,0,81,82], +"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[6,0,0,81,67], +"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[6,0,0,81,23], +"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[6,0,0,81,12], +"text_8php.html#afe54312607d92f7ce9593f5760831f80":[6,0,0,81,63], +"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[6,0,0,81,58], "theme_2apw_2php_2theme__init_8php.html":[6,0,3,1,0,1,4], "theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[6,0,3,1,0,1,4,0], "theme_2mytheme_2php_2default_8php.html":[6,0,3,1,2,0,0], @@ -34,7 +45,8 @@ var NAVTREEINDEX9 = "typohelper_8php.html#a7542d95618011800c61773127fa625cf":[6,0,2,9,0], "typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[6,0,2,9,1], "uexport_8php.html":[6,0,1,123], -"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[6,0,1,123,0], +"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[6,0,1,123,1], +"uexport_8php.html#ae6f79d60916c01675c8cf663cb5fec84":[6,0,1,123,0], "update__channel_8php.html":[6,0,1,124], "update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[6,0,1,124,0], "update__display_8php.html":[6,0,1,125], @@ -83,40 +95,40 @@ var NAVTREEINDEX9 = "wfinger_8php.html":[6,0,1,137], "wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[6,0,1,137,0], "widedarkness_8php.html":[6,0,3,1,0,2,10], -"widgets_8php.html":[6,0,0,81], -"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[6,0,0,81,12], -"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[6,0,0,81,29], -"widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[6,0,0,81,3], -"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[6,0,0,81,9], -"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[6,0,0,81,10], -"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[6,0,0,81,17], -"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[6,0,0,81,19], -"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[6,0,0,81,20], -"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[6,0,0,81,6], -"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[6,0,0,81,28], -"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[6,0,0,81,13], -"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[6,0,0,81,30], -"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[6,0,0,81,22], -"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[6,0,0,81,16], -"widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[6,0,0,81,2], -"widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e":[6,0,0,81,25], -"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[6,0,0,81,26], -"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[6,0,0,81,11], -"widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20":[6,0,0,81,21], -"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[6,0,0,81,7], -"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[6,0,0,81,8], -"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[6,0,0,81,27], -"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[6,0,0,81,24], -"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[6,0,0,81,32], -"widgets_8php.html#aced5cb177f630b30799c5eab873ee75c":[6,0,0,81,1], -"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[6,0,0,81,15], -"widgets_8php.html#add9b24d3304e529a7975e96122315554":[6,0,0,81,0], -"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[6,0,0,81,14], -"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[6,0,0,81,31], -"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[6,0,0,81,5], -"widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380":[6,0,0,81,23], -"widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5":[6,0,0,81,4], -"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[6,0,0,81,18], +"widgets_8php.html":[6,0,0,82], +"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[6,0,0,82,12], +"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[6,0,0,82,29], +"widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[6,0,0,82,3], +"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[6,0,0,82,9], +"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[6,0,0,82,10], +"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[6,0,0,82,17], +"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[6,0,0,82,19], +"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[6,0,0,82,20], +"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[6,0,0,82,6], +"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[6,0,0,82,28], +"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[6,0,0,82,13], +"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[6,0,0,82,30], +"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[6,0,0,82,22], +"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[6,0,0,82,16], +"widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[6,0,0,82,2], +"widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e":[6,0,0,82,25], +"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[6,0,0,82,26], +"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[6,0,0,82,11], +"widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20":[6,0,0,82,21], +"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[6,0,0,82,7], +"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[6,0,0,82,8], +"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[6,0,0,82,27], +"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[6,0,0,82,24], +"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[6,0,0,82,32], +"widgets_8php.html#aced5cb177f630b30799c5eab873ee75c":[6,0,0,82,1], +"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[6,0,0,82,15], +"widgets_8php.html#add9b24d3304e529a7975e96122315554":[6,0,0,82,0], +"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[6,0,0,82,14], +"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[6,0,0,82,31], +"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[6,0,0,82,5], +"widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380":[6,0,0,82,23], +"widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5":[6,0,0,82,4], +"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[6,0,0,82,18], "xchan_8php.html":[6,0,1,138], "xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[6,0,1,138,0], "xrd_8php.html":[6,0,1,139], @@ -125,40 +137,40 @@ var NAVTREEINDEX9 = "xref_8php.html#a9bee399213b8de8226b0d60834307473":[6,0,1,140,0], "zfinger_8php.html":[6,0,1,141], "zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[6,0,1,141,0], -"zot_8php.html":[6,0,0,82], -"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[6,0,0,82,15], -"zot_8php.html#a084c581d534e7e3b759488b46602288f":[6,0,0,82,20], -"zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d":[6,0,0,82,11], -"zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75":[6,0,0,82,9], -"zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[6,0,0,82,6], -"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[6,0,0,82,7], -"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[6,0,0,82,18], -"zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac":[6,0,0,82,28], -"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[6,0,0,82,5], -"zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315":[6,0,0,82,8], -"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[6,0,0,82,25], -"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[6,0,0,82,31], -"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[6,0,0,82,22], -"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[6,0,0,82,0], -"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[6,0,0,82,30], -"zot_8php.html#a8e22dbc6f884be3644a892a876cbd972":[6,0,0,82,3], -"zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988":[6,0,0,82,12], -"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[6,0,0,82,29], -"zot_8php.html#a95528377d7303131958c9f0b7158fdce":[6,0,0,82,23], -"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[6,0,0,82,14], -"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[6,0,0,82,13], -"zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5":[6,0,0,82,1], -"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[6,0,0,82,16], -"zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254":[6,0,0,82,17], -"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[6,0,0,82,27], -"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[6,0,0,82,19], -"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[6,0,0,82,32], -"zot_8php.html#ac301c67864917c35922257950ae0f95c":[6,0,0,82,10], -"zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d":[6,0,0,82,4], -"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[6,0,0,82,2], -"zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca":[6,0,0,82,21], -"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[6,0,0,82,24], -"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[6,0,0,82,26], +"zot_8php.html":[6,0,0,83], +"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[6,0,0,83,15], +"zot_8php.html#a084c581d534e7e3b759488b46602288f":[6,0,0,83,20], +"zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d":[6,0,0,83,11], +"zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75":[6,0,0,83,9], +"zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[6,0,0,83,6], +"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[6,0,0,83,7], +"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[6,0,0,83,18], +"zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac":[6,0,0,83,28], +"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[6,0,0,83,5], +"zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315":[6,0,0,83,8], +"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[6,0,0,83,25], +"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[6,0,0,83,31], +"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[6,0,0,83,22], +"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[6,0,0,83,0], +"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[6,0,0,83,30], +"zot_8php.html#a8e22dbc6f884be3644a892a876cbd972":[6,0,0,83,3], +"zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988":[6,0,0,83,12], +"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[6,0,0,83,29], +"zot_8php.html#a95528377d7303131958c9f0b7158fdce":[6,0,0,83,23], +"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[6,0,0,83,14], +"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[6,0,0,83,13], +"zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5":[6,0,0,83,1], +"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[6,0,0,83,16], +"zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254":[6,0,0,83,17], +"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[6,0,0,83,27], +"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[6,0,0,83,19], +"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[6,0,0,83,32], +"zot_8php.html#ac301c67864917c35922257950ae0f95c":[6,0,0,83,10], +"zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d":[6,0,0,83,4], +"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[6,0,0,83,2], +"zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca":[6,0,0,83,21], +"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[6,0,0,83,24], +"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[6,0,0,83,26], "zotfeed_8php.html":[6,0,1,142], "zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[6,0,1,142,0], "zping_8php.html":[6,0,1,143], diff --git a/doc/html/notifier_8php.html b/doc/html/notifier_8php.html index 9cccb089c..0dba5aef4 100644 --- a/doc/html/notifier_8php.html +++ b/doc/html/notifier_8php.html @@ -139,6 +139,7 @@ Functions
        +

        Reduce the hubs to those that are unique. For zot hubs, we need to verify uniqueness by the sitekey, since it may have been a re-install which has not yet been detected and pruned. For other networks which don't have or require sitekeys, we'll have to use the URL

        diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index f78c89c9e..ab3538fb3 100644 --- a/doc/html/plugin_8php.html +++ b/doc/html/plugin_8php.html @@ -206,7 +206,7 @@ Functions
        -

        Referenced by _well_known_init(), api_login(), atom_author(), atom_entry(), authenticate_success(), avatar_img(), bb2diaspora(), bbcode(), channel_remove(), chat_message(), chatsvc_post(), check_account_email(), check_account_invite(), check_account_password(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), cronhooks_run(), directory_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store_item(), externals_run(), feature_enabled(), gender_selector(), gender_selector_min(), get_all_perms(), get_atom_elements(), get_features(), get_feed_for(), get_mood_verbs(), get_perms(), get_poke_verbs(), get_role_perms(), Item\get_template_data(), App\get_widgets(), group_select(), home_content(), home_init(), hostxrd_init(), html2bbcode(), import_author_xchan(), import_directory_profile(), import_xchan(), item_photo_menu(), item_post(), item_store(), item_store_update(), like_content(), login(), magic_init(), mail_store(), marital_selector(), marital_selector_min(), mood_init(), nav(), network_content(), network_to_name(), new_contact(), notification(), notifier_run(), obj_verbs(), oembed_fetch_url(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_content(), ping_init(), poller_run(), populate_acl(), post_activity_item(), post_init(), prepare_body(), probe_well_known(), proc_run(), process_delivery(), profile_content(), profile_sidebar(), profiles_content(), profiles_post(), replace_macros(), rmagic_post(), settings_post(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), smilies(), subthread_content(), tag_deliver(), validate_channelname(), wfinger_init(), widget_affinity(), xrd_init(), zfinger_init(), zid(), and zid_init().

        +

        Referenced by _well_known_init(), api_login(), atom_author(), atom_entry(), authenticate_success(), avatar_img(), bb2diaspora(), bbcode(), channel_remove(), chat_message(), chatsvc_post(), check_account_email(), check_account_invite(), check_account_password(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), cronhooks_run(), directory_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store_item(), externals_run(), feature_enabled(), gender_selector(), gender_selector_min(), generate_map(), generate_named_map(), get_all_perms(), get_atom_elements(), get_features(), get_feed_for(), get_mood_verbs(), get_perms(), get_poke_verbs(), get_role_perms(), Item\get_template_data(), App\get_widgets(), group_select(), home_content(), home_init(), hostxrd_init(), html2bbcode(), import_author_xchan(), import_directory_profile(), import_xchan(), item_photo_menu(), item_post(), item_store(), item_store_update(), like_content(), login(), magic_init(), mail_store(), marital_selector(), marital_selector_min(), mood_init(), nav(), network_content(), network_to_name(), new_contact(), notification(), notifier_run(), obj_verbs(), oembed_fetch_url(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_content(), ping_init(), poller_run(), populate_acl(), post_activity_item(), post_init(), prepare_body(), probe_well_known(), proc_run(), process_delivery(), profile_content(), profile_sidebar(), profiles_content(), profiles_post(), replace_macros(), rmagic_post(), settings_post(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), smilies(), subthread_content(), tag_deliver(), validate_channelname(), wfinger_init(), widget_affinity(), xrd_init(), zfinger_init(), zid(), and zid_init().

        @@ -298,7 +298,7 @@ Functions
        -

        Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), App\build_pagehead(), categories_widget(), channel_content(), chat_content(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_unshare(), dir_safe_mode(), dir_sort_links(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), home_content(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

        +

        Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), App\build_pagehead(), categories_widget(), channel_content(), chat_content(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_unshare(), dir_safe_mode(), dir_sort_links(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), home_content(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), uexport_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

        diff --git a/doc/html/search/all_24.js b/doc/html/search/all_24.js index fef8da2b7..9ad473a4f 100644 --- a/doc/html/search/all_24.js +++ b/doc/html/search/all_24.js @@ -110,7 +110,8 @@ var searchData= ['_24profile_5fowner',['$profile_owner',['../classConversation.html#a2f12724ef0244e9049fe1bb9641b516d',1,'Conversation']]], ['_24profile_5fuid',['$profile_uid',['../classApp.html#a08c24d6a6fc52fcc784b0f765f13b820',1,'App']]], ['_24query_5fstring',['$query_string',['../classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f',1,'App']]], - ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template']]], + ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template\$r()'],['../fixd_8php.html#a8abe176bc41afd728f32ba8c506cbd98',1,'$r(): fixd.php']]], + ['_24rand',['$rand',['../fixd_8php.html#a2da3681c9cce2efe7de29aa578ff4219',1,'fixd.php']]], ['_24rdelim',['$rdelim',['../classApp.html#a244b2d53b21be269aad2269d23192f95',1,'App']]], ['_24red_5fpath',['$red_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a4bba2e56bc8ec3e05f05eae46f56f36d',1,'RedMatrix::RedDAV::RedDirectory']]], ['_24redirect_5furl',['$redirect_url',['../classItem.html#a5b561415861f5b89b0733aacfe0428d1',1,'Item']]], @@ -142,6 +143,7 @@ var searchData= ['_24threads',['$threads',['../classConversation.html#a41f4a549e6a99f98935c4742addd22c8',1,'Conversation']]], ['_24timezone',['$timezone',['../classApp.html#ab35b01a366a2ea95725e97af278f87ab',1,'App\$timezone()'],['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a849c99cf0a7ad065d630c8a30106ad5e',1,'RedMatrix\RedDAV\RedBasicAuth\$timezone()']]], ['_24toplevel',['$toplevel',['../classItem.html#a5cfa6cf964f433a917a81cab079ff9d8',1,'Item']]], + ['_24total',['$total',['../fixd_8php.html#a241b818f48030b628685b2e5119c5624',1,'fixd.php']]], ['_24type',['$type',['../classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03',1,'photo_driver']]], ['_24types',['$types',['../classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03',1,'photo_driver']]], ['_24uid',['$uid',['../apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a',1,'style.php']]], diff --git a/doc/html/search/all_62.js b/doc/html/search/all_62.js index 2f3f402f0..c4d2bcad1 100644 --- a/doc/html/search/all_62.js +++ b/doc/html/search/all_62.js @@ -10,6 +10,8 @@ var searchData= ['bb2diaspora_5fitemwallwall',['bb2diaspora_itemwallwall',['../bb2diaspora_8php.html#aab32042f8bd63552d3fadeeae9eab083',1,'bb2diaspora.php']]], ['bb2dmention_5fcallback',['bb2dmention_callback',['../bb2diaspora_8php.html#a5258d2f1addeb0a2a6b54c4f9e7d0f34',1,'bb2diaspora.php']]], ['bb_5flocation',['bb_location',['../bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd',1,'bbcode.php']]], + ['bb_5fmap_5fcoords',['bb_map_coords',['../bbcode_8php.html#a02d5f2434e7bb5cf683e52a9b4787f24',1,'bbcode.php']]], + ['bb_5fmap_5flocation',['bb_map_location',['../bbcode_8php.html#a7cb403fd1c36d7376c2f3932a1ceb54d',1,'bbcode.php']]], ['bb_5fparse_5fapp',['bb_parse_app',['../bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2',1,'bbcode.php']]], ['bb_5fparse_5fcrypt',['bb_parse_crypt',['../bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f',1,'bbcode.php']]], ['bb_5fparse_5felement',['bb_parse_element',['../bbcode_8php.html#aa73fb62e7be1fa5fce4ad5f3d4487fc9',1,'bbcode.php']]], diff --git a/doc/html/search/all_66.js b/doc/html/search/all_66.js index 70e71ae11..70717140d 100644 --- a/doc/html/search/all_66.js +++ b/doc/html/search/all_66.js @@ -44,12 +44,13 @@ var searchData= ['fix_5fprivate_5fphotos',['fix_private_photos',['../items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87',1,'items.php']]], ['fix_5fsystem_5furls',['fix_system_urls',['../boot_8php.html#aca5e42678e178c6b9034610d66666fd7',1,'boot.php']]], ['fixacl',['fixacl',['../acl__selectors_8php.html#ad6664fb8330308e23f2645cd6624727e',1,'acl_selectors.php']]], + ['fixd_2ephp',['fixd.php',['../fixd_8php.html',1,'']]], ['fkoauth1',['FKOAuth1',['../classFKOAuth1.html',1,'']]], ['fkoauthdatastore',['FKOAuthDataStore',['../classFKOAuthDataStore.html',1,'']]], ['flip',['flip',['../classphoto__driver.html#a2b2a99021fc63ed6465d703ddddcb832',1,'photo_driver\flip()'],['../classphoto__gd.html#a44cedef376044018702d9355ddc813ce',1,'photo_gd\flip()'],['../classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393',1,'photo_imagick\flip()']]], ['fnull',['fnull',['../namespaceupdatetpl.html#a79c20eb62d568c999b56eb08530355d3',1,'updatetpl']]], - ['follow_2ephp',['follow.php',['../include_2follow_8php.html',1,'']]], ['follow_2ephp',['follow.php',['../mod_2follow_8php.html',1,'']]], + ['follow_2ephp',['follow.php',['../include_2follow_8php.html',1,'']]], ['follow_5fcontent',['follow_content',['../mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592',1,'follow.php']]], ['follow_5finit',['follow_init',['../mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a',1,'follow.php']]], ['foofoo',['foofoo',['../dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1',1,'dimport.php']]], diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js index 306a31b0c..065d9ae9b 100644 --- a/doc/html/search/all_67.js +++ b/doc/html/search/all_67.js @@ -3,6 +3,8 @@ var searchData= ['gen_5ftoken',['gen_token',['../classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819',1,'FKOAuthDataStore']]], ['gender_5fselector',['gender_selector',['../profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355',1,'profile_selectors.php']]], ['gender_5fselector_5fmin',['gender_selector_min',['../profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816',1,'profile_selectors.php']]], + ['generate_5fmap',['generate_map',['../text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357',1,'text.php']]], + ['generate_5fnamed_5fmap',['generate_named_map',['../text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b',1,'text.php']]], ['generatedirectoryindex',['generateDirectoryIndex',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#af764d5f14df751f9ec86c34fab300c09',1,'RedMatrix::RedDAV::RedBrowser']]], ['get',['get',['../classCache.html#a70392b109331897bf9fdd7f1960e21de',1,'Cache\get()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a7241beecd01f5bb4e74659863dd85bd8',1,'RedMatrix\RedDAV\RedFile\get()']]], ['get_5faccount',['get_account',['../classApp.html#a08bc87aff64f39fbc084e9d6545cee4d',1,'App']]], @@ -135,8 +137,8 @@ var searchData= ['gravity_5flike',['GRAVITY_LIKE',['../boot_8php.html#a1f5906598e90b5ea2b4245f682be4348',1,'boot.php']]], ['gravity_5fparent',['GRAVITY_PARENT',['../boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3',1,'boot.php']]], ['greenthumbnails_2ephp',['greenthumbnails.php',['../greenthumbnails_8php.html',1,'']]], - ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]], + ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], ['group_5fadd',['group_add',['../include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce',1,'group.php']]], ['group_5fadd_5fmember',['group_add_member',['../include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b',1,'group.php']]], ['group_5fbyname',['group_byname',['../include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb',1,'group.php']]], diff --git a/doc/html/search/all_6c.js b/doc/html/search/all_6c.js index d55d22589..3d8365dbc 100644 --- a/doc/html/search/all_6c.js +++ b/doc/html/search/all_6c.js @@ -40,6 +40,7 @@ var searchData= ['locs_5fcontent',['locs_content',['../locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44',1,'locs.php']]], ['locs_5fpost',['locs_post',['../locs_8php.html#a6b43654592919ac863d67a1f787a69b9',1,'locs.php']]], ['log',['log',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abf6fe89b0a8239ed93c3b07e1fbce75b',1,'RedMatrix\RedDAV\RedBasicAuth\log()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#af90a1a74cfd643a5c56b9a17ea250d59',1,'RedMatrix\RedDAV\RedDirectory\log()']]], + ['log_5ffailed_5flogin',['log_failed_login',['../auth_8php.html#ae3ecb5f34f202c7f9a61c5d589f6c6e1',1,'auth.php']]], ['logger',['logger',['../text_8php.html#a030fa5ecc64168af0c4f44897a9bce63',1,'text.php']]], ['logger_5fall',['LOGGER_ALL',['../boot_8php.html#afe63ae69ba55299f813766e54df06ede',1,'boot.php']]], ['logger_5fdata',['LOGGER_DATA',['../boot_8php.html#a6969947145a139ec374ce098224d8e81',1,'boot.php']]], diff --git a/doc/html/search/all_6e.js b/doc/html/search/all_6e.js index f9de281e1..033269fb9 100644 --- a/doc/html/search/all_6e.js +++ b/doc/html/search/all_6e.js @@ -1,6 +1,6 @@ var searchData= [ - ['n',['n',['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'php2po.php']]], + ['n',['n',['../fixd_8php.html#a9d4f8a2ab4d92b3ccfd7cba0458098eb',1,'n(): fixd.php'],['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'n(): php2po.php']]], ['names',['names',['../namespaceupdatetpl.html#ab42dd79af65ee82201fd6f04715f62f6',1,'updatetpl']]], ['nameslist',['namesList',['../docblox__errorchecker_8php.html#a2b767cfc461fdd5061fffc9e4a806d5b',1,'docblox_errorchecker.php']]], ['namespace_5factivity',['NAMESPACE_ACTIVITY',['../boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2',1,'boot.php']]], diff --git a/doc/html/search/all_75.js b/doc/html/search/all_75.js index e2dfc165c..3162bb574 100644 --- a/doc/html/search/all_75.js +++ b/doc/html/search/all_75.js @@ -1,6 +1,7 @@ var searchData= [ ['uexport_2ephp',['uexport.php',['../uexport_8php.html',1,'']]], + ['uexport_5fcontent',['uexport_content',['../uexport_8php.html#ae6f79d60916c01675c8cf663cb5fec84',1,'uexport.php']]], ['uexport_5finit',['uexport_init',['../uexport_8php.html#a118920137dedebe0581623a2e57e7b0d',1,'uexport.php']]], ['unamp',['unamp',['../text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7',1,'text.php']]], ['undo_5fpost_5ftagging',['undo_post_tagging',['../text_8php.html#a740ad03e00459039a2c0992246c4e727',1,'text.php']]], diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js index 8138eb3ac..6ecd9d302 100644 --- a/doc/html/search/all_77.js +++ b/doc/html/search/all_77.js @@ -49,5 +49,6 @@ var searchData= ['widget_5ftagcloud_5fwall',['widget_tagcloud_wall',['../widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653',1,'widgets.php']]], ['widget_5fvcard',['widget_vcard',['../widgets_8php.html#abe03366fd22fd27d683518fa0765da50',1,'widgets.php']]], ['widgets_2ephp',['widgets.php',['../widgets_8php.html',1,'']]], - ['writepages_5fwidget',['writepages_widget',['../page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f',1,'page_widgets.php']]] + ['writepages_5fwidget',['writepages_widget',['../page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f',1,'page_widgets.php']]], + ['wtagblock',['wtagblock',['../taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287',1,'taxonomy.php']]] ]; diff --git a/doc/html/search/files_66.js b/doc/html/search/files_66.js index 41bca4490..6d83aa37c 100644 --- a/doc/html/search/files_66.js +++ b/doc/html/search/files_66.js @@ -6,8 +6,9 @@ var searchData= ['filer_2ephp',['filer.php',['../filer_8php.html',1,'']]], ['filerm_2ephp',['filerm.php',['../filerm_8php.html',1,'']]], ['filestorage_2ephp',['filestorage.php',['../filestorage_8php.html',1,'']]], - ['follow_2ephp',['follow.php',['../include_2follow_8php.html',1,'']]], + ['fixd_2ephp',['fixd.php',['../fixd_8php.html',1,'']]], ['follow_2ephp',['follow.php',['../mod_2follow_8php.html',1,'']]], + ['follow_2ephp',['follow.php',['../include_2follow_8php.html',1,'']]], ['fpostit_2ephp',['fpostit.php',['../fpostit_8php.html',1,'']]], ['fresh_2emd',['fresh.md',['../fresh_8md.html',1,'']]], ['friendica_2dto_2dsmarty_2dtpl_2epy',['friendica-to-smarty-tpl.py',['../friendica-to-smarty-tpl_8py.html',1,'']]], diff --git a/doc/html/search/functions_62.js b/doc/html/search/functions_62.js index 88ff6e73e..47ba65793 100644 --- a/doc/html/search/functions_62.js +++ b/doc/html/search/functions_62.js @@ -7,6 +7,8 @@ var searchData= ['bb2diaspora_5fitemwallwall',['bb2diaspora_itemwallwall',['../bb2diaspora_8php.html#aab32042f8bd63552d3fadeeae9eab083',1,'bb2diaspora.php']]], ['bb2dmention_5fcallback',['bb2dmention_callback',['../bb2diaspora_8php.html#a5258d2f1addeb0a2a6b54c4f9e7d0f34',1,'bb2diaspora.php']]], ['bb_5flocation',['bb_location',['../bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd',1,'bbcode.php']]], + ['bb_5fmap_5fcoords',['bb_map_coords',['../bbcode_8php.html#a02d5f2434e7bb5cf683e52a9b4787f24',1,'bbcode.php']]], + ['bb_5fmap_5flocation',['bb_map_location',['../bbcode_8php.html#a7cb403fd1c36d7376c2f3932a1ceb54d',1,'bbcode.php']]], ['bb_5fparse_5fapp',['bb_parse_app',['../bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2',1,'bbcode.php']]], ['bb_5fparse_5fcrypt',['bb_parse_crypt',['../bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f',1,'bbcode.php']]], ['bb_5fparse_5felement',['bb_parse_element',['../bbcode_8php.html#aa73fb62e7be1fa5fce4ad5f3d4487fc9',1,'bbcode.php']]], diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js index bf9255b0d..e93a57b23 100644 --- a/doc/html/search/functions_67.js +++ b/doc/html/search/functions_67.js @@ -3,6 +3,8 @@ var searchData= ['gen_5ftoken',['gen_token',['../classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819',1,'FKOAuthDataStore']]], ['gender_5fselector',['gender_selector',['../profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355',1,'profile_selectors.php']]], ['gender_5fselector_5fmin',['gender_selector_min',['../profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816',1,'profile_selectors.php']]], + ['generate_5fmap',['generate_map',['../text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357',1,'text.php']]], + ['generate_5fnamed_5fmap',['generate_named_map',['../text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b',1,'text.php']]], ['generatedirectoryindex',['generateDirectoryIndex',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#af764d5f14df751f9ec86c34fab300c09',1,'RedMatrix::RedDAV::RedBrowser']]], ['get',['get',['../classCache.html#a70392b109331897bf9fdd7f1960e21de',1,'Cache\get()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a7241beecd01f5bb4e74659863dd85bd8',1,'RedMatrix\RedDAV\RedFile\get()']]], ['get_5faccount',['get_account',['../classApp.html#a08bc87aff64f39fbc084e9d6545cee4d',1,'App']]], diff --git a/doc/html/search/functions_6c.js b/doc/html/search/functions_6c.js index 15d34398b..de4a599eb 100644 --- a/doc/html/search/functions_6c.js +++ b/doc/html/search/functions_6c.js @@ -31,6 +31,7 @@ var searchData= ['locs_5fcontent',['locs_content',['../locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44',1,'locs.php']]], ['locs_5fpost',['locs_post',['../locs_8php.html#a6b43654592919ac863d67a1f787a69b9',1,'locs.php']]], ['log',['log',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abf6fe89b0a8239ed93c3b07e1fbce75b',1,'RedMatrix\RedDAV\RedBasicAuth\log()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#af90a1a74cfd643a5c56b9a17ea250d59',1,'RedMatrix\RedDAV\RedDirectory\log()']]], + ['log_5ffailed_5flogin',['log_failed_login',['../auth_8php.html#ae3ecb5f34f202c7f9a61c5d589f6c6e1',1,'auth.php']]], ['logger',['logger',['../text_8php.html#a030fa5ecc64168af0c4f44897a9bce63',1,'text.php']]], ['login',['login',['../boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4',1,'boot.php']]], ['login_5fcontent',['login_content',['../login_8php.html#a1d69ca88eb9005a7026e128b9a645904',1,'login.php']]], diff --git a/doc/html/search/functions_75.js b/doc/html/search/functions_75.js index d9c275694..e05062fb2 100644 --- a/doc/html/search/functions_75.js +++ b/doc/html/search/functions_75.js @@ -1,5 +1,6 @@ var searchData= [ + ['uexport_5fcontent',['uexport_content',['../uexport_8php.html#ae6f79d60916c01675c8cf663cb5fec84',1,'uexport.php']]], ['uexport_5finit',['uexport_init',['../uexport_8php.html#a118920137dedebe0581623a2e57e7b0d',1,'uexport.php']]], ['unamp',['unamp',['../text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7',1,'text.php']]], ['undo_5fpost_5ftagging',['undo_post_tagging',['../text_8php.html#a740ad03e00459039a2c0992246c4e727',1,'text.php']]], diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js index b447de606..ff626b35a 100644 --- a/doc/html/search/functions_77.js +++ b/doc/html/search/functions_77.js @@ -41,5 +41,6 @@ var searchData= ['widget_5ftagcloud',['widget_tagcloud',['../widgets_8php.html#a6dbc227aac750774284ee39c45f0a200',1,'widgets.php']]], ['widget_5ftagcloud_5fwall',['widget_tagcloud_wall',['../widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653',1,'widgets.php']]], ['widget_5fvcard',['widget_vcard',['../widgets_8php.html#abe03366fd22fd27d683518fa0765da50',1,'widgets.php']]], - ['writepages_5fwidget',['writepages_widget',['../page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f',1,'page_widgets.php']]] + ['writepages_5fwidget',['writepages_widget',['../page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f',1,'page_widgets.php']]], + ['wtagblock',['wtagblock',['../taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287',1,'taxonomy.php']]] ]; diff --git a/doc/html/search/variables_24.js b/doc/html/search/variables_24.js index fef8da2b7..9ad473a4f 100644 --- a/doc/html/search/variables_24.js +++ b/doc/html/search/variables_24.js @@ -110,7 +110,8 @@ var searchData= ['_24profile_5fowner',['$profile_owner',['../classConversation.html#a2f12724ef0244e9049fe1bb9641b516d',1,'Conversation']]], ['_24profile_5fuid',['$profile_uid',['../classApp.html#a08c24d6a6fc52fcc784b0f765f13b820',1,'App']]], ['_24query_5fstring',['$query_string',['../classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f',1,'App']]], - ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template']]], + ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template\$r()'],['../fixd_8php.html#a8abe176bc41afd728f32ba8c506cbd98',1,'$r(): fixd.php']]], + ['_24rand',['$rand',['../fixd_8php.html#a2da3681c9cce2efe7de29aa578ff4219',1,'fixd.php']]], ['_24rdelim',['$rdelim',['../classApp.html#a244b2d53b21be269aad2269d23192f95',1,'App']]], ['_24red_5fpath',['$red_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a4bba2e56bc8ec3e05f05eae46f56f36d',1,'RedMatrix::RedDAV::RedDirectory']]], ['_24redirect_5furl',['$redirect_url',['../classItem.html#a5b561415861f5b89b0733aacfe0428d1',1,'Item']]], @@ -142,6 +143,7 @@ var searchData= ['_24threads',['$threads',['../classConversation.html#a41f4a549e6a99f98935c4742addd22c8',1,'Conversation']]], ['_24timezone',['$timezone',['../classApp.html#ab35b01a366a2ea95725e97af278f87ab',1,'App\$timezone()'],['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a849c99cf0a7ad065d630c8a30106ad5e',1,'RedMatrix\RedDAV\RedBasicAuth\$timezone()']]], ['_24toplevel',['$toplevel',['../classItem.html#a5cfa6cf964f433a917a81cab079ff9d8',1,'Item']]], + ['_24total',['$total',['../fixd_8php.html#a241b818f48030b628685b2e5119c5624',1,'fixd.php']]], ['_24type',['$type',['../classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03',1,'photo_driver']]], ['_24types',['$types',['../classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03',1,'photo_driver']]], ['_24uid',['$uid',['../apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a',1,'style.php']]], diff --git a/doc/html/search/variables_6e.js b/doc/html/search/variables_6e.js index 0045afbae..55b3c17f6 100644 --- a/doc/html/search/variables_6e.js +++ b/doc/html/search/variables_6e.js @@ -1,6 +1,6 @@ var searchData= [ - ['n',['n',['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'php2po.php']]], + ['n',['n',['../fixd_8php.html#a9d4f8a2ab4d92b3ccfd7cba0458098eb',1,'n(): fixd.php'],['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'n(): php2po.php']]], ['names',['names',['../namespaceupdatetpl.html#ab42dd79af65ee82201fd6f04715f62f6',1,'updatetpl']]], ['namespace_5factivity',['NAMESPACE_ACTIVITY',['../boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2',1,'boot.php']]], ['namespace_5factivity_5fschema',['NAMESPACE_ACTIVITY_SCHEMA',['../boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133',1,'boot.php']]], diff --git a/doc/html/taxonomy_8php.html b/doc/html/taxonomy_8php.html index 3f16dad15..2336f9d83 100644 --- a/doc/html/taxonomy_8php.html +++ b/doc/html/taxonomy_8php.html @@ -134,6 +134,8 @@ Functions    tagblock ($link, $uid, $count=0, $authors= '', $flags=0, $restrict=0, $type=TERM_HASHTAG)   + wtagblock ($uid, $count=0, $authors= '', $flags=0, $restrict=0, $type=TERM_HASHTAG) +   catblock ($uid, $count=0, $authors= '', $flags=0, $restrict=0, $type=TERM_CATEGORY)    dir_tagblock ($link, $r) @@ -518,7 +520,7 @@ Functions @@ -576,8 +578,6 @@ Functions
        -

        Referenced by widget_tagcloud_wall().

        -
        @@ -638,6 +638,58 @@ Functions

        Referenced by channel_content(), items_fetch(), and network_content().

        + + + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        wtagblock ( $uid,
         $count = 0,
         $authors = '',
         $flags = 0,
         $restrict = 0,
         $type = TERM_HASHTAG 
        )
        +
        + +

        Referenced by widget_tagcloud_wall().

        +
        diff --git a/doc/html/taxonomy_8php.js b/doc/html/taxonomy_8php.js index 903cd8534..bb390422e 100644 --- a/doc/html/taxonomy_8php.js +++ b/doc/html/taxonomy_8php.js @@ -15,5 +15,6 @@ var taxonomy_8php = [ "tagadelic", "taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a", null ], [ "tagblock", "taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2", null ], [ "tags_sort", "taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43", null ], - [ "term_query", "taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c", null ] + [ "term_query", "taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c", null ], + [ "wtagblock", "taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287", null ] ]; \ No newline at end of file diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index 370b02e92..71fca21d1 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -142,14 +142,18 @@ Functions  perms2str ($p)    item_message_id () + Generate a guaranteed unique (for this domain) item ID for ATOM. More...
           photo_new_resource () + Generate a guaranteed unique photo ID. More...
           attribute_contains ($attr, $s)    logger ($msg, $level=0) + Logging function for RedMatrix. More...
           dlogger ($msg, $level=0) + This is a special logging facility for developers. More...
           profiler ($t1, $t2, $label)   @@ -217,6 +221,10 @@ Functions    format_filer (&$item)   + generate_map ($coord) +  + generate_named_map ($location) +   prepare_body (&$item, $attach=false)    prepare_text ($text, $content_type= 'text/bbcode') @@ -597,6 +605,8 @@ Variables
        +

        @ Return a div to clear floats.

        +
        Returns
        string

        Referenced by common_content(), and match_content().

        @@ -678,6 +688,17 @@ Variables
        +

        This is a special logging facility for developers.

        +

        It allows one to target specific things to trace/debug and is identical to logger() with the exception of the log filename. This allows one to isolate specific calls while allowing logger() to paint a bigger picture of overall activity and capture more detail.

        +

        If you find dlogger() calls in checked in code, you are free to remove them - so as to provide a noise-free development environment which responds to events you are targetting personally.

        +
        Parameters
        + + + +
        string$msgMessage to log
        int$levelA log level.
        +
        +
        +
        @@ -899,6 +920,42 @@ Variables

        Referenced by prepare_body().

        + + + +
        +
        + + + + + + + + +
        generate_map ( $coord)
        +
        + +

        Referenced by bb_map_coords(), and prepare_body().

        + +
        +
        + +
        +
        + + + + + + + + +
        generate_named_map ( $location)
        +
        + +

        Referenced by bb_map_location().

        +
        @@ -1204,6 +1261,10 @@ Variables
        +

        Generate a guaranteed unique (for this domain) item ID for ATOM.

        +

        Safe from birthday paradox.

        +
        Returns
        string a unique id
        +

        Referenced by event_store_item(), impel_init(), item_post(), like_content(), mood_init(), photo_upload(), photos_create_item(), post_activity_item(), profile_activity(), and subthread_content().

        @@ -1405,6 +1466,18 @@ Variables
        +

        Logging function for RedMatrix.

        +

        Logging output is configured through RedMatrix's system config. The log file is set in system logfile, log level in system loglevel and to enable logging set system debugging.

        +

        Available constants for log level are LOGGER_NORMAL, LOGGER_TRACE, LOGGER_DEBUG, LOGGER_DATA and LOGGER_ALL.

        +

        Since PHP5.4 we get the file, function and line automatically where the logger was caleld, so no need to add it to the message anymore.

        +
        Parameters
        + + + +
        string$msgMessage to log
        int$levelA log level.
        +
        +
        +

        Referenced by account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_post(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_oauth_request_token(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), attach_mkdir(), avatar_img(), base64url_decode(), bb2diaspora_itembody(), bb2diaspora_itemwallwall(), bookmark_add(), bookmarks_init(), build_sync_packet(), channel_remove(), chanview_content(), chat_post(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), cloud_init(), connedit_post(), consume_feed(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), datetime_convert(), RedMatrix\RedDAV\RedFile\delete(), delete_imported_item(), deliver_run(), detect_language(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_decode(), diaspora_dispatch(), diaspora_dispatch_public(), diaspora_handle_from_contact(), diaspora_is_blacklisted(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_status(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_parse_query(), directory_content(), directory_run(), discover_by_url(), discover_by_webbie(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), find_diaspora_person_by_handle(), fix_private_photos(), fix_system_urls(), RedMatrix\RedDAV\RedFile\get(), get_atom_elements(), get_diaspora_key(), get_diaspora_reshare_xml(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), group_content(), guess_image_type(), http_status_exit(), hubloc_change_primary(), impel_init(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), old_webfinger(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), prune_hub_reinstalls(), public_recips(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), rbmark_post(), receive_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), scale_external_images(), scrape_feed(), scrape_vcard(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), start_delivery_chain(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_feed_item(), update_imported_item(), update_queue_time(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), verify_email_address(), xml2array(), xml_status(), z_fetch_url(), z_post_url(), zfinger_init(), zid_init(), zot_build_packet(), zot_feed(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

        @@ -1641,6 +1714,10 @@ Variables
        +

        Generate a guaranteed unique photo ID.

        +

        Safe from birthday paradox.

        +
        Returns
        string a uniqe hash
        +

        Referenced by import_channel_photo(), import_profile_photo(), and photo_upload().

        @@ -1890,7 +1967,7 @@ Variables
        Returns
        string substituted string
        -

        Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), App\build_pagehead(), categories_widget(), channel_content(), chat_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_unshare(), dir_safe_mode(), dir_sort_links(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), home_content(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), lostpass_post(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), user_allow(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

        +

        Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), App\build_pagehead(), categories_widget(), channel_content(), chat_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_unshare(), dir_safe_mode(), dir_sort_links(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), home_content(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), lostpass_post(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), uexport_content(), user_allow(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

        diff --git a/doc/html/text_8php.js b/doc/html/text_8php.js index 2f8b883a1..14999d6f0 100644 --- a/doc/html/text_8php.js +++ b/doc/html/text_8php.js @@ -28,6 +28,8 @@ var text_8php = [ "format_filer", "text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91", null ], [ "format_hashtags", "text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59", null ], [ "format_mentions", "text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08", null ], + [ "generate_map", "text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357", null ], + [ "generate_named_map", "text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b", null ], [ "get_mentions", "text_8php.html#a76d1b3435c067978d7b484c45f56472b", null ], [ "get_mood_verbs", "text_8php.html#a736db13a966b8abaf8c9198faa35911a", null ], [ "get_plink", "text_8php.html#aac0969ae09853205992ba06ab9f9f61a", null ], diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index af64c3906..ed74a536b 100644 --- a/doc/html/typo_8php.html +++ b/doc/html/typo_8php.html @@ -134,7 +134,7 @@ Variables
        -

        Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), advanced_profile(), allowed_email(), allowed_url(), alt_pager(), api_account_verify_credentials(), api_albums(), api_apply_template(), api_call(), api_content(), api_direct_messages_all(), api_direct_messages_box(), api_direct_messages_conversation(), api_direct_messages_inbox(), api_direct_messages_new(), api_direct_messages_sentbox(), api_favorites(), api_followers_ids(), api_format_as(), api_format_items(), api_friends_ids(), api_get_user(), api_item_get_user(), api_login(), api_photos(), api_post(), api_rss_extra(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_followers(), api_statuses_friends(), api_statuses_home_timeline(), api_statuses_mediap(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_statusnet_config(), api_users_show(), app_name_compare(), appman_content(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), block_content(), block_init(), blocks_content(), blocks_init(), bookmarks_content(), bookmarks_init(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), clean_urls(), cli_startup(), cli_suggest_run(), cloud_init(), comanche_parser(), comanche_replace_region(), comanche_widget(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_clone(), connections_content(), connections_init(), connections_post(), connedit_clone(), connedit_content(), connedit_init(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_transmit(), diaspora_unshare(), directory_content(), directory_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), ev_compare(), event_store_item(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_init(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), hivenet_init(), home_content(), home_init(), hostxrd_init(), impel_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), layouts_init(), like_content(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_pdl(), load_translation_table(), load_xconfig(), locs_content(), locs_post(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), p_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), regver_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), search_ac_init(), search_content(), search_init(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), user_approve(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_upload_post(), webpages_content(), webpages_init(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_item(), widget_mailmenu(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

        +

        Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), advanced_profile(), allowed_email(), allowed_url(), alt_pager(), api_account_verify_credentials(), api_albums(), api_apply_template(), api_call(), api_content(), api_direct_messages_all(), api_direct_messages_box(), api_direct_messages_conversation(), api_direct_messages_inbox(), api_direct_messages_new(), api_direct_messages_sentbox(), api_favorites(), api_followers_ids(), api_format_as(), api_format_items(), api_friends_ids(), api_get_user(), api_item_get_user(), api_login(), api_photos(), api_post(), api_rss_extra(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_followers(), api_statuses_friends(), api_statuses_home_timeline(), api_statuses_mediap(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_statusnet_config(), api_users_show(), app_name_compare(), appman_content(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), block_content(), block_init(), blocks_content(), blocks_init(), bookmarks_content(), bookmarks_init(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), clean_urls(), cli_startup(), cli_suggest_run(), cloud_init(), comanche_parser(), comanche_replace_region(), comanche_widget(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_clone(), connections_content(), connections_init(), connections_post(), connedit_clone(), connedit_content(), connedit_init(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_transmit(), diaspora_unshare(), directory_content(), directory_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), ev_compare(), event_store_item(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_init(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), hivenet_init(), home_content(), home_init(), hostxrd_init(), impel_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), layouts_init(), like_content(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_pdl(), load_translation_table(), load_xconfig(), locs_content(), locs_post(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), p_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), regver_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), search_ac_init(), search_content(), search_init(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), user_approve(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_upload_post(), webpages_content(), webpages_init(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_item(), widget_mailmenu(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

        diff --git a/doc/html/uexport_8php.html b/doc/html/uexport_8php.html index ac904249a..dc0265b2e 100644 --- a/doc/html/uexport_8php.html +++ b/doc/html/uexport_8php.html @@ -114,8 +114,26 @@ $(document).ready(function(){initNavTree('uexport_8php.html','');}); Functions  uexport_init (&$a)   + uexport_content (&$a) + 

        Function Documentation

        + +
        +
        + + + + + + + + +
        uexport_content ($a)
        +
        + +
        +
        diff --git a/doc/html/uexport_8php.js b/doc/html/uexport_8php.js index 05a236df8..ec8404f5c 100644 --- a/doc/html/uexport_8php.js +++ b/doc/html/uexport_8php.js @@ -1,4 +1,5 @@ var uexport_8php = [ + [ "uexport_content", "uexport_8php.html#ae6f79d60916c01675c8cf663cb5fec84", null ], [ "uexport_init", "uexport_8php.html#a118920137dedebe0581623a2e57e7b0d", null ] ]; \ No newline at end of file diff --git a/util/messages.po b/util/messages.po index 6d2340a11..12d872910 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-12-12.887\n" +"Project-Id-Version: 2014-12-19.894\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-12 00:03-0800\n" +"POT-Creation-Date: 2014-12-19 00:04-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,936 +23,865 @@ msgid "Cannot locate DNS info for database server '%s'" msgstr "" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 +#: ../../mod/photos.php:91 ../../mod/photos.php:654 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 ../../mod/photos.php:91 -#: ../../mod/photos.php:654 +#: ../../mod/profile_photo.php:423 msgid "Profile Photos" msgstr "" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." +#: ../../include/items.php:382 ../../mod/group.php:68 +#: ../../mod/subthread.php:49 ../../mod/profperm.php:23 ../../mod/like.php:246 +#: ../../index.php:389 +msgid "Permission denied" msgstr "" -#: ../../include/follow.php:33 -msgid "Channel location missing." +#: ../../include/items.php:969 ../../include/items.php:1014 +msgid "(Unknown)" msgstr "" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." +#: ../../include/items.php:1171 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." +#: ../../include/items.php:1173 +msgid "Visible to you only." msgstr "" -#: ../../include/follow.php:135 ../../include/follow.php:202 -msgid "Protocol disabled." +#: ../../include/items.php:1175 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/follow.php:176 -msgid "Channel discovery failed." +#: ../../include/items.php:1177 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/follow.php:192 -msgid "local account not found." +#: ../../include/items.php:1179 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." +#: ../../include/items.php:1181 +msgid "Visible to all connections." msgstr "" -#: ../../include/notify.php:23 -msgid "created a new post" +#: ../../include/items.php:1183 +msgid "Visible to approved connections." msgstr "" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" +#: ../../include/items.php:1185 +msgid "Visible to specific connections." msgstr "" -#: ../../include/security.php:357 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +#: ../../include/items.php:3952 ../../mod/display.php:32 +#: ../../mod/thing.php:76 ../../mod/filestorage.php:26 ../../mod/admin.php:168 +#: ../../mod/admin.php:896 ../../mod/admin.php:1099 ../../mod/viewsrc.php:20 +msgid "Item not found." msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" +#: ../../include/items.php:4019 ../../include/photos.php:15 +#: ../../include/attach.php:116 ../../include/attach.php:163 +#: ../../include/attach.php:226 ../../include/attach.php:240 +#: ../../include/attach.php:280 ../../include/attach.php:294 +#: ../../include/attach.php:318 ../../include/attach.php:511 +#: ../../include/attach.php:585 ../../include/chat.php:116 +#: ../../mod/mood.php:112 ../../mod/register.php:72 ../../mod/mitem.php:106 +#: ../../mod/achievements.php:30 ../../mod/settings.php:542 +#: ../../mod/group.php:9 ../../mod/poke.php:128 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/setup.php:207 ../../mod/authtest.php:13 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 +#: ../../mod/block.php:72 ../../mod/delegate.php:6 ../../mod/sources.php:66 +#: ../../mod/events.php:195 ../../mod/channel.php:90 ../../mod/channel.php:201 +#: ../../mod/channel.php:244 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/regmod.php:17 ../../mod/editpost.php:13 ../../mod/common.php:35 +#: ../../mod/connections.php:169 ../../mod/connedit.php:266 +#: ../../mod/mail.php:111 ../../mod/photos.php:68 ../../mod/webpages.php:67 +#: ../../mod/bookmarks.php:46 ../../mod/blocks.php:67 ../../mod/blocks.php:75 +#: ../../mod/editblock.php:65 ../../mod/pdledit.php:21 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:118 ../../mod/profile_photo.php:263 +#: ../../mod/profile_photo.php:276 ../../mod/like.php:154 +#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 +#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/locs.php:71 ../../mod/item.php:191 +#: ../../mod/item.php:199 ../../mod/item.php:972 ../../mod/suggest.php:26 +#: ../../mod/layouts.php:67 ../../mod/layouts.php:74 ../../mod/layouts.php:85 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:550 +#: ../../mod/manage.php:6 ../../mod/menu.php:61 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/network.php:12 +#: ../../mod/notifications.php:66 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 +#: ../../mod/message.php:16 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/page.php:28 ../../mod/page.php:78 +#: ../../mod/appman.php:66 ../../mod/service_limits.php:7 ../../index.php:190 +#: ../../index.php:390 +msgid "Permission denied." msgstr "" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/menu.php:42 ../../include/RedDAV/RedBrowser.php:250 -#: ../../include/apps.php:249 ../../include/ItemObject.php:100 -#: ../../mod/blocks.php:132 ../../mod/settings.php:627 -#: ../../mod/connections.php:381 ../../mod/connections.php:394 -#: ../../mod/connections.php:413 ../../mod/thing.php:233 -#: ../../mod/webpages.php:162 ../../mod/editblock.php:143 -#: ../../mod/editlayout.php:139 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 -#: ../../mod/menu.php:78 -msgid "Edit" +#: ../../include/items.php:4410 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." msgstr "" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" +#: ../../include/items.php:4425 +msgid "Collection is empty." msgstr "" -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1104 -#: ../../include/ItemObject.php:630 ../../mod/webpages.php:166 -#: ../../mod/editblock.php:173 ../../mod/editlayout.php:168 -#: ../../mod/editpost.php:140 ../../mod/editwebpage.php:205 -#: ../../mod/photos.php:998 -msgid "Preview" +#: ../../include/items.php:4432 +#, php-format +msgid "Collection: %s" msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" +#: ../../include/items.php:4443 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" +#: ../../include/items.php:4446 +msgid "Connection not found." msgstr "" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" +#: ../../include/menu.php:42 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/apps.php:249 ../../include/ItemObject.php:100 +#: ../../mod/settings.php:627 ../../mod/editpost.php:112 +#: ../../mod/connections.php:381 ../../mod/connections.php:394 +#: ../../mod/connections.php:413 ../../mod/webpages.php:162 +#: ../../mod/blocks.php:132 ../../mod/editblock.php:143 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 +#: ../../mod/thing.php:233 ../../mod/layouts.php:167 ../../mod/menu.php:78 +msgid "Edit" msgstr "" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" +#: ../../include/message.php:18 +msgid "No recipient provided." msgstr "" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" +#: ../../include/message.php:23 +msgid "[no subject]" msgstr "" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 -msgid "Advanced" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." msgstr "" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" +#: ../../include/network.php:590 +msgid "view full size" msgstr "" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" msgstr "" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:316 ../../mod/directory.php:321 -msgid "Find" +#: ../../include/permissions.php:28 +msgid "Can view my photo albums" msgstr "" -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:320 -msgid "Channel Suggestions" +#: ../../include/permissions.php:29 +msgid "Can view my connections" msgstr "" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" +#: ../../include/permissions.php:30 +msgid "Can view my file storage" msgstr "" -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" +#: ../../include/permissions.php:31 +msgid "Can view my webpages" msgstr "" -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" +#: ../../include/permissions.php:34 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/contact_widgets.php:57 ../../include/features.php:73 -#: ../../include/widgets.php:298 -msgid "Saved Folders" +#: ../../include/permissions.php:35 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:301 -msgid "Everything" +#: ../../include/permissions.php:36 +msgid "Can comment on or like my posts" msgstr "" -#: ../../include/contact_widgets.php:92 ../../include/taxonomy.php:230 -#: ../../include/widgets.php:35 -msgid "Categories" +#: ../../include/permissions.php:37 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" +#: ../../include/permissions.php:38 +msgid "Can post photos to my photo albums" +msgstr "" -#: ../../include/contact_widgets.php:130 -msgid "show more" +#: ../../include/permissions.php:39 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/oembed.php:171 -msgid "Embedded content" +#: ../../include/permissions.php:39 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" +#: ../../include/permissions.php:41 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/message.php:18 -msgid "No recipient provided." +#: ../../include/permissions.php:41 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/message.php:23 -msgid "[no subject]" +#: ../../include/permissions.php:42 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." +#: ../../include/permissions.php:43 +msgid "Can write to my file storage" msgstr "" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." +#: ../../include/permissions.php:44 +msgid "Can edit my webpages" msgstr "" -#: ../../include/activities.php:39 -msgid " and " +#: ../../include/permissions.php:46 +msgid "Can source my public posts in derived channels" msgstr "" -#: ../../include/activities.php:47 -msgid "public profile" +#: ../../include/permissions.php:46 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/activities.php:52 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/permissions.php:48 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/activities.php:53 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/permissions.php:48 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/permissions.php:814 +msgid "Social Networking" msgstr "" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" +#: ../../include/permissions.php:815 ../../include/permissions.php:817 +#: ../../include/permissions.php:819 +msgid "Mostly Public" msgstr "" -#: ../../include/acl_selectors.php:241 -msgid "Show" +#: ../../include/permissions.php:815 ../../include/permissions.php:817 +#: ../../include/permissions.php:819 +msgid "Restricted" msgstr "" -#: ../../include/acl_selectors.php:242 -msgid "Don't show" +#: ../../include/permissions.php:815 ../../include/permissions.php:817 +msgid "Private" msgstr "" -#: ../../include/acl_selectors.php:248 ../../mod/events.php:596 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:137 -#: ../../mod/photos.php:588 ../../mod/photos.php:950 -msgid "Permissions" +#: ../../include/permissions.php:816 +msgid "Community Forum" msgstr "" -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:312 -#: ../../mod/photos.php:1149 -msgid "Close" +#: ../../include/permissions.php:818 +msgid "Feed Republish" msgstr "" -#: ../../include/bb2diaspora.php:384 -msgid "Attachments:" +#: ../../include/permissions.php:820 +msgid "Special Purpose" msgstr "" -#: ../../include/bb2diaspora.php:463 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" +#: ../../include/permissions.php:821 +msgid "Celebrity/Soapbox" msgstr "" -#: ../../include/bb2diaspora.php:465 -msgid "Redmatrix event notification:" +#: ../../include/permissions.php:821 +msgid "Group Repository" msgstr "" -#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 -msgid "Starts:" +#: ../../include/permissions.php:822 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" msgstr "" -#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 -msgid "Finishes:" +#: ../../include/permissions.php:823 +msgid "Custom/Expert Mode" msgstr "" -#: ../../include/bb2diaspora.php:485 ../../include/identity.php:891 -#: ../../include/event.php:40 ../../mod/events.php:590 -#: ../../mod/directory.php:199 -msgid "Location:" +#: ../../include/notify.php:23 +msgid "created a new post" msgstr "" -#: ../../include/attach.php:116 ../../include/attach.php:163 -#: ../../include/attach.php:226 ../../include/attach.php:240 -#: ../../include/attach.php:280 ../../include/attach.php:294 -#: ../../include/attach.php:318 ../../include/attach.php:511 -#: ../../include/attach.php:585 ../../include/photos.php:15 -#: ../../include/items.php:4019 ../../include/chat.php:116 -#: ../../mod/mood.php:112 ../../mod/mitem.php:106 -#: ../../mod/achievements.php:30 ../../mod/register.php:72 -#: ../../mod/sources.php:66 ../../mod/poke.php:128 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/authtest.php:13 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/setup.php:207 -#: ../../mod/settings.php:542 ../../mod/events.php:195 -#: ../../mod/channel.php:89 ../../mod/channel.php:198 -#: ../../mod/channel.php:241 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/regmod.php:17 ../../mod/common.php:35 ../../mod/like.php:154 -#: ../../mod/connections.php:169 ../../mod/connedit.php:266 -#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 -#: ../../mod/webpages.php:67 ../../mod/bookmarks.php:46 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:550 -#: ../../mod/editblock.php:65 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/item.php:191 ../../mod/item.php:199 ../../mod/item.php:972 -#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 -#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 -#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/locs.php:71 -#: ../../mod/mail.php:111 ../../mod/invite.php:13 ../../mod/invite.php:104 -#: ../../mod/manage.php:6 ../../mod/layouts.php:67 ../../mod/layouts.php:74 -#: ../../mod/layouts.php:85 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 -#: ../../mod/network.php:12 ../../mod/menu.php:61 ../../mod/message.php:16 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/notifications.php:66 ../../mod/page.php:28 ../../mod/page.php:78 -#: ../../mod/photos.php:68 ../../mod/appman.php:66 -#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" msgstr "" -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." +#: ../../include/taxonomy.php:210 ../../include/taxonomy.php:229 +msgid "Tags" msgstr "" -#: ../../include/attach.php:331 -msgid "No source file." +#: ../../include/taxonomy.php:250 ../../include/contact_widgets.php:92 +#: ../../include/widgets.php:35 +msgid "Categories" msgstr "" -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" +#: ../../include/taxonomy.php:269 +msgid "Keywords" msgstr "" -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" +#: ../../include/taxonomy.php:294 +msgid "have" msgstr "" -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../include/taxonomy.php:294 +msgid "has" msgstr "" -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/taxonomy.php:295 +msgid "want" msgstr "" -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/taxonomy.php:295 +msgid "wants" msgstr "" -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/taxonomy.php:296 ../../include/ItemObject.php:221 +msgid "like" msgstr "" -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." +#: ../../include/taxonomy.php:296 +msgid "likes" msgstr "" -#: ../../include/attach.php:590 -msgid "Empty pathname" +#: ../../include/taxonomy.php:297 ../../include/ItemObject.php:222 +msgid "dislike" msgstr "" -#: ../../include/attach.php:606 -msgid "duplicate filename or path" +#: ../../include/taxonomy.php:297 +msgid "dislikes" msgstr "" -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "" +#: ../../include/taxonomy.php:380 ../../include/identity.php:1148 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1027 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../include/attach.php:681 -msgid "mkdir failed." +#: ../../include/page_widgets.php:6 +msgid "New Page" msgstr "" -#: ../../include/attach.php:685 -msgid "database storage failed." +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:165 +#: ../../mod/blocks.php:135 ../../mod/layouts.php:171 +msgid "View" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:249 -msgid "parent" +#: ../../include/page_widgets.php:40 ../../include/conversation.php:1102 +#: ../../include/ItemObject.php:638 ../../mod/photos.php:998 +#: ../../mod/webpages.php:166 +msgid "Preview" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:130 -msgid "Collection" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 +msgid "Actions" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Principal" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 +msgid "Page Link" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:136 -msgid "Addressbook" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 +msgid "Title" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:139 -msgid "Calendar" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 +msgid "Created" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:142 -msgid "Schedule Inbox" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 +msgid "Edited" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:145 -msgid "Schedule Outbox" +#: ../../include/oembed.php:171 +msgid "Embedded content" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/conversation.php:993 -#: ../../include/apps.php:331 ../../include/apps.php:382 -#: ../../mod/connedit.php:513 ../../mod/photos.php:713 -#: ../../mod/photos.php:1132 -msgid "Unknown" +#: ../../include/oembed.php:180 +msgid "Embedding disabled" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:223 -#, php-format -msgid "%1$s used" +#: ../../include/auth.php:130 +msgid "Logged out." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:228 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" +#: ../../include/auth.php:271 +msgid "Failed authentication" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 -#: ../../include/conversation.php:1540 ../../include/apps.php:133 -#: ../../mod/fbrowser.php:114 -msgid "Files" +#: ../../include/auth.php:285 ../../mod/openid.php:190 +msgid "Login failed." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:567 -#: ../../mod/settings.php:593 ../../mod/admin.php:866 -msgid "Name" +#: ../../include/photos.php:105 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:246 -msgid "Type" +#: ../../include/photos.php:112 +msgid "Image file is empty." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:247 -msgid "Size" +#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 +msgid "Unable to process image" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:248 -msgid "Last Modified" +#: ../../include/photos.php:213 +msgid "Photo storage failed." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/conversation.php:639 -#: ../../include/apps.php:250 ../../include/ItemObject.php:120 -#: ../../mod/settings.php:628 ../../mod/connedit.php:476 -#: ../../mod/thing.php:234 ../../mod/group.php:176 ../../mod/admin.php:730 -#: ../../mod/admin.php:861 ../../mod/photos.php:1070 -msgid "Delete" +#: ../../include/photos.php:341 ../../include/conversation.php:1533 +msgid "Photo Albums" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:252 -msgid "Total" +#: ../../include/photos.php:345 +msgid "Upload New Photos" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:305 -msgid "Create new folder" +#: ../../include/activities.php:39 +msgid " and " msgstr "" -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:169 -#: ../../mod/menu.php:100 ../../mod/new_channel.php:122 -msgid "Create" +#: ../../include/activities.php:47 +msgid "public profile" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:307 -msgid "Upload file" +#: ../../include/activities.php:52 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:361 -#: ../../mod/photos.php:738 ../../mod/photos.php:1246 -msgid "Upload" +#: ../../include/activities.php:53 +#, php-format +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/bookmarks.php:35 +#: ../../include/activities.php:56 #, php-format -msgid "%1$s's bookmarks" +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1528 -msgid "Logout" +#: ../../include/bb2diaspora.php:384 +msgid "Attachments:" msgstr "" -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" +#: ../../include/bb2diaspora.php:463 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" +#: ../../include/bb2diaspora.php:465 +msgid "Redmatrix event notification:" msgstr "" -#: ../../include/nav.php:98 -msgid "Your posts and conversations" +#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 +msgid "Starts:" msgstr "" -#: ../../include/nav.php:99 ../../include/conversation.php:935 -#: ../../mod/connedit.php:429 ../../mod/connedit.php:545 -msgid "View Profile" +#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 +msgid "Finishes:" msgstr "" -#: ../../include/nav.php:99 -msgid "Your profile page" +#: ../../include/bb2diaspora.php:485 ../../include/event.php:40 +#: ../../include/identity.php:891 ../../mod/events.php:590 +#: ../../mod/directory.php:199 +msgid "Location:" msgstr "" -#: ../../include/nav.php:101 -msgid "Edit Profiles" +#: ../../include/features.php:23 +msgid "General Features" msgstr "" -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" +#: ../../include/features.php:25 +msgid "Content Expiration" msgstr "" -#: ../../include/nav.php:103 ../../include/identity.php:864 -msgid "Edit Profile" +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/nav.php:103 -msgid "Edit your profile" +#: ../../include/features.php:26 +msgid "Multiple Profiles" msgstr "" -#: ../../include/nav.php:105 ../../include/conversation.php:1531 -#: ../../include/apps.php:137 ../../mod/fbrowser.php:25 -msgid "Photos" +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/nav.php:105 -msgid "Your photos" +#: ../../include/features.php:27 +msgid "Advanced Profiles" msgstr "" -#: ../../include/nav.php:106 -msgid "Your files" +#: ../../include/features.php:27 +msgid "Additional profile sections and selections" msgstr "" -#: ../../include/nav.php:111 ../../include/apps.php:144 -msgid "Chat" +#: ../../include/features.php:28 +msgid "Profile Import/Export" msgstr "" -#: ../../include/nav.php:111 -msgid "Your chatrooms" +#: ../../include/features.php:28 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/nav.php:117 ../../include/conversation.php:1566 -#: ../../include/apps.php:127 -msgid "Bookmarks" +#: ../../include/features.php:29 +msgid "Web Pages" msgstr "" -#: ../../include/nav.php:117 -msgid "Your bookmarks" +#: ../../include/features.php:29 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/nav.php:121 ../../include/conversation.php:1577 -#: ../../include/apps.php:134 ../../mod/webpages.php:160 -msgid "Webpages" +#: ../../include/features.php:30 +msgid "Private Notes" msgstr "" -#: ../../include/nav.php:121 -msgid "Your webpages" +#: ../../include/features.php:30 +msgid "Enables a tool to store notes and reminders" msgstr "" -#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1529 -msgid "Login" +#: ../../include/features.php:34 +msgid "Navigation Channel Select" msgstr "" -#: ../../include/nav.php:125 -msgid "Sign in" +#: ../../include/features.php:34 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../include/nav.php:142 -#, php-format -msgid "%s - click to logout" +#: ../../include/features.php:38 +msgid "Extended Identity Sharing" msgstr "" -#: ../../include/nav.php:145 -msgid "Remote authentication" +#: ../../include/features.php:38 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." msgstr "" -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" +#: ../../include/features.php:39 +msgid "Expert Mode" msgstr "" -#: ../../include/nav.php:159 -msgid "Home Page" +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" msgstr "" -#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1507 -msgid "Register" +#: ../../include/features.php:40 +msgid "Premium Channel" msgstr "" -#: ../../include/nav.php:163 -msgid "Create an account" +#: ../../include/features.php:40 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" msgstr "" -#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" +#: ../../include/features.php:45 +msgid "Post Composition Features" msgstr "" -#: ../../include/nav.php:168 -msgid "Help and documentation" +#: ../../include/features.php:47 +msgid "Use Markdown" msgstr "" -#: ../../include/nav.php:171 ../../include/widgets.php:91 -#: ../../mod/apps.php:33 -msgid "Apps" +#: ../../include/features.php:47 +msgid "Allow use of \"Markdown\" to format posts" msgstr "" -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" +#: ../../include/features.php:49 ../../include/widgets.php:527 +#: ../../mod/sources.php:88 +msgid "Channel Sources" msgstr "" -#: ../../include/nav.php:173 ../../include/text.php:826 -#: ../../include/text.php:838 ../../include/apps.php:145 -#: ../../mod/search.php:30 -msgid "Search" +#: ../../include/features.php:49 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../include/nav.php:173 -msgid "Search site content" +#: ../../include/features.php:50 +msgid "Even More Encryption" msgstr "" -#: ../../include/nav.php:176 ../../include/apps.php:139 -#: ../../mod/directory.php:320 -msgid "Directory" +#: ../../include/features.php:50 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../include/nav.php:176 -msgid "Channel Directory" +#: ../../include/features.php:51 +msgid "Flag Adult Photos" msgstr "" -#: ../../include/nav.php:190 ../../include/apps.php:131 -msgid "Matrix" +#: ../../include/features.php:51 +msgid "Provide photo edit option to hide adult photos from default album view" msgstr "" -#: ../../include/nav.php:190 -msgid "Your matrix" +#: ../../include/features.php:56 +msgid "Network and Stream Filtering" msgstr "" -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" +#: ../../include/features.php:57 +msgid "Search by Date" msgstr "" -#: ../../include/nav.php:193 ../../include/apps.php:135 -msgid "Channel Home" +#: ../../include/features.php:57 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/nav.php:193 -msgid "Channel home" +#: ../../include/features.php:58 +msgid "Collections Filter" msgstr "" -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" +#: ../../include/features.php:58 +msgid "Enable widget to display Network posts only from selected collections" msgstr "" -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" +#: ../../include/features.php:59 ../../include/widgets.php:272 +msgid "Saved Searches" msgstr "" -#: ../../include/nav.php:200 -msgid "Notices" +#: ../../include/features.php:59 +msgid "Save search terms for re-use" msgstr "" -#: ../../include/nav.php:200 -msgid "Notifications" +#: ../../include/features.php:60 +msgid "Network Personal Tab" msgstr "" -#: ../../include/nav.php:201 -msgid "See all notifications" +#: ../../include/features.php:60 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" +#: ../../include/features.php:61 +msgid "Network New Tab" msgstr "" -#: ../../include/nav.php:204 ../../include/apps.php:141 -msgid "Mail" +#: ../../include/features.php:61 +msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/nav.php:204 -msgid "Private mail" +#: ../../include/features.php:62 +msgid "Affinity Tool" msgstr "" -#: ../../include/nav.php:205 -msgid "See all private messages" +#: ../../include/features.php:62 +msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" +#: ../../include/features.php:63 +msgid "Suggest Channels" msgstr "" -#: ../../include/nav.php:207 -msgid "Inbox" +#: ../../include/features.php:63 +msgid "Show channel suggestions" msgstr "" -#: ../../include/nav.php:208 -msgid "Outbox" +#: ../../include/features.php:68 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/nav.php:209 ../../include/widgets.php:557 -msgid "New Message" +#: ../../include/features.php:71 +msgid "Tagging" msgstr "" -#: ../../include/nav.php:212 ../../include/apps.php:138 -#: ../../mod/events.php:442 -msgid "Events" +#: ../../include/features.php:71 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/nav.php:212 -msgid "Event Calendar" +#: ../../include/features.php:72 +msgid "Post Categories" msgstr "" -#: ../../include/nav.php:213 -msgid "See all events" +#: ../../include/features.php:72 +msgid "Add categories to your posts" msgstr "" -#: ../../include/nav.php:214 -msgid "Mark all events seen" +#: ../../include/features.php:73 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:302 +msgid "Saved Folders" msgstr "" -#: ../../include/nav.php:216 ../../include/apps.php:130 -#: ../../mod/manage.php:148 -msgid "Channel Manager" +#: ../../include/features.php:73 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/nav.php:216 -msgid "Manage Your Channels" +#: ../../include/features.php:74 +msgid "Dislike Posts" msgstr "" -#: ../../include/nav.php:218 ../../include/widgets.php:536 -#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 -msgid "Settings" +#: ../../include/features.php:74 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" +#: ../../include/features.php:75 +msgid "Star Posts" msgstr "" -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" +#: ../../include/features.php:75 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" +#: ../../include/features.php:76 +msgid "Tag Cloud" msgstr "" -#: ../../include/nav.php:257 ../../include/conversation.php:840 -msgid "Loading..." +#: ../../include/features.php:76 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/nav.php:262 -msgid "Please wait..." +#: ../../include/RedDAV/RedBrowser.php:106 +#: ../../include/RedDAV/RedBrowser.php:250 +msgid "parent" msgstr "" -#: ../../include/network.php:590 -msgid "view full size" +#: ../../include/RedDAV/RedBrowser.php:130 +msgid "Collection" msgstr "" -#: ../../include/dir_fns.php:66 -msgid "Directory Options" +#: ../../include/RedDAV/RedBrowser.php:133 +msgid "Principal" msgstr "" -#: ../../include/dir_fns.php:67 -msgid "Alphabetic" +#: ../../include/RedDAV/RedBrowser.php:136 +msgid "Addressbook" msgstr "" -#: ../../include/dir_fns.php:68 -msgid "Reverse Alphabetic" +#: ../../include/RedDAV/RedBrowser.php:139 +msgid "Calendar" msgstr "" -#: ../../include/dir_fns.php:69 -msgid "Newest to Oldest" +#: ../../include/RedDAV/RedBrowser.php:142 +msgid "Schedule Inbox" msgstr "" -#: ../../include/dir_fns.php:70 -msgid "Oldest to Newest" +#: ../../include/RedDAV/RedBrowser.php:145 +msgid "Schedule Outbox" msgstr "" -#: ../../include/dir_fns.php:71 -msgid "Public Forums Only" +#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:331 +#: ../../include/apps.php:382 ../../include/conversation.php:992 +#: ../../mod/connedit.php:513 ../../mod/photos.php:713 +#: ../../mod/photos.php:1132 +msgid "Unknown" msgstr "" -#: ../../include/dir_fns.php:73 -msgid "Sort" +#: ../../include/RedDAV/RedBrowser.php:223 +#, php-format +msgid "%1$s used" msgstr "" -#: ../../include/dir_fns.php:89 -msgid "Enable Safe Search" +#: ../../include/RedDAV/RedBrowser.php:228 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" msgstr "" -#: ../../include/dir_fns.php:91 -msgid "Disable Safe Search" +#: ../../include/RedDAV/RedBrowser.php:242 ../../include/apps.php:133 +#: ../../include/conversation.php:1539 ../../include/nav.php:106 +#: ../../mod/fbrowser.php:114 +msgid "Files" msgstr "" -#: ../../include/dir_fns.php:93 -msgid "Safe Mode" +#: ../../include/RedDAV/RedBrowser.php:246 ../../mod/settings.php:567 +#: ../../mod/settings.php:593 ../../mod/admin.php:866 +msgid "Name" msgstr "" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" +#: ../../include/RedDAV/RedBrowser.php:247 +msgid "Type" msgstr "" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" +#: ../../include/RedDAV/RedBrowser.php:248 +msgid "Size" msgstr "" -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" +#: ../../include/RedDAV/RedBrowser.php:249 +msgid "Last Modified" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can view my connections" +#: ../../include/RedDAV/RedBrowser.php:252 ../../include/apps.php:250 +#: ../../include/conversation.php:639 ../../include/ItemObject.php:120 +#: ../../mod/settings.php:628 ../../mod/group.php:176 +#: ../../mod/connedit.php:476 ../../mod/photos.php:1070 +#: ../../mod/thing.php:234 ../../mod/admin.php:730 ../../mod/admin.php:861 +msgid "Delete" msgstr "" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" +#: ../../include/RedDAV/RedBrowser.php:253 +msgid "Total" msgstr "" -#: ../../include/permissions.php:31 -msgid "Can view my webpages" +#: ../../include/RedDAV/RedBrowser.php:306 +msgid "Create new folder" msgstr "" -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" +#: ../../include/RedDAV/RedBrowser.php:307 ../../mod/mitem.php:169 +#: ../../mod/menu.php:100 ../../mod/new_channel.php:122 +msgid "Create" msgstr "" -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/RedDAV/RedBrowser.php:308 +msgid "Upload file" msgstr "" -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" +#: ../../include/RedDAV/RedBrowser.php:309 ../../mod/photos.php:738 +#: ../../mod/photos.php:1246 ../../mod/profile_photo.php:361 +msgid "Upload" msgstr "" -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" msgstr "" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" +#: ../../include/dir_fns.php:68 +msgid "Directory Options" msgstr "" -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" +#: ../../include/dir_fns.php:69 +msgid "Alphabetic" msgstr "" -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" +#: ../../include/dir_fns.php:70 +msgid "Reverse Alphabetic" msgstr "" -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/dir_fns.php:71 +msgid "Newest to Oldest" msgstr "" -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/dir_fns.php:72 +msgid "Oldest to Newest" msgstr "" -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" +#: ../../include/dir_fns.php:73 +msgid "Public Forums Only" msgstr "" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "" - -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "" - -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "" - -#: ../../include/permissions.php:48 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "" - -#: ../../include/permissions.php:814 -msgid "Social Networking" -msgstr "" - -#: ../../include/permissions.php:815 ../../include/permissions.php:817 -#: ../../include/permissions.php:819 -msgid "Mostly Public" -msgstr "" - -#: ../../include/permissions.php:815 ../../include/permissions.php:817 -#: ../../include/permissions.php:819 -msgid "Restricted" -msgstr "" - -#: ../../include/permissions.php:815 ../../include/permissions.php:817 -msgid "Private" -msgstr "" - -#: ../../include/permissions.php:816 -msgid "Community Forum" -msgstr "" - -#: ../../include/permissions.php:818 -msgid "Feed Republish" -msgstr "" - -#: ../../include/permissions.php:820 -msgid "Special Purpose" -msgstr "" - -#: ../../include/permissions.php:821 -msgid "Celebrity/Soapbox" +#: ../../include/dir_fns.php:75 +msgid "Sort" msgstr "" -#: ../../include/permissions.php:821 -msgid "Group Repository" +#: ../../include/dir_fns.php:91 +msgid "Enable Safe Search" msgstr "" -#: ../../include/permissions.php:822 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" +#: ../../include/dir_fns.php:93 +msgid "Disable Safe Search" msgstr "" -#: ../../include/permissions.php:823 -msgid "Custom/Expert Mode" +#: ../../include/dir_fns.php:95 +msgid "Safe Mode" msgstr "" #: ../../include/comanche.php:35 ../../mod/admin.php:353 @@ -997,7 +926,7 @@ msgid "RSS/Atom" msgstr "" #: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 -#: ../../mod/admin.php:735 ../../boot.php:1531 +#: ../../mod/admin.php:735 ../../boot.php:1542 msgid "Email" msgstr "" @@ -1025,449 +954,458 @@ msgstr "" msgid "MySpace" msgstr "" -#: ../../include/identity.php:31 ../../mod/item.php:1112 -msgid "Unable to obtain identity information from database" +#: ../../include/Contact.php:107 ../../include/identity.php:840 +#: ../../include/conversation.php:937 ../../include/widgets.php:136 +#: ../../include/widgets.php:175 ../../mod/suggest.php:51 +#: ../../mod/match.php:62 ../../mod/directory.php:264 +msgid "Connect" msgstr "" -#: ../../include/identity.php:66 -msgid "Empty name" +#: ../../include/Contact.php:123 +msgid "New window" msgstr "" -#: ../../include/identity.php:68 -msgid "Name too long" +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/identity.php:169 -msgid "No account identifier" +#: ../../include/Contact.php:214 ../../mod/admin.php:646 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/identity.php:182 -msgid "Nickname is required." +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" msgstr "" -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." +#: ../../include/acl_selectors.php:241 +msgid "Show" msgstr "" -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../include/acl_selectors.php:242 +msgid "Don't show" msgstr "" -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" +#: ../../include/acl_selectors.php:248 ../../mod/events.php:596 +#: ../../mod/chat.php:209 ../../mod/photos.php:588 ../../mod/photos.php:950 +#: ../../mod/filestorage.php:137 +msgid "Permissions" msgstr "" -#: ../../include/identity.php:343 -msgid "Default Profile" +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 +#: ../../mod/photos.php:1149 +msgid "Close" msgstr "" -#: ../../include/identity.php:387 ../../include/identity.php:388 -#: ../../include/identity.php:395 ../../include/widgets.php:424 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:320 -#: ../../mod/settings.php:324 ../../mod/settings.php:325 -#: ../../mod/settings.php:328 ../../mod/settings.php:339 -#: ../../mod/connedit.php:510 -msgid "Friends" +#: ../../include/text.php:320 +msgid "prev" msgstr "" -#: ../../include/identity.php:643 -msgid "Requested channel is not available." +#: ../../include/text.php:322 +msgid "first" msgstr "" -#: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/blocks.php:29 ../../mod/connect.php:13 -#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 -msgid "Requested profile is not available." +#: ../../include/text.php:351 +msgid "last" msgstr "" -#: ../../include/identity.php:840 ../../include/Contact.php:107 -#: ../../include/conversation.php:938 ../../include/widgets.php:136 -#: ../../include/widgets.php:175 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 ../../mod/directory.php:264 -msgid "Connect" +#: ../../include/text.php:354 +msgid "next" msgstr "" -#: ../../include/identity.php:854 ../../mod/profiles.php:740 -msgid "Change profile photo" +#: ../../include/text.php:366 +msgid "older" msgstr "" -#: ../../include/identity.php:860 -msgid "Profiles" +#: ../../include/text.php:368 +msgid "newer" msgstr "" -#: ../../include/identity.php:860 -msgid "Manage/edit profiles" +#: ../../include/text.php:756 +msgid "No connections" msgstr "" -#: ../../include/identity.php:861 ../../mod/profiles.php:741 -msgid "Create New Profile" -msgstr "" +#: ../../include/text.php:772 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "" +msgstr[1] "" -#: ../../include/identity.php:875 ../../mod/profiles.php:752 -msgid "Profile Image" +#: ../../include/text.php:785 +msgid "View Connections" msgstr "" -#: ../../include/identity.php:878 -msgid "visible to everybody" +#: ../../include/text.php:842 ../../include/text.php:854 +#: ../../include/apps.php:145 ../../include/nav.php:173 +#: ../../mod/search.php:30 +msgid "Search" msgstr "" -#: ../../include/identity.php:879 ../../mod/profiles.php:635 -#: ../../mod/profiles.php:756 -msgid "Edit visibility" +#: ../../include/text.php:843 ../../include/text.php:855 +#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1339 +#: ../../mod/admin.php:1360 +msgid "Save" msgstr "" -#: ../../include/identity.php:895 ../../include/identity.php:1132 -msgid "Gender:" +#: ../../include/text.php:919 +msgid "poke" msgstr "" -#: ../../include/identity.php:896 ../../include/identity.php:1176 -msgid "Status:" +#: ../../include/text.php:919 ../../include/conversation.php:243 +msgid "poked" msgstr "" -#: ../../include/identity.php:897 ../../include/identity.php:1187 -msgid "Homepage:" +#: ../../include/text.php:920 +msgid "ping" msgstr "" -#: ../../include/identity.php:898 -msgid "Online Now" +#: ../../include/text.php:920 +msgid "pinged" msgstr "" -#: ../../include/identity.php:976 ../../include/identity.php:1056 -#: ../../mod/ping.php:326 -msgid "g A l F d" +#: ../../include/text.php:921 +msgid "prod" msgstr "" -#: ../../include/identity.php:977 ../../include/identity.php:1057 -msgid "F d" +#: ../../include/text.php:921 +msgid "prodded" msgstr "" -#: ../../include/identity.php:1022 ../../include/identity.php:1097 -#: ../../mod/ping.php:348 -msgid "[today]" +#: ../../include/text.php:922 +msgid "slap" msgstr "" -#: ../../include/identity.php:1034 -msgid "Birthday Reminders" +#: ../../include/text.php:922 +msgid "slapped" msgstr "" -#: ../../include/identity.php:1035 -msgid "Birthdays this week:" +#: ../../include/text.php:923 +msgid "finger" msgstr "" -#: ../../include/identity.php:1090 -msgid "[No description]" +#: ../../include/text.php:923 +msgid "fingered" msgstr "" -#: ../../include/identity.php:1108 -msgid "Event Reminders" +#: ../../include/text.php:924 +msgid "rebuff" msgstr "" -#: ../../include/identity.php:1109 -msgid "Events this week:" +#: ../../include/text.php:924 +msgid "rebuffed" msgstr "" -#: ../../include/identity.php:1122 ../../include/identity.php:1251 -#: ../../include/apps.php:136 ../../mod/profperm.php:112 -msgid "Profile" +#: ../../include/text.php:934 +msgid "happy" msgstr "" -#: ../../include/identity.php:1130 ../../mod/settings.php:1012 -msgid "Full Name:" +#: ../../include/text.php:935 +msgid "sad" msgstr "" -#: ../../include/identity.php:1137 -msgid "Like this channel" +#: ../../include/text.php:936 +msgid "mellow" msgstr "" -#: ../../include/identity.php:1148 ../../include/taxonomy.php:360 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1027 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:937 +msgid "tired" +msgstr "" -#: ../../include/identity.php:1161 -msgid "j F, Y" +#: ../../include/text.php:938 +msgid "perky" msgstr "" -#: ../../include/identity.php:1162 -msgid "j F" +#: ../../include/text.php:939 +msgid "angry" msgstr "" -#: ../../include/identity.php:1169 -msgid "Birthday:" +#: ../../include/text.php:940 +msgid "stupified" msgstr "" -#: ../../include/identity.php:1173 -msgid "Age:" +#: ../../include/text.php:941 +msgid "puzzled" msgstr "" -#: ../../include/identity.php:1182 -#, php-format -msgid "for %1$d %2$s" +#: ../../include/text.php:942 +msgid "interested" msgstr "" -#: ../../include/identity.php:1185 ../../mod/profiles.php:657 -msgid "Sexual Preference:" +#: ../../include/text.php:943 +msgid "bitter" msgstr "" -#: ../../include/identity.php:1189 ../../mod/profiles.php:659 -msgid "Hometown:" +#: ../../include/text.php:944 +msgid "cheerful" msgstr "" -#: ../../include/identity.php:1191 -msgid "Tags:" +#: ../../include/text.php:945 +msgid "alive" msgstr "" -#: ../../include/identity.php:1193 ../../mod/profiles.php:660 -msgid "Political Views:" +#: ../../include/text.php:946 +msgid "annoyed" msgstr "" -#: ../../include/identity.php:1195 -msgid "Religion:" +#: ../../include/text.php:947 +msgid "anxious" msgstr "" -#: ../../include/identity.php:1197 -msgid "About:" +#: ../../include/text.php:948 +msgid "cranky" msgstr "" -#: ../../include/identity.php:1199 -msgid "Hobbies/Interests:" +#: ../../include/text.php:949 +msgid "disturbed" msgstr "" -#: ../../include/identity.php:1201 ../../mod/profiles.php:663 -msgid "Likes:" +#: ../../include/text.php:950 +msgid "frustrated" msgstr "" -#: ../../include/identity.php:1203 ../../mod/profiles.php:664 -msgid "Dislikes:" +#: ../../include/text.php:951 +msgid "depressed" msgstr "" -#: ../../include/identity.php:1206 -msgid "Contact information and Social Networks:" +#: ../../include/text.php:952 +msgid "motivated" msgstr "" -#: ../../include/identity.php:1218 -msgid "My other channels:" +#: ../../include/text.php:953 +msgid "relaxed" msgstr "" -#: ../../include/identity.php:1221 -msgid "Musical interests:" +#: ../../include/text.php:954 +msgid "surprised" msgstr "" -#: ../../include/identity.php:1223 -msgid "Books, literature:" +#: ../../include/text.php:1113 +msgid "Monday" msgstr "" -#: ../../include/identity.php:1225 -msgid "Television:" +#: ../../include/text.php:1113 +msgid "Tuesday" msgstr "" -#: ../../include/identity.php:1227 -msgid "Film/dance/culture/entertainment:" +#: ../../include/text.php:1113 +msgid "Wednesday" msgstr "" -#: ../../include/identity.php:1229 -msgid "Love/Romance:" +#: ../../include/text.php:1113 +msgid "Thursday" msgstr "" -#: ../../include/identity.php:1231 -msgid "Work/employment:" +#: ../../include/text.php:1113 +msgid "Friday" msgstr "" -#: ../../include/identity.php:1233 -msgid "School/education:" +#: ../../include/text.php:1113 +msgid "Saturday" msgstr "" -#: ../../include/identity.php:1253 -msgid "Like this thing" +#: ../../include/text.php:1113 +msgid "Sunday" msgstr "" -#: ../../include/bbcode.php:112 ../../include/bbcode.php:655 -#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 -#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 -#: ../../include/bbcode.php:672 ../../include/bbcode.php:677 -#: ../../include/bbcode.php:680 ../../include/bbcode.php:685 -#: ../../include/bbcode.php:688 ../../include/bbcode.php:691 -#: ../../include/bbcode.php:694 -msgid "Image/photo" +#: ../../include/text.php:1117 +msgid "January" msgstr "" -#: ../../include/bbcode.php:147 ../../include/bbcode.php:705 -msgid "Encrypted content" +#: ../../include/text.php:1117 +msgid "February" msgstr "" -#: ../../include/bbcode.php:165 -msgid "Install design element: " +#: ../../include/text.php:1117 +msgid "March" msgstr "" -#: ../../include/bbcode.php:171 -msgid "QR code" +#: ../../include/text.php:1117 +msgid "April" msgstr "" -#: ../../include/bbcode.php:220 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" +#: ../../include/text.php:1117 +msgid "May" msgstr "" -#: ../../include/bbcode.php:222 -msgid "post" +#: ../../include/text.php:1117 +msgid "June" msgstr "" -#: ../../include/bbcode.php:623 -msgid "$1 spoiler" +#: ../../include/text.php:1117 +msgid "July" msgstr "" -#: ../../include/bbcode.php:643 -msgid "$1 wrote:" +#: ../../include/text.php:1117 +msgid "August" msgstr "" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" +#: ../../include/text.php:1117 +msgid "September" msgstr "" -#: ../../include/datetime.php:142 -msgid "YYYY-MM-DD or MM-DD" +#: ../../include/text.php:1117 +msgid "October" msgstr "" -#: ../../include/datetime.php:259 -msgid "never" +#: ../../include/text.php:1117 +msgid "November" msgstr "" -#: ../../include/datetime.php:265 -msgid "less than a second ago" +#: ../../include/text.php:1117 +msgid "December" msgstr "" -#: ../../include/datetime.php:268 -msgid "year" +#: ../../include/text.php:1195 +msgid "unknown.???" msgstr "" -#: ../../include/datetime.php:268 -msgid "years" +#: ../../include/text.php:1196 +msgid "bytes" msgstr "" -#: ../../include/datetime.php:269 -msgid "month" +#: ../../include/text.php:1232 +msgid "remove category" msgstr "" -#: ../../include/datetime.php:269 -msgid "months" +#: ../../include/text.php:1301 +msgid "remove from file" msgstr "" -#: ../../include/datetime.php:270 -msgid "week" +#: ../../include/text.php:1377 ../../include/text.php:1388 +msgid "Click to open/close" msgstr "" -#: ../../include/datetime.php:270 -msgid "weeks" +#: ../../include/text.php:1536 ../../mod/events.php:414 +msgid "Link to Source" msgstr "" -#: ../../include/datetime.php:271 -msgid "day" +#: ../../include/text.php:1555 +msgid "Select a page layout: " msgstr "" -#: ../../include/datetime.php:271 -msgid "days" +#: ../../include/text.php:1558 ../../include/text.php:1618 +msgid "default" msgstr "" -#: ../../include/datetime.php:272 -msgid "hour" +#: ../../include/text.php:1591 +msgid "Page content type: " msgstr "" -#: ../../include/datetime.php:272 -msgid "hours" +#: ../../include/text.php:1630 +msgid "Select an alternate language" msgstr "" -#: ../../include/datetime.php:273 -msgid "minute" +#: ../../include/text.php:1749 ../../include/conversation.php:120 +#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:45 +msgid "photo" msgstr "" -#: ../../include/datetime.php:273 -msgid "minutes" +#: ../../include/text.php:1752 ../../include/conversation.php:123 +#: ../../mod/tagger.php:49 +msgid "event" msgstr "" -#: ../../include/datetime.php:274 -msgid "second" +#: ../../include/text.php:1755 ../../include/conversation.php:148 +#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:53 +msgid "status" msgstr "" -#: ../../include/datetime.php:274 -msgid "seconds" +#: ../../include/text.php:1757 ../../include/conversation.php:150 +#: ../../mod/tagger.php:55 +msgid "comment" msgstr "" -#: ../../include/datetime.php:283 -#, php-format -msgid "%1$d %2$s ago" +#: ../../include/text.php:1762 +msgid "activity" msgstr "" -#: ../../include/datetime.php:491 -#, php-format -msgid "%1$s's birthday" +#: ../../include/text.php:2049 +msgid "Design" msgstr "" -#: ../../include/datetime.php:492 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../include/text.php:2052 +msgid "Blocks" msgstr "" -#: ../../include/Contact.php:123 -msgid "New window" +#: ../../include/text.php:2053 +msgid "Menus" msgstr "" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/text.php:2054 +msgid "Layouts" msgstr "" -#: ../../include/Contact.php:214 ../../mod/admin.php:646 +#: ../../include/text.php:2055 +msgid "Pages" +msgstr "" + +#: ../../include/contact_widgets.php:14 #, php-format -msgid "User '%s' deleted" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 +msgid "Advanced" msgstr "" -#: ../../include/taxonomy.php:210 -msgid "Tags" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" msgstr "" -#: ../../include/taxonomy.php:249 -msgid "Keywords" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" msgstr "" -#: ../../include/taxonomy.php:274 -msgid "have" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" msgstr "" -#: ../../include/taxonomy.php:274 -msgid "has" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/taxonomy.php:275 -msgid "want" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 +#: ../../mod/directory.php:317 ../../mod/directory.php:322 +msgid "Find" msgstr "" -#: ../../include/taxonomy.php:275 -msgid "wants" +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +#: ../../mod/directory.php:321 +msgid "Channel Suggestions" msgstr "" -#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 -msgid "like" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" msgstr "" -#: ../../include/taxonomy.php:276 -msgid "likes" +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" msgstr "" -#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 -msgid "dislike" +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" msgstr "" -#: ../../include/taxonomy.php:277 -msgid "dislikes" +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 +#: ../../include/widgets.php:305 +msgid "Everything" msgstr "" -#: ../../include/api.php:1084 -msgid "Public Timeline" +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:130 +msgid "show more" msgstr "" #: ../../include/enotify.php:41 @@ -1704,598 +1642,610 @@ msgstr "" msgid "Channels not in any collection" msgstr "" -#: ../../include/group.php:303 ../../include/widgets.php:269 +#: ../../include/group.php:303 ../../include/widgets.php:273 msgid "add" msgstr "" -#: ../../include/features.php:23 -msgid "General Features" +#: ../../include/identity.php:31 ../../mod/item.php:1112 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/features.php:25 -msgid "Content Expiration" +#: ../../include/identity.php:66 +msgid "Empty name" msgstr "" -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" +#: ../../include/identity.php:68 +msgid "Name too long" msgstr "" -#: ../../include/features.php:26 -msgid "Multiple Profiles" +#: ../../include/identity.php:169 +msgid "No account identifier" msgstr "" -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" +#: ../../include/identity.php:182 +msgid "Nickname is required." msgstr "" -#: ../../include/features.php:27 -msgid "Advanced Profiles" +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/features.php:28 -msgid "Profile Import/Export" +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" +#: ../../include/identity.php:343 +msgid "Default Profile" msgstr "" -#: ../../include/features.php:29 -msgid "Web Pages" +#: ../../include/identity.php:387 ../../include/identity.php:388 +#: ../../include/identity.php:395 ../../include/widgets.php:428 +#: ../../include/profile_selectors.php:80 ../../mod/settings.php:320 +#: ../../mod/settings.php:324 ../../mod/settings.php:325 +#: ../../mod/settings.php:328 ../../mod/settings.php:339 +#: ../../mod/connedit.php:510 +msgid "Friends" msgstr "" -#: ../../include/features.php:29 -msgid "Provide managed web pages on your channel" +#: ../../include/identity.php:643 +msgid "Requested channel is not available." msgstr "" -#: ../../include/features.php:30 -msgid "Private Notes" +#: ../../include/identity.php:691 ../../mod/achievements.php:11 +#: ../../mod/profile.php:16 ../../mod/webpages.php:29 ../../mod/blocks.php:29 +#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 +#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:48 +#: ../../mod/connect.php:13 ../../mod/layouts.php:29 ../../mod/hcard.php:8 +msgid "Requested profile is not available." msgstr "" -#: ../../include/features.php:30 -msgid "Enables a tool to store notes and reminders" -msgstr "" - -#: ../../include/features.php:34 -msgid "Navigation Channel Select" +#: ../../include/identity.php:854 ../../mod/profiles.php:740 +msgid "Change profile photo" msgstr "" -#: ../../include/features.php:34 -msgid "Change channels directly from within the navigation dropdown menu" +#: ../../include/identity.php:860 +msgid "Profiles" msgstr "" -#: ../../include/features.php:38 -msgid "Extended Identity Sharing" +#: ../../include/identity.php:860 +msgid "Manage/edit profiles" msgstr "" -#: ../../include/features.php:38 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." +#: ../../include/identity.php:861 ../../mod/profiles.php:741 +msgid "Create New Profile" msgstr "" -#: ../../include/features.php:39 -msgid "Expert Mode" +#: ../../include/identity.php:864 ../../include/nav.php:103 +msgid "Edit Profile" msgstr "" -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" +#: ../../include/identity.php:875 ../../mod/profiles.php:752 +msgid "Profile Image" msgstr "" -#: ../../include/features.php:40 -msgid "Premium Channel" +#: ../../include/identity.php:878 +msgid "visible to everybody" msgstr "" -#: ../../include/features.php:40 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" +#: ../../include/identity.php:879 ../../mod/profiles.php:635 +#: ../../mod/profiles.php:756 +msgid "Edit visibility" msgstr "" -#: ../../include/features.php:45 -msgid "Post Composition Features" +#: ../../include/identity.php:895 ../../include/identity.php:1132 +msgid "Gender:" msgstr "" -#: ../../include/features.php:47 -msgid "Use Markdown" +#: ../../include/identity.php:896 ../../include/identity.php:1176 +msgid "Status:" msgstr "" -#: ../../include/features.php:47 -msgid "Allow use of \"Markdown\" to format posts" +#: ../../include/identity.php:897 ../../include/identity.php:1187 +msgid "Homepage:" msgstr "" -#: ../../include/features.php:48 -msgid "Post Preview" +#: ../../include/identity.php:898 +msgid "Online Now" msgstr "" -#: ../../include/features.php:48 -msgid "Allow previewing posts and comments before publishing them" +#: ../../include/identity.php:976 ../../include/identity.php:1056 +#: ../../mod/ping.php:326 +msgid "g A l F d" msgstr "" -#: ../../include/features.php:49 ../../include/widgets.php:528 -#: ../../mod/sources.php:88 -msgid "Channel Sources" +#: ../../include/identity.php:977 ../../include/identity.php:1057 +msgid "F d" msgstr "" -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" +#: ../../include/identity.php:1022 ../../include/identity.php:1097 +#: ../../mod/ping.php:348 +msgid "[today]" msgstr "" -#: ../../include/features.php:50 -msgid "Even More Encryption" +#: ../../include/identity.php:1034 +msgid "Birthday Reminders" msgstr "" -#: ../../include/features.php:50 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +#: ../../include/identity.php:1035 +msgid "Birthdays this week:" msgstr "" -#: ../../include/features.php:51 -msgid "Flag Adult Photos" +#: ../../include/identity.php:1090 +msgid "[No description]" msgstr "" -#: ../../include/features.php:51 -msgid "Provide photo edit option to hide adult photos from default album view" +#: ../../include/identity.php:1108 +msgid "Event Reminders" msgstr "" -#: ../../include/features.php:56 -msgid "Network and Stream Filtering" +#: ../../include/identity.php:1109 +msgid "Events this week:" msgstr "" -#: ../../include/features.php:57 -msgid "Search by Date" +#: ../../include/identity.php:1122 ../../include/identity.php:1251 +#: ../../include/apps.php:136 ../../mod/profperm.php:112 +msgid "Profile" msgstr "" -#: ../../include/features.php:57 -msgid "Ability to select posts by date ranges" +#: ../../include/identity.php:1130 ../../mod/settings.php:1012 +msgid "Full Name:" msgstr "" -#: ../../include/features.php:58 -msgid "Collections Filter" +#: ../../include/identity.php:1137 +msgid "Like this channel" msgstr "" -#: ../../include/features.php:58 -msgid "Enable widget to display Network posts only from selected collections" +#: ../../include/identity.php:1161 +msgid "j F, Y" msgstr "" -#: ../../include/features.php:59 ../../include/widgets.php:268 -msgid "Saved Searches" +#: ../../include/identity.php:1162 +msgid "j F" msgstr "" -#: ../../include/features.php:59 -msgid "Save search terms for re-use" +#: ../../include/identity.php:1169 +msgid "Birthday:" msgstr "" -#: ../../include/features.php:60 -msgid "Network Personal Tab" +#: ../../include/identity.php:1173 +msgid "Age:" msgstr "" -#: ../../include/features.php:60 -msgid "Enable tab to display only Network posts that you've interacted on" +#: ../../include/identity.php:1182 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../include/features.php:61 -msgid "Network New Tab" +#: ../../include/identity.php:1185 ../../mod/profiles.php:657 +msgid "Sexual Preference:" msgstr "" -#: ../../include/features.php:61 -msgid "Enable tab to display all new Network activity" +#: ../../include/identity.php:1189 ../../mod/profiles.php:659 +msgid "Hometown:" msgstr "" -#: ../../include/features.php:62 -msgid "Affinity Tool" +#: ../../include/identity.php:1191 +msgid "Tags:" msgstr "" -#: ../../include/features.php:62 -msgid "Filter stream activity by depth of relationships" +#: ../../include/identity.php:1193 ../../mod/profiles.php:660 +msgid "Political Views:" msgstr "" -#: ../../include/features.php:63 -msgid "Suggest Channels" +#: ../../include/identity.php:1195 +msgid "Religion:" msgstr "" -#: ../../include/features.php:63 -msgid "Show channel suggestions" +#: ../../include/identity.php:1197 +msgid "About:" msgstr "" -#: ../../include/features.php:68 -msgid "Post/Comment Tools" +#: ../../include/identity.php:1199 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/features.php:70 -msgid "Edit Sent Posts" +#: ../../include/identity.php:1201 ../../mod/profiles.php:663 +msgid "Likes:" msgstr "" -#: ../../include/features.php:70 -msgid "Edit and correct posts and comments after sending" +#: ../../include/identity.php:1203 ../../mod/profiles.php:664 +msgid "Dislikes:" msgstr "" -#: ../../include/features.php:71 -msgid "Tagging" +#: ../../include/identity.php:1206 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/features.php:71 -msgid "Ability to tag existing posts" +#: ../../include/identity.php:1218 +msgid "My other channels:" msgstr "" -#: ../../include/features.php:72 -msgid "Post Categories" +#: ../../include/identity.php:1221 +msgid "Musical interests:" msgstr "" -#: ../../include/features.php:72 -msgid "Add categories to your posts" +#: ../../include/identity.php:1223 +msgid "Books, literature:" msgstr "" -#: ../../include/features.php:73 -msgid "Ability to file posts under folders" +#: ../../include/identity.php:1225 +msgid "Television:" msgstr "" -#: ../../include/features.php:74 -msgid "Dislike Posts" +#: ../../include/identity.php:1227 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/features.php:74 -msgid "Ability to dislike posts/comments" +#: ../../include/identity.php:1229 +msgid "Love/Romance:" msgstr "" -#: ../../include/features.php:75 -msgid "Star Posts" +#: ../../include/identity.php:1231 +msgid "Work/employment:" msgstr "" -#: ../../include/features.php:75 -msgid "Ability to mark special posts with a star indicator" +#: ../../include/identity.php:1233 +msgid "School/education:" msgstr "" -#: ../../include/features.php:76 -msgid "Tag Cloud" +#: ../../include/identity.php:1253 +msgid "Like this thing" msgstr "" -#: ../../include/features.php:76 -msgid "Provide a personal tag cloud on your channel page" +#: ../../include/account.php:23 +msgid "Not a valid email address" msgstr "" -#: ../../include/text.php:321 -msgid "prev" +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/text.php:323 -msgid "first" +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/text.php:352 -msgid "last" +#: ../../include/account.php:64 +msgid "An invitation is required." msgstr "" -#: ../../include/text.php:355 -msgid "next" +#: ../../include/account.php:68 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/text.php:367 -msgid "older" +#: ../../include/account.php:119 +msgid "Please enter the required information." msgstr "" -#: ../../include/text.php:369 -msgid "newer" +#: ../../include/account.php:187 +msgid "Failed to store account information." msgstr "" -#: ../../include/text.php:736 -msgid "No connections" +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/text.php:753 +#: ../../include/account.php:313 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "" -msgstr[1] "" +msgid "Registration request at %s" +msgstr "" -#: ../../include/text.php:766 -msgid "View Connections" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" msgstr "" -#: ../../include/text.php:827 ../../include/text.php:839 -#: ../../include/widgets.php:192 ../../mod/filer.php:50 -#: ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 ../../mod/admin.php:1339 -#: ../../mod/admin.php:1360 -msgid "Save" +#: ../../include/account.php:337 +msgid "your registration password" msgstr "" -#: ../../include/text.php:905 -msgid "poke" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/text.php:905 ../../include/conversation.php:243 -msgid "poked" +#: ../../include/account.php:406 +msgid "Account approved." msgstr "" -#: ../../include/text.php:906 -msgid "ping" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/text.php:906 -msgid "pinged" +#: ../../include/account.php:486 +msgid "Account verified. Please login." msgstr "" -#: ../../include/text.php:907 -msgid "prod" +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." msgstr "" -#: ../../include/text.php:907 -msgid "prodded" +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/text.php:908 -msgid "slap" +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/text.php:908 -msgid "slapped" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/text.php:909 -msgid "finger" -msgstr "" - -#: ../../include/text.php:909 -msgid "fingered" +#: ../../include/follow.php:33 +msgid "Channel location missing." msgstr "" -#: ../../include/text.php:910 -msgid "rebuff" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/text.php:910 -msgid "rebuffed" +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/text.php:919 -msgid "happy" +#: ../../include/follow.php:135 ../../include/follow.php:202 +msgid "Protocol disabled." msgstr "" -#: ../../include/text.php:920 -msgid "sad" +#: ../../include/follow.php:176 +msgid "Channel discovery failed." msgstr "" -#: ../../include/text.php:921 -msgid "mellow" +#: ../../include/follow.php:192 +msgid "local account not found." msgstr "" -#: ../../include/text.php:922 -msgid "tired" +#: ../../include/follow.php:220 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/text.php:923 -msgid "perky" +#: ../../include/api.php:1084 +msgid "Public Timeline" msgstr "" -#: ../../include/text.php:924 -msgid "angry" +#: ../../include/apps.php:126 +msgid "Site Admin" msgstr "" -#: ../../include/text.php:925 -msgid "stupified" +#: ../../include/apps.php:127 ../../include/conversation.php:1565 +#: ../../include/nav.php:117 +msgid "Bookmarks" msgstr "" -#: ../../include/text.php:926 -msgid "puzzled" +#: ../../include/apps.php:128 +msgid "Address Book" msgstr "" -#: ../../include/text.php:927 -msgid "interested" +#: ../../include/apps.php:129 ../../include/nav.php:125 ../../boot.php:1540 +msgid "Login" msgstr "" -#: ../../include/text.php:928 -msgid "bitter" +#: ../../include/apps.php:130 ../../include/nav.php:216 +#: ../../mod/manage.php:148 +msgid "Channel Manager" msgstr "" -#: ../../include/text.php:929 -msgid "cheerful" +#: ../../include/apps.php:131 ../../include/nav.php:190 +msgid "Matrix" msgstr "" -#: ../../include/text.php:930 -msgid "alive" +#: ../../include/apps.php:132 ../../include/widgets.php:535 +#: ../../include/nav.php:218 ../../mod/admin.php:951 ../../mod/admin.php:1156 +msgid "Settings" msgstr "" -#: ../../include/text.php:931 -msgid "annoyed" +#: ../../include/apps.php:134 ../../include/conversation.php:1576 +#: ../../include/nav.php:121 ../../mod/webpages.php:160 +msgid "Webpages" msgstr "" -#: ../../include/text.php:932 -msgid "anxious" +#: ../../include/apps.php:135 ../../include/nav.php:193 +msgid "Channel Home" msgstr "" -#: ../../include/text.php:933 -msgid "cranky" +#: ../../include/apps.php:137 ../../include/conversation.php:1530 +#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 +msgid "Photos" msgstr "" -#: ../../include/text.php:934 -msgid "disturbed" +#: ../../include/apps.php:138 ../../include/nav.php:212 +#: ../../mod/events.php:442 +msgid "Events" msgstr "" -#: ../../include/text.php:935 -msgid "frustrated" +#: ../../include/apps.php:139 ../../include/nav.php:176 +#: ../../mod/directory.php:321 +msgid "Directory" msgstr "" -#: ../../include/text.php:936 -msgid "depressed" +#: ../../include/apps.php:140 ../../include/nav.php:168 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" msgstr "" -#: ../../include/text.php:937 -msgid "motivated" +#: ../../include/apps.php:141 ../../include/nav.php:204 +msgid "Mail" msgstr "" -#: ../../include/text.php:938 -msgid "relaxed" +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" msgstr "" -#: ../../include/text.php:939 -msgid "surprised" +#: ../../include/apps.php:143 ../../include/conversation.php:940 +msgid "Poke" msgstr "" -#: ../../include/text.php:1103 -msgid "Monday" +#: ../../include/apps.php:144 ../../include/nav.php:111 +msgid "Chat" msgstr "" -#: ../../include/text.php:1103 -msgid "Tuesday" +#: ../../include/apps.php:146 +msgid "Probe" msgstr "" -#: ../../include/text.php:1103 -msgid "Wednesday" +#: ../../include/apps.php:147 +msgid "Suggest" msgstr "" -#: ../../include/text.php:1103 -msgid "Thursday" +#: ../../include/apps.php:148 +msgid "Random Channel" msgstr "" -#: ../../include/text.php:1103 -msgid "Friday" +#: ../../include/apps.php:149 +msgid "Invite" msgstr "" -#: ../../include/text.php:1103 -msgid "Saturday" +#: ../../include/apps.php:150 +msgid "Features" msgstr "" -#: ../../include/text.php:1103 -msgid "Sunday" +#: ../../include/apps.php:151 +msgid "Language" msgstr "" -#: ../../include/text.php:1107 -msgid "January" +#: ../../include/apps.php:152 +msgid "Post" msgstr "" -#: ../../include/text.php:1107 -msgid "February" +#: ../../include/apps.php:153 +msgid "Profile Photo" msgstr "" -#: ../../include/text.php:1107 -msgid "March" +#: ../../include/apps.php:242 ../../mod/settings.php:81 +#: ../../mod/settings.php:591 +msgid "Update" msgstr "" -#: ../../include/text.php:1107 -msgid "April" +#: ../../include/apps.php:242 +msgid "Install" msgstr "" -#: ../../include/text.php:1107 -msgid "May" +#: ../../include/apps.php:247 +msgid "Purchase" msgstr "" -#: ../../include/text.php:1107 -msgid "June" +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." msgstr "" -#: ../../include/text.php:1107 -msgid "July" +#: ../../include/attach.php:331 +msgid "No source file." msgstr "" -#: ../../include/text.php:1107 -msgid "August" +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/text.php:1107 -msgid "September" +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/text.php:1107 -msgid "October" +#: ../../include/attach.php:377 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/text.php:1107 -msgid "November" +#: ../../include/attach.php:389 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/text.php:1107 -msgid "December" +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/text.php:1185 -msgid "unknown.???" +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/text.php:1186 -msgid "bytes" +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." msgstr "" -#: ../../include/text.php:1225 -msgid "remove category" +#: ../../include/attach.php:590 +msgid "Empty pathname" msgstr "" -#: ../../include/text.php:1295 -msgid "remove from file" +#: ../../include/attach.php:606 +msgid "duplicate filename or path" msgstr "" -#: ../../include/text.php:1360 ../../include/text.php:1372 -msgid "Click to open/close" +#: ../../include/attach.php:630 +msgid "Path not found." msgstr "" -#: ../../include/text.php:1527 ../../mod/events.php:414 -msgid "Link to Source" +#: ../../include/attach.php:681 +msgid "mkdir failed." msgstr "" -#: ../../include/text.php:1546 -msgid "Select a page layout: " +#: ../../include/attach.php:685 +msgid "database storage failed." msgstr "" -#: ../../include/text.php:1549 ../../include/text.php:1614 -msgid "default" +#: ../../include/chat.php:10 +msgid "Missing room name" msgstr "" -#: ../../include/text.php:1585 -msgid "Page content type: " +#: ../../include/chat.php:19 +msgid "Duplicate room name" msgstr "" -#: ../../include/text.php:1626 -msgid "Select an alternate language" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." msgstr "" -#: ../../include/text.php:1747 ../../include/conversation.php:120 -#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:45 -msgid "photo" +#: ../../include/chat.php:105 +msgid "Room not found." msgstr "" -#: ../../include/text.php:1750 ../../include/conversation.php:123 -#: ../../mod/tagger.php:49 -msgid "event" +#: ../../include/chat.php:126 +msgid "Room is full" msgstr "" -#: ../../include/text.php:1753 ../../include/conversation.php:148 -#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:53 -msgid "status" +#: ../../include/bbcode.php:112 ../../include/bbcode.php:682 +#: ../../include/bbcode.php:685 ../../include/bbcode.php:690 +#: ../../include/bbcode.php:693 ../../include/bbcode.php:696 +#: ../../include/bbcode.php:699 ../../include/bbcode.php:704 +#: ../../include/bbcode.php:707 ../../include/bbcode.php:712 +#: ../../include/bbcode.php:715 ../../include/bbcode.php:718 +#: ../../include/bbcode.php:721 +msgid "Image/photo" msgstr "" -#: ../../include/text.php:1755 ../../include/conversation.php:150 -#: ../../mod/tagger.php:55 -msgid "comment" +#: ../../include/bbcode.php:147 ../../include/bbcode.php:732 +msgid "Encrypted content" msgstr "" -#: ../../include/text.php:1760 -msgid "activity" +#: ../../include/bbcode.php:165 +msgid "Install design element: " msgstr "" -#: ../../include/text.php:2046 -msgid "Design" +#: ../../include/bbcode.php:171 +msgid "QR code" msgstr "" -#: ../../include/text.php:2049 -msgid "Blocks" +#: ../../include/bbcode.php:220 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/text.php:2050 -msgid "Menus" +#: ../../include/bbcode.php:222 +msgid "post" msgstr "" -#: ../../include/text.php:2051 -msgid "Layouts" +#: ../../include/bbcode.php:650 +msgid "$1 spoiler" msgstr "" -#: ../../include/text.php:2052 -msgid "Pages" +#: ../../include/bbcode.php:670 +msgid "$1 wrote:" msgstr "" #: ../../include/conversation.php:126 ../../mod/like.php:89 @@ -2345,575 +2295,411 @@ msgstr "" msgid "Message signature incorrect" msgstr "" -#: ../../include/conversation.php:675 +#: ../../include/conversation.php:674 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: ../../include/conversation.php:690 +#: ../../include/conversation.php:689 msgid "Categories:" msgstr "" -#: ../../include/conversation.php:691 +#: ../../include/conversation.php:690 msgid "Filed under:" msgstr "" -#: ../../include/conversation.php:699 ../../include/ItemObject.php:266 +#: ../../include/conversation.php:698 ../../include/ItemObject.php:274 #, php-format msgid " from %s" msgstr "" -#: ../../include/conversation.php:702 ../../include/ItemObject.php:269 +#: ../../include/conversation.php:701 ../../include/ItemObject.php:277 #, php-format msgid "last edited: %s" msgstr "" -#: ../../include/conversation.php:703 ../../include/ItemObject.php:270 +#: ../../include/conversation.php:702 ../../include/ItemObject.php:278 #, php-format msgid "Expires: %s" msgstr "" -#: ../../include/conversation.php:718 +#: ../../include/conversation.php:717 msgid "View in context" msgstr "" -#: ../../include/conversation.php:720 ../../include/conversation.php:1143 -#: ../../include/ItemObject.php:317 ../../mod/editblock.php:152 -#: ../../mod/editlayout.php:148 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:183 ../../mod/mail.php:238 ../../mod/mail.php:353 -#: ../../mod/photos.php:978 +#: ../../include/conversation.php:719 ../../include/conversation.php:1142 +#: ../../include/ItemObject.php:325 ../../mod/editpost.php:121 +#: ../../mod/mail.php:238 ../../mod/mail.php:353 ../../mod/photos.php:978 +#: ../../mod/editblock.php:152 ../../mod/editlayout.php:148 +#: ../../mod/editwebpage.php:183 msgid "Please wait" msgstr "" -#: ../../include/conversation.php:836 +#: ../../include/conversation.php:835 msgid "remove" msgstr "" -#: ../../include/conversation.php:841 +#: ../../include/conversation.php:839 ../../include/nav.php:257 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:840 msgid "Delete Selected Items" msgstr "" -#: ../../include/conversation.php:932 +#: ../../include/conversation.php:931 msgid "View Source" msgstr "" -#: ../../include/conversation.php:933 +#: ../../include/conversation.php:932 msgid "Follow Thread" msgstr "" -#: ../../include/conversation.php:934 +#: ../../include/conversation.php:933 msgid "View Status" msgstr "" -#: ../../include/conversation.php:936 +#: ../../include/conversation.php:934 ../../include/nav.php:99 +#: ../../mod/connedit.php:429 ../../mod/connedit.php:545 +msgid "View Profile" +msgstr "" + +#: ../../include/conversation.php:935 msgid "View Photos" msgstr "" -#: ../../include/conversation.php:937 +#: ../../include/conversation.php:936 msgid "Matrix Activity" msgstr "" -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:938 msgid "Edit Contact" msgstr "" -#: ../../include/conversation.php:940 +#: ../../include/conversation.php:939 msgid "Send PM" msgstr "" -#: ../../include/conversation.php:941 ../../include/apps.php:143 -msgid "Poke" -msgstr "" - -#: ../../include/conversation.php:1014 +#: ../../include/conversation.php:1013 #, php-format msgid "%s likes this." msgstr "" -#: ../../include/conversation.php:1014 +#: ../../include/conversation.php:1013 #, php-format msgid "%s doesn't like this." msgstr "" -#: ../../include/conversation.php:1018 +#: ../../include/conversation.php:1017 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1020 +#: ../../include/conversation.php:1019 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1026 +#: ../../include/conversation.php:1025 msgid "and" msgstr "" -#: ../../include/conversation.php:1029 +#: ../../include/conversation.php:1028 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1030 +#: ../../include/conversation.php:1029 #, php-format msgid "%s like this." msgstr "" -#: ../../include/conversation.php:1030 +#: ../../include/conversation.php:1029 #, php-format msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1086 msgid "Visible to everybody" msgstr "" -#: ../../include/conversation.php:1088 ../../mod/mail.php:171 +#: ../../include/conversation.php:1087 ../../mod/mail.php:171 #: ../../mod/mail.php:286 msgid "Please enter a link URL:" msgstr "" -#: ../../include/conversation.php:1089 +#: ../../include/conversation.php:1088 msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1089 msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1090 msgid "Tag term:" msgstr "" -#: ../../include/conversation.php:1092 ../../mod/filer.php:49 +#: ../../include/conversation.php:1091 ../../mod/filer.php:49 msgid "Save to Folder:" msgstr "" -#: ../../include/conversation.php:1093 +#: ../../include/conversation.php:1092 msgid "Where are you right now?" msgstr "" -#: ../../include/conversation.php:1094 ../../mod/editpost.php:52 +#: ../../include/conversation.php:1093 ../../mod/editpost.php:52 #: ../../mod/mail.php:172 ../../mod/mail.php:287 msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../include/conversation.php:1118 ../../mod/editblock.php:198 -#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 -#: ../../mod/layouts.php:168 ../../mod/photos.php:977 +#: ../../include/conversation.php:1117 ../../mod/photos.php:977 +#: ../../mod/editblock.php:198 ../../mod/editlayout.php:193 +#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 msgid "Share" msgstr "" -#: ../../include/conversation.php:1120 ../../mod/editwebpage.php:170 +#: ../../include/conversation.php:1119 ../../mod/editwebpage.php:170 msgid "Page link title" msgstr "" -#: ../../include/conversation.php:1123 +#: ../../include/conversation.php:1122 msgid "Post as" msgstr "" -#: ../../include/conversation.php:1124 ../../mod/editblock.php:144 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:235 ../../mod/mail.php:349 +#: ../../include/conversation.php:1123 ../../mod/editpost.php:113 +#: ../../mod/mail.php:235 ../../mod/mail.php:349 ../../mod/editblock.php:144 +#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:175 msgid "Upload photo" msgstr "" -#: ../../include/conversation.php:1125 +#: ../../include/conversation.php:1124 msgid "upload photo" msgstr "" -#: ../../include/conversation.php:1126 ../../mod/editblock.php:145 -#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:236 ../../mod/mail.php:350 +#: ../../include/conversation.php:1125 ../../mod/editpost.php:114 +#: ../../mod/mail.php:236 ../../mod/mail.php:350 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:176 msgid "Attach file" msgstr "" -#: ../../include/conversation.php:1127 +#: ../../include/conversation.php:1126 msgid "attach file" msgstr "" -#: ../../include/conversation.php:1128 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:142 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:237 ../../mod/mail.php:351 +#: ../../include/conversation.php:1127 ../../mod/editpost.php:115 +#: ../../mod/mail.php:237 ../../mod/mail.php:351 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:177 msgid "Insert web link" msgstr "" -#: ../../include/conversation.php:1129 +#: ../../include/conversation.php:1128 msgid "web link" msgstr "" -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1129 msgid "Insert video link" msgstr "" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1130 msgid "video link" msgstr "" -#: ../../include/conversation.php:1132 +#: ../../include/conversation.php:1131 msgid "Insert audio link" msgstr "" -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1132 msgid "audio link" msgstr "" -#: ../../include/conversation.php:1134 ../../mod/editblock.php:150 -#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 +#: ../../include/conversation.php:1133 ../../mod/editpost.php:119 +#: ../../mod/editblock.php:150 ../../mod/editlayout.php:146 #: ../../mod/editwebpage.php:181 msgid "Set your location" msgstr "" -#: ../../include/conversation.php:1135 +#: ../../include/conversation.php:1134 msgid "set location" msgstr "" -#: ../../include/conversation.php:1136 ../../mod/editblock.php:151 -#: ../../mod/editlayout.php:147 ../../mod/editpost.php:120 +#: ../../include/conversation.php:1135 ../../mod/editpost.php:120 +#: ../../mod/editblock.php:151 ../../mod/editlayout.php:147 #: ../../mod/editwebpage.php:182 msgid "Clear browser location" msgstr "" -#: ../../include/conversation.php:1137 +#: ../../include/conversation.php:1136 msgid "clear location" msgstr "" -#: ../../include/conversation.php:1139 ../../mod/editblock.php:164 -#: ../../mod/editlayout.php:159 ../../mod/editpost.php:132 +#: ../../include/conversation.php:1138 ../../mod/editpost.php:132 +#: ../../mod/editblock.php:164 ../../mod/editlayout.php:159 #: ../../mod/editwebpage.php:198 msgid "Title (optional)" msgstr "" -#: ../../include/conversation.php:1142 ../../mod/editblock.php:167 -#: ../../mod/editlayout.php:162 ../../mod/editpost.php:134 +#: ../../include/conversation.php:1141 ../../mod/editpost.php:134 +#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 #: ../../mod/editwebpage.php:200 msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/conversation.php:1144 ../../mod/editblock.php:153 -#: ../../mod/editlayout.php:149 ../../mod/editpost.php:122 +#: ../../include/conversation.php:1143 ../../mod/editpost.php:122 +#: ../../mod/editblock.php:153 ../../mod/editlayout.php:149 #: ../../mod/editwebpage.php:184 msgid "Permission settings" msgstr "" -#: ../../include/conversation.php:1145 +#: ../../include/conversation.php:1144 msgid "permissions" msgstr "" -#: ../../include/conversation.php:1152 ../../mod/editblock.php:161 -#: ../../mod/editlayout.php:156 ../../mod/editpost.php:129 +#: ../../include/conversation.php:1151 ../../mod/editpost.php:129 +#: ../../mod/editblock.php:161 ../../mod/editlayout.php:156 #: ../../mod/editwebpage.php:193 msgid "Public post" msgstr "" -#: ../../include/conversation.php:1154 ../../mod/editblock.php:168 -#: ../../mod/editlayout.php:163 ../../mod/editpost.php:135 +#: ../../include/conversation.php:1153 ../../mod/editpost.php:135 +#: ../../mod/editblock.php:168 ../../mod/editlayout.php:163 #: ../../mod/editwebpage.php:201 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/conversation.php:1167 ../../mod/editblock.php:178 -#: ../../mod/editlayout.php:173 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:242 ../../mod/mail.php:356 +#: ../../include/conversation.php:1166 ../../mod/editpost.php:146 +#: ../../mod/mail.php:242 ../../mod/mail.php:356 ../../mod/editblock.php:178 +#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:210 msgid "Set expiration date" msgstr "" -#: ../../include/conversation.php:1169 ../../include/ItemObject.php:633 +#: ../../include/conversation.php:1168 ../../include/ItemObject.php:641 #: ../../mod/editpost.php:148 ../../mod/mail.php:244 ../../mod/mail.php:358 msgid "Encrypt text" msgstr "" -#: ../../include/conversation.php:1171 ../../mod/events.php:580 +#: ../../include/conversation.php:1170 ../../mod/events.php:580 #: ../../mod/editpost.php:150 msgid "OK" msgstr "" -#: ../../include/conversation.php:1172 ../../mod/settings.php:566 +#: ../../include/conversation.php:1171 ../../mod/settings.php:566 #: ../../mod/settings.php:592 ../../mod/events.php:579 #: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "" -#: ../../include/conversation.php:1416 +#: ../../include/conversation.php:1415 msgid "Discover" msgstr "" -#: ../../include/conversation.php:1419 +#: ../../include/conversation.php:1418 msgid "Imported public streams" msgstr "" -#: ../../include/conversation.php:1424 +#: ../../include/conversation.php:1423 msgid "Commented Order" msgstr "" -#: ../../include/conversation.php:1427 +#: ../../include/conversation.php:1426 msgid "Sort by Comment Date" msgstr "" -#: ../../include/conversation.php:1431 +#: ../../include/conversation.php:1430 msgid "Posted Order" msgstr "" -#: ../../include/conversation.php:1434 +#: ../../include/conversation.php:1433 msgid "Sort by Post Date" msgstr "" -#: ../../include/conversation.php:1439 ../../include/widgets.php:94 +#: ../../include/conversation.php:1438 ../../include/widgets.php:94 msgid "Personal" msgstr "" -#: ../../include/conversation.php:1442 +#: ../../include/conversation.php:1441 msgid "Posts that mention or involve you" msgstr "" -#: ../../include/conversation.php:1448 ../../mod/connections.php:211 +#: ../../include/conversation.php:1447 ../../mod/connections.php:211 #: ../../mod/connections.php:224 ../../mod/menu.php:80 msgid "New" msgstr "" -#: ../../include/conversation.php:1451 +#: ../../include/conversation.php:1450 msgid "Activity Stream - by date" msgstr "" -#: ../../include/conversation.php:1457 +#: ../../include/conversation.php:1456 msgid "Starred" msgstr "" -#: ../../include/conversation.php:1460 +#: ../../include/conversation.php:1459 msgid "Favourite Posts" msgstr "" -#: ../../include/conversation.php:1467 +#: ../../include/conversation.php:1466 msgid "Spam" msgstr "" -#: ../../include/conversation.php:1470 +#: ../../include/conversation.php:1469 msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1510 ../../mod/admin.php:865 +#: ../../include/conversation.php:1509 ../../mod/admin.php:865 msgid "Channel" msgstr "" -#: ../../include/conversation.php:1513 +#: ../../include/conversation.php:1512 msgid "Status Messages and Posts" msgstr "" -#: ../../include/conversation.php:1522 +#: ../../include/conversation.php:1521 msgid "About" msgstr "" -#: ../../include/conversation.php:1525 +#: ../../include/conversation.php:1524 msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1534 ../../include/photos.php:341 -msgid "Photo Albums" -msgstr "" - -#: ../../include/conversation.php:1543 +#: ../../include/conversation.php:1542 msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1553 ../../include/conversation.php:1556 +#: ../../include/conversation.php:1552 ../../include/conversation.php:1555 msgid "Chatrooms" msgstr "" -#: ../../include/conversation.php:1569 +#: ../../include/conversation.php:1568 msgid "Saved Bookmarks" msgstr "" -#: ../../include/conversation.php:1580 +#: ../../include/conversation.php:1579 msgid "Manage Webpages" msgstr "" -#: ../../include/account.php:23 -msgid "Not a valid email address" +#: ../../include/widgets.php:91 ../../include/nav.php:171 +#: ../../mod/apps.php:33 +msgid "Apps" msgstr "" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/widgets.php:92 +msgid "System" msgstr "" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." +#: ../../include/widgets.php:95 +msgid "Create Personal App" msgstr "" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "" - -#: ../../include/account.php:648 ../../include/account.php:650 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:656 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:661 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/photos.php:105 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "" - -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:345 -msgid "Upload New Photos" -msgstr "" - -#: ../../include/items.php:382 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/like.php:246 ../../mod/group.php:68 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "" - -#: ../../include/items.php:969 ../../include/items.php:1014 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1171 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1173 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1175 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1177 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1179 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1181 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1183 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1185 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:3952 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:26 -#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "" - -#: ../../include/items.php:4410 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "" - -#: ../../include/items.php:4425 -msgid "Collection is empty." -msgstr "" - -#: ../../include/items.php:4432 -#, php-format -msgid "Collection: %s" -msgstr "" - -#: ../../include/items.php:4443 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../include/items.php:4446 -msgid "Connection not found." -msgstr "" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" msgstr "" #: ../../include/widgets.php:138 ../../mod/suggest.php:53 @@ -2949,104 +2735,104 @@ msgstr "" msgid "Notes" msgstr "" -#: ../../include/widgets.php:260 +#: ../../include/widgets.php:264 msgid "Remove term" msgstr "" -#: ../../include/widgets.php:343 +#: ../../include/widgets.php:347 msgid "Archives" msgstr "" -#: ../../include/widgets.php:421 +#: ../../include/widgets.php:425 msgid "Refresh" msgstr "" -#: ../../include/widgets.php:422 ../../mod/connedit.php:506 +#: ../../include/widgets.php:426 ../../mod/connedit.php:506 msgid "Me" msgstr "" -#: ../../include/widgets.php:423 ../../mod/connedit.php:509 +#: ../../include/widgets.php:427 ../../mod/connedit.php:509 msgid "Best Friends" msgstr "" -#: ../../include/widgets.php:425 +#: ../../include/widgets.php:429 msgid "Co-workers" msgstr "" -#: ../../include/widgets.php:426 ../../mod/connedit.php:511 +#: ../../include/widgets.php:430 ../../mod/connedit.php:511 msgid "Former Friends" msgstr "" -#: ../../include/widgets.php:427 ../../mod/connedit.php:512 +#: ../../include/widgets.php:431 ../../mod/connedit.php:512 msgid "Acquaintances" msgstr "" -#: ../../include/widgets.php:428 +#: ../../include/widgets.php:432 msgid "Everybody" msgstr "" -#: ../../include/widgets.php:462 +#: ../../include/widgets.php:466 msgid "Account settings" msgstr "" -#: ../../include/widgets.php:468 +#: ../../include/widgets.php:472 msgid "Channel settings" msgstr "" -#: ../../include/widgets.php:474 +#: ../../include/widgets.php:478 msgid "Additional features" msgstr "" -#: ../../include/widgets.php:480 +#: ../../include/widgets.php:484 msgid "Feature settings" msgstr "" -#: ../../include/widgets.php:486 +#: ../../include/widgets.php:490 msgid "Display settings" msgstr "" -#: ../../include/widgets.php:492 +#: ../../include/widgets.php:496 msgid "Connected apps" msgstr "" -#: ../../include/widgets.php:498 +#: ../../include/widgets.php:502 msgid "Export channel" msgstr "" -#: ../../include/widgets.php:504 -msgid "Export content" -msgstr "" - -#: ../../include/widgets.php:512 ../../mod/connedit.php:539 +#: ../../include/widgets.php:511 ../../mod/connedit.php:539 msgid "Connection Default Permissions" msgstr "" -#: ../../include/widgets.php:520 +#: ../../include/widgets.php:519 msgid "Premium Channel Settings" msgstr "" -#: ../../include/widgets.php:549 ../../mod/mail.php:125 +#: ../../include/widgets.php:548 ../../mod/mail.php:125 #: ../../mod/message.php:31 msgid "Messages" msgstr "" -#: ../../include/widgets.php:552 +#: ../../include/widgets.php:551 msgid "Check Mail" msgstr "" -#: ../../include/widgets.php:635 +#: ../../include/widgets.php:556 ../../include/nav.php:209 +msgid "New Message" +msgstr "" + +#: ../../include/widgets.php:634 msgid "Chat Rooms" msgstr "" -#: ../../include/widgets.php:655 +#: ../../include/widgets.php:654 msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/widgets.php:675 +#: ../../include/widgets.php:674 msgid "Suggested Chatrooms" msgstr "" -#: ../../include/widgets.php:802 ../../include/widgets.php:860 +#: ../../include/widgets.php:801 ../../include/widgets.php:859 msgid "photo/image" msgstr "" @@ -3058,95 +2844,342 @@ msgstr "" msgid "Unable to verify channel signature" msgstr "" -#: ../../include/zot.php:1819 +#: ../../include/zot.php:1829 #, php-format msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" msgstr "" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:620 -#: ../../mod/photos.php:996 ../../mod/photos.php:1106 -msgid "Comment" +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:1023 ../../mod/photos.php:1035 +msgid "View all" msgstr "" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:337 -msgid "[+] show all" -msgstr "" +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1032 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" -#: ../../include/js_strings.php:8 -msgid "[-] show less" +#: ../../include/ItemObject.php:179 +msgid "Add Star" msgstr "" -#: ../../include/js_strings.php:9 -msgid "[+] expand" +#: ../../include/ItemObject.php:180 +msgid "Remove Star" msgstr "" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../include/ItemObject.php:185 +msgid "starred" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" +#: ../../include/ItemObject.php:203 +msgid "Add Tag" msgstr "" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" +#: ../../include/ItemObject.php:221 ../../mod/photos.php:975 +msgid "I like this (toggle)" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../include/ItemObject.php:222 ../../mod/photos.php:976 +msgid "I don't like this (toggle)" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../include/ItemObject.php:226 +msgid "Share This" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../include/ItemObject.php:226 +msgid "share" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../include/ItemObject.php:243 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:256 ../../include/ItemObject.php:257 +#, php-format +msgid "View %s's profile - %s" msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../include/ItemObject.php:260 +msgid "to" msgstr "" -#: ../../include/js_strings.php:20 -msgid "timeago.prefixAgo" +#: ../../include/ItemObject.php:261 +msgid "via" msgstr "" -#: ../../include/js_strings.php:21 -msgid "timeago.prefixFromNow" +#: ../../include/ItemObject.php:262 +msgid "Wall-to-Wall" msgstr "" -#: ../../include/js_strings.php:22 -msgid "ago" +#: ../../include/ItemObject.php:263 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../include/js_strings.php:23 -msgid "from now" +#: ../../include/ItemObject.php:299 +msgid "Save Bookmarks" msgstr "" -#: ../../include/js_strings.php:24 -msgid "less than a minute" +#: ../../include/ItemObject.php:300 +msgid "Add to Calendar" msgstr "" -#: ../../include/js_strings.php:25 -msgid "about a minute" +#: ../../include/ItemObject.php:309 +msgid "Mark all seen" msgstr "" -#: ../../include/js_strings.php:26 -#, php-format -msgid "%d minutes" +#: ../../include/ItemObject.php:314 ../../mod/photos.php:1143 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../include/ItemObject.php:315 ../../mod/photos.php:1144 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../include/ItemObject.php:345 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "" + +#: ../../include/ItemObject.php:626 ../../mod/photos.php:994 +#: ../../mod/photos.php:1104 +msgid "This is you" +msgstr "" + +#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 +#: ../../mod/photos.php:996 ../../mod/photos.php:1106 +msgid "Comment" +msgstr "" + +#: ../../include/ItemObject.php:629 ../../mod/mood.php:135 +#: ../../mod/settings.php:565 ../../mod/settings.php:677 +#: ../../mod/settings.php:706 ../../mod/settings.php:730 +#: ../../mod/settings.php:812 ../../mod/settings.php:1004 +#: ../../mod/group.php:81 ../../mod/poke.php:166 ../../mod/setup.php:313 +#: ../../mod/setup.php:358 ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/events.php:598 ../../mod/chat.php:177 ../../mod/chat.php:211 +#: ../../mod/connedit.php:556 ../../mod/mail.php:352 ../../mod/photos.php:594 +#: ../../mod/photos.php:671 ../../mod/photos.php:957 ../../mod/photos.php:997 +#: ../../mod/photos.php:1107 ../../mod/pdledit.php:58 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/fsuggest.php:108 +#: ../../mod/filestorage.php:146 ../../mod/connect.php:93 +#: ../../mod/locs.php:99 ../../mod/import.php:504 ../../mod/profiles.php:633 +#: ../../mod/admin.php:412 ../../mod/admin.php:723 ../../mod/admin.php:859 +#: ../../mod/admin.php:992 ../../mod/admin.php:1191 ../../mod/admin.php:1278 +#: ../../mod/invite.php:142 ../../mod/xchan.php:11 ../../mod/appman.php:99 +#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "" + +#: ../../include/ItemObject.php:630 +msgid "Bold" +msgstr "" + +#: ../../include/ItemObject.php:631 +msgid "Italic" +msgstr "" + +#: ../../include/ItemObject.php:632 +msgid "Underline" +msgstr "" + +#: ../../include/ItemObject.php:633 +msgid "Quote" +msgstr "" + +#: ../../include/ItemObject.php:634 +msgid "Code" +msgstr "" + +#: ../../include/ItemObject.php:635 +msgid "Image" +msgstr "" + +#: ../../include/ItemObject.php:636 +msgid "Link" +msgstr "" + +#: ../../include/ItemObject.php:637 +msgid "Video" +msgstr "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:142 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:259 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:265 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:268 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:268 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:269 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:269 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:270 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:270 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:271 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:271 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:272 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:272 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:273 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:273 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:274 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:274 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:283 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:491 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:492 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "" + +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "" + +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "" + +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "" + +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" +msgstr "" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "" + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "" + +#: ../../include/js_strings.php:20 +msgid "timeago.prefixAgo" +msgstr "" + +#: ../../include/js_strings.php:21 +msgid "timeago.prefixFromNow" +msgstr "" + +#: ../../include/js_strings.php:22 +msgid "ago" +msgstr "" + +#: ../../include/js_strings.php:23 +msgid "from now" +msgstr "" + +#: ../../include/js_strings.php:24 +msgid "less than a minute" +msgstr "" + +#: ../../include/js_strings.php:25 +msgid "about a minute" +msgstr "" + +#: ../../include/js_strings.php:26 +#, php-format +msgid "%d minutes" msgstr "" #: ../../include/js_strings.php:27 @@ -3429,257 +3462,281 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/apps.php:126 -msgid "Site Admin" +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1539 +msgid "Logout" msgstr "" -#: ../../include/apps.php:128 -msgid "Address Book" +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" msgstr "" -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" msgstr "" -#: ../../include/apps.php:146 -msgid "Probe" +#: ../../include/nav.php:98 +msgid "Your posts and conversations" msgstr "" -#: ../../include/apps.php:147 -msgid "Suggest" +#: ../../include/nav.php:99 +msgid "Your profile page" msgstr "" -#: ../../include/apps.php:148 -msgid "Random Channel" +#: ../../include/nav.php:101 +msgid "Edit Profiles" msgstr "" -#: ../../include/apps.php:149 -msgid "Invite" +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/apps.php:150 -msgid "Features" +#: ../../include/nav.php:103 +msgid "Edit your profile" msgstr "" -#: ../../include/apps.php:151 -msgid "Language" +#: ../../include/nav.php:105 +msgid "Your photos" msgstr "" -#: ../../include/apps.php:152 -msgid "Post" +#: ../../include/nav.php:106 +msgid "Your files" msgstr "" -#: ../../include/apps.php:153 -msgid "Profile Photo" +#: ../../include/nav.php:111 +msgid "Your chatrooms" msgstr "" -#: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:591 -msgid "Update" +#: ../../include/nav.php:117 +msgid "Your bookmarks" msgstr "" -#: ../../include/apps.php:242 -msgid "Install" +#: ../../include/nav.php:121 +msgid "Your webpages" msgstr "" -#: ../../include/apps.php:247 -msgid "Purchase" +#: ../../include/nav.php:125 +msgid "Sign in" msgstr "" -#: ../../include/auth.php:116 -msgid "Logged out." +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/auth.php:257 -msgid "Failed authentication" +#: ../../include/nav.php:145 +msgid "Remote authentication" msgstr "" -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" +#: ../../include/nav.php:159 +msgid "Home Page" msgstr "" -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1023 ../../mod/photos.php:1035 -msgid "View all" +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1516 +msgid "Register" msgstr "" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1032 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" +#: ../../include/nav.php:163 +msgid "Create an account" +msgstr "" -#: ../../include/ItemObject.php:179 -msgid "Add Star" +#: ../../include/nav.php:168 +msgid "Help and documentation" msgstr "" -#: ../../include/ItemObject.php:180 -msgid "Remove Star" +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" +#: ../../include/nav.php:173 +msgid "Search site content" msgstr "" -#: ../../include/ItemObject.php:185 -msgid "starred" +#: ../../include/nav.php:176 +msgid "Channel Directory" msgstr "" -#: ../../include/ItemObject.php:203 -msgid "Add Tag" +#: ../../include/nav.php:190 +msgid "Your matrix" msgstr "" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:975 -msgid "I like this (toggle)" +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" msgstr "" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:976 -msgid "I don't like this (toggle)" +#: ../../include/nav.php:193 +msgid "Channel home" msgstr "" -#: ../../include/ItemObject.php:226 -msgid "Share This" +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/ItemObject.php:226 -msgid "share" +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" msgstr "" -#: ../../include/ItemObject.php:236 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "" -#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 -#, php-format -msgid "View %s's profile - %s" +#: ../../include/nav.php:200 +msgid "Notifications" msgstr "" -#: ../../include/ItemObject.php:252 -msgid "to" +#: ../../include/nav.php:201 +msgid "See all notifications" msgstr "" -#: ../../include/ItemObject.php:253 -msgid "via" +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" msgstr "" -#: ../../include/ItemObject.php:254 -msgid "Wall-to-Wall" +#: ../../include/nav.php:204 +msgid "Private mail" msgstr "" -#: ../../include/ItemObject.php:255 -msgid "via Wall-To-Wall:" +#: ../../include/nav.php:205 +msgid "See all private messages" msgstr "" -#: ../../include/ItemObject.php:291 -msgid "Save Bookmarks" +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/ItemObject.php:292 -msgid "Add to Calendar" +#: ../../include/nav.php:207 +msgid "Inbox" msgstr "" -#: ../../include/ItemObject.php:301 -msgid "Mark all seen" +#: ../../include/nav.php:208 +msgid "Outbox" msgstr "" -#: ../../include/ItemObject.php:306 ../../mod/photos.php:1143 -msgctxt "noun" -msgid "Likes" +#: ../../include/nav.php:212 +msgid "Event Calendar" msgstr "" -#: ../../include/ItemObject.php:307 ../../mod/photos.php:1144 -msgctxt "noun" -msgid "Dislikes" +#: ../../include/nav.php:213 +msgid "See all events" msgstr "" -#: ../../include/ItemObject.php:618 ../../mod/photos.php:994 -#: ../../mod/photos.php:1104 -msgid "This is you" +#: ../../include/nav.php:214 +msgid "Mark all events seen" msgstr "" -#: ../../include/ItemObject.php:621 ../../mod/mood.php:135 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/poke.php:166 -#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/settings.php:565 -#: ../../mod/settings.php:677 ../../mod/settings.php:706 -#: ../../mod/settings.php:730 ../../mod/settings.php:812 -#: ../../mod/settings.php:1004 ../../mod/events.php:598 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:93 ../../mod/connedit.php:556 -#: ../../mod/thing.php:284 ../../mod/thing.php:327 ../../mod/profiles.php:633 -#: ../../mod/pdledit.php:58 ../../mod/fsuggest.php:108 -#: ../../mod/filestorage.php:146 ../../mod/group.php:81 -#: ../../mod/import.php:480 ../../mod/admin.php:412 ../../mod/admin.php:723 -#: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 ../../mod/locs.php:99 ../../mod/mail.php:352 -#: ../../mod/invite.php:142 ../../mod/xchan.php:11 ../../mod/photos.php:594 -#: ../../mod/photos.php:671 ../../mod/photos.php:957 ../../mod/photos.php:997 -#: ../../mod/photos.php:1107 ../../mod/appman.php:99 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" +#: ../../include/nav.php:216 +msgid "Manage Your Channels" msgstr "" -#: ../../include/ItemObject.php:622 -msgid "Bold" +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/ItemObject.php:623 -msgid "Italic" +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" msgstr "" -#: ../../include/ItemObject.php:624 -msgid "Underline" +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/ItemObject.php:625 -msgid "Quote" +#: ../../include/nav.php:262 +msgid "@name, #tag, content" msgstr "" -#: ../../include/ItemObject.php:626 -msgid "Code" +#: ../../include/nav.php:263 +msgid "Please wait..." msgstr "" -#: ../../include/ItemObject.php:627 -msgid "Image" +#: ../../include/security.php:357 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/ItemObject.php:628 -msgid "Link" +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../include/ItemObject.php:629 -msgid "Video" +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../include/chat.php:10 -msgid "Missing room name" +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../include/chat.php:19 -msgid "Duplicate room name" +#: ../../mod/register.php:84 +msgid "Passwords do not match." msgstr "" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../include/chat.php:105 -msgid "Room not found." +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../include/chat.php:126 -msgid "Room is full" +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." msgstr "" -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "" + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "" + +#: ../../mod/register.php:207 ../../mod/admin.php:413 +msgid "Registration" +msgstr "" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" msgstr "" #: ../../mod/mitem.php:24 ../../mod/menu.php:108 @@ -3802,1195 +3859,1265 @@ msgstr "" msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../mod/settings.php:73 +msgid "Name is required" msgstr "" -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" msgstr "" -#: ../../mod/register.php:84 -msgid "Passwords do not match." +#: ../../mod/settings.php:213 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation instructions." +#: ../../mod/settings.php:217 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." +#: ../../mod/settings.php:231 +msgid "Password changed." msgstr "" -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." +#: ../../mod/settings.php:233 +msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." +#: ../../mod/settings.php:247 +msgid "Not valid email." msgstr "" -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" +#: ../../mod/settings.php:250 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +#: ../../mod/settings.php:259 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../mod/register.php:185 -msgid "Terms of Service" +#: ../../mod/settings.php:495 +msgid "Settings updated." msgstr "" -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" +#: ../../mod/settings.php:564 ../../mod/settings.php:590 +#: ../../mod/settings.php:626 +msgid "Add application" msgstr "" -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" +#: ../../mod/settings.php:567 +msgid "Name of application" msgstr "" -#: ../../mod/register.php:207 ../../mod/admin.php:413 -msgid "Registration" +#: ../../mod/settings.php:568 ../../mod/settings.php:594 +msgid "Consumer Key" msgstr "" -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." +#: ../../mod/settings.php:568 ../../mod/settings.php:569 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" +#: ../../mod/settings.php:569 ../../mod/settings.php:595 +msgid "Consumer Secret" msgstr "" -#: ../../mod/register.php:216 -msgid "Your email address" +#: ../../mod/settings.php:570 ../../mod/settings.php:596 +msgid "Redirect" msgstr "" -#: ../../mod/register.php:217 -msgid "Choose a password" +#: ../../mod/settings.php:570 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../mod/register.php:218 -msgid "Please re-enter your password" +#: ../../mod/settings.php:571 ../../mod/settings.php:597 +msgid "Icon url" msgstr "" -#: ../../mod/filer.php:49 -msgid "- select -" +#: ../../mod/settings.php:571 +msgid "Optional" msgstr "" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." +#: ../../mod/settings.php:582 +msgid "You can't edit this application." msgstr "" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" +#: ../../mod/settings.php:625 +msgid "Connected Apps" msgstr "" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." +#: ../../mod/settings.php:629 +msgid "Client key starts with" msgstr "" -#: ../../mod/profperm.php:123 -msgid "Visible To" +#: ../../mod/settings.php:630 +msgid "No name" msgstr "" -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" +#: ../../mod/settings.php:631 +msgid "Remove authorization" msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." +#: ../../mod/settings.php:642 +msgid "No feature settings configured" msgstr "" -#: ../../mod/sources.php:45 -msgid "Source created." +#: ../../mod/settings.php:650 +msgid "Feature Settings" msgstr "" -#: ../../mod/sources.php:57 -msgid "Source updated." +#: ../../mod/settings.php:673 +msgid "Account Settings" msgstr "" -#: ../../mod/sources.php:82 -msgid "*" +#: ../../mod/settings.php:674 +msgid "Password Settings" msgstr "" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." +#: ../../mod/settings.php:675 +msgid "New Password:" msgstr "" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" +#: ../../mod/settings.php:676 +msgid "Confirm:" msgstr "" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +#: ../../mod/settings.php:676 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" +#: ../../mod/settings.php:678 ../../mod/settings.php:1013 +msgid "Email Address:" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" +#: ../../mod/settings.php:679 ../../mod/removeaccount.php:61 +msgid "Remove Account" msgstr "" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" +#: ../../mod/settings.php:680 +msgid "Remove this account from this server including all its channels" msgstr "" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." +#: ../../mod/settings.php:681 ../../mod/settings.php:1095 +msgid "Warning: This action is permanent and cannot be reversed." msgstr "" -#: ../../mod/sources.php:130 -msgid "Edit Source" +#: ../../mod/settings.php:697 +msgid "Off" msgstr "" -#: ../../mod/sources.php:131 -msgid "Delete Source" +#: ../../mod/settings.php:697 +msgid "On" msgstr "" -#: ../../mod/sources.php:158 -msgid "Source removed" +#: ../../mod/settings.php:704 +msgid "Additional Features" msgstr "" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." +#: ../../mod/settings.php:729 +msgid "Connector Settings" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" +#: ../../mod/settings.php:768 +msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" +#: ../../mod/settings.php:771 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../mod/poke.php:161 -msgid "Recipient" +#: ../../mod/settings.php:774 ../../mod/admin.php:363 +msgid "mobile" msgstr "" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" +#: ../../mod/settings.php:810 +msgid "Display Settings" msgstr "" -#: ../../mod/poke.php:165 -msgid "Make this post private" +#: ../../mod/settings.php:816 +msgid "Display Theme:" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" +#: ../../mod/settings.php:817 +msgid "Mobile Theme:" msgstr "" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: ../../mod/settings.php:818 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../mod/api.php:89 -msgid "Please login to continue." +#: ../../mod/settings.php:819 +msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../mod/settings.php:819 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/api.php:105 ../../mod/settings.php:944 ../../mod/settings.php:949 -#: ../../mod/settings.php:1032 ../../mod/profiles.php:591 -#: ../../mod/admin.php:392 -msgid "Yes" +#: ../../mod/settings.php:820 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/api.php:106 ../../mod/settings.php:944 ../../mod/settings.php:949 -#: ../../mod/settings.php:1032 ../../mod/profiles.php:592 -#: ../../mod/admin.php:390 -msgid "No" +#: ../../mod/settings.php:820 +msgid "Maximum of 100 items" msgstr "" -#: ../../mod/search.php:13 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 -#: ../../mod/photos.php:458 -msgid "Public access denied." +#: ../../mod/settings.php:821 +msgid "Don't show emoticons" msgstr "" -#: ../../mod/attach.php:9 -msgid "Item not available." +#: ../../mod/settings.php:822 +msgid "Link post titles to source" msgstr "" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../mod/settings.php:823 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." +#: ../../mod/settings.php:826 +msgid "Use blog/list mode on channel page" msgstr "" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." +#: ../../mod/settings.php:826 ../../mod/settings.php:827 +msgid "(comments displayed separately)" msgstr "" -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." +#: ../../mod/settings.php:827 +msgid "Use blog/list mode on matrix page" msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../mod/settings.php:828 +msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../mod/blocks.php:99 -msgid "Block Name" +#: ../../mod/settings.php:828 ../../mod/settings.php:829 +msgid "click to expand content exceeding this height" msgstr "" -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" +#: ../../mod/settings.php:829 +msgid "Matrix page max height of content (in pixels)" msgstr "" -#: ../../mod/setup.php:172 -msgid "Could not connect to database." +#: ../../mod/settings.php:863 +msgid "Nobody except yourself" msgstr "" -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../mod/settings.php:864 +msgid "Only those you specifically allow" msgstr "" -#: ../../mod/setup.php:183 -msgid "Could not create table." +#: ../../mod/settings.php:865 +msgid "Approved connections" msgstr "" -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." +#: ../../mod/settings.php:866 +msgid "Any connections" msgstr "" -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../mod/settings.php:867 +msgid "Anybody on this website" msgstr "" -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../mod/settings.php:868 +msgid "Anybody in this network" msgstr "" -#: ../../mod/setup.php:261 -msgid "System check" +#: ../../mod/settings.php:869 +msgid "Anybody authenticated" msgstr "" -#: ../../mod/setup.php:265 ../../mod/events.php:445 ../../mod/photos.php:868 -msgid "Next" +#: ../../mod/settings.php:870 +msgid "Anybody on the internet" msgstr "" -#: ../../mod/setup.php:266 -msgid "Check again" +#: ../../mod/settings.php:944 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/setup.php:289 -msgid "Database connection" +#: ../../mod/settings.php:944 ../../mod/settings.php:949 +#: ../../mod/settings.php:1032 ../../mod/api.php:106 +#: ../../mod/profiles.php:592 ../../mod/admin.php:390 +msgid "No" msgstr "" -#: ../../mod/setup.php:290 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." +#: ../../mod/settings.php:944 ../../mod/settings.php:949 +#: ../../mod/settings.php:1032 ../../mod/api.php:105 +#: ../../mod/profiles.php:591 ../../mod/admin.php:392 +msgid "Yes" msgstr "" -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../mod/settings.php:949 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/settings.php:953 ../../mod/profile_photo.php:365 +msgid "or" msgstr "" -#: ../../mod/setup.php:296 -msgid "Database Server Name" +#: ../../mod/settings.php:958 +msgid "Your channel address is" msgstr "" -#: ../../mod/setup.php:296 -msgid "Default is localhost" +#: ../../mod/settings.php:1002 +msgid "Channel Settings" msgstr "" -#: ../../mod/setup.php:297 -msgid "Database Port" +#: ../../mod/settings.php:1011 +msgid "Basic Settings" msgstr "" -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" +#: ../../mod/settings.php:1014 +msgid "Your Timezone:" msgstr "" -#: ../../mod/setup.php:298 -msgid "Database Login Name" +#: ../../mod/settings.php:1015 +msgid "Default Post Location:" msgstr "" -#: ../../mod/setup.php:299 -msgid "Database Login Password" +#: ../../mod/settings.php:1015 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../mod/setup.php:300 -msgid "Database Name" +#: ../../mod/settings.php:1016 +msgid "Use Browser Location:" msgstr "" -#: ../../mod/setup.php:301 -msgid "Database Type" +#: ../../mod/settings.php:1018 +msgid "Adult Content" msgstr "" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" +#: ../../mod/settings.php:1018 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../mod/settings.php:1020 +msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" +#: ../../mod/settings.php:1022 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." +#: ../../mod/settings.php:1024 +msgid "Hide my online presence" msgstr "" -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" +#: ../../mod/settings.php:1024 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../mod/setup.php:335 -msgid "Site settings" +#: ../../mod/settings.php:1026 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/settings.php:1027 +msgid "" +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/setup.php:396 +#: ../../mod/settings.php:1028 msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../mod/setup.php:400 -msgid "PHP executable path" +#: ../../mod/settings.php:1029 +msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../mod/settings.php:1030 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/setup.php:405 -msgid "Command line PHP" +#: ../../mod/settings.php:1032 +msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/setup.php:414 +#: ../../mod/settings.php:1032 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." +#: ../../mod/settings.php:1034 +msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" +#: ../../mod/settings.php:1036 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../mod/settings.php:1036 +msgid "0 or blank prevents expiration" msgstr "" -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../mod/settings.php:1037 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" +#: ../../mod/settings.php:1037 +msgid "May reduce spam activity" msgstr "" -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" +#: ../../mod/settings.php:1038 +msgid "Default Post Permissions" msgstr "" -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" +#: ../../mod/settings.php:1043 +msgid "Channel permissions category:" msgstr "" -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" +#: ../../mod/settings.php:1051 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" +#: ../../mod/settings.php:1051 +msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" +#: ../../mod/settings.php:1054 +msgid "Notification Settings" msgstr "" -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" +#: ../../mod/settings.php:1055 +msgid "By default post a status message when:" msgstr "" -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" +#: ../../mod/settings.php:1056 +msgid "accepting a friend request" msgstr "" -#: ../../mod/setup.php:458 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../mod/settings.php:1057 +msgid "joining a forum/community" msgstr "" -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" +#: ../../mod/settings.php:1058 +msgid "making an interesting profile change" msgstr "" -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../mod/settings.php:1059 +msgid "Send a notification email when:" msgstr "" -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." +#: ../../mod/settings.php:1060 +msgid "You receive a connection request" msgstr "" -#: ../../mod/setup.php:476 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../mod/settings.php:1061 +msgid "Your connections are confirmed" msgstr "" -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." +#: ../../mod/settings.php:1062 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." +#: ../../mod/settings.php:1063 +msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." +#: ../../mod/settings.php:1064 +msgid "You receive a private message" msgstr "" -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." +#: ../../mod/settings.php:1065 +msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/setup.php:508 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../mod/settings.php:1066 +msgid "You are tagged in a post" msgstr "" -#: ../../mod/setup.php:509 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +#: ../../mod/settings.php:1067 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/setup.php:510 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../mod/settings.php:1070 +msgid "Show visual notifications including:" msgstr "" -#: ../../mod/setup.php:511 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../mod/settings.php:1072 +msgid "Unseen matrix activity" msgstr "" -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" +#: ../../mod/settings.php:1073 +msgid "Unseen channel activity" msgstr "" -#: ../../mod/setup.php:524 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: ../../mod/settings.php:1074 +msgid "Unseen private messages" msgstr "" -#: ../../mod/setup.php:525 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." +#: ../../mod/settings.php:1074 ../../mod/settings.php:1079 +#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 +msgid "Recommended" msgstr "" -#: ../../mod/setup.php:526 ../../mod/setup.php:544 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../mod/settings.php:1075 +msgid "Upcoming events" msgstr "" -#: ../../mod/setup.php:527 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../mod/settings.php:1076 +msgid "Events today" msgstr "" -#: ../../mod/setup.php:530 -#, php-format -msgid "%s is writable" +#: ../../mod/settings.php:1077 +msgid "Upcoming birthdays" msgstr "" -#: ../../mod/setup.php:543 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to " -"have write access to the store directory under the Red top level folder" +#: ../../mod/settings.php:1077 +msgid "Not available in all themes" msgstr "" -#: ../../mod/setup.php:547 -msgid "store is writable" +#: ../../mod/settings.php:1078 +msgid "System (personal) notifications" msgstr "" -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../mod/settings.php:1079 +msgid "System info messages" msgstr "" -#: ../../mod/setup.php:578 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" +#: ../../mod/settings.php:1080 +msgid "System critical alerts" msgstr "" -#: ../../mod/setup.php:579 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../mod/settings.php:1081 +msgid "New connections" msgstr "" -#: ../../mod/setup.php:580 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../mod/settings.php:1082 +msgid "System Registrations" msgstr "" -#: ../../mod/setup.php:581 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../mod/settings.php:1084 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../mod/settings.php:1084 +msgid "Must be greater than 0" msgstr "" -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" +#: ../../mod/settings.php:1086 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/setup.php:590 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../mod/settings.php:1087 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" +#: ../../mod/settings.php:1090 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" msgstr "" -#: ../../mod/setup.php:602 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." +#: ../../mod/settings.php:1091 +msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/setup.php:626 -msgid "Errors encountered creating database tables." +#: ../../mod/settings.php:1093 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/setup.php:661 -msgid "

        What next

        " +#: ../../mod/settings.php:1094 +msgid "Remove this channel" msgstr "" -#: ../../mod/setup.php:662 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/group.php:20 +msgid "Collection created." msgstr "" -#: ../../mod/settings.php:73 -msgid "Name is required" +#: ../../mod/group.php:26 +msgid "Could not create collection." msgstr "" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" +#: ../../mod/group.php:54 +msgid "Collection updated." msgstr "" -#: ../../mod/settings.php:213 -msgid "Passwords do not match. Password unchanged." +#: ../../mod/group.php:86 +msgid "Create a collection of channels." msgstr "" -#: ../../mod/settings.php:217 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " msgstr "" -#: ../../mod/settings.php:231 -msgid "Password changed." +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" msgstr "" -#: ../../mod/settings.php:233 -msgid "Password update failed. Please try again." +#: ../../mod/group.php:107 +msgid "Collection removed." msgstr "" -#: ../../mod/settings.php:247 -msgid "Not valid email." +#: ../../mod/group.php:109 +msgid "Unable to remove collection." msgstr "" -#: ../../mod/settings.php:250 -msgid "Protected email address. Cannot change to that email." +#: ../../mod/group.php:182 +msgid "Collection Editor" msgstr "" -#: ../../mod/settings.php:259 -msgid "System failure storing new email. Please try again." +#: ../../mod/group.php:196 +msgid "Members" msgstr "" -#: ../../mod/settings.php:495 -msgid "Settings updated." +#: ../../mod/group.php:198 +msgid "All Connected Channels" msgstr "" -#: ../../mod/settings.php:564 ../../mod/settings.php:590 -#: ../../mod/settings.php:626 -msgid "Add application" +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../mod/settings.php:567 -msgid "Name of application" +#: ../../mod/search.php:13 ../../mod/photos.php:458 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 +msgid "Public access denied." msgstr "" -#: ../../mod/settings.php:568 ../../mod/settings.php:594 -msgid "Consumer Key" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../mod/settings.php:568 ../../mod/settings.php:569 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" msgstr "" -#: ../../mod/settings.php:569 ../../mod/settings.php:595 -msgid "Consumer Secret" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" msgstr "" -#: ../../mod/settings.php:570 ../../mod/settings.php:596 -msgid "Redirect" +#: ../../mod/poke.php:161 +msgid "Recipient" msgstr "" -#: ../../mod/settings.php:570 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../mod/settings.php:571 ../../mod/settings.php:597 -msgid "Icon url" +#: ../../mod/poke.php:165 +msgid "Make this post private" msgstr "" -#: ../../mod/settings.php:571 -msgid "Optional" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" msgstr "" -#: ../../mod/settings.php:582 -msgid "You can't edit this application." +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: ../../mod/settings.php:625 -msgid "Connected Apps" +#: ../../mod/api.php:89 +msgid "Please login to continue." msgstr "" -#: ../../mod/settings.php:629 -msgid "Client key starts with" +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../mod/settings.php:630 -msgid "No name" +#: ../../mod/setup.php:166 +msgid "Red Matrix Server - Setup" msgstr "" -#: ../../mod/settings.php:631 -msgid "Remove authorization" +#: ../../mod/setup.php:172 +msgid "Could not connect to database." msgstr "" -#: ../../mod/settings.php:642 -msgid "No feature settings configured" +#: ../../mod/setup.php:176 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../mod/settings.php:650 -msgid "Feature Settings" +#: ../../mod/setup.php:183 +msgid "Could not create table." msgstr "" -#: ../../mod/settings.php:673 -msgid "Account Settings" +#: ../../mod/setup.php:189 +msgid "Your site database has been installed." msgstr "" -#: ../../mod/settings.php:674 -msgid "Password Settings" +#: ../../mod/setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../mod/settings.php:675 -msgid "New Password:" +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../mod/settings.php:676 -msgid "Confirm:" +#: ../../mod/setup.php:261 +msgid "System check" msgstr "" -#: ../../mod/settings.php:676 -msgid "Leave password fields blank unless changing" +#: ../../mod/setup.php:265 ../../mod/events.php:445 ../../mod/photos.php:868 +msgid "Next" msgstr "" -#: ../../mod/settings.php:678 ../../mod/settings.php:1013 -msgid "Email Address:" +#: ../../mod/setup.php:266 +msgid "Check again" msgstr "" -#: ../../mod/settings.php:679 ../../mod/removeaccount.php:61 -msgid "Remove Account" +#: ../../mod/setup.php:289 +msgid "Database connection" msgstr "" -#: ../../mod/settings.php:680 -msgid "Remove this account from this server including all its channels" +#: ../../mod/setup.php:290 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." msgstr "" -#: ../../mod/settings.php:681 ../../mod/settings.php:1095 -msgid "Warning: This action is permanent and cannot be reversed." +#: ../../mod/setup.php:291 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../mod/settings.php:697 -msgid "Off" +#: ../../mod/setup.php:292 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../mod/settings.php:697 -msgid "On" +#: ../../mod/setup.php:296 +msgid "Database Server Name" msgstr "" -#: ../../mod/settings.php:704 -msgid "Additional Features" +#: ../../mod/setup.php:296 +msgid "Default is localhost" msgstr "" -#: ../../mod/settings.php:729 -msgid "Connector Settings" +#: ../../mod/setup.php:297 +msgid "Database Port" msgstr "" -#: ../../mod/settings.php:768 -msgid "No special theme for mobile devices" +#: ../../mod/setup.php:297 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../mod/settings.php:771 -#, php-format -msgid "%s - (Experimental)" +#: ../../mod/setup.php:298 +msgid "Database Login Name" msgstr "" -#: ../../mod/settings.php:774 ../../mod/admin.php:363 -msgid "mobile" +#: ../../mod/setup.php:299 +msgid "Database Login Password" msgstr "" -#: ../../mod/settings.php:810 -msgid "Display Settings" +#: ../../mod/setup.php:300 +msgid "Database Name" msgstr "" -#: ../../mod/settings.php:816 -msgid "Display Theme:" +#: ../../mod/setup.php:301 +msgid "Database Type" msgstr "" -#: ../../mod/settings.php:817 -msgid "Mobile Theme:" +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "Site administrator email address" msgstr "" -#: ../../mod/settings.php:818 -msgid "Enable user zoom on mobile devices" +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../mod/settings.php:819 -msgid "Update browser every xx seconds" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Website URL" msgstr "" -#: ../../mod/settings.php:819 -msgid "Minimum of 10 seconds, no maximum" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../mod/settings.php:820 -msgid "Maximum number of conversations to load at any time:" +#: ../../mod/setup.php:307 ../../mod/setup.php:352 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../mod/settings.php:820 -msgid "Maximum of 100 items" +#: ../../mod/setup.php:335 +msgid "Site settings" msgstr "" -#: ../../mod/settings.php:821 -msgid "Don't show emoticons" +#: ../../mod/setup.php:395 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../mod/settings.php:822 -msgid "Link post titles to source" +#: ../../mod/setup.php:396 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." msgstr "" -#: ../../mod/settings.php:823 -msgid "System Page Layout Editor - (advanced)" +#: ../../mod/setup.php:400 +msgid "PHP executable path" msgstr "" -#: ../../mod/settings.php:826 -msgid "Use blog/list mode on channel page" +#: ../../mod/setup.php:400 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../mod/settings.php:826 ../../mod/settings.php:827 -msgid "(comments displayed separately)" +#: ../../mod/setup.php:405 +msgid "Command line PHP" msgstr "" -#: ../../mod/settings.php:827 -msgid "Use blog/list mode on matrix page" +#: ../../mod/setup.php:414 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../mod/settings.php:828 -msgid "Channel page max height of content (in pixels)" +#: ../../mod/setup.php:415 +msgid "This is required for message delivery to work." msgstr "" -#: ../../mod/settings.php:828 ../../mod/settings.php:829 -msgid "click to expand content exceeding this height" +#: ../../mod/setup.php:417 +msgid "PHP register_argc_argv" msgstr "" -#: ../../mod/settings.php:829 -msgid "Matrix page max height of content (in pixels)" +#: ../../mod/setup.php:438 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../mod/settings.php:863 -msgid "Nobody except yourself" +#: ../../mod/setup.php:439 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../mod/settings.php:864 -msgid "Only those you specifically allow" +#: ../../mod/setup.php:441 +msgid "Generate encryption keys" msgstr "" -#: ../../mod/settings.php:865 -msgid "Approved connections" +#: ../../mod/setup.php:448 +msgid "libCurl PHP module" msgstr "" -#: ../../mod/settings.php:866 -msgid "Any connections" +#: ../../mod/setup.php:449 +msgid "GD graphics PHP module" msgstr "" -#: ../../mod/settings.php:867 -msgid "Anybody on this website" +#: ../../mod/setup.php:450 +msgid "OpenSSL PHP module" msgstr "" -#: ../../mod/settings.php:868 -msgid "Anybody in this network" +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" msgstr "" -#: ../../mod/settings.php:869 -msgid "Anybody authenticated" +#: ../../mod/setup.php:452 +msgid "mb_string PHP module" msgstr "" -#: ../../mod/settings.php:870 -msgid "Anybody on the internet" +#: ../../mod/setup.php:453 +msgid "mcrypt PHP module" msgstr "" -#: ../../mod/settings.php:944 -msgid "Publish your default profile in the network directory" +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../mod/settings.php:949 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../mod/setup.php:458 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../mod/settings.php:953 ../../mod/profile_photo.php:365 -msgid "or" +#: ../../mod/setup.php:464 ../../mod/setup.php:467 +msgid "proc_open" msgstr "" -#: ../../mod/settings.php:958 -msgid "Your channel address is" +#: ../../mod/setup.php:464 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../mod/settings.php:1002 -msgid "Channel Settings" +#: ../../mod/setup.php:472 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../mod/settings.php:1011 -msgid "Basic Settings" +#: ../../mod/setup.php:476 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../mod/settings.php:1014 -msgid "Your Timezone:" +#: ../../mod/setup.php:480 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../mod/settings.php:1015 -msgid "Default Post Location:" +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." msgstr "" -#: ../../mod/settings.php:1015 -msgid "Geographical location to display on your posts" +#: ../../mod/setup.php:488 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../mod/settings.php:1016 -msgid "Use Browser Location:" +#: ../../mod/setup.php:492 +msgid "Error: mcrypt PHP module required but not installed." msgstr "" -#: ../../mod/settings.php:1018 -msgid "Adult Content" +#: ../../mod/setup.php:508 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: ../../mod/settings.php:1018 +#: ../../mod/setup.php:509 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../mod/settings.php:1020 -msgid "Security and Privacy Settings" +#: ../../mod/setup.php:510 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." msgstr "" -#: ../../mod/settings.php:1022 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../mod/setup.php:511 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../mod/settings.php:1024 -msgid "Hide my online presence" +#: ../../mod/setup.php:514 +msgid ".htconfig.php is writable" msgstr "" -#: ../../mod/settings.php:1024 -msgid "Prevents displaying in your profile that you are online" +#: ../../mod/setup.php:524 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../mod/settings.php:1026 -msgid "Simple Privacy Settings:" +#: ../../mod/setup.php:525 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." msgstr "" -#: ../../mod/settings.php:1027 +#: ../../mod/setup.php:526 ../../mod/setup.php:544 msgid "" -"Very Public - extremely permissive (should be used with caution)" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../mod/settings.php:1028 +#: ../../mod/setup.php:527 +#, php-format msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../mod/settings.php:1029 -msgid "Private - default private, never open or public" +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../mod/settings.php:1030 -msgid "Blocked - default blocked to/from everybody" +#: ../../mod/setup.php:543 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to " +"have write access to the store directory under the Red top level folder" msgstr "" -#: ../../mod/settings.php:1032 -msgid "Allow others to tag your posts" +#: ../../mod/setup.php:547 +msgid "store is writable" msgstr "" -#: ../../mod/settings.php:1032 +#: ../../mod/setup.php:577 msgid "" -"Often used by the community to retro-actively flag inappropriate content" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../mod/settings.php:1034 -msgid "Advanced Privacy Settings" +#: ../../mod/setup.php:578 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "" + +#: ../../mod/setup.php:579 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "" + +#: ../../mod/setup.php:580 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "" + +#: ../../mod/setup.php:581 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "" + +#: ../../mod/setup.php:582 +msgid "" +"Providers are available that issue free certificates which are browser-valid." +msgstr "" + +#: ../../mod/setup.php:584 +msgid "SSL certificate validation" +msgstr "" + +#: ../../mod/setup.php:590 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr "" + +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" +msgstr "" + +#: ../../mod/setup.php:602 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: ../../mod/setup.php:626 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../mod/setup.php:661 +msgid "

        What next

        " +msgstr "" + +#: ../../mod/setup.php:662 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "" + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "" + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "" + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." msgstr "" -#: ../../mod/settings.php:1036 -msgid "Expire other channel content after this many days" +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." msgstr "" -#: ../../mod/settings.php:1036 -msgid "0 or blank prevents expiration" +#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +msgid "Export Channel" msgstr "" -#: ../../mod/settings.php:1037 -msgid "Maximum Friend Requests/Day:" +#: ../../mod/uexport.php:35 +msgid "" +"Export your basic channel information to a small file. This acts as a " +"backup of your connections, permissions, profile and basic data, which can " +"be used to import your data to a new hub, but\tdoes not contain your content." msgstr "" -#: ../../mod/settings.php:1037 -msgid "May reduce spam activity" +#: ../../mod/uexport.php:36 +msgid "Export Content" msgstr "" -#: ../../mod/settings.php:1038 -msgid "Default Post Permissions" +#: ../../mod/uexport.php:37 +msgid "" +"Export your channel information and all the content to a JSON backup. This " +"backs up all of your connections, permissions, profile data and all of your " +"content, but is generally not suitable for importing a channel to a new hub " +"as this file may be VERY large. Please be patient - it may take several " +"minutes for this download to begin." msgstr "" -#: ../../mod/settings.php:1043 -msgid "Channel permissions category:" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." msgstr "" -#: ../../mod/settings.php:1051 -msgid "Maximum private messages per day from unknown people:" +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" msgstr "" -#: ../../mod/settings.php:1051 -msgid "Useful to reduce spamming" +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." msgstr "" -#: ../../mod/settings.php:1054 -msgid "Notification Settings" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" msgstr "" -#: ../../mod/settings.php:1055 -msgid "By default post a status message when:" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" msgstr "" -#: ../../mod/settings.php:1056 -msgid "accepting a friend request" +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" msgstr "" -#: ../../mod/settings.php:1057 -msgid "joining a forum/community" +#: ../../mod/delegate.php:130 ../../mod/photos.php:905 ../../mod/tagrm.php:133 +msgid "Remove" msgstr "" -#: ../../mod/settings.php:1058 -msgid "making an interesting profile change" +#: ../../mod/delegate.php:131 +msgid "Add" msgstr "" -#: ../../mod/settings.php:1059 -msgid "Send a notification email when:" +#: ../../mod/delegate.php:132 +msgid "No entries." msgstr "" -#: ../../mod/settings.php:1060 -msgid "You receive a connection request" +#: ../../mod/siteinfo.php:92 +#, php-format +msgid "Version %s" msgstr "" -#: ../../mod/settings.php:1061 -msgid "Your connections are confirmed" +#: ../../mod/siteinfo.php:113 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/settings.php:1062 -msgid "Someone writes on your profile wall" +#: ../../mod/siteinfo.php:126 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/settings.php:1063 -msgid "Someone writes a followup comment" +#: ../../mod/siteinfo.php:134 +msgid "Red" msgstr "" -#: ../../mod/settings.php:1064 -msgid "You receive a private message" +#: ../../mod/siteinfo.php:135 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../mod/settings.php:1065 -msgid "You receive a friend suggestion" +#: ../../mod/siteinfo.php:139 +msgid "Running at web location" msgstr "" -#: ../../mod/settings.php:1066 -msgid "You are tagged in a post" +#: ../../mod/siteinfo.php:140 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." msgstr "" -#: ../../mod/settings.php:1067 -msgid "You are poked/prodded/etc. in a post" +#: ../../mod/siteinfo.php:141 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../mod/settings.php:1070 -msgid "Show visual notifications including:" +#: ../../mod/siteinfo.php:144 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../mod/settings.php:1072 -msgid "Unseen matrix activity" +#: ../../mod/siteinfo.php:146 +msgid "Site Administrators" msgstr "" -#: ../../mod/settings.php:1073 -msgid "Unseen channel activity" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../mod/settings.php:1074 -msgid "Unseen private messages" +#: ../../mod/sources.php:45 +msgid "Source created." msgstr "" -#: ../../mod/settings.php:1074 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -msgid "Recommended" +#: ../../mod/sources.php:57 +msgid "Source updated." msgstr "" -#: ../../mod/settings.php:1075 -msgid "Upcoming events" +#: ../../mod/sources.php:82 +msgid "*" msgstr "" -#: ../../mod/settings.php:1076 -msgid "Events today" +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../mod/settings.php:1077 -msgid "Upcoming birthdays" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" msgstr "" -#: ../../mod/settings.php:1077 -msgid "Not available in all themes" +#: ../../mod/sources.php:101 ../../mod/sources.php:133 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../mod/settings.php:1078 -msgid "System (personal) notifications" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../mod/settings.php:1079 -msgid "System info messages" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" msgstr "" -#: ../../mod/settings.php:1080 -msgid "System critical alerts" +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" msgstr "" -#: ../../mod/settings.php:1081 -msgid "New connections" +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." msgstr "" -#: ../../mod/settings.php:1082 -msgid "System Registrations" +#: ../../mod/sources.php:130 +msgid "Edit Source" msgstr "" -#: ../../mod/settings.php:1084 -msgid "Notify me of events this many days in advance" +#: ../../mod/sources.php:131 +msgid "Delete Source" msgstr "" -#: ../../mod/settings.php:1084 -msgid "Must be greater than 0" +#: ../../mod/sources.php:158 +msgid "Source removed" msgstr "" -#: ../../mod/settings.php:1086 -msgid "Advanced Account/Page Type Settings" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." msgstr "" -#: ../../mod/settings.php:1087 -msgid "Change the behaviour of this account for special situations" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/settings.php:1090 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/settings.php:1091 -msgid "Miscellaneous Settings" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/settings.php:1093 -msgid "Personal menu to display in your channel pages" +#: ../../mod/profperm.php:123 +msgid "Visible To" msgstr "" -#: ../../mod/settings.php:1094 -msgid "Remove this channel" +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" msgstr "" #: ../../mod/events.php:81 @@ -5103,7 +5230,7 @@ msgstr "" msgid "You must be logged in to see this page." msgstr "" -#: ../../mod/channel.php:86 +#: ../../mod/channel.php:87 msgid "Insufficient permissions. Request redirected to profile page." msgstr "" @@ -5164,52 +5291,6 @@ msgstr "" msgid "%1$s's Chatrooms" msgstr "" -#: ../../mod/siteinfo.php:92 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../mod/siteinfo.php:113 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/siteinfo.php:126 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/siteinfo.php:134 -msgid "Red" -msgstr "" - -#: ../../mod/siteinfo.php:135 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "" - -#: ../../mod/siteinfo.php:139 -msgid "Running at web location" -msgstr "" - -#: ../../mod/siteinfo.php:140 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "" - -#: ../../mod/siteinfo.php:141 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:144 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" -msgstr "" - -#: ../../mod/siteinfo.php:146 -msgid "Site Administrators" -msgstr "" - #: ../../mod/chatsvc.php:111 msgid "Away" msgstr "" @@ -5222,47 +5303,37 @@ msgstr "" msgid "Please login." msgstr "" -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" +#: ../../mod/editpost.php:20 ../../mod/editblock.php:79 +#: ../../mod/editblock.php:95 ../../mod/editlayout.php:78 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" msgstr "" -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../mod/editpost.php:31 +msgid "Item is not editable" msgstr "" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 +msgid "Edit post" msgstr "" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../mod/editpost.php:53 +msgid "Delete item?" msgstr "" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../mod/editpost.php:116 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" msgstr "" -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../mod/editpost.php:117 ../../mod/editblock.php:148 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" msgstr "" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" +#: ../../mod/editpost.php:118 ../../mod/editblock.php:149 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" msgstr "" #: ../../mod/removeme.php:29 @@ -5337,53 +5408,77 @@ msgstr "" msgid "Authenticate" msgstr "" -#: ../../mod/like.php:15 -msgid "Like/Dislike" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." msgstr "" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../mod/like.php:119 -msgid "thing" +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../mod/like.php:165 -msgid "Channel unavailable." +#: ../../mod/lostpass.php:85 ../../boot.php:1548 +msgid "Password Reset" msgstr "" -#: ../../mod/like.php:204 -msgid "Previous action reversed." +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." msgstr "" -#: ../../mod/like.php:422 -msgid "Action completed." +#: ../../mod/lostpass.php:87 +msgid "Your new password is" msgstr "" -#: ../../mod/like.php:423 -msgid "Thank you." +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../mod/post.php:229 +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "" + +#: ../../mod/lostpass.php:90 msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#: ../../mod/lostpass.php:107 #, php-format -msgid "Welcome %s. Remote authentication successful." +msgid "Your password has changed at %s" +msgstr "" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "" + +#: ../../mod/lostpass.php:125 +msgid "Reset" msgstr "" #: ../../mod/connections.php:37 ../../mod/connedit.php:64 @@ -5479,12 +5574,16 @@ msgstr "" msgid "Finding: " msgstr "" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." +#: ../../mod/ping.php:265 +msgid "sent you a private message" msgstr "" -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" +#: ../../mod/ping.php:316 +msgid "added your channel" +msgstr "" + +#: ../../mod/ping.php:357 +msgid "posted an event" msgstr "" #: ../../mod/connedit.php:189 @@ -5796,134 +5895,217 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/thing.php:96 -msgid "Thing updated" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." msgstr "" -#: ../../mod/thing.php:156 -msgid "Object store: failed" +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../mod/thing.php:160 -msgid "Thing added" +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." msgstr "" -#: ../../mod/thing.php:180 +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../mod/mail.php:136 +msgid "Message deleted." +msgstr "" + +#: ../../mod/mail.php:153 +msgid "Message recalled." +msgstr "" + +#: ../../mod/mail.php:222 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/mail.php:223 ../../mod/mail.php:340 +msgid "To:" +msgstr "" + +#: ../../mod/mail.php:228 ../../mod/mail.php:342 +msgid "Subject:" +msgstr "" + +#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "" + +#: ../../mod/mail.php:239 +msgid "Send" +msgstr "" + +#: ../../mod/mail.php:266 +msgid "Message not found." +msgstr "" + +#: ../../mod/mail.php:309 +msgid "Delete message" +msgstr "" + +#: ../../mod/mail.php:310 +msgid "Recall message" +msgstr "" + +#: ../../mod/mail.php:312 +msgid "Message has been recalled." +msgstr "" + +#: ../../mod/mail.php:329 +msgid "Private Conversation" +msgstr "" + +#: ../../mod/mail.php:333 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/mail.php:335 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/mail.php:339 +msgid "Send Reply" +msgstr "" + +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "" + +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "" + +#: ../../mod/photos.php:119 ../../mod/photos.php:672 +msgid "Delete Album" +msgstr "" + +#: ../../mod/photos.php:159 ../../mod/photos.php:958 +msgid "Delete Photo" +msgstr "" + +#: ../../mod/photos.php:469 +msgid "No photos selected" +msgstr "" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../mod/photos.php:552 #, php-format -msgid "OBJ: %1$s %2$s %3$s" +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../mod/thing.php:232 -msgid "Show Thing" +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../mod/thing.php:239 -msgid "item not found." +#: ../../mod/photos.php:579 +msgid "Upload Photos" msgstr "" -#: ../../mod/thing.php:270 -msgid "Edit Thing" +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 +msgid "Enter a new album name" msgstr "" -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" +#: ../../mod/photos.php:585 +msgid "Do not show a status post for this upload" msgstr "" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" +#: ../../mod/photos.php:613 +msgid "Album name could not be decoded" msgstr "" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" +#: ../../mod/photos.php:654 ../../mod/photos.php:1167 +#: ../../mod/photos.php:1183 +msgid "Contact Photos" msgstr "" -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" +#: ../../mod/photos.php:678 +msgid "Show Newest First" msgstr "" -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" +#: ../../mod/photos.php:680 +msgid "Show Oldest First" msgstr "" -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" +#: ../../mod/photos.php:707 ../../mod/photos.php:1215 +msgid "View Photo" msgstr "" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." +#: ../../mod/photos.php:736 +msgid "Edit Album" msgstr "" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." +#: ../../mod/photos.php:781 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" +#: ../../mod/photos.php:783 +msgid "Photo not available" msgstr "" -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" +#: ../../mod/photos.php:841 +msgid "Use as profile photo" msgstr "" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../mod/photos.php:848 +msgid "Private Photo" msgstr "" -#: ../../mod/lostpass.php:85 ../../boot.php:1537 -msgid "Password Reset" +#: ../../mod/photos.php:863 +msgid "View Full Size" msgstr "" -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." +#: ../../mod/photos.php:937 +msgid "Edit photo" msgstr "" -#: ../../mod/lostpass.php:87 -msgid "Your new password is" +#: ../../mod/photos.php:939 +msgid "Rotate CW (right)" msgstr "" -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" +#: ../../mod/photos.php:940 +msgid "Rotate CCW (left)" msgstr "" -#: ../../mod/lostpass.php:89 -msgid "click here to login" +#: ../../mod/photos.php:947 +msgid "Caption" msgstr "" -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../mod/photos.php:949 +msgid "Add a Tag" msgstr "" -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" +#: ../../mod/photos.php:953 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" +#: ../../mod/photos.php:956 +msgid "Flag as adult in album view" msgstr "" -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../mod/photos.php:1133 +msgid "In This Photo:" msgstr "" -#: ../../mod/lostpass.php:124 -msgid "Email Address" +#: ../../mod/photos.php:1221 +msgid "View Album" msgstr "" -#: ../../mod/lostpass.php:125 -msgid "Reset" +#: ../../mod/photos.php:1244 +msgid "Recent Photos" msgstr "" #: ../../mod/bookmarks.php:38 @@ -5946,443 +6128,487 @@ msgstr "" msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" msgstr "" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 -msgid "Profile not found." +#: ../../mod/acl.php:245 +msgid "network" msgstr "" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." +#: ../../mod/blocks.php:99 +msgid "Block Name" msgstr "" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" +#: ../../mod/editblock.php:115 +msgid "Edit Block" msgstr "" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." +#: ../../mod/editblock.php:125 +msgid "Delete block?" msgstr "" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." +#: ../../mod/editblock.php:183 +msgid "Delete Block" msgstr "" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." +#: ../../mod/pdledit.php:13 +msgid "Layout updated." msgstr "" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" msgstr "" -#: ../../mod/profiles.php:378 -msgid "Marital Status" +#: ../../mod/pdledit.php:48 +msgid "Layout not found." msgstr "" -#: ../../mod/profiles.php:382 -msgid "Romantic Partner" +#: ../../mod/pdledit.php:54 +msgid "Module Name:" msgstr "" -#: ../../mod/profiles.php:386 -msgid "Likes" +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" msgstr "" -#: ../../mod/profiles.php:390 -msgid "Dislikes" +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" msgstr "" -#: ../../mod/profiles.php:394 -msgid "Work/Employment" +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" msgstr "" -#: ../../mod/profiles.php:397 -msgid "Religion" +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" msgstr "" -#: ../../mod/profiles.php:401 -msgid "Political Views" +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" msgstr "" -#: ../../mod/profiles.php:405 -msgid "Gender" +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../mod/profiles.php:409 -msgid "Sexual Preference" +#: ../../mod/editwebpage.php:140 +msgid "Edit Webpage" msgstr "" -#: ../../mod/profiles.php:413 -msgid "Homepage" +#: ../../mod/editwebpage.php:150 +msgid "Delete webpage?" msgstr "" -#: ../../mod/profiles.php:417 -msgid "Interests" +#: ../../mod/editwebpage.php:215 +msgid "Delete Webpage" msgstr "" -#: ../../mod/profiles.php:421 ../../mod/admin.php:866 -msgid "Address" +#: ../../mod/impel.php:33 +msgid "webpage" msgstr "" -#: ../../mod/profiles.php:511 -msgid "Profile updated." +#: ../../mod/impel.php:38 +msgid "block" msgstr "" -#: ../../mod/profiles.php:590 -msgid "Hide your contact/friend list from viewers of this profile?" +#: ../../mod/impel.php:43 +msgid "layout" msgstr "" -#: ../../mod/profiles.php:632 -msgid "Edit Profile Details" +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../mod/profiles.php:634 -msgid "View this profile" +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../mod/profiles.php:636 -msgid "Change Profile Photo" +#: ../../mod/profile_photo.php:161 +msgid "Image resize failed." msgstr "" -#: ../../mod/profiles.php:637 -msgid "Create a new profile using these settings" +#: ../../mod/profile_photo.php:205 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../mod/profiles.php:638 -msgid "Clone this profile" +#: ../../mod/profile_photo.php:232 +#, php-format +msgid "Image exceeds size limit of %d" msgstr "" -#: ../../mod/profiles.php:639 -msgid "Delete this profile" +#: ../../mod/profile_photo.php:241 +msgid "Unable to process image." msgstr "" -#: ../../mod/profiles.php:641 -msgid "Import profile from file" +#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 +msgid "Photo not available." msgstr "" -#: ../../mod/profiles.php:642 -msgid "Export profile to file" +#: ../../mod/profile_photo.php:358 +msgid "Upload File:" msgstr "" -#: ../../mod/profiles.php:643 -msgid "Profile Name:" +#: ../../mod/profile_photo.php:359 +msgid "Select a profile:" msgstr "" -#: ../../mod/profiles.php:644 -msgid "Your Full Name:" +#: ../../mod/profile_photo.php:360 +msgid "Upload Profile Photo" msgstr "" -#: ../../mod/profiles.php:645 -msgid "Title/Description:" +#: ../../mod/profile_photo.php:365 +msgid "skip this step" msgstr "" -#: ../../mod/profiles.php:646 -msgid "Your Gender:" +#: ../../mod/profile_photo.php:365 +msgid "select a photo from your photo albums" msgstr "" -#: ../../mod/profiles.php:647 -msgid "Birthday :" +#: ../../mod/profile_photo.php:381 +msgid "Crop Image" msgstr "" -#: ../../mod/profiles.php:648 -msgid "Street Address:" +#: ../../mod/profile_photo.php:382 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../mod/profiles.php:649 -msgid "Locality/City:" +#: ../../mod/profile_photo.php:384 +msgid "Done Editing" msgstr "" -#: ../../mod/profiles.php:650 -msgid "Postal/Zip Code:" +#: ../../mod/profile_photo.php:427 +msgid "Image uploaded successfully." msgstr "" -#: ../../mod/profiles.php:651 -msgid "Country:" +#: ../../mod/profile_photo.php:429 +msgid "Image upload failed." msgstr "" -#: ../../mod/profiles.php:652 -msgid "Region/State:" +#: ../../mod/profile_photo.php:438 +#, php-format +msgid "Image size reduction [%s] failed." msgstr "" -#: ../../mod/profiles.php:653 -msgid " Marital Status:" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "" + +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "" + +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "" + +#: ../../mod/like.php:119 +msgid "thing" +msgstr "" + +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "" + +#: ../../mod/like.php:204 +msgid "Previous action reversed." msgstr "" -#: ../../mod/profiles.php:654 -msgid "Who: (if applicable)" +#: ../../mod/like.php:422 +msgid "Action completed." msgstr "" -#: ../../mod/profiles.php:655 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/like.php:423 +msgid "Thank you." msgstr "" -#: ../../mod/profiles.php:656 -msgid "Since [date]:" +#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 +msgid "Help:" msgstr "" -#: ../../mod/profiles.php:658 -msgid "Homepage URL:" +#: ../../mod/help.php:67 ../../index.php:238 +msgid "Not Found" msgstr "" -#: ../../mod/profiles.php:661 -msgid "Religious Views:" +#: ../../mod/thing.php:96 +msgid "Thing updated" msgstr "" -#: ../../mod/profiles.php:662 -msgid "Keywords:" +#: ../../mod/thing.php:156 +msgid "Object store: failed" msgstr "" -#: ../../mod/profiles.php:665 -msgid "Example: fishing photography software" +#: ../../mod/thing.php:160 +msgid "Thing added" msgstr "" -#: ../../mod/profiles.php:666 -msgid "Used in directory listings" +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../mod/profiles.php:667 -msgid "Tell us about yourself..." +#: ../../mod/thing.php:232 +msgid "Show Thing" msgstr "" -#: ../../mod/profiles.php:668 -msgid "Hobbies/Interests" +#: ../../mod/thing.php:239 +msgid "item not found." msgstr "" -#: ../../mod/profiles.php:669 -msgid "Contact information and Social Networks" +#: ../../mod/thing.php:270 +msgid "Edit Thing" msgstr "" -#: ../../mod/profiles.php:670 -msgid "My other channels" +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" msgstr "" -#: ../../mod/profiles.php:671 -msgid "Musical interests" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" msgstr "" -#: ../../mod/profiles.php:672 -msgid "Books, literature" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../mod/profiles.php:673 -msgid "Television" +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" msgstr "" -#: ../../mod/profiles.php:674 -msgid "Film/dance/culture/entertainment" +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" msgstr "" -#: ../../mod/profiles.php:675 -msgid "Love/romance" +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../mod/profiles.php:676 -msgid "Work/employment" +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" msgstr "" -#: ../../mod/profiles.php:677 -msgid "School/education" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." msgstr "" -#: ../../mod/profiles.php:683 -msgid "This is your default profile." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../mod/profiles.php:694 ../../mod/directory.php:188 -msgid "Age: " +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../mod/profiles.php:737 -msgid "Edit/Manage Profiles" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" msgstr "" -#: ../../mod/profiles.php:738 -msgid "Add profile things" +#: ../../mod/filestorage.php:76 +msgid "Permission Denied." msgstr "" -#: ../../mod/profiles.php:739 -msgid "Include desirable objects in your profile" +#: ../../mod/filestorage.php:92 +msgid "File not found." msgstr "" -#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 -#: ../../mod/editlayout.php:78 ../../mod/editpost.php:20 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" +#: ../../mod/filestorage.php:131 +msgid "Edit file permissions" msgstr "" -#: ../../mod/editblock.php:115 -msgid "Edit Block" +#: ../../mod/filestorage.php:140 +msgid "Set/edit permissions" msgstr "" -#: ../../mod/editblock.php:125 -msgid "Delete block?" +#: ../../mod/filestorage.php:141 +msgid "Include all files and sub folders" msgstr "" -#: ../../mod/editblock.php:147 ../../mod/editlayout.php:143 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" +#: ../../mod/filestorage.php:142 +msgid "Return to file list" msgstr "" -#: ../../mod/editblock.php:148 ../../mod/editlayout.php:144 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" +#: ../../mod/filestorage.php:144 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../mod/editblock.php:149 ../../mod/editlayout.php:145 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" +#: ../../mod/filestorage.php:145 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../mod/editblock.php:183 -msgid "Delete Block" +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" msgstr "" -#: ../../mod/pdledit.php:13 -msgid "Layout updated." +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" msgstr "" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../mod/pdledit.php:48 -msgid "Layout not found." +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../mod/pdledit.php:54 -msgid "Module Name:" +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" +#: ../../mod/filer.php:49 +msgid "- select -" msgstr "" -#: ../../mod/editpost.php:53 -msgid "Delete item?" +#: ../../mod/locs.php:19 ../../mod/locs.php:46 +msgid "Location not found." msgstr "" -#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 -msgid "Help:" +#: ../../mod/locs.php:50 +msgid "Primary location cannot be removed." msgstr "" -#: ../../mod/help.php:67 ../../index.php:238 -msgid "Not Found" +#: ../../mod/locs.php:82 +msgid "No locations found." msgstr "" -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" +#: ../../mod/locs.php:95 +msgid "Manage Channel Locations" msgstr "" -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" +#: ../../mod/locs.php:96 +msgid "Location (address)" msgstr "" -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" +#: ../../mod/locs.php:97 +msgid "Primary Location" msgstr "" -#: ../../mod/impel.php:33 -msgid "webpage" +#: ../../mod/locs.php:98 +msgid "Drop location" msgstr "" -#: ../../mod/impel.php:38 -msgid "block" +#: ../../mod/follow.php:25 +msgid "Channel added." msgstr "" -#: ../../mod/impel.php:43 -msgid "layout" +#: ../../mod/import.php:25 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" +#: ../../mod/import.php:51 +msgid "Nothing to import." msgstr "" -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" msgstr "" -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." +#: ../../mod/import.php:81 +msgid "Imported file is empty." msgstr "" -#: ../../mod/profile_photo.php:205 +#: ../../mod/import.php:106 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../mod/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" +#: ../../mod/import.php:127 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." +#: ../../mod/import.php:147 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." +#: ../../mod/import.php:157 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" +#: ../../mod/import.php:475 +msgid "Import completed." msgstr "" -#: ../../mod/profile_photo.php:359 -msgid "Select a profile:" +#: ../../mod/import.php:487 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" +#: ../../mod/import.php:492 +msgid "Import Channel" msgstr "" -#: ../../mod/profile_photo.php:365 -msgid "skip this step" +#: ../../mod/import.php:493 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file. Only identity and connections/relationships will be " +"imported. Importation of content is not yet available." msgstr "" -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" +#: ../../mod/import.php:494 +msgid "File to Upload" msgstr "" -#: ../../mod/profile_photo.php:381 -msgid "Crop Image" +#: ../../mod/import.php:495 +msgid "Or provide the old server/hub details" +msgstr "" + +#: ../../mod/import.php:496 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../mod/profile_photo.php:382 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../mod/import.php:497 +msgid "Your old login email address" msgstr "" -#: ../../mod/profile_photo.php:384 -msgid "Done Editing" +#: ../../mod/import.php:498 +msgid "Your old login password" msgstr "" -#: ../../mod/profile_photo.php:427 -msgid "Image uploaded successfully." +#: ../../mod/import.php:499 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../mod/profile_photo.php:429 -msgid "Image upload failed." +#: ../../mod/import.php:500 +msgid "Make this hub my primary location" msgstr "" -#: ../../mod/profile_photo.php:438 -#, php-format -msgid "Image size reduction [%s] failed." +#: ../../mod/import.php:501 +msgid "Import existing posts if possible" msgstr "" #: ../../mod/item.php:159 @@ -6411,254 +6637,280 @@ msgstr "" msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." +#: ../../mod/layouts.php:110 +msgid "Help with this feature" msgstr "" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" +#: ../../mod/layouts.php:130 +msgid "Layout Name" msgstr "" -#: ../../mod/fsuggest.php:99 +#: ../../mod/tagger.php:98 #, php-format -msgid "Suggest a friend for %s" +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/filestorage.php:76 -msgid "Permission Denied." +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 +msgid "Profile not found." msgstr "" -#: ../../mod/filestorage.php:92 -msgid "File not found." +#: ../../mod/profiles.php:38 +msgid "Profile deleted." msgstr "" -#: ../../mod/filestorage.php:131 -msgid "Edit file permissions" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" msgstr "" -#: ../../mod/filestorage.php:140 -msgid "Set/edit permissions" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." msgstr "" -#: ../../mod/filestorage.php:141 -msgid "Include all files and sub folders" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." msgstr "" -#: ../../mod/filestorage.php:142 -msgid "Return to file list" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." msgstr "" -#: ../../mod/filestorage.php:144 -msgid "Copy/paste this code to attach file to a post" +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." msgstr "" -#: ../../mod/filestorage.php:145 -msgid "Copy/paste this URL to link file from a web page" +#: ../../mod/profiles.php:378 +msgid "Marital Status" msgstr "" -#: ../../mod/acl.php:245 -msgid "network" +#: ../../mod/profiles.php:382 +msgid "Romantic Partner" msgstr "" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." +#: ../../mod/profiles.php:386 +msgid "Likes" msgstr "" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" +#: ../../mod/profiles.php:390 +msgid "Dislikes" msgstr "" -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." +#: ../../mod/profiles.php:394 +msgid "Work/Employment" msgstr "" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" +#: ../../mod/profiles.php:397 +msgid "Religion" msgstr "" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" +#: ../../mod/profiles.php:401 +msgid "Political Views" msgstr "" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" +#: ../../mod/profiles.php:405 +msgid "Gender" msgstr "" -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:905 -msgid "Remove" +#: ../../mod/profiles.php:409 +msgid "Sexual Preference" msgstr "" -#: ../../mod/delegate.php:131 -msgid "Add" +#: ../../mod/profiles.php:413 +msgid "Homepage" msgstr "" -#: ../../mod/delegate.php:132 -msgid "No entries." +#: ../../mod/profiles.php:417 +msgid "Interests" msgstr "" -#: ../../mod/follow.php:25 -msgid "Channel added." +#: ../../mod/profiles.php:421 ../../mod/admin.php:866 +msgid "Address" msgstr "" -#: ../../mod/group.php:20 -msgid "Collection created." +#: ../../mod/profiles.php:511 +msgid "Profile updated." msgstr "" -#: ../../mod/group.php:26 -msgid "Could not create collection." +#: ../../mod/profiles.php:590 +msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/group.php:54 -msgid "Collection updated." +#: ../../mod/profiles.php:632 +msgid "Edit Profile Details" msgstr "" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." +#: ../../mod/profiles.php:634 +msgid "View this profile" msgstr "" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " +#: ../../mod/profiles.php:636 +msgid "Change Profile Photo" msgstr "" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/group.php:107 -msgid "Collection removed." +#: ../../mod/profiles.php:638 +msgid "Clone this profile" msgstr "" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." +#: ../../mod/profiles.php:639 +msgid "Delete this profile" msgstr "" -#: ../../mod/group.php:182 -msgid "Collection Editor" +#: ../../mod/profiles.php:641 +msgid "Import profile from file" msgstr "" -#: ../../mod/group.php:196 -msgid "Members" +#: ../../mod/profiles.php:642 +msgid "Export profile to file" msgstr "" -#: ../../mod/group.php:198 -msgid "All Connected Channels" +#: ../../mod/profiles.php:643 +msgid "Profile Name:" msgstr "" -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." +#: ../../mod/profiles.php:644 +msgid "Your Full Name:" msgstr "" -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" +#: ../../mod/profiles.php:645 +msgid "Title/Description:" msgstr "" -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" +#: ../../mod/profiles.php:646 +msgid "Your Gender:" msgstr "" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../mod/profiles.php:647 +msgid "Birthday :" msgstr "" -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../mod/profiles.php:648 +msgid "Street Address:" msgstr "" -#: ../../mod/import.php:51 -msgid "Nothing to import." +#: ../../mod/profiles.php:649 +msgid "Locality/City:" msgstr "" -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" +#: ../../mod/profiles.php:650 +msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/import.php:81 -msgid "Imported file is empty." +#: ../../mod/profiles.php:651 +msgid "Country:" msgstr "" -#: ../../mod/import.php:105 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../mod/profiles.php:652 +msgid "Region/State:" msgstr "" -#: ../../mod/import.php:123 -msgid "Channel clone failed. Import failed." +#: ../../mod/profiles.php:653 +msgid " Marital Status:" msgstr "" -#: ../../mod/import.php:133 -msgid "Cloned channel not found. Import failed." +#: ../../mod/profiles.php:654 +msgid "Who: (if applicable)" msgstr "" -#: ../../mod/import.php:451 -msgid "Import completed." +#: ../../mod/profiles.php:655 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../mod/import.php:463 -msgid "You must be logged in to use this feature." +#: ../../mod/profiles.php:656 +msgid "Since [date]:" msgstr "" -#: ../../mod/import.php:468 -msgid "Import Channel" +#: ../../mod/profiles.php:658 +msgid "Homepage URL:" +msgstr "" + +#: ../../mod/profiles.php:661 +msgid "Religious Views:" +msgstr "" + +#: ../../mod/profiles.php:662 +msgid "Keywords:" +msgstr "" + +#: ../../mod/profiles.php:665 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../mod/profiles.php:666 +msgid "Used in directory listings" +msgstr "" + +#: ../../mod/profiles.php:667 +msgid "Tell us about yourself..." +msgstr "" + +#: ../../mod/profiles.php:668 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../mod/profiles.php:669 +msgid "Contact information and Social Networks" +msgstr "" + +#: ../../mod/profiles.php:670 +msgid "My other channels" +msgstr "" + +#: ../../mod/profiles.php:671 +msgid "Musical interests" +msgstr "" + +#: ../../mod/profiles.php:672 +msgid "Books, literature" msgstr "" -#: ../../mod/import.php:469 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file. Only identity and connections/relationships will be " -"imported. Importation of content is not yet available." +#: ../../mod/profiles.php:673 +msgid "Television" msgstr "" -#: ../../mod/import.php:470 -msgid "File to Upload" +#: ../../mod/profiles.php:674 +msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/import.php:471 -msgid "Or provide the old server/hub details" +#: ../../mod/profiles.php:675 +msgid "Love/romance" msgstr "" -#: ../../mod/import.php:472 -msgid "Your old identity address (xyz@example.com)" +#: ../../mod/profiles.php:676 +msgid "Work/employment" msgstr "" -#: ../../mod/import.php:473 -msgid "Your old login email address" +#: ../../mod/profiles.php:677 +msgid "School/education" msgstr "" -#: ../../mod/import.php:474 -msgid "Your old login password" +#: ../../mod/profiles.php:683 +msgid "This is your default profile." msgstr "" -#: ../../mod/import.php:475 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." +#: ../../mod/profiles.php:694 ../../mod/directory.php:188 +msgid "Age: " msgstr "" -#: ../../mod/import.php:476 -msgid "Make this hub my primary location" +#: ../../mod/profiles.php:737 +msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/import.php:477 -msgid "Import existing posts if possible" +#: ../../mod/profiles.php:738 +msgid "Add profile things" msgstr "" -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../mod/profiles.php:739 +msgid "Include desirable objects in your profile" msgstr "" #: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 @@ -7313,110 +7565,117 @@ msgstr "" msgid "Edit Profile Field" msgstr "" -#: ../../mod/locs.php:19 ../../mod/locs.php:46 -msgid "Location not found." +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../mod/locs.php:50 -msgid "Primary location cannot be removed." +#: ../../mod/manage.php:144 +msgid "Create a new channel" msgstr "" -#: ../../mod/locs.php:82 -msgid "No locations found." +#: ../../mod/manage.php:149 +msgid "Current Channel" msgstr "" -#: ../../mod/locs.php:95 -msgid "Manage Channel Locations" +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." msgstr "" -#: ../../mod/locs.php:96 -msgid "Location (address)" +#: ../../mod/manage.php:152 +msgid "Default Channel" msgstr "" -#: ../../mod/locs.php:97 -msgid "Primary Location" +#: ../../mod/manage.php:153 +msgid "Make Default" msgstr "" -#: ../../mod/locs.php:98 -msgid "Drop location" +#: ../../mod/menu.php:31 +msgid "Menu updated." msgstr "" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." +#: ../../mod/menu.php:35 +msgid "Unable to update menu." msgstr "" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." +#: ../../mod/menu.php:40 +msgid "Menu created." msgstr "" -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." +#: ../../mod/menu.php:44 +msgid "Unable to create menu." msgstr "" -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../mod/menu.php:76 +msgid "Manage Menus" msgstr "" -#: ../../mod/mail.php:136 -msgid "Message deleted." +#: ../../mod/menu.php:79 +msgid "Drop" msgstr "" -#: ../../mod/mail.php:153 -msgid "Message recalled." +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" msgstr "" -#: ../../mod/mail.php:222 -msgid "Send Private Message" +#: ../../mod/menu.php:82 +msgid "Create a new menu" msgstr "" -#: ../../mod/mail.php:223 ../../mod/mail.php:340 -msgid "To:" +#: ../../mod/menu.php:83 +msgid "Delete this menu" msgstr "" -#: ../../mod/mail.php:228 ../../mod/mail.php:342 -msgid "Subject:" +#: ../../mod/menu.php:84 ../../mod/menu.php:125 +msgid "Edit menu contents" msgstr "" -#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 -msgid "Your message:" +#: ../../mod/menu.php:85 +msgid "Edit this menu" msgstr "" -#: ../../mod/mail.php:239 -msgid "Send" +#: ../../mod/menu.php:96 +msgid "New Menu" msgstr "" -#: ../../mod/mail.php:266 -msgid "Message not found." +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Menu name" msgstr "" -#: ../../mod/mail.php:309 -msgid "Delete message" +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../mod/mail.php:310 -msgid "Recall message" +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title" msgstr "" -#: ../../mod/mail.php:312 -msgid "Message has been recalled." +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title as seen by others" msgstr "" -#: ../../mod/mail.php:329 -msgid "Private Conversation" +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Allow bookmarks" msgstr "" -#: ../../mod/mail.php:333 ../../mod/message.php:72 -msgid "Delete conversation" +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../mod/mail.php:335 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: ../../mod/menu.php:114 +msgid "Menu deleted." msgstr "" -#: ../../mod/mail.php:339 -msgid "Send Reply" +#: ../../mod/menu.php:116 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../mod/menu.php:122 +msgid "Edit Menu" +msgstr "" + +#: ../../mod/menu.php:124 +msgid "Add or remove entries to this menu" msgstr "" #: ../../mod/invite.php:25 @@ -7484,208 +7743,112 @@ msgstr "" msgid "3. Click [Connect]" msgstr "" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "" - -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "" - -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "" - -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" -msgstr "" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "" - -#: ../../mod/network.php:81 +#: ../../mod/network.php:84 msgid "No such group" msgstr "" -#: ../../mod/network.php:119 +#: ../../mod/network.php:122 msgid "Search Results For:" msgstr "" -#: ../../mod/network.php:173 +#: ../../mod/network.php:176 msgid "Collection is empty" msgstr "" -#: ../../mod/network.php:181 -msgid "Collection: " -msgstr "" - -#: ../../mod/network.php:194 -msgid "Connection: " -msgstr "" - -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "" - -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "" - -#: ../../mod/match.php:69 -msgid "No matches" +#: ../../mod/network.php:184 +msgid "Collection: " msgstr "" -#: ../../mod/menu.php:31 -msgid "Menu updated." +#: ../../mod/network.php:197 +msgid "Connection: " msgstr "" -#: ../../mod/menu.php:35 -msgid "Unable to update menu." +#: ../../mod/network.php:200 +msgid "Invalid connection." msgstr "" -#: ../../mod/menu.php:40 -msgid "Menu created." +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." msgstr "" -#: ../../mod/menu.php:44 -msgid "Unable to create menu." +#: ../../mod/notifications.php:35 +msgid "Discard" msgstr "" -#: ../../mod/menu.php:76 -msgid "Manage Menus" +#: ../../mod/notifications.php:94 ../../mod/notify.php:53 +msgid "No more system notifications." msgstr "" -#: ../../mod/menu.php:79 -msgid "Drop" +#: ../../mod/notifications.php:98 ../../mod/notify.php:57 +msgid "System Notifications" msgstr "" -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +#: ../../mod/update_home.php:21 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../mod/menu.php:82 -msgid "Create a new menu" +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." msgstr "" -#: ../../mod/menu.php:83 -msgid "Delete this menu" +#: ../../mod/lockview.php:52 +msgid "Visible to:" msgstr "" -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" +#: ../../mod/viewconnections.php:58 +msgid "No connections." msgstr "" -#: ../../mod/menu.php:85 -msgid "Edit this menu" +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../mod/menu.php:96 -msgid "New Menu" +#: ../../mod/viewconnections.php:86 +msgid "View Connnections" msgstr "" -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" +#: ../../mod/magic.php:70 +msgid "Hub not found." msgstr "" -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" +#: ../../mod/vote.php:97 +msgid "Total votes" msgstr "" -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" +#: ../../mod/vote.php:98 +msgid "Average Rating" msgstr "" -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" +#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:261 +#, php-format +msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Menu may be used to store saved bookmarks" +#: ../../mod/wall_upload.php:35 +msgid "Wall Photos" msgstr "" -#: ../../mod/menu.php:114 -msgid "Menu deleted." +#: ../../mod/match.php:16 +msgid "Profile Match" msgstr "" -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../mod/menu.php:122 -msgid "Edit Menu" +#: ../../mod/match.php:61 +msgid "is interested in:" msgstr "" -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" +#: ../../mod/match.php:69 +msgid "No matches" msgstr "" #: ../../mod/message.php:41 @@ -7743,22 +7906,6 @@ msgid "" "and privacy requirements so we can select the best permissions for you" msgstr "" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "" - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "" - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "" - #: ../../mod/xchan.php:6 msgid "Xchan Lookup" msgstr "" @@ -7807,167 +7954,26 @@ msgstr "" msgid "Keywords: " msgstr "" -#: ../../mod/directory.php:317 +#: ../../mod/directory.php:318 msgid "Finding:" msgstr "" -#: ../../mod/directory.php:322 +#: ../../mod/directory.php:323 msgid "next page" msgstr "" -#: ../../mod/directory.php:322 +#: ../../mod/directory.php:323 msgid "previous page" msgstr "" -#: ../../mod/directory.php:339 +#: ../../mod/directory.php:340 msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "" - -#: ../../mod/photos.php:119 ../../mod/photos.php:672 -msgid "Delete Album" -msgstr "" - -#: ../../mod/photos.php:159 ../../mod/photos.php:958 -msgid "Delete Photo" -msgstr "" - -#: ../../mod/photos.php:469 -msgid "No photos selected" -msgstr "" - -#: ../../mod/photos.php:513 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../mod/photos.php:552 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:555 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:579 -msgid "Upload Photos" -msgstr "" - -#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 -msgid "Enter a new album name" -msgstr "" - -#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../mod/photos.php:585 -msgid "Do not show a status post for this upload" -msgstr "" - -#: ../../mod/photos.php:613 -msgid "Album name could not be decoded" -msgstr "" - -#: ../../mod/photos.php:654 ../../mod/photos.php:1167 -#: ../../mod/photos.php:1183 -msgid "Contact Photos" -msgstr "" - -#: ../../mod/photos.php:678 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:680 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:707 ../../mod/photos.php:1215 -msgid "View Photo" -msgstr "" - -#: ../../mod/photos.php:736 -msgid "Edit Album" -msgstr "" - -#: ../../mod/photos.php:781 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:783 -msgid "Photo not available" -msgstr "" - -#: ../../mod/photos.php:841 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:848 -msgid "Private Photo" -msgstr "" - -#: ../../mod/photos.php:863 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:937 -msgid "Edit photo" -msgstr "" - -#: ../../mod/photos.php:939 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:940 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:947 -msgid "Caption" -msgstr "" - -#: ../../mod/photos.php:949 -msgid "Add a Tag" -msgstr "" - -#: ../../mod/photos.php:953 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../mod/photos.php:956 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../mod/photos.php:1133 -msgid "In This Photo:" -msgstr "" - -#: ../../mod/photos.php:1221 -msgid "View Album" -msgstr "" - -#: ../../mod/photos.php:1244 -msgid "Recent Photos" -msgstr "" - -#: ../../mod/ping.php:265 -msgid "sent you a private message" -msgstr "" - -#: ../../mod/ping.php:316 -msgid "added your channel" -msgstr "" - -#: ../../mod/ping.php:357 -msgid "posted an event" +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." msgstr "" #: ../../mod/appman.php:28 ../../mod/appman.php:44 @@ -8326,41 +8332,41 @@ msgstr "" msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../boot.php:1336 +#: ../../boot.php:1345 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1339 +#: ../../boot.php:1348 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1506 +#: ../../boot.php:1515 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../boot.php:1532 +#: ../../boot.php:1543 msgid "Password" msgstr "" -#: ../../boot.php:1533 +#: ../../boot.php:1544 msgid "Remember me" msgstr "" -#: ../../boot.php:1536 +#: ../../boot.php:1547 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1617 +#: ../../boot.php:1628 msgid "permission denied" msgstr "" -#: ../../boot.php:1618 +#: ../../boot.php:1629 msgid "Got Zot?" msgstr "" -#: ../../boot.php:2101 +#: ../../boot.php:2112 msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index faff20925..36c84983c 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-12-18.893 +2014-12-19.894 -- cgit v1.2.3 From 6d8214f96bfc8b981fae7c0ffe0cba68206dd86b Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 19 Dec 2014 01:48:47 -0800 Subject: provide link to help for channel permission roles when creating a channel --- mod/new_channel.php | 2 ++ view/css/mod_new_channel.css | 4 ++++ view/tpl/new_channel.tpl | 1 + 3 files changed, 7 insertions(+) diff --git a/mod/new_channel.php b/mod/new_channel.php index 8329f0ec3..185fc7c28 100644 --- a/mod/new_channel.php +++ b/mod/new_channel.php @@ -116,6 +116,8 @@ function new_channel_content(&$a) { '$label_import' => t('Or import an existing channel from another location'), '$name' => $name, '$label_role' => t('Channel Type'), + '$questionmark' => t('?'), + '$what_is_role' => t('What is this?'), '$help_role' => t('Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you'), '$role_select' => role_selector(($privacy_role) ? $privacy_role : 'social'), '$nickname' => $nickname, diff --git a/view/css/mod_new_channel.css b/view/css/mod_new_channel.css index 068f4f3a5..397601635 100644 --- a/view/css/mod_new_channel.css +++ b/view/css/mod_new_channel.css @@ -22,6 +22,10 @@ h2 { width: 275px; } +.newchannel-role-morehelp { + float: left; + width: 32px; +} .newchannel-input { float: left; width: 275px; diff --git a/view/tpl/new_channel.tpl b/view/tpl/new_channel.tpl index ee07ce1df..241846eb4 100755 --- a/view/tpl/new_channel.tpl +++ b/view/tpl/new_channel.tpl @@ -8,6 +8,7 @@ {{$role_select}} +
        -- cgit v1.2.3