From abcc70722c3577e63b53fcd3acf19d2916d810df Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 5 Feb 2015 19:37:55 -0800 Subject: [PATCH 01/13] event form cleanup backported from trinidad - still need to style the checkboxes --- include/datetime.php | 3 ++- mod/events.php | 7 ++++--- view/css/mod_events.css | 31 +++++++++++++++++++++++++++---- view/tpl/event_form.tpl | 5 ++++- 4 files changed, 37 insertions(+), 9 deletions(-) diff --git a/include/datetime.php b/include/datetime.php index 346d03bd4..a387d84c4 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -174,7 +174,7 @@ function timesel($format, $h, $m, $id='timepicker') { * @param $maxfrom * set maximum date from picker with id $maxfrom (none by default) */ -function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pickdate = true, $picktime = true, $minfrom = '', $maxfrom = '') { +function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pickdate = true, $picktime = true, $minfrom = '', $maxfrom = '',$required = false) { // Once browser support is better this could probably be replaced with native HTML5 date picker $o = ''; @@ -209,6 +209,7 @@ function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pic $readable_format = str_replace('i','MM',$readable_format); $o .= "
"; + $o .= (($required) ? '*' : ''); $o .= '
'; $o .= ""; return $o; diff --git a/mod/events.php b/mod/events.php index 9347331d8..7143963f4 100755 --- a/mod/events.php +++ b/mod/events.php @@ -577,12 +577,13 @@ function events_content(&$a) { '$catsenabled' => $catsenabled, '$placeholdercategory' => t('Categories (comma-separated list)'), '$category' => $category, - '$s_text' => t('Event Starts:') . ' *', + '$s_text' => t('Event Starts:'), '$stext' => $stext, '$ftext' => $ftext, + '$required' => ' *', '$ModalCANCEL' => t('Cancel'), '$ModalOK' => t('OK'), - '$s_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$syear+5),DateTime::createFromFormat('Y-m-d H:i',"$syear-$smonth-$sday $shour:$sminute"),'start_text'), + '$s_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$syear+5),DateTime::createFromFormat('Y-m-d H:i',"$syear-$smonth-$sday $shour:$sminute"),'start_text',true,true,'','',true), '$n_text' => t('Finish date/time is not known or not relevant'), '$n_checked' => $n_checked, '$f_text' => t('Event Finishes:'), @@ -593,7 +594,7 @@ function events_content(&$a) { '$d_orig' => $d_orig, '$l_text' => t('Location:'), '$l_orig' => $l_orig, - '$t_text' => t('Title:') . ' *', + '$t_text' => t('Title:'), '$t_orig' => $t_orig, '$sh_text' => t('Share this event'), '$sh_checked' => $sh_checked, diff --git a/view/css/mod_events.css b/view/css/mod_events.css index ba4ec9b61..a029440cb 100644 --- a/view/css/mod_events.css +++ b/view/css/mod_events.css @@ -1,12 +1,35 @@ + #event-desc-textarea, #event-location-textarea { - width: 400px; + width: 400px; } -#event-summary { - width: 400px; +#event-summary-text, #event-start-text, #event-finish-text { + width: 200px; + float: left; +} + +#event-summary, #start_text, #finish_text { + width: 300px; + float: left; +} + +#event-category-wrap { + margin-top: 15px; } .event-cats { margin-top: 15px; - width: 400px; + width: 400px; +} + + +.required { + float: left; +} + +#event-datetime-break { + clear: both; +} +#event-nofinish-break { + margin-bottom: 10px; } diff --git a/view/tpl/event_form.tpl b/view/tpl/event_form.tpl index 2479068f3..1cea156dd 100755 --- a/view/tpl/event_form.tpl +++ b/view/tpl/event_form.tpl @@ -14,9 +14,12 @@
{{$t_text}}
- +{{$required}} + +
{{$s_text}}
+ {{$s_dsel}}

From e7a68eaef002a9263d20076bcbe6b4c93378255f Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 5 Feb 2015 21:01:02 -0800 Subject: [PATCH 02/13] style the checkboxes in the event form --- mod/events.php | 2 +- view/js/mod_events.js | 2 +- view/tpl/event_form.tpl | 10 +++++++--- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/mod/events.php b/mod/events.php index 7143963f4..233447cb1 100755 --- a/mod/events.php +++ b/mod/events.php @@ -588,8 +588,8 @@ function events_content(&$a) { '$n_checked' => $n_checked, '$f_text' => t('Event Finishes:'), '$f_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$fyear+5),DateTime::createFromFormat('Y-m-d H:i',"$fyear-$fmonth-$fday $fhour:$fminute"),'finish_text',true,true,'start_text'), + '$adjust' => array('adjust', t('Adjust for viewer timezone'), $a_checked), '$a_text' => t('Adjust for viewer timezone'), - '$a_checked' => $a_checked, '$d_text' => t('Description:'), '$d_orig' => $d_orig, '$l_text' => t('Location:'), diff --git a/view/js/mod_events.js b/view/js/mod_events.js index 0ce128fcc..d4dc9b585 100644 --- a/view/js/mod_events.js +++ b/view/js/mod_events.js @@ -2,7 +2,7 @@ $(document).ready( function() { showHideFinishDate(); }); function showHideFinishDate() { - if( $('#event-nofinish-checkbox').is(':checked')) + if( $('#id_nofinish').is(':checked')) $('#event-finish-wrapper').hide(); else $('#event-finish-wrapper').show(); diff --git a/view/tpl/event_form.tpl b/view/tpl/event_form.tpl index 1cea156dd..444e77df7 100755 --- a/view/tpl/event_form.tpl +++ b/view/tpl/event_form.tpl @@ -24,7 +24,12 @@

-
{{$n_text}}
+
+ +
+
+
@@ -35,8 +40,7 @@
- -
{{$a_text}}
+{{include file="field_checkbox.tpl" field=$adjust}}
From ed050e8ede9eb4a6f5b45d06a8385026db93106e Mon Sep 17 00:00:00 2001 From: marijus Date: Fri, 6 Feb 2015 10:40:55 +0100 Subject: [PATCH 03/13] fix objurl until get_rel_link() gets sorted --- mod/sharedwithme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/sharedwithme.php b/mod/sharedwithme.php index d91987027..3c03b7412 100644 --- a/mod/sharedwithme.php +++ b/mod/sharedwithme.php @@ -83,7 +83,7 @@ function sharedwithme_content(&$a) { $item['id'] = $rr['id']; $item['objfiletype'] = $object['filetype']; $item['objfiletypeclass'] = getIconFromType($object['filetype']); - $item['objurl'] = rawurldecode(get_rel_link($object['link'],'alternate')) . '?f=&zid=' . $channel['xchan_addr']; + $item['objurl'] = rawurldecode($object['link'][0]['href']) . '?f=&zid=' . $channel['xchan_addr']; $item['objfilename'] = $object['filename']; $item['objfilesize'] = userReadableSize($object['filesize']); $item['objedited'] = $object['edited']; From 7edab476587715f5c3219048c06c0afd9e8936dc Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 6 Feb 2015 02:07:10 -0800 Subject: [PATCH 04/13] get_rel_link broken - also weekly doc updates --- doc/html/Contact_8php.html | 2 + doc/html/apw_2php_2style_8php.html | 2 +- doc/html/boot_8php.html | 65 +- doc/html/boot_8php.js | 1 + doc/html/cli__startup_8php.html | 2 +- doc/html/crypto_8php.html | 4 +- doc/html/datetime_8php.html | 16 +- doc/html/datetime_8php.js | 2 +- doc/html/dba__driver_8php.html | 6 +- doc/html/diaspora_8php.html | 54 +- doc/html/diaspora_8php.js | 4 +- doc/html/dir__fns_8php.html | 2 +- .../dir_d41ce877eb409a4791b288730010abe2.html | 10 +- .../dir_d41ce877eb409a4791b288730010abe2.js | 5 +- .../dir_d44c64559bbebec7f509842c48db8b23.html | 2 + .../dir_d44c64559bbebec7f509842c48db8b23.js | 1 + doc/html/extract_8php.html | 2 +- doc/html/files.html | 156 +- doc/html/fixd_8php.html | 2 +- doc/html/globals_0x64.html | 6 +- doc/html/globals_0x67.html | 3 + doc/html/globals_0x69.html | 3 + doc/html/globals_0x70.html | 9 +- doc/html/globals_0x72.html | 27 + doc/html/globals_0x77.html | 3 + doc/html/globals_func_0x64.html | 6 +- doc/html/globals_func_0x67.html | 3 + doc/html/globals_func_0x69.html | 3 + doc/html/globals_func_0x70.html | 9 +- doc/html/globals_func_0x72.html | 27 + doc/html/globals_func_0x77.html | 3 + doc/html/identity_8php.html | 2 +- doc/html/include_2attach_8php.html | 68 + doc/html/include_2attach_8php.js | 2 + doc/html/include_2config_8php.html | 2 +- doc/html/include_2network_8php.html | 6 +- doc/html/language_8php.html | 4 +- doc/html/navtree.js | 18 +- doc/html/navtreeindex0.js | 186 +- doc/html/navtreeindex1.js | 434 +-- doc/html/navtreeindex2.js | 4 +- doc/html/navtreeindex3.js | 4 +- doc/html/navtreeindex4.js | 10 +- doc/html/navtreeindex5.js | 6 +- doc/html/navtreeindex6.js | 14 +- doc/html/navtreeindex7.js | 40 +- doc/html/navtreeindex8.js | 412 +-- doc/html/navtreeindex9.js | 407 +-- doc/html/permissions_8php.html | 2 +- doc/html/php_2theme__init_8php.html | 2 +- doc/html/plugin_8php.html | 4 +- doc/html/prate_8php.html | 18 + doc/html/prate_8php.js | 1 + doc/html/search/all_64.js | 6 +- doc/html/search/all_67.js | 1 + doc/html/search/all_69.js | 1 + doc/html/search/all_70.js | 6 +- doc/html/search/all_72.js | 14 + doc/html/search/all_77.js | 1 + doc/html/search/files_70.js | 1 - doc/html/search/files_72.js | 5 + doc/html/search/functions_64.js | 6 +- doc/html/search/functions_67.js | 1 + doc/html/search/functions_69.js | 1 + doc/html/search/functions_70.js | 3 +- doc/html/search/functions_72.js | 9 + doc/html/search/functions_77.js | 1 + doc/html/text_8php.html | 20 +- doc/html/typo_8php.html | 2 +- doc/html/widgets_8php.html | 20 + doc/html/widgets_8php.js | 1 + doc/html/zot_8php.html | 8 +- include/text.php | 2 +- util/messages.po | 2914 +++++++++-------- version.inc | 2 +- 75 files changed, 2701 insertions(+), 2410 deletions(-) diff --git a/doc/html/Contact_8php.html b/doc/html/Contact_8php.html index c65ecda8f..403e2b3b7 100644 --- a/doc/html/Contact_8php.html +++ b/doc/html/Contact_8php.html @@ -300,6 +300,8 @@ Functions
+

Referenced by ratenotif_run().

+
diff --git a/doc/html/apw_2php_2style_8php.html b/doc/html/apw_2php_2style_8php.html index 83edeb061..5c24d39c1 100644 --- a/doc/html/apw_2php_2style_8php.html +++ b/doc/html/apw_2php_2style_8php.html @@ -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_upstream_directory(), 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(), dav_init(), 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_file_activity_object(), 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(), help_content(), 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(), item_store(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), linkify_tags(), 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(), prate_post(), preg_heart(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), random_profile(), 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(), search_content(), send_status_notifications(), service_limits_content(), set_linkified_perms(), share_init(), share_unshield(), sharedwithme_content(), 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_upstream_directory(), 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(), dav_init(), 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_primary(), get_directory_realm(), get_file_activity_object(), 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(), help_content(), 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(), in_group(), invite_content(), invite_post(), item_post(), item_remove_cid(), item_store(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), linkify_tags(), 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(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), random_profile(), randprof_init(), ratenotif_run(), ratings_init(), recursive_activity_recipients(), red_item_new(), RedCollectionData(), RedFileData(), reflect_comment_store(), reflect_find_user(), reflect_photo_callback(), regdir_init(), remote_online_status(), remove_community_tag(), remove_obsolete_hublocs(), rpost_content(), photo_driver\save(), scrape_feed(), scrape_vcard(), search_ac_init(), search_content(), send_status_notifications(), service_limits_content(), set_linkified_perms(), share_init(), share_unshield(), sharedwithme_content(), 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/boot_8php.html b/doc/html/boot_8php.html index f8f5b6bbe..b88b87dbb 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -230,6 +230,9 @@ Functions  get_directory_realm ()  Return the Realm of the directory. More...
  + get_directory_primary () + Return the primary directory server. More...
+   get_poller_runtime ()  return relative date of last completed poller execution More...
  @@ -246,7 +249,7 @@ Variables   const ZOT_REVISION 1   -const DB_UPDATE_VERSION 1135 +const DB_UPDATE_VERSION 1136   const EOL '<br>' . "\r\n"   @@ -858,7 +861,7 @@ Variables
-

Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), apps_content(), attach_init(), block_content(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dav_init(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), hcard_init(), help_content(), home_content(), home_init(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco(), prep_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), rbmark_content(), receive_post(), register_init(), regmod_content(), regver_content(), rpost_content(), settings_init(), settings_post(), setup_init(), share_init(), sharedwithme_content(), sources_content(), starred_init(), subthread_content(), tagger_content(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_init(), xref_init(), and zotfeed_init().

+

Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), apps_content(), attach_init(), block_content(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dav_init(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), hcard_init(), help_content(), home_content(), home_init(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), ratings_init(), ratingsearch_init(), rbmark_content(), receive_post(), register_init(), regmod_content(), regver_content(), rpost_content(), settings_init(), settings_post(), setup_init(), share_init(), sharedwithme_content(), sources_content(), starred_init(), subthread_content(), tagger_content(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_init(), xref_init(), and zotfeed_init().

@@ -876,7 +879,7 @@ Variables
-

Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), apps_content(), attach_init(), block_content(), block_init(), blocks_content(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dav_init(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), get_online_status(), group_content(), group_post(), hcard_init(), help_content(), home_content(), home_init(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco(), prep_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), rbmark_content(), receive_post(), register_init(), regmod_content(), regver_content(), rpost_content(), settings_post(), setup_init(), share_init(), sharedwithme_content(), sources_content(), starred_init(), subthread_content(), tagger_content(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), webpages_init(), widget_collections(), widget_mailmenu(), widget_settings_menu(), xref_init(), and zotfeed_init().

+

Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), apps_content(), attach_init(), block_content(), block_init(), blocks_content(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dav_init(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), get_online_status(), group_content(), group_post(), hcard_init(), help_content(), home_content(), home_init(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco(), prate_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), ratings_init(), ratingsearch_init(), rbmark_content(), receive_post(), register_init(), regmod_content(), regver_content(), rpost_content(), settings_post(), setup_init(), share_init(), sharedwithme_content(), sources_content(), starred_init(), subthread_content(), tagger_content(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), webpages_init(), widget_collections(), widget_mailmenu(), widget_settings_menu(), xref_init(), and zotfeed_init().

@@ -1125,7 +1128,7 @@ Variables

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

Returns
App
-

Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), RedMatrix\RedDAV\RedDirectory\__construct(), abook_toggle_flag(), account_remove(), account_service_class_allows(), 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(), RedMatrix\RedDAV\RedDirectory\childExists(), 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(), file_activity(), 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(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), 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(), list_smilies(), 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().

+

Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), RedMatrix\RedDAV\RedDirectory\__construct(), abook_toggle_flag(), account_remove(), account_service_class_allows(), 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(), RedMatrix\RedDAV\RedDirectory\childExists(), 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(), file_activity(), 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(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), 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(), list_smilies(), 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(), ratenotif_run(), recursive_activity_recipients(), 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_rating(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

@@ -1167,6 +1170,26 @@ Variables

Referenced by construct_page().

+ + + +
+
+ + + + + + + +
get_directory_primary ()
+
+ +

Return the primary directory server.

+
Returns
string
+ +

Referenced by poller_run(), ratenotif_run(), and zfinger_init().

+
@@ -1185,7 +1208,7 @@ Variables

Return the Realm of the directory.

Returns
string
-

Referenced by import_xchan(), list_public_sites(), sitelist_init(), sync_directories(), and zfinger_init().

+

Referenced by import_xchan(), list_public_sites(), poller_run(), regdir_init(), sitelist_init(), sync_directories(), and zfinger_init().

@@ -1434,7 +1457,7 @@ Variables

Used to end the current process, after saving session state.

-

Referenced by FriendicaSmartyEngine\__construct(), acl_init(), admin_content(), api_content(), api_ff_ids(), api_friendica_version(), api_oauth_access_token(), api_oauth_request_token(), api_statusnet_version(), attach_init(), bookmarks_init(), check_form_security_token_ForbiddenOnErr(), cloud_init(), connections_content(), contactgroup_content(), dav_init(), directory_content(), events_content(), fbrowser_content(), feed_init(), filer_content(), filerm_content(), filestorage_content(), goaway(), hostxrd_init(), http_status_exit(), hub_post_return(), hub_return(), importelm_post(), item_post(), json_return_and_die(), layouts_content(), like_content(), lockview_content(), msearch_post(), netgrowth_content(), network_content(), oembed_init(), oexchange_init(), opensearch_init(), p_init(), parse_url_content(), photo_init(), photos_content(), photos_post(), php_init(), ping_init(), poco(), poll_content(), poller_run(), pretheme_init(), profiles_init(), pubsubhubbub_init(), App\register_template_engine(), regmod_content(), regver_content(), search_ac_init(), setup_init(), setup_post(), share_init(), sitelist_init(), sslify_init(), starred_init(), subthread_content(), system_unavailable(), tagger_content(), App\template_engine(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), view_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), wfinger_init(), xml_status(), and xrd_init().

+

Referenced by FriendicaSmartyEngine\__construct(), acl_init(), admin_content(), api_content(), api_ff_ids(), api_friendica_version(), api_oauth_access_token(), api_oauth_request_token(), api_statusnet_version(), attach_init(), bookmarks_init(), check_form_security_token_ForbiddenOnErr(), cloud_init(), connections_content(), contactgroup_content(), dav_init(), directory_content(), events_content(), fbrowser_content(), feed_init(), filer_content(), filerm_content(), filestorage_content(), goaway(), hostxrd_init(), http_status_exit(), hub_post_return(), hub_return(), importelm_post(), item_post(), json_return_and_die(), layouts_content(), like_content(), lockview_content(), msearch_post(), netgrowth_content(), network_content(), oembed_init(), oexchange_init(), opensearch_init(), p_init(), parse_url_content(), photo_init(), photos_content(), photos_post(), php_init(), ping_init(), poco(), poll_content(), poller_run(), prate_init(), pretheme_init(), profiles_init(), pubsubhubbub_init(), App\register_template_engine(), regmod_content(), regver_content(), search_ac_init(), setup_init(), setup_post(), share_init(), sitelist_init(), sslify_init(), starred_init(), subthread_content(), system_unavailable(), tagger_content(), App\template_engine(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), view_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), wfinger_init(), xml_status(), and xrd_init().

@@ -1452,7 +1475,7 @@ Variables @@ -1500,7 +1523,7 @@ Variables

Returns authenticated numeric channel_id if authenticated and connected to a channel or 0. Sometimes referred to as $uid in the code.

Returns
int|bool channel_id or false
-

Referenced by Conversation\__construct(), acl_init(), admin_page_site_post(), api_content(), api_get_user(), api_post(), api_user(), app_render(), appman_content(), appman_post(), apps_content(), apw_form(), best_link_url(), blocks_content(), bookmarks_content(), bookmarks_init(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), cloud_init(), comanche_get_channel_id(), common_friends_visitor_widget(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contact_block(), contact_select(), contactgroup_content(), conversation(), current_theme(), dav_init(), delegate_content(), directory_content(), directory_init(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), file_activity(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), group_get_members(), group_post(), group_select(), group_side(), handle_tag(), hcard_init(), home_content(), home_init(), identity_selector(), impel_init(), invite_content(), invite_post(), is_public_profile(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), local_user(), lockview_content(), locs_content(), locs_post(), login(), login_content(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_add_item(), menu_content(), menu_edit_item(), menu_post(), message_content(), mimetype_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), new_contact(), notes_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), parse_app_description(), pdledit_content(), pdledit_post(), permissions_sql(), photos_content(), photos_init(), photos_post(), ping_init(), poco(), poke_content(), poke_init(), post_init(), prate_post(), prepare_body(), private_messages_list(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), profperm_init(), rbmark_content(), redbasic_form(), regmod_content(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), search(), search_ac_init(), search_content(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), Conversation\set_mode(), settings_init(), settings_post(), share_init(), sharedwithme_content(), smilies(), sources_content(), sources_post(), starred_init(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), thing_content(), thing_init(), uexport_init(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_notes(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), z_input_filter(), zid_init(), and zping_content().

+

Referenced by Conversation\__construct(), acl_init(), admin_page_site_post(), api_content(), api_get_user(), api_post(), api_user(), app_render(), appman_content(), appman_post(), apps_content(), apw_form(), best_link_url(), blocks_content(), bookmarks_content(), bookmarks_init(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), cloud_init(), comanche_get_channel_id(), common_friends_visitor_widget(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contact_block(), contact_select(), contactgroup_content(), conversation(), current_theme(), dav_init(), delegate_content(), directory_content(), directory_init(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), file_activity(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), group_get_members(), group_post(), group_select(), group_side(), handle_tag(), hcard_init(), home_content(), home_init(), identity_selector(), impel_init(), invite_content(), invite_post(), is_public_profile(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), local_user(), lockview_content(), locs_content(), locs_post(), login(), login_content(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_add_item(), menu_content(), menu_edit_item(), menu_post(), message_content(), mimetype_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), new_contact(), notes_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), parse_app_description(), pdledit_content(), pdledit_post(), permissions_sql(), photos_content(), photos_init(), photos_post(), ping_init(), poco(), poke_content(), poke_init(), post_init(), prate_init(), prate_post(), prepare_body(), private_messages_list(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), profperm_init(), rate_content(), rate_init(), rate_post(), ratings_content(), ratings_init(), rbmark_content(), redbasic_form(), regmod_content(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), search(), search_ac_init(), search_content(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), Conversation\set_mode(), settings_init(), settings_post(), share_init(), sharedwithme_content(), smilies(), sources_content(), sources_post(), starred_init(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), thing_content(), thing_init(), uexport_init(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_notes(), widget_profile(), widget_rating(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), z_input_filter(), zid_init(), and zping_content().

@@ -1574,7 +1597,7 @@ Variables -

Referenced by account_remove(), achievements_content(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_hubloc(), admin_page_plugins(), admin_page_profs(), admin_page_themes(), admin_page_users(), admin_page_users_post(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_enter(), check_form_security_token_redirectOnErr(), common_content(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_content(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), locs_content(), locs_post(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_init(), pdledit_content(), photos_content(), photos_post(), poke_content(), post_init(), prep_content(), prep_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), removeaccount_post(), removeme_post(), rmagic_post(), search_content(), service_limits_content(), settings_post(), sharedwithme_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), thing_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

+

Referenced by account_remove(), achievements_content(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_hubloc(), admin_page_plugins(), admin_page_profs(), admin_page_themes(), admin_page_users(), admin_page_users_post(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_enter(), check_form_security_token_redirectOnErr(), common_content(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_content(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), locs_content(), locs_post(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_init(), pdledit_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), rate_content(), ratings_content(), ratings_init(), register_content(), register_post(), regmod_content(), removeaccount_post(), removeme_post(), rmagic_post(), search_content(), service_limits_content(), settings_post(), sharedwithme_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), thing_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

@@ -1630,7 +1653,7 @@ Variables

e.g.: proc_run("ls","-la","/tmp");

$cmd and string args are surrounded with ""

-

Referenced by admin_page_channels(), admin_page_channels_post(), build_sync_packet(), channel_remove(), connect_post(), connections_post(), connedit_content(), connedit_post(), create_identity(), diaspora_comment(), diaspora_like(), diaspora_signed_retraction(), diaspora_transmit(), directory_run(), drop_item(), drop_items(), events_post(), file_activity(), fix_system_urls(), follow_init(), fsuggest_post(), import_post(), item_post(), like_content(), locs_post(), mail_content(), mood_init(), new_contact(), notifier_run(), photo_upload(), photos_post(), poller_run(), post_activity_item(), prate_post(), process_delivery(), profile_activity(), profile_photo_post(), profiles_post(), remove_obsolete_hublocs(), send_message(), settings_post(), start_delivery_chain(), tag_deliver(), tagger_content(), zid_init(), zot_process_message_request(), and zot_refresh().

+

Referenced by admin_page_channels(), admin_page_channels_post(), build_sync_packet(), channel_remove(), connect_post(), connections_post(), connedit_content(), connedit_post(), create_identity(), diaspora_comment(), diaspora_like(), diaspora_signed_retraction(), diaspora_transmit(), directory_run(), drop_item(), drop_items(), events_post(), file_activity(), fix_system_urls(), follow_init(), fsuggest_post(), import_post(), item_post(), like_content(), locs_post(), mail_content(), mood_init(), new_contact(), notifier_run(), photo_upload(), photos_post(), poller_run(), post_activity_item(), prate_post(), process_delivery(), profile_activity(), profile_photo_post(), profiles_post(), rate_post(), ratenotif_run(), remove_obsolete_hublocs(), send_message(), settings_post(), start_delivery_chain(), tag_deliver(), tagger_content(), zid_init(), zot_process_message_request(), and zot_refresh().

@@ -1650,7 +1673,7 @@ Variables

Returns contact id (visitor_id) of authenticated site visitor or false.

Returns
int|bool visitor_id or false
-

Referenced by app_render(), channel_content(), directory_content(), display_content(), drop_items(), get_online_status(), home_content(), item_content(), item_permissions_sql(), item_post(), nav(), navbar_complete(), oexchange_content(), permissions_sql(), photos_content(), photos_init(), photos_post(), poco(), post_init(), profile_content(), profile_create_sidebar(), profile_sidebar(), remote_user(), rpost_content(), search_content(), share_init(), subthread_content(), tagger_content(), viewconnections_content(), viewconnections_init(), widget_fullprofile(), widget_profile(), zid_init(), and zotfeed_init().

+

Referenced by app_render(), channel_content(), directory_content(), display_content(), drop_items(), get_online_status(), home_content(), item_content(), item_permissions_sql(), item_post(), nav(), navbar_complete(), oexchange_content(), permissions_sql(), photos_content(), photos_init(), photos_post(), poco(), post_init(), profile_content(), profile_create_sidebar(), profile_sidebar(), ratings_content(), ratings_init(), remote_user(), rpost_content(), search_content(), share_init(), subthread_content(), tagger_content(), viewconnections_content(), viewconnections_init(), widget_fullprofile(), widget_profile(), widget_rating(), zid_init(), and zotfeed_init().

@@ -1806,7 +1829,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(), 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(), sharedwithme_content(), 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_directory_primary(), 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(), poller_run(), 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(), regdir_init(), 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(), sharedwithme_content(), 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().

@@ -2584,7 +2607,7 @@ Variables @@ -2692,7 +2715,7 @@ Variables
- +
const DB_UPDATE_VERSION 1135const DB_UPDATE_VERSION 1136
@@ -2750,7 +2773,7 @@ Variables
-

Referenced by sync_directories().

+

Referenced by get_directory_primary(), and sync_directories().

@@ -2764,7 +2787,7 @@ Variables @@ -2778,7 +2801,7 @@ Variables @@ -2806,7 +2829,7 @@ Variables @@ -2820,7 +2843,7 @@ Variables @@ -2876,7 +2899,7 @@ Variables
-

Referenced by account_remove(), achievements_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_profs(), admin_page_site_post(), admin_page_users(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), bookmarks_init(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_enter(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_htaccess(), check_keys(), check_php(), check_smarty3(), check_store(), common_content(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), load_database(), locs_content(), locs_post(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_init(), pdledit_content(), pdledit_post(), photos_content(), photos_post(), poke_content(), post_init(), post_post(), prep_content(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), refimport_content(), register_content(), register_post(), regmod_content(), removeaccount_post(), removeme_post(), rmagic_post(), search_content(), service_limits_content(), settings_post(), setup_content(), sharedwithme_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagrm_content(), tagrm_post(), thing_content(), thing_init(), user_allow(), user_approve(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), xchan_content(), and zot_process_message_request().

+

Referenced by account_remove(), achievements_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_profs(), admin_page_site_post(), admin_page_users(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), bookmarks_init(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_enter(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_htaccess(), check_keys(), check_php(), check_smarty3(), check_store(), common_content(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), load_database(), locs_content(), locs_post(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_init(), pdledit_content(), pdledit_post(), photos_content(), photos_post(), poke_content(), post_init(), post_post(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rate_content(), ratings_content(), ratings_init(), refimport_content(), register_content(), register_post(), regmod_content(), removeaccount_post(), removeme_post(), rmagic_post(), search_content(), service_limits_content(), settings_post(), setup_content(), sharedwithme_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagrm_content(), tagrm_post(), thing_content(), thing_init(), user_allow(), user_approve(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), xchan_content(), and zot_process_message_request().

@@ -3523,7 +3546,7 @@ Variables
-

Referenced by Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_page_logs(), admin_post(), api_login(), api_statuses_user_timeline(), avatar_img(), bb2diaspora_itemwallwall(), bookmark_add(), consume_feed(), contact_remove(), conversation(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), RedMatrix\RedDAV\RedFile\delete(), delete_imported_item(), deliver_run(), diaspora_conversation(), diaspora_handle_from_contact(), diaspora_like(), diaspora_message(), diaspora_photo(), diaspora_reshare(), diaspora_transmit(), directory_content(), directory_run(), discover_by_webbie(), expire_run(), externals_run(), fetch_lrdd_template(), fix_private_photos(), RedMatrix\RedDAV\RedFile\get(), get_diaspora_key(), get_diaspora_reshare_xml(), Conversation\get_template_data(), group_content(), guess_image_type(), hubloc_change_primary(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_profile_photo(), import_xchan(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), FKOAuth1\loginUser(), magic_init(), mail_store(), mood_init(), new_contact(), notes_init(), notification(), notifier_run(), onepoll_run(), parse_url_content(), photo_upload(), photos_post(), poco(), poco_load(), poke_init(), post_post(), process_delivery(), process_location_delivery(), process_profile_delivery(), profile_load(), RedMatrix\RedDAV\RedFile\put(), queue_run(), receive_post(), Item\remove_child(), remove_obsolete_hublocs(), scale_external_images(), scrape_feed(), enotify\send(), Conversation\set_mode(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), sync_locations(), tag_deliver(), unload_plugin(), z_fetch_url(), z_post_url(), zot_feed(), zot_finger(), zot_gethub(), zot_register_hub(), and zotfeed_init().

+

Referenced by Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_page_logs(), admin_post(), api_login(), api_statuses_user_timeline(), avatar_img(), bb2diaspora_itemwallwall(), bookmark_add(), consume_feed(), contact_remove(), conversation(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), RedMatrix\RedDAV\RedFile\delete(), delete_imported_item(), deliver_run(), diaspora_conversation(), diaspora_handle_from_contact(), diaspora_like(), diaspora_message(), diaspora_photo(), diaspora_reshare(), diaspora_transmit(), directory_content(), directory_run(), discover_by_webbie(), expire_run(), externals_run(), fetch_lrdd_template(), fix_private_photos(), RedMatrix\RedDAV\RedFile\get(), get_diaspora_key(), get_diaspora_reshare_xml(), Conversation\get_template_data(), group_content(), guess_image_type(), hubloc_change_primary(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_profile_photo(), import_xchan(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), FKOAuth1\loginUser(), magic_init(), mail_store(), mood_init(), new_contact(), notes_init(), notification(), notifier_run(), onepoll_run(), parse_url_content(), photo_upload(), photos_post(), poco(), poco_load(), poke_init(), post_post(), process_delivery(), process_location_delivery(), process_profile_delivery(), profile_load(), RedMatrix\RedDAV\RedFile\put(), queue_run(), ratenotif_run(), receive_post(), Item\remove_child(), remove_obsolete_hublocs(), scale_external_images(), scrape_feed(), enotify\send(), Conversation\set_mode(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), sync_locations(), tag_deliver(), unload_plugin(), z_fetch_url(), z_post_url(), zot_feed(), zot_finger(), zot_gethub(), zot_register_hub(), and zotfeed_init().

diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js index 21169bf74..09cb995c8 100644 --- a/doc/html/boot_8php.js +++ b/doc/html/boot_8php.js @@ -17,6 +17,7 @@ var boot_8php = [ "get_account_id", "boot_8php.html#afe88b920aa285982edb817a0dd44eb37", null ], [ "get_app", "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc", null ], [ "get_custom_nav", "boot_8php.html#a899d24fd074594ceebbf72e1feff335f", null ], + [ "get_directory_primary", "boot_8php.html#a07a9d3910794df1c98ad2017e6a8e4b9", null ], [ "get_directory_realm", "boot_8php.html#a329400dcb29897cdaae3020109272285", null ], [ "get_max_import_size", "boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90", null ], [ "get_observer_hash", "boot_8php.html#a623e49c79943f3e7bdb770d021683cf7", null ], diff --git a/doc/html/cli__startup_8php.html b/doc/html/cli__startup_8php.html index 73664c8dd..27a15f1da 100644 --- a/doc/html/cli__startup_8php.html +++ b/doc/html/cli__startup_8php.html @@ -129,7 +129,7 @@ Functions diff --git a/doc/html/crypto_8php.html b/doc/html/crypto_8php.html index c860813bb..99c864d9b 100644 --- a/doc/html/crypto_8php.html +++ b/doc/html/crypto_8php.html @@ -738,7 +738,7 @@ Functions @@ -778,7 +778,7 @@ Functions diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html index 39909178a..a21414b08 100644 --- a/doc/html/datetime_8php.html +++ b/doc/html/datetime_8php.html @@ -124,8 +124,8 @@ Functions    timesel ($format, $h, $m, $id='timepicker')   - datetimesel ($format, $min, $max, $default, $id= 'datetimepicker', $pickdate=true, $picktime=true, $minfrom= '', $maxfrom= '') -  + datetimesel ($format, $min, $max, $default, $id= 'datetimepicker', $pickdate=true, $picktime=true, $minfrom= '', $maxfrom= '', $required=false) +   relative_date ($posted_date, $format=null)    age ($dob, $owner_tz= '', $viewer_tz= '') @@ -307,11 +307,11 @@ Functions
-

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(), connedit_post(), 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(), prate_post(), process_rating_delivery(), profile_photo_post(), profiles_content(), profiles_post(), prune_hub_reinstalls(), pubsubhubbub_init(), 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(), connedit_post(), 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(), prate_post(), process_rating_delivery(), profile_photo_post(), profiles_content(), profiles_post(), prune_hub_reinstalls(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), rate_post(), ratenotif_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().

- +
@@ -367,7 +367,13 @@ Functions - + + + + + + + diff --git a/doc/html/datetime_8php.js b/doc/html/datetime_8php.js index bca9ee938..5265b77a1 100644 --- a/doc/html/datetime_8php.js +++ b/doc/html/datetime_8php.js @@ -4,7 +4,7 @@ var datetime_8php = [ "cal", "datetime_8php.html#aea356409ba69f9de412298c998595dd2", null ], [ "datesel", "datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766", null ], [ "datetime_convert", "datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226", null ], - [ "datetimesel", "datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3", null ], + [ "datetimesel", "datetime_8php.html#a6732f99377eb2b57e643e3b7b3ba17b7", null ], [ "dob", "datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8", null ], [ "get_dim", "datetime_8php.html#a7df24d72ea05922d3127363e2295174c", null ], [ "get_first_dim", "datetime_8php.html#aba971b67f17fecf050813f1eba72367f", null ], diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html index 8129483d8..5967c2b20 100644 --- a/doc/html/dba__driver_8php.html +++ b/doc/html/dba__driver_8php.html @@ -363,7 +363,7 @@ Functions
Returns
Return an escaped string of the value to pass to a DB query.
-

Referenced by abook_toggle_flag(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_page_profs_post(), admin_page_users(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), app_destroy(), app_installed(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), 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(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), 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_profile(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_relay(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_flag_build(), dir_query_build(), directory_init(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_activity(), file_tag_file_query(), 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(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_file_activity_object(), get_item_elements(), get_online_status(), get_things(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_feed(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), 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(), item_add_cid(), item_message_id(), item_permissions_sql(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layouts_content(), like_content(), list_public_sites(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), locs_content(), locs_post(), 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_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), menu_list_count(), msearch_post(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_init(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco(), poco_load(), poll_post(), poller_run(), post_init(), post_post(), prate_post(), prep_content(), prep_init(), 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(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_permissions_sql(), public_recips(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), queue_run(), rconnect_url(), receive_post(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), reflect_get_channel(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), sharedwithme_content(), sitelist_init(), sources_content(), sources_post(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), term_query(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_random_block(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by abook_toggle_flag(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_page_profs_post(), admin_page_users(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), app_destroy(), app_installed(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), 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(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), 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_profile(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_relay(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_flag_build(), dir_query_build(), directory_init(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_activity(), file_tag_file_query(), 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(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_file_activity_object(), get_item_elements(), get_online_status(), get_things(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_feed(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), 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(), in_group(), install_plugin(), invite_post(), is_matrix_url(), item_add_cid(), item_message_id(), item_permissions_sql(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layouts_content(), like_content(), list_public_sites(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), locs_content(), locs_post(), 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_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), menu_list_count(), msearch_post(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_init(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco(), poco_load(), poll_post(), poller_run(), post_init(), post_post(), prate_init(), prate_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(), process_rating_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_permissions_sql(), public_recips(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), queue_run(), rate_content(), rate_init(), rate_post(), ratenotif_run(), ratingsearch_init(), rconnect_url(), receive_post(), recursive_activity_recipients(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), reflect_get_channel(), regdir_init(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), sharedwithme_content(), sitelist_init(), sources_content(), sources_post(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), term_query(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_random_block(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

@@ -459,7 +459,7 @@ Functions
 $maxfrom = '' $maxfrom = '',
 $required = false 
@@ -575,7 +575,7 @@ Functions
Returns
bool|array
-

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_allows(), 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_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_profile(), 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(), file_activity(), 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_file_activity_object(), 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(), poco_load(), poke_content(), poke_init(), poll_content(), poll_post(), poller_run(), post_activity_item(), post_init(), post_post(), prate_post(), prep_content(), prep_init(), 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(), process_rating_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(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), 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(), sharedwithme_content(), 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().

+

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_allows(), 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_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_profile(), 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(), file_activity(), 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_file_activity_object(), 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(), in_group(), 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(), poco_load(), poke_content(), poke_init(), poll_content(), poll_post(), poller_run(), post_activity_item(), post_init(), post_post(), prate_init(), prate_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(), process_rating_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(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), queue_run(), random_profile(), rate_content(), rate_init(), rate_post(), ratenotif_run(), ratingsearch_init(), rconnect_url(), receive_post(), recursive_activity_recipients(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), reflect_get_channel(), regdir_init(), 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(), sharedwithme_content(), 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/diaspora_8php.html b/doc/html/diaspora_8php.html index 6396a547b..4619009ee 100644 --- a/doc/html/diaspora_8php.html +++ b/doc/html/diaspora_8php.html @@ -114,8 +114,8 @@ $(document).ready(function(){initNavTree('diaspora_8php.html','');}); Functions  diaspora_dispatch_public ($msg)   - diaspora_dispatch ($importer, $msg, $attempt=1) -  + diaspora_dispatch ($importer, $msg) +   diaspora_is_blacklisted ($s)    diaspora_process_outbound ($arr) @@ -150,8 +150,8 @@ Functions    diaspora_message ($importer, $xml, $msg)   - diaspora_photo ($importer, $xml, $msg, $attempt=1) -  + diaspora_photo ($importer, $xml, $msg) +   diaspora_like ($importer, $xml, $msg)    diaspora_retraction ($importer, $xml) @@ -212,7 +212,7 @@ Functions
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -246,7 +246,7 @@ Functions
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -280,7 +280,7 @@ Functions
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -329,7 +329,7 @@ Functions - + @@ -493,7 +487,7 @@ Functions
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -527,7 +521,7 @@ Functions
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -583,7 +577,7 @@ Functions - +
@@ -603,13 +597,7 @@ Functions - - - - - - - + @@ -619,7 +607,7 @@ Functions
 $msg,
 $attempt = 1 $msg 
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -653,7 +641,7 @@ Functions
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -705,7 +693,7 @@ Functions
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -780,7 +768,7 @@ Functions

If there is a default group for this channel, add this member to it

-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -814,7 +802,7 @@ Functions
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -842,7 +830,7 @@ Functions
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

@@ -1144,7 +1132,7 @@ Functions
-

Referenced by diaspora_dispatch().

+

Referenced by diaspora_dispatch().

diff --git a/doc/html/diaspora_8php.js b/doc/html/diaspora_8php.js index 9db03ac5d..8131461cb 100644 --- a/doc/html/diaspora_8php.js +++ b/doc/html/diaspora_8php.js @@ -4,7 +4,7 @@ var diaspora_8php = [ "diaspora_comment", "diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829", null ], [ "diaspora_conversation", "diaspora_8php.html#adef30b6fac948baedcc7194d5d155b5f", null ], [ "diaspora_decode", "diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36", null ], - [ "diaspora_dispatch", "diaspora_8php.html#a6f0a67b6b17503c125af32763be931b7", null ], + [ "diaspora_dispatch", "diaspora_8php.html#af677aaaaf921f5acecf52ae92ac42c66", null ], [ "diaspora_dispatch_public", "diaspora_8php.html#ab99505944728d46585b8312989de533d", null ], [ "diaspora_get_contact_by_handle", "diaspora_8php.html#aa8e551a53fcce34be3942d0c3e20d1f4", null ], [ "diaspora_handle_from_contact", "diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff", null ], @@ -13,7 +13,7 @@ var diaspora_8php = [ "diaspora_like", "diaspora_8php.html#a5d57518545baa31cf8a85a937a267681", null ], [ "diaspora_message", "diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46", null ], [ "diaspora_msg_build", "diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b", null ], - [ "diaspora_photo", "diaspora_8php.html#a71fe9bb66626b4197ae018a230778bb2", null ], + [ "diaspora_photo", "diaspora_8php.html#a72b2887e8be2e51d0114c16499e6ed4c", null ], [ "diaspora_post", "diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31", null ], [ "diaspora_process_outbound", "diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605", null ], [ "diaspora_profile", "diaspora_8php.html#a900abf51398b2ef26cd2cd31c52f1b0f", null ], diff --git a/doc/html/dir__fns_8php.html b/doc/html/dir__fns_8php.html index 5e83185aa..164b60d27 100644 --- a/doc/html/dir__fns_8php.html +++ b/doc/html/dir__fns_8php.html @@ -195,7 +195,7 @@ Functions

No directory has yet been set. For most sites, pick one at random from our list of directory servers. However, if we're a directory server ourself, point at the local instance We will then set this value so this should only ever happen once. Ideally there will be an admin setting to change to a different directory server if you don't like our choice or if circumstances change.

-

Referenced by directory_content(), directory_run(), navbar_complete(), pubsites_content(), and update_suggestions().

+

Referenced by directory_content(), directory_run(), navbar_complete(), pubsites_content(), ratings_init(), and update_suggestions().

diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html index 48b7ea2e6..a22c4372d 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html @@ -282,8 +282,6 @@ Files   file  prate.php   -file  prep.php -  file  pretheme.php   file  probe.php @@ -304,10 +302,18 @@ Files   file  randprof.php   +file  rate.php +  +file  ratings.php +  +file  ratingsearch.php +  file  rbmark.php   file  receive.php   +file  regdir.php +  file  register.php   file  regmod.php diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js index 0f1ea5e3f..5d5d27418 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js @@ -88,7 +88,6 @@ var dir_d41ce877eb409a4791b288730010abe2 = [ "poll.php", "poll_8php.html", "poll_8php" ], [ "post.php", "post_8php.html", "post_8php" ], [ "prate.php", "prate_8php.html", "prate_8php" ], - [ "prep.php", "prep_8php.html", "prep_8php" ], [ "pretheme.php", "pretheme_8php.html", "pretheme_8php" ], [ "probe.php", "mod_2probe_8php.html", "mod_2probe_8php" ], [ "profile.php", "profile_8php.html", "profile_8php" ], @@ -99,8 +98,12 @@ var dir_d41ce877eb409a4791b288730010abe2 = [ "pubsub.php", "pubsub_8php.html", "pubsub_8php" ], [ "pubsubhubbub.php", "pubsubhubbub_8php.html", "pubsubhubbub_8php" ], [ "randprof.php", "randprof_8php.html", "randprof_8php" ], + [ "rate.php", "rate_8php.html", "rate_8php" ], + [ "ratings.php", "ratings_8php.html", "ratings_8php" ], + [ "ratingsearch.php", "ratingsearch_8php.html", "ratingsearch_8php" ], [ "rbmark.php", "rbmark_8php.html", "rbmark_8php" ], [ "receive.php", "receive_8php.html", "receive_8php" ], + [ "regdir.php", "regdir_8php.html", "regdir_8php" ], [ "register.php", "register_8php.html", "register_8php" ], [ "regmod.php", "regmod_8php.html", "regmod_8php" ], [ "regver.php", "regver_8php.html", "regver_8php" ], diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html index 538c6c7a9..8247cd8c8 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html @@ -254,6 +254,8 @@ Files   file  queue_fn.php   +file  ratenotif.php +  file  reddav.php  some DAV related functions for RedMatrix.
  diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js index 30877f15e..e2ce562ef 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js @@ -84,6 +84,7 @@ var dir_d44c64559bbebec7f509842c48db8b23 = ] ], [ "queue.php", "queue_8php.html", "queue_8php" ], [ "queue_fn.php", "queue__fn_8php.html", "queue__fn_8php" ], + [ "ratenotif.php", "ratenotif_8php.html", "ratenotif_8php" ], [ "reddav.php", "reddav_8php.html", "reddav_8php" ], [ "security.php", "security_8php.html", "security_8php" ], [ "session.php", "session_8php.html", "session_8php" ], diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html index 29770a20d..2cde06343 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_allows(), 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(), file_activity(), 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(), process_rating_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_allows(), 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(), file_activity(), 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(), process_rating_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_rating(), 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/files.html b/doc/html/files.html index e390d440f..1b5a448a6 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -194,19 +194,20 @@ $(document).ready(function(){initNavTree('files.html','');}); |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*ratenotif.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 @@ -296,69 +297,72 @@ $(document).ready(function(){initNavTree('files.html','');}); |o*poll.php |o*post.php |o*prate.php -|o*prep.php -|o*pretheme.php -|o*probe.php -|o*profile.php -|o*profile_photo.php -|o*profiles.php -|o*profperm.php -|o*pubsites.php -|o*pubsub.php -|o*pubsubhubbub.php -|o*randprof.php -|o*rbmark.php -|o*receive.php -|o*register.php -|o*regmod.php -|o*regver.php -|o*removeaccount.php -|o*removeme.php -|o*rmagic.php -|o*rpost.php -|o*rsd_xml.php -|o*search.php -|o*search_ac.php -|o*service_limits.php -|o*settings.php -|o*setup.php -|o*share.php -|o*sharedwithme.php -|o*siteinfo.php -|o*sitelist.php -|o*smilies.php -|o*sources.php -|o*sslify.php -|o*starred.php -|o*subthread.php -|o*suggest.php -|o*tagger.php -|o*tagrm.php -|o*thing.php -|o*toggle_mobile.php -|o*toggle_safesearch.php -|o*uexport.php -|o*update_channel.php -|o*update_display.php -|o*update_home.php -|o*update_network.php -|o*update_search.php -|o*view.php -|o*viewconnections.php -|o*viewsrc.php -|o*vote.php -|o*wall_attach.php -|o*wall_upload.php -|o*webfinger.php -|o*webpages.php -|o*wfinger.php -|o*xchan.php -|o*xpoco.php -|o*xrd.php -|o*xref.php -|o*zfinger.php -|o*zotfeed.php -|\*zping.php +|o*pretheme.php +|o*probe.php +|o*profile.php +|o*profile_photo.php +|o*profiles.php +|o*profperm.php +|o*pubsites.php +|o*pubsub.php +|o*pubsubhubbub.php +|o*randprof.php +|o*rate.php +|o*ratings.php +|o*ratingsearch.php +|o*rbmark.php +|o*receive.php +|o*regdir.php +|o*register.php +|o*regmod.php +|o*regver.php +|o*removeaccount.php +|o*removeme.php +|o*rmagic.php +|o*rpost.php +|o*rsd_xml.php +|o*search.php +|o*search_ac.php +|o*service_limits.php +|o*settings.php +|o*setup.php +|o*share.php +|o*sharedwithme.php +|o*siteinfo.php +|o*sitelist.php +|o*smilies.php +|o*sources.php +|o*sslify.php +|o*starred.php +|o*subthread.php +|o*suggest.php +|o*tagger.php +|o*tagrm.php +|o*thing.php +|o*toggle_mobile.php +|o*toggle_safesearch.php +|o*uexport.php +|o*update_channel.php +|o*update_display.php +|o*update_home.php +|o*update_network.php +|o*update_search.php +|o*view.php +|o*viewconnections.php +|o*viewsrc.php +|o*vote.php +|o*wall_attach.php +|o*wall_upload.php +|o*webfinger.php +|o*webpages.php +|o*wfinger.php +|o*xchan.php +|o*xpoco.php +|o*xrd.php +|o*xref.php +|o*zfinger.php +|o*zotfeed.php +|\*zping.php o+util |o+fpostit ||\*fpostit.php diff --git a/doc/html/fixd_8php.html b/doc/html/fixd_8php.html index 70bb14cc6..f4bb6c837 100644 --- a/doc/html/fixd_8php.html +++ b/doc/html/fixd_8php.html @@ -132,7 +132,7 @@ Variables
-

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_allows(), 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_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_profile(), 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(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_post(), preg_heart(), prep_content(), prep_init(), 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(), process_rating_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(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), 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(), sharedwithme_content(), 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().

+

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_service_class_allows(), 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_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_profile(), 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(), in_group(), 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(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_post(), prate_init(), 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(), process_rating_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(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), random_profile(), rate_content(), rate_init(), ratenotif_run(), ratingsearch_init(), rconnect_url(), receive_post(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_read(), ref_session_write(), refimport_content(), reflect_comment_store(), regdir_init(), 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(), sharedwithme_content(), 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().

diff --git a/doc/html/globals_0x64.html b/doc/html/globals_0x64.html index 8d22028c3..0a73458a5 100644 --- a/doc/html/globals_0x64.html +++ b/doc/html/globals_0x64.html @@ -152,7 +152,7 @@ $(document).ready(function(){initNavTree('globals_0x64.html','');}); : datetime.php
  • datetimesel() -: datetime.php +: datetime.php
  • dav_init() : dav.php @@ -275,7 +275,7 @@ $(document).ready(function(){initNavTree('globals_0x64.html','');}); : diaspora.php
  • diaspora_dispatch() -: diaspora.php +: diaspora.php
  • diaspora_dispatch_public() : diaspora.php @@ -308,7 +308,7 @@ $(document).ready(function(){initNavTree('globals_0x64.html','');}); : bb2diaspora.php
  • diaspora_photo() -: diaspora.php +: diaspora.php
  • diaspora_post() : diaspora.php diff --git a/doc/html/globals_0x67.html b/doc/html/globals_0x67.html index 4fe855ccb..bcd7cdf5c 100644 --- a/doc/html/globals_0x67.html +++ b/doc/html/globals_0x67.html @@ -220,6 +220,9 @@ $(document).ready(function(){initNavTree('globals_0x67.html','');});
  • get_dim() : datetime.php
  • +
  • get_directory_primary() +: boot.php +
  • get_directory_realm() : boot.php
  • diff --git a/doc/html/globals_0x69.html b/doc/html/globals_0x69.html index 1e4e36c01..17d7629b1 100644 --- a/doc/html/globals_0x69.html +++ b/doc/html/globals_0x69.html @@ -216,6 +216,9 @@ $(document).ready(function(){initNavTree('globals_0x69.html','');});
  • in_arrayi() : text.php
  • +
  • in_group() +: attach.php +
  • info() : boot.php
  • diff --git a/doc/html/globals_0x70.html b/doc/html/globals_0x70.html index 3597e72bb..45336bc0f 100644 --- a/doc/html/globals_0x70.html +++ b/doc/html/globals_0x70.html @@ -466,6 +466,9 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
  • posted_dates() : items.php
  • +
  • prate_init() +: prate.php +
  • prate_post() : prate.php
  • @@ -475,12 +478,6 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
  • preg_heart() : text.php
  • -
  • prep_content() -: prep.php -
  • -
  • prep_init() -: prep.php -
  • prepare_body() : text.php
  • diff --git a/doc/html/globals_0x72.html b/doc/html/globals_0x72.html index 8b70448f1..2e05f5d51 100644 --- a/doc/html/globals_0x72.html +++ b/doc/html/globals_0x72.html @@ -160,6 +160,27 @@ $(document).ready(function(){initNavTree('globals_0x72.html','');});
  • randprof_init() : randprof.php
  • +
  • rate_content() +: rate.php +
  • +
  • rate_init() +: rate.php +
  • +
  • rate_post() +: rate.php +
  • +
  • ratenotif_run() +: ratenotif.php +
  • +
  • ratings_content() +: ratings.php +
  • +
  • ratings_init() +: ratings.php +
  • +
  • ratingsearch_init() +: ratingsearch.php +
  • rbmark_content() : rbmark.php
  • @@ -175,6 +196,9 @@ $(document).ready(function(){initNavTree('globals_0x72.html','');});
  • receive_post() : receive.php
  • +
  • recursive_activity_recipients() +: attach.php +
  • red_escape_codeblock() : items.php
  • @@ -274,6 +298,9 @@ $(document).ready(function(){initNavTree('globals_0x72.html','');});
  • REFLECT_USERFILE : refimport.php
  • +
  • regdir_init() +: regdir.php +
  • REGISTER_APPROVE : boot.php
  • diff --git a/doc/html/globals_0x77.html b/doc/html/globals_0x77.html index d5c3b890b..5706fb5cd 100644 --- a/doc/html/globals_0x77.html +++ b/doc/html/globals_0x77.html @@ -250,6 +250,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
  • widget_random_block() : widgets.php
  • +
  • widget_rating() +: widgets.php +
  • widget_savedsearch() : widgets.php
  • diff --git a/doc/html/globals_func_0x64.html b/doc/html/globals_func_0x64.html index d4ee23d80..da44f7af3 100644 --- a/doc/html/globals_func_0x64.html +++ b/doc/html/globals_func_0x64.html @@ -151,7 +151,7 @@ $(document).ready(function(){initNavTree('globals_func_0x64.html','');}); : datetime.php
  • datetimesel() -: datetime.php +: datetime.php
  • dav_init() : dav.php @@ -262,7 +262,7 @@ $(document).ready(function(){initNavTree('globals_func_0x64.html','');}); : diaspora.php
  • diaspora_dispatch() -: diaspora.php +: diaspora.php
  • diaspora_dispatch_public() : diaspora.php @@ -295,7 +295,7 @@ $(document).ready(function(){initNavTree('globals_func_0x64.html','');}); : bb2diaspora.php
  • diaspora_photo() -: diaspora.php +: diaspora.php
  • diaspora_post() : diaspora.php diff --git a/doc/html/globals_func_0x67.html b/doc/html/globals_func_0x67.html index d013170c3..02173b033 100644 --- a/doc/html/globals_func_0x67.html +++ b/doc/html/globals_func_0x67.html @@ -219,6 +219,9 @@ $(document).ready(function(){initNavTree('globals_func_0x67.html','');});
  • get_dim() : datetime.php
  • +
  • get_directory_primary() +: boot.php +
  • get_directory_realm() : boot.php
  • diff --git a/doc/html/globals_func_0x69.html b/doc/html/globals_func_0x69.html index 9fa0c6dd1..bf0978943 100644 --- a/doc/html/globals_func_0x69.html +++ b/doc/html/globals_func_0x69.html @@ -207,6 +207,9 @@ $(document).ready(function(){initNavTree('globals_func_0x69.html','');});
  • in_arrayi() : text.php
  • +
  • in_group() +: attach.php +
  • info() : boot.php
  • diff --git a/doc/html/globals_func_0x70.html b/doc/html/globals_func_0x70.html index eee4d88ae..c560ea54f 100644 --- a/doc/html/globals_func_0x70.html +++ b/doc/html/globals_func_0x70.html @@ -321,6 +321,9 @@ $(document).ready(function(){initNavTree('globals_func_0x70.html','');});
  • posted_dates() : items.php
  • +
  • prate_init() +: prate.php +
  • prate_post() : prate.php
  • @@ -330,12 +333,6 @@ $(document).ready(function(){initNavTree('globals_func_0x70.html','');});
  • preg_heart() : text.php
  • -
  • prep_content() -: prep.php -
  • -
  • prep_init() -: prep.php -
  • prepare_body() : text.php
  • diff --git a/doc/html/globals_func_0x72.html b/doc/html/globals_func_0x72.html index 0b0535477..7b73738fd 100644 --- a/doc/html/globals_func_0x72.html +++ b/doc/html/globals_func_0x72.html @@ -153,6 +153,27 @@ $(document).ready(function(){initNavTree('globals_func_0x72.html','');});
  • randprof_init() : randprof.php
  • +
  • rate_content() +: rate.php +
  • +
  • rate_init() +: rate.php +
  • +
  • rate_post() +: rate.php +
  • +
  • ratenotif_run() +: ratenotif.php +
  • +
  • ratings_content() +: ratings.php +
  • +
  • ratings_init() +: ratings.php +
  • +
  • ratingsearch_init() +: ratingsearch.php +
  • rbmark_content() : rbmark.php
  • @@ -168,6 +189,9 @@ $(document).ready(function(){initNavTree('globals_func_0x72.html','');});
  • receive_post() : receive.php
  • +
  • recursive_activity_recipients() +: attach.php +
  • red_escape_codeblock() : items.php
  • @@ -240,6 +264,9 @@ $(document).ready(function(){initNavTree('globals_func_0x72.html','');});
  • reflect_photo_callback() : refimport.php
  • +
  • regdir_init() +: regdir.php +
  • register_content() : register.php
  • diff --git a/doc/html/globals_func_0x77.html b/doc/html/globals_func_0x77.html index e45fbd79e..4da701c6f 100644 --- a/doc/html/globals_func_0x77.html +++ b/doc/html/globals_func_0x77.html @@ -246,6 +246,9 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
  • widget_random_block() : widgets.php
  • +
  • widget_rating() +: widgets.php +
  • widget_savedsearch() : widgets.php
  • diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html index 1bb20f3f3..f75e9cfd4 100644 --- a/doc/html/identity_8php.html +++ b/doc/html/identity_8php.html @@ -454,7 +454,7 @@ Functions diff --git a/doc/html/include_2attach_8php.html b/doc/html/include_2attach_8php.html index 281b41fed..4b7a6513e 100644 --- a/doc/html/include_2attach_8php.html +++ b/doc/html/include_2attach_8php.html @@ -161,6 +161,10 @@ Functions    get_file_activity_object ($channel_id, $hash, $cloudpath)   + recursive_activity_recipients ($allow_cid, $allow_gid, $deny_cid, $deny_gid, $folder_hash) +  + in_group ($group_id) + 

    Detailed Description

    File/attach API with the potential for revision control.

    @@ -828,6 +832,24 @@ Functions

    Referenced by attach_delete(), filestorage_content(), and filestorage_post().

    +
    + + +
    +
    + + + + + + + + +
    in_group ( $group_id)
    +
    + +

    Referenced by recursive_activity_recipients().

    +
    @@ -863,6 +885,52 @@ Functions

    Referenced by attach_init().

    + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    recursive_activity_recipients ( $allow_cid,
     $allow_gid,
     $deny_cid,
     $deny_gid,
     $folder_hash 
    )
    +
    + +

    Referenced by file_activity().

    +
    diff --git a/doc/html/include_2attach_8php.js b/doc/html/include_2attach_8php.js index 495818c45..845494e68 100644 --- a/doc/html/include_2attach_8php.js +++ b/doc/html/include_2attach_8php.js @@ -14,7 +14,9 @@ var include_2attach_8php = [ "get_cloudpath", "include_2attach_8php.html#a6aa00ea010ea030110faefb75eafc1ce", null ], [ "get_file_activity_object", "include_2attach_8php.html#aa784c064ae323710f4ef68771a4a38db", null ], [ "get_parent_cloudpath", "include_2attach_8php.html#a1d72ef7cb940f6868e3e2a841cadfe8f", null ], + [ "in_group", "include_2attach_8php.html#aa166e1b48ac829a2366362e74fbcf355", null ], [ "pipe_streams", "include_2attach_8php.html#a5d484de2d19a93071571d6499a50ae34", null ], + [ "recursive_activity_recipients", "include_2attach_8php.html#aabd15487fa0e5d2dc5c480f72d23b886", null ], [ "z_mime_content_type", "include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a", null ], [ "z_readdir", "include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909", null ] ]; \ No newline at end of file diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index ea83677bd..1a8dacbc0 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_allows(), account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), AES256CBC_decrypt(), AES256CBC_encrypt(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), apps_content(), 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(), connedit_content(), 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_poller_runtime(), 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_init(), photo_upload(), photos_content(), photos_init(), poco(), poller_run(), post_activity_item(), post_post(), prep_content(), prep_init(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_rating_delivery(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), random_profile(), 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_get_temp_dir(), z_get_upload_dir(), z_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

    +

    Referenced by account_service_class_allows(), account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), AES256CBC_decrypt(), AES256CBC_encrypt(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), apps_content(), 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(), connedit_content(), 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_primary(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_max_import_size(), get_online_status(), get_poller_runtime(), 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_init(), photo_upload(), photos_content(), photos_init(), poco(), 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(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), random_profile(), rate_content(), ratenotif_run(), ratings_content(), ratings_init(), ratingsearch_init(), receive_post(), ref_session_gc(), regdir_init(), 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(), widget_rating(), z_fetch_url(), z_get_temp_dir(), z_get_upload_dir(), z_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

    diff --git a/doc/html/include_2network_8php.html b/doc/html/include_2network_8php.html index 605cef00b..56d5b9005 100644 --- a/doc/html/include_2network_8php.html +++ b/doc/html/include_2network_8php.html @@ -463,7 +463,7 @@ Functions @@ -509,7 +509,7 @@ Functions @@ -747,7 +747,7 @@ Functions
    Returns
    array 'return_code' => HTTP return code or 0 if timeout or failure 'success' => boolean true (if HTTP 2xx result) or false 'header' => HTTP headers 'body' => fetched content
    -

    Referenced by check_htaccess(), directory_content(), discover_by_url(), discover_by_webbie(), externals_run(), fetch_xrd_links(), get_diaspora_reshare_xml(), handle_feed(), import_post(), import_profile_photo(), import_site(), import_xchan(), navbar_complete(), oembed_fetch_url(), oexchange_content(), onepoll_run(), parseurl_getsiteinfo(), poco_load(), pubsites_content(), random_profile(), reflect_photo_callback(), remote_online_status(), scale_external_images(), scrape_feed(), scrape_vcard(), setup_post(), sslify_init(), sync_directories(), update_suggestions(), webfinger_rfc7033(), z_post_url(), zot_finger(), and zot_register_hub().

    +

    Referenced by check_htaccess(), directory_content(), discover_by_url(), discover_by_webbie(), externals_run(), fetch_xrd_links(), get_diaspora_reshare_xml(), handle_feed(), import_post(), import_profile_photo(), import_site(), import_xchan(), navbar_complete(), oembed_fetch_url(), oexchange_content(), onepoll_run(), parseurl_getsiteinfo(), poco_load(), poller_run(), pubsites_content(), random_profile(), ratenotif_run(), ratings_init(), reflect_photo_callback(), remote_online_status(), scale_external_images(), scrape_feed(), scrape_vcard(), setup_post(), sslify_init(), sync_directories(), update_suggestions(), webfinger_rfc7033(), z_post_url(), zot_finger(), and zot_register_hub().

    diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index 2a7029225..e38a1d42c 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -360,7 +360,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(), bb_replace_images(), 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(), dav_init(), 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(), get_roles(), Item\get_template_data(), get_timezones(), getIconFromType(), 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(), prep_content(), 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(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), sharedwithme_content(), 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().

    +

    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(), bb_replace_images(), 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(), datetimesel(), dav_init(), 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(), get_roles(), Item\get_template_data(), get_timezones(), getIconFromType(), 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(), rate_content(), ratings_content(), ratings_init(), rbmark_content(), rbmark_post(), redbasic_form(), regdir_init(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), sharedwithme_content(), 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_rating(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), wtagblock(), xchan_content(), z_readdir(), and zfinger_init().

    @@ -400,7 +400,7 @@ Functions diff --git a/doc/html/navtree.js b/doc/html/navtree.js index 04779bb24..d315f1070 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#a4fefd7486d3b888a05cfd3dc9575f115", -"classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3", -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a9f14682acf3ccb70df5af5dd0687c689", -"datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8", -"functions_func_0x63.html", -"include_2attach_8php.html#a1d72ef7cb940f6868e3e2a841cadfe8f", -"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf", -"profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534", -"text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc" +"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a", +"classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11", +"classRedMatrix_1_1RedDAV_1_1RedFile.html#a7241beecd01f5bb4e74659863dd85bd8", +"datetime_8php.html#a3f239f94e23335d860b148958d87a093", +"functions_func_0x62.html", +"include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36", +"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3", +"profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074", +"text_8php.html#a273156a6f5cddc6652ad656821cd5805" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index 306fab676..f50a3fbd3 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -153,101 +153,101 @@ var NAVTREEINDEX0 = "blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12":[6,0,1,9,0], "blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9":[6,0,1,9,1], "boot_8php.html":[6,0,4], -"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[6,0,4,159], -"boot_8php.html#a0209e605028a5bb492683951ab30d49d":[6,0,4,320], -"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,172], -"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,278], -"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,151], -"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[6,0,4,63], -"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,191], -"boot_8php.html#a0450389f24c632906fbc24347700a543":[6,0,4,54], -"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[6,0,4,123], +"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[6,0,4,160], +"boot_8php.html#a0209e605028a5bb492683951ab30d49d":[6,0,4,321], +"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,173], +"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,279], +"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,152], +"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[6,0,4,64], +"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,192], +"boot_8php.html#a0450389f24c632906fbc24347700a543":[6,0,4,55], +"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[6,0,4,124], +"boot_8php.html#a07a9d3910794df1c98ad2017e6a8e4b9":[6,0,4,17], "boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[6,0,4,1], -"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,233], -"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[6,0,4,81], -"boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3":[6,0,4,311], -"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[6,0,4,195], -"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,298], -"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,294], -"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,297], -"boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[6,0,4,23], -"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[6,0,4,73], +"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,234], +"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[6,0,4,82], +"boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3":[6,0,4,312], +"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[6,0,4,196], +"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,299], +"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,295], +"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,298], +"boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[6,0,4,24], +"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[6,0,4,74], "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[6,0,4,15], -"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[6,0,4,93], -"boot_8php.html#a107d53f96acf5319905a34b1870db09a":[6,0,4,47], -"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,283], -"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,153], -"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,282], -"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[6,0,4,97], -"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[6,0,4,94], -"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[6,0,4,222], -"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[6,0,4,76], -"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[6,0,4,171], -"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[6,0,4,167], -"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[6,0,4,194], -"boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[6,0,4,161], -"boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71":[6,0,4,310], -"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,317], -"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,272], -"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,319], -"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[6,0,4,198], -"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[6,0,4,92], -"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[6,0,4,248], -"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[6,0,4,125], -"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[6,0,4,178], -"boot_8php.html#a205d013103997adfa72953d2f20c01e1":[6,0,4,242], -"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[6,0,4,215], -"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,274], -"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[6,0,4,48], -"boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[6,0,4,22], -"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[6,0,4,118], -"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[6,0,4,108], -"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,286], -"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,218], -"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[6,0,4,99], -"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[6,0,4,152], -"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[6,0,4,246], -"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[6,0,4,126], -"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,270], -"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,214], -"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,148], -"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[6,0,4,82], -"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[6,0,4,89], -"boot_8php.html#a329400dcb29897cdaae3020109272285":[6,0,4,17], -"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[6,0,4,253], -"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[6,0,4,165], -"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[6,0,4,51], -"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[6,0,4,141], -"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[6,0,4,180], -"boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[6,0,4,230], -"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,324], -"boot_8php.html#a37281c30bd92cecb499878d6778c570f":[6,0,4,309], -"boot_8php.html#a37ddabc112db443b4c67fbc0f708817e":[6,0,4,112], -"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[6,0,4,203], -"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[6,0,4,129], -"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[6,0,4,134], -"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,323], -"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,200], -"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,244], +"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[6,0,4,94], +"boot_8php.html#a107d53f96acf5319905a34b1870db09a":[6,0,4,48], +"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,284], +"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,154], +"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,283], +"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[6,0,4,98], +"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[6,0,4,95], +"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[6,0,4,223], +"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[6,0,4,77], +"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[6,0,4,172], +"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[6,0,4,168], +"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[6,0,4,195], +"boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[6,0,4,162], +"boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71":[6,0,4,311], +"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,318], +"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,273], +"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,320], +"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[6,0,4,199], +"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[6,0,4,93], +"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[6,0,4,249], +"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[6,0,4,126], +"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[6,0,4,179], +"boot_8php.html#a205d013103997adfa72953d2f20c01e1":[6,0,4,243], +"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[6,0,4,216], +"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,275], +"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[6,0,4,49], +"boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[6,0,4,23], +"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[6,0,4,119], +"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[6,0,4,109], +"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,287], +"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,219], +"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[6,0,4,100], +"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[6,0,4,153], +"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[6,0,4,247], +"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[6,0,4,127], +"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,271], +"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,215], +"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,149], +"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[6,0,4,83], +"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[6,0,4,90], +"boot_8php.html#a329400dcb29897cdaae3020109272285":[6,0,4,18], +"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[6,0,4,254], +"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[6,0,4,166], +"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[6,0,4,52], +"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[6,0,4,142], +"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[6,0,4,181], +"boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[6,0,4,231], +"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,325], +"boot_8php.html#a37281c30bd92cecb499878d6778c570f":[6,0,4,310], +"boot_8php.html#a37ddabc112db443b4c67fbc0f708817e":[6,0,4,113], +"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[6,0,4,204], +"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[6,0,4,130], +"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[6,0,4,135], +"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,324], +"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,201], +"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,245], "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[6,0,4,12], -"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[6,0,4,74], -"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[6,0,4,106], -"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[6,0,4,61], -"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[6,0,4,155], -"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[6,0,4,237], -"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[6,0,4,213], -"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[6,0,4,105], -"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[6,0,4,188], -"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[6,0,4,175], -"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[6,0,4,87], -"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,181], -"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,295], -"boot_8php.html#a476c499e15caf75972fed134a8f23b2e":[6,0,4,44], -"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[6,0,4,201], -"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[6,0,4,124], -"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,264], -"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,199], +"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[6,0,4,75], +"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[6,0,4,107], +"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[6,0,4,62], +"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[6,0,4,156], +"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[6,0,4,238], +"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[6,0,4,214], +"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[6,0,4,106], +"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[6,0,4,189], +"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[6,0,4,176], +"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[6,0,4,88], +"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,182], +"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,296], +"boot_8php.html#a476c499e15caf75972fed134a8f23b2e":[6,0,4,45], +"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[6,0,4,202], +"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[6,0,4,125], +"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,265], +"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,200], "boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[6,0,4,6], -"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,235], -"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,67] +"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,236] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index 832f40056..51d85ebc9 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,232 +1,233 @@ var NAVTREEINDEX1 = { -"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,258], -"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,225], -"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,31], -"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,179], -"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,49], -"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,98], -"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,39], -"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,217], -"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,257], -"boot_8php.html#a59717d02602a4babf2a54da8b33d93a5":[6,0,4,43], -"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,321], -"boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[6,0,4,21], -"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[6,0,4,75], -"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[6,0,4,207], -"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[6,0,4,95], -"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[6,0,4,186], -"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[6,0,4,231], -"boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c":[6,0,4,36], -"boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[6,0,4,19], -"boot_8php.html#a6252d8eca67c689d9035ec6da544cf46":[6,0,4,26], -"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[6,0,4,91], -"boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,122], -"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,291], -"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[6,0,4,192], -"boot_8php.html#a670c35028dda5a20dfdb48bb863253a5":[6,0,4,139], -"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[6,0,4,163], -"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[6,0,4,166], -"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[6,0,4,53], -"boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,169], -"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,276], -"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[6,0,4,261], -"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[6,0,4,255], -"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[6,0,4,119], -"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[6,0,4,109], -"boot_8php.html#a6df1102664f64b274810db85197c2755":[6,0,4,241], -"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[6,0,4,150], -"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[6,0,4,236], -"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[6,0,4,120], -"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,275], -"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,185], -"boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[6,0,4,30], -"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[6,0,4,208], -"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[6,0,4,157], -"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[6,0,4,88], +"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,68], +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,259], +"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,226], +"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,32], +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,180], +"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,50], +"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,99], +"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,40], +"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,218], +"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,258], +"boot_8php.html#a59717d02602a4babf2a54da8b33d93a5":[6,0,4,44], +"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,322], +"boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[6,0,4,22], +"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[6,0,4,76], +"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[6,0,4,208], +"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[6,0,4,96], +"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[6,0,4,187], +"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[6,0,4,232], +"boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c":[6,0,4,37], +"boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[6,0,4,20], +"boot_8php.html#a6252d8eca67c689d9035ec6da544cf46":[6,0,4,27], +"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[6,0,4,92], +"boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,123], +"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,292], +"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[6,0,4,193], +"boot_8php.html#a670c35028dda5a20dfdb48bb863253a5":[6,0,4,140], +"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[6,0,4,164], +"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[6,0,4,167], +"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[6,0,4,54], +"boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,170], +"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,277], +"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[6,0,4,262], +"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[6,0,4,256], +"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[6,0,4,120], +"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[6,0,4,110], +"boot_8php.html#a6df1102664f64b274810db85197c2755":[6,0,4,242], +"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[6,0,4,151], +"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[6,0,4,237], +"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[6,0,4,121], +"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,276], +"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,186], +"boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[6,0,4,31], +"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[6,0,4,209], +"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[6,0,4,158], +"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[6,0,4,89], "boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[6,0,4,2], -"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,299], -"boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9":[6,0,4,308], +"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,300], +"boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9":[6,0,4,309], "boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[6,0,4,4], -"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[6,0,4,90], -"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[6,0,4,103], -"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,266], -"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,135], -"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[6,0,4,79], -"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[6,0,4,156], -"boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe":[6,0,4,306], -"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[6,0,4,187], -"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[6,0,4,84], -"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,127], -"boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[6,0,4,68], -"boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1":[6,0,4,314], -"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[6,0,4,189], -"boot_8php.html#a7eeb83e15968f7a6cc5937d493815773":[6,0,4,55], -"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[6,0,4,58], -"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[6,0,4,100], -"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[6,0,4,138], -"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[6,0,4,228], -"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[6,0,4,62], -"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[6,0,4,132], -"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[6,0,4,66], -"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[6,0,4,239], -"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[6,0,4,146], -"boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[6,0,4,137], -"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,290], -"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,289], -"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,206], +"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[6,0,4,91], +"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[6,0,4,104], +"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,267], +"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,136], +"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[6,0,4,80], +"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[6,0,4,157], +"boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe":[6,0,4,307], +"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[6,0,4,188], +"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[6,0,4,85], +"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,128], +"boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[6,0,4,69], +"boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1":[6,0,4,315], +"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[6,0,4,190], +"boot_8php.html#a7eeb83e15968f7a6cc5937d493815773":[6,0,4,56], +"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[6,0,4,59], +"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[6,0,4,101], +"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[6,0,4,139], +"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[6,0,4,229], +"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[6,0,4,63], +"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[6,0,4,133], +"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[6,0,4,67], +"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[6,0,4,240], +"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[6,0,4,147], +"boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[6,0,4,138], +"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,291], +"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,290], +"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,207], "boot_8php.html#a899d24fd074594ceebbf72e1feff335f":[6,0,4,16], -"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[6,0,4,116], -"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[6,0,4,259], -"boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f":[6,0,4,111], -"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[6,0,4,149], -"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[6,0,4,143], -"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,268], -"boot_8php.html#a8e18f54d7cf995795e264c4f21b1789c":[6,0,4,71], -"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,318], -"boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0":[6,0,4,262], -"boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[6,0,4,35], +"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[6,0,4,117], +"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[6,0,4,260], +"boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f":[6,0,4,112], +"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[6,0,4,150], +"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[6,0,4,144], +"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,269], +"boot_8php.html#a8e18f54d7cf995795e264c4f21b1789c":[6,0,4,72], +"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,319], +"boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0":[6,0,4,263], +"boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[6,0,4,36], "boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[6,0,4,11], -"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[6,0,4,170], -"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[6,0,4,147], -"boot_8php.html#a949116d9a295b214293006c060ca4848":[6,0,4,145], -"boot_8php.html#a9687c702656af105e9a09048c21aec4c":[6,0,4,86], -"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,302], -"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,273], -"boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[6,0,4,18], -"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[6,0,4,220], -"boot_8php.html#a997614f25e58f8313641e1eb0109fd10":[6,0,4,312], -"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[6,0,4,260], -"boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[6,0,4,57], +"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[6,0,4,171], +"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[6,0,4,148], +"boot_8php.html#a949116d9a295b214293006c060ca4848":[6,0,4,146], +"boot_8php.html#a9687c702656af105e9a09048c21aec4c":[6,0,4,87], +"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,303], +"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,274], +"boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[6,0,4,19], +"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[6,0,4,221], +"boot_8php.html#a997614f25e58f8313641e1eb0109fd10":[6,0,4,313], +"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[6,0,4,261], +"boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[6,0,4,58], "boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[6,0,4,5], -"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[6,0,4,251], -"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[6,0,4,221], -"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,316], -"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,292], -"boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f":[6,0,4,304], -"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[6,0,4,250], -"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[6,0,4,209], -"boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[6,0,4,27], -"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[6,0,4,229], -"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[6,0,4,52], -"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[6,0,4,177], +"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[6,0,4,252], +"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[6,0,4,222], +"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,317], +"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,293], +"boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f":[6,0,4,305], +"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[6,0,4,251], +"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[6,0,4,210], +"boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[6,0,4,28], +"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[6,0,4,230], +"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[6,0,4,53], +"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[6,0,4,178], "boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[6,0,4,9], -"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[6,0,4,174], -"boot_8php.html#aa561f801e962b67a5c4d0548ea95fd17":[6,0,4,20], -"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[6,0,4,131], -"boot_8php.html#aa726114f13c1119ae77c3464d6afeaed":[6,0,4,83], -"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[6,0,4,102], -"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[6,0,4,113], -"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[6,0,4,256], -"boot_8php.html#aab8b7ce53e7b8fd7fa27ff42fbc912cb":[6,0,4,72], -"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[6,0,4,238], -"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[6,0,4,80], -"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[6,0,4,212], -"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[6,0,4,136], -"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[6,0,4,240], -"boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[6,0,4,37], -"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,234], -"boot_8php.html#ab49a5d43ce1150c5af8c750ccb14e15f":[6,0,4,263], -"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,265], -"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[6,0,4,205], -"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[6,0,4,245], -"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[6,0,4,130], -"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[6,0,4,162], -"boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[6,0,4,64], -"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,223], -"boot_8php.html#ab72cdb128150548a279e9c9fa5057bb3":[6,0,4,70], +"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[6,0,4,175], +"boot_8php.html#aa561f801e962b67a5c4d0548ea95fd17":[6,0,4,21], +"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[6,0,4,132], +"boot_8php.html#aa726114f13c1119ae77c3464d6afeaed":[6,0,4,84], +"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[6,0,4,103], +"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[6,0,4,114], +"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[6,0,4,257], +"boot_8php.html#aab8b7ce53e7b8fd7fa27ff42fbc912cb":[6,0,4,73], +"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[6,0,4,239], +"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[6,0,4,81], +"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[6,0,4,213], +"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[6,0,4,137], +"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[6,0,4,241], +"boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[6,0,4,38], +"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,235], +"boot_8php.html#ab49a5d43ce1150c5af8c750ccb14e15f":[6,0,4,264], +"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,266], +"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[6,0,4,206], +"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[6,0,4,246], +"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[6,0,4,131], +"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[6,0,4,163], +"boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[6,0,4,65], +"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,224], +"boot_8php.html#ab72cdb128150548a279e9c9fa5057bb3":[6,0,4,71], "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[6,0,4,7], -"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,115], -"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,301], -"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[6,0,4,45], -"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,269], +"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,116], +"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,302], +"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[6,0,4,46], +"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,270], "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[6,0,4,3], -"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,296], -"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[6,0,4,78], -"boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[6,0,4,133], -"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[6,0,4,114], -"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[6,0,4,144], -"boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[6,0,4,25], -"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,190], -"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,267], -"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,154], -"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[6,0,4,110], -"boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08":[6,0,4,28], -"boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[6,0,4,41], -"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[6,0,4,65], -"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[6,0,4,303], -"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[6,0,4,140], -"boot_8php.html#ac89396b9144391acd08d6d0f9b332220":[6,0,4,305], -"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[6,0,4,142], -"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[6,0,4,219], -"boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[6,0,4,40], +"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,297], +"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[6,0,4,79], +"boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[6,0,4,134], +"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[6,0,4,115], +"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[6,0,4,145], +"boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[6,0,4,26], +"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,191], +"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,268], +"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,155], +"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[6,0,4,111], +"boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08":[6,0,4,29], +"boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[6,0,4,42], +"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[6,0,4,66], +"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[6,0,4,304], +"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[6,0,4,141], +"boot_8php.html#ac89396b9144391acd08d6d0f9b332220":[6,0,4,306], +"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[6,0,4,143], +"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[6,0,4,220], +"boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[6,0,4,41], "boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[6,0,4,13], "boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[6,0,4,8], -"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[6,0,4,193], -"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,315], -"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,252], -"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,288], -"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,226], -"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[6,0,4,77], -"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[6,0,4,173], -"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[6,0,4,183], +"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[6,0,4,194], +"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,316], +"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,253], +"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,289], +"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,227], +"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[6,0,4,78], +"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[6,0,4,174], +"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[6,0,4,184], "boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13":[6,0,4,10], -"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[6,0,4,85], -"boot_8php.html#ad34c1547020a305915bcc39707744690":[6,0,4,101], -"boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[6,0,4,33], -"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[6,0,4,247], -"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,277], -"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,271], -"boot_8php.html#ad94aca4c260b8a892397786201dc4664":[6,0,4,307], -"boot_8php.html#ad9f1a90205081844e1e9c4b2ffd95458":[6,0,4,38], -"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[6,0,4,107], -"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,158], -"boot_8php.html#adb4c9bd011f9aaeb253742da18373b64":[6,0,4,227], -"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,280], -"boot_8php.html#add517a0958ac684792c62142a3877f81":[6,0,4,46], -"boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[6,0,4,24], -"boot_8php.html#ae09767b94688657978ff9366ec63684b":[6,0,4,313], -"boot_8php.html#ae0d9527117cd87dcba11986047ae336e":[6,0,4,50], -"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,121], -"boot_8php.html#ae2811a843962fb9bf5e34fc8f64eaadb":[6,0,4,32], -"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,287], -"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[6,0,4,202], -"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[6,0,4,176], -"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[6,0,4,210], -"boot_8php.html#ae97836b0547953be182a2334c9c91d3c":[6,0,4,42], -"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,300], -"boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[6,0,4,29], -"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,293], -"boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[6,0,4,59], -"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,249], -"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,281], -"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[6,0,4,184], -"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[6,0,4,117], -"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[6,0,4,196], -"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[6,0,4,211], -"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[6,0,4,160], -"boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[6,0,4,128], -"boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[6,0,4,34], -"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,284], -"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,204], -"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[6,0,4,69], -"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[6,0,4,60], -"boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007":[6,0,4,254], -"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[6,0,4,164], -"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[6,0,4,224], -"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[6,0,4,182], -"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[6,0,4,104], -"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,279], -"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[6,0,4,216], -"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[6,0,4,197], -"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,285], -"boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[6,0,4,56], -"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,232], -"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[6,0,4,96], -"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,168], +"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[6,0,4,86], +"boot_8php.html#ad34c1547020a305915bcc39707744690":[6,0,4,102], +"boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[6,0,4,34], +"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[6,0,4,248], +"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,278], +"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,272], +"boot_8php.html#ad94aca4c260b8a892397786201dc4664":[6,0,4,308], +"boot_8php.html#ad9f1a90205081844e1e9c4b2ffd95458":[6,0,4,39], +"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[6,0,4,108], +"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,159], +"boot_8php.html#adb4c9bd011f9aaeb253742da18373b64":[6,0,4,228], +"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,281], +"boot_8php.html#add517a0958ac684792c62142a3877f81":[6,0,4,47], +"boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[6,0,4,25], +"boot_8php.html#ae09767b94688657978ff9366ec63684b":[6,0,4,314], +"boot_8php.html#ae0d9527117cd87dcba11986047ae336e":[6,0,4,51], +"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,122], +"boot_8php.html#ae2811a843962fb9bf5e34fc8f64eaadb":[6,0,4,33], +"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,288], +"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[6,0,4,203], +"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[6,0,4,177], +"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[6,0,4,211], +"boot_8php.html#ae97836b0547953be182a2334c9c91d3c":[6,0,4,43], +"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,301], +"boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[6,0,4,30], +"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,294], +"boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[6,0,4,60], +"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,250], +"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,282], +"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[6,0,4,185], +"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[6,0,4,118], +"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[6,0,4,197], +"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[6,0,4,212], +"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[6,0,4,161], +"boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[6,0,4,129], +"boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[6,0,4,35], +"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,285], +"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,205], +"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[6,0,4,70], +"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[6,0,4,61], +"boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007":[6,0,4,255], +"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[6,0,4,165], +"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[6,0,4,225], +"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[6,0,4,183], +"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[6,0,4,105], +"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,280], +"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[6,0,4,217], +"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[6,0,4,198], +"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,286], +"boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[6,0,4,57], +"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,233], +"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[6,0,4,97], +"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,169], "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[6,0,4,14], -"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,322], -"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,243], +"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,323], +"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,244], "boxy_8php.html":[6,0,3,1,3,1,0], "cache_8php.html":[6,0,0,15], "channel_8php.html":[6,0,1,11], @@ -248,6 +249,5 @@ var NAVTREEINDEX1 = "classApp.html#a08f0537964d98958d218066364cff785":[5,0,6,1], "classApp.html#a0ce85be198e46570366cb3344f3c55b8":[5,0,6,46], "classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d":[5,0,6,56], -"classApp.html#a123b903dfe5d3488cc68db3471d36fd2":[5,0,6,30], -"classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11":[5,0,6,75] +"classApp.html#a123b903dfe5d3488cc68db3471d36fd2":[5,0,6,30] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 5a2d9154c..a1dce1e07 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,5 +1,6 @@ var NAVTREEINDEX2 = { +"classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11":[5,0,6,75], "classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3":[5,0,6,32], "classApp.html#a1936f2afce0dc0d1bbed15ae1f2ee81a":[5,0,6,69], "classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f":[5,0,6,57], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "classRedMatrix_1_1RedDAV_1_1RedFile.html#a07e1b19e7aaf3dcce822e9be8823a87d":[5,0,3,1,3,7], "classRedMatrix_1_1RedDAV_1_1RedFile.html#a21b6e9d420c352f25610a33f57858215":[5,0,3,1,3,10], "classRedMatrix_1_1RedDAV_1_1RedFile.html#a235700e2dfbe21dc41613d36e30e8acc":[5,0,3,1,3,11], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a709ec1288d21ddf1353524435ab916f0":[5,0,3,1,3,8], -"classRedMatrix_1_1RedDAV_1_1RedFile.html#a7241beecd01f5bb4e74659863dd85bd8":[5,0,3,1,3,2] +"classRedMatrix_1_1RedDAV_1_1RedFile.html#a709ec1288d21ddf1353524435ab916f0":[5,0,3,1,3,8] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index a5b469ebc..ecab6a1dc 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"classRedMatrix_1_1RedDAV_1_1RedFile.html#a7241beecd01f5bb4e74659863dd85bd8":[5,0,3,1,3,2], "classRedMatrix_1_1RedDAV_1_1RedFile.html#a9f14682acf3ccb70df5af5dd0687c689":[5,0,3,1,3,4], "classRedMatrix_1_1RedDAV_1_1RedFile.html#ab722dcb8c4598426c81fa2b2e4fad5f2":[5,0,3,1,3,12], "classRedMatrix_1_1RedDAV_1_1RedFile.html#ab7ab7ba81fab28eb02382cfdfd80ecfe":[5,0,3,1,3,1], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "darkness_8php.html":[6,0,3,1,0,2,0], "darknessleftaside_8php.html":[6,0,3,1,0,2,1], "darknessrightaside_8php.html":[6,0,3,1,0,2,2], -"datetime_8php.html":[6,0,0,28], -"datetime_8php.html#a3f239f94e23335d860b148958d87a093":[6,0,0,28,10] +"datetime_8php.html":[6,0,0,28] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index 926026c0c..58d4d8f45 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,7 +1,8 @@ var NAVTREEINDEX4 = { +"datetime_8php.html#a3f239f94e23335d860b148958d87a093":[6,0,0,28,10], "datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8":[6,0,0,28,5], -"datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3":[6,0,0,28,4], +"datetime_8php.html#a6732f99377eb2b57e643e3b7b3ba17b7":[6,0,0,28,4], "datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766":[6,0,0,28,2], "datetime_8php.html#a7df24d72ea05922d3127363e2295174c":[6,0,0,28,6], "datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82":[6,0,0,28,9], @@ -55,8 +56,7 @@ var NAVTREEINDEX4 = "diaspora_8php.html#a5d57518545baa31cf8a85a937a267681":[6,0,0,30,10], "diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff":[6,0,0,30,7], "diaspora_8php.html#a69f250b078a46e405647428ec3399a16":[6,0,0,30,27], -"diaspora_8php.html#a6f0a67b6b17503c125af32763be931b7":[6,0,0,30,4], -"diaspora_8php.html#a71fe9bb66626b4197ae018a230778bb2":[6,0,0,30,13], +"diaspora_8php.html#a72b2887e8be2e51d0114c16499e6ed4c":[6,0,0,30,13], "diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46":[6,0,0,30,11], "diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36":[6,0,0,30,3], "diaspora_8php.html#a858f70153c384f8778082cf7843a19da":[6,0,0,30,8], @@ -76,6 +76,7 @@ var NAVTREEINDEX4 = "diaspora_8php.html#ae6f52efd81fe515cd9912bc8293abf5b":[6,0,0,30,22], "diaspora_8php.html#aeb2bb78f620dbf51d9335e6eb7444f2c":[6,0,0,30,23], "diaspora_8php.html#af4698b165766f83d89ec1ea964bc92cc":[6,0,0,30,21], +"diaspora_8php.html#af677aaaaf921f5acecf52ae92ac42c66":[6,0,0,30,4], "dimport_8php.html":[6,0,0,31], "dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1":[6,0,0,31,0], "dir_0262a6a8df56a167e3761b6e5a54bb1c.html":[6,0,3,1,6], @@ -248,6 +249,5 @@ var NAVTREEINDEX4 = "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_0x61.html":[5,3,1,1], -"functions_func_0x62.html":[5,3,1,2] +"functions_func_0x61.html":[5,3,1,1] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index e7966be2d..09366743a 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,5 +1,6 @@ var NAVTREEINDEX5 = { +"functions_func_0x62.html":[5,3,1,2], "functions_func_0x63.html":[5,3,1,3], "functions_func_0x64.html":[5,3,1,4], "functions_func_0x65.html":[5,3,1,5], @@ -18,8 +19,8 @@ var NAVTREEINDEX5 = "functions_func_0x75.html":[5,3,1,18], "functions_func_0x76.html":[5,3,1,19], "functions_vars.html":[5,3,2], -"globals.html":[6,1,0], "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], @@ -248,6 +249,5 @@ var NAVTREEINDEX5 = "include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca":[6,0,0,8,10], "include_2apps_8php.html#aeab6a62d2f3dfaa86ed043a006305f46":[6,0,0,8,9], "include_2attach_8php.html":[6,0,0,9], -"include_2attach_8php.html#a052f14487ff2ce72f62a09fac8d7e997":[6,0,0,9,10], -"include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36":[6,0,0,9,0] +"include_2attach_8php.html#a052f14487ff2ce72f62a09fac8d7e997":[6,0,0,9,10] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index 6d6cc30d9..086fa4d9d 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,20 +1,23 @@ var NAVTREEINDEX6 = { +"include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36":[6,0,0,9,0], "include_2attach_8php.html#a1d72ef7cb940f6868e3e2a841cadfe8f":[6,0,0,9,13], "include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d":[6,0,0,9,5], "include_2attach_8php.html#a4dbfd7e1cef52aa9ef52f4b88929fa86":[6,0,0,9,9], "include_2attach_8php.html#a5c0875eafb8c0f8a0620ff7a875a2221":[6,0,0,9,2], -"include_2attach_8php.html#a5d484de2d19a93071571d6499a50ae34":[6,0,0,9,14], +"include_2attach_8php.html#a5d484de2d19a93071571d6499a50ae34":[6,0,0,9,15], "include_2attach_8php.html#a6aa00ea010ea030110faefb75eafc1ce":[6,0,0,9,11], -"include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a":[6,0,0,9,15], +"include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a":[6,0,0,9,17], "include_2attach_8php.html#a70bd666e080c2af5a91f5d14c297b8cd":[6,0,0,9,4], "include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f":[6,0,0,9,7], "include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3":[6,0,0,9,3], +"include_2attach_8php.html#aa166e1b48ac829a2366362e74fbcf355":[6,0,0,9,14], "include_2attach_8php.html#aa23ba65e5bb732be71fdd27ccff7d46e":[6,0,0,9,8], "include_2attach_8php.html#aa784c064ae323710f4ef68771a4a38db":[6,0,0,9,12], +"include_2attach_8php.html#aabd15487fa0e5d2dc5c480f72d23b886":[6,0,0,9,16], "include_2attach_8php.html#ab6830b3ab74a5d284876141ac80f6cbc":[6,0,0,9,6], "include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932":[6,0,0,9,1], -"include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909":[6,0,0,9,16], +"include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909":[6,0,0,9,18], "include_2bookmarks_8php.html":[6,0,0,14], "include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa":[6,0,0,14,1], "include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323":[6,0,0,14,0], @@ -246,8 +249,5 @@ var NAVTREEINDEX6 = "locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44":[6,0,1,52,0], "login_8php.html":[6,0,1,53], "login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[6,0,1,53,0], -"lostpass_8php.html":[6,0,1,54], -"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[6,0,1,54,0], -"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[6,0,1,54,1], -"magic_8php.html":[6,0,1,55] +"lostpass_8php.html":[6,0,1,54] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index ee6fd29fb..95ed221b9 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,5 +1,8 @@ var NAVTREEINDEX7 = { +"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[6,0,1,54,0], +"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[6,0,1,54,1], +"magic_8php.html":[6,0,1,55], "magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[6,0,1,55,0], "mail_8php.html":[6,0,1,56], "mail_8php.html#a3c7c485fc69f92371e8b20936040eca1":[6,0,1,56,0], @@ -64,8 +67,8 @@ var NAVTREEINDEX7 = "mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[6,0,1,80,2], "mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[6,0,1,80,0], "mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[6,0,1,80,1], -"mod_2probe_8php.html":[6,0,1,90], -"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[6,0,1,90,0], +"mod_2probe_8php.html":[6,0,1,89], +"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[6,0,1,89,0], "mod__chanview_8php.html":[6,0,3,1,0,0,0], "mod__import_8php.html":[6,0,3,0,4], "mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[6,0,3,0,4,0], @@ -81,12 +84,12 @@ var NAVTREEINDEX7 = "namespaceFriendica.html":[4,0,1], "namespaceRedMatrix.html":[4,0,3], "namespaceRedMatrix.html":[5,0,3], -"namespaceRedMatrix_1_1Import.html":[5,0,3,0], "namespaceRedMatrix_1_1Import.html":[4,0,3,0], +"namespaceRedMatrix_1_1Import.html":[5,0,3,0], "namespaceRedMatrix_1_1RedDAV.html":[5,0,3,1], "namespaceRedMatrix_1_1RedDAV.html":[4,0,3,1], -"namespaceacl__selectors.html":[4,0,0], "namespaceacl__selectors.html":[5,0,0], +"namespaceacl__selectors.html":[4,0,0], "namespacefriendica-to-smarty-tpl.html":[4,0,2], "namespacefriendica-to-smarty-tpl.html":[5,0,2], "namespacemembers.html":[4,1,0], @@ -95,8 +98,8 @@ var NAVTREEINDEX7 = "namespaces.html":[4,0], "namespaceupdatetpl.html":[5,0,4], "namespaceupdatetpl.html":[4,0,4], -"namespaceutil.html":[4,0,5], "namespaceutil.html":[5,0,5], +"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], @@ -232,22 +235,19 @@ var NAVTREEINDEX7 = "post_8php.html#af4b48181ce773ef0cdfc972441445c34":[6,0,1,86,0], "post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[6,0,1,86,1], "prate_8php.html":[6,0,1,87], -"prate_8php.html#af0e041483d1c6451ef5ce5f295e1dbfd":[6,0,1,87,0], -"prep_8php.html":[6,0,1,88], -"prep_8php.html#a1889254cb50366e7d6637cf2bbb83799":[6,0,1,88,1], -"prep_8php.html#a9a410206b7f229a4c3f6bdb2eb42690a":[6,0,1,88,0], -"pretheme_8php.html":[6,0,1,89], -"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[6,0,1,89,0], -"profile_8php.html":[6,0,1,91], -"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[6,0,1,91,0], -"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[6,0,1,91,1], -"profile__photo_8php.html":[6,0,1,92], -"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[6,0,1,92,0], -"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[6,0,1,92,1], -"profile__photo_8php.html#a561103564199da56e58061a4196eb102":[6,0,1,92,2], +"prate_8php.html#a39181c85d6c3f1567aba992c1ad90a4d":[6,0,1,87,0], +"prate_8php.html#af0e041483d1c6451ef5ce5f295e1dbfd":[6,0,1,87,1], +"pretheme_8php.html":[6,0,1,88], +"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[6,0,1,88,0], +"profile_8php.html":[6,0,1,90], +"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[6,0,1,90,0], +"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[6,0,1,90,1], +"profile__photo_8php.html":[6,0,1,91], +"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[6,0,1,91,0], +"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[6,0,1,91,1], +"profile__photo_8php.html#a561103564199da56e58061a4196eb102":[6,0,1,91,2], "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#a8bfa1ca2d1598a3d65f1f9bb803ca816":[6,0,0,67,1] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index 58386b7fd..907354142 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,36 +1,48 @@ var NAVTREEINDEX8 = { +"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,93], -"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[6,0,1,93,1], -"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[6,0,1,93,0], -"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[6,0,1,93,2], -"profperm_8php.html":[6,0,1,94], -"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[6,0,1,94,1], -"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[6,0,1,94,0], -"pubsites_8php.html":[6,0,1,95], -"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[6,0,1,95,0], -"pubsub_8php.html":[6,0,1,96], -"pubsub_8php.html#a24c84d42f653bdb084726c1e5791eebb":[6,0,1,96,1], -"pubsub_8php.html#aa011226f05254e700af8702f78aa6c5e":[6,0,1,96,2], -"pubsub_8php.html#aac8bf73bc11e6fd32494791dadd13123":[6,0,1,96,3], -"pubsub_8php.html#ad4e82341660e72cb8eaad56aa1e9e945":[6,0,1,96,0], -"pubsubhubbub_8php.html":[6,0,1,97], -"pubsubhubbub_8php.html#a2006060ce09105d08716154c06aecfcd":[6,0,1,97,0], -"pubsubhubbub_8php.html#a8a085a74c9da02cf0a5828413c09c9b0":[6,0,1,97,1], +"profiles_8php.html":[6,0,1,92], +"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[6,0,1,92,1], +"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[6,0,1,92,0], +"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[6,0,1,92,2], +"profperm_8php.html":[6,0,1,93], +"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[6,0,1,93,1], +"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[6,0,1,93,0], +"pubsites_8php.html":[6,0,1,94], +"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[6,0,1,94,0], +"pubsub_8php.html":[6,0,1,95], +"pubsub_8php.html#a24c84d42f653bdb084726c1e5791eebb":[6,0,1,95,1], +"pubsub_8php.html#aa011226f05254e700af8702f78aa6c5e":[6,0,1,95,2], +"pubsub_8php.html#aac8bf73bc11e6fd32494791dadd13123":[6,0,1,95,3], +"pubsub_8php.html#ad4e82341660e72cb8eaad56aa1e9e945":[6,0,1,95,0], +"pubsubhubbub_8php.html":[6,0,1,96], +"pubsubhubbub_8php.html#a2006060ce09105d08716154c06aecfcd":[6,0,1,96,0], +"pubsubhubbub_8php.html#a8a085a74c9da02cf0a5828413c09c9b0":[6,0,1,96,1], "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,98], -"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[6,0,1,98,0], -"rbmark_8php.html":[6,0,1,99], -"rbmark_8php.html#a43fec4960b50926251574762cc491f76":[6,0,1,99,0], -"rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c":[6,0,1,99,1], -"receive_8php.html":[6,0,1,100], -"receive_8php.html#a03d8fa26e77844020ba5602deca7d494":[6,0,1,100,0], +"randprof_8php.html":[6,0,1,97], +"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[6,0,1,97,0], +"rate_8php.html":[6,0,1,98], +"rate_8php.html#a051f31f49e9decd6d701bc5ab8fb7771":[6,0,1,98,1], +"rate_8php.html#a22fc66202522acb53fb3746fc21d80f2":[6,0,1,98,0], +"rate_8php.html#acae9f41835b07e3c977464030e8831fc":[6,0,1,98,2], +"ratenotif_8php.html":[6,0,0,71], +"ratenotif_8php.html#a0dd7843f7f10ba9ea29bcbdff1cdbf37":[6,0,0,71,0], +"ratings_8php.html":[6,0,1,99], +"ratings_8php.html#a25f835d136b884354cf1fa4d897c857b":[6,0,1,99,0], +"ratings_8php.html#abcfe38319c4e66eb70a687ecc2966ac3":[6,0,1,99,1], +"ratingsearch_8php.html":[6,0,1,100], +"ratingsearch_8php.html#aa609eb568ce273ef08e04a39ee532466":[6,0,1,100,0], +"rbmark_8php.html":[6,0,1,101], +"rbmark_8php.html#a43fec4960b50926251574762cc491f76":[6,0,1,101,0], +"rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c":[6,0,1,101,1], +"receive_8php.html":[6,0,1,102], +"receive_8php.html#a03d8fa26e77844020ba5602deca7d494":[6,0,1,102,0], "redable_8php.html":[6,0,3,0,6], "redable_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,0,6,0], "redbasic_2php_2style_8php.html":[6,0,3,1,3,0,1], @@ -39,10 +51,10 @@ var NAVTREEINDEX8 = "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,71], -"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], +"reddav_8php.html":[6,0,0,72], +"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[6,0,0,72,1], +"reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[6,0,0,72,2], +"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[6,0,0,72,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], @@ -57,197 +69,185 @@ var NAVTREEINDEX8 = "refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29":[6,0,0,1,1,0], "refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5":[6,0,0,1,1,5], "refimport_8php.html#aeec793cefa260f788b7d005adcb35796":[6,0,0,1,1,11], -"register_8php.html":[6,0,1,101], -"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[6,0,1,101,0], -"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[6,0,1,101,2], -"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[6,0,1,101,1], -"regmod_8php.html":[6,0,1,102], -"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[6,0,1,102,0], -"regver_8php.html":[6,0,1,103], -"regver_8php.html#ad2c5f644fd1b099abd7c715b7df6f50f":[6,0,1,103,0], -"removeaccount_8php.html":[6,0,1,104], -"removeaccount_8php.html#a26a3325292e932c59793430ab737126a":[6,0,1,104,1], -"removeaccount_8php.html#a516e7380b9e5796054aa8245f3509695":[6,0,1,104,0], -"removeme_8php.html":[6,0,1,105], -"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[6,0,1,105,0], -"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[6,0,1,105,1], -"rmagic_8php.html":[6,0,1,106], -"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[6,0,1,106,0], -"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[6,0,1,106,2], -"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[6,0,1,106,1], -"rpost_8php.html":[6,0,1,107], -"rpost_8php.html#a8190354d789000806d9879aea276728f":[6,0,1,107,0], -"rsd__xml_8php.html":[6,0,1,108], -"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[6,0,1,108,0], -"search_8php.html":[6,0,1,109], -"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[6,0,1,109,0], -"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[6,0,1,109,1], -"search__ac_8php.html":[6,0,1,110], -"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[6,0,1,110,0], -"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,111], -"service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[6,0,1,111,0], -"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,112], -"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[6,0,1,112,0], -"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[6,0,1,112,1], -"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[6,0,1,112,2], -"setup_8php.html":[6,0,1,113], -"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[6,0,1,113,2], -"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[6,0,1,113,14], -"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[6,0,1,113,5], -"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[6,0,1,113,13], -"setup_8php.html#a2b375ddc555140236fc500135de99371":[6,0,1,113,10], -"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[6,0,1,113,3], -"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[6,0,1,113,1], -"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[6,0,1,113,8], -"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[6,0,1,113,12], -"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[6,0,1,113,4], -"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[6,0,1,113,7], -"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[6,0,1,113,11], -"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[6,0,1,113,9], -"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[6,0,1,113,16], -"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[6,0,1,113,0], -"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[6,0,1,113,15], -"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[6,0,1,113,6], -"share_8php.html":[6,0,1,114], -"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[6,0,1,114,0], -"sharedwithme_8php.html":[6,0,1,115], -"sharedwithme_8php.html#a322b2b86b82e1d3a7de292758cd3d190":[6,0,1,115,0], +"regdir_8php.html":[6,0,1,103], +"regdir_8php.html#a6e703a4e66d2370c48500262cc0b56dd":[6,0,1,103,0], +"register_8php.html":[6,0,1,104], +"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[6,0,1,104,0], +"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[6,0,1,104,2], +"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[6,0,1,104,1], +"regmod_8php.html":[6,0,1,105], +"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[6,0,1,105,0], +"regver_8php.html":[6,0,1,106], +"regver_8php.html#ad2c5f644fd1b099abd7c715b7df6f50f":[6,0,1,106,0], +"removeaccount_8php.html":[6,0,1,107], +"removeaccount_8php.html#a26a3325292e932c59793430ab737126a":[6,0,1,107,1], +"removeaccount_8php.html#a516e7380b9e5796054aa8245f3509695":[6,0,1,107,0], +"removeme_8php.html":[6,0,1,108], +"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[6,0,1,108,0], +"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[6,0,1,108,1], +"rmagic_8php.html":[6,0,1,109], +"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[6,0,1,109,0], +"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[6,0,1,109,2], +"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[6,0,1,109,1], +"rpost_8php.html":[6,0,1,110], +"rpost_8php.html#a8190354d789000806d9879aea276728f":[6,0,1,110,0], +"rsd__xml_8php.html":[6,0,1,111], +"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[6,0,1,111,0], +"search_8php.html":[6,0,1,112], +"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[6,0,1,112,0], +"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[6,0,1,112,1], +"search__ac_8php.html":[6,0,1,113], +"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[6,0,1,113,0], +"security_8php.html":[6,0,0,73], +"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[6,0,0,73,2], +"security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[6,0,0,73,11], +"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[6,0,0,73,4], +"security_8php.html#a6126c77a1267e046ac59cf864613f011":[6,0,0,73,10], +"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[6,0,0,73,5], +"security_8php.html#a8d23d2597aae380a3341872fe9513380":[6,0,0,73,1], +"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[6,0,0,73,7], +"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[6,0,0,73,3], +"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[6,0,0,73,9], +"security_8php.html#acd06ef411116115c2f0a92633700db8a":[6,0,0,73,6], +"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[6,0,0,73,0], +"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[6,0,0,73,8], +"service__limits_8php.html":[6,0,1,114], +"service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[6,0,1,114,0], +"session_8php.html":[6,0,0,74], +"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[6,0,0,74,4], +"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[6,0,0,74,0], +"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[6,0,0,74,1], +"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[6,0,0,74,8], +"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[6,0,0,74,5], +"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[6,0,0,74,7], +"session_8php.html#ac4461c1984543d3553e73dba2771568f":[6,0,0,74,6], +"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[6,0,0,74,3], +"session_8php.html#af0100a2642a5268594bbd5742a03d885":[6,0,0,74,9], +"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[6,0,0,74,2], +"settings_8php.html":[6,0,1,115], +"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[6,0,1,115,0], +"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[6,0,1,115,1], +"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[6,0,1,115,2], +"setup_8php.html":[6,0,1,116], +"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[6,0,1,116,2], +"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[6,0,1,116,14], +"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[6,0,1,116,5], +"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[6,0,1,116,13], +"setup_8php.html#a2b375ddc555140236fc500135de99371":[6,0,1,116,10], +"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[6,0,1,116,3], +"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[6,0,1,116,1], +"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[6,0,1,116,8], +"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[6,0,1,116,12], +"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[6,0,1,116,4], +"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[6,0,1,116,7], +"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[6,0,1,116,11], +"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[6,0,1,116,9], +"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[6,0,1,116,16], +"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[6,0,1,116,0], +"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[6,0,1,116,15], +"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[6,0,1,116,6], +"share_8php.html":[6,0,1,117], +"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[6,0,1,117,0], +"sharedwithme_8php.html":[6,0,1,118], +"sharedwithme_8php.html#a322b2b86b82e1d3a7de292758cd3d190":[6,0,1,118,0], "simple__black__on__white_8php.html":[6,0,3,1,3,1,4], "simple__green__on__black_8php.html":[6,0,3,1,3,1,5], "simple__white__on__black_8php.html":[6,0,3,1,3,1,6], -"siteinfo_8php.html":[6,0,1,116], -"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[6,0,1,116,1], -"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[6,0,1,116,0], -"sitelist_8php.html":[6,0,1,117], -"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[6,0,1,117,0], -"smarty_8php.html":[6,0,0,74], -"smilies_8php.html":[6,0,1,118], -"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[6,0,1,118,0], -"socgraph_8php.html":[6,0,0,75], -"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[6,0,0,75,0], -"socgraph_8php.html#a2225cdc3651a0bea089b16cbfb6ddaf1":[6,0,0,75,6], -"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[6,0,0,75,7], -"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[6,0,0,75,8], -"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[6,0,0,75,9], -"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,119], -"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[6,0,1,119,0], -"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[6,0,1,119,1], -"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], +"siteinfo_8php.html":[6,0,1,119], +"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[6,0,1,119,1], +"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[6,0,1,119,0], +"sitelist_8php.html":[6,0,1,120], +"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[6,0,1,120,0], +"smarty_8php.html":[6,0,0,75], +"smilies_8php.html":[6,0,1,121], +"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[6,0,1,121,0], +"socgraph_8php.html":[6,0,0,76], +"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[6,0,0,76,0], +"socgraph_8php.html#a2225cdc3651a0bea089b16cbfb6ddaf1":[6,0,0,76,6], +"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[6,0,0,76,7], +"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[6,0,0,76,8], +"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[6,0,0,76,9], +"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[6,0,0,76,1], +"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[6,0,0,76,4], +"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[6,0,0,76,2], +"socgraph_8php.html#af175807406d94407a5e11742a3287746":[6,0,0,76,5], +"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[6,0,0,76,3], +"sources_8php.html":[6,0,1,122], +"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[6,0,1,122,0], +"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[6,0,1,122,1], +"spam_8php.html":[6,0,0,77], +"spam_8php.html#a05861201147b9a538d006f0269255cf9":[6,0,0,77,1], +"spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[6,0,0,77,0], "sporadic_2php_2style_8php.html":[6,0,3,1,4,0,0], "sporadic_2php_2theme_8php.html":[6,0,3,1,4,0,1], "sporadic_2php_2theme_8php.html#a76ef724ca35812c083088fe573507ef6":[6,0,3,1,4,0,1,0], -"sslify_8php.html":[6,0,1,120], -"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[6,0,1,120,0], -"starred_8php.html":[6,0,1,121], -"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[6,0,1,121,0], -"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], +"sslify_8php.html":[6,0,1,123], +"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[6,0,1,123,0], +"starred_8php.html":[6,0,1,124], +"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[6,0,1,124,0], +"statistics__fns_8php.html":[6,0,0,78], +"statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c":[6,0,0,78,2], +"statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[6,0,0,78,0], +"statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa":[6,0,0,78,3], +"statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe":[6,0,0,78,1], "stumble_2php_2style_8php.html":[6,0,3,1,5,0,0], "stumble_2php_2theme_8php.html":[6,0,3,1,5,0,1], "stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753":[6,0,3,1,5,0,1,0], -"subthread_8php.html":[6,0,1,122], -"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[6,0,1,122,0], +"subthread_8php.html":[6,0,1,125], +"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[6,0,1,125,0], "suckerberg_2php_2style_8php.html":[6,0,3,1,6,0,0], "suckerberg_2php_2theme_8php.html":[6,0,3,1,6,0,1], "suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8":[6,0,3,1,6,0,1,0], -"suggest_8php.html":[6,0,1,123], -"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[6,0,1,123,0], -"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[6,0,1,123,1], +"suggest_8php.html":[6,0,1,126], +"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[6,0,1,126,0], +"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[6,0,1,126,1], "sunbeam_2php_2style_8php.html":[6,0,3,1,7,0,0], "sunbeam_2php_2theme_8php.html":[6,0,3,1,7,0,1], "sunbeam_2php_2theme_8php.html#a72ead3f3b9b85241d4661c4f5c5f1525":[6,0,3,1,7,0,1,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,124], -"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[6,0,1,124,0], -"tagrm_8php.html":[6,0,1,125], -"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[6,0,1,125,1], -"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[6,0,1,125,0], -"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,45], -"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[6,0,0,81,53], -"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,78], -"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[6,0,0,81,50], -"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[6,0,0,81,5], -"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[6,0,0,81,89], -"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[6,0,0,81,38], -"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[6,0,0,81,41], -"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[6,0,0,81,57], -"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[6,0,0,81,60], -"text_8php.html#a1e510c53624933ce9b7d6715784894db":[6,0,0,81,54], -"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[6,0,0,81,55], -"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[6,0,0,81,48], -"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[6,0,0,81,79], -"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[6,0,0,81,4], -"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[6,0,0,81,98], -"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[6,0,0,81,86], -"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[6,0,0,81,56], -"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[6,0,0,81,10], -"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[6,0,0,81,83], -"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[6,0,0,81,100], -"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[6,0,0,81,24], -"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[6,0,0,81,95], -"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[6,0,0,81,81], -"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[6,0,0,81,34], -"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[6,0,0,81,47], -"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[6,0,0,81,26] +"system__unavailable_8php.html":[6,0,0,79], +"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[6,0,0,79,0], +"tagger_8php.html":[6,0,1,127], +"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[6,0,1,127,0], +"tagrm_8php.html":[6,0,1,128], +"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[6,0,1,128,1], +"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[6,0,1,128,0], +"taxonomy_8php.html":[6,0,0,80], +"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[6,0,0,80,10], +"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[6,0,0,80,1], +"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[6,0,0,80,3], +"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[6,0,0,80,7], +"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[6,0,0,80,5], +"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[6,0,0,80,4], +"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[6,0,0,80,11], +"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[6,0,0,80,2], +"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[6,0,0,80,8], +"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[6,0,0,80,15], +"taxonomy_8php.html#a83f0a60f9e0c07d8451dc5be95b17287":[6,0,0,80,16], +"taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4":[6,0,0,80,0], +"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[6,0,0,80,14], +"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[6,0,0,80,12], +"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[6,0,0,80,13], +"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[6,0,0,80,6], +"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[6,0,0,80,9], +"template__processor_8php.html":[6,0,0,81], +"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[6,0,0,81,3], +"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[6,0,0,81,1], +"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[6,0,0,81,2], +"text_8php.html":[6,0,0,82], +"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[6,0,0,82,45], +"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[6,0,0,82,53], +"text_8php.html#a070384ec000fd65043fce11d5392d241":[6,0,0,82,6], +"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[6,0,0,82,16], +"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[6,0,0,82,11], +"text_8php.html#a10dde167249ed5abf190a7a0986878ea":[6,0,0,82,78], +"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[6,0,0,82,50], +"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[6,0,0,82,5], +"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[6,0,0,82,89], +"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[6,0,0,82,38], +"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[6,0,0,82,41], +"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[6,0,0,82,57], +"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[6,0,0,82,60], +"text_8php.html#a1e510c53624933ce9b7d6715784894db":[6,0,0,82,54], +"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[6,0,0,82,55], +"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[6,0,0,82,48] }; diff --git a/doc/html/navtreeindex9.js b/doc/html/navtreeindex9.js index 62667506a..14eeb4b43 100644 --- a/doc/html/navtreeindex9.js +++ b/doc/html/navtreeindex9.js @@ -1,89 +1,103 @@ var NAVTREEINDEX9 = { -"text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc":[6,0,0,81,19], -"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[6,0,0,81,80], -"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[6,0,0,81,7], -"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[6,0,0,81,96], -"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[6,0,0,81,39], -"text_8php.html#a4446c7f8996a280f7e08b7bfe6c6c8bc":[6,0,0,81,52], -"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[6,0,0,81,35], -"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[6,0,0,81,49], -"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[6,0,0,81,69], -"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[6,0,0,81,58], -"text_8php.html#a4e4045a07c55cacf3e4b63bde190d954":[6,0,0,81,51], -"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[6,0,0,81,25], -"text_8php.html#a4e7698aca48982512594b274543c3b9b":[6,0,0,81,68], -"text_8php.html#a543447c5ed766535221e2d9636b379ee":[6,0,0,81,92], -"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[6,0,0,81,9], -"text_8php.html#a5ee0715f7fa144b1307a3ff10222c609":[6,0,0,81,36], -"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[6,0,0,81,14], -"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[6,0,0,81,91], -"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[6,0,0,81,46], -"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[6,0,0,81,31], -"text_8php.html#a740ad03e00459039a2c0992246c4e727":[6,0,0,81,87], -"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[6,0,0,81,1], -"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[6,0,0,81,40], -"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[6,0,0,81,30], -"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[6,0,0,81,88], -"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[6,0,0,81,8], -"text_8php.html#a876e94892867019935b348b573299352":[6,0,0,81,76], -"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[6,0,0,81,82], -"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,67], -"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[6,0,0,81,20], -"text_8php.html#a905c3895feb6f276df23f07f16f9bb52":[6,0,0,81,93], -"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[6,0,0,81,3], -"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[6,0,0,81,62], -"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[6,0,0,81,73], -"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[6,0,0,81,71], -"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[6,0,0,81,75], -"text_8php.html#aa22feef4de326e1d7078dedd892e615c":[6,0,0,81,37], -"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,63], -"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[6,0,0,81,42], -"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[6,0,0,81,32], -"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[6,0,0,81,99], -"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[6,0,0,81,77], -"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[6,0,0,81,94], -"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[6,0,0,81,97], -"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[6,0,0,81,64], -"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[6,0,0,81,43], -"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[6,0,0,81,84], -"text_8php.html#ace3c98538c63e09b70a363210b414112":[6,0,0,81,22], -"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,72], -"text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[6,0,0,81,27], -"text_8php.html#adba17ec946f4285285dc100f7860bf51":[6,0,0,81,59], -"text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357":[6,0,0,81,28], -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[6,0,0,81,44], -"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[6,0,0,81,74], -"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[6,0,0,81,18], -"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[6,0,0,81,65], -"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,85], -"text_8php.html#afb1ae3e1f6985d4b78dd1d00473e39fb":[6,0,0,81,90], -"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[6,0,0,81,70], -"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,66], -"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[6,0,0,81,61], +"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[6,0,0,82,79], +"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[6,0,0,82,4], +"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[6,0,0,82,98], +"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[6,0,0,82,86], +"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[6,0,0,82,56], +"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[6,0,0,82,10], +"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[6,0,0,82,83], +"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[6,0,0,82,100], +"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[6,0,0,82,24], +"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[6,0,0,82,95], +"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[6,0,0,82,81], +"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[6,0,0,82,34], +"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[6,0,0,82,47], +"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[6,0,0,82,26], +"text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc":[6,0,0,82,19], +"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[6,0,0,82,80], +"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[6,0,0,82,7], +"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[6,0,0,82,96], +"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[6,0,0,82,39], +"text_8php.html#a4446c7f8996a280f7e08b7bfe6c6c8bc":[6,0,0,82,52], +"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[6,0,0,82,35], +"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[6,0,0,82,49], +"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[6,0,0,82,69], +"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[6,0,0,82,58], +"text_8php.html#a4e4045a07c55cacf3e4b63bde190d954":[6,0,0,82,51], +"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[6,0,0,82,25], +"text_8php.html#a4e7698aca48982512594b274543c3b9b":[6,0,0,82,68], +"text_8php.html#a543447c5ed766535221e2d9636b379ee":[6,0,0,82,92], +"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[6,0,0,82,9], +"text_8php.html#a5ee0715f7fa144b1307a3ff10222c609":[6,0,0,82,36], +"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[6,0,0,82,14], +"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[6,0,0,82,91], +"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[6,0,0,82,46], +"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[6,0,0,82,31], +"text_8php.html#a740ad03e00459039a2c0992246c4e727":[6,0,0,82,87], +"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[6,0,0,82,1], +"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[6,0,0,82,40], +"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[6,0,0,82,30], +"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[6,0,0,82,88], +"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[6,0,0,82,8], +"text_8php.html#a876e94892867019935b348b573299352":[6,0,0,82,76], +"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[6,0,0,82,82], +"text_8php.html#a87a3cefc603302c78982f1d8e1245265":[6,0,0,82,15], +"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[6,0,0,82,21], +"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[6,0,0,82,67], +"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[6,0,0,82,20], +"text_8php.html#a905c3895feb6f276df23f07f16f9bb52":[6,0,0,82,93], +"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[6,0,0,82,3], +"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[6,0,0,82,62], +"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[6,0,0,82,73], +"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[6,0,0,82,71], +"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[6,0,0,82,75], +"text_8php.html#aa22feef4de326e1d7078dedd892e615c":[6,0,0,82,37], +"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[6,0,0,82,33], +"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[6,0,0,82,17], +"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[6,0,0,82,63], +"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[6,0,0,82,42], +"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[6,0,0,82,32], +"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[6,0,0,82,99], +"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[6,0,0,82,77], +"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[6,0,0,82,94], +"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[6,0,0,82,97], +"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[6,0,0,82,64], +"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[6,0,0,82,43], +"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[6,0,0,82,84], +"text_8php.html#ace3c98538c63e09b70a363210b414112":[6,0,0,82,22], +"text_8php.html#acedb584f65114a33f389efb796172a91":[6,0,0,82,2], +"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[6,0,0,82,13], +"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[6,0,0,82,72], +"text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[6,0,0,82,27], +"text_8php.html#adba17ec946f4285285dc100f7860bf51":[6,0,0,82,59], +"text_8php.html#ae0333c304ec5b4b72e66bb2933fa7357":[6,0,0,82,28], +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[6,0,0,82,44], +"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[6,0,0,82,74], +"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[6,0,0,82,18], +"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[6,0,0,82,65], +"text_8php.html#af5eb4a9c1599764f80c5bc71e0125d4b":[6,0,0,82,29], +"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[6,0,0,82,0], +"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[6,0,0,82,85], +"text_8php.html#afb1ae3e1f6985d4b78dd1d00473e39fb":[6,0,0,82,90], +"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[6,0,0,82,70], +"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[6,0,0,82,23], +"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[6,0,0,82,12], +"text_8php.html#afe54312607d92f7ce9593f5760831f80":[6,0,0,82,66], +"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[6,0,0,82,61], "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], "theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,1,2,0,0,0], "theme_2redbasic_2php_2theme__init_8php.html":[6,0,3,1,3,0,3], -"thing_8php.html":[6,0,1,126], -"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[6,0,1,126,0], -"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[6,0,1,126,1], +"thing_8php.html":[6,0,1,129], +"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[6,0,1,129,0], +"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[6,0,1,129,1], "todo.html":[3], -"toggle__mobile_8php.html":[6,0,1,127], -"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[6,0,1,127,0], -"toggle__safesearch_8php.html":[6,0,1,128], -"toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[6,0,1,128,0], +"toggle__mobile_8php.html":[6,0,1,130], +"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[6,0,1,130,0], +"toggle__safesearch_8php.html":[6,0,1,131], +"toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[6,0,1,131,0], "tpldebug_8php.html":[6,0,2,7], "tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[6,0,2,7,0], "tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149":[6,0,2,7,1], @@ -97,19 +111,19 @@ var NAVTREEINDEX9 = "typohelper_8php.html":[6,0,2,9], "typohelper_8php.html#a7542d95618011800c61773127fa625cf":[6,0,2,9,0], "typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[6,0,2,9,1], -"uexport_8php.html":[6,0,1,129], -"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[6,0,1,129,1], -"uexport_8php.html#ae6f79d60916c01675c8cf663cb5fec84":[6,0,1,129,0], -"update__channel_8php.html":[6,0,1,130], -"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[6,0,1,130,0], -"update__display_8php.html":[6,0,1,131], -"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[6,0,1,131,0], -"update__home_8php.html":[6,0,1,132], -"update__home_8php.html#a668340089acd150b830134476a647d05":[6,0,1,132,0], -"update__network_8php.html":[6,0,1,133], -"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[6,0,1,133,0], -"update__search_8php.html":[6,0,1,134], -"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[6,0,1,134,0], +"uexport_8php.html":[6,0,1,132], +"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[6,0,1,132,1], +"uexport_8php.html#ae6f79d60916c01675c8cf663cb5fec84":[6,0,1,132,0], +"update__channel_8php.html":[6,0,1,133], +"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[6,0,1,133,0], +"update__display_8php.html":[6,0,1,134], +"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[6,0,1,134,0], +"update__home_8php.html":[6,0,1,135], +"update__home_8php.html#a668340089acd150b830134476a647d05":[6,0,1,135,0], +"update__network_8php.html":[6,0,1,136], +"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[6,0,1,136,0], +"update__search_8php.html":[6,0,1,137], +"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[6,0,1,137,0], "updatetpl_8py.html":[6,0,2,10], "updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[6,0,2,10,5], "updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[6,0,2,10,2], @@ -125,113 +139,114 @@ var NAVTREEINDEX9 = "view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793":[6,0,3,1,3,0,0,0], "view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,3,0,0,1], "view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,3,0,0,2], -"view_8php.html":[6,0,1,135], -"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[6,0,1,135,0], -"viewconnections_8php.html":[6,0,1,136], -"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[6,0,1,136,1], -"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[6,0,1,136,0], -"viewsrc_8php.html":[6,0,1,137], -"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[6,0,1,137,0], -"vote_8php.html":[6,0,1,138], -"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[6,0,1,138,2], -"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[6,0,1,138,0], -"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[6,0,1,138,1], -"wall__attach_8php.html":[6,0,1,139], -"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[6,0,1,139,0], -"wall__upload_8php.html":[6,0,1,140], -"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[6,0,1,140,0], -"webfinger_8php.html":[6,0,1,141], -"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[6,0,1,141,0], -"webpages_8php.html":[6,0,1,142], -"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[6,0,1,142,0], -"webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7":[6,0,1,142,1], -"wfinger_8php.html":[6,0,1,143], -"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[6,0,1,143,0], +"view_8php.html":[6,0,1,138], +"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[6,0,1,138,0], +"viewconnections_8php.html":[6,0,1,139], +"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[6,0,1,139,1], +"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[6,0,1,139,0], +"viewsrc_8php.html":[6,0,1,140], +"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[6,0,1,140,0], +"vote_8php.html":[6,0,1,141], +"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[6,0,1,141,2], +"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[6,0,1,141,0], +"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[6,0,1,141,1], +"wall__attach_8php.html":[6,0,1,142], +"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[6,0,1,142,0], +"wall__upload_8php.html":[6,0,1,143], +"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[6,0,1,143,0], +"webfinger_8php.html":[6,0,1,144], +"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[6,0,1,144,0], +"webpages_8php.html":[6,0,1,145], +"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[6,0,1,145,0], +"webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7":[6,0,1,145,1], +"wfinger_8php.html":[6,0,1,146], +"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[6,0,1,146,0], "widedarkness_8php.html":[6,0,3,1,0,2,10], -"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,144], -"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[6,0,1,144,0], -"xpoco_8php.html":[6,0,1,145], -"xpoco_8php.html#a715e5b14ad5bd4a6f9c12ddfdcac07c2":[6,0,1,145,0], -"xrd_8php.html":[6,0,1,146], -"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[6,0,1,146,0], -"xref_8php.html":[6,0,1,147], -"xref_8php.html#a9bee399213b8de8226b0d60834307473":[6,0,1,147,0], +"widgets_8php.html":[6,0,0,83], +"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[6,0,0,83,12], +"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[6,0,0,83,30], +"widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[6,0,0,83,3], +"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[6,0,0,83,9], +"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[6,0,0,83,10], +"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[6,0,0,83,17], +"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[6,0,0,83,19], +"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[6,0,0,83,20], +"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[6,0,0,83,6], +"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[6,0,0,83,29], +"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[6,0,0,83,13], +"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[6,0,0,83,31], +"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[6,0,0,83,22], +"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[6,0,0,83,16], +"widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[6,0,0,83,2], +"widgets_8php.html#a7d0724165067077ff46484e4610e4323":[6,0,0,83,26], +"widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e":[6,0,0,83,25], +"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[6,0,0,83,27], +"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[6,0,0,83,11], +"widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20":[6,0,0,83,21], +"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[6,0,0,83,7], +"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[6,0,0,83,8], +"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[6,0,0,83,28], +"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[6,0,0,83,24], +"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[6,0,0,83,33], +"widgets_8php.html#aced5cb177f630b30799c5eab873ee75c":[6,0,0,83,1], +"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[6,0,0,83,15], +"widgets_8php.html#add9b24d3304e529a7975e96122315554":[6,0,0,83,0], +"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[6,0,0,83,14], +"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[6,0,0,83,32], +"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[6,0,0,83,5], +"widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380":[6,0,0,83,23], +"widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5":[6,0,0,83,4], +"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[6,0,0,83,18], +"xchan_8php.html":[6,0,1,147], +"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[6,0,1,147,0], +"xpoco_8php.html":[6,0,1,148], +"xpoco_8php.html#a715e5b14ad5bd4a6f9c12ddfdcac07c2":[6,0,1,148,0], +"xrd_8php.html":[6,0,1,149], +"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[6,0,1,149,0], +"xref_8php.html":[6,0,1,150], +"xref_8php.html#a9bee399213b8de8226b0d60834307473":[6,0,1,150,0], "yolo_2php_2style_8php.html":[6,0,3,1,8,0,0], "yolo_2php_2theme_8php.html":[6,0,3,1,8,0,1], "yolo_2php_2theme_8php.html#a2e02a06ae3f6ea911b45931ba7cbc3da":[6,0,3,1,8,0,1,0], -"zfinger_8php.html":[6,0,1,148], -"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[6,0,1,148,0], -"zot_8php.html":[6,0,0,83], -"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[6,0,0,83,16], -"zot_8php.html#a084c581d534e7e3b759488b46602288f":[6,0,0,83,21], -"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,19], -"zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac":[6,0,0,83,29], -"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,26], -"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[6,0,0,83,32], -"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[6,0,0,83,23], -"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[6,0,0,83,0], -"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[6,0,0,83,31], -"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,30], -"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#aaa77f03d4e89a70ebf0402e1cc9426d7":[6,0,0,83,24], -"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[6,0,0,83,17], -"zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254":[6,0,0,83,18], -"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[6,0,0,83,28], -"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[6,0,0,83,20], -"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[6,0,0,83,33], -"zot_8php.html#ab718f7ab0df9c4153037d1a3f2613181":[6,0,0,83,15], -"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,22], -"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[6,0,0,83,25], -"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[6,0,0,83,27], -"zotfeed_8php.html":[6,0,1,149], -"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[6,0,1,149,0], -"zping_8php.html":[6,0,1,150], -"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[6,0,1,150,0] +"zfinger_8php.html":[6,0,1,151], +"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[6,0,1,151,0], +"zot_8php.html":[6,0,0,84], +"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[6,0,0,84,16], +"zot_8php.html#a084c581d534e7e3b759488b46602288f":[6,0,0,84,21], +"zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d":[6,0,0,84,11], +"zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75":[6,0,0,84,9], +"zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[6,0,0,84,6], +"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[6,0,0,84,7], +"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[6,0,0,84,19], +"zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac":[6,0,0,84,29], +"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[6,0,0,84,5], +"zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315":[6,0,0,84,8], +"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[6,0,0,84,26], +"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[6,0,0,84,32], +"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[6,0,0,84,23], +"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[6,0,0,84,0], +"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[6,0,0,84,31], +"zot_8php.html#a8e22dbc6f884be3644a892a876cbd972":[6,0,0,84,3], +"zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988":[6,0,0,84,12], +"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[6,0,0,84,30], +"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[6,0,0,84,14], +"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[6,0,0,84,13], +"zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5":[6,0,0,84,1], +"zot_8php.html#aaa77f03d4e89a70ebf0402e1cc9426d7":[6,0,0,84,24], +"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[6,0,0,84,17], +"zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254":[6,0,0,84,18], +"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[6,0,0,84,28], +"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[6,0,0,84,20], +"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[6,0,0,84,33], +"zot_8php.html#ab718f7ab0df9c4153037d1a3f2613181":[6,0,0,84,15], +"zot_8php.html#ac301c67864917c35922257950ae0f95c":[6,0,0,84,10], +"zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d":[6,0,0,84,4], +"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[6,0,0,84,2], +"zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca":[6,0,0,84,22], +"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[6,0,0,84,25], +"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[6,0,0,84,27], +"zotfeed_8php.html":[6,0,1,152], +"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[6,0,1,152,0], +"zping_8php.html":[6,0,1,153], +"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[6,0,1,153,0] }; diff --git a/doc/html/permissions_8php.html b/doc/html/permissions_8php.html index 3ab8f7c8c..d3382f2d3 100644 --- a/doc/html/permissions_8php.html +++ b/doc/html/permissions_8php.html @@ -324,7 +324,7 @@ Functions
    Returns
    bool true if permission is allowed for observer on channel
    -

    Referenced by acl_init(), Conversation\add_thread(), advanced_profile(), api_statuses_home_timeline(), api_statuses_repeat(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_mkdir(), attach_store(), block_content(), chat_content(), chatsvc_init(), check_list_permissions(), common_content(), common_friends_visitor_widget(), contact_block(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), RedMatrix\RedDAV\RedFile\delete(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_photo(), diaspora_post(), diaspora_reshare(), display_content(), editblock_content(), editlayout_content(), editwebpage_content(), get_feed_for(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), item_post(), like_content(), local_dir_update(), p_init(), photo_init(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), poco(), post_activity_item(), post_post(), process_delivery(), process_mail_delivery(), profile_content(), profile_load(), profile_sidebar(), RedChannelList(), search_content(), Conversation\set_mode(), RedMatrix\RedDAV\RedBrowser\set_writeable(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), subthread_content(), tag_deliver(), tgroup_check(), update_birthdays(), viewconnections_content(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_item(), widget_photo_albums(), widget_tagcloud_wall(), z_readdir(), and zot_feed().

    +

    Referenced by acl_init(), Conversation\add_thread(), advanced_profile(), api_statuses_home_timeline(), api_statuses_repeat(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_mkdir(), attach_store(), block_content(), chat_content(), chatsvc_init(), check_list_permissions(), common_content(), common_friends_visitor_widget(), contact_block(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), RedMatrix\RedDAV\RedFile\delete(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_photo(), diaspora_post(), diaspora_reshare(), display_content(), editblock_content(), editlayout_content(), editwebpage_content(), get_feed_for(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), item_post(), like_content(), local_dir_update(), p_init(), photo_init(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), poco(), post_activity_item(), post_post(), process_delivery(), process_mail_delivery(), profile_content(), profile_load(), profile_sidebar(), RedChannelList(), search_content(), Conversation\set_mode(), RedMatrix\RedDAV\RedBrowser\set_writeable(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), subthread_content(), tag_deliver(), tgroup_check(), update_birthdays(), viewconnections_content(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_item(), widget_photo_albums(), widget_tagcloud_wall(), z_readdir(), and zot_feed().

    diff --git a/doc/html/php_2theme__init_8php.html b/doc/html/php_2theme__init_8php.html index af3456ea0..4bec46ff2 100644 --- a/doc/html/php_2theme__init_8php.html +++ b/doc/html/php_2theme__init_8php.html @@ -127,7 +127,7 @@ Variables

    Those who require this feature will know what to do with it. Those who don't, won't. Eventually this functionality needs to be provided by a module such that permissions can be enforced. At the moment it's more of a proof of concept; but sufficient for our immediate needs.

    -

    Referenced by acl_init(), admin_page_channels(), api_call(), api_direct_messages_box(), api_user(), appman_content(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), channel_content(), channel_init(), channel_remove(), chat_content(), chat_init(), chat_post(), chatroom_create(), chatroom_destroy(), cloud_init(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), conversation(), dav_init(), design_tools(), diaspora_msg_build(), diaspora_pubmsg_build(), diaspora_request(), directory_run(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_addtocal(), events_content(), events_post(), feed_init(), filestorage_content(), filestorage_post(), fix_attached_file_permissions(), get_feed_for(), get_public_feed(), handle_feed(), handle_tag(), hcard_init(), home_init(), impel_init(), import_post(), importelm_post(), invite_content(), is_public_profile(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), locs_content(), locs_post(), magic_init(), mail_content(), mail_post(), menu_add_item(), menu_edit_item(), message_content(), mitem_content(), mitem_post(), mood_init(), nav(), network_content(), network_init(), new_contact(), notifier_run(), parse_app_description(), photo_upload(), photos_albums_list(), photos_content(), photos_create_item(), photos_list_photos(), ping_init(), poke_init(), post_activity_item(), prate_post(), probe_content(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_photo_init(), profile_photo_post(), profiles_content(), profiles_post(), profperm_init(), rbmark_content(), rbmark_post(), refimport_content(), reflect_comment_store(), reflect_photo_callback(), rpost_content(), send_message(), settings_post(), sharedwithme_content(), sources_post(), start_delivery_chain(), store_diaspora_comment_sig(), tagger_content(), thing_content(), thing_init(), uexport_init(), update_remote_id(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), widget_settings_menu(), zot_build_packet(), zot_encode_locations(), zot_finger(), and zot_refresh().

    +

    Referenced by acl_init(), admin_page_channels(), api_call(), api_direct_messages_box(), api_user(), appman_content(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), channel_content(), channel_init(), channel_remove(), chat_content(), chat_init(), chat_post(), chatroom_create(), chatroom_destroy(), cloud_init(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), conversation(), dav_init(), design_tools(), diaspora_msg_build(), diaspora_pubmsg_build(), diaspora_request(), directory_run(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_addtocal(), events_content(), events_post(), feed_init(), filestorage_content(), filestorage_post(), fix_attached_file_permissions(), get_feed_for(), get_public_feed(), handle_feed(), handle_tag(), hcard_init(), home_init(), impel_init(), import_post(), importelm_post(), invite_content(), is_public_profile(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), locs_content(), locs_post(), magic_init(), mail_content(), mail_post(), menu_add_item(), menu_edit_item(), message_content(), mitem_content(), mitem_post(), mood_init(), nav(), network_content(), network_init(), new_contact(), notifier_run(), parse_app_description(), photo_upload(), photos_albums_list(), photos_content(), photos_create_item(), photos_list_photos(), ping_init(), poke_init(), post_activity_item(), prate_init(), prate_post(), probe_content(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_photo_init(), profile_photo_post(), profiles_content(), profiles_post(), profperm_init(), rate_content(), rate_init(), rate_post(), ratenotif_run(), rbmark_content(), rbmark_post(), refimport_content(), reflect_comment_store(), reflect_photo_callback(), rpost_content(), send_message(), settings_post(), sharedwithme_content(), sources_post(), start_delivery_chain(), store_diaspora_comment_sig(), tagger_content(), thing_content(), thing_init(), uexport_init(), update_remote_id(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), widget_rating(), widget_settings_menu(), zot_build_packet(), zot_encode_locations(), zot_finger(), and zot_refresh().

    diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index 18111195e..7a3cd563a 100644 --- a/doc/html/plugin_8php.html +++ b/doc/html/plugin_8php.html @@ -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(), 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(), poke_content(), poll_content(), populate_acl(), prep_content(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), sharedwithme_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().

    +

    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(), 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(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rate_content(), ratings_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), sharedwithme_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().

    @@ -446,7 +446,7 @@ Functions
    -

    Referenced by construct_page().

    +

    Referenced by construct_page(), and widget_rating().

    diff --git a/doc/html/prate_8php.html b/doc/html/prate_8php.html index 926591812..b03402ff5 100644 --- a/doc/html/prate_8php.html +++ b/doc/html/prate_8php.html @@ -112,10 +112,28 @@ $(document).ready(function(){initNavTree('prate_8php.html','');}); + +

    Functions

     prate_init (&$a)
     
     prate_post (&$a)
     

    Function Documentation

    + +
    +
    + + + + + + + + +
    prate_init ($a)
    +
    + +
    +
    diff --git a/doc/html/prate_8php.js b/doc/html/prate_8php.js index 60d18fd37..61a21a7cb 100644 --- a/doc/html/prate_8php.js +++ b/doc/html/prate_8php.js @@ -1,4 +1,5 @@ var prate_8php = [ + [ "prate_init", "prate_8php.html#a39181c85d6c3f1567aba992c1ad90a4d", null ], [ "prate_post", "prate_8php.html#af0e041483d1c6451ef5ce5f295e1dbfd", null ] ]; \ No newline at end of file diff --git a/doc/html/search/all_64.js b/doc/html/search/all_64.js index 2542f8de4..a9d49725c 100644 --- a/doc/html/search/all_64.js +++ b/doc/html/search/all_64.js @@ -7,7 +7,7 @@ var searchData= ['datesel',['datesel',['../datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766',1,'datetime.php']]], ['datetime_2ephp',['datetime.php',['../datetime_8php.html',1,'']]], ['datetime_5fconvert',['datetime_convert',['../datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226',1,'datetime.php']]], - ['datetimesel',['datetimesel',['../datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3',1,'datetime.php']]], + ['datetimesel',['datetimesel',['../datetime_8php.html#a6732f99377eb2b57e643e3b7b3ba17b7',1,'datetime.php']]], ['dav_2ephp',['dav.php',['../dav_8php.html',1,'']]], ['dav_5finit',['dav_init',['../dav_8php.html#addd46b5ec6cd6c23e065634462b7f040',1,'dav.php']]], ['day_5ftranslate',['day_translate',['../text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63',1,'text.php']]], @@ -67,7 +67,7 @@ var searchData= ['diaspora_5fcomment',['diaspora_comment',['../diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829',1,'diaspora.php']]], ['diaspora_5fconversation',['diaspora_conversation',['../diaspora_8php.html#adef30b6fac948baedcc7194d5d155b5f',1,'diaspora.php']]], ['diaspora_5fdecode',['diaspora_decode',['../diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36',1,'diaspora.php']]], - ['diaspora_5fdispatch',['diaspora_dispatch',['../diaspora_8php.html#a6f0a67b6b17503c125af32763be931b7',1,'diaspora.php']]], + ['diaspora_5fdispatch',['diaspora_dispatch',['../diaspora_8php.html#af677aaaaf921f5acecf52ae92ac42c66',1,'diaspora.php']]], ['diaspora_5fdispatch_5fpublic',['diaspora_dispatch_public',['../diaspora_8php.html#ab99505944728d46585b8312989de533d',1,'diaspora.php']]], ['diaspora_5fget_5fcontact_5fby_5fhandle',['diaspora_get_contact_by_handle',['../diaspora_8php.html#aa8e551a53fcce34be3942d0c3e20d1f4',1,'diaspora.php']]], ['diaspora_5fhandle_5ffrom_5fcontact',['diaspora_handle_from_contact',['../diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff',1,'diaspora.php']]], @@ -78,7 +78,7 @@ var searchData= ['diaspora_5fmessage',['diaspora_message',['../diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46',1,'diaspora.php']]], ['diaspora_5fmsg_5fbuild',['diaspora_msg_build',['../diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b',1,'diaspora.php']]], ['diaspora_5fol',['diaspora_ol',['../bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4',1,'bb2diaspora.php']]], - ['diaspora_5fphoto',['diaspora_photo',['../diaspora_8php.html#a71fe9bb66626b4197ae018a230778bb2',1,'diaspora.php']]], + ['diaspora_5fphoto',['diaspora_photo',['../diaspora_8php.html#a72b2887e8be2e51d0114c16499e6ed4c',1,'diaspora.php']]], ['diaspora_5fpost',['diaspora_post',['../diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31',1,'diaspora.php']]], ['diaspora_5fprocess_5foutbound',['diaspora_process_outbound',['../diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605',1,'diaspora.php']]], ['diaspora_5fprofile',['diaspora_profile',['../diaspora_8php.html#a900abf51398b2ef26cd2cd31c52f1b0f',1,'diaspora.php']]], diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js index 8010a12e7..4f800695f 100644 --- a/doc/html/search/all_67.js +++ b/doc/html/search/all_67.js @@ -41,6 +41,7 @@ var searchData= ['get_5fdiaspora_5fkey',['get_diaspora_key',['../diaspora_8php.html#a9bf7ef4094e0e14f6e2b7fe76ab7ad2e',1,'diaspora.php']]], ['get_5fdiaspora_5freshare_5fxml',['get_diaspora_reshare_xml',['../diaspora_8php.html#ac9e41e46626dc608204bf4b5e16e62d7',1,'diaspora.php']]], ['get_5fdim',['get_dim',['../datetime_8php.html#a7df24d72ea05922d3127363e2295174c',1,'datetime.php']]], + ['get_5fdirectory_5fprimary',['get_directory_primary',['../boot_8php.html#a07a9d3910794df1c98ad2017e6a8e4b9',1,'boot.php']]], ['get_5fdirectory_5frealm',['get_directory_realm',['../boot_8php.html#a329400dcb29897cdaae3020109272285',1,'boot.php']]], ['get_5fdisplay_5fmode',['get_display_mode',['../classItem.html#a23d4057883f8ed888c0c2ff12d8aa5d0',1,'Item']]], ['get_5fevents',['get_events',['../identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312',1,'identity.php']]], diff --git a/doc/html/search/all_69.js b/doc/html/search/all_69.js index a0ac33855..d53eccbbb 100644 --- a/doc/html/search/all_69.js +++ b/doc/html/search/all_69.js @@ -29,6 +29,7 @@ var searchData= ['importelm_5fpost',['importelm_post',['../importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f',1,'importelm.php']]], ['importer_2ephp',['Importer.php',['../Importer_8php.html',1,'']]], ['in_5farrayi',['in_arrayi',['../text_8php.html#a75c326298519ed14ebe762194c8a3f2a',1,'text.php']]], + ['in_5fgroup',['in_group',['../include_2attach_8php.html#aa166e1b48ac829a2366362e74fbcf355',1,'attach.php']]], ['info',['info',['../boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498',1,'boot.php']]], ['insert_5fhook',['insert_hook',['../plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b',1,'plugin.php']]], ['install',['install',['../classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746',1,'dba_driver']]], diff --git a/doc/html/search/all_70.js b/doc/html/search/all_70.js index 4116d10f2..0eb3fe612 100644 --- a/doc/html/search/all_70.js +++ b/doc/html/search/all_70.js @@ -139,12 +139,10 @@ var searchData= ['post_5fvar',['post_var',['../pubsubhubbub_8php.html#a2006060ce09105d08716154c06aecfcd',1,'pubsubhubbub.php']]], ['posted_5fdates',['posted_dates',['../items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0',1,'items.php']]], ['prate_2ephp',['prate.php',['../prate_8php.html',1,'']]], + ['prate_5finit',['prate_init',['../prate_8php.html#a39181c85d6c3f1567aba992c1ad90a4d',1,'prate.php']]], ['prate_5fpost',['prate_post',['../prate_8php.html#af0e041483d1c6451ef5ce5f295e1dbfd',1,'prate.php']]], ['preg_5fcallback_5fhelp_5finclude',['preg_callback_help_include',['../help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4',1,'help.php']]], ['preg_5fheart',['preg_heart',['../text_8php.html#ac19d2b33a58372a357a43d51eed19162',1,'text.php']]], - ['prep_2ephp',['prep.php',['../prep_8php.html',1,'']]], - ['prep_5fcontent',['prep_content',['../prep_8php.html#a9a410206b7f229a4c3f6bdb2eb42690a',1,'prep.php']]], - ['prep_5finit',['prep_init',['../prep_8php.html#a1889254cb50366e7d6637cf2bbb83799',1,'prep.php']]], ['prepare_5fbody',['prepare_body',['../text_8php.html#ae4df74296fbe55051ed3c035e55205e5',1,'text.php']]], ['prepare_5fpage',['prepare_page',['../conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c',1,'conversation.php']]], ['prepare_5ftext',['prepare_text',['../text_8php.html#afe54312607d92f7ce9593f5760831f80',1,'text.php']]], @@ -156,8 +154,8 @@ var searchData= ['private_5fmessages_5ffetch_5fconversation',['private_messages_fetch_conversation',['../include_2message_8php.html#a5f8de9847e203329e317ac38dc646898',1,'message.php']]], ['private_5fmessages_5ffetch_5fmessage',['private_messages_fetch_message',['../include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091',1,'message.php']]], ['private_5fmessages_5flist',['private_messages_list',['../include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e',1,'message.php']]], - ['probe_2ephp',['probe.php',['../include_2probe_8php.html',1,'']]], ['probe_2ephp',['probe.php',['../mod_2probe_8php.html',1,'']]], + ['probe_2ephp',['probe.php',['../include_2probe_8php.html',1,'']]], ['probe_5factivity_5fstream',['probe_activity_stream',['../include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c',1,'probe.php']]], ['probe_5fcontent',['probe_content',['../mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99',1,'probe.php']]], ['probe_5fdfrn',['probe_dfrn',['../include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0',1,'probe.php']]], diff --git a/doc/html/search/all_72.js b/doc/html/search/all_72.js index 2f08eb9c4..2a17dfca2 100644 --- a/doc/html/search/all_72.js +++ b/doc/html/search/all_72.js @@ -7,6 +7,17 @@ var searchData= ['random_5fstring_5ftext',['RANDOM_STRING_TEXT',['../text_8php.html#a2ffd79c60cc87cec24ef76447b905187',1,'text.php']]], ['randprof_2ephp',['randprof.php',['../randprof_8php.html',1,'']]], ['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]], + ['rate_2ephp',['rate.php',['../rate_8php.html',1,'']]], + ['rate_5fcontent',['rate_content',['../rate_8php.html#a22fc66202522acb53fb3746fc21d80f2',1,'rate.php']]], + ['rate_5finit',['rate_init',['../rate_8php.html#a051f31f49e9decd6d701bc5ab8fb7771',1,'rate.php']]], + ['rate_5fpost',['rate_post',['../rate_8php.html#acae9f41835b07e3c977464030e8831fc',1,'rate.php']]], + ['ratenotif_2ephp',['ratenotif.php',['../ratenotif_8php.html',1,'']]], + ['ratenotif_5frun',['ratenotif_run',['../ratenotif_8php.html#a0dd7843f7f10ba9ea29bcbdff1cdbf37',1,'ratenotif.php']]], + ['ratings_2ephp',['ratings.php',['../ratings_8php.html',1,'']]], + ['ratings_5fcontent',['ratings_content',['../ratings_8php.html#a25f835d136b884354cf1fa4d897c857b',1,'ratings.php']]], + ['ratings_5finit',['ratings_init',['../ratings_8php.html#abcfe38319c4e66eb70a687ecc2966ac3',1,'ratings.php']]], + ['ratingsearch_2ephp',['ratingsearch.php',['../ratingsearch_8php.html',1,'']]], + ['ratingsearch_5finit',['ratingsearch_init',['../ratingsearch_8php.html#aa609eb568ce273ef08e04a39ee532466',1,'ratingsearch.php']]], ['rbmark_2ephp',['rbmark.php',['../rbmark_8php.html',1,'']]], ['rbmark_5fcontent',['rbmark_content',['../rbmark_8php.html#a43fec4960b50926251574762cc491f76',1,'rbmark.php']]], ['rbmark_5fpost',['rbmark_post',['../rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c',1,'rbmark.php']]], @@ -16,6 +27,7 @@ var searchData= ['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]], ['receive_2ephp',['receive.php',['../receive_8php.html',1,'']]], ['receive_5fpost',['receive_post',['../receive_8php.html#a03d8fa26e77844020ba5602deca7d494',1,'receive.php']]], + ['recursive_5factivity_5frecipients',['recursive_activity_recipients',['../include_2attach_8php.html#aabd15487fa0e5d2dc5c480f72d23b886',1,'attach.php']]], ['red_5fescape_5fcodeblock',['red_escape_codeblock',['../items_8php.html#a49905ea75adfe8a2d110be344d18d6a6',1,'items.php']]], ['red_5fescape_5fzrl_5fcallback',['red_escape_zrl_callback',['../items_8php.html#a83a349062945d585edb4b3c5d763ab6e',1,'items.php']]], ['red_5fitem_5fnew',['red_item_new',['../include_2api_8php.html#aafa82b65a9f879a1a1197cfe8aaf3898',1,'api.php']]], @@ -63,6 +75,8 @@ var searchData= ['reflect_5foverwrite',['REFLECT_OVERWRITE',['../refimport_8php.html#aeec793cefa260f788b7d005adcb35796',1,'refimport.php']]], ['reflect_5fphoto_5fcallback',['reflect_photo_callback',['../refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5',1,'refimport.php']]], ['reflect_5fuserfile',['REFLECT_USERFILE',['../refimport_8php.html#a684a44d2401abf75f441591bcb41d10d',1,'refimport.php']]], + ['regdir_2ephp',['regdir.php',['../regdir_8php.html',1,'']]], + ['regdir_5finit',['regdir_init',['../regdir_8php.html#a6e703a4e66d2370c48500262cc0b56dd',1,'regdir.php']]], ['register_2ephp',['register.php',['../register_8php.html',1,'']]], ['register_5fapprove',['REGISTER_APPROVE',['../boot_8php.html#a7176c0f9f1c98421b97735d892cf6252',1,'boot.php']]], ['register_5fclosed',['REGISTER_CLOSED',['../boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1',1,'boot.php']]], diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js index 6ecd9d302..156bff173 100644 --- a/doc/html/search/all_77.js +++ b/doc/html/search/all_77.js @@ -41,6 +41,7 @@ var searchData= ['widget_5fphoto_5frand',['widget_photo_rand',['../widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380',1,'widgets.php']]], ['widget_5fprofile',['widget_profile',['../widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923',1,'widgets.php']]], ['widget_5frandom_5fblock',['widget_random_block',['../widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e',1,'widgets.php']]], + ['widget_5frating',['widget_rating',['../widgets_8php.html#a7d0724165067077ff46484e4610e4323',1,'widgets.php']]], ['widget_5fsavedsearch',['widget_savedsearch',['../widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8',1,'widgets.php']]], ['widget_5fsettings_5fmenu',['widget_settings_menu',['../widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01',1,'widgets.php']]], ['widget_5fsuggestedchats',['widget_suggestedchats',['../widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8',1,'widgets.php']]], diff --git a/doc/html/search/files_70.js b/doc/html/search/files_70.js index 2cbb96014..9b9d3ac87 100644 --- a/doc/html/search/files_70.js +++ b/doc/html/search/files_70.js @@ -26,7 +26,6 @@ var searchData= ['poller_2ephp',['poller.php',['../poller_8php.html',1,'']]], ['post_2ephp',['post.php',['../post_8php.html',1,'']]], ['prate_2ephp',['prate.php',['../prate_8php.html',1,'']]], - ['prep_2ephp',['prep.php',['../prep_8php.html',1,'']]], ['pretheme_2ephp',['pretheme.php',['../pretheme_8php.html',1,'']]], ['probe_2ephp',['probe.php',['../include_2probe_8php.html',1,'']]], ['probe_2ephp',['probe.php',['../mod_2probe_8php.html',1,'']]], diff --git a/doc/html/search/files_72.js b/doc/html/search/files_72.js index c61471237..6c14899fe 100644 --- a/doc/html/search/files_72.js +++ b/doc/html/search/files_72.js @@ -1,6 +1,10 @@ var searchData= [ ['randprof_2ephp',['randprof.php',['../randprof_8php.html',1,'']]], + ['rate_2ephp',['rate.php',['../rate_8php.html',1,'']]], + ['ratenotif_2ephp',['ratenotif.php',['../ratenotif_8php.html',1,'']]], + ['ratings_2ephp',['ratings.php',['../ratings_8php.html',1,'']]], + ['ratingsearch_2ephp',['ratingsearch.php',['../ratingsearch_8php.html',1,'']]], ['rbmark_2ephp',['rbmark.php',['../rbmark_8php.html',1,'']]], ['readme_2emd',['README.md',['../README_8md.html',1,'']]], ['receive_2ephp',['receive.php',['../receive_8php.html',1,'']]], @@ -12,6 +16,7 @@ var searchData= ['reddirectory_2ephp',['RedDirectory.php',['../RedDirectory_8php.html',1,'']]], ['redfile_2ephp',['RedFile.php',['../RedFile_8php.html',1,'']]], ['refimport_2ephp',['refimport.php',['../refimport_8php.html',1,'']]], + ['regdir_2ephp',['regdir.php',['../regdir_8php.html',1,'']]], ['register_2ephp',['register.php',['../register_8php.html',1,'']]], ['regmod_2ephp',['regmod.php',['../regmod_8php.html',1,'']]], ['regver_2ephp',['regver.php',['../regver_8php.html',1,'']]], diff --git a/doc/html/search/functions_64.js b/doc/html/search/functions_64.js index 4d0554329..85fe78603 100644 --- a/doc/html/search/functions_64.js +++ b/doc/html/search/functions_64.js @@ -2,7 +2,7 @@ var searchData= [ ['datesel',['datesel',['../datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766',1,'datetime.php']]], ['datetime_5fconvert',['datetime_convert',['../datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226',1,'datetime.php']]], - ['datetimesel',['datetimesel',['../datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3',1,'datetime.php']]], + ['datetimesel',['datetimesel',['../datetime_8php.html#a6732f99377eb2b57e643e3b7b3ba17b7',1,'datetime.php']]], ['dav_5finit',['dav_init',['../dav_8php.html#addd46b5ec6cd6c23e065634462b7f040',1,'dav.php']]], ['day_5ftranslate',['day_translate',['../text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63',1,'text.php']]], ['db_5fconcat',['db_concat',['../dba__driver_8php.html#a7c1b98a710ead27382c958ad3216c4ee',1,'dba_driver.php']]], @@ -43,7 +43,7 @@ var searchData= ['diaspora_5fcomment',['diaspora_comment',['../diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829',1,'diaspora.php']]], ['diaspora_5fconversation',['diaspora_conversation',['../diaspora_8php.html#adef30b6fac948baedcc7194d5d155b5f',1,'diaspora.php']]], ['diaspora_5fdecode',['diaspora_decode',['../diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36',1,'diaspora.php']]], - ['diaspora_5fdispatch',['diaspora_dispatch',['../diaspora_8php.html#a6f0a67b6b17503c125af32763be931b7',1,'diaspora.php']]], + ['diaspora_5fdispatch',['diaspora_dispatch',['../diaspora_8php.html#af677aaaaf921f5acecf52ae92ac42c66',1,'diaspora.php']]], ['diaspora_5fdispatch_5fpublic',['diaspora_dispatch_public',['../diaspora_8php.html#ab99505944728d46585b8312989de533d',1,'diaspora.php']]], ['diaspora_5fget_5fcontact_5fby_5fhandle',['diaspora_get_contact_by_handle',['../diaspora_8php.html#aa8e551a53fcce34be3942d0c3e20d1f4',1,'diaspora.php']]], ['diaspora_5fhandle_5ffrom_5fcontact',['diaspora_handle_from_contact',['../diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff',1,'diaspora.php']]], @@ -54,7 +54,7 @@ var searchData= ['diaspora_5fmessage',['diaspora_message',['../diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46',1,'diaspora.php']]], ['diaspora_5fmsg_5fbuild',['diaspora_msg_build',['../diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b',1,'diaspora.php']]], ['diaspora_5fol',['diaspora_ol',['../bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4',1,'bb2diaspora.php']]], - ['diaspora_5fphoto',['diaspora_photo',['../diaspora_8php.html#a71fe9bb66626b4197ae018a230778bb2',1,'diaspora.php']]], + ['diaspora_5fphoto',['diaspora_photo',['../diaspora_8php.html#a72b2887e8be2e51d0114c16499e6ed4c',1,'diaspora.php']]], ['diaspora_5fpost',['diaspora_post',['../diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31',1,'diaspora.php']]], ['diaspora_5fprocess_5foutbound',['diaspora_process_outbound',['../diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605',1,'diaspora.php']]], ['diaspora_5fprofile',['diaspora_profile',['../diaspora_8php.html#a900abf51398b2ef26cd2cd31c52f1b0f',1,'diaspora.php']]], diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js index 638f42409..2a27ee489 100644 --- a/doc/html/search/functions_67.js +++ b/doc/html/search/functions_67.js @@ -41,6 +41,7 @@ var searchData= ['get_5fdiaspora_5fkey',['get_diaspora_key',['../diaspora_8php.html#a9bf7ef4094e0e14f6e2b7fe76ab7ad2e',1,'diaspora.php']]], ['get_5fdiaspora_5freshare_5fxml',['get_diaspora_reshare_xml',['../diaspora_8php.html#ac9e41e46626dc608204bf4b5e16e62d7',1,'diaspora.php']]], ['get_5fdim',['get_dim',['../datetime_8php.html#a7df24d72ea05922d3127363e2295174c',1,'datetime.php']]], + ['get_5fdirectory_5fprimary',['get_directory_primary',['../boot_8php.html#a07a9d3910794df1c98ad2017e6a8e4b9',1,'boot.php']]], ['get_5fdirectory_5frealm',['get_directory_realm',['../boot_8php.html#a329400dcb29897cdaae3020109272285',1,'boot.php']]], ['get_5fdisplay_5fmode',['get_display_mode',['../classItem.html#a23d4057883f8ed888c0c2ff12d8aa5d0',1,'Item']]], ['get_5fevents',['get_events',['../identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312',1,'identity.php']]], diff --git a/doc/html/search/functions_69.js b/doc/html/search/functions_69.js index b7d49b52c..3e709a7e5 100644 --- a/doc/html/search/functions_69.js +++ b/doc/html/search/functions_69.js @@ -22,6 +22,7 @@ var searchData= ['import_5fxchan',['import_xchan',['../zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315',1,'zot.php']]], ['importelm_5fpost',['importelm_post',['../importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f',1,'importelm.php']]], ['in_5farrayi',['in_arrayi',['../text_8php.html#a75c326298519ed14ebe762194c8a3f2a',1,'text.php']]], + ['in_5fgroup',['in_group',['../include_2attach_8php.html#aa166e1b48ac829a2366362e74fbcf355',1,'attach.php']]], ['info',['info',['../boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498',1,'boot.php']]], ['insert_5fhook',['insert_hook',['../plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b',1,'plugin.php']]], ['install',['install',['../classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746',1,'dba_driver']]], diff --git a/doc/html/search/functions_70.js b/doc/html/search/functions_70.js index d44f6dda9..f3227d873 100644 --- a/doc/html/search/functions_70.js +++ b/doc/html/search/functions_70.js @@ -60,11 +60,10 @@ var searchData= ['post_5fpost',['post_post',['../post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75',1,'post.php']]], ['post_5fvar',['post_var',['../pubsubhubbub_8php.html#a2006060ce09105d08716154c06aecfcd',1,'pubsubhubbub.php']]], ['posted_5fdates',['posted_dates',['../items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0',1,'items.php']]], + ['prate_5finit',['prate_init',['../prate_8php.html#a39181c85d6c3f1567aba992c1ad90a4d',1,'prate.php']]], ['prate_5fpost',['prate_post',['../prate_8php.html#af0e041483d1c6451ef5ce5f295e1dbfd',1,'prate.php']]], ['preg_5fcallback_5fhelp_5finclude',['preg_callback_help_include',['../help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4',1,'help.php']]], ['preg_5fheart',['preg_heart',['../text_8php.html#ac19d2b33a58372a357a43d51eed19162',1,'text.php']]], - ['prep_5fcontent',['prep_content',['../prep_8php.html#a9a410206b7f229a4c3f6bdb2eb42690a',1,'prep.php']]], - ['prep_5finit',['prep_init',['../prep_8php.html#a1889254cb50366e7d6637cf2bbb83799',1,'prep.php']]], ['prepare_5fbody',['prepare_body',['../text_8php.html#ae4df74296fbe55051ed3c035e55205e5',1,'text.php']]], ['prepare_5fpage',['prepare_page',['../conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c',1,'conversation.php']]], ['prepare_5ftext',['prepare_text',['../text_8php.html#afe54312607d92f7ce9593f5760831f80',1,'text.php']]], diff --git a/doc/html/search/functions_72.js b/doc/html/search/functions_72.js index 853dd12ae..e0761d586 100644 --- a/doc/html/search/functions_72.js +++ b/doc/html/search/functions_72.js @@ -3,11 +3,19 @@ var searchData= ['random_5fprofile',['random_profile',['../Contact_8php.html#a7e3f5bef8ea1d2bf8434c9be36a2b713',1,'Contact.php']]], ['random_5fstring',['random_string',['../text_8php.html#a9d6a5ee1290de7a8b483fe78585daade',1,'text.php']]], ['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]], + ['rate_5fcontent',['rate_content',['../rate_8php.html#a22fc66202522acb53fb3746fc21d80f2',1,'rate.php']]], + ['rate_5finit',['rate_init',['../rate_8php.html#a051f31f49e9decd6d701bc5ab8fb7771',1,'rate.php']]], + ['rate_5fpost',['rate_post',['../rate_8php.html#acae9f41835b07e3c977464030e8831fc',1,'rate.php']]], + ['ratenotif_5frun',['ratenotif_run',['../ratenotif_8php.html#a0dd7843f7f10ba9ea29bcbdff1cdbf37',1,'ratenotif.php']]], + ['ratings_5fcontent',['ratings_content',['../ratings_8php.html#a25f835d136b884354cf1fa4d897c857b',1,'ratings.php']]], + ['ratings_5finit',['ratings_init',['../ratings_8php.html#abcfe38319c4e66eb70a687ecc2966ac3',1,'ratings.php']]], + ['ratingsearch_5finit',['ratingsearch_init',['../ratingsearch_8php.html#aa609eb568ce273ef08e04a39ee532466',1,'ratingsearch.php']]], ['rbmark_5fcontent',['rbmark_content',['../rbmark_8php.html#a43fec4960b50926251574762cc491f76',1,'rbmark.php']]], ['rbmark_5fpost',['rbmark_post',['../rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c',1,'rbmark.php']]], ['rconnect_5furl',['rconnect_url',['../Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91',1,'Contact.php']]], ['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]], ['receive_5fpost',['receive_post',['../receive_8php.html#a03d8fa26e77844020ba5602deca7d494',1,'receive.php']]], + ['recursive_5factivity_5frecipients',['recursive_activity_recipients',['../include_2attach_8php.html#aabd15487fa0e5d2dc5c480f72d23b886',1,'attach.php']]], ['red_5fescape_5fcodeblock',['red_escape_codeblock',['../items_8php.html#a49905ea75adfe8a2d110be344d18d6a6',1,'items.php']]], ['red_5fescape_5fzrl_5fcallback',['red_escape_zrl_callback',['../items_8php.html#a83a349062945d585edb4b3c5d763ab6e',1,'items.php']]], ['red_5fitem_5fnew',['red_item_new',['../include_2api_8php.html#aafa82b65a9f879a1a1197cfe8aaf3898',1,'api.php']]], @@ -32,6 +40,7 @@ var searchData= ['reflect_5ffind_5fuser',['reflect_find_user',['../refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d',1,'refimport.php']]], ['reflect_5fget_5fchannel',['reflect_get_channel',['../refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c',1,'refimport.php']]], ['reflect_5fphoto_5fcallback',['reflect_photo_callback',['../refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5',1,'refimport.php']]], + ['regdir_5finit',['regdir_init',['../regdir_8php.html#a6e703a4e66d2370c48500262cc0b56dd',1,'regdir.php']]], ['register_5fcontent',['register_content',['../register_8php.html#a0e91f57f111407ea8d3223a05022bb2a',1,'register.php']]], ['register_5fhook',['register_hook',['../plugin_8php.html#a425472c5f3afc137268b2ad45652b209',1,'plugin.php']]], ['register_5finit',['register_init',['../register_8php.html#ae20c0cd40f738d6295de58b9202c83d5',1,'register.php']]], diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js index ff626b35a..5afb75a3b 100644 --- a/doc/html/search/functions_77.js +++ b/doc/html/search/functions_77.js @@ -34,6 +34,7 @@ var searchData= ['widget_5fphoto_5frand',['widget_photo_rand',['../widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380',1,'widgets.php']]], ['widget_5fprofile',['widget_profile',['../widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923',1,'widgets.php']]], ['widget_5frandom_5fblock',['widget_random_block',['../widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e',1,'widgets.php']]], + ['widget_5frating',['widget_rating',['../widgets_8php.html#a7d0724165067077ff46484e4610e4323',1,'widgets.php']]], ['widget_5fsavedsearch',['widget_savedsearch',['../widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8',1,'widgets.php']]], ['widget_5fsettings_5fmenu',['widget_settings_menu',['../widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01',1,'widgets.php']]], ['widget_5fsuggestedchats',['widget_suggestedchats',['../widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8',1,'widgets.php']]], diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index 2914e66dc..74ee470cd 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -481,7 +481,7 @@ Variables
    @@ -509,7 +509,7 @@ Variables @@ -733,7 +733,7 @@ Variables
    Returns
    string
    -

    Referenced by admin_page_logs(), app_store(), app_update(), appman_post(), bookmark_add(), chatsvc_post(), connect_post(), connedit_post(), create_identity(), events_post(), fsuggest_post(), get_atom_elements(), item_post(), mail_post(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), network_content(), notes_init(), pdledit_post(), poco_load(), post_activity_item(), prate_post(), profiles_post(), rbmark_content(), rbmark_post(), thing_init(), and z_input_filter().

    +

    Referenced by admin_page_logs(), app_store(), app_update(), appman_post(), bookmark_add(), chatsvc_post(), connect_post(), connedit_post(), create_identity(), events_post(), fsuggest_post(), get_atom_elements(), item_post(), mail_post(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), network_content(), notes_init(), pdledit_post(), poco_load(), post_activity_item(), prate_post(), profiles_post(), rate_post(), rbmark_content(), rbmark_post(), thing_init(), and z_input_filter().

    @@ -751,7 +751,7 @@ Variables @@ -1566,7 +1566,7 @@ Variables -

    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(), contact_remove(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), datetime_convert(), dav_init(), 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(), 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(), 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(), prune_hub_reinstalls(), public_recips(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), random_profile(), 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(), set_linkified_perms(), 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().

    +

    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(), contact_remove(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), datetime_convert(), dav_init(), 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(), 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(), 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(), process_rating_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), prune_hub_reinstalls(), public_recips(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), random_profile(), ratenotif_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(), set_linkified_perms(), 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().

    @@ -1749,7 +1749,7 @@ Variables
    Returns
    string Filtered string
    -

    Referenced by admin_page_logs_post(), admin_page_site_post(), channel_content(), connections_content(), conversation(), create_account(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_profile(), diaspora_reshare(), diaspora_retraction(), diaspora_signed_retraction(), directory_content(), discover_by_url(), filestorage_post(), follow_init(), get_atom_elements(), get_diaspora_reshare_xml(), group_post(), help_content(), invite_post(), item_post(), item_store(), item_store_update(), like_content(), lostpass_post(), mail_post(), mail_store(), mood_init(), network_content(), oexchange_content(), openid_content(), photos_post(), poco(), poke_init(), post_var(), profiles_post(), pubsub_init(), pubsub_post(), register_post(), sanitise_acl(), settings_post(), setup_content(), setup_post(), subthread_content(), tagger_content(), and xrd_init().

    +

    Referenced by admin_page_logs_post(), admin_page_site_post(), channel_content(), connections_content(), conversation(), create_account(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_profile(), diaspora_reshare(), diaspora_retraction(), diaspora_signed_retraction(), directory_content(), discover_by_url(), filestorage_post(), follow_init(), get_atom_elements(), get_diaspora_reshare_xml(), group_post(), help_content(), invite_post(), item_post(), item_store(), item_store_update(), like_content(), lostpass_post(), mail_post(), mail_store(), mood_init(), network_content(), oexchange_content(), openid_content(), photos_post(), poco(), poke_init(), post_var(), profiles_post(), pubsub_init(), pubsub_post(), register_post(), sanitise_acl(), settings_post(), setup_content(), setup_post(), subthread_content(), tagger_content(), and xrd_init().

    @@ -1785,7 +1785,7 @@ Variables @@ -1990,7 +1990,7 @@ Variables
    -

    Referenced by aes_encapsulate(), app_store(), attach_mkdir(), attach_store(), bb_parse_crypt(), bbcode(), build_sync_packet(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), diaspora_msg_build(), diaspora_transmit(), directory_run(), event_store_event(), fsuggest_post(), group_add(), import_directory_profile(), import_xchan(), item_message_id(), item_store(), local_dir_update(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), notification(), notifier_run(), prepare_body(), process_location_delivery(), profiles_init(), pubsubhubbub_init(), reflect_comment_store(), removeaccount_content(), removeme_content(), send_message(), send_reg_approval_email(), settings_post(), setup_post(), thing_init(), verify_email_address(), and zot_process_message_request().

    +

    Referenced by aes_encapsulate(), app_store(), attach_mkdir(), attach_store(), bb_parse_crypt(), bbcode(), build_sync_packet(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), diaspora_msg_build(), diaspora_transmit(), directory_run(), event_store_event(), fsuggest_post(), group_add(), import_directory_profile(), import_xchan(), item_message_id(), item_store(), local_dir_update(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), notification(), notifier_run(), prepare_body(), process_location_delivery(), profiles_init(), pubsubhubbub_init(), ratenotif_run(), reflect_comment_store(), removeaccount_content(), removeme_content(), send_message(), send_reg_approval_email(), settings_post(), setup_post(), thing_init(), verify_email_address(), and zot_process_message_request().

    @@ -2055,7 +2055,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(), 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(), poke_content(), poll_content(), populate_acl(), prep_content(), 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(), sharedwithme_content(), 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().

    +

    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(), 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(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rate_content(), ratings_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(), sharedwithme_content(), 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().

    @@ -2421,7 +2421,7 @@ Variables diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index 139d6adeb..06cec64f8 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(), account_service_class_allows(), 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(), dav_init(), 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(), linkify_tags(), list_smilies(), 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(), manage_content(), 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(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), prate_post(), preg_heart(), prep_content(), prep_init(), 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(), pubsub_init(), pubsub_post(), pubsubhubbub_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(), sharedwithme_content(), siteinfo_content(), siteinfo_init(), smilies(), smilies_content(), sources_post(), sporadic_init(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), sunbeam_init(), 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(), xpoco_init(), xrd_init(), yolo_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(), account_service_class_allows(), 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(), dav_init(), 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(), linkify_tags(), list_smilies(), 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(), manage_content(), 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(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), prate_init(), prate_post(), 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(), pubsub_init(), pubsub_post(), pubsubhubbub_init(), push_lang(), queue_run(), randprof_init(), rate_content(), rate_init(), rate_post(), ratenotif_run(), ratings_content(), ratings_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(), sharedwithme_content(), siteinfo_content(), siteinfo_init(), smilies(), smilies_content(), sources_post(), sporadic_init(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), sunbeam_init(), 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_rating(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xpoco_init(), xrd_init(), yolo_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

    diff --git a/doc/html/widgets_8php.html b/doc/html/widgets_8php.html index 03fd52903..7bff62152 100644 --- a/doc/html/widgets_8php.html +++ b/doc/html/widgets_8php.html @@ -181,6 +181,8 @@ Functions    widget_random_block ($arr)   + widget_rating ($arr) + 

    Detailed Description

    This file contains the widgets.

    @@ -610,6 +612,24 @@ Functions
    +
    + + +
    +
    + + + + + + + + +
    widget_rating ( $arr)
    +
    + +

    Referenced by profile_sidebar().

    +
    diff --git a/doc/html/widgets_8php.js b/doc/html/widgets_8php.js index f78b49912..a9a232e73 100644 --- a/doc/html/widgets_8php.js +++ b/doc/html/widgets_8php.js @@ -26,6 +26,7 @@ var widgets_8php = [ "widget_photo_rand", "widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380", null ], [ "widget_profile", "widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923", null ], [ "widget_random_block", "widgets_8php.html#a829c5a5c7448129266fc1df3ae1a3c2e", null ], + [ "widget_rating", "widgets_8php.html#a7d0724165067077ff46484e4610e4323", null ], [ "widget_savedsearch", "widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8", null ], [ "widget_settings_menu", "widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01", null ], [ "widget_suggestedchats", "widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8", null ], diff --git a/doc/html/zot_8php.html b/doc/html/zot_8php.html index 0b8722086..f81bf09b3 100644 --- a/doc/html/zot_8php.html +++ b/doc/html/zot_8php.html @@ -231,7 +231,7 @@ Functions

    Send a zot packet to all hubs where this channel is duplicated, refreshing such things as personal settings, channel permissions, address book updates, etc.

    -

    Referenced by connections_clone(), connedit_clone(), connedit_content(), group_add(), group_add_member(), group_rmv(), group_rmv_member(), notes_init(), prate_post(), profiles_post(), and settings_post().

    +

    Referenced by connections_clone(), connedit_clone(), connedit_content(), group_add(), group_add_member(), group_rmv(), group_rmv_member(), notes_init(), profiles_post(), and settings_post().

    @@ -447,7 +447,7 @@ Functions
    Returns
    array => 'success' (boolean true or false) 'message' (optional error string only if success is false)
    -

    Referenced by chanview_content(), discover_by_webbie(), gprobe_run(), magic_init(), mail_post(), new_contact(), poco_load(), post_init(), process_channel_sync_delivery(), update_directory_entry(), zot_refresh(), and zot_register_hub().

    +

    Referenced by chanview_content(), discover_by_webbie(), gprobe_run(), magic_init(), mail_post(), new_contact(), poco_load(), post_init(), process_channel_sync_delivery(), regdir_init(), update_directory_entry(), zot_refresh(), and zot_register_hub().

    @@ -917,7 +917,7 @@ Functions
    Returns
    string json encoded zot packet
    -

    Referenced by admin_page_hubloc_post(), build_sync_packet(), directory_run(), notifier_run(), post_init(), zot_process_message_request(), and zping_content().

    +

    Referenced by admin_page_hubloc_post(), build_sync_packet(), directory_run(), notifier_run(), post_init(), ratenotif_run(), zot_process_message_request(), and zping_content().

    @@ -1010,7 +1010,7 @@ which will be processed and delivered before this function ultimately returns.
    Returns
    : array => see z_post_url and mod/zfinger.php
    -

    Referenced by chanview_content(), check_upstream_directory(), gprobe_run(), magic_init(), mail_post(), new_contact(), poco_load(), post_init(), probe_content(), process_channel_sync_delivery(), and update_directory_entry().

    +

    Referenced by chanview_content(), check_upstream_directory(), gprobe_run(), magic_init(), mail_post(), new_contact(), poco_load(), post_init(), probe_content(), process_channel_sync_delivery(), regdir_init(), and update_directory_entry().

    diff --git a/include/text.php b/include/text.php index ef2fc2371..3d4e9cd01 100644 --- a/include/text.php +++ b/include/text.php @@ -1948,7 +1948,7 @@ function find_xchan_in_array($xchan,$arr) { function get_rel_link($j,$rel) { if(is_array($j) && ($j)) foreach($j as $l) - if(array_key_exists('rel',$j) && $l['rel'] === $rel && array_key_exists('href',$l)) + if(array_key_exists('rel',$l) && $l['rel'] === $rel && array_key_exists('href',$l)) return $l['href']; return ''; diff --git a/util/messages.po b/util/messages.po index 52b57124c..d7cb61638 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2015-01-30.932\n" +"Project-Id-Version: 2015-02-06.937\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-30 00:04-0800\n" +"POT-Creation-Date: 2015-02-06 00:04-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -43,7 +43,7 @@ msgstr "" msgid "System" msgstr "" -#: ../../include/widgets.php:94 ../../include/conversation.php:1472 +#: ../../include/widgets.php:94 ../../include/conversation.php:1471 msgid "Personal" msgstr "" @@ -56,9 +56,9 @@ msgid "Edit Personal App" msgstr "" #: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:946 -#: ../../include/identity.php:840 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 ../../mod/directory.php:264 +#: ../../include/conversation.php:942 ../../include/identity.php:840 +#: ../../include/Contact.php:107 ../../mod/suggest.php:51 +#: ../../mod/match.php:62 ../../mod/directory.php:272 msgid "Connect" msgstr "" @@ -131,11 +131,11 @@ msgstr "" msgid "Refresh" msgstr "" -#: ../../include/widgets.php:426 ../../mod/connedit.php:555 +#: ../../include/widgets.php:426 ../../mod/connedit.php:563 msgid "Me" msgstr "" -#: ../../include/widgets.php:427 ../../mod/connedit.php:558 +#: ../../include/widgets.php:427 ../../mod/connedit.php:566 msgid "Best Friends" msgstr "" @@ -144,7 +144,7 @@ msgstr "" #: ../../include/profile_selectors.php:80 ../../mod/settings.php:329 #: ../../mod/settings.php:333 ../../mod/settings.php:334 #: ../../mod/settings.php:337 ../../mod/settings.php:348 -#: ../../mod/connedit.php:559 +#: ../../mod/connedit.php:567 msgid "Friends" msgstr "" @@ -152,11 +152,11 @@ msgstr "" msgid "Co-workers" msgstr "" -#: ../../include/widgets.php:430 ../../mod/connedit.php:560 +#: ../../include/widgets.php:430 ../../mod/connedit.php:568 msgid "Former Friends" msgstr "" -#: ../../include/widgets.php:431 ../../mod/connedit.php:561 +#: ../../include/widgets.php:431 ../../mod/connedit.php:569 msgid "Acquaintances" msgstr "" @@ -192,7 +192,7 @@ msgstr "" msgid "Export channel" msgstr "" -#: ../../include/widgets.php:511 ../../mod/connedit.php:605 +#: ../../include/widgets.php:511 ../../mod/connedit.php:627 msgid "Connection Default Permissions" msgstr "" @@ -239,6 +239,14 @@ msgstr "" msgid "photo/image" msgstr "" +#: ../../include/widgets.php:954 ../../include/widgets.php:956 +msgid "Rate Me" +msgstr "" + +#: ../../include/widgets.php:960 +msgid "View Ratings" +msgstr "" + #: ../../include/permissions.php:26 msgid "Can view my normal stream and posts" msgstr "" @@ -426,7 +434,7 @@ msgid "dislikes" msgstr "" #: ../../include/taxonomy.php:380 ../../include/ItemObject.php:146 -#: ../../include/identity.php:1151 ../../mod/photos.php:995 +#: ../../include/identity.php:1155 ../../mod/photos.php:995 msgctxt "noun" msgid "Like" msgid_plural "Likes" @@ -476,163 +484,6 @@ msgstr "" msgid "$1 wrote:" msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "" - -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/apps.php:254 -#: ../../include/menu.php:42 ../../include/ItemObject.php:100 -#: ../../mod/blocks.php:132 ../../mod/webpages.php:162 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/editblock.php:143 -#: ../../mod/settings.php:639 ../../mod/editpost.php:112 -#: ../../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:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "" - -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:638 -#: ../../include/conversation.php:1136 ../../mod/webpages.php:166 -#: ../../mod/photos.php:966 -msgid "Preview" -msgstr "" - -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "" - -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "" - -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/photos.php:15 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:301 -#: ../../include/attach.php:315 ../../include/attach.php:339 -#: ../../include/attach.php:532 ../../include/attach.php:606 -#: ../../include/items.php:4063 ../../include/chat.php:116 -#: ../../mod/setup.php:207 ../../mod/register.php:72 ../../mod/network.php:12 -#: ../../mod/achievements.php:30 ../../mod/authtest.php:13 -#: ../../mod/suggest.php:26 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/events.php:199 ../../mod/blocks.php:67 ../../mod/blocks.php:75 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/webpages.php:67 ../../mod/mitem.php:106 -#: ../../mod/delegate.php:6 ../../mod/channel.php:90 ../../mod/channel.php:201 -#: ../../mod/channel.php:244 ../../mod/regmod.php:17 ../../mod/chat.php:90 -#: ../../mod/chat.php:95 ../../mod/common.php:35 ../../mod/item.php:195 -#: ../../mod/item.php:203 ../../mod/item.php:931 ../../mod/connections.php:169 -#: ../../mod/editblock.php:65 ../../mod/settings.php:554 -#: ../../mod/photos.php:68 ../../mod/poke.php:128 ../../mod/manage.php:6 -#: ../../mod/bookmarks.php:46 ../../mod/editpost.php:13 ../../mod/group.php:9 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/sources.php:66 ../../mod/pdledit.php:21 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:118 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/fsuggest.php:78 -#: ../../mod/like.php:166 ../../mod/viewsrc.php:14 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 -#: ../../mod/filestorage.php:114 ../../mod/locs.php:77 ../../mod/thing.php:247 -#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/layouts.php:67 -#: ../../mod/layouts.php:74 ../../mod/layouts.php:85 ../../mod/menu.php:61 -#: ../../mod/notifications.php:66 ../../mod/appman.php:66 -#: ../../mod/mood.php:112 ../../mod/mail.php:114 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/connedit.php:314 ../../mod/message.php:16 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." -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:217 -msgid "Unable to process image" -msgstr "" - -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:355 ../../include/conversation.php:1567 -msgid "Photo Albums" -msgstr "" - -#: ../../include/photos.php:359 -msgid "Upload New Photos" -msgstr "" - -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "" - -#: ../../include/bb2diaspora.php:366 -msgid "Attachments:" -msgstr "" - -#: ../../include/bb2diaspora.php:445 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/bb2diaspora.php:447 -msgid "Redmatrix event notification:" -msgstr "" - -#: ../../include/bb2diaspora.php:451 ../../include/event.php:20 -msgid "Starts:" -msgstr "" - -#: ../../include/bb2diaspora.php:459 ../../include/event.php:30 -msgid "Finishes:" -msgstr "" - -#: ../../include/bb2diaspora.php:467 ../../include/event.php:40 -#: ../../include/identity.php:894 ../../mod/events.php:594 -#: ../../mod/directory.php:199 -msgid "Location:" -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." -msgstr "" - #: ../../include/text.php:320 msgid "prev" msgstr "" @@ -903,7 +754,7 @@ msgid "remove from file" msgstr "" #: ../../include/text.php:1380 ../../include/text.php:1391 -#: ../../mod/connedit.php:613 +#: ../../mod/connedit.php:635 msgid "Click to open/close" msgstr "" @@ -927,8 +778,8 @@ msgstr "" msgid "Select an alternate language" msgstr "" -#: ../../include/text.php:1752 ../../include/conversation.php:120 -#: ../../include/diaspora.php:1936 ../../mod/subthread.php:72 +#: ../../include/text.php:1752 ../../include/diaspora.php:1953 +#: ../../include/conversation.php:120 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:43 msgid "photo" msgstr "" @@ -938,8 +789,8 @@ msgstr "" msgid "event" msgstr "" -#: ../../include/text.php:1758 ../../include/conversation.php:148 -#: ../../include/diaspora.php:1936 ../../mod/subthread.php:72 +#: ../../include/text.php:1758 ../../include/diaspora.php:1953 +#: ../../include/conversation.php:148 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:51 msgid "status" msgstr "" @@ -973,10 +824,174 @@ msgstr "" msgid "Pages" msgstr "" -#: ../../include/text.php:2390 ../../include/RedDAV/RedBrowser.php:130 +#: ../../include/text.php:2393 ../../include/RedDAV/RedBrowser.php:130 msgid "Collection" msgstr "" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "" + +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/apps.php:254 +#: ../../include/menu.php:42 ../../include/ItemObject.php:100 +#: ../../mod/blocks.php:132 ../../mod/webpages.php:162 +#: ../../mod/connections.php:382 ../../mod/connections.php:395 +#: ../../mod/connections.php:414 ../../mod/editblock.php:143 +#: ../../mod/settings.php:639 ../../mod/editpost.php:112 +#: ../../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:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 +msgid "View" +msgstr "" + +#: ../../include/page_widgets.php:40 ../../include/conversation.php:1132 +#: ../../include/ItemObject.php:638 ../../mod/webpages.php:166 +#: ../../mod/photos.php:966 +msgid "Preview" +msgstr "" + +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 +msgid "Actions" +msgstr "" + +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 +msgid "Page Link" +msgstr "" + +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 +msgid "Title" +msgstr "" + +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 +msgid "Created" +msgstr "" + +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 +msgid "Edited" +msgstr "" + +#: ../../include/oembed.php:171 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:180 +msgid "Embedding disabled" +msgstr "" + +#: ../../include/photos.php:15 ../../include/attach.php:137 +#: ../../include/attach.php:184 ../../include/attach.php:247 +#: ../../include/attach.php:261 ../../include/attach.php:301 +#: ../../include/attach.php:315 ../../include/attach.php:339 +#: ../../include/attach.php:532 ../../include/attach.php:606 +#: ../../include/items.php:4063 ../../include/chat.php:116 +#: ../../mod/setup.php:207 ../../mod/register.php:72 ../../mod/network.php:12 +#: ../../mod/achievements.php:30 ../../mod/authtest.php:13 +#: ../../mod/suggest.php:26 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/events.php:199 ../../mod/blocks.php:67 ../../mod/blocks.php:75 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 +#: ../../mod/block.php:72 ../../mod/webpages.php:67 ../../mod/mitem.php:106 +#: ../../mod/delegate.php:6 ../../mod/channel.php:90 ../../mod/channel.php:201 +#: ../../mod/channel.php:244 ../../mod/regmod.php:17 ../../mod/chat.php:90 +#: ../../mod/chat.php:95 ../../mod/common.php:35 ../../mod/item.php:195 +#: ../../mod/item.php:203 ../../mod/item.php:931 ../../mod/connections.php:169 +#: ../../mod/editblock.php:65 ../../mod/settings.php:554 +#: ../../mod/photos.php:68 ../../mod/poke.php:128 ../../mod/manage.php:6 +#: ../../mod/bookmarks.php:46 ../../mod/editpost.php:13 ../../mod/group.php:9 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/sources.php:66 ../../mod/pdledit.php:21 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:118 ../../mod/profile_photo.php:264 +#: ../../mod/profile_photo.php:277 ../../mod/fsuggest.php:78 +#: ../../mod/like.php:166 ../../mod/viewsrc.php:14 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 +#: ../../mod/filestorage.php:114 ../../mod/locs.php:77 ../../mod/thing.php:247 +#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/layouts.php:67 +#: ../../mod/layouts.php:74 ../../mod/layouts.php:85 +#: ../../mod/connedit.php:321 ../../mod/menu.php:61 +#: ../../mod/notifications.php:66 ../../mod/appman.php:66 +#: ../../mod/mood.php:112 ../../mod/mail.php:114 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/message.php:16 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/rate.php:101 ../../mod/page.php:28 +#: ../../mod/page.php:78 ../../mod/profiles.php:188 ../../mod/profiles.php:576 +#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 +#: ../../index.php:190 ../../index.php:390 +msgid "Permission denied." +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:217 +msgid "Unable to process image" +msgstr "" + +#: ../../include/photos.php:213 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:355 ../../include/conversation.php:1566 +msgid "Photo Albums" +msgstr "" + +#: ../../include/photos.php:359 +msgid "Upload New Photos" +msgstr "" + +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "" + +#: ../../include/bb2diaspora.php:366 +msgid "Attachments:" +msgstr "" + +#: ../../include/bb2diaspora.php:445 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/bb2diaspora.php:447 +msgid "Redmatrix event notification:" +msgstr "" + +#: ../../include/bb2diaspora.php:451 ../../include/event.php:20 +msgid "Starts:" +msgstr "" + +#: ../../include/bb2diaspora.php:459 ../../include/event.php:30 +msgid "Finishes:" +msgstr "" + +#: ../../include/bb2diaspora.php:467 ../../include/event.php:40 +#: ../../include/identity.php:894 ../../mod/events.php:595 +#: ../../mod/directory.php:204 +msgid "Location:" +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." +msgstr "" + +#: ../../include/diaspora.php:1982 ../../include/conversation.php:164 +#: ../../mod/like.php:348 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + #: ../../include/features.php:38 msgid "General Features" msgstr "" @@ -1238,9 +1253,9 @@ msgid "Schedule Outbox" msgstr "" #: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1026 +#: ../../include/apps.php:387 ../../include/conversation.php:1022 #: ../../mod/photos.php:681 ../../mod/photos.php:1100 -#: ../../mod/connedit.php:562 +#: ../../mod/connedit.php:570 msgid "Unknown" msgstr "" @@ -1255,7 +1270,7 @@ msgid "%1$s used of %2$s (%3$s%)" msgstr "" #: ../../include/RedDAV/RedBrowser.php:249 ../../include/apps.php:135 -#: ../../include/conversation.php:1573 ../../include/nav.php:98 +#: ../../include/conversation.php:1572 ../../include/nav.php:98 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "" @@ -1299,10 +1314,10 @@ msgid "Last Modified" msgstr "" #: ../../include/RedDAV/RedBrowser.php:268 ../../include/apps.php:255 -#: ../../include/ItemObject.php:120 ../../include/conversation.php:644 +#: ../../include/conversation.php:640 ../../include/ItemObject.php:120 #: ../../mod/settings.php:640 ../../mod/photos.php:1038 -#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:735 -#: ../../mod/admin.php:866 ../../mod/connedit.php:525 +#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/connedit.php:533 +#: ../../mod/admin.php:735 ../../mod/admin.php:866 msgid "Delete" msgstr "" @@ -1319,59 +1334,6 @@ msgstr "" msgid "%1$s's bookmarks" msgstr "" -#: ../../include/dir_fns.php:88 -msgid "Directory Options" -msgstr "" - -#: ../../include/dir_fns.php:89 -msgid "Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:90 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:91 -msgid "Newest to Oldest" -msgstr "" - -#: ../../include/dir_fns.php:92 -msgid "Oldest to Newest" -msgstr "" - -#: ../../include/dir_fns.php:93 -msgid "Public Forums Only" -msgstr "" - -#: ../../include/dir_fns.php:95 -msgid "Sort" -msgstr "" - -#: ../../include/dir_fns.php:111 -msgid "Enable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:113 -msgid "Disable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:115 -msgid "Safe Mode" -msgstr "" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/Contact.php:215 ../../mod/admin.php:651 -#, php-format -msgid "User '%s' deleted" -msgstr "" - #: ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "" @@ -1441,7 +1403,7 @@ msgstr "" msgid "Site Admin" msgstr "" -#: ../../include/apps.php:129 ../../include/conversation.php:1599 +#: ../../include/apps.php:129 ../../include/conversation.php:1598 #: ../../include/nav.php:109 msgid "Bookmarks" msgstr "" @@ -1463,7 +1425,7 @@ msgstr "" msgid "Matrix" msgstr "" -#: ../../include/apps.php:136 ../../include/conversation.php:1610 +#: ../../include/apps.php:136 ../../include/conversation.php:1609 #: ../../include/nav.php:113 ../../mod/webpages.php:160 msgid "Webpages" msgstr "" @@ -1472,12 +1434,12 @@ msgstr "" msgid "Channel Home" msgstr "" -#: ../../include/apps.php:138 ../../include/identity.php:1125 -#: ../../include/identity.php:1242 ../../mod/profperm.php:112 +#: ../../include/apps.php:138 ../../include/identity.php:1129 +#: ../../include/identity.php:1246 ../../mod/profperm.php:112 msgid "Profile" msgstr "" -#: ../../include/apps.php:139 ../../include/conversation.php:1564 +#: ../../include/apps.php:139 ../../include/conversation.php:1563 #: ../../include/nav.php:97 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "" @@ -1488,7 +1450,7 @@ msgid "Events" msgstr "" #: ../../include/apps.php:141 ../../include/nav.php:168 -#: ../../mod/directory.php:325 +#: ../../mod/directory.php:334 msgid "Directory" msgstr "" @@ -1505,7 +1467,7 @@ msgstr "" msgid "Mood" msgstr "" -#: ../../include/apps.php:145 ../../include/conversation.php:949 +#: ../../include/apps.php:145 ../../include/conversation.php:945 msgid "Poke" msgstr "" @@ -1558,6 +1520,674 @@ msgstr "" msgid "Purchase" msgstr "" +#: ../../include/comanche.php:35 ../../mod/admin.php:357 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "" + +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "" + +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:248 ../../mod/events.php:601 +#: ../../mod/chat.php:209 ../../mod/photos.php:559 ../../mod/photos.php:918 +#: ../../mod/filestorage.php:146 +msgid "Permissions" +msgstr "" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 +#: ../../mod/photos.php:1117 +msgid "Close" +msgstr "" + +#: ../../include/activities.php:39 +msgid " and " +msgstr "" + +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "" + +#: ../../include/activities.php:56 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../include/activities.php:57 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "" + +#: ../../include/activities.php:60 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../include/conversation.php:126 ../../mod/like.php:101 +msgid "channel" +msgstr "" + +#: ../../include/conversation.php:167 ../../mod/like.php:350 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "" + +#: ../../include/conversation.php:639 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "" + +#: ../../include/conversation.php:647 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "" + +#: ../../include/conversation.php:654 ../../include/ItemObject.php:194 +msgid "Message signature validated" +msgstr "" + +#: ../../include/conversation.php:655 ../../include/ItemObject.php:195 +msgid "Message signature incorrect" +msgstr "" + +#: ../../include/conversation.php:675 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:690 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:691 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:699 ../../include/ItemObject.php:274 +#, php-format +msgid " from %s" +msgstr "" + +#: ../../include/conversation.php:702 ../../include/ItemObject.php:277 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../include/conversation.php:703 ../../include/ItemObject.php:278 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../include/conversation.php:718 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:720 ../../include/conversation.php:1175 +#: ../../include/ItemObject.php:325 ../../mod/editblock.php:152 +#: ../../mod/photos.php:946 ../../mod/editpost.php:121 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 +#: ../../mod/mail.php:241 ../../mod/mail.php:356 +msgid "Please wait" +msgstr "" + +#: ../../include/conversation.php:840 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:844 ../../include/nav.php:249 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:845 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:936 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:937 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:938 +msgid "View Status" +msgstr "" + +#: ../../include/conversation.php:939 ../../include/nav.php:91 +#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 +msgid "View Profile" +msgstr "" + +#: ../../include/conversation.php:940 +msgid "View Photos" +msgstr "" + +#: ../../include/conversation.php:941 +msgid "Matrix Activity" +msgstr "" + +#: ../../include/conversation.php:943 +msgid "Edit Contact" +msgstr "" + +#: ../../include/conversation.php:944 +msgid "Send PM" +msgstr "" + +#: ../../include/conversation.php:1043 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:1043 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1047 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1049 +#, 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:1055 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1058 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1059 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1059 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1116 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/conversation.php:1117 ../../mod/mail.php:174 +#: ../../mod/mail.php:289 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../include/conversation.php:1118 +msgid "Please enter a video link/URL:" +msgstr "" + +#: ../../include/conversation.php:1119 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: ../../include/conversation.php:1120 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1121 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "" + +#: ../../include/conversation.php:1122 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1123 ../../mod/editpost.php:52 +#: ../../mod/mail.php:175 ../../mod/mail.php:290 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../include/conversation.php:1150 ../../mod/editblock.php:198 +#: ../../mod/photos.php:945 ../../mod/editlayout.php:193 +#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 +msgid "Share" +msgstr "" + +#: ../../include/conversation.php:1152 ../../mod/editwebpage.php:170 +msgid "Page link title" +msgstr "" + +#: ../../include/conversation.php:1155 +msgid "Post as" +msgstr "" + +#: ../../include/conversation.php:1156 ../../mod/editblock.php:144 +#: ../../mod/editpost.php:113 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 +msgid "Upload photo" +msgstr "" + +#: ../../include/conversation.php:1157 +msgid "upload photo" +msgstr "" + +#: ../../include/conversation.php:1158 ../../mod/editblock.php:145 +#: ../../mod/editpost.php:114 ../../mod/editlayout.php:141 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 +msgid "Attach file" +msgstr "" + +#: ../../include/conversation.php:1159 +msgid "attach file" +msgstr "" + +#: ../../include/conversation.php:1160 ../../mod/editblock.php:146 +#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 +msgid "Insert web link" +msgstr "" + +#: ../../include/conversation.php:1161 +msgid "web link" +msgstr "" + +#: ../../include/conversation.php:1162 +msgid "Insert video link" +msgstr "" + +#: ../../include/conversation.php:1163 +msgid "video link" +msgstr "" + +#: ../../include/conversation.php:1164 +msgid "Insert audio link" +msgstr "" + +#: ../../include/conversation.php:1165 +msgid "audio link" +msgstr "" + +#: ../../include/conversation.php:1166 ../../mod/editblock.php:150 +#: ../../mod/editpost.php:119 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:181 +msgid "Set your location" +msgstr "" + +#: ../../include/conversation.php:1167 +msgid "set location" +msgstr "" + +#: ../../include/conversation.php:1168 ../../mod/editblock.php:151 +#: ../../mod/editpost.php:120 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:182 +msgid "Clear browser location" +msgstr "" + +#: ../../include/conversation.php:1169 +msgid "clear location" +msgstr "" + +#: ../../include/conversation.php:1171 ../../mod/editblock.php:164 +#: ../../mod/editpost.php:132 ../../mod/editlayout.php:159 +#: ../../mod/editwebpage.php:198 +msgid "Title (optional)" +msgstr "" + +#: ../../include/conversation.php:1174 ../../mod/editblock.php:167 +#: ../../mod/editpost.php:134 ../../mod/editlayout.php:162 +#: ../../mod/editwebpage.php:200 +msgid "Categories (optional, comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1176 ../../mod/editblock.php:153 +#: ../../mod/editpost.php:122 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:184 +msgid "Permission settings" +msgstr "" + +#: ../../include/conversation.php:1177 +msgid "permissions" +msgstr "" + +#: ../../include/conversation.php:1184 ../../mod/editblock.php:161 +#: ../../mod/editpost.php:129 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:193 +msgid "Public post" +msgstr "" + +#: ../../include/conversation.php:1186 ../../mod/editblock.php:168 +#: ../../mod/editpost.php:135 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:201 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: ../../include/conversation.php:1199 ../../mod/editblock.php:178 +#: ../../mod/editpost.php:146 ../../mod/editlayout.php:173 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 +msgid "Set expiration date" +msgstr "" + +#: ../../include/conversation.php:1201 ../../include/ItemObject.php:641 +#: ../../mod/editpost.php:148 ../../mod/mail.php:247 ../../mod/mail.php:361 +msgid "Encrypt text" +msgstr "" + +#: ../../include/conversation.php:1203 ../../mod/events.php:585 +#: ../../mod/editpost.php:150 +msgid "OK" +msgstr "" + +#: ../../include/conversation.php:1204 ../../mod/events.php:584 +#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 +#: ../../mod/settings.php:578 ../../mod/settings.php:604 +#: ../../mod/editpost.php:151 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +msgid "Cancel" +msgstr "" + +#: ../../include/conversation.php:1448 +msgid "Discover" +msgstr "" + +#: ../../include/conversation.php:1451 +msgid "Imported public streams" +msgstr "" + +#: ../../include/conversation.php:1456 +msgid "Commented Order" +msgstr "" + +#: ../../include/conversation.php:1459 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../include/conversation.php:1463 +msgid "Posted Order" +msgstr "" + +#: ../../include/conversation.php:1466 +msgid "Sort by Post Date" +msgstr "" + +#: ../../include/conversation.php:1474 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../include/conversation.php:1480 ../../mod/connections.php:212 +#: ../../mod/connections.php:225 ../../mod/menu.php:80 +msgid "New" +msgstr "" + +#: ../../include/conversation.php:1483 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../include/conversation.php:1489 +msgid "Starred" +msgstr "" + +#: ../../include/conversation.php:1492 +msgid "Favourite Posts" +msgstr "" + +#: ../../include/conversation.php:1499 +msgid "Spam" +msgstr "" + +#: ../../include/conversation.php:1502 +msgid "Posts flagged as SPAM" +msgstr "" + +#: ../../include/conversation.php:1542 ../../mod/admin.php:870 +msgid "Channel" +msgstr "" + +#: ../../include/conversation.php:1545 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../include/conversation.php:1554 +msgid "About" +msgstr "" + +#: ../../include/conversation.php:1557 +msgid "Profile Details" +msgstr "" + +#: ../../include/conversation.php:1575 +msgid "Files and Storage" +msgstr "" + +#: ../../include/conversation.php:1585 ../../include/conversation.php:1588 +msgid "Chatrooms" +msgstr "" + +#: ../../include/conversation.php:1601 +msgid "Saved Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1612 +msgid "Manage Webpages" +msgstr "" + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "" + +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:991 ../../mod/photos.php:1003 +msgid "View all" +msgstr "" + +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1000 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:179 +msgid "Add Star" +msgstr "" + +#: ../../include/ItemObject.php:180 +msgid "Remove Star" +msgstr "" + +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" +msgstr "" + +#: ../../include/ItemObject.php:185 +msgid "starred" +msgstr "" + +#: ../../include/ItemObject.php:203 +msgid "Add Tag" +msgstr "" + +#: ../../include/ItemObject.php:221 ../../mod/photos.php:943 +msgid "I like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:222 ../../mod/photos.php:944 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:226 +msgid "Share This" +msgstr "" + +#: ../../include/ItemObject.php:226 +msgid "share" +msgstr "" + +#: ../../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/ItemObject.php:260 +msgid "to" +msgstr "" + +#: ../../include/ItemObject.php:261 +msgid "via" +msgstr "" + +#: ../../include/ItemObject.php:262 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../include/ItemObject.php:263 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../include/ItemObject.php:299 +msgid "Save Bookmarks" +msgstr "" + +#: ../../include/ItemObject.php:300 +msgid "Add to Calendar" +msgstr "" + +#: ../../include/ItemObject.php:309 +msgid "Mark all seen" +msgstr "" + +#: ../../include/ItemObject.php:314 ../../mod/photos.php:1111 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../include/ItemObject.php:315 ../../mod/photos.php:1112 +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:962 +#: ../../mod/photos.php:1072 +msgid "This is you" +msgstr "" + +#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 +#: ../../mod/photos.php:964 ../../mod/photos.php:1074 +msgid "Comment" +msgstr "" + +#: ../../include/ItemObject.php:629 ../../include/js_strings.php:22 +#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/events.php:603 +#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/settings.php:577 +#: ../../mod/settings.php:689 ../../mod/settings.php:718 +#: ../../mod/settings.php:741 ../../mod/settings.php:823 +#: ../../mod/settings.php:1019 ../../mod/photos.php:565 +#: ../../mod/photos.php:642 ../../mod/photos.php:925 ../../mod/photos.php:965 +#: ../../mod/photos.php:1075 ../../mod/poke.php:166 ../../mod/group.php:81 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/pdledit.php:58 ../../mod/fsuggest.php:108 +#: ../../mod/invite.php:142 ../../mod/filestorage.php:155 +#: ../../mod/import.php:504 ../../mod/locs.php:105 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/connedit.php:653 ../../mod/admin.php:416 +#: ../../mod/admin.php:728 ../../mod/admin.php:864 ../../mod/admin.php:997 +#: ../../mod/admin.php:1196 ../../mod/admin.php:1283 ../../mod/connect.php:93 +#: ../../mod/appman.php:99 ../../mod/mood.php:135 ../../mod/mail.php:355 +#: ../../mod/xchan.php:11 ../../mod/rate.php:153 ../../mod/profiles.php:667 +#: ../../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/event.php:376 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "" + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "" + +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "" + #: ../../include/attach.php:242 ../../include/attach.php:296 msgid "Item was not found." msgstr "" @@ -1616,304 +2246,6 @@ msgstr "" msgid "database storage failed." msgstr "" -#: ../../include/comanche.php:35 ../../mod/admin.php:357 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:600 -#: ../../mod/chat.php:209 ../../mod/photos.php:559 ../../mod/photos.php:918 -#: ../../mod/filestorage.php:146 -msgid "Permissions" -msgstr "" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 -#: ../../mod/photos.php:1117 -msgid "Close" -msgstr "" - -#: ../../include/activities.php:39 -msgid " and " -msgstr "" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:651 -msgid "Private Message" -msgstr "" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:643 -msgid "Select" -msgstr "" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "" - -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:991 ../../mod/photos.php:1003 -msgid "View all" -msgstr "" - -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1000 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:179 -msgid "Add Star" -msgstr "" - -#: ../../include/ItemObject.php:180 -msgid "Remove Star" -msgstr "" - -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" -msgstr "" - -#: ../../include/ItemObject.php:185 -msgid "starred" -msgstr "" - -#: ../../include/ItemObject.php:194 ../../include/conversation.php:658 -msgid "Message signature validated" -msgstr "" - -#: ../../include/ItemObject.php:195 ../../include/conversation.php:659 -msgid "Message signature incorrect" -msgstr "" - -#: ../../include/ItemObject.php:203 -msgid "Add Tag" -msgstr "" - -#: ../../include/ItemObject.php:221 ../../mod/photos.php:943 -msgid "I like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:222 ../../mod/photos.php:944 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:226 -msgid "Share This" -msgstr "" - -#: ../../include/ItemObject.php:226 -msgid "share" -msgstr "" - -#: ../../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/ItemObject.php:260 -msgid "to" -msgstr "" - -#: ../../include/ItemObject.php:261 -msgid "via" -msgstr "" - -#: ../../include/ItemObject.php:262 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../include/ItemObject.php:263 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../include/ItemObject.php:274 ../../include/conversation.php:703 -#, php-format -msgid " from %s" -msgstr "" - -#: ../../include/ItemObject.php:277 ../../include/conversation.php:706 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/ItemObject.php:278 ../../include/conversation.php:707 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../include/ItemObject.php:299 -msgid "Save Bookmarks" -msgstr "" - -#: ../../include/ItemObject.php:300 -msgid "Add to Calendar" -msgstr "" - -#: ../../include/ItemObject.php:309 -msgid "Mark all seen" -msgstr "" - -#: ../../include/ItemObject.php:314 ../../mod/photos.php:1111 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../include/ItemObject.php:315 ../../mod/photos.php:1112 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../include/ItemObject.php:325 ../../include/conversation.php:724 -#: ../../include/conversation.php:1176 ../../mod/editblock.php:152 -#: ../../mod/photos.php:946 ../../mod/editpost.php:121 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 -#: ../../mod/mail.php:241 ../../mod/mail.php:356 -msgid "Please wait" -msgstr "" - -#: ../../include/ItemObject.php:345 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "" - -#: ../../include/ItemObject.php:626 ../../mod/photos.php:962 -#: ../../mod/photos.php:1072 -msgid "This is you" -msgstr "" - -#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 -#: ../../mod/photos.php:964 ../../mod/photos.php:1074 -msgid "Comment" -msgstr "" - -#: ../../include/ItemObject.php:629 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../mod/events.php:602 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/settings.php:577 -#: ../../mod/settings.php:689 ../../mod/settings.php:718 -#: ../../mod/settings.php:741 ../../mod/settings.php:823 -#: ../../mod/settings.php:1019 ../../mod/photos.php:565 -#: ../../mod/photos.php:642 ../../mod/photos.php:925 ../../mod/photos.php:965 -#: ../../mod/photos.php:1075 ../../mod/poke.php:166 ../../mod/group.php:81 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/pdledit.php:58 ../../mod/fsuggest.php:108 -#: ../../mod/invite.php:142 ../../mod/filestorage.php:155 -#: ../../mod/import.php:504 ../../mod/locs.php:105 ../../mod/thing.php:284 -#: ../../mod/thing.php:327 ../../mod/admin.php:416 ../../mod/admin.php:728 -#: ../../mod/admin.php:864 ../../mod/admin.php:997 ../../mod/admin.php:1196 -#: ../../mod/admin.php:1283 ../../mod/connect.php:93 ../../mod/appman.php:99 -#: ../../mod/mood.php:135 ../../mod/mail.php:355 ../../mod/connedit.php:631 -#: ../../mod/xchan.php:11 ../../mod/profiles.php:667 ../../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/ItemObject.php:641 ../../include/conversation.php:1202 -#: ../../mod/editpost.php:148 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "" - -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/zot.php:664 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:680 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:1900 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - #: ../../include/enotify.php:41 msgid "Red Matrix Notification" msgstr "" @@ -2153,12 +2485,12 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "" #: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:321 ../../mod/directory.php:326 +#: ../../mod/directory.php:330 ../../mod/directory.php:335 msgid "Find" msgstr "" #: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:325 +#: ../../mod/directory.php:334 msgid "Channel Suggestions" msgstr "" @@ -2185,393 +2517,44 @@ msgstr[1] "" msgid "show more" msgstr "" -#: ../../include/conversation.php:126 ../../mod/like.php:101 -msgid "channel" +#: ../../include/dir_fns.php:88 +msgid "Directory Options" msgstr "" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1965 -#: ../../mod/like.php:348 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../include/dir_fns.php:89 +msgid "Alphabetic" msgstr "" -#: ../../include/conversation.php:167 ../../mod/like.php:350 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../include/dir_fns.php:90 +msgid "Reverse Alphabetic" msgstr "" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../include/dir_fns.php:91 +msgid "Newest to Oldest" msgstr "" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/dir_fns.php:92 +msgid "Oldest to Newest" msgstr "" -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../include/dir_fns.php:93 +msgid "Public Forums Only" msgstr "" -#: ../../include/conversation.php:679 -#, php-format -msgid "View %s's profile @ %s" +#: ../../include/dir_fns.php:95 +msgid "Sort" msgstr "" -#: ../../include/conversation.php:694 -msgid "Categories:" +#: ../../include/dir_fns.php:111 +msgid "Enable Safe Search" msgstr "" -#: ../../include/conversation.php:695 -msgid "Filed under:" +#: ../../include/dir_fns.php:113 +msgid "Disable Safe Search" msgstr "" -#: ../../include/conversation.php:722 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:844 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:848 ../../include/nav.php:249 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:849 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:940 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:941 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:942 -msgid "View Status" -msgstr "" - -#: ../../include/conversation.php:943 ../../include/nav.php:91 -#: ../../mod/connedit.php:476 ../../mod/connedit.php:612 -msgid "View Profile" -msgstr "" - -#: ../../include/conversation.php:944 -msgid "View Photos" -msgstr "" - -#: ../../include/conversation.php:945 -msgid "Matrix Activity" -msgstr "" - -#: ../../include/conversation.php:947 -msgid "Edit Contact" -msgstr "" - -#: ../../include/conversation.php:948 -msgid "Send PM" -msgstr "" - -#: ../../include/conversation.php:1047 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:1047 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1051 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1053 -#, 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:1059 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1062 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1063 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1063 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1120 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/conversation.php:1121 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../include/conversation.php:1122 -msgid "Please enter a video link/URL:" -msgstr "" - -#: ../../include/conversation.php:1123 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: ../../include/conversation.php:1124 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1125 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "" - -#: ../../include/conversation.php:1126 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1127 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../include/conversation.php:1151 ../../mod/editblock.php:198 -#: ../../mod/photos.php:945 ../../mod/editlayout.php:193 -#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 -msgid "Share" -msgstr "" - -#: ../../include/conversation.php:1153 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "" - -#: ../../include/conversation.php:1156 -msgid "Post as" -msgstr "" - -#: ../../include/conversation.php:1157 ../../mod/editblock.php:144 -#: ../../mod/editpost.php:113 ../../mod/editlayout.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "" - -#: ../../include/conversation.php:1158 -msgid "upload photo" -msgstr "" - -#: ../../include/conversation.php:1159 ../../mod/editblock.php:145 -#: ../../mod/editpost.php:114 ../../mod/editlayout.php:141 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "" - -#: ../../include/conversation.php:1160 -msgid "attach file" -msgstr "" - -#: ../../include/conversation.php:1161 ../../mod/editblock.php:146 -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "" - -#: ../../include/conversation.php:1162 -msgid "web link" -msgstr "" - -#: ../../include/conversation.php:1163 -msgid "Insert video link" -msgstr "" - -#: ../../include/conversation.php:1164 -msgid "video link" -msgstr "" - -#: ../../include/conversation.php:1165 -msgid "Insert audio link" -msgstr "" - -#: ../../include/conversation.php:1166 -msgid "audio link" -msgstr "" - -#: ../../include/conversation.php:1167 ../../mod/editblock.php:150 -#: ../../mod/editpost.php:119 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:181 -msgid "Set your location" -msgstr "" - -#: ../../include/conversation.php:1168 -msgid "set location" -msgstr "" - -#: ../../include/conversation.php:1169 ../../mod/editblock.php:151 -#: ../../mod/editpost.php:120 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:182 -msgid "Clear browser location" -msgstr "" - -#: ../../include/conversation.php:1170 -msgid "clear location" -msgstr "" - -#: ../../include/conversation.php:1172 ../../mod/editblock.php:164 -#: ../../mod/editpost.php:132 ../../mod/editlayout.php:159 -#: ../../mod/editwebpage.php:198 -msgid "Title (optional)" -msgstr "" - -#: ../../include/conversation.php:1175 ../../mod/editblock.php:167 -#: ../../mod/editpost.php:134 ../../mod/editlayout.php:162 -#: ../../mod/editwebpage.php:200 -msgid "Categories (optional, comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:1177 ../../mod/editblock.php:153 -#: ../../mod/editpost.php:122 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" -msgstr "" - -#: ../../include/conversation.php:1178 -msgid "permissions" -msgstr "" - -#: ../../include/conversation.php:1185 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:129 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:193 -msgid "Public post" -msgstr "" - -#: ../../include/conversation.php:1187 ../../mod/editblock.php:168 -#: ../../mod/editpost.php:135 ../../mod/editlayout.php:163 -#: ../../mod/editwebpage.php:201 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: ../../include/conversation.php:1200 ../../mod/editblock.php:178 -#: ../../mod/editpost.php:146 ../../mod/editlayout.php:173 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "" - -#: ../../include/conversation.php:1204 ../../mod/events.php:584 -#: ../../mod/editpost.php:150 -msgid "OK" -msgstr "" - -#: ../../include/conversation.php:1205 ../../mod/events.php:583 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 -#: ../../mod/settings.php:578 ../../mod/settings.php:604 -#: ../../mod/editpost.php:151 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "" - -#: ../../include/conversation.php:1449 -msgid "Discover" -msgstr "" - -#: ../../include/conversation.php:1452 -msgid "Imported public streams" -msgstr "" - -#: ../../include/conversation.php:1457 -msgid "Commented Order" -msgstr "" - -#: ../../include/conversation.php:1460 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../include/conversation.php:1464 -msgid "Posted Order" -msgstr "" - -#: ../../include/conversation.php:1467 -msgid "Sort by Post Date" -msgstr "" - -#: ../../include/conversation.php:1475 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../include/conversation.php:1481 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "" - -#: ../../include/conversation.php:1484 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../include/conversation.php:1490 -msgid "Starred" -msgstr "" - -#: ../../include/conversation.php:1493 -msgid "Favourite Posts" -msgstr "" - -#: ../../include/conversation.php:1500 -msgid "Spam" -msgstr "" - -#: ../../include/conversation.php:1503 -msgid "Posts flagged as SPAM" -msgstr "" - -#: ../../include/conversation.php:1543 ../../mod/admin.php:870 -msgid "Channel" -msgstr "" - -#: ../../include/conversation.php:1546 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/conversation.php:1555 -msgid "About" -msgstr "" - -#: ../../include/conversation.php:1558 -msgid "Profile Details" -msgstr "" - -#: ../../include/conversation.php:1576 -msgid "Files and Storage" -msgstr "" - -#: ../../include/conversation.php:1586 ../../include/conversation.php:1589 -msgid "Chatrooms" -msgstr "" - -#: ../../include/conversation.php:1602 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1613 -msgid "Manage Webpages" +#: ../../include/dir_fns.php:115 +msgid "Safe Mode" msgstr "" #: ../../include/group.php:26 @@ -2681,6 +2664,139 @@ msgstr "" msgid "Connection not found." 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:19 +msgid "Rate This Channel (this is public)" +msgstr "" + +#: ../../include/js_strings.php:20 ../../mod/rate.php:144 +msgid "Rating" +msgstr "" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "" + +#: ../../include/js_strings.php:24 +msgid "timeago.prefixAgo" +msgstr "" + +#: ../../include/js_strings.php:25 +msgid "timeago.prefixFromNow" +msgstr "" + +#: ../../include/js_strings.php:26 +msgid "ago" +msgstr "" + +#: ../../include/js_strings.php:27 +msgid "from now" +msgstr "" + +#: ../../include/js_strings.php:28 +msgid "less than a minute" +msgstr "" + +#: ../../include/js_strings.php:29 +msgid "about a minute" +msgstr "" + +#: ../../include/js_strings.php:30 +#, php-format +msgid "%d minutes" +msgstr "" + +#: ../../include/js_strings.php:31 +msgid "about an hour" +msgstr "" + +#: ../../include/js_strings.php:32 +#, php-format +msgid "about %d hours" +msgstr "" + +#: ../../include/js_strings.php:33 +msgid "a day" +msgstr "" + +#: ../../include/js_strings.php:34 +#, php-format +msgid "%d days" +msgstr "" + +#: ../../include/js_strings.php:35 +msgid "about a month" +msgstr "" + +#: ../../include/js_strings.php:36 +#, php-format +msgid "%d months" +msgstr "" + +#: ../../include/js_strings.php:37 +msgid "about a year" +msgstr "" + +#: ../../include/js_strings.php:38 +#, php-format +msgid "%d years" +msgstr "" + +#: ../../include/js_strings.php:39 +msgid " " +msgstr "" + +#: ../../include/js_strings.php:40 +msgid "timeago.numbers" +msgstr "" + #: ../../include/account.php:23 msgid "Not a valid email address" msgstr "" @@ -2766,81 +2882,86 @@ msgstr "" msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/datetime.php:230 +#: ../../include/datetime.php:212 ../../mod/events.php:583 +#: ../../mod/appman.php:91 ../../mod/appman.php:92 +msgid "Required" +msgstr "" + +#: ../../include/datetime.php:231 msgid "never" msgstr "" -#: ../../include/datetime.php:236 +#: ../../include/datetime.php:237 msgid "less than a second ago" msgstr "" -#: ../../include/datetime.php:239 +#: ../../include/datetime.php:240 msgid "year" msgstr "" -#: ../../include/datetime.php:239 +#: ../../include/datetime.php:240 msgid "years" msgstr "" -#: ../../include/datetime.php:240 +#: ../../include/datetime.php:241 msgid "month" msgstr "" -#: ../../include/datetime.php:240 +#: ../../include/datetime.php:241 msgid "months" msgstr "" -#: ../../include/datetime.php:241 +#: ../../include/datetime.php:242 msgid "week" msgstr "" -#: ../../include/datetime.php:241 +#: ../../include/datetime.php:242 msgid "weeks" msgstr "" -#: ../../include/datetime.php:242 +#: ../../include/datetime.php:243 msgid "day" msgstr "" -#: ../../include/datetime.php:242 +#: ../../include/datetime.php:243 msgid "days" msgstr "" -#: ../../include/datetime.php:243 +#: ../../include/datetime.php:244 msgid "hour" msgstr "" -#: ../../include/datetime.php:243 +#: ../../include/datetime.php:244 msgid "hours" msgstr "" -#: ../../include/datetime.php:244 +#: ../../include/datetime.php:245 msgid "minute" msgstr "" -#: ../../include/datetime.php:244 +#: ../../include/datetime.php:245 msgid "minutes" msgstr "" -#: ../../include/datetime.php:245 +#: ../../include/datetime.php:246 msgid "second" msgstr "" -#: ../../include/datetime.php:245 +#: ../../include/datetime.php:246 msgid "seconds" msgstr "" -#: ../../include/datetime.php:254 +#: ../../include/datetime.php:255 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: ../../include/datetime.php:462 +#: ../../include/datetime.php:463 #, php-format msgid "%1$s's birthday" msgstr "" -#: ../../include/datetime.php:463 +#: ../../include/datetime.php:464 #, php-format msgid "Happy Birthday %1$s" msgstr "" @@ -2980,15 +3101,15 @@ msgstr "" msgid "Edit visibility" msgstr "" -#: ../../include/identity.php:898 ../../include/identity.php:1135 +#: ../../include/identity.php:898 ../../include/identity.php:1139 msgid "Gender:" msgstr "" -#: ../../include/identity.php:899 ../../include/identity.php:1179 +#: ../../include/identity.php:899 ../../include/identity.php:1183 msgid "Status:" msgstr "" -#: ../../include/identity.php:900 ../../include/identity.php:1190 +#: ../../include/identity.php:900 ../../include/identity.php:1194 msgid "Homepage:" msgstr "" @@ -2996,142 +3117,142 @@ msgstr "" msgid "Online Now" msgstr "" -#: ../../include/identity.php:979 ../../include/identity.php:1059 +#: ../../include/identity.php:983 ../../include/identity.php:1063 #: ../../mod/ping.php:329 msgid "g A l F d" msgstr "" -#: ../../include/identity.php:980 ../../include/identity.php:1060 +#: ../../include/identity.php:984 ../../include/identity.php:1064 msgid "F d" msgstr "" -#: ../../include/identity.php:1025 ../../include/identity.php:1100 +#: ../../include/identity.php:1029 ../../include/identity.php:1104 #: ../../mod/ping.php:351 msgid "[today]" msgstr "" -#: ../../include/identity.php:1037 +#: ../../include/identity.php:1041 msgid "Birthday Reminders" msgstr "" -#: ../../include/identity.php:1038 +#: ../../include/identity.php:1042 msgid "Birthdays this week:" msgstr "" -#: ../../include/identity.php:1093 +#: ../../include/identity.php:1097 msgid "[No description]" msgstr "" -#: ../../include/identity.php:1111 +#: ../../include/identity.php:1115 msgid "Event Reminders" msgstr "" -#: ../../include/identity.php:1112 +#: ../../include/identity.php:1116 msgid "Events this week:" msgstr "" -#: ../../include/identity.php:1133 ../../mod/settings.php:1025 +#: ../../include/identity.php:1137 ../../mod/settings.php:1025 msgid "Full Name:" msgstr "" -#: ../../include/identity.php:1140 +#: ../../include/identity.php:1144 msgid "Like this channel" msgstr "" -#: ../../include/identity.php:1164 +#: ../../include/identity.php:1168 msgid "j F, Y" msgstr "" -#: ../../include/identity.php:1165 +#: ../../include/identity.php:1169 msgid "j F" msgstr "" -#: ../../include/identity.php:1172 +#: ../../include/identity.php:1176 msgid "Birthday:" msgstr "" -#: ../../include/identity.php:1176 +#: ../../include/identity.php:1180 msgid "Age:" msgstr "" -#: ../../include/identity.php:1185 +#: ../../include/identity.php:1189 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/identity.php:1188 ../../mod/profiles.php:691 +#: ../../include/identity.php:1192 ../../mod/profiles.php:691 msgid "Sexual Preference:" msgstr "" -#: ../../include/identity.php:1192 ../../mod/profiles.php:693 +#: ../../include/identity.php:1196 ../../mod/profiles.php:693 msgid "Hometown:" msgstr "" -#: ../../include/identity.php:1194 +#: ../../include/identity.php:1198 msgid "Tags:" msgstr "" -#: ../../include/identity.php:1196 ../../mod/profiles.php:694 +#: ../../include/identity.php:1200 ../../mod/profiles.php:694 msgid "Political Views:" msgstr "" -#: ../../include/identity.php:1198 +#: ../../include/identity.php:1202 msgid "Religion:" msgstr "" -#: ../../include/identity.php:1200 +#: ../../include/identity.php:1204 msgid "About:" msgstr "" -#: ../../include/identity.php:1202 +#: ../../include/identity.php:1206 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/identity.php:1204 ../../mod/profiles.php:697 +#: ../../include/identity.php:1208 ../../mod/profiles.php:697 msgid "Likes:" msgstr "" -#: ../../include/identity.php:1206 ../../mod/profiles.php:698 +#: ../../include/identity.php:1210 ../../mod/profiles.php:698 msgid "Dislikes:" msgstr "" -#: ../../include/identity.php:1208 +#: ../../include/identity.php:1212 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/identity.php:1210 +#: ../../include/identity.php:1214 msgid "My other channels:" msgstr "" -#: ../../include/identity.php:1212 +#: ../../include/identity.php:1216 msgid "Musical interests:" msgstr "" -#: ../../include/identity.php:1214 +#: ../../include/identity.php:1218 msgid "Books, literature:" msgstr "" -#: ../../include/identity.php:1216 +#: ../../include/identity.php:1220 msgid "Television:" msgstr "" -#: ../../include/identity.php:1218 +#: ../../include/identity.php:1222 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/identity.php:1220 +#: ../../include/identity.php:1224 msgid "Love/Romance:" msgstr "" -#: ../../include/identity.php:1222 +#: ../../include/identity.php:1226 msgid "Work/employment:" msgstr "" -#: ../../include/identity.php:1224 +#: ../../include/identity.php:1228 msgid "School/education:" msgstr "" -#: ../../include/identity.php:1244 +#: ../../include/identity.php:1248 msgid "Like this thing" msgstr "" @@ -3324,125 +3445,17 @@ msgstr "" msgid "Please wait..." msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../include/Contact.php:124 +msgid "New window" msgstr "" -#: ../../include/js_strings.php:8 -msgid "[-] show less" +#: ../../include/Contact.php:125 +msgid "Open the selected location in a different window or browser tab" 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 +#: ../../include/Contact.php:215 ../../mod/admin.php:651 #, php-format -msgid "%d minutes" -msgstr "" - -#: ../../include/js_strings.php:27 -msgid "about an hour" -msgstr "" - -#: ../../include/js_strings.php:28 -#, php-format -msgid "about %d hours" -msgstr "" - -#: ../../include/js_strings.php:29 -msgid "a day" -msgstr "" - -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d days" -msgstr "" - -#: ../../include/js_strings.php:31 -msgid "about a month" -msgstr "" - -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d months" -msgstr "" - -#: ../../include/js_strings.php:33 -msgid "about a year" -msgstr "" - -#: ../../include/js_strings.php:34 -#, php-format -msgid "%d years" -msgstr "" - -#: ../../include/js_strings.php:35 -msgid " " -msgstr "" - -#: ../../include/js_strings.php:36 -msgid "timeago.numbers" +msgid "User '%s' deleted" msgstr "" #: ../../include/profile_selectors.php:6 @@ -3681,6 +3694,19 @@ msgstr "" msgid "Ask me" msgstr "" +#: ../../include/zot.php:673 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:689 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:1933 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + #: ../../mod/setup.php:166 msgid "Red Matrix Server - Setup" msgstr "" @@ -4300,32 +4326,27 @@ msgstr "" msgid "Event Starts:" msgstr "" -#: ../../mod/events.php:580 ../../mod/events.php:596 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "" - -#: ../../mod/events.php:586 +#: ../../mod/events.php:587 msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/events.php:588 +#: ../../mod/events.php:589 msgid "Event Finishes:" msgstr "" -#: ../../mod/events.php:590 +#: ../../mod/events.php:591 ../../mod/events.php:592 msgid "Adjust for viewer timezone" msgstr "" -#: ../../mod/events.php:592 +#: ../../mod/events.php:593 msgid "Description:" msgstr "" -#: ../../mod/events.php:596 +#: ../../mod/events.php:597 msgid "Title:" msgstr "" -#: ../../mod/events.php:598 +#: ../../mod/events.php:599 msgid "Share this event" msgstr "" @@ -4691,6 +4712,7 @@ msgstr "" #: ../../mod/search.php:13 ../../mod/photos.php:429 ../../mod/display.php:9 #: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 +#: ../../mod/ratings.php:81 msgid "Public access denied." msgstr "" @@ -4813,11 +4835,11 @@ msgstr "" msgid "Could not locate selected profile." msgstr "" -#: ../../mod/connections.php:94 ../../mod/connedit.php:197 +#: ../../mod/connections.php:94 ../../mod/connedit.php:204 msgid "Connection updated." msgstr "" -#: ../../mod/connections.php:96 ../../mod/connedit.php:199 +#: ../../mod/connections.php:96 ../../mod/connedit.php:206 msgid "Failed to update connection record." msgstr "" @@ -5748,7 +5770,7 @@ msgstr "" msgid "%d new introductions" msgstr "" -#: ../../mod/dirsearch.php:21 +#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22 msgid "This site is not a directory server" msgstr "" @@ -6423,20 +6445,330 @@ msgstr "" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/prep.php:62 -msgid "No ratings available" +#: ../../mod/connedit.php:252 +msgid "is now connected to" msgstr "" -#: ../../mod/prep.php:66 -msgid "Ratings" +#: ../../mod/connedit.php:365 +msgid "Could not access address book record." msgstr "" -#: ../../mod/prep.php:67 -msgid "Rating: " +#: ../../mod/connedit.php:379 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../mod/prep.php:68 -msgid "Description: " +#: ../../mod/connedit.php:386 +msgid "Channel has been unblocked" +msgstr "" + +#: ../../mod/connedit.php:387 +msgid "Channel has been blocked" +msgstr "" + +#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 +#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 +#: ../../mod/connedit.php:443 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../mod/connedit.php:398 +msgid "Channel has been unignored" +msgstr "" + +#: ../../mod/connedit.php:399 +msgid "Channel has been ignored" +msgstr "" + +#: ../../mod/connedit.php:410 +msgid "Channel has been unarchived" +msgstr "" + +#: ../../mod/connedit.php:411 +msgid "Channel has been archived" +msgstr "" + +#: ../../mod/connedit.php:422 +msgid "Channel has been unhidden" +msgstr "" + +#: ../../mod/connedit.php:423 +msgid "Channel has been hidden" +msgstr "" + +#: ../../mod/connedit.php:438 +msgid "Channel has been approved" +msgstr "" + +#: ../../mod/connedit.php:439 +msgid "Channel has been unapproved" +msgstr "" + +#: ../../mod/connedit.php:467 +msgid "Connection has been removed." +msgstr "" + +#: ../../mod/connedit.php:487 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../mod/connedit.php:491 +msgid "Refresh Permissions" +msgstr "" + +#: ../../mod/connedit.php:494 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../mod/connedit.php:498 +msgid "Recent Activity" +msgstr "" + +#: ../../mod/connedit.php:501 +msgid "View recent posts and comments" +msgstr "" + +#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 +#: ../../mod/admin.php:737 +msgid "Unblock" +msgstr "" + +#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 +#: ../../mod/admin.php:736 +msgid "Block" +msgstr "" + +#: ../../mod/connedit.php:510 +msgid "Block (or Unblock) all communications with this connection" +msgstr "" + +#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +msgid "Unignore" +msgstr "" + +#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "" + +#: ../../mod/connedit.php:517 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "" + +#: ../../mod/connedit.php:520 +msgid "Unarchive" +msgstr "" + +#: ../../mod/connedit.php:520 +msgid "Archive" +msgstr "" + +#: ../../mod/connedit.php:523 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "" + +#: ../../mod/connedit.php:526 +msgid "Unhide" +msgstr "" + +#: ../../mod/connedit.php:526 +msgid "Hide" +msgstr "" + +#: ../../mod/connedit.php:529 +msgid "Hide or Unhide this connection from your other connections" +msgstr "" + +#: ../../mod/connedit.php:536 +msgid "Delete this connection" +msgstr "" + +#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 +msgid "Approve this connection" +msgstr "" + +#: ../../mod/connedit.php:611 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../mod/connedit.php:627 +#, php-format +msgid "Connections: settings for %s" +msgstr "" + +#: ../../mod/connedit.php:628 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../mod/connedit.php:632 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "" + +#: ../../mod/connedit.php:636 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../mod/connedit.php:637 ../../mod/rate.php:147 +msgid "Rating (this information is public)" +msgstr "" + +#: ../../mod/connedit.php:638 ../../mod/rate.php:148 +msgid "Optionally explain your rating (this information is public)" +msgstr "" + +#: ../../mod/connedit.php:645 +msgid "" +"Default permissions for your channel type have (just) been applied. They " +"have not yet been submitted. Please review the permissions on this page and " +"make any desired changes at this time. This new connection may not " +"be able to communicate with you until you submit this page, which will " +"install and apply the selected permissions." +msgstr "" + +#: ../../mod/connedit.php:648 +msgid "inherited" +msgstr "" + +#: ../../mod/connedit.php:651 +msgid "Connection has no individual permissions!" +msgstr "" + +#: ../../mod/connedit.php:652 +msgid "" +"This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "" + +#: ../../mod/connedit.php:654 +msgid "Profile Visibility" +msgstr "" + +#: ../../mod/connedit.php:655 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: ../../mod/connedit.php:656 +msgid "Contact Information / Notes" +msgstr "" + +#: ../../mod/connedit.php:657 +msgid "Edit contact notes" +msgstr "" + +#: ../../mod/connedit.php:659 +msgid "Their Settings" +msgstr "" + +#: ../../mod/connedit.php:660 +msgid "My Settings" +msgstr "" + +#: ../../mod/connedit.php:662 +msgid "" +"Default permissions for this channel type have (just) been applied. They " +"have not been saved and there are currently no stored default " +"permissions. Please review/edit the applied settings and click [Submit] to " +"finalize." +msgstr "" + +#: ../../mod/connedit.php:663 +msgid "Clear/Disable Automatic Permissions" +msgstr "" + +#: ../../mod/connedit.php:664 +msgid "Forum Members" +msgstr "" + +#: ../../mod/connedit.php:665 +msgid "Soapbox" +msgstr "" + +#: ../../mod/connedit.php:666 +msgid "Full Sharing (typical social network permissions)" +msgstr "" + +#: ../../mod/connedit.php:667 +msgid "Cautious Sharing " +msgstr "" + +#: ../../mod/connedit.php:668 +msgid "Follow Only" +msgstr "" + +#: ../../mod/connedit.php:669 +msgid "Individual Permissions" +msgstr "" + +#: ../../mod/connedit.php:670 +msgid "" +"Some permissions may be inherited from your channel privacy settings, which have higher priority than individual " +"settings. Changing those inherited settings on this page will have no effect." +msgstr "" + +#: ../../mod/connedit.php:671 +msgid "Advanced Permissions" +msgstr "" + +#: ../../mod/connedit.php:672 +msgid "Simple Permissions (select one and submit)" +msgstr "" + +#: ../../mod/connedit.php:676 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "" + +#: ../../mod/connedit.php:677 +msgid "Block/Unblock contact" +msgstr "" + +#: ../../mod/connedit.php:678 +msgid "Ignore contact" +msgstr "" + +#: ../../mod/connedit.php:679 +msgid "Repair URL settings" +msgstr "" + +#: ../../mod/connedit.php:680 +msgid "View conversations" +msgstr "" + +#: ../../mod/connedit.php:682 +msgid "Delete contact" +msgstr "" + +#: ../../mod/connedit.php:686 +msgid "Last update:" +msgstr "" + +#: ../../mod/connedit.php:688 +msgid "Update public posts" +msgstr "" + +#: ../../mod/connedit.php:690 +msgid "Update now" +msgstr "" + +#: ../../mod/connedit.php:696 +msgid "Currently blocked" +msgstr "" + +#: ../../mod/connedit.php:697 +msgid "Currently ignored" +msgstr "" + +#: ../../mod/connedit.php:698 +msgid "Currently archived" +msgstr "" + +#: ../../mod/connedit.php:699 +msgid "Currently pending" msgstr "" #: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 @@ -6906,16 +7238,6 @@ msgstr "" msgid "Deny" msgstr "" -#: ../../mod/admin.php:736 ../../mod/connedit.php:499 -#: ../../mod/connedit.php:672 -msgid "Block" -msgstr "" - -#: ../../mod/admin.php:737 ../../mod/connedit.php:499 -#: ../../mod/connedit.php:672 -msgid "Unblock" -msgstr "" - #: ../../mod/admin.php:740 msgid "Register date" msgstr "" @@ -7228,11 +7550,6 @@ msgstr "" msgid "Discard" msgstr "" -#: ../../mod/notifications.php:51 ../../mod/connedit.php:506 -#: ../../mod/connedit.php:673 -msgid "Ignore" -msgstr "" - #: ../../mod/notifications.php:94 ../../mod/notify.php:53 msgid "No more system notifications." msgstr "" @@ -7445,317 +7762,6 @@ msgstr "" msgid "Wall Photos" msgstr "" -#: ../../mod/connedit.php:245 -msgid "is now connected to" -msgstr "" - -#: ../../mod/connedit.php:357 -msgid "Could not access address book record." -msgstr "" - -#: ../../mod/connedit.php:371 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" - -#: ../../mod/connedit.php:378 -msgid "Channel has been unblocked" -msgstr "" - -#: ../../mod/connedit.php:379 -msgid "Channel has been blocked" -msgstr "" - -#: ../../mod/connedit.php:383 ../../mod/connedit.php:395 -#: ../../mod/connedit.php:407 ../../mod/connedit.php:419 -#: ../../mod/connedit.php:435 -msgid "Unable to set address book parameters." -msgstr "" - -#: ../../mod/connedit.php:390 -msgid "Channel has been unignored" -msgstr "" - -#: ../../mod/connedit.php:391 -msgid "Channel has been ignored" -msgstr "" - -#: ../../mod/connedit.php:402 -msgid "Channel has been unarchived" -msgstr "" - -#: ../../mod/connedit.php:403 -msgid "Channel has been archived" -msgstr "" - -#: ../../mod/connedit.php:414 -msgid "Channel has been unhidden" -msgstr "" - -#: ../../mod/connedit.php:415 -msgid "Channel has been hidden" -msgstr "" - -#: ../../mod/connedit.php:430 -msgid "Channel has been approved" -msgstr "" - -#: ../../mod/connedit.php:431 -msgid "Channel has been unapproved" -msgstr "" - -#: ../../mod/connedit.php:459 -msgid "Connection has been removed." -msgstr "" - -#: ../../mod/connedit.php:479 -#, php-format -msgid "View %s's profile" -msgstr "" - -#: ../../mod/connedit.php:483 -msgid "Refresh Permissions" -msgstr "" - -#: ../../mod/connedit.php:486 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../mod/connedit.php:490 -msgid "Recent Activity" -msgstr "" - -#: ../../mod/connedit.php:493 -msgid "View recent posts and comments" -msgstr "" - -#: ../../mod/connedit.php:502 -msgid "Block (or Unblock) all communications with this connection" -msgstr "" - -#: ../../mod/connedit.php:506 ../../mod/connedit.php:673 -msgid "Unignore" -msgstr "" - -#: ../../mod/connedit.php:509 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "" - -#: ../../mod/connedit.php:512 -msgid "Unarchive" -msgstr "" - -#: ../../mod/connedit.php:512 -msgid "Archive" -msgstr "" - -#: ../../mod/connedit.php:515 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "" - -#: ../../mod/connedit.php:518 -msgid "Unhide" -msgstr "" - -#: ../../mod/connedit.php:518 -msgid "Hide" -msgstr "" - -#: ../../mod/connedit.php:521 -msgid "Hide or Unhide this connection from your other connections" -msgstr "" - -#: ../../mod/connedit.php:528 -msgid "Delete this connection" -msgstr "" - -#: ../../mod/connedit.php:589 ../../mod/connedit.php:627 -msgid "Approve this connection" -msgstr "" - -#: ../../mod/connedit.php:589 -msgid "Accept connection to allow communication" -msgstr "" - -#: ../../mod/connedit.php:605 -#, php-format -msgid "Connections: settings for %s" -msgstr "" - -#: ../../mod/connedit.php:606 -msgid "Apply these permissions automatically" -msgstr "" - -#: ../../mod/connedit.php:610 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "" - -#: ../../mod/connedit.php:614 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../mod/connedit.php:615 -msgid "Rating (this information may be public)" -msgstr "" - -#: ../../mod/connedit.php:616 -msgid "Optionally explain your rating (this information may be public)" -msgstr "" - -#: ../../mod/connedit.php:623 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "" - -#: ../../mod/connedit.php:626 -msgid "inherited" -msgstr "" - -#: ../../mod/connedit.php:629 -msgid "Connection has no individual permissions!" -msgstr "" - -#: ../../mod/connedit.php:630 -msgid "" -"This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "" - -#: ../../mod/connedit.php:632 -msgid "Profile Visibility" -msgstr "" - -#: ../../mod/connedit.php:633 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: ../../mod/connedit.php:634 -msgid "Contact Information / Notes" -msgstr "" - -#: ../../mod/connedit.php:635 -msgid "Edit contact notes" -msgstr "" - -#: ../../mod/connedit.php:637 -msgid "Their Settings" -msgstr "" - -#: ../../mod/connedit.php:638 -msgid "My Settings" -msgstr "" - -#: ../../mod/connedit.php:640 -msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "" - -#: ../../mod/connedit.php:641 -msgid "Clear/Disable Automatic Permissions" -msgstr "" - -#: ../../mod/connedit.php:642 -msgid "Forum Members" -msgstr "" - -#: ../../mod/connedit.php:643 -msgid "Soapbox" -msgstr "" - -#: ../../mod/connedit.php:644 -msgid "Full Sharing (typical social network permissions)" -msgstr "" - -#: ../../mod/connedit.php:645 -msgid "Cautious Sharing " -msgstr "" - -#: ../../mod/connedit.php:646 -msgid "Follow Only" -msgstr "" - -#: ../../mod/connedit.php:647 -msgid "Individual Permissions" -msgstr "" - -#: ../../mod/connedit.php:648 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than individual " -"settings. Changing those inherited settings on this page will have no effect." -msgstr "" - -#: ../../mod/connedit.php:649 -msgid "Advanced Permissions" -msgstr "" - -#: ../../mod/connedit.php:650 -msgid "Simple Permissions (select one and submit)" -msgstr "" - -#: ../../mod/connedit.php:654 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "" - -#: ../../mod/connedit.php:655 -msgid "Block/Unblock contact" -msgstr "" - -#: ../../mod/connedit.php:656 -msgid "Ignore contact" -msgstr "" - -#: ../../mod/connedit.php:657 -msgid "Repair URL settings" -msgstr "" - -#: ../../mod/connedit.php:658 -msgid "View conversations" -msgstr "" - -#: ../../mod/connedit.php:660 -msgid "Delete contact" -msgstr "" - -#: ../../mod/connedit.php:664 -msgid "Last update:" -msgstr "" - -#: ../../mod/connedit.php:666 -msgid "Update public posts" -msgstr "" - -#: ../../mod/connedit.php:668 -msgid "Update now" -msgstr "" - -#: ../../mod/connedit.php:674 -msgid "Currently blocked" -msgstr "" - -#: ../../mod/connedit.php:675 -msgid "Currently ignored" -msgstr "" - -#: ../../mod/connedit.php:676 -msgid "Currently archived" -msgstr "" - -#: ../../mod/connedit.php:677 -msgid "Currently pending" -msgstr "" - #: ../../mod/message.php:41 msgid "Conversation removed." msgstr "" @@ -7827,6 +7833,11 @@ msgstr "" msgid "invalid target signature" msgstr "" +#: ../../mod/rate.php:146 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "" + #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "" @@ -7839,50 +7850,73 @@ msgstr "" msgid "Age: " msgstr "" -#: ../../mod/directory.php:201 +#: ../../mod/directory.php:194 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/directory.php:206 msgid "Gender: " msgstr "" -#: ../../mod/directory.php:203 +#: ../../mod/directory.php:208 msgid "Status: " msgstr "" -#: ../../mod/directory.php:205 +#: ../../mod/directory.php:210 msgid "Homepage: " msgstr "" -#: ../../mod/directory.php:208 +#: ../../mod/directory.php:213 msgid "Hometown: " msgstr "" -#: ../../mod/directory.php:210 +#: ../../mod/directory.php:215 msgid "About: " msgstr "" -#: ../../mod/directory.php:265 +#: ../../mod/directory.php:273 msgid "Public Forum:" msgstr "" -#: ../../mod/directory.php:268 +#: ../../mod/directory.php:276 msgid "Keywords: " msgstr "" -#: ../../mod/directory.php:322 +#: ../../mod/directory.php:331 msgid "Finding:" msgstr "" -#: ../../mod/directory.php:327 +#: ../../mod/directory.php:336 msgid "next page" msgstr "" -#: ../../mod/directory.php:327 +#: ../../mod/directory.php:336 msgid "previous page" msgstr "" -#: ../../mod/directory.php:344 +#: ../../mod/directory.php:353 msgid "No entries (some entries may be hidden)." msgstr "" +#: ../../mod/ratings.php:68 +msgid "No ratings" +msgstr "" + +#: ../../mod/ratings.php:94 +msgid "Ratings" +msgstr "" + +#: ../../mod/ratings.php:95 +msgid "Rating: " +msgstr "" + +#: ../../mod/ratings.php:96 +msgid "Description: " +msgstr "" + #: ../../mod/profiles.php:18 ../../mod/profiles.php:174 #: ../../mod/profiles.php:231 ../../mod/profiles.php:600 msgid "Profile not found." diff --git a/version.inc b/version.inc index c06a0d149..f8cfd0a25 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-02-05.936 +2015-02-06.937 From 8840980797e83fa4831d075dff99cd47cd9f8c21 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 6 Feb 2015 02:07:52 -0800 Subject: [PATCH 05/13] more doc updates --- doc/html/rate_8php.html | 173 ++++++++++++++++++++++++++++++++ doc/html/rate_8php.js | 6 ++ doc/html/ratenotif_8php.html | 147 +++++++++++++++++++++++++++ doc/html/ratenotif_8php.js | 4 + doc/html/ratings_8php.html | 155 ++++++++++++++++++++++++++++ doc/html/ratings_8php.js | 5 + doc/html/ratingsearch_8php.html | 137 +++++++++++++++++++++++++ doc/html/ratingsearch_8php.js | 4 + doc/html/regdir_8php.html | 137 +++++++++++++++++++++++++ doc/html/regdir_8php.js | 4 + 10 files changed, 772 insertions(+) create mode 100644 doc/html/rate_8php.html create mode 100644 doc/html/rate_8php.js create mode 100644 doc/html/ratenotif_8php.html create mode 100644 doc/html/ratenotif_8php.js create mode 100644 doc/html/ratings_8php.html create mode 100644 doc/html/ratings_8php.js create mode 100644 doc/html/ratingsearch_8php.html create mode 100644 doc/html/ratingsearch_8php.js create mode 100644 doc/html/regdir_8php.html create mode 100644 doc/html/regdir_8php.js diff --git a/doc/html/rate_8php.html b/doc/html/rate_8php.html new file mode 100644 index 000000000..342da3dc3 --- /dev/null +++ b/doc/html/rate_8php.html @@ -0,0 +1,173 @@ + + + + + + +The Red Matrix: mod/rate.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    rate.php File Reference
    +
    +
    + + + + + + + + +

    +Functions

     rate_init (&$a)
     
     rate_post (&$a)
     
     rate_content (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    rate_content ($a)
    +
    + +
    +
    + +
    +
    + + + + + + + + +
    rate_init ($a)
    +
    + +
    +
    + +
    +
    + + + + + + + + +
    rate_post ($a)
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/rate_8php.js b/doc/html/rate_8php.js new file mode 100644 index 000000000..f3b785ce8 --- /dev/null +++ b/doc/html/rate_8php.js @@ -0,0 +1,6 @@ +var rate_8php = +[ + [ "rate_content", "rate_8php.html#a22fc66202522acb53fb3746fc21d80f2", null ], + [ "rate_init", "rate_8php.html#a051f31f49e9decd6d701bc5ab8fb7771", null ], + [ "rate_post", "rate_8php.html#acae9f41835b07e3c977464030e8831fc", null ] +]; \ No newline at end of file diff --git a/doc/html/ratenotif_8php.html b/doc/html/ratenotif_8php.html new file mode 100644 index 000000000..924fd2e89 --- /dev/null +++ b/doc/html/ratenotif_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Matrix: include/ratenotif.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    ratenotif.php File Reference
    +
    +
    + + + + +

    +Functions

     ratenotif_run ($argv, $argc)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    ratenotif_run ( $argv,
     $argc 
    )
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/ratenotif_8php.js b/doc/html/ratenotif_8php.js new file mode 100644 index 000000000..7beb5a536 --- /dev/null +++ b/doc/html/ratenotif_8php.js @@ -0,0 +1,4 @@ +var ratenotif_8php = +[ + [ "ratenotif_run", "ratenotif_8php.html#a0dd7843f7f10ba9ea29bcbdff1cdbf37", null ] +]; \ No newline at end of file diff --git a/doc/html/ratings_8php.html b/doc/html/ratings_8php.html new file mode 100644 index 000000000..eb244f178 --- /dev/null +++ b/doc/html/ratings_8php.html @@ -0,0 +1,155 @@ + + + + + + +The Red Matrix: mod/ratings.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    ratings.php File Reference
    +
    +
    + + + + + + +

    +Functions

     ratings_init (&$a)
     
     ratings_content (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    ratings_content ($a)
    +
    + +
    +
    + +
    +
    + + + + + + + + +
    ratings_init ($a)
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/ratings_8php.js b/doc/html/ratings_8php.js new file mode 100644 index 000000000..63ffa4059 --- /dev/null +++ b/doc/html/ratings_8php.js @@ -0,0 +1,5 @@ +var ratings_8php = +[ + [ "ratings_content", "ratings_8php.html#a25f835d136b884354cf1fa4d897c857b", null ], + [ "ratings_init", "ratings_8php.html#abcfe38319c4e66eb70a687ecc2966ac3", null ] +]; \ No newline at end of file diff --git a/doc/html/ratingsearch_8php.html b/doc/html/ratingsearch_8php.html new file mode 100644 index 000000000..5624b328c --- /dev/null +++ b/doc/html/ratingsearch_8php.html @@ -0,0 +1,137 @@ + + + + + + +The Red Matrix: mod/ratingsearch.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    ratingsearch.php File Reference
    +
    +
    + + + + +

    +Functions

     ratingsearch_init (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    ratingsearch_init ($a)
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/ratingsearch_8php.js b/doc/html/ratingsearch_8php.js new file mode 100644 index 000000000..334d826f3 --- /dev/null +++ b/doc/html/ratingsearch_8php.js @@ -0,0 +1,4 @@ +var ratingsearch_8php = +[ + [ "ratingsearch_init", "ratingsearch_8php.html#aa609eb568ce273ef08e04a39ee532466", null ] +]; \ No newline at end of file diff --git a/doc/html/regdir_8php.html b/doc/html/regdir_8php.html new file mode 100644 index 000000000..fb50466c3 --- /dev/null +++ b/doc/html/regdir_8php.html @@ -0,0 +1,137 @@ + + + + + + +The Red Matrix: mod/regdir.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    regdir.php File Reference
    +
    +
    + + + + +

    +Functions

     regdir_init (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    regdir_init ($a)
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/regdir_8php.js b/doc/html/regdir_8php.js new file mode 100644 index 000000000..a75697bea --- /dev/null +++ b/doc/html/regdir_8php.js @@ -0,0 +1,4 @@ +var regdir_8php = +[ + [ "regdir_init", "regdir_8php.html#a6e703a4e66d2370c48500262cc0b56dd", null ] +]; \ No newline at end of file From 712bc643b5f26315602f34e9d9822ef83cb6b65a Mon Sep 17 00:00:00 2001 From: marijus Date: Fri, 6 Feb 2015 11:34:23 +0100 Subject: [PATCH 06/13] revert to get_rel_link() --- mod/sharedwithme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/sharedwithme.php b/mod/sharedwithme.php index 3c03b7412..d91987027 100644 --- a/mod/sharedwithme.php +++ b/mod/sharedwithme.php @@ -83,7 +83,7 @@ function sharedwithme_content(&$a) { $item['id'] = $rr['id']; $item['objfiletype'] = $object['filetype']; $item['objfiletypeclass'] = getIconFromType($object['filetype']); - $item['objurl'] = rawurldecode($object['link'][0]['href']) . '?f=&zid=' . $channel['xchan_addr']; + $item['objurl'] = rawurldecode(get_rel_link($object['link'],'alternate')) . '?f=&zid=' . $channel['xchan_addr']; $item['objfilename'] = $object['filename']; $item['objfilesize'] = userReadableSize($object['filesize']); $item['objedited'] = $object['edited']; From 352dfb8d7b4046eeafd6dd7fd355309a8c9ecc14 Mon Sep 17 00:00:00 2001 From: Erik Lundin Date: Sat, 7 Feb 2015 13:48:19 +0100 Subject: [PATCH 07/13] Update Swedish strings --- view/sv/messages.po | 10613 +++++++++++++++++++++--------------------- 1 file changed, 5378 insertions(+), 5235 deletions(-) diff --git a/view/sv/messages.po b/view/sv/messages.po index 95e6dd8ae..4c591ea84 100644 --- a/view/sv/messages.po +++ b/view/sv/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-02 00:04-0800\n" -"PO-Revision-Date: 2015-01-03 19:53+0000\n" +"POT-Creation-Date: 2015-02-06 00:04-0800\n" +"PO-Revision-Date: 2015-02-07 12:46+0000\n" "Last-Translator: Erik Lundin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/red-matrix/language/sv/)\n" "MIME-Version: 1.0\n" @@ -25,155 +25,229 @@ msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan inte hitta DNS-information för databasserver '%s'" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 ../../mod/photos.php:91 -#: ../../mod/photos.php:654 +#: ../../mod/photos.php:91 ../../mod/photos.php:625 +#: ../../mod/profile_photo.php:143 ../../mod/profile_photo.php:302 +#: ../../mod/profile_photo.php:424 msgid "Profile Photos" msgstr "Profilfoton" -#: ../../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 "Behörighet saknas" +#: ../../include/widgets.php:35 ../../include/taxonomy.php:250 +#: ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "Kategorier" -#: ../../include/items.php:969 ../../include/items.php:1014 -msgid "(Unknown)" -msgstr "(Okänt)" +#: ../../include/widgets.php:91 ../../include/nav.php:163 +#: ../../mod/apps.php:34 +msgid "Apps" +msgstr "Appar" -#: ../../include/items.php:1171 -msgid "Visible to anybody on the internet." -msgstr "Kan ses av vem som helst på Internet." +#: ../../include/widgets.php:92 +msgid "System" +msgstr "System" -#: ../../include/items.php:1173 -msgid "Visible to you only." -msgstr "Kan bara ses av dig." +#: ../../include/widgets.php:94 ../../include/conversation.php:1471 +msgid "Personal" +msgstr "Personligt" -#: ../../include/items.php:1175 -msgid "Visible to anybody in this network." -msgstr "Kan ses av alla på det här nätverket." +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Skapa personlig app" -#: ../../include/items.php:1177 -msgid "Visible to anybody authenticated." -msgstr "Kan ses av alla inloggade." +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Redigera personlig app" -#: ../../include/items.php:1179 +#: ../../include/widgets.php:136 ../../include/widgets.php:175 +#: ../../include/conversation.php:942 ../../include/identity.php:840 +#: ../../include/Contact.php:107 ../../mod/suggest.php:51 +#: ../../mod/match.php:62 ../../mod/directory.php:272 +msgid "Connect" +msgstr "Ta kontakt" + +#: ../../include/widgets.php:138 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Ignorera/göm" + +#: ../../include/widgets.php:143 ../../mod/connections.php:268 +msgid "Suggestions" +msgstr "Förslag" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Se fler..." + +#: ../../include/widgets.php:166 #, php-format -msgid "Visible to anybody on %s." -msgstr "Kan ses av alla på %s." +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du har %1$.0f av %2$.0f tillåtna kontakter." -#: ../../include/items.php:1181 -msgid "Visible to all connections." -msgstr "Kan ses av alla kontakter." +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Lägg till ny kontakt" -#: ../../include/items.php:1183 -msgid "Visible to approved connections." -msgstr "Kan ses av godkända kontakter." +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Ange kanaladressen" -#: ../../include/items.php:1185 -msgid "Visible to specific connections." -msgstr "Kan ses av valda kontakter." +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Exempel: bob@example.com, http://example.com/barbara" -#: ../../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 "Posten hittades inte." +#: ../../include/widgets.php:190 +msgid "Notes" +msgstr "Anteckningar" -#: ../../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/group.php:9 ../../mod/poke.php:128 -#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:559 ../../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/settings.php:554 ../../mod/connections.php:169 -#: ../../mod/manage.php:6 ../../mod/connedit.php:266 ../../mod/mail.php:111 -#: ../../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:975 ../../mod/suggest.php:26 ../../mod/layouts.php:67 -#: ../../mod/layouts.php:74 ../../mod/layouts.php:85 ../../mod/setup.php:207 -#: ../../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/photos.php:68 ../../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 "Behörighet saknas." +#: ../../include/widgets.php:192 ../../include/text.php:837 +#: ../../include/text.php:849 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 ../../mod/admin.php:1344 ../../mod/admin.php:1365 +msgid "Save" +msgstr "Spara" -#: ../../include/items.php:4410 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Kretsen hittades inte." +#: ../../include/widgets.php:264 +msgid "Remove term" +msgstr "Ta bort uttryck" -#: ../../include/items.php:4425 -msgid "Collection is empty." -msgstr "Kretsen är tom." +#: ../../include/widgets.php:272 ../../include/features.php:71 +msgid "Saved Searches" +msgstr "Sparade sökningar" -#: ../../include/items.php:4432 -#, php-format -msgid "Collection: %s" -msgstr "Krets: %s" +#: ../../include/widgets.php:273 ../../include/group.php:303 +msgid "add" +msgstr "lägg till" -#: ../../include/items.php:4443 -#, php-format -msgid "Connection: %s" -msgstr "Kontakt: %s" +#: ../../include/widgets.php:302 ../../include/features.php:83 +#: ../../include/contact_widgets.php:57 +msgid "Saved Folders" +msgstr "Sparade mappar" -#: ../../include/items.php:4446 -msgid "Connection not found." -msgstr "Kontakten hittades inte." +#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Allt" -#: ../../include/menu.php:42 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:263 -#: ../../include/ItemObject.php:100 ../../include/apps.php:254 -#: ../../mod/editpost.php:112 ../../mod/settings.php:639 -#: ../../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 "Redigera" +#: ../../include/widgets.php:347 +msgid "Archives" +msgstr "Arkiv" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Ingen mottagare angiven." +#: ../../include/widgets.php:425 +msgid "Refresh" +msgstr "Ladda om" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[inget ämne]" +#: ../../include/widgets.php:426 ../../mod/connedit.php:563 +msgid "Me" +msgstr "Mig själv" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kunde inte avgöra vem som är avsändare." +#: ../../include/widgets.php:427 ../../mod/connedit.php:566 +msgid "Best Friends" +msgstr "Bästa vänner" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Den sparade posten kunde inte verifieras." +#: ../../include/widgets.php:428 ../../include/identity.php:387 +#: ../../include/identity.php:388 ../../include/identity.php:395 +#: ../../include/profile_selectors.php:80 ../../mod/settings.php:329 +#: ../../mod/settings.php:333 ../../mod/settings.php:334 +#: ../../mod/settings.php:337 ../../mod/settings.php:348 +#: ../../mod/connedit.php:567 +msgid "Friends" +msgstr "Vänner" -#: ../../include/network.php:590 -msgid "view full size" -msgstr "visa full storlek" +#: ../../include/widgets.php:429 +msgid "Co-workers" +msgstr "Kollegor" + +#: ../../include/widgets.php:430 ../../mod/connedit.php:568 +msgid "Former Friends" +msgstr "Tidigare vänner" + +#: ../../include/widgets.php:431 ../../mod/connedit.php:569 +msgid "Acquaintances" +msgstr "Bekanta" + +#: ../../include/widgets.php:432 +msgid "Everybody" +msgstr "Alla" + +#: ../../include/widgets.php:466 +msgid "Account settings" +msgstr "Kontoinställningar" + +#: ../../include/widgets.php:472 +msgid "Channel settings" +msgstr "Kanalinställningar" + +#: ../../include/widgets.php:478 +msgid "Additional features" +msgstr "Tilläggsfunktioner" + +#: ../../include/widgets.php:484 +msgid "Feature/Addon settings" +msgstr "Tilläggsinställningar" + +#: ../../include/widgets.php:490 +msgid "Display settings" +msgstr "Utseende" + +#: ../../include/widgets.php:496 +msgid "Connected apps" +msgstr "Anslutna appar" + +#: ../../include/widgets.php:502 +msgid "Export channel" +msgstr "Exportera kanal" + +#: ../../include/widgets.php:511 ../../mod/connedit.php:627 +msgid "Connection Default Permissions" +msgstr "Standardbehörighet för kontakt" + +#: ../../include/widgets.php:519 +msgid "Premium Channel Settings" +msgstr "Inställningar för premiumkanal" + +#: ../../include/widgets.php:527 ../../include/features.php:61 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanalkällor" + +#: ../../include/widgets.php:535 ../../include/apps.php:134 +#: ../../include/nav.php:210 ../../mod/admin.php:956 ../../mod/admin.php:1161 +msgid "Settings" +msgstr "Inställningar" + +#: ../../include/widgets.php:548 ../../mod/mail.php:128 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Meddelanden" + +#: ../../include/widgets.php:551 +msgid "Check Mail" +msgstr "Hämta meddelanden" + +#: ../../include/widgets.php:556 ../../include/nav.php:201 +msgid "New Message" +msgstr "Nytt meddelande" + +#: ../../include/widgets.php:634 +msgid "Chat Rooms" +msgstr "Chattrum" + +#: ../../include/widgets.php:654 +msgid "Bookmarked Chatrooms" +msgstr "Bokmärkta chattrum" + +#: ../../include/widgets.php:674 +msgid "Suggested Chatrooms" +msgstr "Föreslagna chattrum" + +#: ../../include/widgets.php:801 ../../include/widgets.php:859 +msgid "photo/image" +msgstr "foto/bild" + +#: ../../include/widgets.php:954 ../../include/widgets.php:956 +msgid "Rate Me" +msgstr "Betygsätt mig" + +#: ../../include/widgets.php:960 +msgid "View Ratings" +msgstr "Visa betyg" #: ../../include/permissions.php:26 msgid "Can view my normal stream and posts" @@ -326,11 +400,6 @@ msgstr "kommenterade %ss inlägg" msgid "Tags" msgstr "Taggar" -#: ../../include/taxonomy.php:250 ../../include/contact_widgets.php:92 -#: ../../include/widgets.php:35 -msgid "Categories" -msgstr "Kategorier" - #: ../../include/taxonomy.php:269 msgid "Keywords" msgstr "Nyckelord" @@ -367,26 +436,425 @@ msgstr "ogilla" msgid "dislikes" msgstr "ogillar" -#: ../../include/taxonomy.php:380 ../../include/identity.php:1151 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1024 +#: ../../include/taxonomy.php:380 ../../include/ItemObject.php:146 +#: ../../include/identity.php:1155 ../../mod/photos.php:995 msgctxt "noun" msgid "Like" msgid_plural "Likes" msgstr[0] "gillar detta" msgstr[1] "gillar detta" +#: ../../include/bbcode.php:115 ../../include/bbcode.php:688 +#: ../../include/bbcode.php:691 ../../include/bbcode.php:696 +#: ../../include/bbcode.php:699 ../../include/bbcode.php:702 +#: ../../include/bbcode.php:705 ../../include/bbcode.php:710 +#: ../../include/bbcode.php:713 ../../include/bbcode.php:718 +#: ../../include/bbcode.php:721 ../../include/bbcode.php:724 +#: ../../include/bbcode.php:727 +msgid "Image/photo" +msgstr "Bild/foto" + +#: ../../include/bbcode.php:150 ../../include/bbcode.php:738 +msgid "Encrypted content" +msgstr "Krypterat innehåll" + +#: ../../include/bbcode.php:168 +msgid "Install design element: " +msgstr "Installera designelement: " + +#: ../../include/bbcode.php:174 +msgid "QR code" +msgstr "QR-kod" + +#: ../../include/bbcode.php:223 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s skrev följande %2$s %3$s" + +#: ../../include/bbcode.php:225 +msgid "post" +msgstr "post" + +#: ../../include/bbcode.php:447 +msgid "Different viewers will see this text differently" +msgstr "Olika betraktare kan se den här texten ollika" + +#: ../../include/bbcode.php:656 +msgid "$1 spoiler" +msgstr "$1 spoiler" + +#: ../../include/bbcode.php:676 +msgid "$1 wrote:" +msgstr "$1 skrev:" + +#: ../../include/text.php:320 +msgid "prev" +msgstr "föregående" + +#: ../../include/text.php:322 +msgid "first" +msgstr "första" + +#: ../../include/text.php:351 +msgid "last" +msgstr "sista" + +#: ../../include/text.php:354 +msgid "next" +msgstr "nästa" + +#: ../../include/text.php:366 +msgid "older" +msgstr "äldre" + +#: ../../include/text.php:368 +msgid "newer" +msgstr "nyare" + +#: ../../include/text.php:750 +msgid "No connections" +msgstr "Inga kontakter" + +#: ../../include/text.php:766 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontakter" + +#: ../../include/text.php:779 ../../mod/viewconnections.php:86 +msgid "View Connections" +msgstr "Visa kontakter" + +#: ../../include/text.php:836 ../../include/text.php:848 +#: ../../include/apps.php:147 ../../include/nav.php:165 +#: ../../mod/search.php:34 +msgid "Search" +msgstr "Sök" + +#: ../../include/text.php:915 +msgid "poke" +msgstr "puffa" + +#: ../../include/text.php:915 ../../include/conversation.php:243 +msgid "poked" +msgstr "puffade" + +#: ../../include/text.php:916 +msgid "ping" +msgstr "pinga" + +#: ../../include/text.php:916 +msgid "pinged" +msgstr "pingade" + +#: ../../include/text.php:917 +msgid "prod" +msgstr "stöt till" + +#: ../../include/text.php:917 +msgid "prodded" +msgstr "stötte till" + +#: ../../include/text.php:918 +msgid "slap" +msgstr "daska till" + +#: ../../include/text.php:918 +msgid "slapped" +msgstr "daskade till" + +#: ../../include/text.php:919 +msgid "finger" +msgstr "fingra på" + +#: ../../include/text.php:919 +msgid "fingered" +msgstr "fingrade på" + +#: ../../include/text.php:920 +msgid "rebuff" +msgstr "stöt tillbaka" + +#: ../../include/text.php:920 +msgid "rebuffed" +msgstr "stötte tillbaks" + +#: ../../include/text.php:930 +msgid "happy" +msgstr "glad" + +#: ../../include/text.php:931 +msgid "sad" +msgstr "ledsen" + +#: ../../include/text.php:932 +msgid "mellow" +msgstr "lugn" + +#: ../../include/text.php:933 +msgid "tired" +msgstr "trött" + +#: ../../include/text.php:934 +msgid "perky" +msgstr "uppåt" + +#: ../../include/text.php:935 +msgid "angry" +msgstr "arg" + +#: ../../include/text.php:936 +msgid "stupified" +msgstr "virrig" + +#: ../../include/text.php:937 +msgid "puzzled" +msgstr "förbryllad" + +#: ../../include/text.php:938 +msgid "interested" +msgstr "intresserad" + +#: ../../include/text.php:939 +msgid "bitter" +msgstr "bitter" + +#: ../../include/text.php:940 +msgid "cheerful" +msgstr "munter" + +#: ../../include/text.php:941 +msgid "alive" +msgstr "pigg" + +#: ../../include/text.php:942 +msgid "annoyed" +msgstr "irriterad" + +#: ../../include/text.php:943 +msgid "anxious" +msgstr "bekymrad" + +#: ../../include/text.php:944 +msgid "cranky" +msgstr "grinig" + +#: ../../include/text.php:945 +msgid "disturbed" +msgstr "besvärad" + +#: ../../include/text.php:946 +msgid "frustrated" +msgstr "frustrerad" + +#: ../../include/text.php:947 +msgid "depressed" +msgstr "deprimerad" + +#: ../../include/text.php:948 +msgid "motivated" +msgstr "motiverad" + +#: ../../include/text.php:949 +msgid "relaxed" +msgstr "avslappnad" + +#: ../../include/text.php:950 +msgid "surprised" +msgstr "förvånad" + +#: ../../include/text.php:1116 +msgid "Monday" +msgstr "måndag" + +#: ../../include/text.php:1116 +msgid "Tuesday" +msgstr "tisdag" + +#: ../../include/text.php:1116 +msgid "Wednesday" +msgstr "onsdag" + +#: ../../include/text.php:1116 +msgid "Thursday" +msgstr "torsdag" + +#: ../../include/text.php:1116 +msgid "Friday" +msgstr "fredag" + +#: ../../include/text.php:1116 +msgid "Saturday" +msgstr "lördag" + +#: ../../include/text.php:1116 +msgid "Sunday" +msgstr "söndag" + +#: ../../include/text.php:1120 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1120 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1120 +msgid "March" +msgstr "mars" + +#: ../../include/text.php:1120 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1120 +msgid "May" +msgstr "maj" + +#: ../../include/text.php:1120 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1120 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1120 +msgid "August" +msgstr "augusti" + +#: ../../include/text.php:1120 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1120 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1120 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1120 +msgid "December" +msgstr "december" + +#: ../../include/text.php:1198 +msgid "unknown.???" +msgstr "okänt.???" + +#: ../../include/text.php:1199 +msgid "bytes" +msgstr "byte" + +#: ../../include/text.php:1235 +msgid "remove category" +msgstr "ta bort kategori" + +#: ../../include/text.php:1304 +msgid "remove from file" +msgstr "ta bort från fil" + +#: ../../include/text.php:1380 ../../include/text.php:1391 +#: ../../mod/connedit.php:635 +msgid "Click to open/close" +msgstr "Klicka för att öppna/stänga" + +#: ../../include/text.php:1539 ../../mod/events.php:418 +msgid "Link to Source" +msgstr "Länk till källa" + +#: ../../include/text.php:1558 +msgid "Select a page layout: " +msgstr "Välj en sidlayout: " + +#: ../../include/text.php:1561 ../../include/text.php:1621 +msgid "default" +msgstr "standard" + +#: ../../include/text.php:1594 +msgid "Page content type: " +msgstr "Typ av sidinnehåll: " + +#: ../../include/text.php:1633 +msgid "Select an alternate language" +msgstr "Välj ett alternativt språk" + +#: ../../include/text.php:1752 ../../include/diaspora.php:1953 +#: ../../include/conversation.php:120 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:43 +msgid "photo" +msgstr "foto" + +#: ../../include/text.php:1755 ../../include/conversation.php:123 +#: ../../mod/tagger.php:47 +msgid "event" +msgstr "händelse" + +#: ../../include/text.php:1758 ../../include/diaspora.php:1953 +#: ../../include/conversation.php:148 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:51 +msgid "status" +msgstr "status" + +#: ../../include/text.php:1760 ../../include/conversation.php:150 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "kommentar" + +#: ../../include/text.php:1765 +msgid "activity" +msgstr "aktivitet" + +#: ../../include/text.php:2052 +msgid "Design" +msgstr "Design" + +#: ../../include/text.php:2055 +msgid "Blocks" +msgstr "Block" + +#: ../../include/text.php:2056 +msgid "Menus" +msgstr "Menyer" + +#: ../../include/text.php:2057 +msgid "Layouts" +msgstr "Layouter" + +#: ../../include/text.php:2058 +msgid "Pages" +msgstr "Sidor" + +#: ../../include/text.php:2393 ../../include/RedDAV/RedBrowser.php:130 +msgid "Collection" +msgstr "Samling" + #: ../../include/page_widgets.php:6 msgid "New Page" msgstr "Ny sida" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:165 -#: ../../mod/blocks.php:135 ../../mod/layouts.php:171 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/apps.php:254 +#: ../../include/menu.php:42 ../../include/ItemObject.php:100 +#: ../../mod/blocks.php:132 ../../mod/webpages.php:162 +#: ../../mod/connections.php:382 ../../mod/connections.php:395 +#: ../../mod/connections.php:414 ../../mod/editblock.php:143 +#: ../../mod/settings.php:639 ../../mod/editpost.php:112 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 +#: ../../mod/thing.php:233 ../../mod/layouts.php:167 ../../mod/menu.php:78 +msgid "Edit" +msgstr "Redigera" + +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 msgid "View" msgstr "Visa" -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1102 +#: ../../include/page_widgets.php:40 ../../include/conversation.php:1132 #: ../../include/ItemObject.php:638 ../../mod/webpages.php:166 -#: ../../mod/photos.php:995 +#: ../../mod/photos.php:966 msgid "Preview" msgstr "Förhandsgranska" @@ -418,6 +886,48 @@ msgstr "Inbäddat innehåll" msgid "Embedding disabled" msgstr "Inbäddning inaktiverat" +#: ../../include/photos.php:15 ../../include/attach.php:137 +#: ../../include/attach.php:184 ../../include/attach.php:247 +#: ../../include/attach.php:261 ../../include/attach.php:301 +#: ../../include/attach.php:315 ../../include/attach.php:339 +#: ../../include/attach.php:532 ../../include/attach.php:606 +#: ../../include/items.php:4063 ../../include/chat.php:116 +#: ../../mod/setup.php:207 ../../mod/register.php:72 ../../mod/network.php:12 +#: ../../mod/achievements.php:30 ../../mod/authtest.php:13 +#: ../../mod/suggest.php:26 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/events.php:199 ../../mod/blocks.php:67 ../../mod/blocks.php:75 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 +#: ../../mod/block.php:72 ../../mod/webpages.php:67 ../../mod/mitem.php:106 +#: ../../mod/delegate.php:6 ../../mod/channel.php:90 ../../mod/channel.php:201 +#: ../../mod/channel.php:244 ../../mod/regmod.php:17 ../../mod/chat.php:90 +#: ../../mod/chat.php:95 ../../mod/common.php:35 ../../mod/item.php:195 +#: ../../mod/item.php:203 ../../mod/item.php:931 ../../mod/connections.php:169 +#: ../../mod/editblock.php:65 ../../mod/settings.php:554 +#: ../../mod/photos.php:68 ../../mod/poke.php:128 ../../mod/manage.php:6 +#: ../../mod/bookmarks.php:46 ../../mod/editpost.php:13 ../../mod/group.php:9 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/sources.php:66 ../../mod/pdledit.php:21 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:118 ../../mod/profile_photo.php:264 +#: ../../mod/profile_photo.php:277 ../../mod/fsuggest.php:78 +#: ../../mod/like.php:166 ../../mod/viewsrc.php:14 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 +#: ../../mod/filestorage.php:114 ../../mod/locs.php:77 ../../mod/thing.php:247 +#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/layouts.php:67 +#: ../../mod/layouts.php:74 ../../mod/layouts.php:85 +#: ../../mod/connedit.php:321 ../../mod/menu.php:61 +#: ../../mod/notifications.php:66 ../../mod/appman.php:66 +#: ../../mod/mood.php:112 ../../mod/mail.php:114 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/message.php:16 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/rate.php:101 ../../mod/page.php:28 +#: ../../mod/page.php:78 ../../mod/profiles.php:188 ../../mod/profiles.php:576 +#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 +#: ../../index.php:190 ../../index.php:390 +msgid "Permission denied." +msgstr "Behörighet saknas." + #: ../../include/photos.php:105 #, php-format msgid "Image exceeds website size limit of %lu bytes" @@ -427,7 +937,7 @@ msgstr "Bild överskrider webbplatsens storleksbegränsning på %lu byte" msgid "Image file is empty." msgstr "Bildfil är tom." -#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 +#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 msgid "Unable to process image" msgstr "Kunde inte bearbeta bild" @@ -435,36 +945,17 @@ msgstr "Kunde inte bearbeta bild" msgid "Photo storage failed." msgstr "Fotolagring misslyckades." -#: ../../include/photos.php:341 ../../include/conversation.php:1533 +#: ../../include/photos.php:355 ../../include/conversation.php:1566 msgid "Photo Albums" msgstr "Fotoalbum" -#: ../../include/photos.php:345 +#: ../../include/photos.php:359 msgid "Upload New Photos" msgstr "Ladda upp nya foton" -#: ../../include/activities.php:39 -msgid " and " -msgstr " och " - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "offentlig profil" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ändrade %2$s till "%3$s"" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besök %1$ss %2$s" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s har en uppdaterad %2$s (har ändrat %3$s)." +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Offentlig tidslinje" #: ../../include/bb2diaspora.php:366 msgid "Attachments:" @@ -486,319 +977,264 @@ msgstr "Börjar:" msgid "Finishes:" msgstr "Slutar:" -#: ../../include/bb2diaspora.php:467 ../../include/identity.php:894 -#: ../../include/event.php:40 ../../mod/events.php:590 -#: ../../mod/directory.php:199 +#: ../../include/bb2diaspora.php:467 ../../include/event.php:40 +#: ../../include/identity.php:894 ../../mod/events.php:595 +#: ../../mod/directory.php:204 msgid "Location:" msgstr "Plats:" -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "Posten hittades inte." +#: ../../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 "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades." -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "Ingen källfil." - -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "Kan inte hitta fil att ersätta" - -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "Kan inte hitta fil att revidera/uppdatera" - -#: ../../include/attach.php:377 +#: ../../include/diaspora.php:1982 ../../include/conversation.php:164 +#: ../../mod/like.php:348 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Filen överskrider storleksbegränsningen %d" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gillar %2$ss %3$s" -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor." - -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd." - -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad." - -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "Sökväg inte tillgänglig." - -#: ../../include/attach.php:590 -msgid "Empty pathname" -msgstr "Tom sökväg" - -#: ../../include/attach.php:606 -msgid "duplicate filename or path" -msgstr "filnamn eller sökväg finns redan" - -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "Sökväg hittas inte." - -#: ../../include/attach.php:681 -msgid "mkdir failed." -msgstr "mkdir misslyckades." - -#: ../../include/attach.php:685 -msgid "database storage failed." -msgstr "databaslagring misslyckades." - -#: ../../include/features.php:23 +#: ../../include/features.php:38 msgid "General Features" msgstr "Allmänna funktioner" -#: ../../include/features.php:25 +#: ../../include/features.php:40 msgid "Content Expiration" msgstr "Tidsbegränsat innehåll" -#: ../../include/features.php:25 +#: ../../include/features.php:40 msgid "Remove posts/comments and/or private messages at a future time" msgstr "Ta bort inlägg/kommentarer och/eller privata meddelanden efter en tid" -#: ../../include/features.php:26 +#: ../../include/features.php:41 msgid "Multiple Profiles" msgstr "Flera profiler" -#: ../../include/features.php:26 +#: ../../include/features.php:41 msgid "Ability to create multiple profiles" msgstr "Möjlighet att skapa flera profiler" -#: ../../include/features.php:27 +#: ../../include/features.php:42 msgid "Advanced Profiles" msgstr "Avancerade profiler" -#: ../../include/features.php:27 +#: ../../include/features.php:42 msgid "Additional profile sections and selections" msgstr "Fler profilinställningar" -#: ../../include/features.php:28 +#: ../../include/features.php:43 msgid "Profile Import/Export" msgstr "Profilimport/-export" -#: ../../include/features.php:28 +#: ../../include/features.php:43 msgid "Save and load profile details across sites/channels" msgstr "Spara och ladda profiluppgifter mellan webbplatser/kanaler" -#: ../../include/features.php:29 +#: ../../include/features.php:44 msgid "Web Pages" msgstr "Webbsidor" -#: ../../include/features.php:29 +#: ../../include/features.php:44 msgid "Provide managed web pages on your channel" msgstr "Tillhandahåll ordnade webbsidor i din kanal" -#: ../../include/features.php:30 +#: ../../include/features.php:45 msgid "Private Notes" msgstr "Privata anteckningar" -#: ../../include/features.php:30 +#: ../../include/features.php:45 msgid "Enables a tool to store notes and reminders" msgstr "Aktivera ett verktyg för att spara anteckningar och påminnelser" -#: ../../include/features.php:34 +#: ../../include/features.php:46 msgid "Navigation Channel Select" msgstr "Kanalväljare i navigation" -#: ../../include/features.php:34 +#: ../../include/features.php:46 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Välj kanal direkt från navigationslistens rullgardinsmeny" -#: ../../include/features.php:38 +#: ../../include/features.php:50 msgid "Extended Identity Sharing" msgstr "Utökad identitetsdelning" -#: ../../include/features.php:38 +#: ../../include/features.php:50 msgid "" "Share your identity with all websites on the internet. When disabled, " "identity is only shared with sites in the matrix." msgstr "Dela din identitet med alla webbplatser på Internet. Om inaktiverat är identiteten bara delad med platser i matrisen." -#: ../../include/features.php:39 +#: ../../include/features.php:51 msgid "Expert Mode" msgstr "Expertläge" -#: ../../include/features.php:39 +#: ../../include/features.php:51 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Aktivera expertläge för att tillåta avancerade inställningar" -#: ../../include/features.php:40 +#: ../../include/features.php:52 msgid "Premium Channel" msgstr "Premiumkanal" -#: ../../include/features.php:40 +#: ../../include/features.php:52 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Låter dig ange begränsningar och villkor för dem som vill ansluta till din kanal" -#: ../../include/features.php:45 +#: ../../include/features.php:57 msgid "Post Composition Features" msgstr "Skrivfunktioner" -#: ../../include/features.php:47 +#: ../../include/features.php:59 msgid "Use Markdown" msgstr "Använd Markdown" -#: ../../include/features.php:47 +#: ../../include/features.php:59 msgid "Allow use of \"Markdown\" to format posts" msgstr "Tillåt att \"Markdown\" används för att formatera inlägg" -#: ../../include/features.php:49 ../../include/widgets.php:527 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanalkällor" +#: ../../include/features.php:60 +msgid "Large Photos" +msgstr "Stora foton" -#: ../../include/features.php:49 +#: ../../include/features.php:60 +msgid "" +"Include large (640px) photo thumbnails in posts. If not enabled, use small " +"(320px) photo thumbnails" +msgstr "Inkludera stora (640px) fotominiatyrer i inlägg. Om inte aktiverat används små (320px) fotominiatyrer" + +#: ../../include/features.php:61 msgid "Automatically import channel content from other channels or feeds" msgstr "Importera kanalinnehåll från andra kanaler eller flöden automatiskt" -#: ../../include/features.php:50 +#: ../../include/features.php:62 msgid "Even More Encryption" msgstr "Ytterligare kryptering" -#: ../../include/features.php:50 +#: ../../include/features.php:62 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Tillåt änd-till-änd-kryptering av innehåll med en delad hemlig nyckel" -#: ../../include/features.php:51 +#: ../../include/features.php:63 msgid "Flag Adult Photos" msgstr "Flagga vuxenfoton" -#: ../../include/features.php:51 +#: ../../include/features.php:63 msgid "Provide photo edit option to hide adult photos from default album view" msgstr "Gör det möjligt att inte visa foton som är olämpliga för barn i albums standardvy" -#: ../../include/features.php:56 +#: ../../include/features.php:68 msgid "Network and Stream Filtering" msgstr "Nätverk och strömfiltrering" -#: ../../include/features.php:57 +#: ../../include/features.php:69 msgid "Search by Date" msgstr "Sök på datum" -#: ../../include/features.php:57 +#: ../../include/features.php:69 msgid "Ability to select posts by date ranges" msgstr "Tillåter urval av inlägg baserat på datum" -#: ../../include/features.php:58 +#: ../../include/features.php:70 msgid "Collections Filter" msgstr "Kretsfilter" -#: ../../include/features.php:58 +#: ../../include/features.php:70 msgid "Enable widget to display Network posts only from selected collections" msgstr "Aktivera en väljare för att visa nätverksinlägg från enbart valda kretsar" -#: ../../include/features.php:59 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "Sparade sökningar" - -#: ../../include/features.php:59 +#: ../../include/features.php:71 msgid "Save search terms for re-use" msgstr "Spara sökuttryck för återanvändning" -#: ../../include/features.php:60 +#: ../../include/features.php:72 msgid "Network Personal Tab" msgstr "Personlig nätverksflik" -#: ../../include/features.php:60 +#: ../../include/features.php:72 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Aktivera en flik som visar endast de nätverksinlägg som du har deltagit i" -#: ../../include/features.php:61 +#: ../../include/features.php:73 msgid "Network New Tab" msgstr "Flik för nytt på nätverket" -#: ../../include/features.php:61 +#: ../../include/features.php:73 msgid "Enable tab to display all new Network activity" msgstr "Aktivera en flik som visar all ny nätverksaktivitet" -#: ../../include/features.php:62 +#: ../../include/features.php:74 msgid "Affinity Tool" msgstr "Samhörighetsverktyg" -#: ../../include/features.php:62 +#: ../../include/features.php:74 msgid "Filter stream activity by depth of relationships" msgstr "Filtrera strömaktivitet efter hur nära relationen är" -#: ../../include/features.php:63 +#: ../../include/features.php:75 msgid "Suggest Channels" msgstr "Föreslå kanaler" -#: ../../include/features.php:63 +#: ../../include/features.php:75 msgid "Show channel suggestions" msgstr "Visa förslag på kanaler" -#: ../../include/features.php:68 +#: ../../include/features.php:80 msgid "Post/Comment Tools" msgstr "Inläggs-/kommentarsverktyg" -#: ../../include/features.php:71 +#: ../../include/features.php:81 msgid "Tagging" msgstr "Taggning" -#: ../../include/features.php:71 +#: ../../include/features.php:81 msgid "Ability to tag existing posts" msgstr "Möjlighet att tagga befintliga inlägg" -#: ../../include/features.php:72 +#: ../../include/features.php:82 msgid "Post Categories" msgstr "Inläggskategorier" -#: ../../include/features.php:72 +#: ../../include/features.php:82 msgid "Add categories to your posts" msgstr "Lägg till kategorier till dina inlägg" -#: ../../include/features.php:73 ../../include/contact_widgets.php:57 -#: ../../include/widgets.php:302 -msgid "Saved Folders" -msgstr "Sparade mappar" - -#: ../../include/features.php:73 +#: ../../include/features.php:83 msgid "Ability to file posts under folders" msgstr "Möjlighet att lägga inlägg i mappar" -#: ../../include/features.php:74 +#: ../../include/features.php:84 msgid "Dislike Posts" msgstr "Ogilla inlägg" -#: ../../include/features.php:74 +#: ../../include/features.php:84 msgid "Ability to dislike posts/comments" msgstr "Möjlighet att ogilla inlägg/kommentarer" -#: ../../include/features.php:75 +#: ../../include/features.php:85 msgid "Star Posts" msgstr "Märk inlägg" -#: ../../include/features.php:75 +#: ../../include/features.php:85 msgid "Ability to mark special posts with a star indicator" msgstr "Möjlighet att märka speciella inlägg med en stjärna" -#: ../../include/features.php:76 +#: ../../include/features.php:86 msgid "Tag Cloud" msgstr "Taggmoln" -#: ../../include/features.php:76 +#: ../../include/features.php:86 msgid "Provide a personal tag cloud on your channel page" msgstr "Tillhandahåll ett personligt taggmoln på din kanalsida" #: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:262 +#: ../../include/RedDAV/RedBrowser.php:266 msgid "parent" msgstr "en nivå upp" -#: ../../include/RedDAV/RedBrowser.php:130 -#: ../../include/RedDAV/RedBrowser.php:339 -msgid "Collection" -msgstr "Samling" - #: ../../include/RedDAV/RedBrowser.php:133 msgid "Principal" msgstr "Bas" @@ -819,10 +1255,10 @@ msgstr "Schemainkorg" msgid "Schedule Outbox" msgstr "Schemautkorg" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/conversation.php:992 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/connedit.php:513 ../../mod/photos.php:710 -#: ../../mod/photos.php:1129 +#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 +#: ../../include/apps.php:387 ../../include/conversation.php:1022 +#: ../../mod/photos.php:681 ../../mod/photos.php:1100 +#: ../../mod/connedit.php:570 msgid "Unknown" msgstr "Okända" @@ -836,8 +1272,8 @@ msgstr "%1$s använt" msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s använt av %2$s (%3$s%)" -#: ../../include/RedDAV/RedBrowser.php:249 ../../include/conversation.php:1539 -#: ../../include/apps.php:135 ../../include/nav.php:106 +#: ../../include/RedDAV/RedBrowser.php:249 ../../include/apps.php:135 +#: ../../include/conversation.php:1572 ../../include/nav.php:98 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Filer" @@ -846,99 +1282,61 @@ msgstr "Filer" msgid "Total" msgstr "Totalt" -#: ../../include/RedDAV/RedBrowser.php:258 ../../mod/settings.php:579 -#: ../../mod/settings.php:605 ../../mod/admin.php:866 -msgid "Name" -msgstr "Namn" +#: ../../include/RedDAV/RedBrowser.php:253 +msgid "Shared" +msgstr "Delat" -#: ../../include/RedDAV/RedBrowser.php:259 -msgid "Type" -msgstr "Typ" - -#: ../../include/RedDAV/RedBrowser.php:260 -msgid "Size" -msgstr "Storlek" - -#: ../../include/RedDAV/RedBrowser.php:261 -msgid "Last Modified" -msgstr "Senast ändrad" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../include/conversation.php:639 -#: ../../include/ItemObject.php:120 ../../include/apps.php:255 -#: ../../mod/group.php:176 ../../mod/settings.php:640 -#: ../../mod/connedit.php:476 ../../mod/thing.php:234 ../../mod/admin.php:730 -#: ../../mod/admin.php:861 ../../mod/photos.php:1067 -msgid "Delete" -msgstr "Ta bort" - -#: ../../include/RedDAV/RedBrowser.php:312 -msgid "Create new folder" -msgstr "Skapa ny mapp" - -#: ../../include/RedDAV/RedBrowser.php:313 ../../mod/mitem.php:169 +#: ../../include/RedDAV/RedBrowser.php:254 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/mitem.php:169 #: ../../mod/menu.php:100 ../../mod/new_channel.php:121 msgid "Create" msgstr "Skapa" -#: ../../include/RedDAV/RedBrowser.php:314 -msgid "Upload file" -msgstr "Ladda upp fil" - -#: ../../include/RedDAV/RedBrowser.php:315 ../../mod/profile_photo.php:361 -#: ../../mod/photos.php:735 ../../mod/photos.php:1243 +#: ../../include/RedDAV/RedBrowser.php:255 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:706 +#: ../../mod/photos.php:1214 ../../mod/profile_photo.php:362 msgid "Upload" msgstr "Ladda upp" +#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:579 +#: ../../mod/settings.php:605 ../../mod/admin.php:871 +#: ../../mod/sharedwithme.php:100 +msgid "Name" +msgstr "Namn" + +#: ../../include/RedDAV/RedBrowser.php:263 +msgid "Type" +msgstr "Typ" + +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 +msgid "Size" +msgstr "Storlek" + +#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 +msgid "Last Modified" +msgstr "Senast ändrad" + +#: ../../include/RedDAV/RedBrowser.php:268 ../../include/apps.php:255 +#: ../../include/conversation.php:640 ../../include/ItemObject.php:120 +#: ../../mod/settings.php:640 ../../mod/photos.php:1038 +#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/connedit.php:533 +#: ../../mod/admin.php:735 ../../mod/admin.php:866 +msgid "Delete" +msgstr "Ta bort" + +#: ../../include/RedDAV/RedBrowser.php:302 +msgid "Create new folder" +msgstr "Skapa ny mapp" + +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Upload file" +msgstr "Ladda upp fil" + #: ../../include/bookmarks.php:35 #, php-format msgid "%1$s's bookmarks" msgstr "%1$ss bokmärken" -#: ../../include/dir_fns.php:68 -msgid "Directory Options" -msgstr "Katalogalternativ" - -#: ../../include/dir_fns.php:69 -msgid "Alphabetic" -msgstr "Alfabetisk" - -#: ../../include/dir_fns.php:70 -msgid "Reverse Alphabetic" -msgstr "Omvänd alfabetisk" - -#: ../../include/dir_fns.php:71 -msgid "Newest to Oldest" -msgstr "Nyast till äldst" - -#: ../../include/dir_fns.php:72 -msgid "Oldest to Newest" -msgstr "Äldst till nyast" - -#: ../../include/dir_fns.php:73 -msgid "Public Forums Only" -msgstr "Endast offentliga forum" - -#: ../../include/dir_fns.php:75 -msgid "Sort" -msgstr "Ordning" - -#: ../../include/dir_fns.php:91 -msgid "Enable Safe Search" -msgstr "Aktivera säker sökning" - -#: ../../include/dir_fns.php:93 -msgid "Disable Safe Search" -msgstr "Avaktivera säker sökning" - -#: ../../include/dir_fns.php:95 -msgid "Safe Mode" -msgstr "Säkert läge" - -#: ../../include/comanche.php:35 ../../mod/admin.php:353 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" - #: ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "Ofta" @@ -975,8 +1373,8 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 -#: ../../mod/admin.php:735 ../../boot.php:1544 +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 +#: ../../mod/admin.php:740 ../../boot.php:1552 msgid "Email" msgstr "E-post" @@ -1004,17 +1402,131 @@ msgstr "XMPP/IM" msgid "MySpace" msgstr "MySpace" -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "Utloggad." +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Serveradministrator" -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Inloggning misslyckades" +#: ../../include/apps.php:129 ../../include/conversation.php:1598 +#: ../../include/nav.php:109 +msgid "Bookmarks" +msgstr "Bokmärken" -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Inloggning misslyckades." +#: ../../include/apps.php:130 +msgid "Address Book" +msgstr "Adressbok" + +#: ../../include/apps.php:131 ../../include/nav.php:117 ../../boot.php:1550 +msgid "Login" +msgstr "Logga in" + +#: ../../include/apps.php:132 ../../include/nav.php:208 +#: ../../mod/manage.php:150 +msgid "Channel Manager" +msgstr "Kanalhanterare" + +#: ../../include/apps.php:133 ../../include/nav.php:182 +msgid "Matrix" +msgstr "Matris" + +#: ../../include/apps.php:136 ../../include/conversation.php:1609 +#: ../../include/nav.php:113 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "Webbsidor" + +#: ../../include/apps.php:137 ../../include/nav.php:185 +msgid "Channel Home" +msgstr "Kanalhem" + +#: ../../include/apps.php:138 ../../include/identity.php:1129 +#: ../../include/identity.php:1246 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" + +#: ../../include/apps.php:139 ../../include/conversation.php:1563 +#: ../../include/nav.php:97 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foton" + +#: ../../include/apps.php:140 ../../include/nav.php:204 +#: ../../mod/events.php:446 +msgid "Events" +msgstr "Händelser" + +#: ../../include/apps.php:141 ../../include/nav.php:168 +#: ../../mod/directory.php:334 +msgid "Directory" +msgstr "Katalog" + +#: ../../include/apps.php:142 ../../include/nav.php:160 ../../mod/help.php:67 +#: ../../mod/help.php:72 +msgid "Help" +msgstr "Hjälp" + +#: ../../include/apps.php:143 ../../include/nav.php:196 +msgid "Mail" +msgstr "Privat meddelande" + +#: ../../include/apps.php:144 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Sinnesstämning" + +#: ../../include/apps.php:145 ../../include/conversation.php:945 +msgid "Poke" +msgstr "Puffa" + +#: ../../include/apps.php:146 ../../include/nav.php:103 +msgid "Chat" +msgstr "Chatt" + +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Sond" + +#: ../../include/apps.php:149 +msgid "Suggest" +msgstr "Föreslå" + +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Slumpvald kanal" + +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Bjud in" + +#: ../../include/apps.php:152 +msgid "Features" +msgstr "Funktioner" + +#: ../../include/apps.php:153 +msgid "Language" +msgstr "Språk" + +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Inlägg" + +#: ../../include/apps.php:155 +msgid "Profile Photo" +msgstr "Profilfoto" + +#: ../../include/apps.php:247 ../../mod/settings.php:81 +#: ../../mod/settings.php:603 +msgid "Update" +msgstr "Uppdatera" + +#: ../../include/apps.php:247 +msgid "Install" +msgstr "Installera" + +#: ../../include/apps.php:252 +msgid "Purchase" +msgstr "Köp" + +#: ../../include/comanche.php:35 ../../mod/admin.php:357 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "Standard" #: ../../include/acl_selectors.php:240 msgid "Visible to your default audience" @@ -1028,873 +1540,45 @@ msgstr "Visa" msgid "Don't show" msgstr "Visa inte" -#: ../../include/acl_selectors.php:248 ../../mod/events.php:596 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:141 -#: ../../mod/photos.php:588 ../../mod/photos.php:947 +#: ../../include/acl_selectors.php:248 ../../mod/events.php:601 +#: ../../mod/chat.php:209 ../../mod/photos.php:559 ../../mod/photos.php:918 +#: ../../mod/filestorage.php:146 msgid "Permissions" msgstr "Behörighet" #: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 -#: ../../mod/photos.php:1146 +#: ../../mod/photos.php:1117 msgid "Close" msgstr "Stäng" -#: ../../include/identity.php:31 ../../mod/item.php:1115 -msgid "Unable to obtain identity information from database" -msgstr "Kunde inte hämta från databasen" +#: ../../include/activities.php:39 +msgid " and " +msgstr " och " -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Tomt namn" +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "offentlig profil" -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "För långt namn" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Ingen kontoidentifierare" - -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Smeknamn måste anges." - -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reserverat smeknamn. Välj ett annat." - -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Smeknamnet innehåller otillåtna tecken eller är redan upptaget på den här servern." - -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Kunde inte hämta den skapade identiteten" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standardprofil" - -#: ../../include/identity.php:387 ../../include/identity.php:388 -#: ../../include/identity.php:395 ../../include/widgets.php:428 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:329 -#: ../../mod/settings.php:333 ../../mod/settings.php:334 -#: ../../mod/settings.php:337 ../../mod/settings.php:348 -#: ../../mod/connedit.php:510 -msgid "Friends" -msgstr "Vänner" - -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Den begärda kanalen är inte tillgänglig" - -#: ../../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 "Begärd profil är inte tillgänglig." - -#: ../../include/identity.php:840 ../../include/conversation.php:937 -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 ../../mod/directory.php:264 -msgid "Connect" -msgstr "Ta kontakt" - -#: ../../include/identity.php:854 ../../mod/profiles.php:757 -msgid "Change profile photo" -msgstr "Bytprofilfoto" - -#: ../../include/identity.php:861 -msgid "Profiles" -msgstr "Profiler" - -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" -msgstr "Hantera/redigera profiler" - -#: ../../include/identity.php:862 ../../mod/profiles.php:758 -msgid "Create New Profile" -msgstr "Skapa ny profil" - -#: ../../include/identity.php:865 ../../include/nav.php:103 -msgid "Edit Profile" -msgstr "Redigera profil" - -#: ../../include/identity.php:878 ../../mod/profiles.php:769 -msgid "Profile Image" -msgstr "Profilbild" - -#: ../../include/identity.php:881 -msgid "visible to everybody" -msgstr "synlig för alla" - -#: ../../include/identity.php:882 ../../mod/profiles.php:652 -#: ../../mod/profiles.php:773 -msgid "Edit visibility" -msgstr "Redigera synlighet" - -#: ../../include/identity.php:898 ../../include/identity.php:1135 -msgid "Gender:" -msgstr "Kön:" - -#: ../../include/identity.php:899 ../../include/identity.php:1179 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:900 ../../include/identity.php:1190 -msgid "Homepage:" -msgstr "Hemsida:" - -#: ../../include/identity.php:901 -msgid "Online Now" -msgstr "Online nu" - -#: ../../include/identity.php:979 ../../include/identity.php:1059 -#: ../../mod/ping.php:329 -msgid "g A l F d" -msgstr "l j F \\k\\l G" - -#: ../../include/identity.php:980 ../../include/identity.php:1060 -msgid "F d" -msgstr "j F" - -#: ../../include/identity.php:1025 ../../include/identity.php:1100 -#: ../../mod/ping.php:351 -msgid "[today]" -msgstr "[i dag]" - -#: ../../include/identity.php:1037 -msgid "Birthday Reminders" -msgstr "Födelsedagspåminnelser" - -#: ../../include/identity.php:1038 -msgid "Birthdays this week:" -msgstr "Födelsedagar den här veckan:" - -#: ../../include/identity.php:1093 -msgid "[No description]" -msgstr "[Ingen beskrivning]" - -#: ../../include/identity.php:1111 -msgid "Event Reminders" -msgstr "Händelsepåminnelser" - -#: ../../include/identity.php:1112 -msgid "Events this week:" -msgstr "Händelser den här veckan:" - -#: ../../include/identity.php:1125 ../../include/identity.php:1254 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/identity.php:1133 ../../mod/settings.php:1022 -msgid "Full Name:" -msgstr "Fullständigt namn:" - -#: ../../include/identity.php:1140 -msgid "Like this channel" -msgstr "Gilla den här kanalen" - -#: ../../include/identity.php:1164 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/identity.php:1165 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:1172 -msgid "Birthday:" -msgstr "Födelsedag:" - -#: ../../include/identity.php:1176 -msgid "Age:" -msgstr "Ålder:" - -#: ../../include/identity.php:1185 +#: ../../include/activities.php:56 #, php-format -msgid "for %1$d %2$s" -msgstr "i %1$d %2$s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ändrade %2$s till "%3$s"" -#: ../../include/identity.php:1188 ../../mod/profiles.php:674 -msgid "Sexual Preference:" -msgstr "Sexuell preferens:" - -#: ../../include/identity.php:1192 ../../mod/profiles.php:676 -msgid "Hometown:" -msgstr "Hemort:" - -#: ../../include/identity.php:1194 -msgid "Tags:" -msgstr "Taggar:" - -#: ../../include/identity.php:1196 ../../mod/profiles.php:677 -msgid "Political Views:" -msgstr "Politisk åskådning:" - -#: ../../include/identity.php:1198 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/identity.php:1200 -msgid "About:" -msgstr "Om:" - -#: ../../include/identity.php:1202 -msgid "Hobbies/Interests:" -msgstr "Fritidssysselsättning/intressen:" - -#: ../../include/identity.php:1204 ../../mod/profiles.php:680 -msgid "Likes:" -msgstr "Gillar:" - -#: ../../include/identity.php:1206 ../../mod/profiles.php:681 -msgid "Dislikes:" -msgstr "Ogillar:" - -#: ../../include/identity.php:1209 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation och sociala nätverk:" - -#: ../../include/identity.php:1221 -msgid "My other channels:" -msgstr "Mina andra kanaler:" - -#: ../../include/identity.php:1224 -msgid "Musical interests:" -msgstr "Musikintressen:" - -#: ../../include/identity.php:1226 -msgid "Books, literature:" -msgstr "Böcker, litteratur:" - -#: ../../include/identity.php:1228 -msgid "Television:" -msgstr "Tv:" - -#: ../../include/identity.php:1230 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underhållning:" - -#: ../../include/identity.php:1232 -msgid "Love/Romance:" -msgstr "Kärlek/romantik:" - -#: ../../include/identity.php:1234 -msgid "Work/employment:" -msgstr "Arbete/sysselsättning:" - -#: ../../include/identity.php:1236 -msgid "School/education:" -msgstr "Skola/utbildning:" - -#: ../../include/identity.php:1256 -msgid "Like this thing" -msgstr "Gilla den här saken" - -#: ../../include/contact_widgets.php:14 +#: ../../include/activities.php:57 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d inbjudan tillgänglig" -msgstr[1] "%d inbjudningar tillgängliga" +msgid "Visit %1$s's %2$s" +msgstr "Besök %1$ss %2$s" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 -msgid "Advanced" -msgstr "Avancerat" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Hitta kanaler" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Ange namn eller intresse" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Ta kontakt/följ" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exempel: Robert Morgenstein, Fiske" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:317 ../../mod/directory.php:322 -msgid "Find" -msgstr "Sök" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:321 -msgid "Channel Suggestions" -msgstr "Kanalförslag" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Slumpvald profil" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Bjud in vänner" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Avancerat exempel: name=fred and country=iceland" - -#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:305 -msgid "Everything" -msgstr "Allt" - -#: ../../include/contact_widgets.php:125 +#: ../../include/activities.php:60 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemensam kontakt" -msgstr[1] "%d gemensamma kontakter" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s har en uppdaterad %2$s (har ändrat %3$s)." -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "visa fler" - -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Händelsen har lagts till i din kalender." - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "En borttagen grupp med det här namnet återskapades. Befintliga rättigheter till saker kan gälla för den här gruppen och alla framtida medlemmar. Om det här inte är vad du avsåg, skapa i stället en annan grupp med ett annat namn." - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Förvald integritetsgrupp för nya kontakter" - -#: ../../include/group.php:254 ../../mod/admin.php:735 -msgid "All Channels" -msgstr "Alla kanaler" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "redigera" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Kretsar" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Redigera krets" - -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Skapa en ny krets" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanaler inte i någon krets" - -#: ../../include/group.php:303 ../../include/widgets.php:273 -msgid "add" -msgstr "lägg till" - -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Inte en giltig e-postadress" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Din e-postdomän är inte bland de som tillåts på den här servern" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Din e-postadress är redan registrerad på den här servern." - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "En inbjudan behövs." - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Inbjudningen kunde inte bekräftas." - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Ange den begärda informationen." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Misslyckades att spara kontoinformation." - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registreringsbekräftelse för %s" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registreringsförfrågan på %s" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administratör" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "ditt registreringslösenord" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registreringsdetaljer för %s" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Konto godkänt." - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrering avslagen för %s" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Konto bekräftat. Du kan nu logga in." - -#: ../../include/account.php:648 ../../include/account.php:650 -msgid "Click here to upgrade." -msgstr "Klicka här för att uppgradera." - -#: ../../include/account.php:656 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Den här funktionen går utanför vad som anges i ditt avtal." - -#: ../../include/account.php:661 -msgid "This action is not available under your subscription plan." -msgstr "Den här funktionen är inte tillgänglig med ditt avtal." - -#: ../../include/text.php:320 -msgid "prev" -msgstr "föregående" - -#: ../../include/text.php:322 -msgid "first" -msgstr "första" - -#: ../../include/text.php:351 -msgid "last" -msgstr "sista" - -#: ../../include/text.php:354 -msgid "next" -msgstr "nästa" - -#: ../../include/text.php:366 -msgid "older" -msgstr "äldre" - -#: ../../include/text.php:368 -msgid "newer" -msgstr "nyare" - -#: ../../include/text.php:756 -msgid "No connections" -msgstr "Inga kontakter" - -#: ../../include/text.php:772 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontakter" - -#: ../../include/text.php:785 -msgid "View Connections" -msgstr "Visa kontakter" - -#: ../../include/text.php:842 ../../include/text.php:854 -#: ../../include/apps.php:147 ../../include/nav.php:173 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "Sök" - -#: ../../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 "Spara" - -#: ../../include/text.php:920 -msgid "poke" -msgstr "puffa" - -#: ../../include/text.php:920 ../../include/conversation.php:243 -msgid "poked" -msgstr "puffade" - -#: ../../include/text.php:921 -msgid "ping" -msgstr "pinga" - -#: ../../include/text.php:921 -msgid "pinged" -msgstr "pingade" - -#: ../../include/text.php:922 -msgid "prod" -msgstr "stöt till" - -#: ../../include/text.php:922 -msgid "prodded" -msgstr "stötte till" - -#: ../../include/text.php:923 -msgid "slap" -msgstr "daska till" - -#: ../../include/text.php:923 -msgid "slapped" -msgstr "daskade till" - -#: ../../include/text.php:924 -msgid "finger" -msgstr "fingra på" - -#: ../../include/text.php:924 -msgid "fingered" -msgstr "fingrade på" - -#: ../../include/text.php:925 -msgid "rebuff" -msgstr "stöt tillbaka" - -#: ../../include/text.php:925 -msgid "rebuffed" -msgstr "stötte tillbaks" - -#: ../../include/text.php:935 -msgid "happy" -msgstr "glad" - -#: ../../include/text.php:936 -msgid "sad" -msgstr "ledsen" - -#: ../../include/text.php:937 -msgid "mellow" -msgstr "lugn" - -#: ../../include/text.php:938 -msgid "tired" -msgstr "trött" - -#: ../../include/text.php:939 -msgid "perky" -msgstr "uppåt" - -#: ../../include/text.php:940 -msgid "angry" -msgstr "arg" - -#: ../../include/text.php:941 -msgid "stupified" -msgstr "virrig" - -#: ../../include/text.php:942 -msgid "puzzled" -msgstr "förbryllad" - -#: ../../include/text.php:943 -msgid "interested" -msgstr "intresserad" - -#: ../../include/text.php:944 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:945 -msgid "cheerful" -msgstr "munter" - -#: ../../include/text.php:946 -msgid "alive" -msgstr "pigg" - -#: ../../include/text.php:947 -msgid "annoyed" -msgstr "irriterad" - -#: ../../include/text.php:948 -msgid "anxious" -msgstr "bekymrad" - -#: ../../include/text.php:949 -msgid "cranky" -msgstr "grinig" - -#: ../../include/text.php:950 -msgid "disturbed" -msgstr "besvärad" - -#: ../../include/text.php:951 -msgid "frustrated" -msgstr "frustrerad" - -#: ../../include/text.php:952 -msgid "depressed" -msgstr "deprimerad" - -#: ../../include/text.php:953 -msgid "motivated" -msgstr "motiverad" - -#: ../../include/text.php:954 -msgid "relaxed" -msgstr "avslappnad" - -#: ../../include/text.php:955 -msgid "surprised" -msgstr "förvånad" - -#: ../../include/text.php:1121 -msgid "Monday" -msgstr "måndag" - -#: ../../include/text.php:1121 -msgid "Tuesday" -msgstr "tisdag" - -#: ../../include/text.php:1121 -msgid "Wednesday" -msgstr "onsdag" - -#: ../../include/text.php:1121 -msgid "Thursday" -msgstr "torsdag" - -#: ../../include/text.php:1121 -msgid "Friday" -msgstr "fredag" - -#: ../../include/text.php:1121 -msgid "Saturday" -msgstr "lördag" - -#: ../../include/text.php:1121 -msgid "Sunday" -msgstr "söndag" - -#: ../../include/text.php:1125 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1125 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1125 -msgid "March" -msgstr "mars" - -#: ../../include/text.php:1125 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1125 -msgid "May" -msgstr "maj" - -#: ../../include/text.php:1125 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1125 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1125 -msgid "August" -msgstr "augusti" - -#: ../../include/text.php:1125 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1125 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1125 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1125 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1203 -msgid "unknown.???" -msgstr "okänt.???" - -#: ../../include/text.php:1204 -msgid "bytes" -msgstr "byte" - -#: ../../include/text.php:1240 -msgid "remove category" -msgstr "ta bort kategori" - -#: ../../include/text.php:1309 -msgid "remove from file" -msgstr "ta bort från fil" - -#: ../../include/text.php:1385 ../../include/text.php:1396 -msgid "Click to open/close" -msgstr "Klicka för att öppna/stänga" - -#: ../../include/text.php:1544 ../../mod/events.php:414 -msgid "Link to Source" -msgstr "Länk till källa" - -#: ../../include/text.php:1563 -msgid "Select a page layout: " -msgstr "Välj en sidlayout: " - -#: ../../include/text.php:1566 ../../include/text.php:1626 -msgid "default" -msgstr "standard" - -#: ../../include/text.php:1599 -msgid "Page content type: " -msgstr "Typ av sidinnehåll: " - -#: ../../include/text.php:1638 -msgid "Select an alternate language" -msgstr "Välj ett alternativt språk" - -#: ../../include/text.php:1757 ../../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 "foto" - -#: ../../include/text.php:1760 ../../include/conversation.php:123 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "händelse" - -#: ../../include/text.php:1763 ../../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 "status" - -#: ../../include/text.php:1765 ../../include/conversation.php:150 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "kommentar" - -#: ../../include/text.php:1770 -msgid "activity" -msgstr "aktivitet" - -#: ../../include/text.php:2057 -msgid "Design" -msgstr "Design" - -#: ../../include/text.php:2060 -msgid "Blocks" -msgstr "Block" - -#: ../../include/text.php:2061 -msgid "Menus" -msgstr "Menyer" - -#: ../../include/text.php:2062 -msgid "Layouts" -msgstr "Layouter" - -#: ../../include/text.php:2063 -msgid "Pages" -msgstr "Sidor" - -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "Offentlig tidslinje" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Rumsnamn saknas" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Rumsnamnet finns redan" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ogiltig rumsbeskrivning." - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Rummet hittades inte." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Rummet är fullt" - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanalen är blockerad på den här servern." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Kanalplats saknas." - -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." -msgstr "Svar från den andra kanalen var ofullständigt." - -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen har tagits bort och finns inte längre." - -#: ../../include/follow.php:135 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protokoll inaktiverat." - -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "Kanalsökning misslyckades." - -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "hittade inte lokalt konto." - -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." -msgstr "Du kan inte kontakta dig själv." - -#: ../../include/conversation.php:126 ../../mod/like.php:89 +#: ../../include/conversation.php:126 ../../mod/like.php:101 msgid "channel" msgstr "kanal" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1957 -#: ../../mod/like.php:336 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gillar %2$ss %3$s" - -#: ../../include/conversation.php:167 ../../mod/like.php:338 +#: ../../include/conversation.php:167 ../../mod/like.php:350 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s gillar inte %2$ss %3$s" @@ -1915,610 +1599,418 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s är %2$s" -#: ../../include/conversation.php:638 ../../include/ItemObject.php:126 +#: ../../include/conversation.php:639 ../../include/ItemObject.php:126 msgid "Select" msgstr "Välj" -#: ../../include/conversation.php:646 ../../include/ItemObject.php:89 +#: ../../include/conversation.php:647 ../../include/ItemObject.php:89 msgid "Private Message" msgstr "Privat meddelande" -#: ../../include/conversation.php:653 ../../include/ItemObject.php:194 +#: ../../include/conversation.php:654 ../../include/ItemObject.php:194 msgid "Message signature validated" msgstr "Meddelandesignatur bekräftad" -#: ../../include/conversation.php:654 ../../include/ItemObject.php:195 +#: ../../include/conversation.php:655 ../../include/ItemObject.php:195 msgid "Message signature incorrect" msgstr "Meddelandesignatur felaktig" -#: ../../include/conversation.php:674 +#: ../../include/conversation.php:675 #, php-format msgid "View %s's profile @ %s" msgstr "Visa %ss profil på %s" -#: ../../include/conversation.php:689 +#: ../../include/conversation.php:690 msgid "Categories:" msgstr "Kategorier:" -#: ../../include/conversation.php:690 +#: ../../include/conversation.php:691 msgid "Filed under:" msgstr "Postat under:" -#: ../../include/conversation.php:698 ../../include/ItemObject.php:274 +#: ../../include/conversation.php:699 ../../include/ItemObject.php:274 #, php-format msgid " from %s" msgstr "från %s" -#: ../../include/conversation.php:701 ../../include/ItemObject.php:277 +#: ../../include/conversation.php:702 ../../include/ItemObject.php:277 #, php-format msgid "last edited: %s" msgstr "senast redigerat: %s" -#: ../../include/conversation.php:702 ../../include/ItemObject.php:278 +#: ../../include/conversation.php:703 ../../include/ItemObject.php:278 #, php-format msgid "Expires: %s" msgstr "Upphör: %s" -#: ../../include/conversation.php:717 +#: ../../include/conversation.php:718 msgid "View in context" msgstr "Visa sammanhang" -#: ../../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/editblock.php:152 +#: ../../include/conversation.php:720 ../../include/conversation.php:1175 +#: ../../include/ItemObject.php:325 ../../mod/editblock.php:152 +#: ../../mod/photos.php:946 ../../mod/editpost.php:121 #: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 -#: ../../mod/photos.php:975 +#: ../../mod/mail.php:241 ../../mod/mail.php:356 msgid "Please wait" msgstr "Vänta" -#: ../../include/conversation.php:835 +#: ../../include/conversation.php:840 msgid "remove" msgstr "ta bort" -#: ../../include/conversation.php:839 ../../include/nav.php:257 +#: ../../include/conversation.php:844 ../../include/nav.php:249 msgid "Loading..." msgstr "Laddar..." -#: ../../include/conversation.php:840 +#: ../../include/conversation.php:845 msgid "Delete Selected Items" msgstr "Ta bort valda poster" -#: ../../include/conversation.php:931 +#: ../../include/conversation.php:936 msgid "View Source" msgstr "Visa källa" -#: ../../include/conversation.php:932 +#: ../../include/conversation.php:937 msgid "Follow Thread" msgstr "Följ tråd" -#: ../../include/conversation.php:933 +#: ../../include/conversation.php:938 msgid "View Status" msgstr "Visa status" -#: ../../include/conversation.php:934 ../../include/nav.php:99 -#: ../../mod/connedit.php:429 ../../mod/connedit.php:545 +#: ../../include/conversation.php:939 ../../include/nav.php:91 +#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 msgid "View Profile" msgstr "Visa profil" -#: ../../include/conversation.php:935 +#: ../../include/conversation.php:940 msgid "View Photos" msgstr "Visa foton" -#: ../../include/conversation.php:936 +#: ../../include/conversation.php:941 msgid "Matrix Activity" msgstr "Matrisaktivitet" -#: ../../include/conversation.php:938 +#: ../../include/conversation.php:943 msgid "Edit Contact" msgstr "Redigera kontakt" -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:944 msgid "Send PM" msgstr "Skicka meddelande" -#: ../../include/conversation.php:940 ../../include/apps.php:145 -msgid "Poke" -msgstr "Puffa" - -#: ../../include/conversation.php:1013 +#: ../../include/conversation.php:1043 #, php-format msgid "%s likes this." msgstr "%s gillar det här." -#: ../../include/conversation.php:1013 +#: ../../include/conversation.php:1043 #, php-format msgid "%s doesn't like this." msgstr "%s gillar inte det här." -#: ../../include/conversation.php:1017 +#: ../../include/conversation.php:1047 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d person gillar det här." msgstr[1] "%2$d personer gillar det här." -#: ../../include/conversation.php:1019 +#: ../../include/conversation.php:1049 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d person gillar inte det här." msgstr[1] "%2$d personer gillar inte det här." -#: ../../include/conversation.php:1025 +#: ../../include/conversation.php:1055 msgid "and" msgstr "och" -#: ../../include/conversation.php:1028 +#: ../../include/conversation.php:1058 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", och %d annan person" msgstr[1] ", och %d andra personer" -#: ../../include/conversation.php:1029 +#: ../../include/conversation.php:1059 #, php-format msgid "%s like this." msgstr "%s gillar det här." -#: ../../include/conversation.php:1029 +#: ../../include/conversation.php:1059 #, php-format msgid "%s don't like this." msgstr "%s gillar inte det här." -#: ../../include/conversation.php:1086 +#: ../../include/conversation.php:1116 msgid "Visible to everybody" msgstr "Kan ses av alla" -#: ../../include/conversation.php:1087 ../../mod/mail.php:171 -#: ../../mod/mail.php:286 +#: ../../include/conversation.php:1117 ../../mod/mail.php:174 +#: ../../mod/mail.php:289 msgid "Please enter a link URL:" msgstr "Ange en länkadress:" -#: ../../include/conversation.php:1088 +#: ../../include/conversation.php:1118 msgid "Please enter a video link/URL:" msgstr "Ange en videolänkadress:" -#: ../../include/conversation.php:1089 +#: ../../include/conversation.php:1119 msgid "Please enter an audio link/URL:" msgstr "Ange en ljudlänkadress" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1120 msgid "Tag term:" msgstr "Tagguttryck" -#: ../../include/conversation.php:1091 ../../mod/filer.php:49 +#: ../../include/conversation.php:1121 ../../mod/filer.php:49 msgid "Save to Folder:" msgstr "Spara i mapp:" -#: ../../include/conversation.php:1092 +#: ../../include/conversation.php:1122 msgid "Where are you right now?" msgstr "Var är du just nu?" -#: ../../include/conversation.php:1093 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:287 +#: ../../include/conversation.php:1123 ../../mod/editpost.php:52 +#: ../../mod/mail.php:175 ../../mod/mail.php:290 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Upphör YYYY-MM-DD HH:MM" -#: ../../include/conversation.php:1117 ../../mod/editblock.php:198 -#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 -#: ../../mod/layouts.php:168 ../../mod/photos.php:974 +#: ../../include/conversation.php:1150 ../../mod/editblock.php:198 +#: ../../mod/photos.php:945 ../../mod/editlayout.php:193 +#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 msgid "Share" msgstr "Dela" -#: ../../include/conversation.php:1119 ../../mod/editwebpage.php:170 +#: ../../include/conversation.php:1152 ../../mod/editwebpage.php:170 msgid "Page link title" msgstr "Titel på sidlänk" -#: ../../include/conversation.php:1122 +#: ../../include/conversation.php:1155 msgid "Post as" msgstr "Posta som" -#: ../../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 +#: ../../include/conversation.php:1156 ../../mod/editblock.php:144 +#: ../../mod/editpost.php:113 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 msgid "Upload photo" msgstr "Ladda upp foto" -#: ../../include/conversation.php:1124 +#: ../../include/conversation.php:1157 msgid "upload photo" msgstr "ladda upp foto" -#: ../../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 +#: ../../include/conversation.php:1158 ../../mod/editblock.php:145 +#: ../../mod/editpost.php:114 ../../mod/editlayout.php:141 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 msgid "Attach file" msgstr "Bifoga fil" -#: ../../include/conversation.php:1126 +#: ../../include/conversation.php:1159 msgid "attach file" msgstr "bifoga fil" -#: ../../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 +#: ../../include/conversation.php:1160 ../../mod/editblock.php:146 +#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 msgid "Insert web link" msgstr "Infoga webblänk" -#: ../../include/conversation.php:1128 +#: ../../include/conversation.php:1161 msgid "web link" msgstr "webblänk" -#: ../../include/conversation.php:1129 +#: ../../include/conversation.php:1162 msgid "Insert video link" msgstr "Infoga videolänk" -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1163 msgid "video link" msgstr "videolänk" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1164 msgid "Insert audio link" msgstr "Infoga ljudlänk" -#: ../../include/conversation.php:1132 +#: ../../include/conversation.php:1165 msgid "audio link" msgstr "ljudlänk" -#: ../../include/conversation.php:1133 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:150 ../../mod/editlayout.php:146 +#: ../../include/conversation.php:1166 ../../mod/editblock.php:150 +#: ../../mod/editpost.php:119 ../../mod/editlayout.php:146 #: ../../mod/editwebpage.php:181 msgid "Set your location" msgstr "Ange din plats" -#: ../../include/conversation.php:1134 +#: ../../include/conversation.php:1167 msgid "set location" msgstr "ange plats" -#: ../../include/conversation.php:1135 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:151 ../../mod/editlayout.php:147 +#: ../../include/conversation.php:1168 ../../mod/editblock.php:151 +#: ../../mod/editpost.php:120 ../../mod/editlayout.php:147 #: ../../mod/editwebpage.php:182 msgid "Clear browser location" msgstr "Rensa webbläsarplats" -#: ../../include/conversation.php:1136 +#: ../../include/conversation.php:1169 msgid "clear location" msgstr "rensa plats" -#: ../../include/conversation.php:1138 ../../mod/editpost.php:132 -#: ../../mod/editblock.php:164 ../../mod/editlayout.php:159 +#: ../../include/conversation.php:1171 ../../mod/editblock.php:164 +#: ../../mod/editpost.php:132 ../../mod/editlayout.php:159 #: ../../mod/editwebpage.php:198 msgid "Title (optional)" msgstr "Titel (frivilligt)" -#: ../../include/conversation.php:1141 ../../mod/editpost.php:134 -#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 +#: ../../include/conversation.php:1174 ../../mod/editblock.php:167 +#: ../../mod/editpost.php:134 ../../mod/editlayout.php:162 #: ../../mod/editwebpage.php:200 msgid "Categories (optional, comma-separated list)" msgstr "Kategorier (frivilligt, kommaseparerad lista)" -#: ../../include/conversation.php:1143 ../../mod/editpost.php:122 -#: ../../mod/editblock.php:153 ../../mod/editlayout.php:149 +#: ../../include/conversation.php:1176 ../../mod/editblock.php:153 +#: ../../mod/editpost.php:122 ../../mod/editlayout.php:149 #: ../../mod/editwebpage.php:184 msgid "Permission settings" msgstr "Behörighetsinställningar" -#: ../../include/conversation.php:1144 +#: ../../include/conversation.php:1177 msgid "permissions" msgstr "behörighet" -#: ../../include/conversation.php:1151 ../../mod/editpost.php:129 -#: ../../mod/editblock.php:161 ../../mod/editlayout.php:156 +#: ../../include/conversation.php:1184 ../../mod/editblock.php:161 +#: ../../mod/editpost.php:129 ../../mod/editlayout.php:156 #: ../../mod/editwebpage.php:193 msgid "Public post" msgstr "Offentligt inlägg" -#: ../../include/conversation.php:1153 ../../mod/editpost.php:135 -#: ../../mod/editblock.php:168 ../../mod/editlayout.php:163 +#: ../../include/conversation.php:1186 ../../mod/editblock.php:168 +#: ../../mod/editpost.php:135 ../../mod/editlayout.php:163 #: ../../mod/editwebpage.php:201 msgid "Example: bob@example.com, mary@example.com" msgstr "Exempel: bob@example.com, mary@example.com" -#: ../../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 +#: ../../include/conversation.php:1199 ../../mod/editblock.php:178 +#: ../../mod/editpost.php:146 ../../mod/editlayout.php:173 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 msgid "Set expiration date" msgstr "Ange utgångsdatum" -#: ../../include/conversation.php:1168 ../../include/ItemObject.php:641 -#: ../../mod/editpost.php:148 ../../mod/mail.php:244 ../../mod/mail.php:358 +#: ../../include/conversation.php:1201 ../../include/ItemObject.php:641 +#: ../../mod/editpost.php:148 ../../mod/mail.php:247 ../../mod/mail.php:361 msgid "Encrypt text" msgstr "Kryptera text" -#: ../../include/conversation.php:1170 ../../mod/events.php:580 +#: ../../include/conversation.php:1203 ../../mod/events.php:585 #: ../../mod/editpost.php:150 msgid "OK" msgstr "OK" -#: ../../include/conversation.php:1171 ../../mod/events.php:579 -#: ../../mod/editpost.php:151 ../../mod/settings.php:578 -#: ../../mod/settings.php:604 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +#: ../../include/conversation.php:1204 ../../mod/events.php:584 +#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 +#: ../../mod/settings.php:578 ../../mod/settings.php:604 +#: ../../mod/editpost.php:151 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "Avbryt" -#: ../../include/conversation.php:1415 +#: ../../include/conversation.php:1448 msgid "Discover" msgstr "Upptäck" -#: ../../include/conversation.php:1418 +#: ../../include/conversation.php:1451 msgid "Imported public streams" msgstr "Importerade offentliga strömmar" -#: ../../include/conversation.php:1423 +#: ../../include/conversation.php:1456 msgid "Commented Order" msgstr "Kommentarsordning" -#: ../../include/conversation.php:1426 +#: ../../include/conversation.php:1459 msgid "Sort by Comment Date" msgstr "Ordna efter kommentarsdatum" -#: ../../include/conversation.php:1430 +#: ../../include/conversation.php:1463 msgid "Posted Order" msgstr "Inläggsordning" -#: ../../include/conversation.php:1433 +#: ../../include/conversation.php:1466 msgid "Sort by Post Date" msgstr "Ordna efter när inlägget skrevs" -#: ../../include/conversation.php:1438 ../../include/widgets.php:94 -msgid "Personal" -msgstr "Personligt" - -#: ../../include/conversation.php:1441 +#: ../../include/conversation.php:1474 msgid "Posts that mention or involve you" msgstr "Inlägg som nämner eller berör dig" -#: ../../include/conversation.php:1447 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:80 +#: ../../include/conversation.php:1480 ../../mod/connections.php:212 +#: ../../mod/connections.php:225 ../../mod/menu.php:80 msgid "New" msgstr "Nytt" -#: ../../include/conversation.php:1450 +#: ../../include/conversation.php:1483 msgid "Activity Stream - by date" msgstr "Aktivitetsström - efter datum" -#: ../../include/conversation.php:1456 +#: ../../include/conversation.php:1489 msgid "Starred" msgstr "Märkt" -#: ../../include/conversation.php:1459 +#: ../../include/conversation.php:1492 msgid "Favourite Posts" msgstr "Favoritinlägg" -#: ../../include/conversation.php:1466 +#: ../../include/conversation.php:1499 msgid "Spam" msgstr "Skräp" -#: ../../include/conversation.php:1469 +#: ../../include/conversation.php:1502 msgid "Posts flagged as SPAM" msgstr "Inlägg markerade som SKRÄP" -#: ../../include/conversation.php:1509 ../../mod/admin.php:865 +#: ../../include/conversation.php:1542 ../../mod/admin.php:870 msgid "Channel" msgstr "Kanal" -#: ../../include/conversation.php:1512 +#: ../../include/conversation.php:1545 msgid "Status Messages and Posts" msgstr "Statusmeddelanden och inlägg" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1554 msgid "About" msgstr "Om" -#: ../../include/conversation.php:1524 +#: ../../include/conversation.php:1557 msgid "Profile Details" msgstr "Profildetaljer" -#: ../../include/conversation.php:1530 ../../include/apps.php:139 -#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foton" - -#: ../../include/conversation.php:1542 +#: ../../include/conversation.php:1575 msgid "Files and Storage" msgstr "Filer och lagring" -#: ../../include/conversation.php:1552 ../../include/conversation.php:1555 +#: ../../include/conversation.php:1585 ../../include/conversation.php:1588 msgid "Chatrooms" msgstr "Chattrum" -#: ../../include/conversation.php:1565 ../../include/apps.php:129 -#: ../../include/nav.php:117 -msgid "Bookmarks" -msgstr "Bokmärken" - -#: ../../include/conversation.php:1568 +#: ../../include/conversation.php:1601 msgid "Saved Bookmarks" msgstr "Sparade bokmärken" -#: ../../include/conversation.php:1576 ../../include/apps.php:136 -#: ../../include/nav.php:121 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webbsidor" - -#: ../../include/conversation.php:1579 +#: ../../include/conversation.php:1612 msgid "Manage Webpages" msgstr "Hantera webbsidor" -#: ../../include/widgets.php:91 ../../include/nav.php:171 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Appar" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Skapa personlig app" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Redigera personlig app" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorera/göm" - -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Förslag" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Se fler..." - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du har %1$.0f av %2$.0f tillåtna kontakter." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Lägg till ny kontakt" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Ange kanaladressen" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exempel: bob@example.com, http://example.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Anteckningar" - -#: ../../include/widgets.php:264 -msgid "Remove term" -msgstr "Ta bort uttryck" - -#: ../../include/widgets.php:347 -msgid "Archives" -msgstr "Arkiv" - -#: ../../include/widgets.php:425 -msgid "Refresh" -msgstr "Ladda om" - -#: ../../include/widgets.php:426 ../../mod/connedit.php:506 -msgid "Me" -msgstr "Mig själv" - -#: ../../include/widgets.php:427 ../../mod/connedit.php:509 -msgid "Best Friends" -msgstr "Bästa vänner" - -#: ../../include/widgets.php:429 -msgid "Co-workers" -msgstr "Kollegor" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:511 -msgid "Former Friends" -msgstr "Tidigare vänner" - -#: ../../include/widgets.php:431 ../../mod/connedit.php:512 -msgid "Acquaintances" -msgstr "Bekanta" - -#: ../../include/widgets.php:432 -msgid "Everybody" -msgstr "Alla" - -#: ../../include/widgets.php:466 -msgid "Account settings" -msgstr "Kontoinställningar" - -#: ../../include/widgets.php:472 -msgid "Channel settings" -msgstr "Kanalinställningar" - -#: ../../include/widgets.php:478 -msgid "Additional features" -msgstr "Tilläggsfunktioner" - -#: ../../include/widgets.php:484 -msgid "Feature settings" -msgstr "Funktionsinställningar" - -#: ../../include/widgets.php:490 -msgid "Display settings" -msgstr "Utseende" - -#: ../../include/widgets.php:496 -msgid "Connected apps" -msgstr "Anslutna appar" - -#: ../../include/widgets.php:502 -msgid "Export channel" -msgstr "Exportera kanal" - -#: ../../include/widgets.php:511 ../../mod/connedit.php:539 -msgid "Connection Default Permissions" -msgstr "Standardbehörighet för kontakt" - -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" -msgstr "Inställningar för premiumkanal" - -#: ../../include/widgets.php:535 ../../include/apps.php:134 -#: ../../include/nav.php:218 ../../mod/admin.php:951 ../../mod/admin.php:1156 -msgid "Settings" -msgstr "Inställningar" - -#: ../../include/widgets.php:548 ../../mod/mail.php:125 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Meddelanden" - -#: ../../include/widgets.php:551 -msgid "Check Mail" -msgstr "Hämta meddelanden" - -#: ../../include/widgets.php:556 ../../include/nav.php:209 -msgid "New Message" -msgstr "Nytt meddelande" - -#: ../../include/widgets.php:634 -msgid "Chat Rooms" -msgstr "Chattrum" - -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" -msgstr "Bokmärkta chattrum" - -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" -msgstr "Föreslagna chattrum" - -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" -msgstr "foto/bild" - -#: ../../include/zot.php:664 -msgid "Invalid data packet" -msgstr "Ogiltigt datapaket" - -#: ../../include/zot.php:680 -msgid "Unable to verify channel signature" -msgstr "Kunde inte bekräfta kanalsignatur" - -#: ../../include/zot.php:1829 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kunde inte bekräfta signatur för servern %s" - #: ../../include/ItemObject.php:130 msgid "Save to Folder" msgstr "Spara i mapp" #: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1020 ../../mod/photos.php:1032 +#: ../../mod/photos.php:991 ../../mod/photos.php:1003 msgid "View all" msgstr "Visa alla" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1029 +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1000 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -2545,11 +2037,11 @@ msgstr "märkt" msgid "Add Tag" msgstr "Lägg till en tagg" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:972 +#: ../../include/ItemObject.php:221 ../../mod/photos.php:943 msgid "I like this (toggle)" msgstr "Jag gillar det här (växla)" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:973 +#: ../../include/ItemObject.php:222 ../../mod/photos.php:944 msgid "I don't like this (toggle)" msgstr "Jag gillar inte det här (växla)" @@ -2601,12 +2093,12 @@ msgstr "Lägg till kalendern" msgid "Mark all seen" msgstr "Märk alla som lästa" -#: ../../include/ItemObject.php:314 ../../mod/photos.php:1140 +#: ../../include/ItemObject.php:314 ../../mod/photos.php:1111 msgctxt "noun" msgid "Likes" msgstr "gillar detta" -#: ../../include/ItemObject.php:315 ../../mod/photos.php:1141 +#: ../../include/ItemObject.php:315 ../../mod/photos.php:1112 msgctxt "noun" msgid "Dislikes" msgstr "ogillar detta" @@ -2615,32 +2107,33 @@ msgstr "ogillar detta" msgid "[+] show all" msgstr "[+] visa alla" -#: ../../include/ItemObject.php:626 ../../mod/photos.php:991 -#: ../../mod/photos.php:1101 +#: ../../include/ItemObject.php:626 ../../mod/photos.php:962 +#: ../../mod/photos.php:1072 msgid "This is you" msgstr "Det här är du" #: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 -#: ../../mod/photos.php:993 ../../mod/photos.php:1103 +#: ../../mod/photos.php:964 ../../mod/photos.php:1074 msgid "Comment" msgstr "Kommentera" -#: ../../include/ItemObject.php:629 ../../mod/mood.php:135 -#: ../../mod/group.php:81 ../../mod/poke.php:166 ../../mod/profiles.php:650 +#: ../../include/ItemObject.php:629 ../../include/js_strings.php:22 +#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/events.php:603 +#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/settings.php:577 +#: ../../mod/settings.php:689 ../../mod/settings.php:718 +#: ../../mod/settings.php:741 ../../mod/settings.php:823 +#: ../../mod/settings.php:1019 ../../mod/photos.php:565 +#: ../../mod/photos.php:642 ../../mod/photos.php:925 ../../mod/photos.php:965 +#: ../../mod/photos.php:1075 ../../mod/poke.php:166 ../../mod/group.php:81 #: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/events.php:598 ../../mod/chat.php:177 ../../mod/chat.php:211 -#: ../../mod/settings.php:577 ../../mod/settings.php:689 -#: ../../mod/settings.php:718 ../../mod/settings.php:741 -#: ../../mod/settings.php:823 ../../mod/settings.php:1016 -#: ../../mod/connedit.php:556 ../../mod/mail.php:352 ../../mod/pdledit.php:58 -#: ../../mod/thing.php:284 ../../mod/thing.php:327 ../../mod/fsuggest.php:108 -#: ../../mod/filestorage.php:150 ../../mod/connect.php:93 -#: ../../mod/locs.php:99 ../../mod/import.php:504 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../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/photos.php:594 ../../mod/photos.php:671 ../../mod/photos.php:954 -#: ../../mod/photos.php:994 ../../mod/photos.php:1104 ../../mod/appman.php:99 +#: ../../mod/pdledit.php:58 ../../mod/fsuggest.php:108 +#: ../../mod/invite.php:142 ../../mod/filestorage.php:155 +#: ../../mod/import.php:504 ../../mod/locs.php:105 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/connedit.php:653 ../../mod/admin.php:416 +#: ../../mod/admin.php:728 ../../mod/admin.php:864 ../../mod/admin.php:997 +#: ../../mod/admin.php:1196 ../../mod/admin.php:1283 ../../mod/connect.php:93 +#: ../../mod/appman.php:99 ../../mod/mood.php:135 ../../mod/mail.php:355 +#: ../../mod/xchan.php:11 ../../mod/rate.php:153 ../../mod/profiles.php:667 #: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256 #: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" @@ -2678,241 +2171,83 @@ msgstr "Länk" msgid "Video" msgstr "Video" -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Övrigt" +#: ../../include/event.php:376 +msgid "This event has been added to your calendar." +msgstr "Händelsen har lagts till i din kalender." -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "ÅÅÅÅ-MM-DD eller MM-DD" +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Ingen mottagare angiven." -#: ../../include/datetime.php:230 -msgid "never" -msgstr "aldrig" +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[inget ämne]" -#: ../../include/datetime.php:236 -msgid "less than a second ago" -msgstr "mindre än en sekund sedan" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kunde inte avgöra vem som är avsändare." -#: ../../include/datetime.php:239 -msgid "year" -msgstr "år" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Den sparade posten kunde inte verifieras." -#: ../../include/datetime.php:239 -msgid "years" -msgstr "år" +#: ../../include/attach.php:242 ../../include/attach.php:296 +msgid "Item was not found." +msgstr "Posten hittades inte." -#: ../../include/datetime.php:240 -msgid "month" -msgstr "månad" +#: ../../include/attach.php:352 +msgid "No source file." +msgstr "Ingen källfil." -#: ../../include/datetime.php:240 -msgid "months" -msgstr "månader" +#: ../../include/attach.php:369 +msgid "Cannot locate file to replace" +msgstr "Kan inte hitta fil att ersätta" -#: ../../include/datetime.php:241 -msgid "week" -msgstr "vecka" +#: ../../include/attach.php:387 +msgid "Cannot locate file to revise/update" +msgstr "Kan inte hitta fil att revidera/uppdatera" -#: ../../include/datetime.php:241 -msgid "weeks" -msgstr "veckor" - -#: ../../include/datetime.php:242 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:242 -msgid "days" -msgstr "dagar" - -#: ../../include/datetime.php:243 -msgid "hour" -msgstr "timme" - -#: ../../include/datetime.php:243 -msgid "hours" -msgstr "timmar" - -#: ../../include/datetime.php:244 -msgid "minute" -msgstr "minut" - -#: ../../include/datetime.php:244 -msgid "minutes" -msgstr "minuter" - -#: ../../include/datetime.php:245 -msgid "second" -msgstr "sekund" - -#: ../../include/datetime.php:245 -msgid "seconds" -msgstr "sekunder" - -#: ../../include/datetime.php:254 +#: ../../include/attach.php:398 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s sedan" +msgid "File exceeds size limit of %d" +msgstr "Filen överskrider storleksbegränsningen %d" -#: ../../include/datetime.php:462 +#: ../../include/attach.php:410 #, php-format -msgid "%1$s's birthday" -msgstr "%1$ss födelsedag" +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor." -#: ../../include/datetime.php:463 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Grattis på födelsedagen %1$s" +#: ../../include/attach.php:493 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd." -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Serveradministrator" +#: ../../include/attach.php:505 +msgid "Stored file could not be verified. Upload failed." +msgstr "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad." -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Adressbok" +#: ../../include/attach.php:547 ../../include/attach.php:564 +msgid "Path not available." +msgstr "Sökväg inte tillgänglig." -#: ../../include/apps.php:131 ../../include/nav.php:125 ../../boot.php:1542 -msgid "Login" -msgstr "Logga in" +#: ../../include/attach.php:611 +msgid "Empty pathname" +msgstr "Tom sökväg" -#: ../../include/apps.php:132 ../../include/nav.php:216 -#: ../../mod/manage.php:150 -msgid "Channel Manager" -msgstr "Kanalhanterare" +#: ../../include/attach.php:627 +msgid "duplicate filename or path" +msgstr "filnamn eller sökväg finns redan" -#: ../../include/apps.php:133 ../../include/nav.php:190 -msgid "Matrix" -msgstr "Matris" +#: ../../include/attach.php:651 +msgid "Path not found." +msgstr "Sökväg hittas inte." -#: ../../include/apps.php:137 ../../include/nav.php:193 -msgid "Channel Home" -msgstr "Kanalhem" +#: ../../include/attach.php:702 +msgid "mkdir failed." +msgstr "mkdir misslyckades." -#: ../../include/apps.php:140 ../../include/nav.php:212 -#: ../../mod/events.php:442 -msgid "Events" -msgstr "Händelser" - -#: ../../include/apps.php:141 ../../include/nav.php:176 -#: ../../mod/directory.php:321 -msgid "Directory" -msgstr "Katalog" - -#: ../../include/apps.php:142 ../../include/nav.php:168 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" -msgstr "Hjälp" - -#: ../../include/apps.php:143 ../../include/nav.php:204 -msgid "Mail" -msgstr "Privat meddelande" - -#: ../../include/apps.php:144 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Sinnesstämning" - -#: ../../include/apps.php:146 ../../include/nav.php:111 -msgid "Chat" -msgstr "Chatt" - -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Sond" - -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Föreslå" - -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Slumpvald kanal" - -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Bjud in" - -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Funktioner" - -#: ../../include/apps.php:153 -msgid "Language" -msgstr "Språk" - -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Inlägg" - -#: ../../include/apps.php:155 -msgid "Profile Photo" -msgstr "Profilfoto" - -#: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:603 -msgid "Update" -msgstr "Uppdatera" - -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installera" - -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Köp" - -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nytt fönster" - -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öppna den valda platsen i ett annat fönster eller en annan webbläsarflik" - -#: ../../include/Contact.php:214 ../../mod/admin.php:646 -#, php-format -msgid "User '%s' deleted" -msgstr "Användare '%s' borttagen" - -#: ../../include/bbcode.php:112 ../../include/bbcode.php:677 -#: ../../include/bbcode.php:680 ../../include/bbcode.php:685 -#: ../../include/bbcode.php:688 ../../include/bbcode.php:691 -#: ../../include/bbcode.php:694 ../../include/bbcode.php:699 -#: ../../include/bbcode.php:702 ../../include/bbcode.php:707 -#: ../../include/bbcode.php:710 ../../include/bbcode.php:713 -#: ../../include/bbcode.php:716 -msgid "Image/photo" -msgstr "Bild/foto" - -#: ../../include/bbcode.php:147 ../../include/bbcode.php:727 -msgid "Encrypted content" -msgstr "Krypterat innehåll" - -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "Installera designelement: " - -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "QR-kod" - -#: ../../include/bbcode.php:220 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev följande %2$s %3$s" - -#: ../../include/bbcode.php:222 -msgid "post" -msgstr "post" - -#: ../../include/bbcode.php:645 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:665 -msgid "$1 wrote:" -msgstr "$1 skrev:" +#: ../../include/attach.php:706 +msgid "database storage failed." +msgstr "databaslagring misslyckades." #: ../../include/enotify.php:41 msgid "Red Matrix Notification" @@ -3106,10 +2441,233 @@ msgstr "Foto:" msgid "Please visit %s to approve or reject the suggestion." msgstr "Besök %s för att bevilja eller avslå förslaget." -#: ../../include/enotify.php:490 +#: ../../include/enotify.php:499 msgid "[Red:Notify]" msgstr "[Red:Notifiering]" +#: ../../include/auth.php:130 +msgid "Logged out." +msgstr "Utloggad." + +#: ../../include/auth.php:271 +msgid "Failed authentication" +msgstr "Inloggning misslyckades" + +#: ../../include/auth.php:285 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Inloggning misslyckades." + +#: ../../include/network.php:613 +msgid "view full size" +msgstr "visa full storlek" + +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d inbjudan tillgänglig" +msgstr[1] "%d inbjudningar tillgängliga" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:420 +msgid "Advanced" +msgstr "Avancerat" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Hitta kanaler" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Ange namn eller intresse" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Ta kontakt/följ" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exempel: Robert Morgenstein, Fiske" + +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 +#: ../../mod/directory.php:330 ../../mod/directory.php:335 +msgid "Find" +msgstr "Sök" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +#: ../../mod/directory.php:334 +msgid "Channel Suggestions" +msgstr "Kanalförslag" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Slumpvald profil" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Bjud in vänner" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Avancerat exempel: name=fred and country=iceland" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemensam kontakt" +msgstr[1] "%d gemensamma kontakter" + +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "visa fler" + +#: ../../include/dir_fns.php:88 +msgid "Directory Options" +msgstr "Katalogalternativ" + +#: ../../include/dir_fns.php:89 +msgid "Alphabetic" +msgstr "Alfabetisk" + +#: ../../include/dir_fns.php:90 +msgid "Reverse Alphabetic" +msgstr "Omvänd alfabetisk" + +#: ../../include/dir_fns.php:91 +msgid "Newest to Oldest" +msgstr "Nyast till äldst" + +#: ../../include/dir_fns.php:92 +msgid "Oldest to Newest" +msgstr "Äldst till nyast" + +#: ../../include/dir_fns.php:93 +msgid "Public Forums Only" +msgstr "Endast offentliga forum" + +#: ../../include/dir_fns.php:95 +msgid "Sort" +msgstr "Ordning" + +#: ../../include/dir_fns.php:111 +msgid "Enable Safe Search" +msgstr "Aktivera säker sökning" + +#: ../../include/dir_fns.php:113 +msgid "Disable Safe Search" +msgstr "Avaktivera säker sökning" + +#: ../../include/dir_fns.php:115 +msgid "Safe Mode" +msgstr "Säkert läge" + +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "En borttagen grupp med det här namnet återskapades. Befintliga rättigheter till saker kan gälla för den här gruppen och alla framtida medlemmar. Om det här inte är vad du avsåg, skapa i stället en annan grupp med ett annat namn." + +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Förvald integritetsgrupp för nya kontakter" + +#: ../../include/group.php:254 ../../mod/admin.php:740 +msgid "All Channels" +msgstr "Alla kanaler" + +#: ../../include/group.php:276 +msgid "edit" +msgstr "redigera" + +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Kretsar" + +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Redigera krets" + +#: ../../include/group.php:300 +msgid "Create a new collection" +msgstr "Skapa en ny krets" + +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanaler inte i någon krets" + +#: ../../include/items.php:382 ../../mod/subthread.php:49 +#: ../../mod/group.php:68 ../../mod/like.php:258 ../../mod/profperm.php:23 +#: ../../index.php:389 +msgid "Permission denied" +msgstr "Behörighet saknas" + +#: ../../include/items.php:979 ../../include/items.php:1024 +msgid "(Unknown)" +msgstr "(Okänt)" + +#: ../../include/items.php:1181 +msgid "Visible to anybody on the internet." +msgstr "Kan ses av vem som helst på Internet." + +#: ../../include/items.php:1183 +msgid "Visible to you only." +msgstr "Kan bara ses av dig." + +#: ../../include/items.php:1185 +msgid "Visible to anybody in this network." +msgstr "Kan ses av alla på det här nätverket." + +#: ../../include/items.php:1187 +msgid "Visible to anybody authenticated." +msgstr "Kan ses av alla inloggade." + +#: ../../include/items.php:1189 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Kan ses av alla på %s." + +#: ../../include/items.php:1191 +msgid "Visible to all connections." +msgstr "Kan ses av alla kontakter." + +#: ../../include/items.php:1193 +msgid "Visible to approved connections." +msgstr "Kan ses av godkända kontakter." + +#: ../../include/items.php:1195 +msgid "Visible to specific connections." +msgstr "Kan ses av valda kontakter." + +#: ../../include/items.php:3993 ../../mod/display.php:32 +#: ../../mod/viewsrc.php:20 ../../mod/filestorage.php:27 +#: ../../mod/thing.php:76 ../../mod/admin.php:168 ../../mod/admin.php:901 +#: ../../mod/admin.php:1104 +msgid "Item not found." +msgstr "Posten hittades inte." + +#: ../../include/items.php:4446 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Kretsen hittades inte." + +#: ../../include/items.php:4461 +msgid "Collection is empty." +msgstr "Kretsen är tom." + +#: ../../include/items.php:4468 +#, php-format +msgid "Collection: %s" +msgstr "Krets: %s" + +#: ../../include/items.php:4479 +#, php-format +msgid "Connection: %s" +msgstr "Kontakt: %s" + +#: ../../include/items.php:4482 +msgid "Connection not found." +msgstr "Kontakten hittades inte." + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Ta bort den här posten?" @@ -3158,79 +2716,752 @@ msgstr "stäng alla" msgid "Nothing new here" msgstr "Inget nytt här" -#: ../../include/js_strings.php:20 +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Betygsätt den här kanalen (detta är offentligt)" + +#: ../../include/js_strings.php:20 ../../mod/rate.php:144 +msgid "Rating" +msgstr "Betyg" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Utlåtande (frivilligt)" + +#: ../../include/js_strings.php:24 msgid "timeago.prefixAgo" msgstr "för" -#: ../../include/js_strings.php:21 +#: ../../include/js_strings.php:25 msgid "timeago.prefixFromNow" msgstr "om" -#: ../../include/js_strings.php:22 +#: ../../include/js_strings.php:26 msgid "ago" msgstr "sedan" -#: ../../include/js_strings.php:23 +#: ../../include/js_strings.php:27 msgid "from now" msgstr " " -#: ../../include/js_strings.php:24 +#: ../../include/js_strings.php:28 msgid "less than a minute" msgstr "mindre än en minut" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:29 msgid "about a minute" msgstr "ungefär en minut" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:30 #, php-format msgid "%d minutes" msgstr "%d minuter" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:31 msgid "about an hour" msgstr "ungefär en timme" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:32 #, php-format msgid "about %d hours" msgstr "ungefär %d timmar" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:33 msgid "a day" msgstr "en dag" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:34 #, php-format msgid "%d days" msgstr "%d dagar" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:35 msgid "about a month" msgstr "ungefär en månad" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:36 #, php-format msgid "%d months" msgstr "%d månader" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:37 msgid "about a year" msgstr "ungefär ett år" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:38 #, php-format msgid "%d years" msgstr "%d år" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:39 msgid " " msgstr " " -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:40 msgid "timeago.numbers" msgstr "timeago.numbers" +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Inte en giltig e-postadress" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "Din e-postdomän är inte bland de som tillåts på den här servern" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "Din e-postadress är redan registrerad på den här servern." + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "En inbjudan behövs." + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Inbjudningen kunde inte bekräftas." + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Ange den begärda informationen." + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Misslyckades att spara kontoinformation." + +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registreringsbekräftelse för %s" + +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Registreringsförfrågan på %s" + +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Administratör" + +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "ditt registreringslösenord" + +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Registreringsdetaljer för %s" + +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Konto godkänt." + +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrering avslagen för %s" + +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Konto bekräftat. Du kan nu logga in." + +#: ../../include/account.php:674 ../../include/account.php:676 +msgid "Click here to upgrade." +msgstr "Klicka här för att uppgradera." + +#: ../../include/account.php:682 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Den här funktionen går utanför vad som anges i ditt avtal." + +#: ../../include/account.php:687 +msgid "This action is not available under your subscription plan." +msgstr "Den här funktionen är inte tillgänglig med ditt avtal." + +#: ../../include/datetime.php:35 +msgid "Miscellaneous" +msgstr "Övrigt" + +#: ../../include/datetime.php:113 +msgid "YYYY-MM-DD or MM-DD" +msgstr "ÅÅÅÅ-MM-DD eller MM-DD" + +#: ../../include/datetime.php:212 ../../mod/events.php:583 +#: ../../mod/appman.php:91 ../../mod/appman.php:92 +msgid "Required" +msgstr "Behövs" + +#: ../../include/datetime.php:231 +msgid "never" +msgstr "aldrig" + +#: ../../include/datetime.php:237 +msgid "less than a second ago" +msgstr "mindre än en sekund sedan" + +#: ../../include/datetime.php:240 +msgid "year" +msgstr "år" + +#: ../../include/datetime.php:240 +msgid "years" +msgstr "år" + +#: ../../include/datetime.php:241 +msgid "month" +msgstr "månad" + +#: ../../include/datetime.php:241 +msgid "months" +msgstr "månader" + +#: ../../include/datetime.php:242 +msgid "week" +msgstr "vecka" + +#: ../../include/datetime.php:242 +msgid "weeks" +msgstr "veckor" + +#: ../../include/datetime.php:243 +msgid "day" +msgstr "dag" + +#: ../../include/datetime.php:243 +msgid "days" +msgstr "dagar" + +#: ../../include/datetime.php:244 +msgid "hour" +msgstr "timme" + +#: ../../include/datetime.php:244 +msgid "hours" +msgstr "timmar" + +#: ../../include/datetime.php:245 +msgid "minute" +msgstr "minut" + +#: ../../include/datetime.php:245 +msgid "minutes" +msgstr "minuter" + +#: ../../include/datetime.php:246 +msgid "second" +msgstr "sekund" + +#: ../../include/datetime.php:246 +msgid "seconds" +msgstr "sekunder" + +#: ../../include/datetime.php:255 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s sedan" + +#: ../../include/datetime.php:463 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss födelsedag" + +#: ../../include/datetime.php:464 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Grattis på födelsedagen %1$s" + +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Rumsnamn saknas" + +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Rumsnamnet finns redan" + +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ogiltig rumsbeskrivning." + +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Rummet hittades inte." + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Rummet är fullt" + +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanalen är blockerad på den här servern." + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Kanalplats saknas." + +#: ../../include/follow.php:83 +msgid "Response from remote channel was incomplete." +msgstr "Svar från den andra kanalen var ofullständigt." + +#: ../../include/follow.php:100 +msgid "Channel was deleted and no longer exists." +msgstr "Kanalen har tagits bort och finns inte längre." + +#: ../../include/follow.php:135 ../../include/follow.php:197 +msgid "Protocol disabled." +msgstr "Protokoll inaktiverat." + +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "Kanalsökning misslyckades." + +#: ../../include/follow.php:186 +msgid "local account not found." +msgstr "hittade inte lokalt konto." + +#: ../../include/follow.php:215 +msgid "Cannot connect to yourself." +msgstr "Du kan inte kontakta dig själv." + +#: ../../include/identity.php:31 ../../mod/item.php:1071 +msgid "Unable to obtain identity information from database" +msgstr "Kunde inte hämta från databasen" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Tomt namn" + +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "För långt namn" + +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Ingen kontoidentifierare" + +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "Smeknamn måste anges." + +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "Reserverat smeknamn. Välj ett annat." + +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Smeknamnet innehåller otillåtna tecken eller är redan upptaget på den här servern." + +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "Kunde inte hämta den skapade identiteten" + +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "Standardprofil" + +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "Den begärda kanalen är inte tillgänglig" + +#: ../../include/identity.php:691 ../../mod/achievements.php:11 +#: ../../mod/blocks.php:29 ../../mod/profile.php:16 ../../mod/webpages.php:29 +#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 +#: ../../mod/editwebpage.php:28 ../../mod/hcard.php:8 +#: ../../mod/filestorage.php:53 ../../mod/layouts.php:29 +#: ../../mod/connect.php:13 +msgid "Requested profile is not available." +msgstr "Begärd profil är inte tillgänglig." + +#: ../../include/identity.php:854 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Bytprofilfoto" + +#: ../../include/identity.php:861 +msgid "Profiles" +msgstr "Profiler" + +#: ../../include/identity.php:861 +msgid "Manage/edit profiles" +msgstr "Hantera/redigera profiler" + +#: ../../include/identity.php:862 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Skapa ny profil" + +#: ../../include/identity.php:865 ../../include/nav.php:95 +msgid "Edit Profile" +msgstr "Redigera profil" + +#: ../../include/identity.php:878 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Profilbild" + +#: ../../include/identity.php:881 +msgid "visible to everybody" +msgstr "synlig för alla" + +#: ../../include/identity.php:882 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Redigera synlighet" + +#: ../../include/identity.php:898 ../../include/identity.php:1139 +msgid "Gender:" +msgstr "Kön:" + +#: ../../include/identity.php:899 ../../include/identity.php:1183 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:900 ../../include/identity.php:1194 +msgid "Homepage:" +msgstr "Hemsida:" + +#: ../../include/identity.php:901 +msgid "Online Now" +msgstr "Online nu" + +#: ../../include/identity.php:983 ../../include/identity.php:1063 +#: ../../mod/ping.php:329 +msgid "g A l F d" +msgstr "l j F \\k\\l G" + +#: ../../include/identity.php:984 ../../include/identity.php:1064 +msgid "F d" +msgstr "j F" + +#: ../../include/identity.php:1029 ../../include/identity.php:1104 +#: ../../mod/ping.php:351 +msgid "[today]" +msgstr "[i dag]" + +#: ../../include/identity.php:1041 +msgid "Birthday Reminders" +msgstr "Födelsedagspåminnelser" + +#: ../../include/identity.php:1042 +msgid "Birthdays this week:" +msgstr "Födelsedagar den här veckan:" + +#: ../../include/identity.php:1097 +msgid "[No description]" +msgstr "[Ingen beskrivning]" + +#: ../../include/identity.php:1115 +msgid "Event Reminders" +msgstr "Händelsepåminnelser" + +#: ../../include/identity.php:1116 +msgid "Events this week:" +msgstr "Händelser den här veckan:" + +#: ../../include/identity.php:1137 ../../mod/settings.php:1025 +msgid "Full Name:" +msgstr "Fullständigt namn:" + +#: ../../include/identity.php:1144 +msgid "Like this channel" +msgstr "Gilla den här kanalen" + +#: ../../include/identity.php:1168 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/identity.php:1169 +msgid "j F" +msgstr "j F" + +#: ../../include/identity.php:1176 +msgid "Birthday:" +msgstr "Födelsedag:" + +#: ../../include/identity.php:1180 +msgid "Age:" +msgstr "Ålder:" + +#: ../../include/identity.php:1189 +#, php-format +msgid "for %1$d %2$s" +msgstr "i %1$d %2$s" + +#: ../../include/identity.php:1192 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Sexuell preferens:" + +#: ../../include/identity.php:1196 ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Hemort:" + +#: ../../include/identity.php:1198 +msgid "Tags:" +msgstr "Taggar:" + +#: ../../include/identity.php:1200 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Politisk åskådning:" + +#: ../../include/identity.php:1202 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/identity.php:1204 +msgid "About:" +msgstr "Om:" + +#: ../../include/identity.php:1206 +msgid "Hobbies/Interests:" +msgstr "Fritidssysselsättning/intressen:" + +#: ../../include/identity.php:1208 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Gillar:" + +#: ../../include/identity.php:1210 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Ogillar:" + +#: ../../include/identity.php:1212 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation och sociala nätverk:" + +#: ../../include/identity.php:1214 +msgid "My other channels:" +msgstr "Mina andra kanaler:" + +#: ../../include/identity.php:1216 +msgid "Musical interests:" +msgstr "Musikintressen:" + +#: ../../include/identity.php:1218 +msgid "Books, literature:" +msgstr "Böcker, litteratur:" + +#: ../../include/identity.php:1220 +msgid "Television:" +msgstr "Tv:" + +#: ../../include/identity.php:1222 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/kultur/underhållning:" + +#: ../../include/identity.php:1224 +msgid "Love/Romance:" +msgstr "Kärlek/romantik:" + +#: ../../include/identity.php:1226 +msgid "Work/employment:" +msgstr "Arbete/sysselsättning:" + +#: ../../include/identity.php:1228 +msgid "School/education:" +msgstr "Skola/utbildning:" + +#: ../../include/identity.php:1248 +msgid "Like this thing" +msgstr "Gilla den här saken" + +#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 +msgid "Logout" +msgstr "Logga ut" + +#: ../../include/nav.php:87 ../../include/nav.php:120 +msgid "End this session" +msgstr "Avsluta sessionen" + +#: ../../include/nav.php:90 ../../include/nav.php:151 +msgid "Home" +msgstr "Hem" + +#: ../../include/nav.php:90 +msgid "Your posts and conversations" +msgstr "Dina inlägg och konversationer" + +#: ../../include/nav.php:91 +msgid "Your profile page" +msgstr "Din profilsida" + +#: ../../include/nav.php:93 +msgid "Edit Profiles" +msgstr "Redigera profiler" + +#: ../../include/nav.php:93 +msgid "Manage/Edit profiles" +msgstr "Hantera/redigera profiler" + +#: ../../include/nav.php:95 +msgid "Edit your profile" +msgstr "Redigera din profil" + +#: ../../include/nav.php:97 +msgid "Your photos" +msgstr "Dina foton" + +#: ../../include/nav.php:98 +msgid "Your files" +msgstr "Dina filer" + +#: ../../include/nav.php:103 +msgid "Your chatrooms" +msgstr "Dina chattrum" + +#: ../../include/nav.php:109 +msgid "Your bookmarks" +msgstr "Dina bokmärken" + +#: ../../include/nav.php:113 +msgid "Your webpages" +msgstr "Dina webbsidor" + +#: ../../include/nav.php:117 +msgid "Sign in" +msgstr "Logga in" + +#: ../../include/nav.php:134 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klicka för att logga ut" + +#: ../../include/nav.php:137 +msgid "Remote authentication" +msgstr "Fjärrinloggning" + +#: ../../include/nav.php:137 +msgid "Click to authenticate to your home hub" +msgstr "Klicka för att autentisera mot din hemmahubb" + +#: ../../include/nav.php:151 +msgid "Home Page" +msgstr "Hemsida" + +#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 +msgid "Register" +msgstr "Skapa konto" + +#: ../../include/nav.php:155 +msgid "Create an account" +msgstr "Skapa ett konto" + +#: ../../include/nav.php:160 +msgid "Help and documentation" +msgstr "Hjälp och dokumentation" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Applikationer, verktyg, länkar, spel" + +#: ../../include/nav.php:165 +msgid "Search site content" +msgstr "Sök innehåll" + +#: ../../include/nav.php:168 +msgid "Channel Directory" +msgstr "Kanalkatalog" + +#: ../../include/nav.php:182 +msgid "Your matrix" +msgstr "Din matris" + +#: ../../include/nav.php:183 +msgid "Mark all matrix notifications seen" +msgstr "Märk alla matrisnotifieringar som lästa" + +#: ../../include/nav.php:185 +msgid "Channel home" +msgstr "Kanalhem" + +#: ../../include/nav.php:186 +msgid "Mark all channel notifications seen" +msgstr "Märk alla kanalnotifieringar som lästa" + +#: ../../include/nav.php:189 ../../mod/connections.php:407 +msgid "Connections" +msgstr "Kontakter" + +#: ../../include/nav.php:192 +msgid "Notices" +msgstr "Meddelanden" + +#: ../../include/nav.php:192 +msgid "Notifications" +msgstr "Notifieringar" + +#: ../../include/nav.php:193 +msgid "See all notifications" +msgstr "Se alla notifieringar" + +#: ../../include/nav.php:194 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Märk alla systemnotifieringar som lästa" + +#: ../../include/nav.php:196 +msgid "Private mail" +msgstr "Privat meddelande" + +#: ../../include/nav.php:197 +msgid "See all private messages" +msgstr "Se alla privata meddelanden" + +#: ../../include/nav.php:198 +msgid "Mark all private messages seen" +msgstr "Märk alla privata meddelanden som lästa" + +#: ../../include/nav.php:199 +msgid "Inbox" +msgstr "Inkorg" + +#: ../../include/nav.php:200 +msgid "Outbox" +msgstr "Utkorg" + +#: ../../include/nav.php:204 +msgid "Event Calendar" +msgstr "Kalender" + +#: ../../include/nav.php:205 +msgid "See all events" +msgstr "Se alla händelser" + +#: ../../include/nav.php:206 +msgid "Mark all events seen" +msgstr "Märk alla händelser som lästa" + +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "Hantera dina kanaler" + +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "Konto-/kanalinställningar" + +#: ../../include/nav.php:218 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Administration" + +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "Serverinställning och -konfiguration" + +#: ../../include/nav.php:254 +msgid "@name, #tag, content" +msgstr "@namn, #tagg, innehåll" + +#: ../../include/nav.php:255 +msgid "Please wait..." +msgstr "Vänta..." + +#: ../../include/Contact.php:124 +msgid "New window" +msgstr "Nytt fönster" + +#: ../../include/Contact.php:125 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öppna den valda platsen i ett annat fönster eller en annan webbläsarflik" + +#: ../../include/Contact.php:215 ../../mod/admin.php:651 +#, php-format +msgid "User '%s' deleted" +msgstr "Användare '%s' borttagen" + #: ../../include/profile_selectors.php:6 #: ../../include/profile_selectors.php:23 msgid "Male" @@ -3467,2990 +3698,18 @@ msgstr "Bryr mig inte" msgid "Ask me" msgstr "Fråga mig" -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1541 -msgid "Logout" -msgstr "Logga ut" +#: ../../include/zot.php:673 +msgid "Invalid data packet" +msgstr "Ogiltigt datapaket" -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" -msgstr "Avsluta sessionen" +#: ../../include/zot.php:689 +msgid "Unable to verify channel signature" +msgstr "Kunde inte bekräfta kanalsignatur" -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "Hem" - -#: ../../include/nav.php:98 -msgid "Your posts and conversations" -msgstr "Dina inlägg och konversationer" - -#: ../../include/nav.php:99 -msgid "Your profile page" -msgstr "Din profilsida" - -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "Redigera profiler" - -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "Hantera/redigera profiler" - -#: ../../include/nav.php:103 -msgid "Edit your profile" -msgstr "Redigera din profil" - -#: ../../include/nav.php:105 -msgid "Your photos" -msgstr "Dina foton" - -#: ../../include/nav.php:106 -msgid "Your files" -msgstr "Dina filer" - -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "Dina chattrum" - -#: ../../include/nav.php:117 -msgid "Your bookmarks" -msgstr "Dina bokmärken" - -#: ../../include/nav.php:121 -msgid "Your webpages" -msgstr "Dina webbsidor" - -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "Logga in" - -#: ../../include/nav.php:142 +#: ../../include/zot.php:1933 #, php-format -msgid "%s - click to logout" -msgstr "%s - klicka för att logga ut" - -#: ../../include/nav.php:145 -msgid "Remote authentication" -msgstr "Fjärrinloggning" - -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" -msgstr "Klicka för att autentisera mot din hemmahubb" - -#: ../../include/nav.php:159 -msgid "Home Page" -msgstr "Hemsida" - -#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1518 -msgid "Register" -msgstr "Skapa konto" - -#: ../../include/nav.php:163 -msgid "Create an account" -msgstr "Skapa ett konto" - -#: ../../include/nav.php:168 -msgid "Help and documentation" -msgstr "Hjälp och dokumentation" - -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" -msgstr "Applikationer, verktyg, länkar, spel" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "Sök innehåll" - -#: ../../include/nav.php:176 -msgid "Channel Directory" -msgstr "Kanalkatalog" - -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "Din matris" - -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -msgstr "Märk alla matrisnotifieringar som lästa" - -#: ../../include/nav.php:193 -msgid "Channel home" -msgstr "Kanalhem" - -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "Märk alla kanalnotifieringar som lästa" - -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Kontakter" - -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "Meddelanden" - -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "Notifieringar" - -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "Se alla notifieringar" - -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Märk alla systemnotifieringar som lästa" - -#: ../../include/nav.php:204 -msgid "Private mail" -msgstr "Privat meddelande" - -#: ../../include/nav.php:205 -msgid "See all private messages" -msgstr "Se alla privata meddelanden" - -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "Märk alla privata meddelanden som lästa" - -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "Inkorg" - -#: ../../include/nav.php:208 -msgid "Outbox" -msgstr "Utkorg" - -#: ../../include/nav.php:212 -msgid "Event Calendar" -msgstr "Kalender" - -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "Se alla händelser" - -#: ../../include/nav.php:214 -msgid "Mark all events seen" -msgstr "Märk alla händelser som lästa" - -#: ../../include/nav.php:216 -msgid "Manage Your Channels" -msgstr "Hantera dina kanaler" - -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" -msgstr "Konto-/kanalinställningar" - -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" -msgstr "Serverinställning och -konfiguration" - -#: ../../include/nav.php:262 -msgid "@name, #tag, content" -msgstr "@namn, #tagg, innehåll" - -#: ../../include/nav.php:263 -msgid "Please wait..." -msgstr "Vänta..." - -#: ../../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 "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades." - -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "Ange din nuvarande sinnesstämning och visa för dina vänner" - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Välj huruvida du accepterar användarvillkoren. Registrering misslyckades." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Lösenorden stämmer inte överens." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrering lyckades. Kontrollera din e-post för valideringsinstruktioner." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering väntar på att bli godkänd av serverägaren." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Din registrering kan inte behandlas." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Registrering på den här servern/hubben måste godkännas." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Skapa konto på en annan ansluten server/hubb" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Antal dagliga registreringar som tillåts på den här servern har överskridits. Försök igen i morgon." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "användarvillkor" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Jag accepterar den här webbplatsens %s" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Jag är över 13 år och accepterar den här webbplatsens %s" - -#: ../../mod/register.php:207 ../../mod/admin.php:413 -msgid "Registration" -msgstr "Registrering" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Medlemskap på den här servern kan endast fås genom inbjudan." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Ange din inbjudningskod" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Din e-postadress" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Välj ett lösenord" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Ange lösenordet igen" - -#: ../../mod/mitem.php:24 ../../mod/menu.php:108 -msgid "Menu not found." -msgstr "Menyn hittades inte." - -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menyval uppdaterat." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Kunde inte uppdatera menyval." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menyval tillagt." - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Kunde inte lägga till menyval." - -#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "Hittades inte." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Hantera menyval" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Redigera meny" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Redigera menyval" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Ta bort menyval" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Nytt menyval" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Redigera den här menysamlaren" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Lägg till menyval" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Ta bort det här menyvalet" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Redigera det här menyvalet" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Nytt menyval" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Behörighet för menyval" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1049 -msgid "(click to open/close)" -msgstr "(klicka för att öppna/stänga)" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Länktext" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "Länkens URL" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use RedMatrix magic-auth if available" -msgstr "Använd RedMatrix magic-auth om tillgängligt" - -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Öppna länk i nytt fönster" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Ordningstal i listan" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Större tal sjunker till botten av listan" - -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menyval hittas inte." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menyval borttaget." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menyval kunde inte tas bort." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Redigera menyval" - -#: ../../mod/mitem.php:213 ../../mod/menu.php:130 -msgid "Modify" -msgstr "Ändra" - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Lite text om vad man kan göra som ny här" - -#: ../../mod/ping.php:266 -msgid "sent you a private message" -msgstr "skickade ett privat meddelande till dig" - -#: ../../mod/ping.php:319 -msgid "added your channel" -msgstr "lade till din kanal" - -#: ../../mod/ping.php:360 -msgid "posted an event" -msgstr "skapade en händelse" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Krets skapad." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Kunde inte skapa krets." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Kretsen uppdaterad." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Skapa en krets av kanaler." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Namn på krets: " - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Medlemmar kan ses av andra kanaler" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Krets borttagen." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Kunde inte ta bort krets." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Redigera krets" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Medlemmar" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alla anslutna kanaler" - -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Klicka på en kanal för att lägga till eller ta bort." - -#: ../../mod/search.php:13 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/photos.php:458 -#: ../../mod/directory.php:22 -msgid "Public access denied." -msgstr "Offentlig behörighet saknas." - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s följer %2$ss %3$s" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Puffa/stöt till" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "puffa, stöt till eller gör andra saker mot någon" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Mottagare" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Välj vad du önskar göra med mottagaren" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Gör det här inlägget privat" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Tillåt anslutning av applikation" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Återgå till din applikation och ange den här säkerhetskoden:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Logga in för att fortsätta." - -#: ../../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 "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?" - -#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1042 ../../mod/admin.php:392 -msgid "Yes" -msgstr "Ja" - -#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1042 ../../mod/admin.php:390 -msgid "No" -msgstr "Nej" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:583 -msgid "Profile not found." -msgstr "Profil hittades inte." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil borttagen." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Ny profil skapad." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profil inte tillgänglig för kloning." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Profil inte tillgänglig för export." - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Profilnamn krävs." - -#: ../../mod/profiles.php:387 -msgid "Marital Status" -msgstr "Civilstånd" - -#: ../../mod/profiles.php:391 -msgid "Romantic Partner" -msgstr "Romantisk partner" - -#: ../../mod/profiles.php:395 -msgid "Likes" -msgstr "Gillar" - -#: ../../mod/profiles.php:399 -msgid "Dislikes" -msgstr "Ogillar" - -#: ../../mod/profiles.php:403 -msgid "Work/Employment" -msgstr "Arbete/sysselsättning" - -#: ../../mod/profiles.php:406 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:410 -msgid "Political Views" -msgstr "Politisk åskådning" - -#: ../../mod/profiles.php:414 -msgid "Gender" -msgstr "Kön" - -#: ../../mod/profiles.php:418 -msgid "Sexual Preference" -msgstr "Sexuell preferens" - -#: ../../mod/profiles.php:422 -msgid "Homepage" -msgstr "Hemsida" - -#: ../../mod/profiles.php:426 -msgid "Interests" -msgstr "Intressen" - -#: ../../mod/profiles.php:430 ../../mod/admin.php:866 -msgid "Address" -msgstr "Adress" - -#: ../../mod/profiles.php:437 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Plats" - -#: ../../mod/profiles.php:520 -msgid "Profile updated." -msgstr "Profil uppdaterad." - -#: ../../mod/profiles.php:609 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Dölj din kontakt-/vänlista för de som ser den här profilen" - -#: ../../mod/profiles.php:649 -msgid "Edit Profile Details" -msgstr "Redigera profildetaljer" - -#: ../../mod/profiles.php:651 -msgid "View this profile" -msgstr "Visa den här profilen" - -#: ../../mod/profiles.php:653 -msgid "Change Profile Photo" -msgstr "Byt profilfoto" - -#: ../../mod/profiles.php:654 -msgid "Create a new profile using these settings" -msgstr "Skapa en ny profil utifrån de här inställningarna" - -#: ../../mod/profiles.php:655 -msgid "Clone this profile" -msgstr "Klona den här profilen" - -#: ../../mod/profiles.php:656 -msgid "Delete this profile" -msgstr "Ta bort den här profilen" - -#: ../../mod/profiles.php:658 -msgid "Import profile from file" -msgstr "Importera profil från fil" - -#: ../../mod/profiles.php:659 -msgid "Export profile to file" -msgstr "Exportera profil som fil" - -#: ../../mod/profiles.php:660 -msgid "Profile Name:" -msgstr "Profilnamn:" - -#: ../../mod/profiles.php:661 -msgid "Your Full Name:" -msgstr "Ditt fulllständiga namn:" - -#: ../../mod/profiles.php:662 -msgid "Title/Description:" -msgstr "Titel/beskrivning:" - -#: ../../mod/profiles.php:663 -msgid "Your Gender:" -msgstr "Ditt kön:" - -#: ../../mod/profiles.php:664 -msgid "Birthday :" -msgstr "Födelsedag:" - -#: ../../mod/profiles.php:665 -msgid "Street Address:" -msgstr "Gatuadress:" - -#: ../../mod/profiles.php:666 -msgid "Locality/City:" -msgstr "Ort:" - -#: ../../mod/profiles.php:667 -msgid "Postal/Zip Code:" -msgstr "Postnummer:" - -#: ../../mod/profiles.php:668 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:669 -msgid "Region/State:" -msgstr "Region:" - -#: ../../mod/profiles.php:670 -msgid " Marital Status:" -msgstr " Civilstånd:" - -#: ../../mod/profiles.php:671 -msgid "Who: (if applicable)" -msgstr "Vem: (om tillämpligt)" - -#: ../../mod/profiles.php:672 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exempel: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:673 -msgid "Since [date]:" -msgstr "Sedan [datum]" - -#: ../../mod/profiles.php:675 -msgid "Homepage URL:" -msgstr "Hemsideadress:" - -#: ../../mod/profiles.php:678 -msgid "Religious Views:" -msgstr "Religion/livsåskådning:" - -#: ../../mod/profiles.php:679 -msgid "Keywords:" -msgstr "Nyckelord:" - -#: ../../mod/profiles.php:682 -msgid "Example: fishing photography software" -msgstr "Exempel: fiske fotografering mjukvara" - -#: ../../mod/profiles.php:683 -msgid "Used in directory listings" -msgstr "Används i kataloglistningar" - -#: ../../mod/profiles.php:684 -msgid "Tell us about yourself..." -msgstr "Beskriv dig själv..." - -#: ../../mod/profiles.php:685 -msgid "Hobbies/Interests" -msgstr "Fritidssysselsättning/intressen" - -#: ../../mod/profiles.php:686 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformation och sociala nätverk" - -#: ../../mod/profiles.php:687 -msgid "My other channels" -msgstr "Mina andra kanaler" - -#: ../../mod/profiles.php:688 -msgid "Musical interests" -msgstr "Musikintressen" - -#: ../../mod/profiles.php:689 -msgid "Books, literature" -msgstr "Böcker, litteratur" - -#: ../../mod/profiles.php:690 -msgid "Television" -msgstr "Tv" - -#: ../../mod/profiles.php:691 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/kultur/underhållning" - -#: ../../mod/profiles.php:692 -msgid "Love/romance" -msgstr "Kärlek/romantik" - -#: ../../mod/profiles.php:693 -msgid "Work/employment" -msgstr "Arbete/sysselsättning" - -#: ../../mod/profiles.php:694 -msgid "School/education" -msgstr "Skola/utbildning" - -#: ../../mod/profiles.php:700 -msgid "This is your default profile." -msgstr "Det här är din standardprofil." - -#: ../../mod/profiles.php:711 ../../mod/directory.php:188 -msgid "Age: " -msgstr "Ålder:" - -#: ../../mod/profiles.php:754 -msgid "Edit/Manage Profiles" -msgstr "Redigera/hantera profiler" - -#: ../../mod/profiles.php:755 -msgid "Add profile things" -msgstr "Lägg till profilsaker" - -#: ../../mod/profiles.php:756 -msgid "Include desirable objects in your profile" -msgstr "Inkludera fina prylar i din profil" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Post inte tillgänglig." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Hämtning av URL returnerade fel: %1$s" - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ogiltig post." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanalen hittas inte." - -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Sidan hittas inte." - -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Exportera kanal" - -#: ../../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 "Exportera kanalens basinformation till en liten fil. Denna fungerar som en säkerhetskopia av dina anslutningar, behörigheter, profil, och grundläggande data, och kan användas för att importera dina data till en ny hubb, men tar inte med ditt innehåll." - -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Exportera innehåll" - -#: ../../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 "Exportera din kanalinformation och allt innehåll till en säkerhetskopia i JSON-format. Detta kopierar alla dina anslutningar, behörigheter, profildata och allt ditt innehåll, men är generellt inte lämpligt för att importera en kanal till en ny hubb, eftersom filen kan vara VÄLDIGT stor. Ha tålamod - det kan ta flera minuter innan nedladdningen börjar." - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Inga potentiella sid-ombud funna." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegera sidhantering" - -#: ../../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 "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Befintliga sid-ansvariga" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Befintliga sid-ombud" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentiella ombud" - -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:902 -msgid "Remove" -msgstr "Ta bort" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Lägg till" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Inga poster." - -#: ../../mod/siteinfo.php:93 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../mod/siteinfo.php:114 -msgid "Installed plugins/addons/apps:" -msgstr "Installerade tillägg/moduler/appar:" - -#: ../../mod/siteinfo.php:127 -msgid "No installed plugins/addons/apps" -msgstr "Inga installerade tillägg/moduler/appar" - -#: ../../mod/siteinfo.php:135 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:136 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Det här är en hubb som ingår i Red Matrix - ett globalt samverkande nätverk av decentraliserade webbplatser med bättre integritetskydd." - -#: ../../mod/siteinfo.php:138 -msgid "Tag: " -msgstr "Tagg: " - -#: ../../mod/siteinfo.php:140 -msgid "Last background fetch: " -msgstr "Senaste bakgrundshämtning: " - -#: ../../mod/siteinfo.php:143 -msgid "Running at web location" -msgstr "Kör på webbutrymmet" - -#: ../../mod/siteinfo.php:144 -msgid "" -"Please visit RedMatrix.me to learn more" -" about the Red Matrix." -msgstr "Besök RedMatrix.me för att lära dig mer om Red Matrix." - -#: ../../mod/siteinfo.php:145 -msgid "Bug reports and issues: please visit" -msgstr "Buggrapporter och problem: besök" - -#: ../../mod/siteinfo.php:148 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Förslag, uppskattning, etc. - maila \"redmatrix\" at librelist - dot com" - -#: ../../mod/siteinfo.php:150 -msgid "Site Administrators" -msgstr "Serveradministratörer" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Misslyckades att skapa källa. Ingen kanal vald." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Källa skapad." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Källa uppdaterad." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Hantera fjärrkällor med innehåll för din kanal." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Ny källa" - -#: ../../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 "Importera allt eller valt innehåll från följande kanal till den här kanalen och distribuera det enligt dina kanalinställningar." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importera endast innehåll med de här orden (ett per rad)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Lämna blankt för att importera allt offentligt innehåll" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Kanalnamn" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Källa hittades inte." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Redigera källa" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Ta bort källa" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Källa borttagen" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Kunde inte ta bort källa." - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ogiltigt profil-ID." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Redigera profilsynlighet" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klicka på en kontakt för att lägga till eller ta bort." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Kan ses av" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "Alla kontakter" - -#: ../../mod/events.php:81 -msgid "Event can not end before it has started." -msgstr "Händelser kan inte sluta innan de börjat." - -#: ../../mod/events.php:86 -msgid "Event title and start time are required." -msgstr "Händelsen behöver titel och starttid." - -#: ../../mod/events.php:100 -msgid "Event not found." -msgstr "Händelsen hittades inte." - -#: ../../mod/events.php:369 -msgid "l, F j" -msgstr "l, j F" - -#: ../../mod/events.php:391 -msgid "Edit event" -msgstr "Redigera händelse" - -#: ../../mod/events.php:443 -msgid "Create New Event" -msgstr "Skapa ny händelse" - -#: ../../mod/events.php:444 ../../mod/photos.php:856 -msgid "Previous" -msgstr "Föregående" - -#: ../../mod/events.php:445 ../../mod/setup.php:265 ../../mod/photos.php:865 -msgid "Next" -msgstr "Nästa" - -#: ../../mod/events.php:446 -msgid "Export" -msgstr "Exportera" - -#: ../../mod/events.php:571 -msgid "Event details" -msgstr "Detaljer för händelse" - -#: ../../mod/events.php:572 -msgid "Starting date and Title are required." -msgstr "Startdatum och titel är obligatoriska." - -#: ../../mod/events.php:574 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparerad lista)" - -#: ../../mod/events.php:576 -msgid "Event Starts:" -msgstr "Händelsen börjar:" - -#: ../../mod/events.php:576 ../../mod/events.php:592 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "Behövs" - -#: ../../mod/events.php:582 -msgid "Finish date/time is not known or not relevant" -msgstr "Slutdatum/tid är okänt eller inte relevant" - -#: ../../mod/events.php:584 -msgid "Event Finishes:" -msgstr "Händelsen slutar:" - -#: ../../mod/events.php:586 -msgid "Adjust for viewer timezone" -msgstr "Justera för betraktarens tidszon" - -#: ../../mod/events.php:588 -msgid "Description:" -msgstr "Beskrivning:" - -#: ../../mod/events.php:592 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:594 -msgid "Share this event" -msgstr "Dela den här händelsen" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Offentliga servrar" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "De listade servrarna tillåter offentlig registrering i Red Matrix. Alla servrar i matrisen är sammankopplade, så medlemskap i en av dem medför medlemskap i matrisen som helhet. Vissa servrar kan kräva abonnemang eller erbjuda uppdelade tjänstenivåer. Leverantörslänkarna kan ge ytterligare detaljer." - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "Server-URL" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Åtkomsttyp" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Registreringspolicy" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Du måste vara inloggad för att se den här sidan." - -#: ../../mod/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Otillräckliga behörigheter. Förfrågan omdirigerad till profilsidan." - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Välj en bokmärkeskatalog" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Spara bokmärke" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "Bokmärkets URL" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Beskrivning" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Eller ange nytt namn på bokmärkeskatalog" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Rum hittas inte" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Lämna rummet" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Ta bort det här rummet" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Jag är borta för tillfället" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Jag är online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Bokmärk det här rummet" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nytt chattrum" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Namn på chattrum" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss chattrum" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Borta" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Logga in." - -#: ../../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 "Posten hittas inte" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Posten går ej att redigera" - -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" -msgstr "Redigera inlägg" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Ta bort posten?" - -#: ../../mod/editpost.php:116 ../../mod/editblock.php:147 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" -msgstr "Infoga Youtube-video" - -#: ../../mod/editpost.php:117 ../../mod/editblock.php:148 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" -msgstr "Infoga Vorbis [.ogg]-video" - -#: ../../mod/editpost.php:118 ../../mod/editblock.php:149 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Infoga Vorbis [.ogg]-ljud" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Borttagning av kanal tillåts inte inom 48 timmar efter att kontolösenordet har ändrats." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Ta bort den här kanalen" - -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Det här kommer att ta bort den här kanalen helt från nätverket. När det är gjort går det inte att återställa den." - -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "Ange ditt lösenord för att bekräfta:" - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Ta bort den här kanalen och alla dess kloner från nätverket" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Som standard kommer bara den här hubbens instans av kanalen att tas bort från nätverket" - -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Ta bort kanal" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Ingen kanal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Gemensamma kontakter" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Inga gemensamma kontakter." - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Vi drabbades av ett problem vid inloggningen med OpenID:t du uppgav. Kontrollera att ID:t är korrekt stavat." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Felmeddelandet var:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Inloggning misslyckades." - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Fjärrinloggning" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Ange din kanaladress (t.ex. kanal@example.com)" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Autentisera" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Inget giltigt konto hittades." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Lösenordsåterställning har skickats. Kontrollera din e-post." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Servermedlem (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Lösenordsåterställning begärd på %s" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades." - -#: ../../mod/lostpass.php:85 ../../boot.php:1550 -msgid "Password Reset" -msgstr "Lösenordsåterställning" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Ditt lösenord har återställts som begärt." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Ditt nya lösenord är" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Spara eller kopiera ditt nya lösenord - " - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klicka sedan här för att logga in" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ditt lösenord kan bytas från sidan Inställningar när du är inloggad." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Ditt lösenord byttes på %s" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Glömt lösenordet?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Ange din e-postadress och skicka för att återställa ditt lösenord. Kontrollera sedan din e-post för vidare instruktioner." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-postadress" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Återställ" - -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Namn är obligatoriskt" - -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Nyckel och kod är obligatoriska" - -#: ../../mod/settings.php:222 -msgid "Passwords do not match. Password unchanged." -msgstr "Lösenorden stämmer inte överens. Lösenordet har inte ändrats." - -#: ../../mod/settings.php:226 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tomma lösenord tillåts inte. Lösenordet har inte ändrats." - -#: ../../mod/settings.php:240 -msgid "Password changed." -msgstr "Lösenordet ändrat." - -#: ../../mod/settings.php:242 -msgid "Password update failed. Please try again." -msgstr "Lösenordsuppdatering misslyckades. Försök igen." - -#: ../../mod/settings.php:256 -msgid "Not valid email." -msgstr "Inte en giltig e-postadress." - -#: ../../mod/settings.php:259 -msgid "Protected email address. Cannot change to that email." -msgstr "Skyddad e-postadress. Kan inte ändra till den." - -#: ../../mod/settings.php:268 -msgid "System failure storing new email. Please try again." -msgstr "Systemfel när ny e-postadress skulle sparas. Försök igen." - -#: ../../mod/settings.php:507 -msgid "Settings updated." -msgstr "Inställningar uppdaterade." - -#: ../../mod/settings.php:576 ../../mod/settings.php:602 -#: ../../mod/settings.php:638 -msgid "Add application" -msgstr "Lägg till applikation" - -#: ../../mod/settings.php:579 -msgid "Name of application" -msgstr "Applikationens namn" - -#: ../../mod/settings.php:580 ../../mod/settings.php:606 -msgid "Consumer Key" -msgstr "Nyckel för konsument" - -#: ../../mod/settings.php:580 ../../mod/settings.php:581 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatiskt genererad - ändra om så önskas. Maxlängd 20" - -#: ../../mod/settings.php:581 ../../mod/settings.php:607 -msgid "Consumer Secret" -msgstr "Kod för konsument" - -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -msgid "Redirect" -msgstr "Omdirigering" - -#: ../../mod/settings.php:582 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Omdirigerings-URI - lämna blankt om inte din applikation specifikt behöver det" - -#: ../../mod/settings.php:583 ../../mod/settings.php:609 -msgid "Icon url" -msgstr "Ikon-URL" - -#: ../../mod/settings.php:583 -msgid "Optional" -msgstr "Frivillig" - -#: ../../mod/settings.php:594 -msgid "You can't edit this application." -msgstr "Du kan inte redigera den här applikationen." - -#: ../../mod/settings.php:637 -msgid "Connected Apps" -msgstr "Anslutna appar" - -#: ../../mod/settings.php:641 -msgid "Client key starts with" -msgstr "Klientnyckel börjar med" - -#: ../../mod/settings.php:642 -msgid "No name" -msgstr "Inget namn" - -#: ../../mod/settings.php:643 -msgid "Remove authorization" -msgstr "Ta bort behörighet" - -#: ../../mod/settings.php:654 -msgid "No feature settings configured" -msgstr "Inga funktionsinställningar konfigurerade" - -#: ../../mod/settings.php:662 -msgid "Feature Settings" -msgstr "Funktionsinställningar" - -#: ../../mod/settings.php:685 -msgid "Account Settings" -msgstr "Kontoinställningar" - -#: ../../mod/settings.php:686 -msgid "Password Settings" -msgstr "Lösenordsinställningar" - -#: ../../mod/settings.php:687 -msgid "New Password:" -msgstr "Nytt lösenord:" - -#: ../../mod/settings.php:688 -msgid "Confirm:" -msgstr "Bekräfta:" - -#: ../../mod/settings.php:688 -msgid "Leave password fields blank unless changing" -msgstr "Lämna lösenordsfälten blanka om lösenordet inte ska ändras" - -#: ../../mod/settings.php:690 ../../mod/settings.php:1023 -msgid "Email Address:" -msgstr "E-postadress" - -#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Ta bort konto" - -#: ../../mod/settings.php:692 -msgid "Remove this account from this server including all its channels" -msgstr "Ta bort det här kontot från servern, inklusive alla dess kanaler" - -#: ../../mod/settings.php:693 ../../mod/settings.php:1104 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Varning: Den här handlingen är permanent och kan inte återställas." - -#: ../../mod/settings.php:709 -msgid "Off" -msgstr "Av" - -#: ../../mod/settings.php:709 -msgid "On" -msgstr "På" - -#: ../../mod/settings.php:716 -msgid "Additional Features" -msgstr "Ytterligare funktioner" - -#: ../../mod/settings.php:740 -msgid "Connector Settings" -msgstr "Anslutningsinställningar" - -#: ../../mod/settings.php:779 -msgid "No special theme for mobile devices" -msgstr "Inget särskilt tema för mobila enheter" - -#: ../../mod/settings.php:782 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimentellt)" - -#: ../../mod/settings.php:785 ../../mod/admin.php:363 -msgid "mobile" -msgstr "mobilt" - -#: ../../mod/settings.php:821 -msgid "Display Settings" -msgstr "Utseende" - -#: ../../mod/settings.php:827 -msgid "Display Theme:" -msgstr "Tema för utseende:" - -#: ../../mod/settings.php:828 -msgid "Mobile Theme:" -msgstr "Mobilt tema:" - -#: ../../mod/settings.php:829 -msgid "Enable user zoom on mobile devices" -msgstr "Tillåt användare att zooma på mobila enheter" - -#: ../../mod/settings.php:830 -msgid "Update browser every xx seconds" -msgstr "Uppdatera webbläsaren var xx sekund" - -#: ../../mod/settings.php:830 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minst 10 sekunder, inget maximum" - -#: ../../mod/settings.php:831 -msgid "Maximum number of conversations to load at any time:" -msgstr "Högsta antal konversationer att ladda åt gången:" - -#: ../../mod/settings.php:831 -msgid "Maximum of 100 items" -msgstr "Maximalt 100 poster" - -#: ../../mod/settings.php:832 -msgid "Don't show emoticons" -msgstr "Visa inte känsloikoner" - -#: ../../mod/settings.php:833 -msgid "Link post titles to source" -msgstr "Länka inläggstitlar till källan" - -#: ../../mod/settings.php:834 -msgid "System Page Layout Editor - (advanced)" -msgstr "Redigera systemets sidlayout (avancerat)" - -#: ../../mod/settings.php:837 -msgid "Use blog/list mode on channel page" -msgstr "Använd blogg-/listläge på kanalsida" - -#: ../../mod/settings.php:837 ../../mod/settings.php:838 -msgid "(comments displayed separately)" -msgstr "(kommentarer visas separat)" - -#: ../../mod/settings.php:838 -msgid "Use blog/list mode on matrix page" -msgstr "Använd blogg-/listläge på matrissida" - -#: ../../mod/settings.php:839 -msgid "Channel page max height of content (in pixels)" -msgstr "Maxhöjd för innehåll på kanalsidor (i pixels)" - -#: ../../mod/settings.php:839 ../../mod/settings.php:840 -msgid "click to expand content exceeding this height" -msgstr "klicka för att fälla ut innehåll som överskrider den här höjden" - -#: ../../mod/settings.php:840 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maxhöjd för innehåll på matrissidan (i pixels)" - -#: ../../mod/settings.php:874 -msgid "Nobody except yourself" -msgstr "Ingen utom dig själv" - -#: ../../mod/settings.php:875 -msgid "Only those you specifically allow" -msgstr "Endast utvalda" - -#: ../../mod/settings.php:876 -msgid "Approved connections" -msgstr "Godkända kontakter" - -#: ../../mod/settings.php:877 -msgid "Any connections" -msgstr "Alla kontakter" - -#: ../../mod/settings.php:878 -msgid "Anybody on this website" -msgstr "Vem som helst på den här servern" - -#: ../../mod/settings.php:879 -msgid "Anybody in this network" -msgstr "Vem som helst i det här nätverket" - -#: ../../mod/settings.php:880 -msgid "Anybody authenticated" -msgstr "Vem som helst som har autentiserat sig" - -#: ../../mod/settings.php:881 -msgid "Anybody on the internet" -msgstr "Vem som helst på Internet" - -#: ../../mod/settings.php:955 -msgid "Publish your default profile in the network directory" -msgstr "Publicera din standardprofil i nätverkskatalogen" - -#: ../../mod/settings.php:960 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Tillåt oss att föreslå dig som möjlig vän för nya medlemmar" - -#: ../../mod/settings.php:964 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "eller" - -#: ../../mod/settings.php:969 -msgid "Your channel address is" -msgstr "Din kanaladress är" - -#: ../../mod/settings.php:1014 -msgid "Channel Settings" -msgstr "Kanalinställningar" - -#: ../../mod/settings.php:1021 -msgid "Basic Settings" -msgstr "Grundläggande inställningar" - -#: ../../mod/settings.php:1024 -msgid "Your Timezone:" -msgstr "Din tidszon:" - -#: ../../mod/settings.php:1025 -msgid "Default Post Location:" -msgstr "Standardplats:" - -#: ../../mod/settings.php:1025 -msgid "Geographical location to display on your posts" -msgstr "Geografisk plats att visa för dina inlägg" - -#: ../../mod/settings.php:1026 -msgid "Use Browser Location:" -msgstr "Använd webbläsarens position:" - -#: ../../mod/settings.php:1028 -msgid "Adult Content" -msgstr "Innehåll olämpligt för barn" - -#: ../../mod/settings.php:1028 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Den här kanalen publicerar ofta eller regelbundet innehåll som är olämpligt för barn. (Tagga allt pornografiskt material och/eller nakenhet med #NSFW, tack)" - -#: ../../mod/settings.php:1030 -msgid "Security and Privacy Settings" -msgstr "Säkerhets- och integritetsinställningar" - -#: ../../mod/settings.php:1032 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Dina behörigheter har redan ställts in. Klicka för att visa/ändra" - -#: ../../mod/settings.php:1034 -msgid "Hide my online presence" -msgstr "Visa inte min online-närvaro" - -#: ../../mod/settings.php:1034 -msgid "Prevents displaying in your profile that you are online" -msgstr "Förhindrar att det syns i din profil att du är online" - -#: ../../mod/settings.php:1036 -msgid "Simple Privacy Settings:" -msgstr "Enkla integritetsinställningar:" - -#: ../../mod/settings.php:1037 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Väldigt offentligt - extremt tillåtande (bör användas försiktigt)" - -#: ../../mod/settings.php:1038 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typiskt - offentligt som standard, privat när så önskas (liknande behörigheter som på sociala nätverk men med förbättrad integritet)" - -#: ../../mod/settings.php:1039 -msgid "Private - default private, never open or public" -msgstr "Privat - privat som standard, aldrig öppet eller offentligt" - -#: ../../mod/settings.php:1040 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockera - som standard blockerat till/från alla" - -#: ../../mod/settings.php:1042 -msgid "Allow others to tag your posts" -msgstr "Låt andra tagga dina inlägg" - -#: ../../mod/settings.php:1042 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Ofta använt av gemenskapen för att i efterhand flagga olämpligt innehåll" - -#: ../../mod/settings.php:1044 -msgid "Advanced Privacy Settings" -msgstr "Avancerade integritetsinställningar" - -#: ../../mod/settings.php:1046 -msgid "Expire other channel content after this many days" -msgstr "Låt annat kanalinnehåll upphöra efter efter så här många dagar" - -#: ../../mod/settings.php:1046 -msgid "0 or blank prevents expiration" -msgstr "0 eller blankt förhindrar upphörande" - -#: ../../mod/settings.php:1047 -msgid "Maximum Friend Requests/Day:" -msgstr "Högsta antal vänförfrågningar per dag:" - -#: ../../mod/settings.php:1047 -msgid "May reduce spam activity" -msgstr "Kan reducera spamaktivitet" - -#: ../../mod/settings.php:1048 -msgid "Default Post Permissions" -msgstr "Standardbehörighet för inlägg" - -#: ../../mod/settings.php:1053 -msgid "Channel permissions category:" -msgstr "Kanalens behörighetskategori:" - -#: ../../mod/settings.php:1059 -msgid "Maximum private messages per day from unknown people:" -msgstr "Högsta antal privata meddelanden per dag från okända personer:" - -#: ../../mod/settings.php:1059 -msgid "Useful to reduce spamming" -msgstr "Användbart för att minska skräputskick" - -#: ../../mod/settings.php:1062 -msgid "Notification Settings" -msgstr "Notifieringsinställningar" - -#: ../../mod/settings.php:1063 -msgid "By default post a status message when:" -msgstr "Skicka som standard ett statusmeddelande när:" - -#: ../../mod/settings.php:1064 -msgid "accepting a friend request" -msgstr "du accepterar en vänförfrågan" - -#: ../../mod/settings.php:1065 -msgid "joining a forum/community" -msgstr "du går med i ett forum/en gemenskap" - -#: ../../mod/settings.php:1066 -msgid "making an interesting profile change" -msgstr "du gör en intressant ändring av profilen" - -#: ../../mod/settings.php:1067 -msgid "Send a notification email when:" -msgstr "Skicka en notifiering via e-post när:" - -#: ../../mod/settings.php:1068 -msgid "You receive a connection request" -msgstr "Du får en kontaktförfrågan" - -#: ../../mod/settings.php:1069 -msgid "Your connections are confirmed" -msgstr "Dina kontakter bekräftas" - -#: ../../mod/settings.php:1070 -msgid "Someone writes on your profile wall" -msgstr "Någon skriver på din profilvägg" - -#: ../../mod/settings.php:1071 -msgid "Someone writes a followup comment" -msgstr "Någon skriver en uppföljande kommentar" - -#: ../../mod/settings.php:1072 -msgid "You receive a private message" -msgstr "Du tar emot ett privat meddelande" - -#: ../../mod/settings.php:1073 -msgid "You receive a friend suggestion" -msgstr "Du tar emot ett vänförslag" - -#: ../../mod/settings.php:1074 -msgid "You are tagged in a post" -msgstr "Du taggas i ett inlägg" - -#: ../../mod/settings.php:1075 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du puffas/stöts till/etc. i ett inlägg" - -#: ../../mod/settings.php:1078 -msgid "Show visual notifications including:" -msgstr "Visa visuella notifieringar vid:" - -#: ../../mod/settings.php:1080 -msgid "Unseen matrix activity" -msgstr "Oläst matrisaktivitet" - -#: ../../mod/settings.php:1081 -msgid "Unseen channel activity" -msgstr "Oläst kanalaktivitet" - -#: ../../mod/settings.php:1082 -msgid "Unseen private messages" -msgstr "Olästa privata meddelanden" - -#: ../../mod/settings.php:1082 ../../mod/settings.php:1087 -#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 -msgid "Recommended" -msgstr "Rekommenderas" - -#: ../../mod/settings.php:1083 -msgid "Upcoming events" -msgstr "Kommande händelser" - -#: ../../mod/settings.php:1084 -msgid "Events today" -msgstr "Dagens händelser" - -#: ../../mod/settings.php:1085 -msgid "Upcoming birthdays" -msgstr "Kommande födelsedagar" - -#: ../../mod/settings.php:1085 -msgid "Not available in all themes" -msgstr "Inte tillgänglig i alla teman" - -#: ../../mod/settings.php:1086 -msgid "System (personal) notifications" -msgstr "Systemmeddelanden (personliga)" - -#: ../../mod/settings.php:1087 -msgid "System info messages" -msgstr "Systemmeddelanden" - -#: ../../mod/settings.php:1088 -msgid "System critical alerts" -msgstr "Systemkritiska varningar" - -#: ../../mod/settings.php:1089 -msgid "New connections" -msgstr "Nya kontakter" - -#: ../../mod/settings.php:1090 -msgid "System Registrations" -msgstr "Systemregistreringar" - -#: ../../mod/settings.php:1091 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Visa även nya väggmeddelanden, privata meddelanden, och anslutningar under Meddelanden" - -#: ../../mod/settings.php:1093 -msgid "Notify me of events this many days in advance" -msgstr "Meddela mig om händelser så här många dagar i förväg" - -#: ../../mod/settings.php:1093 -msgid "Must be greater than 0" -msgstr "Måste vara större än 0" - -#: ../../mod/settings.php:1095 -msgid "Advanced Account/Page Type Settings" -msgstr "Avancerade konto-/sidtypsinställningar" - -#: ../../mod/settings.php:1096 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändra det här kontots beteende i särskilda situationer" - -#: ../../mod/settings.php:1099 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Aktivera expertläge (i Inställningar > Ytterligare funktioner) för att göra ändringar!" - -#: ../../mod/settings.php:1100 -msgid "Miscellaneous Settings" -msgstr "Diverse inställningar" - -#: ../../mod/settings.php:1102 -msgid "Personal menu to display in your channel pages" -msgstr "Personlig meny att visa i dina kanalsidor" - -#: ../../mod/settings.php:1103 -msgid "Remove this channel" -msgstr "Ta bort den här kanalen" - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." -msgstr "Kunde inte komma åt kontaktuppgifter." - -#: ../../mod/connections.php:51 ../../mod/connedit.php:86 -msgid "Could not locate selected profile." -msgstr "Kunde inte hitta vald profil." - -#: ../../mod/connections.php:94 ../../mod/connedit.php:140 -msgid "Connection updated." -msgstr "Kontakt uppdaterad." - -#: ../../mod/connections.php:96 ../../mod/connedit.php:142 -msgid "Failed to update connection record." -msgstr "Misslyckades att uppdatera kontaktuppgifter." - -#: ../../mod/connections.php:191 ../../mod/connections.php:292 -msgid "Blocked" -msgstr "Blockerade" - -#: ../../mod/connections.php:196 ../../mod/connections.php:299 -msgid "Ignored" -msgstr "Ignorerade" - -#: ../../mod/connections.php:201 ../../mod/connections.php:313 -msgid "Hidden" -msgstr "Dolda" - -#: ../../mod/connections.php:206 ../../mod/connections.php:306 -msgid "Archived" -msgstr "Arkiverade" - -#: ../../mod/connections.php:230 ../../mod/connections.php:245 -msgid "All" -msgstr "Alla" - -#: ../../mod/connections.php:270 -msgid "Suggest new connections" -msgstr "Föreslå nya kontakter" - -#: ../../mod/connections.php:273 -msgid "New Connections" -msgstr "Nya kontakter" - -#: ../../mod/connections.php:276 -msgid "Show pending (new) connections" -msgstr "Visa väntande (nya) kontakter" - -#: ../../mod/connections.php:282 -msgid "Show all connections" -msgstr "Visa alla kontakter" - -#: ../../mod/connections.php:285 -msgid "Unblocked" -msgstr "Ej blockerade" - -#: ../../mod/connections.php:288 -msgid "Only show unblocked connections" -msgstr "Visa endast ej blockerade kontakter" - -#: ../../mod/connections.php:295 -msgid "Only show blocked connections" -msgstr "Visa endast blockerade kontakter" - -#: ../../mod/connections.php:302 -msgid "Only show ignored connections" -msgstr "Visa endast ignorerade kontakter" - -#: ../../mod/connections.php:309 -msgid "Only show archived connections" -msgstr "Visa endast arkiverade kontakter" - -#: ../../mod/connections.php:316 -msgid "Only show hidden connections" -msgstr "Visa endast dolda kontakter" - -#: ../../mod/connections.php:371 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:372 -msgid "Edit connection" -msgstr "Redigera kontakt" - -#: ../../mod/connections.php:410 -msgid "Search your connections" -msgstr "Sök bland dina kontakter" - -#: ../../mod/connections.php:411 -msgid "Finding: " -msgstr "Sökning efter: " - -#: ../../mod/manage.php:138 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du har skapat %1$.0f av %2$.0f tillåtna kanaler." - -#: ../../mod/manage.php:146 -msgid "Create a new channel" -msgstr "Skapa en ny kanal" - -#: ../../mod/manage.php:151 -msgid "Current Channel" -msgstr "Nuvarande kanal" - -#: ../../mod/manage.php:153 -msgid "Switch to one of your channels by selecting it." -msgstr "Växla till en av dina kanaler genom att välja den." - -#: ../../mod/manage.php:154 -msgid "Default Channel" -msgstr "Standardkanal" - -#: ../../mod/manage.php:155 -msgid "Make Default" -msgstr "Gör till standard" - -#: ../../mod/manage.php:158 -#, php-format -msgid "%d new messages" -msgstr "%d nya meddelanden" - -#: ../../mod/manage.php:159 -#, php-format -msgid "%d new introductions" -msgstr "%d nya presentationer" - -#: ../../mod/connedit.php:189 -msgid "is now connected to" -msgstr "har nu kontakt med" - -#: ../../mod/connedit.php:310 -msgid "Could not access address book record." -msgstr "Kunde inte komma åt adressboksuppgifter." - -#: ../../mod/connedit.php:324 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Uppdatering misslyckades - kanalen är inte tillgänglig." - -#: ../../mod/connedit.php:331 -msgid "Channel has been unblocked" -msgstr "Kanalen är inte längre blockerad" - -#: ../../mod/connedit.php:332 -msgid "Channel has been blocked" -msgstr "Kanalen har blockerats" - -#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 -#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:388 -msgid "Unable to set address book parameters." -msgstr "Kunde inte ställa in adressboksparametrar." - -#: ../../mod/connedit.php:343 -msgid "Channel has been unignored" -msgstr "Kanalen ignoreras inte längre" - -#: ../../mod/connedit.php:344 -msgid "Channel has been ignored" -msgstr "Kanalen har ignorerats" - -#: ../../mod/connedit.php:355 -msgid "Channel has been unarchived" -msgstr "Kanalen arkiveras inte längre" - -#: ../../mod/connedit.php:356 -msgid "Channel has been archived" -msgstr "Kanalen har arkiverats" - -#: ../../mod/connedit.php:367 -msgid "Channel has been unhidden" -msgstr "Kanalen döljs inte längre" - -#: ../../mod/connedit.php:368 -msgid "Channel has been hidden" -msgstr "Kanalen har dolts" - -#: ../../mod/connedit.php:383 -msgid "Channel has been approved" -msgstr "Kanalen har godkänts" - -#: ../../mod/connedit.php:384 -msgid "Channel has been unapproved" -msgstr "Kanalen är inte godkänd längre" - -#: ../../mod/connedit.php:412 -msgid "Connection has been removed." -msgstr "Kontakten har tagits bort." - -#: ../../mod/connedit.php:432 -#, php-format -msgid "View %s's profile" -msgstr "Visa %ss profil" - -#: ../../mod/connedit.php:436 -msgid "Refresh Permissions" -msgstr "Uppdatera behörigheter" - -#: ../../mod/connedit.php:439 -msgid "Fetch updated permissions" -msgstr "Hämta uppdaterade behörigheter" - -#: ../../mod/connedit.php:443 -msgid "Recent Activity" -msgstr "Senaste aktiviteten" - -#: ../../mod/connedit.php:446 -msgid "View recent posts and comments" -msgstr "Visa de senaste inläggen och kommentarerna" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:595 -#: ../../mod/admin.php:732 -msgid "Unblock" -msgstr "Avblockera" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:595 -#: ../../mod/admin.php:731 -msgid "Block" -msgstr "Blockera" - -#: ../../mod/connedit.php:453 -msgid "Block or Unblock this connection" -msgstr "Blockera eller häv blockering av den här kontakten" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:596 -msgid "Unignore" -msgstr "Sluta att ignorera" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:596 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorera" - -#: ../../mod/connedit.php:460 -msgid "Ignore or Unignore this connection" -msgstr "Ignorera eller sluta att ignorera den här kontakten" - -#: ../../mod/connedit.php:463 -msgid "Unarchive" -msgstr "Sluta att arkivera" - -#: ../../mod/connedit.php:463 -msgid "Archive" -msgstr "Arkivera" - -#: ../../mod/connedit.php:466 -msgid "Archive or Unarchive this connection" -msgstr "Arkivera eller sluta att arkivera den här kontakten" - -#: ../../mod/connedit.php:469 -msgid "Unhide" -msgstr "Sluta att dölja" - -#: ../../mod/connedit.php:469 -msgid "Hide" -msgstr "Dölj" - -#: ../../mod/connedit.php:472 -msgid "Hide or Unhide this connection" -msgstr "Dölj eller sluta att dölja den här kontakten" - -#: ../../mod/connedit.php:479 -msgid "Delete this connection" -msgstr "Ta bort den här kontakten" - -#: ../../mod/connedit.php:523 ../../mod/connedit.php:553 -msgid "Approve this connection" -msgstr "Godkänn den här kontakten" - -#: ../../mod/connedit.php:523 -msgid "Accept connection to allow communication" -msgstr "Acceptera kontakten för att tillåta kommunikation" - -#: ../../mod/connedit.php:539 -#, php-format -msgid "Connections: settings for %s" -msgstr "Kontakter: inställningar för %s" - -#: ../../mod/connedit.php:540 -msgid "Apply these permissions automatically" -msgstr "Använd de här rättigheterna automatiskt" - -#: ../../mod/connedit.php:544 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Använd rättigheterna angivna på den här sidan för alla nya kontakter." - -#: ../../mod/connedit.php:546 -msgid "Slide to adjust your degree of friendship" -msgstr "Dra för att justera er vänskapsnivå" - -#: ../../mod/connedit.php:552 -msgid "inherited" -msgstr "ärvd" - -#: ../../mod/connedit.php:554 -msgid "Connection has no individual permissions!" -msgstr "Kontakten har inga individuella behörigheter!" - -#: ../../mod/connedit.php:555 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Det här kan vara lämpligt beroende på dina integritetsinställningar, men du vill kanske se över de \"Avancerade inställningarna\"." - -#: ../../mod/connedit.php:557 -msgid "Profile Visibility" -msgstr "Profilsynlighet" - -#: ../../mod/connedit.php:558 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Välj profilen som du vill ska synas när %s ser din profil på ett säkert sätt." - -#: ../../mod/connedit.php:559 -msgid "Contact Information / Notes" -msgstr "Kontaktinformation / anteckningar" - -#: ../../mod/connedit.php:560 -msgid "Edit contact notes" -msgstr "Redigera anteckningar för kontakten" - -#: ../../mod/connedit.php:562 -msgid "Their Settings" -msgstr "Deras inställningar" - -#: ../../mod/connedit.php:563 -msgid "My Settings" -msgstr "Mina inställningar" - -#: ../../mod/connedit.php:565 -msgid "Clear/Disable Automatic Permissions" -msgstr "Rensa/inaktivera automatiska behörigheter" - -#: ../../mod/connedit.php:566 -msgid "Forum Members" -msgstr "Forummedlemmar" - -#: ../../mod/connedit.php:567 -msgid "Soapbox" -msgstr "Talarstol" - -#: ../../mod/connedit.php:568 -msgid "Full Sharing (typical social network permissions)" -msgstr "Full delning (typiska behörigheter för sociala nätverk)" - -#: ../../mod/connedit.php:569 -msgid "Cautious Sharing " -msgstr "Försiktig delning" - -#: ../../mod/connedit.php:570 -msgid "Follow Only" -msgstr "Följ endast" - -#: ../../mod/connedit.php:571 -msgid "Individual Permissions" -msgstr "Individuella behörigheter" - -#: ../../mod/connedit.php:572 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Vissa behörigheter kan ärvas från din kanals integritetsinställningar, vilka har högre prioritet än individuella inställningar. Ändring av de ärvda inställningarna på den här sidan har ingen effekt." - -#: ../../mod/connedit.php:573 -msgid "Advanced Permissions" -msgstr "Avancerade behörighetsinställningar" - -#: ../../mod/connedit.php:574 -msgid "Simple Permissions (select one and submit)" -msgstr "Enkla behörighetsinställningar (välj en och spara)" - -#: ../../mod/connedit.php:578 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Besök %ss profil - %s" - -#: ../../mod/connedit.php:579 -msgid "Block/Unblock contact" -msgstr "Blockera/häv blockering av kontakt" - -#: ../../mod/connedit.php:580 -msgid "Ignore contact" -msgstr "Ignorera kontakt" - -#: ../../mod/connedit.php:581 -msgid "Repair URL settings" -msgstr "Reparera URL-inställningar" - -#: ../../mod/connedit.php:582 -msgid "View conversations" -msgstr "Visa konversationer" - -#: ../../mod/connedit.php:584 -msgid "Delete contact" -msgstr "Ta bort kontakt" - -#: ../../mod/connedit.php:587 -msgid "Last update:" -msgstr "Senaste uppdatering:" - -#: ../../mod/connedit.php:589 -msgid "Update public posts" -msgstr "Uppdatera offentliga inlägg" - -#: ../../mod/connedit.php:591 -msgid "Update now" -msgstr "Uppdatera nu" - -#: ../../mod/connedit.php:597 -msgid "Currently blocked" -msgstr "Blockerad" - -#: ../../mod/connedit.php:598 -msgid "Currently ignored" -msgstr "Ignorerad" - -#: ../../mod/connedit.php:599 -msgid "Currently archived" -msgstr "Arkiverad" - -#: ../../mod/connedit.php:600 -msgid "Currently pending" -msgstr "Inväntar svar" - -#: ../../mod/connedit.php:601 -msgid "Hide this contact from others" -msgstr "Dölj den här kontakten för andra" - -#: ../../mod/connedit.php:601 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Svar/gilla-reaktioner på dina offentliga inlägg kan fortfarande synas" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Kunde inte hitta mottagare." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Kunde inte kommunicera med den begärda kanalen." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan inte bekräfta den begärda kanalen." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka." - -#: ../../mod/mail.php:136 -msgid "Message deleted." -msgstr "Meddelande borttaget." - -#: ../../mod/mail.php:153 -msgid "Message recalled." -msgstr "Meddelande återkallat." - -#: ../../mod/mail.php:222 -msgid "Send Private Message" -msgstr "Skicka privat meddelande." - -#: ../../mod/mail.php:223 ../../mod/mail.php:340 -msgid "To:" -msgstr "Till:" - -#: ../../mod/mail.php:228 ../../mod/mail.php:342 -msgid "Subject:" -msgstr "Ämne:" - -#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Ditt meddelande:" - -#: ../../mod/mail.php:239 -msgid "Send" -msgstr "Skicka" - -#: ../../mod/mail.php:266 -msgid "Message not found." -msgstr "Meddelandet hittades inte." - -#: ../../mod/mail.php:309 -msgid "Delete message" -msgstr "Ta bort meddelande" - -#: ../../mod/mail.php:310 -msgid "Recall message" -msgstr "Återkalla meddelande" - -#: ../../mod/mail.php:312 -msgid "Message has been recalled." -msgstr "Meddelandet har återkallats." - -#: ../../mod/mail.php:329 -msgid "Private Conversation" -msgstr "Privat konversation" - -#: ../../mod/mail.php:333 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Ta bort konversation" - -#: ../../mod/mail.php:335 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida." - -#: ../../mod/mail.php:339 -msgid "Send Reply" -msgstr "Skicka svar" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bokmärke tillagt" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mina bokmärken" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Mina kontakters bokmärken" - -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Den här servern är inte en katalogserver" - -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix - Gäster: Användarnamn {din e-postadress}, Lösenord: +++" - -#: ../../mod/acl.php:245 -msgid "network" -msgstr "nätverk" - -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Blocknamn" - -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Redigera block" - -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Ta bort block?" - -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Ta bort block" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout uppdaterad." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Redigera systemsidbeskrivning" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout hittas inte." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulnamn:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Layouthjälp" - -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Redigera layout" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Ta bort layout?" - -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Ta bort layout" - -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "Red Matrix - "Nätverket"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Välkommen till %s" - -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Redigera webbsida" - -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Ta bort webbsida?" - -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Ta bort webbsida" - -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "webbsida" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "block" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "layout" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%selement installerat" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bilden laddades upp men beskärning misslyckades." - -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." -msgstr "Ändring av bildstorlek misslyckades." - -#: ../../mod/profile_photo.php:205 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt." - -#: ../../mod/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bilden överskrider storleksbegränsningen %d" - -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." -msgstr "Kunde inte behandla bilden." - -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." -msgstr "Fotot är inte tillgängligt." - -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" -msgstr "Ladda upp fil:" - -#: ../../mod/profile_photo.php:359 -msgid "Select a profile:" -msgstr "Välj en profil:" - -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" -msgstr "Ladda upp profilfoto" - -#: ../../mod/profile_photo.php:365 -msgid "skip this step" -msgstr "hoppa över det här steget" - -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "välj ett foto från dina fotoalbum" - -#: ../../mod/profile_photo.php:381 -msgid "Crop Image" -msgstr "Beskär bild" - -#: ../../mod/profile_photo.php:382 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Justera bildens beskärning för bästa utseende." - -#: ../../mod/profile_photo.php:384 -msgid "Done Editing" -msgstr "Klar med redigering" - -#: ../../mod/profile_photo.php:427 -msgid "Image uploaded successfully." -msgstr "Bilduppladdning lyckades." - -#: ../../mod/profile_photo.php:429 -msgid "Image upload failed." -msgstr "Bilduppladdning misslyckades." - -#: ../../mod/profile_photo.php:438 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Krympning av bilden [%s] misslyckades." - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Gilla/ogilla" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Den här åtgärden fungerar bara för medlemmar." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Logga in med ditt RedMatrix-ID eller registrera dig som ny RedMatrix medlem för att fortsätta." - -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ogiltig begäran." - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "sak" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanalen kan ej nås." - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Föregående åtgärd återställdes." - -#: ../../mod/like.php:422 -msgid "Action completed." -msgstr "Åtgärden slutfördes." - -#: ../../mod/like.php:423 -msgid "Thank you." -msgstr "Tack." - -#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 -msgid "Help:" -msgstr "Hjälp:" - -#: ../../mod/help.php:67 ../../index.php:238 -msgid "Not Found" -msgstr "Hittas inte" - -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Föremål uppdaterat" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Objektlagring: misslyckades" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Föremål tillagt" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Visa föremål" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "föremål hittades inte." - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Redigera föremål" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Välj en profil" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Posta en aktivitet" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Skickar bara till de som tittar på den aktuella profilen" - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Namn på föremål, t.ex. någonting" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL för föremål (frivilligt)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL för foto på föremål (frivilligt)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Lägg till föremål till din profil" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakten hittades inte." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Vänförfrågan skickad." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Föreslå vänner" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Föreslå en vän för %s" - -#: ../../mod/filestorage.php:76 -msgid "Permission Denied." -msgstr "Behörighet saknas." - -#: ../../mod/filestorage.php:92 -msgid "File not found." -msgstr "Filen hittas inte." - -#: ../../mod/filestorage.php:135 -msgid "Edit file permissions" -msgstr "Redigera filrättigheter" - -#: ../../mod/filestorage.php:144 -msgid "Set/edit permissions" -msgstr "Ställ in/ändra behörigheter" - -#: ../../mod/filestorage.php:145 -msgid "Include all files and sub folders" -msgstr "Inkludera alla filer och underkataloger" - -#: ../../mod/filestorage.php:146 -msgid "Return to file list" -msgstr "Återgå till fillistan" - -#: ../../mod/filestorage.php:148 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg" - -#: ../../mod/filestorage.php:149 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Fortsätt" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Inställning av premiumkanal" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Aktivera kontaktrestriktioner för premiumkanal" - -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Ange dina restriktioner och villkor, som Paypal-kvitto, användarriktlinjer, etc." - -#: ../../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 "Den här kanalen kan kräva ytterligare steg eller godkännande av följande villkor innan anslutning:" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentiella kontakter kommer sedan att se följande text innan de går vidare:" - -#: ../../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 "Genom att fortsätta intygar jag att jag har följt alla instruktioner som ges på den här sidan." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Inga specifika instruktioner har givits av kanalägaren.)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Begränsad kanal eller premiumkanal" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- välj -" - -#: ../../mod/locs.php:19 ../../mod/locs.php:46 -msgid "Location not found." -msgstr "Platsen hittades inte." - -#: ../../mod/locs.php:50 -msgid "Primary location cannot be removed." -msgstr "Huvudplatsen kan inte tas bort." - -#: ../../mod/locs.php:82 -msgid "No locations found." -msgstr "Inga platser hittades." - -#: ../../mod/locs.php:95 -msgid "Manage Channel Locations" -msgstr "Hantera kanalplatser" - -#: ../../mod/locs.php:96 -msgid "Location (address)" -msgstr "Plats (adress)" - -#: ../../mod/locs.php:97 -msgid "Primary Location" -msgstr "Huvudplats" - -#: ../../mod/locs.php:98 -msgid "Drop location" -msgstr "Ta bort plats" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal tillagd." - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjänstenivå tillåter bara %d kanaler." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Inget att importera." - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Kunde inte ladda ner data från den gamla servern" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Den importerade filen är tom." - -#: ../../mod/import.php:106 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades." - -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Kan inte skapa en unik kanaladress. Import misslyckades." - -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Kloning av kanalen misslyckades. Import misslyckades." - -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Den klonade kanalen hittas inte. Import misslyckades." - -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import slutförd." - -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Du måste vara inloggad för att kunna använda den här funktionen." - -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Importera kanal" - -#: ../../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 "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte." - -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "Fil att ladda upp" - -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Eller ge uppgifter om den gamla servern/hubben" - -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamla identitetsadress (xyz@example.com)" - -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Din gamla e-postadress för inloggning" - -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Ditt gamla inloggningslösenord" - -#: ../../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 "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media." - -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Gör den här hubben till min primära plats" - -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Importera befintliga inlägg om möjligt" - -#: ../../mod/item.php:159 -msgid "Unable to locate original post." -msgstr "Kunde inte hitta originalinlägget." - -#: ../../mod/item.php:418 -msgid "Empty post discarded." -msgstr "Tomt inlägg förkastat." - -#: ../../mod/item.php:460 -msgid "Executable content type not permitted to this channel." -msgstr "Körbart innehåll tillåts inte i den här kanalen." - -#: ../../mod/item.php:902 -msgid "System error. Post not saved." -msgstr "Systemfel. Inlägget inte sparat." - -#: ../../mod/item.php:1120 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du har nått din gräns på %1$.0f toppnivåinlägg." - -#: ../../mod/item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du har nått din gräns på %1$.0f webbsidor." - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar." - -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hjälp för den här funktionen" - -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layoutnamn" - -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s taggade%2$ss %3$s med %4$s" +msgid "Unable to verify site signature for %s" +msgstr "Kunde inte bekräfta signatur för servern %s" #: ../../mod/setup.php:166 msgid "Red Matrix Server - Setup" @@ -6480,7 +3739,7 @@ msgid "" "database client." msgstr "Du kan behöva importera filen \"install/schema_xxx.sql\" manuellt med en databasklient." -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Se filen \"install/INSTALL.txt\"." @@ -6488,6 +3747,10 @@ msgstr "Se filen \"install/INSTALL.txt\"." msgid "System check" msgstr "Systemkontroll" +#: ../../mod/setup.php:265 ../../mod/events.php:449 ../../mod/photos.php:836 +msgid "Next" +msgstr "Nästa" + #: ../../mod/setup.php:266 msgid "Check again" msgstr "Kontrollera igen" @@ -6823,20 +4086,2702 @@ msgid "" "server root." msgstr "Databaskonfigurationsfilen \".htconfig.php\" kunde inte skrivas. Använd den bifogade texten för att skapa en konfigurationsfil i din webbservers rot." -#: ../../mod/setup.php:626 +#: ../../mod/setup.php:625 msgid "Errors encountered creating database tables." msgstr "Fel inträffade när databastabeller skulle skapas." -#: ../../mod/setup.php:661 +#: ../../mod/setup.php:660 msgid "

    What next

    " msgstr "

    Nästa steg

    " -#: ../../mod/setup.php:662 +#: ../../mod/setup.php:661 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." msgstr "VIKTIGT: Du behöver ställa in en schemalagd för hämtningsrutinen [manuellt]" +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon." + +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Välj huruvida du accepterar användarvillkoren. Registrering misslyckades." + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Lösenorden stämmer inte överens." + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrering lyckades. Kontrollera din e-post för valideringsinstruktioner." + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Din registrering väntar på att bli godkänd av serverägaren." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Din registrering kan inte behandlas." + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Registrering på den här servern/hubben måste godkännas." + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Skapa konto på en annan ansluten server/hubb" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Antal dagliga registreringar som tillåts på den här servern har överskridits. Försök igen i morgon." + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "användarvillkor" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Jag accepterar den här webbplatsens %s" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Jag är över 13 år och accepterar den här webbplatsens %s" + +#: ../../mod/register.php:207 ../../mod/admin.php:417 +msgid "Registration" +msgstr "Registrering" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Medlemskap på den här servern kan endast fås genom inbjudan." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Ange din inbjudningskod" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Din e-postadress" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Välj ett lösenord" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Ange lösenordet igen" + +#: ../../mod/network.php:84 +msgid "No such group" +msgstr "Ingen sådan grupp" + +#: ../../mod/network.php:122 +msgid "Search Results For:" +msgstr "Sökresultat för:" + +#: ../../mod/network.php:176 +msgid "Collection is empty" +msgstr "Kretsen är tom" + +#: ../../mod/network.php:184 +msgid "Collection: " +msgstr "Krets: " + +#: ../../mod/network.php:197 +msgid "Connection: " +msgstr "Kontakt:" + +#: ../../mod/network.php:200 +msgid "Invalid connection." +msgstr "Ogiltig kontakt." + +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Lite text om vad man kan göra som ny här" + +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" +msgstr "Red Matrix - "Nätverket"" + +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" +msgstr "Välkommen till %s" + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar." + +#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +msgid "Export Channel" +msgstr "Exportera kanal" + +#: ../../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 "Exportera kanalens basinformation till en liten fil. Denna fungerar som en säkerhetskopia av dina anslutningar, behörigheter, profil, och grundläggande data, och kan användas för att importera dina data till en ny hubb, men tar inte med ditt innehåll." + +#: ../../mod/uexport.php:36 +msgid "Export Content" +msgstr "Exportera innehåll" + +#: ../../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 "Exportera din kanalinformation och allt innehåll till en säkerhetskopia i JSON-format. Detta kopierar alla dina anslutningar, behörigheter, profildata och allt ditt innehåll, men är generellt inte lämpligt för att importera en kanal till en ny hubb, eftersom filen kan vara VÄLDIGT stor. Ha tålamod - det kan ta flera minuter innan nedladdningen börjar." + +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fjärrinloggning blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen." + +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Välkommen %s. Fjärrinloggning lyckades." + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Tillåt anslutning av applikation" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Återgå till din applikation och ange den här säkerhetskoden:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Logga in för att fortsätta." + +#: ../../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 "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?" + +#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960 +#: ../../mod/settings.php:1045 ../../mod/admin.php:396 +msgid "Yes" +msgstr "Ja" + +#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960 +#: ../../mod/settings.php:1045 ../../mod/admin.php:394 +msgid "No" +msgstr "Nej" + +#: ../../mod/events.php:85 +msgid "Event can not end before it has started." +msgstr "Händelser kan inte sluta innan de börjat." + +#: ../../mod/events.php:90 +msgid "Event title and start time are required." +msgstr "Händelsen behöver titel och starttid." + +#: ../../mod/events.php:104 +msgid "Event not found." +msgstr "Händelsen hittades inte." + +#: ../../mod/events.php:373 +msgid "l, F j" +msgstr "l, j F" + +#: ../../mod/events.php:395 +msgid "Edit event" +msgstr "Redigera händelse" + +#: ../../mod/events.php:447 +msgid "Create New Event" +msgstr "Skapa ny händelse" + +#: ../../mod/events.php:448 ../../mod/photos.php:827 +msgid "Previous" +msgstr "Föregående" + +#: ../../mod/events.php:450 +msgid "Export" +msgstr "Exportera" + +#: ../../mod/events.php:575 +msgid "Event details" +msgstr "Detaljer för händelse" + +#: ../../mod/events.php:576 +msgid "Starting date and Title are required." +msgstr "Startdatum och titel är obligatoriska." + +#: ../../mod/events.php:578 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparerad lista)" + +#: ../../mod/events.php:580 +msgid "Event Starts:" +msgstr "Händelsen börjar:" + +#: ../../mod/events.php:587 +msgid "Finish date/time is not known or not relevant" +msgstr "Slutdatum/tid är okänt eller inte relevant" + +#: ../../mod/events.php:589 +msgid "Event Finishes:" +msgstr "Händelsen slutar:" + +#: ../../mod/events.php:591 ../../mod/events.php:592 +msgid "Adjust for viewer timezone" +msgstr "Justera för betraktarens tidszon" + +#: ../../mod/events.php:593 +msgid "Description:" +msgstr "Beskrivning:" + +#: ../../mod/events.php:597 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:599 +msgid "Share this event" +msgstr "Dela den här händelsen" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Post inte tillgänglig." + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Hämtning av URL returnerade fel: %1$s" + +#: ../../mod/blocks.php:99 +msgid "Block Name" +msgstr "Blocknamn" + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "Ogiltig post." + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "Kanalen hittas inte." + +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:79 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "Sidan hittas inte." + +#: ../../mod/mitem.php:24 ../../mod/menu.php:108 +msgid "Menu not found." +msgstr "Menyn hittades inte." + +#: ../../mod/mitem.php:67 +msgid "Menu element updated." +msgstr "Menyval uppdaterat." + +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." +msgstr "Kunde inte uppdatera menyval." + +#: ../../mod/mitem.php:77 +msgid "Menu element added." +msgstr "Menyval tillagt." + +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." +msgstr "Kunde inte lägga till menyval." + +#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "Hittades inte." + +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" +msgstr "Hantera menyval" + +#: ../../mod/mitem.php:130 +msgid "Edit menu" +msgstr "Redigera meny" + +#: ../../mod/mitem.php:133 +msgid "Edit element" +msgstr "Redigera menyval" + +#: ../../mod/mitem.php:134 +msgid "Drop element" +msgstr "Ta bort menyval" + +#: ../../mod/mitem.php:135 +msgid "New element" +msgstr "Nytt menyval" + +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" +msgstr "Redigera den här menysamlaren" + +#: ../../mod/mitem.php:137 +msgid "Add menu element" +msgstr "Lägg till menyval" + +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" +msgstr "Ta bort det här menyvalet" + +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" +msgstr "Redigera det här menyvalet" + +#: ../../mod/mitem.php:158 +msgid "New Menu Element" +msgstr "Nytt menyval" + +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" +msgstr "Behörighet för menyval" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1052 +msgid "(click to open/close)" +msgstr "(klicka för att öppna/stänga)" + +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" +msgstr "Länktext" + +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" +msgstr "Länkens URL" + +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "Använd RedMatrix magic-auth om tillgängligt" + +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" +msgstr "Öppna länk i nytt fönster" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" +msgstr "Ordningstal i listan" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Större tal sjunker till botten av listan" + +#: ../../mod/mitem.php:181 +msgid "Menu item not found." +msgstr "Menyval hittas inte." + +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." +msgstr "Menyval borttaget." + +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." +msgstr "Menyval kunde inte tas bort." + +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" +msgstr "Redigera menyval" + +#: ../../mod/mitem.php:213 ../../mod/menu.php:130 +msgid "Modify" +msgstr "Ändra" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s följer %2$ss %3$s" + +#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "Redigera inlägg" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Inga potentiella sid-ombud funna." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Delegera sidhantering" + +#: ../../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 "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Befintliga sid-ansvariga" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Befintliga sid-ombud" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Potentiella ombud" + +#: ../../mod/delegate.php:130 ../../mod/photos.php:873 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Ta bort" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Lägg till" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Inga poster." + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Välj en bokmärkeskatalog" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Spara bokmärke" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "Bokmärkets URL" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Beskrivning" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Eller ange nytt namn på bokmärkeskatalog" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Offentliga servrar" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in" +" the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "De listade servrarna tillåter offentlig registrering i Red Matrix. Alla servrar i matrisen är sammankopplade, så medlemskap i en av dem medför medlemskap i matrisen som helhet. Vissa servrar kan kräva abonnemang eller erbjuda uppdelade tjänstenivåer. Leverantörslänkarna kan ge ytterligare detaljer." + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "Server-URL" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Åtkomsttyp" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Registreringspolicy" + +#: ../../mod/pubsites.php:25 ../../mod/profiles.php:454 +msgid "Location" +msgstr "Plats" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "Du måste vara inloggad för att se den här sidan." + +#: ../../mod/channel.php:87 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Otillräckliga behörigheter. Förfrågan omdirigerad till profilsidan." + +#: ../../mod/cloud.php:120 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix - Gäster: Användarnamn {din e-postadress}, Lösenord: +++" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Logga in." + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Rum hittas inte" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Lämna rummet" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Ta bort det här rummet" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Jag är borta för tillfället" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Jag är online" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Bokmärk det här rummet" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nytt chattrum" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Namn på chattrum" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss chattrum" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Borta" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../mod/rmagic.php:38 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Vi drabbades av ett problem vid inloggningen med OpenID:t du uppgav. Kontrollera att ID:t är korrekt stavat." + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Felmeddelandet var:" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Inloggning misslyckades." + +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Fjärrinloggning" + +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Ange din kanaladress (t.ex. kanal@example.com)" + +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Autentisera" + +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Borttagning av kanal tillåts inte inom 48 timmar efter att kontolösenordet har ändrats." + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Ta bort den här kanalen" + +#: ../../mod/removeme.php:58 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Det här kommer att ta bort den här kanalen helt från nätverket. När det är gjort går det inte att återställa den." + +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Ange ditt lösenord för att bekräfta:" + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Ta bort den här kanalen och alla dess kloner från nätverket" + +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Som standard kommer bara den här hubbens instans av kanalen att tas bort från nätverket" + +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Ta bort kanal" + +#: ../../mod/search.php:13 ../../mod/photos.php:429 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 +#: ../../mod/ratings.php:81 +msgid "Public access denied." +msgstr "Offentlig behörighet saknas." + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Ingen kanal." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Gemensamma kontakter" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Inga gemensamma kontakter." + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Inget giltigt konto hittades." + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Lösenordsåterställning har skickats. Kontrollera din e-post." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Servermedlem (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Lösenordsåterställning begärd på %s" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades." + +#: ../../mod/lostpass.php:85 ../../boot.php:1558 +msgid "Password Reset" +msgstr "Lösenordsåterställning" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Ditt lösenord har återställts som begärt." + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Ditt nya lösenord är" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Spara eller kopiera ditt nya lösenord - " + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "klicka sedan här för att logga in" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Ditt lösenord kan bytas från sidan Inställningar när du är inloggad." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Ditt lösenord byttes på %s" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Glömt lösenordet?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Ange din e-postadress och skicka för att återställa ditt lösenord. Kontrollera sedan din e-post för vidare instruktioner." + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-postadress" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Återställ" + +#: ../../mod/item.php:163 +msgid "Unable to locate original post." +msgstr "Kunde inte hitta originalinlägget." + +#: ../../mod/item.php:422 +msgid "Empty post discarded." +msgstr "Tomt inlägg förkastat." + +#: ../../mod/item.php:464 +msgid "Executable content type not permitted to this channel." +msgstr "Körbart innehåll tillåts inte i den här kanalen." + +#: ../../mod/item.php:858 +msgid "System error. Post not saved." +msgstr "Systemfel. Inlägget inte sparat." + +#: ../../mod/item.php:1076 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du har nått din gräns på %1$.0f toppnivåinlägg." + +#: ../../mod/item.php:1082 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du har nått din gräns på %1$.0f webbsidor." + +#: ../../mod/connections.php:37 ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Kunde inte komma åt kontaktuppgifter." + +#: ../../mod/connections.php:51 ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Kunde inte hitta vald profil." + +#: ../../mod/connections.php:94 ../../mod/connedit.php:204 +msgid "Connection updated." +msgstr "Kontakt uppdaterad." + +#: ../../mod/connections.php:96 ../../mod/connedit.php:206 +msgid "Failed to update connection record." +msgstr "Misslyckades att uppdatera kontaktuppgifter." + +#: ../../mod/connections.php:192 ../../mod/connections.php:293 +msgid "Blocked" +msgstr "Blockerade" + +#: ../../mod/connections.php:197 ../../mod/connections.php:300 +msgid "Ignored" +msgstr "Ignorerade" + +#: ../../mod/connections.php:202 ../../mod/connections.php:314 +msgid "Hidden" +msgstr "Dolda" + +#: ../../mod/connections.php:207 ../../mod/connections.php:307 +msgid "Archived" +msgstr "Arkiverade" + +#: ../../mod/connections.php:231 ../../mod/connections.php:246 +msgid "All" +msgstr "Alla" + +#: ../../mod/connections.php:271 +msgid "Suggest new connections" +msgstr "Föreslå nya kontakter" + +#: ../../mod/connections.php:274 +msgid "New Connections" +msgstr "Nya kontakter" + +#: ../../mod/connections.php:277 +msgid "Show pending (new) connections" +msgstr "Visa väntande (nya) kontakter" + +#: ../../mod/connections.php:280 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alla kontakter" + +#: ../../mod/connections.php:283 +msgid "Show all connections" +msgstr "Visa alla kontakter" + +#: ../../mod/connections.php:286 +msgid "Unblocked" +msgstr "Ej blockerade" + +#: ../../mod/connections.php:289 +msgid "Only show unblocked connections" +msgstr "Visa endast ej blockerade kontakter" + +#: ../../mod/connections.php:296 +msgid "Only show blocked connections" +msgstr "Visa endast blockerade kontakter" + +#: ../../mod/connections.php:303 +msgid "Only show ignored connections" +msgstr "Visa endast ignorerade kontakter" + +#: ../../mod/connections.php:310 +msgid "Only show archived connections" +msgstr "Visa endast arkiverade kontakter" + +#: ../../mod/connections.php:317 +msgid "Only show hidden connections" +msgstr "Visa endast dolda kontakter" + +#: ../../mod/connections.php:372 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:373 +msgid "Edit connection" +msgstr "Redigera kontakt" + +#: ../../mod/connections.php:411 +msgid "Search your connections" +msgstr "Sök bland dina kontakter" + +#: ../../mod/connections.php:412 +msgid "Finding: " +msgstr "Sökning efter: " + +#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 +#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Posten hittas inte" + +#: ../../mod/editblock.php:115 +msgid "Edit Block" +msgstr "Redigera block" + +#: ../../mod/editblock.php:125 +msgid "Delete block?" +msgstr "Ta bort block?" + +#: ../../mod/editblock.php:147 ../../mod/editpost.php:116 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" +msgstr "Infoga Youtube-video" + +#: ../../mod/editblock.php:148 ../../mod/editpost.php:117 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" +msgstr "Infoga Vorbis [.ogg]-video" + +#: ../../mod/editblock.php:149 ../../mod/editpost.php:118 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Infoga Vorbis [.ogg]-ljud" + +#: ../../mod/editblock.php:183 +msgid "Delete Block" +msgstr "Ta bort block" + +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "Namn är obligatoriskt" + +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "Nyckel och kod är obligatoriska" + +#: ../../mod/settings.php:222 +msgid "Passwords do not match. Password unchanged." +msgstr "Lösenorden stämmer inte överens. Lösenordet har inte ändrats." + +#: ../../mod/settings.php:226 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Tomma lösenord tillåts inte. Lösenordet har inte ändrats." + +#: ../../mod/settings.php:240 +msgid "Password changed." +msgstr "Lösenordet ändrat." + +#: ../../mod/settings.php:242 +msgid "Password update failed. Please try again." +msgstr "Lösenordsuppdatering misslyckades. Försök igen." + +#: ../../mod/settings.php:256 +msgid "Not valid email." +msgstr "Inte en giltig e-postadress." + +#: ../../mod/settings.php:259 +msgid "Protected email address. Cannot change to that email." +msgstr "Skyddad e-postadress. Kan inte ändra till den." + +#: ../../mod/settings.php:268 +msgid "System failure storing new email. Please try again." +msgstr "Systemfel när ny e-postadress skulle sparas. Försök igen." + +#: ../../mod/settings.php:507 +msgid "Settings updated." +msgstr "Inställningar uppdaterade." + +#: ../../mod/settings.php:576 ../../mod/settings.php:602 +#: ../../mod/settings.php:638 +msgid "Add application" +msgstr "Lägg till applikation" + +#: ../../mod/settings.php:579 +msgid "Name of application" +msgstr "Applikationens namn" + +#: ../../mod/settings.php:580 ../../mod/settings.php:606 +msgid "Consumer Key" +msgstr "Nyckel för konsument" + +#: ../../mod/settings.php:580 ../../mod/settings.php:581 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatiskt genererad - ändra om så önskas. Maxlängd 20" + +#: ../../mod/settings.php:581 ../../mod/settings.php:607 +msgid "Consumer Secret" +msgstr "Kod för konsument" + +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +msgid "Redirect" +msgstr "Omdirigering" + +#: ../../mod/settings.php:582 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Omdirigerings-URI - lämna blankt om inte din applikation specifikt behöver det" + +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +msgid "Icon url" +msgstr "Ikon-URL" + +#: ../../mod/settings.php:583 +msgid "Optional" +msgstr "Frivillig" + +#: ../../mod/settings.php:594 +msgid "You can't edit this application." +msgstr "Du kan inte redigera den här applikationen." + +#: ../../mod/settings.php:637 +msgid "Connected Apps" +msgstr "Anslutna appar" + +#: ../../mod/settings.php:641 +msgid "Client key starts with" +msgstr "Klientnyckel börjar med" + +#: ../../mod/settings.php:642 +msgid "No name" +msgstr "Inget namn" + +#: ../../mod/settings.php:643 +msgid "Remove authorization" +msgstr "Ta bort behörighet" + +#: ../../mod/settings.php:654 +msgid "No feature settings configured" +msgstr "Inga tilläggsinställningar konfigurerade" + +#: ../../mod/settings.php:662 +msgid "Feature Settings" +msgstr "Tilläggsinställningar" + +#: ../../mod/settings.php:685 +msgid "Account Settings" +msgstr "Kontoinställningar" + +#: ../../mod/settings.php:686 +msgid "Password Settings" +msgstr "Lösenordsinställningar" + +#: ../../mod/settings.php:687 +msgid "New Password:" +msgstr "Nytt lösenord:" + +#: ../../mod/settings.php:688 +msgid "Confirm:" +msgstr "Bekräfta:" + +#: ../../mod/settings.php:688 +msgid "Leave password fields blank unless changing" +msgstr "Lämna lösenordsfälten blanka om lösenordet inte ska ändras" + +#: ../../mod/settings.php:690 ../../mod/settings.php:1026 +msgid "Email Address:" +msgstr "E-postadress" + +#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "Ta bort konto" + +#: ../../mod/settings.php:692 +msgid "Remove this account from this server including all its channels" +msgstr "Ta bort det här kontot från servern, inklusive alla dess kanaler" + +#: ../../mod/settings.php:693 ../../mod/settings.php:1107 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "Varning: Den här handlingen är permanent och kan inte återställas." + +#: ../../mod/settings.php:709 +msgid "Off" +msgstr "Av" + +#: ../../mod/settings.php:709 +msgid "On" +msgstr "På" + +#: ../../mod/settings.php:716 +msgid "Additional Features" +msgstr "Tilläggsfunktioner" + +#: ../../mod/settings.php:740 +msgid "Connector Settings" +msgstr "Anslutningsinställningar" + +#: ../../mod/settings.php:779 +msgid "No special theme for mobile devices" +msgstr "Inget särskilt tema för mobila enheter" + +#: ../../mod/settings.php:782 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (experimentellt)" + +#: ../../mod/settings.php:785 ../../mod/admin.php:367 +msgid "mobile" +msgstr "mobilt" + +#: ../../mod/settings.php:821 +msgid "Display Settings" +msgstr "Utseende" + +#: ../../mod/settings.php:827 +msgid "Display Theme:" +msgstr "Tema för utseende:" + +#: ../../mod/settings.php:828 +msgid "Mobile Theme:" +msgstr "Mobilt tema:" + +#: ../../mod/settings.php:829 +msgid "Enable user zoom on mobile devices" +msgstr "Tillåt användare att zooma på mobila enheter" + +#: ../../mod/settings.php:830 +msgid "Update browser every xx seconds" +msgstr "Uppdatera webbläsaren var xx sekund" + +#: ../../mod/settings.php:830 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minst 10 sekunder, inget maximum" + +#: ../../mod/settings.php:831 +msgid "Maximum number of conversations to load at any time:" +msgstr "Högsta antal konversationer att ladda åt gången:" + +#: ../../mod/settings.php:831 +msgid "Maximum of 100 items" +msgstr "Maximalt 100 poster" + +#: ../../mod/settings.php:832 +msgid "Don't show emoticons" +msgstr "Visa inte känsloikoner" + +#: ../../mod/settings.php:833 +msgid "Link post titles to source" +msgstr "Länka inläggstitlar till källan" + +#: ../../mod/settings.php:834 +msgid "System Page Layout Editor - (advanced)" +msgstr "Redigera systemets sidlayout (avancerat)" + +#: ../../mod/settings.php:837 +msgid "Use blog/list mode on channel page" +msgstr "Använd blogg-/listläge på kanalsida" + +#: ../../mod/settings.php:837 ../../mod/settings.php:838 +msgid "(comments displayed separately)" +msgstr "(kommentarer visas separat)" + +#: ../../mod/settings.php:838 +msgid "Use blog/list mode on matrix page" +msgstr "Använd blogg-/listläge på matrissida" + +#: ../../mod/settings.php:839 +msgid "Channel page max height of content (in pixels)" +msgstr "Maxhöjd för innehåll på kanalsidor (i pixels)" + +#: ../../mod/settings.php:839 ../../mod/settings.php:840 +msgid "click to expand content exceeding this height" +msgstr "klicka för att fälla ut innehåll som överskrider den här höjden" + +#: ../../mod/settings.php:840 +msgid "Matrix page max height of content (in pixels)" +msgstr "Maxhöjd för innehåll på matrissidan (i pixels)" + +#: ../../mod/settings.php:874 +msgid "Nobody except yourself" +msgstr "Ingen utom dig själv" + +#: ../../mod/settings.php:875 +msgid "Only those you specifically allow" +msgstr "Endast utvalda" + +#: ../../mod/settings.php:876 +msgid "Approved connections" +msgstr "Godkända kontakter" + +#: ../../mod/settings.php:877 +msgid "Any connections" +msgstr "Alla kontakter" + +#: ../../mod/settings.php:878 +msgid "Anybody on this website" +msgstr "Vem som helst på den här servern" + +#: ../../mod/settings.php:879 +msgid "Anybody in this network" +msgstr "Vem som helst i det här nätverket" + +#: ../../mod/settings.php:880 +msgid "Anybody authenticated" +msgstr "Vem som helst som har autentiserat sig" + +#: ../../mod/settings.php:881 +msgid "Anybody on the internet" +msgstr "Vem som helst på Internet" + +#: ../../mod/settings.php:955 +msgid "Publish your default profile in the network directory" +msgstr "Publicera din standardprofil i nätverkskatalogen" + +#: ../../mod/settings.php:960 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Tillåt oss att föreslå dig som möjlig vän för nya medlemmar" + +#: ../../mod/settings.php:964 ../../mod/profile_photo.php:366 +msgid "or" +msgstr "eller" + +#: ../../mod/settings.php:969 +msgid "Your channel address is" +msgstr "Din kanaladress är" + +#: ../../mod/settings.php:1017 +msgid "Channel Settings" +msgstr "Kanalinställningar" + +#: ../../mod/settings.php:1024 +msgid "Basic Settings" +msgstr "Grundläggande inställningar" + +#: ../../mod/settings.php:1027 +msgid "Your Timezone:" +msgstr "Din tidszon:" + +#: ../../mod/settings.php:1028 +msgid "Default Post Location:" +msgstr "Standardplats:" + +#: ../../mod/settings.php:1028 +msgid "Geographical location to display on your posts" +msgstr "Geografisk plats att visa för dina inlägg" + +#: ../../mod/settings.php:1029 +msgid "Use Browser Location:" +msgstr "Använd webbläsarens position:" + +#: ../../mod/settings.php:1031 +msgid "Adult Content" +msgstr "Innehåll olämpligt för barn" + +#: ../../mod/settings.php:1031 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Den här kanalen publicerar ofta eller regelbundet innehåll som är olämpligt för barn. (Tagga allt pornografiskt material och/eller nakenhet med #NSFW, tack)" + +#: ../../mod/settings.php:1033 +msgid "Security and Privacy Settings" +msgstr "Säkerhets- och integritetsinställningar" + +#: ../../mod/settings.php:1035 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Dina behörigheter har redan ställts in. Klicka för att visa/ändra" + +#: ../../mod/settings.php:1037 +msgid "Hide my online presence" +msgstr "Visa inte min online-närvaro" + +#: ../../mod/settings.php:1037 +msgid "Prevents displaying in your profile that you are online" +msgstr "Förhindrar att det syns i din profil att du är online" + +#: ../../mod/settings.php:1039 +msgid "Simple Privacy Settings:" +msgstr "Enkla integritetsinställningar:" + +#: ../../mod/settings.php:1040 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Väldigt offentligt - extremt tillåtande (bör användas försiktigt)" + +#: ../../mod/settings.php:1041 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Typiskt - offentligt som standard, privat när så önskas (liknande behörigheter som på sociala nätverk men med förbättrad integritet)" + +#: ../../mod/settings.php:1042 +msgid "Private - default private, never open or public" +msgstr "Privat - privat som standard, aldrig öppet eller offentligt" + +#: ../../mod/settings.php:1043 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockera - som standard blockerat till/från alla" + +#: ../../mod/settings.php:1045 +msgid "Allow others to tag your posts" +msgstr "Låt andra tagga dina inlägg" + +#: ../../mod/settings.php:1045 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Ofta använt av gemenskapen för att i efterhand flagga olämpligt innehåll" + +#: ../../mod/settings.php:1047 +msgid "Advanced Privacy Settings" +msgstr "Avancerade integritetsinställningar" + +#: ../../mod/settings.php:1049 +msgid "Expire other channel content after this many days" +msgstr "Låt annat kanalinnehåll upphöra efter efter så här många dagar" + +#: ../../mod/settings.php:1049 +msgid "0 or blank prevents expiration" +msgstr "0 eller blankt förhindrar upphörande" + +#: ../../mod/settings.php:1050 +msgid "Maximum Friend Requests/Day:" +msgstr "Högsta antal vänförfrågningar per dag:" + +#: ../../mod/settings.php:1050 +msgid "May reduce spam activity" +msgstr "Kan reducera spamaktivitet" + +#: ../../mod/settings.php:1051 +msgid "Default Post Permissions" +msgstr "Standardbehörighet för inlägg" + +#: ../../mod/settings.php:1056 +msgid "Channel permissions category:" +msgstr "Kanalens behörighetskategori:" + +#: ../../mod/settings.php:1062 +msgid "Maximum private messages per day from unknown people:" +msgstr "Högsta antal privata meddelanden per dag från okända personer:" + +#: ../../mod/settings.php:1062 +msgid "Useful to reduce spamming" +msgstr "Användbart för att minska skräputskick" + +#: ../../mod/settings.php:1065 +msgid "Notification Settings" +msgstr "Notifieringsinställningar" + +#: ../../mod/settings.php:1066 +msgid "By default post a status message when:" +msgstr "Skicka som standard ett statusmeddelande när:" + +#: ../../mod/settings.php:1067 +msgid "accepting a friend request" +msgstr "du accepterar en vänförfrågan" + +#: ../../mod/settings.php:1068 +msgid "joining a forum/community" +msgstr "du går med i ett forum/en gemenskap" + +#: ../../mod/settings.php:1069 +msgid "making an interesting profile change" +msgstr "du gör en intressant ändring av profilen" + +#: ../../mod/settings.php:1070 +msgid "Send a notification email when:" +msgstr "Skicka en notifiering via e-post när:" + +#: ../../mod/settings.php:1071 +msgid "You receive a connection request" +msgstr "Du får en kontaktförfrågan" + +#: ../../mod/settings.php:1072 +msgid "Your connections are confirmed" +msgstr "Dina kontakter bekräftas" + +#: ../../mod/settings.php:1073 +msgid "Someone writes on your profile wall" +msgstr "Någon skriver på din profilvägg" + +#: ../../mod/settings.php:1074 +msgid "Someone writes a followup comment" +msgstr "Någon skriver en uppföljande kommentar" + +#: ../../mod/settings.php:1075 +msgid "You receive a private message" +msgstr "Du tar emot ett privat meddelande" + +#: ../../mod/settings.php:1076 +msgid "You receive a friend suggestion" +msgstr "Du tar emot ett vänförslag" + +#: ../../mod/settings.php:1077 +msgid "You are tagged in a post" +msgstr "Du taggas i ett inlägg" + +#: ../../mod/settings.php:1078 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du puffas/stöts till/etc. i ett inlägg" + +#: ../../mod/settings.php:1081 +msgid "Show visual notifications including:" +msgstr "Visa visuella notifieringar vid:" + +#: ../../mod/settings.php:1083 +msgid "Unseen matrix activity" +msgstr "Oläst matrisaktivitet" + +#: ../../mod/settings.php:1084 +msgid "Unseen channel activity" +msgstr "Oläst kanalaktivitet" + +#: ../../mod/settings.php:1085 +msgid "Unseen private messages" +msgstr "Olästa privata meddelanden" + +#: ../../mod/settings.php:1085 ../../mod/settings.php:1090 +#: ../../mod/settings.php:1091 ../../mod/settings.php:1092 +msgid "Recommended" +msgstr "Rekommenderas" + +#: ../../mod/settings.php:1086 +msgid "Upcoming events" +msgstr "Kommande händelser" + +#: ../../mod/settings.php:1087 +msgid "Events today" +msgstr "Dagens händelser" + +#: ../../mod/settings.php:1088 +msgid "Upcoming birthdays" +msgstr "Kommande födelsedagar" + +#: ../../mod/settings.php:1088 +msgid "Not available in all themes" +msgstr "Inte tillgänglig i alla teman" + +#: ../../mod/settings.php:1089 +msgid "System (personal) notifications" +msgstr "Systemmeddelanden (personliga)" + +#: ../../mod/settings.php:1090 +msgid "System info messages" +msgstr "Systemmeddelanden" + +#: ../../mod/settings.php:1091 +msgid "System critical alerts" +msgstr "Systemkritiska varningar" + +#: ../../mod/settings.php:1092 +msgid "New connections" +msgstr "Nya kontakter" + +#: ../../mod/settings.php:1093 +msgid "System Registrations" +msgstr "Systemregistreringar" + +#: ../../mod/settings.php:1094 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Visa även nya väggmeddelanden, privata meddelanden, och anslutningar under Meddelanden" + +#: ../../mod/settings.php:1096 +msgid "Notify me of events this many days in advance" +msgstr "Meddela mig om händelser så här många dagar i förväg" + +#: ../../mod/settings.php:1096 +msgid "Must be greater than 0" +msgstr "Måste vara större än 0" + +#: ../../mod/settings.php:1098 +msgid "Advanced Account/Page Type Settings" +msgstr "Avancerade konto-/sidtypsinställningar" + +#: ../../mod/settings.php:1099 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändra det här kontots beteende i särskilda situationer" + +#: ../../mod/settings.php:1102 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Aktivera expertläge (i Inställningar > Ytterligare funktioner) för att göra ändringar!" + +#: ../../mod/settings.php:1103 +msgid "Miscellaneous Settings" +msgstr "Diverse inställningar" + +#: ../../mod/settings.php:1105 +msgid "Personal menu to display in your channel pages" +msgstr "Personlig meny att visa i dina kanalsidor" + +#: ../../mod/settings.php:1106 +msgid "Remove this channel" +msgstr "Ta bort den här kanalen" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- välj -" + +#: ../../mod/siteinfo.php:93 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../mod/siteinfo.php:114 +msgid "Installed plugins/addons/apps:" +msgstr "Installerade tillägg/moduler/appar:" + +#: ../../mod/siteinfo.php:127 +msgid "No installed plugins/addons/apps" +msgstr "Inga installerade tillägg/moduler/appar" + +#: ../../mod/siteinfo.php:136 +msgid "Red" +msgstr "Red" + +#: ../../mod/siteinfo.php:137 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Det här är en hubb som ingår i Red Matrix - ett globalt samverkande nätverk av decentraliserade webbplatser med bättre integritetskydd." + +#: ../../mod/siteinfo.php:139 +msgid "Tag: " +msgstr "Tagg: " + +#: ../../mod/siteinfo.php:141 +msgid "Last background fetch: " +msgstr "Senaste bakgrundshämtning: " + +#: ../../mod/siteinfo.php:144 +msgid "Running at web location" +msgstr "Kör på webbutrymmet" + +#: ../../mod/siteinfo.php:145 +msgid "" +"Please visit RedMatrix.me to learn more" +" about the Red Matrix." +msgstr "Besök RedMatrix.me för att lära dig mer om Red Matrix." + +#: ../../mod/siteinfo.php:146 +msgid "Bug reports and issues: please visit" +msgstr "Buggrapporter och problem: besök" + +#: ../../mod/siteinfo.php:149 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Förslag, uppskattning, etc. - maila \"redmatrix\" at librelist - dot com" + +#: ../../mod/siteinfo.php:151 +msgid "Site Administrators" +msgstr "Serveradministratörer" + +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Information om sidans ägare kunde inte hittas." + +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Albumet hittades inte." + +#: ../../mod/photos.php:119 ../../mod/photos.php:643 +msgid "Delete Album" +msgstr "Ta bort album" + +#: ../../mod/photos.php:159 ../../mod/photos.php:926 +msgid "Delete Photo" +msgstr "Ta bort foto" + +#: ../../mod/photos.php:440 +msgid "No photos selected" +msgstr "Inga foton valda" + +#: ../../mod/photos.php:484 +msgid "Access to this item is restricted." +msgstr "Åtkomst till den här posten är begränsat." + +#: ../../mod/photos.php:523 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB av %2$.2f MB fotolagring använt." + +#: ../../mod/photos.php:526 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB fotolagring använt." + +#: ../../mod/photos.php:550 +msgid "Upload Photos" +msgstr "Ladda upp foton" + +#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:911 +msgid "Enter a new album name" +msgstr "Ange ett nytt albumnamn" + +#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:912 +msgid "or select an existing one (doubleclick)" +msgstr "eller välj ett befintligt (dubbelklicka)" + +#: ../../mod/photos.php:556 +msgid "Do not show a status post for this upload" +msgstr "Visa inte en statusuppdatering för den här uppladdningen" + +#: ../../mod/photos.php:584 +msgid "Album name could not be decoded" +msgstr "Albumnamn kunde inte tolkas" + +#: ../../mod/photos.php:625 ../../mod/photos.php:1135 +#: ../../mod/photos.php:1151 +msgid "Contact Photos" +msgstr "Kontaktfoton" + +#: ../../mod/photos.php:649 +msgid "Show Newest First" +msgstr "Visa nyast först" + +#: ../../mod/photos.php:651 +msgid "Show Oldest First" +msgstr "Visa äldst först" + +#: ../../mod/photos.php:675 ../../mod/photos.php:1183 +msgid "View Photo" +msgstr "Visa foto" + +#: ../../mod/photos.php:704 +msgid "Edit Album" +msgstr "Redigera album" + +#: ../../mod/photos.php:749 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Behörighet saknas. Åtkomst till den här posten kan vara begränsat." + +#: ../../mod/photos.php:751 +msgid "Photo not available" +msgstr "Foto inte tillgängligt" + +#: ../../mod/photos.php:809 +msgid "Use as profile photo" +msgstr "Använd som profilfoto" + +#: ../../mod/photos.php:816 +msgid "Private Photo" +msgstr "Privat foto" + +#: ../../mod/photos.php:831 +msgid "View Full Size" +msgstr "Visa fullstorlek" + +#: ../../mod/photos.php:905 +msgid "Edit photo" +msgstr "Redigera foto" + +#: ../../mod/photos.php:907 +msgid "Rotate CW (right)" +msgstr "Rotera medurs (höger)" + +#: ../../mod/photos.php:908 +msgid "Rotate CCW (left)" +msgstr "Rotera moturs (vänster)" + +#: ../../mod/photos.php:915 +msgid "Caption" +msgstr "Bildtext" + +#: ../../mod/photos.php:917 +msgid "Add a Tag" +msgstr "Lägg till en tagg" + +#: ../../mod/photos.php:921 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exempel: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../mod/photos.php:924 +msgid "Flag as adult in album view" +msgstr "Flagga som olämpligt för barn i albumvyn" + +#: ../../mod/photos.php:1101 +msgid "In This Photo:" +msgstr "På fotot:" + +#: ../../mod/photos.php:1189 +msgid "View Album" +msgstr "Visa album" + +#: ../../mod/photos.php:1212 +msgid "Recent Photos" +msgstr "Nya foton" + +#: ../../mod/acl.php:228 +msgid "network" +msgstr "nätverk" + +#: ../../mod/acl.php:238 +msgid "RSS" +msgstr "RSS" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Puffa/stöt till" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "puffa, stöt till eller gör andra saker mot någon" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Mottagare" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Välj vad du önskar göra med mottagaren" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Gör det här inlägget privat" + +#: ../../mod/manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du har skapat %1$.0f av %2$.0f tillåtna kanaler." + +#: ../../mod/manage.php:146 +msgid "Create a new channel" +msgstr "Skapa en ny kanal" + +#: ../../mod/manage.php:151 +msgid "Current Channel" +msgstr "Nuvarande kanal" + +#: ../../mod/manage.php:153 +msgid "Switch to one of your channels by selecting it." +msgstr "Växla till en av dina kanaler genom att välja den." + +#: ../../mod/manage.php:154 +msgid "Default Channel" +msgstr "Standardkanal" + +#: ../../mod/manage.php:155 +msgid "Make Default" +msgstr "Gör till standard" + +#: ../../mod/manage.php:158 +#, php-format +msgid "%d new messages" +msgstr "%d nya meddelanden" + +#: ../../mod/manage.php:159 +#, php-format +msgid "%d new introductions" +msgstr "%d nya presentationer" + +#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22 +msgid "This site is not a directory server" +msgstr "Den här servern är inte en katalogserver" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bokmärke tillagt" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Mina bokmärken" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Mina kontakters bokmärken" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Posten går ej att redigera" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Ta bort posten?" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Krets skapad." + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Kunde inte skapa krets." + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Kretsen uppdaterad." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Skapa en krets av kanaler." + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Namn på krets: " + +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "Medlemmar kan ses av andra kanaler" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Krets borttagen." + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Kunde inte ta bort krets." + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Redigera krets" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Medlemmar" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alla anslutna kanaler" + +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Klicka på en kanal för att lägga till eller ta bort." + +#: ../../mod/ping.php:266 +msgid "sent you a private message" +msgstr "skickade ett privat meddelande till dig" + +#: ../../mod/ping.php:319 +msgid "added your channel" +msgstr "lade till din kanal" + +#: ../../mod/ping.php:360 +msgid "posted an event" +msgstr "skapade en händelse" + +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" +msgstr "Redigera layout" + +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" +msgstr "Ta bort layout?" + +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" +msgstr "Ta bort layout" + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Misslyckades att skapa källa. Ingen kanal vald." + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Källa skapad." + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Källa uppdaterad." + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Hantera fjärrkällor med innehåll för din kanal." + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Ny källa" + +#: ../../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 "Importera allt eller valt innehåll från följande kanal till den här kanalen och distribuera det enligt dina kanalinställningar." + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importera endast innehåll med de här orden (ett per rad)" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Lämna blankt för att importera allt offentligt innehåll" + +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "Kanalnamn" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Källa hittades inte." + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Redigera källa" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Ta bort källa" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Källa borttagen" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Kunde inte ta bort källa." + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal tillagd." + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout uppdaterad." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Redigera systemsidbeskrivning" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout hittas inte." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulnamn:" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" +msgstr "Layouthjälp" + +#: ../../mod/editwebpage.php:140 +msgid "Edit Webpage" +msgstr "Redigera webbsida" + +#: ../../mod/editwebpage.php:150 +msgid "Delete webpage?" +msgstr "Ta bort webbsida?" + +#: ../../mod/editwebpage.php:215 +msgid "Delete Webpage" +msgstr "Ta bort webbsida" + +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "webbsida" + +#: ../../mod/impel.php:38 +msgid "block" +msgstr "block" + +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "layout" + +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "%selement installerat" + +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "Bilden laddades upp men beskärning misslyckades." + +#: ../../mod/profile_photo.php:162 +msgid "Image resize failed." +msgstr "Ändring av bildstorlek misslyckades." + +#: ../../mod/profile_photo.php:206 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt." + +#: ../../mod/profile_photo.php:233 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Bilden överskrider storleksbegränsningen %d" + +#: ../../mod/profile_photo.php:242 +msgid "Unable to process image." +msgstr "Kunde inte behandla bilden." + +#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 +msgid "Photo not available." +msgstr "Fotot är inte tillgängligt." + +#: ../../mod/profile_photo.php:359 +msgid "Upload File:" +msgstr "Ladda upp fil:" + +#: ../../mod/profile_photo.php:360 +msgid "Select a profile:" +msgstr "Välj en profil:" + +#: ../../mod/profile_photo.php:361 +msgid "Upload Profile Photo" +msgstr "Ladda upp profilfoto" + +#: ../../mod/profile_photo.php:366 +msgid "skip this step" +msgstr "hoppa över det här steget" + +#: ../../mod/profile_photo.php:366 +msgid "select a photo from your photo albums" +msgstr "välj ett foto från dina fotoalbum" + +#: ../../mod/profile_photo.php:382 +msgid "Crop Image" +msgstr "Beskär bild" + +#: ../../mod/profile_photo.php:383 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Justera bildens beskärning för bästa utseende." + +#: ../../mod/profile_photo.php:385 +msgid "Done Editing" +msgstr "Klar med redigering" + +#: ../../mod/profile_photo.php:428 +msgid "Image uploaded successfully." +msgstr "Bilduppladdning lyckades." + +#: ../../mod/profile_photo.php:430 +msgid "Image upload failed." +msgstr "Bilduppladdning misslyckades." + +#: ../../mod/profile_photo.php:439 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Krympning av bilden [%s] misslyckades." + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakten hittades inte." + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Vänförfrågan skickad." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Föreslå vänner" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Föreslå en vän för %s" + +#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +msgid "Help:" +msgstr "Hjälp:" + +#: ../../mod/help.php:76 ../../index.php:238 +msgid "Not Found" +msgstr "Hittas inte" + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Gilla/ogilla" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Den här åtgärden fungerar bara för medlemmar." + +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Logga in med ditt RedMatrix-ID eller registrera dig som ny RedMatrix medlem för att fortsätta." + +#: ../../mod/like.php:89 ../../mod/like.php:116 ../../mod/like.php:154 +msgid "Invalid request." +msgstr "Ogiltig begäran." + +#: ../../mod/like.php:131 +msgid "thing" +msgstr "sak" + +#: ../../mod/like.php:177 +msgid "Channel unavailable." +msgstr "Kanalen kan ej nås." + +#: ../../mod/like.php:216 +msgid "Previous action reversed." +msgstr "Föregående åtgärd återställdes." + +#: ../../mod/like.php:352 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s instämmer med %2$ss %3$s" + +#: ../../mod/like.php:354 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s instämmer inte med %2$ss %3$s" + +#: ../../mod/like.php:356 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s tar inte ställning angående %2$ss %3$s" + +#: ../../mod/like.php:442 +msgid "Action completed." +msgstr "Åtgärden slutfördes." + +#: ../../mod/like.php:443 +msgid "Thank you." +msgstr "Tack." + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Gränsen för totalt antal inbjudningar överskriden." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Inte en giltig e-postadress." + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Gå med oss i Red" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Inbjudningsgränsen överskriden. Kontakta din serveradministratör." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Leverans av meddelande misslyckades." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d meddelande sänt." +msgstr[1] "%d meddelanden sända." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Du har inga fler inbjudningar kvar" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Skicka inbjudan" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Ange e-postadresser, en per rad:" + +#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 +msgid "Your message:" +msgstr "Ditt meddelande:" + +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." +msgstr "Gå med mig i gemenskapen på RedMatrix." + +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Du kommer att behöva den här inbjudningskoden: " + +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" +msgstr "1. Skapa konto på en RedMatrix-server (alla är ihopkopplade)" + +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." +msgstr "2. Ange min RedMatrix-adress i webbplatsens sökruta." + +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "eller besök " + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klicka [Ta kontakt]" + +#: ../../mod/filestorage.php:81 +msgid "Permission Denied." +msgstr "Behörighet saknas." + +#: ../../mod/filestorage.php:97 +msgid "File not found." +msgstr "Filen hittas inte." + +#: ../../mod/filestorage.php:140 +msgid "Edit file permissions" +msgstr "Redigera filrättigheter" + +#: ../../mod/filestorage.php:149 +msgid "Set/edit permissions" +msgstr "Ställ in/ändra behörigheter" + +#: ../../mod/filestorage.php:150 +msgid "Include all files and sub folders" +msgstr "Inkludera alla filer och underkataloger" + +#: ../../mod/filestorage.php:151 +msgid "Return to file list" +msgstr "Återgå till fillistan" + +#: ../../mod/filestorage.php:153 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg" + +#: ../../mod/filestorage.php:154 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida" + +#: ../../mod/filestorage.php:156 +msgid "Attach this file to a new post" +msgstr "Bifoga den här filen till ett nytt inlägg" + +#: ../../mod/filestorage.php:157 +msgid "Show URL to this file" +msgstr "Visa URL till den här filen" + +#: ../../mod/filestorage.php:158 +msgid "Do not show in shared with me folder of your connections" +msgstr "Visa inte i dina kontakters mapp med delat material" + +#: ../../mod/dav.php:121 +msgid "RedMatrix channel" +msgstr "RedMatrix-kanal" + +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." +msgstr "Icke-lokal integritetsinformation är inte tillgänglig" + +#: ../../mod/lockview.php:52 +msgid "Visible to:" +msgstr "Kan ses av:" + +#: ../../mod/import.php:25 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Din tjänstenivå tillåter bara %d kanaler." + +#: ../../mod/import.php:51 +msgid "Nothing to import." +msgstr "Inget att importera." + +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" +msgstr "Kunde inte ladda ner data från den gamla servern" + +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "Den importerade filen är tom." + +#: ../../mod/import.php:106 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades." + +#: ../../mod/import.php:127 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Kan inte skapa en unik kanaladress. Import misslyckades." + +#: ../../mod/import.php:147 +msgid "Channel clone failed. Import failed." +msgstr "Kloning av kanalen misslyckades. Import misslyckades." + +#: ../../mod/import.php:157 +msgid "Cloned channel not found. Import failed." +msgstr "Den klonade kanalen hittas inte. Import misslyckades." + +#: ../../mod/import.php:475 +msgid "Import completed." +msgstr "Import slutförd." + +#: ../../mod/import.php:487 +msgid "You must be logged in to use this feature." +msgstr "Du måste vara inloggad för att kunna använda den här funktionen." + +#: ../../mod/import.php:492 +msgid "Import Channel" +msgstr "Importera kanal" + +#: ../../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 "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte." + +#: ../../mod/import.php:494 +msgid "File to Upload" +msgstr "Fil att ladda upp" + +#: ../../mod/import.php:495 +msgid "Or provide the old server/hub details" +msgstr "Eller ge uppgifter om den gamla servern/hubben" + +#: ../../mod/import.php:496 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamla identitetsadress (xyz@example.com)" + +#: ../../mod/import.php:497 +msgid "Your old login email address" +msgstr "Din gamla e-postadress för inloggning" + +#: ../../mod/import.php:498 +msgid "Your old login password" +msgstr "Ditt gamla inloggningslösenord" + +#: ../../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 "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media." + +#: ../../mod/import.php:500 +msgid "Make this hub my primary location" +msgstr "Gör den här hubben till min primära plats" + +#: ../../mod/import.php:501 +msgid "Import existing posts if possible" +msgstr "Importera befintliga inlägg om möjligt" + +#: ../../mod/locs.php:21 ../../mod/locs.php:52 +msgid "Location not found." +msgstr "Platsen hittades inte." + +#: ../../mod/locs.php:56 +msgid "Primary location cannot be removed." +msgstr "Huvudplatsen kan inte tas bort." + +#: ../../mod/locs.php:88 +msgid "No locations found." +msgstr "Inga platser hittades." + +#: ../../mod/locs.php:101 +msgid "Manage Channel Locations" +msgstr "Hantera kanalplatser" + +#: ../../mod/locs.php:102 +msgid "Location (address)" +msgstr "Plats (adress)" + +#: ../../mod/locs.php:103 +msgid "Primary Location" +msgstr "Huvudplats" + +#: ../../mod/locs.php:104 +msgid "Drop location" +msgstr "Ta bort plats" + +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Föremål uppdaterat" + +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Objektlagring: misslyckades" + +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Föremål tillagt" + +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Visa föremål" + +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "föremål hittades inte." + +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Redigera föremål" + +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Välj en profil" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Posta en aktivitet" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "Skickar bara till de som tittar på den aktuella profilen" + +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Namn på föremål, t.ex. någonting" + +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL för föremål (frivilligt)" + +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL för foto på föremål (frivilligt)" + +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Lägg till föremål till din profil" + +#: ../../mod/layouts.php:110 +msgid "Help with this feature" +msgstr "Hjälp för den här funktionen" + +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "Layoutnamn" + +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s taggade%2$ss %3$s med %4$s" + +#: ../../mod/connedit.php:252 +msgid "is now connected to" +msgstr "har nu kontakt med" + +#: ../../mod/connedit.php:365 +msgid "Could not access address book record." +msgstr "Kunde inte komma åt adressboksuppgifter." + +#: ../../mod/connedit.php:379 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Uppdatering misslyckades - kanalen är inte tillgänglig." + +#: ../../mod/connedit.php:386 +msgid "Channel has been unblocked" +msgstr "Kanalen är inte längre blockerad" + +#: ../../mod/connedit.php:387 +msgid "Channel has been blocked" +msgstr "Kanalen har blockerats" + +#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 +#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 +#: ../../mod/connedit.php:443 +msgid "Unable to set address book parameters." +msgstr "Kunde inte ställa in adressboksparametrar." + +#: ../../mod/connedit.php:398 +msgid "Channel has been unignored" +msgstr "Kanalen ignoreras inte längre" + +#: ../../mod/connedit.php:399 +msgid "Channel has been ignored" +msgstr "Kanalen har ignorerats" + +#: ../../mod/connedit.php:410 +msgid "Channel has been unarchived" +msgstr "Kanalen arkiveras inte längre" + +#: ../../mod/connedit.php:411 +msgid "Channel has been archived" +msgstr "Kanalen har arkiverats" + +#: ../../mod/connedit.php:422 +msgid "Channel has been unhidden" +msgstr "Kanalen döljs inte längre" + +#: ../../mod/connedit.php:423 +msgid "Channel has been hidden" +msgstr "Kanalen har dolts" + +#: ../../mod/connedit.php:438 +msgid "Channel has been approved" +msgstr "Kanalen har godkänts" + +#: ../../mod/connedit.php:439 +msgid "Channel has been unapproved" +msgstr "Kanalen är inte godkänd längre" + +#: ../../mod/connedit.php:467 +msgid "Connection has been removed." +msgstr "Kontakten har tagits bort." + +#: ../../mod/connedit.php:487 +#, php-format +msgid "View %s's profile" +msgstr "Visa %ss profil" + +#: ../../mod/connedit.php:491 +msgid "Refresh Permissions" +msgstr "Uppdatera behörigheter" + +#: ../../mod/connedit.php:494 +msgid "Fetch updated permissions" +msgstr "Hämta uppdaterade behörigheter" + +#: ../../mod/connedit.php:498 +msgid "Recent Activity" +msgstr "Senaste aktiviteten" + +#: ../../mod/connedit.php:501 +msgid "View recent posts and comments" +msgstr "Visa de senaste inläggen och kommentarerna" + +#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 +#: ../../mod/admin.php:737 +msgid "Unblock" +msgstr "Avblockera" + +#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 +#: ../../mod/admin.php:736 +msgid "Block" +msgstr "Blockera" + +#: ../../mod/connedit.php:510 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blockera (eller ta bort blockering av) all kommunikation med den här kontakten" + +#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +msgid "Unignore" +msgstr "Sluta att ignorera" + +#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorera" + +#: ../../mod/connedit.php:517 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorera (eller sluta att ignorera) all inkommande kommunikation från den här kontakten" + +#: ../../mod/connedit.php:520 +msgid "Unarchive" +msgstr "Sluta att arkivera" + +#: ../../mod/connedit.php:520 +msgid "Archive" +msgstr "Arkivera" + +#: ../../mod/connedit.php:523 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Arkivera (eller sluta att arkivera) den här kontakten - märk kanalen som död men behåll innehåll" + +#: ../../mod/connedit.php:526 +msgid "Unhide" +msgstr "Sluta att dölja" + +#: ../../mod/connedit.php:526 +msgid "Hide" +msgstr "Dölj" + +#: ../../mod/connedit.php:529 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Dölj eller sluta att dölja den här kontakten från dina övriga kontakter" + +#: ../../mod/connedit.php:536 +msgid "Delete this connection" +msgstr "Ta bort den här kontakten" + +#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 +msgid "Approve this connection" +msgstr "Godkänn den här kontakten" + +#: ../../mod/connedit.php:611 +msgid "Accept connection to allow communication" +msgstr "Acceptera kontakten för att tillåta kommunikation" + +#: ../../mod/connedit.php:627 +#, php-format +msgid "Connections: settings for %s" +msgstr "Kontakter: inställningar för %s" + +#: ../../mod/connedit.php:628 +msgid "Apply these permissions automatically" +msgstr "Använd de här rättigheterna automatiskt" + +#: ../../mod/connedit.php:632 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "Använd rättigheterna angivna på den här sidan för alla nya kontakter." + +#: ../../mod/connedit.php:636 +msgid "Slide to adjust your degree of friendship" +msgstr "Dra för att justera er vänskapsnivå" + +#: ../../mod/connedit.php:637 ../../mod/rate.php:147 +msgid "Rating (this information is public)" +msgstr "Betyg (den här informationen är offentlig)" + +#: ../../mod/connedit.php:638 ../../mod/rate.php:148 +msgid "Optionally explain your rating (this information is public)" +msgstr "Frivillig kommentar till betyget (den här informationen är offentlig)" + +#: ../../mod/connedit.php:645 +msgid "" +"Default permissions for your channel type have (just) been applied. They " +"have not yet been submitted. Please review the permissions on this page and " +"make any desired changes at this time. This new connection may not " +"be able to communicate with you until you submit this page, which will " +"install and apply the selected permissions." +msgstr "Standardbehörigheterna för din kanaltyp har (precis) tillämpats. De har ännu inte sparats. Titta igenom behörigheterna på den här sidan och gör önskade ändringar nu. Den här kontakten kan inte kommunicera med dig förrän du sparar den här sidan, då de valda behörigheterna installeras och träder i kraft." + +#: ../../mod/connedit.php:648 +msgid "inherited" +msgstr "ärvd" + +#: ../../mod/connedit.php:651 +msgid "Connection has no individual permissions!" +msgstr "Kontakten har inga individuella behörigheter!" + +#: ../../mod/connedit.php:652 +msgid "" +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Det här kan vara lämpligt beroende på dina integritetsinställningar, men du vill kanske se över de \"Avancerade inställningarna\"." + +#: ../../mod/connedit.php:654 +msgid "Profile Visibility" +msgstr "Profilsynlighet" + +#: ../../mod/connedit.php:655 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Välj profilen som du vill ska synas när %s ser din profil på ett säkert sätt." + +#: ../../mod/connedit.php:656 +msgid "Contact Information / Notes" +msgstr "Kontaktinformation / anteckningar" + +#: ../../mod/connedit.php:657 +msgid "Edit contact notes" +msgstr "Redigera anteckningar för kontakten" + +#: ../../mod/connedit.php:659 +msgid "Their Settings" +msgstr "Deras inställningar" + +#: ../../mod/connedit.php:660 +msgid "My Settings" +msgstr "Mina inställningar" + +#: ../../mod/connedit.php:662 +msgid "" +"Default permissions for this channel type have (just) been applied. They " +"have not been saved and there are currently no stored default " +"permissions. Please review/edit the applied settings and click [Submit] to " +"finalize." +msgstr "Standardbehörigheterna för den här kanaltypen har (precis) tillämpats. De har inte sparats och det finns för närvarande inga sparade standardbehörigheter. Titta igenom/ändra de tillämpade inställningarna och klicka [Spara] för att avsluta." + +#: ../../mod/connedit.php:663 +msgid "Clear/Disable Automatic Permissions" +msgstr "Rensa/inaktivera automatiska behörigheter" + +#: ../../mod/connedit.php:664 +msgid "Forum Members" +msgstr "Forummedlemmar" + +#: ../../mod/connedit.php:665 +msgid "Soapbox" +msgstr "Talarstol" + +#: ../../mod/connedit.php:666 +msgid "Full Sharing (typical social network permissions)" +msgstr "Full delning (typiska behörigheter för sociala nätverk)" + +#: ../../mod/connedit.php:667 +msgid "Cautious Sharing " +msgstr "Försiktig delning" + +#: ../../mod/connedit.php:668 +msgid "Follow Only" +msgstr "Följ endast" + +#: ../../mod/connedit.php:669 +msgid "Individual Permissions" +msgstr "Individuella behörigheter" + +#: ../../mod/connedit.php:670 +msgid "" +"Some permissions may be inherited from your channel privacy settings, which have higher priority than " +"individual settings. Changing those inherited settings on this page will " +"have no effect." +msgstr "Vissa behörigheter kan ärvas från din kanals integritetsinställningar, vilka har högre prioritet än individuella inställningar. Ändring av de ärvda inställningarna på den här sidan har ingen effekt." + +#: ../../mod/connedit.php:671 +msgid "Advanced Permissions" +msgstr "Avancerade behörighetsinställningar" + +#: ../../mod/connedit.php:672 +msgid "Simple Permissions (select one and submit)" +msgstr "Enkla behörighetsinställningar (välj en och spara)" + +#: ../../mod/connedit.php:676 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "Besök %ss profil - %s" + +#: ../../mod/connedit.php:677 +msgid "Block/Unblock contact" +msgstr "Blockera/häv blockering av kontakt" + +#: ../../mod/connedit.php:678 +msgid "Ignore contact" +msgstr "Ignorera kontakt" + +#: ../../mod/connedit.php:679 +msgid "Repair URL settings" +msgstr "Reparera URL-inställningar" + +#: ../../mod/connedit.php:680 +msgid "View conversations" +msgstr "Visa konversationer" + +#: ../../mod/connedit.php:682 +msgid "Delete contact" +msgstr "Ta bort kontakt" + +#: ../../mod/connedit.php:686 +msgid "Last update:" +msgstr "Senaste uppdatering:" + +#: ../../mod/connedit.php:688 +msgid "Update public posts" +msgstr "Uppdatera offentliga inlägg" + +#: ../../mod/connedit.php:690 +msgid "Update now" +msgstr "Uppdatera nu" + +#: ../../mod/connedit.php:696 +msgid "Currently blocked" +msgstr "Blockerad" + +#: ../../mod/connedit.php:697 +msgid "Currently ignored" +msgstr "Ignorerad" + +#: ../../mod/connedit.php:698 +msgid "Currently archived" +msgstr "Arkiverad" + +#: ../../mod/connedit.php:699 +msgid "Currently pending" +msgstr "Inväntar svar" + #: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 msgid "Tag removed" msgstr "Tagg borttagen" @@ -6853,7 +6798,7 @@ msgstr "Välj en tagg att ta bort: " msgid "Theme settings updated." msgstr "Temainställningar uppdaterade." -#: ../../mod/admin.php:97 ../../mod/admin.php:411 +#: ../../mod/admin.php:97 ../../mod/admin.php:415 msgid "Site" msgstr "Server" @@ -6861,19 +6806,19 @@ msgstr "Server" msgid "Accounts" msgstr "Konton" -#: ../../mod/admin.php:99 ../../mod/admin.php:858 +#: ../../mod/admin.php:99 ../../mod/admin.php:863 msgid "Channels" msgstr "Kanaler" -#: ../../mod/admin.php:100 ../../mod/admin.php:949 ../../mod/admin.php:991 +#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 msgid "Plugins" msgstr "Tillägg" -#: ../../mod/admin.php:101 ../../mod/admin.php:1154 ../../mod/admin.php:1190 +#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 msgid "Themes" msgstr "Teman" -#: ../../mod/admin.php:102 ../../mod/admin.php:512 +#: ../../mod/admin.php:102 ../../mod/admin.php:517 msgid "Server" msgstr "Server" @@ -6885,7 +6830,7 @@ msgstr "Profilkonfiguration" msgid "DB updates" msgstr "Databasuppdateringar" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1277 +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 msgid "Logs" msgstr "Loggar" @@ -6901,10 +6846,10 @@ msgstr "Användarregistreringar som behöver bekräftas" msgid "Message queues" msgstr "Meddelandeköer" -#: ../../mod/admin.php:211 ../../mod/admin.php:410 ../../mod/admin.php:511 -#: ../../mod/admin.php:721 ../../mod/admin.php:857 ../../mod/admin.php:948 -#: ../../mod/admin.php:990 ../../mod/admin.php:1153 ../../mod/admin.php:1189 -#: ../../mod/admin.php:1276 +#: ../../mod/admin.php:211 ../../mod/admin.php:414 ../../mod/admin.php:516 +#: ../../mod/admin.php:726 ../../mod/admin.php:862 ../../mod/admin.php:953 +#: ../../mod/admin.php:995 ../../mod/admin.php:1158 ../../mod/admin.php:1194 +#: ../../mod/admin.php:1281 msgid "Administration" msgstr "Administration" @@ -6916,7 +6861,7 @@ msgstr "Sammanfattning" msgid "Registered users" msgstr "Registrerade användare" -#: ../../mod/admin.php:216 ../../mod/admin.php:515 +#: ../../mod/admin.php:216 ../../mod/admin.php:520 msgid "Pending registrations" msgstr "Pågående registreringar" @@ -6924,568 +6869,583 @@ msgstr "Pågående registreringar" msgid "Version" msgstr "Version" -#: ../../mod/admin.php:219 ../../mod/admin.php:516 +#: ../../mod/admin.php:219 ../../mod/admin.php:521 msgid "Active plugins" msgstr "Aktiva tillägg" -#: ../../mod/admin.php:326 +#: ../../mod/admin.php:330 msgid "Site settings updated." msgstr "Serverinställningar uppdaterade." -#: ../../mod/admin.php:365 +#: ../../mod/admin.php:369 msgid "experimental" msgstr "experimentellt" -#: ../../mod/admin.php:367 +#: ../../mod/admin.php:371 msgid "unsupported" msgstr "stöds ej" -#: ../../mod/admin.php:391 +#: ../../mod/admin.php:395 msgid "Yes - with approval" msgstr "Ja - med godkännande" -#: ../../mod/admin.php:397 +#: ../../mod/admin.php:401 msgid "My site is not a public server" msgstr "Min server är inte offentlig" -#: ../../mod/admin.php:398 +#: ../../mod/admin.php:402 msgid "My site has paid access only" msgstr "Min server har endast åtkomst mot betalning" -#: ../../mod/admin.php:399 +#: ../../mod/admin.php:403 msgid "My site has free access only" msgstr "Min server har endast gratis åtkomst" -#: ../../mod/admin.php:400 +#: ../../mod/admin.php:404 msgid "My site offers free accounts with optional paid upgrades" msgstr "Min server erbjuder gratis konton med uppgradering mot betalning" -#: ../../mod/admin.php:414 +#: ../../mod/admin.php:418 msgid "File upload" msgstr "Filuppladdning" -#: ../../mod/admin.php:415 +#: ../../mod/admin.php:419 msgid "Policies" msgstr "Policyer" -#: ../../mod/admin.php:420 +#: ../../mod/admin.php:424 msgid "Site name" msgstr "Servernamn" -#: ../../mod/admin.php:421 +#: ../../mod/admin.php:425 msgid "Banner/Logo" msgstr "Banner/logga" -#: ../../mod/admin.php:422 +#: ../../mod/admin.php:426 msgid "Administrator Information" msgstr "Administratörsinformation" -#: ../../mod/admin.php:422 +#: ../../mod/admin.php:426 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Kontaktinfo till sidadministratörer. Visas på sidinfosidan. BBCode kan användas här" -#: ../../mod/admin.php:423 +#: ../../mod/admin.php:427 msgid "System language" msgstr "Systemspråk" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:428 msgid "System theme" msgstr "Systemtema" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:428 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Förvalt systemtema - kan åsidosättas i användarprofiler - ändra temainställningar" -#: ../../mod/admin.php:425 +#: ../../mod/admin.php:429 msgid "Mobile system theme" msgstr "Mobilt systemtema" -#: ../../mod/admin.php:425 +#: ../../mod/admin.php:429 msgid "Theme for mobile devices" msgstr "Tema för mobila enheter" -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:431 msgid "Enable Diaspora Protocol" msgstr "Aktivera protokoll för Diaspora" -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:431 msgid "Communicate with Diaspora and Friendica - experimental" msgstr "Kommunicera med Diaspora och Friendica - experimentellt" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:432 msgid "Allow Feeds as Connections" msgstr "Tillåt flöden som kontakter" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:432 msgid "(Heavy system resource usage)" msgstr "(systemresurskrävande)" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:433 msgid "Maximum image size" msgstr "Maximal bildstorlek" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:433 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximal storlek i byte för uppladdade bilder. Standard är 0, vilket innebär ingen storleksbegränsning." -#: ../../mod/admin.php:430 +#: ../../mod/admin.php:434 msgid "Does this site allow new member registration?" msgstr "Tillåter den här servern nya medlemmar att registrera sig?" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:435 msgid "Which best describes the types of account offered by this hub?" msgstr "Vilket beskriver bäst kontotypen som erbjuds på den här hubben?" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:436 msgid "Register text" msgstr "Registreringstext" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:436 msgid "Will be displayed prominently on the registration page." msgstr "Visas tydligt på registreringssidan." -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:437 msgid "Accounts abandoned after x days" msgstr "Konto övergivet efter x dagar" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:437 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Slösar inte systemresurser genom att fråga externa servrar efter övergivna konton. 0 innebär ingen tidsbegränsning." -#: ../../mod/admin.php:434 +#: ../../mod/admin.php:438 msgid "Allowed friend domains" msgstr "Tillåtna vändomäner" -#: ../../mod/admin.php:434 +#: ../../mod/admin.php:438 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Kommaseparerad lista med domäner som tillåts att upprätta ett vänförhållande med den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner." -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:439 msgid "Allowed email domains" msgstr "Tillåtna e-postdomäner" -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:439 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Kommaseparerad lista med domäner som tillåts i e-postadresser för registreringar på den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner." -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:440 +msgid "Not allowed email domains" +msgstr "Otillåtna e-postdomäner" + +#: ../../mod/admin.php:440 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Kommaseparerad lista med domäner som inte tillåts i e-postadresser för registrering på den här webbplatsen. Jokertecken är tillåtna. Töm för att tillåta alla domäner såvida inte tillåtna domäner har angivits." + +#: ../../mod/admin.php:441 msgid "Block public" msgstr "Blockera offentlig åtkomst" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:441 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Välj för att blockera åtkomst till alla personliga sidor som annars skulle vara offentliga på den här servern om man inte är inloggad." -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:442 msgid "Verify Email Addresses" msgstr "Bekräfta e-postadress" -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:442 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Välj för att bekräfta e-postadresser som används för kontoregistrering (rekommenderas)." -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:443 msgid "Force publish" msgstr "Tvinga publicering" -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:443 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Välj för att tvinga alla profiler på den här servern att listas i serverkatalogen." -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:444 msgid "Disable discovery tab" msgstr "Inaktivera upptäck-fliken" -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:444 msgid "" "Remove the tab in the network view with public content pulled from sources " "chosen for this site." msgstr "Ta bort fliken i nätverksvyn med offentligt innehåll som hämtas från källor valda för den här servern." -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:445 msgid "No login on Homepage" msgstr "Ingen inloggning på hemsidan" -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:445 msgid "" "Check to hide the login form from your sites homepage when visitors arrive " "who are not logged in (e.g. when you put the content of the homepage in via " "the site channel)." msgstr "Välj för att gömma inloggningsformuläret från serverns hemsida för oinloggade besökare (t.ex. när du lägger in hemsideinnehållet via serverkanalen)." -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:447 msgid "Proxy user" msgstr "Proxyanvändare" -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:448 msgid "Proxy URL" msgstr "Proxy-URL" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:449 msgid "Network timeout" msgstr "Nätverkstimeout" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:449 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Värde i sekunder. Sätt till 0 för obegränsat (ej rekommenderat)." -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:450 msgid "Delivery interval" msgstr "Leveransintervall" -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:450 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Fördröj leveransprocesser som görs i bakgrunden så här många sekunder för att reducera systembelastningen. Rekommenderat: 4-5 för delade värdar, 2-3 för virtuella privata servrar. 0-1 för stora dedikerade servrar." -#: ../../mod/admin.php:446 +#: ../../mod/admin.php:451 msgid "Poll interval" msgstr "Hämtningsintervall" -#: ../../mod/admin.php:446 +#: ../../mod/admin.php:451 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Fördröj hämtningsprocesser som görs i bakgrunden så här många sekunder för att reducera systembelastningen. Om 0 används leveransintervallet." -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:452 msgid "Maximum Load Average" msgstr "Maximal genomsnittsbelastning" -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:452 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximal systembelastning innan leverans- och hämtningsprocesser skjuts upp - standard är 50." -#: ../../mod/admin.php:503 +#: ../../mod/admin.php:508 msgid "No server found" msgstr "Ingen server hittad" -#: ../../mod/admin.php:510 ../../mod/admin.php:735 +#: ../../mod/admin.php:515 ../../mod/admin.php:740 msgid "ID" msgstr "ID" -#: ../../mod/admin.php:510 +#: ../../mod/admin.php:515 msgid "for channel" msgstr "för kanal" -#: ../../mod/admin.php:510 +#: ../../mod/admin.php:515 msgid "on server" msgstr "på server" -#: ../../mod/admin.php:510 +#: ../../mod/admin.php:515 msgid "Status" msgstr "Status" -#: ../../mod/admin.php:531 +#: ../../mod/admin.php:536 msgid "Update has been marked successful" msgstr "Uppdatering har markerats som genomförd" -#: ../../mod/admin.php:541 +#: ../../mod/admin.php:546 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Körning av %s misslyckades. Kontrollera systemloggarna." -#: ../../mod/admin.php:544 +#: ../../mod/admin.php:549 #, php-format msgid "Update %s was successfully applied." msgstr "Uppdatering %s genomfördes utan problem." -#: ../../mod/admin.php:548 +#: ../../mod/admin.php:553 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Uppdatering %s returnerade ingen status. Oklart om den lyckades." -#: ../../mod/admin.php:551 +#: ../../mod/admin.php:556 #, php-format msgid "Update function %s could not be found." msgstr "Uppdateringsfunktion %s kunde inte hittas." -#: ../../mod/admin.php:566 +#: ../../mod/admin.php:571 msgid "No failed updates." msgstr "Inga misslyckade uppdateringar." -#: ../../mod/admin.php:570 +#: ../../mod/admin.php:575 msgid "Failed Updates" msgstr "Misslyckade uppdateringar" -#: ../../mod/admin.php:572 +#: ../../mod/admin.php:577 msgid "Mark success (if update was manually applied)" msgstr "Markera som genomförd (om uppdateringen gjordes manuellt)" -#: ../../mod/admin.php:573 +#: ../../mod/admin.php:578 msgid "Attempt to execute this update step automatically" msgstr "Försök att köra den här uppdateringen automatiskt" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:604 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s användare blockerad/avblockerad" msgstr[1] "%s användare blockerade/avblockerade" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:611 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s användare borttagen" msgstr[1] "%s användare borttagna" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:640 msgid "Account not found" msgstr "Konto hittas inte" -#: ../../mod/admin.php:655 +#: ../../mod/admin.php:660 #, php-format msgid "User '%s' unblocked" msgstr "Användare '%s' avblockerad" -#: ../../mod/admin.php:655 +#: ../../mod/admin.php:660 #, php-format msgid "User '%s' blocked" msgstr "Användare '%s' blockerad" -#: ../../mod/admin.php:722 ../../mod/admin.php:734 +#: ../../mod/admin.php:727 ../../mod/admin.php:739 msgid "Users" msgstr "Användare" -#: ../../mod/admin.php:724 ../../mod/admin.php:860 +#: ../../mod/admin.php:729 ../../mod/admin.php:865 msgid "select all" msgstr "välj alla" -#: ../../mod/admin.php:725 +#: ../../mod/admin.php:730 msgid "User registrations waiting for confirm" msgstr "Användarregistreringar som inväntar bekräftelse" -#: ../../mod/admin.php:726 +#: ../../mod/admin.php:731 msgid "Request date" msgstr "Ansökningsdatum" -#: ../../mod/admin.php:727 +#: ../../mod/admin.php:732 msgid "No registrations." msgstr "Inga registreringar." -#: ../../mod/admin.php:728 +#: ../../mod/admin.php:733 msgid "Approve" msgstr "Godkänn" -#: ../../mod/admin.php:729 +#: ../../mod/admin.php:734 msgid "Deny" msgstr "Avslå" -#: ../../mod/admin.php:735 +#: ../../mod/admin.php:740 msgid "Register date" msgstr "Registreringsdatum" -#: ../../mod/admin.php:735 +#: ../../mod/admin.php:740 msgid "Last login" msgstr "Senaste inloggning" -#: ../../mod/admin.php:735 +#: ../../mod/admin.php:740 msgid "Expires" msgstr "Upphör att gälla" -#: ../../mod/admin.php:735 +#: ../../mod/admin.php:740 msgid "Service Class" msgstr "Tjänsteklass" -#: ../../mod/admin.php:737 +#: ../../mod/admin.php:742 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Valda användare kommer att tas bort!\\n\\nAllt dessa användare har postat på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" -#: ../../mod/admin.php:738 +#: ../../mod/admin.php:743 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Användaren {0} kommer att tas bort!\\n\\nAllt den här användaren har postat på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" -#: ../../mod/admin.php:771 +#: ../../mod/admin.php:776 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "%s kanal censurerad/avcensurerad" msgstr[1] "%s kanaler censurerade/avcensurerade" -#: ../../mod/admin.php:778 +#: ../../mod/admin.php:783 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "%s kanal borttagen" msgstr[1] "%s kanaler borttagna" -#: ../../mod/admin.php:797 +#: ../../mod/admin.php:802 msgid "Channel not found" msgstr "Kanal hittas inte" -#: ../../mod/admin.php:808 +#: ../../mod/admin.php:813 #, php-format msgid "Channel '%s' deleted" msgstr "Kanalen '%s' togs bort" -#: ../../mod/admin.php:819 +#: ../../mod/admin.php:824 #, php-format msgid "Channel '%s' uncensored" msgstr "Kanal '%s' avcensurerad" -#: ../../mod/admin.php:819 +#: ../../mod/admin.php:824 #, php-format msgid "Channel '%s' censored" msgstr "Kanal '%s' censurerad" -#: ../../mod/admin.php:862 +#: ../../mod/admin.php:867 msgid "Censor" msgstr "Censurera" -#: ../../mod/admin.php:863 +#: ../../mod/admin.php:868 msgid "Uncensor" msgstr "Avcensurera" -#: ../../mod/admin.php:866 +#: ../../mod/admin.php:871 msgid "UID" msgstr "UID" -#: ../../mod/admin.php:868 +#: ../../mod/admin.php:871 ../../mod/profiles.php:447 +msgid "Address" +msgstr "Adress" + +#: ../../mod/admin.php:873 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " "channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Valda kanaler kommer att tas bort!\\n\\nAllt som har postats i de kanalerna på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" -#: ../../mod/admin.php:869 +#: ../../mod/admin.php:874 msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Kanalen {0} kommer att tas bort!\\n\\nAllt som har postats i den här kanalen på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" -#: ../../mod/admin.php:908 +#: ../../mod/admin.php:913 #, php-format msgid "Plugin %s disabled." msgstr "Tillägg %s inaktiverat." -#: ../../mod/admin.php:912 +#: ../../mod/admin.php:917 #, php-format msgid "Plugin %s enabled." msgstr "Tillägg %s aktiverat." -#: ../../mod/admin.php:922 ../../mod/admin.php:1124 +#: ../../mod/admin.php:927 ../../mod/admin.php:1129 msgid "Disable" msgstr "Inaktivera" -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +#: ../../mod/admin.php:929 ../../mod/admin.php:1131 msgid "Enable" msgstr "Aktivera" -#: ../../mod/admin.php:950 ../../mod/admin.php:1155 +#: ../../mod/admin.php:955 ../../mod/admin.php:1160 msgid "Toggle" msgstr "Växla" -#: ../../mod/admin.php:958 ../../mod/admin.php:1165 +#: ../../mod/admin.php:963 ../../mod/admin.php:1170 msgid "Author: " msgstr "Författare:" -#: ../../mod/admin.php:959 ../../mod/admin.php:1166 +#: ../../mod/admin.php:964 ../../mod/admin.php:1171 msgid "Maintainer: " msgstr "Underhållare:" -#: ../../mod/admin.php:1088 +#: ../../mod/admin.php:1093 msgid "No themes found." msgstr "Inga teman funna." -#: ../../mod/admin.php:1147 +#: ../../mod/admin.php:1152 msgid "Screenshot" msgstr "Skärmdump" -#: ../../mod/admin.php:1195 +#: ../../mod/admin.php:1200 msgid "[Experimental]" msgstr "[Experimentellt]" -#: ../../mod/admin.php:1196 +#: ../../mod/admin.php:1201 msgid "[Unsupported]" msgstr "[Utan support]" -#: ../../mod/admin.php:1223 +#: ../../mod/admin.php:1228 msgid "Log settings updated." msgstr "Logginställningar uppdaterade." -#: ../../mod/admin.php:1279 +#: ../../mod/admin.php:1284 msgid "Clear" msgstr "Rensa" -#: ../../mod/admin.php:1285 +#: ../../mod/admin.php:1290 msgid "Debugging" msgstr "Avlusning" -#: ../../mod/admin.php:1286 +#: ../../mod/admin.php:1291 msgid "Log file" msgstr "Loggfil" -#: ../../mod/admin.php:1286 +#: ../../mod/admin.php:1291 msgid "" "Must be writable by web server. Relative to your Red top-level directory." msgstr "Måste vara skrivbar för webbservern. Anges relativt Reds toppkatalog." -#: ../../mod/admin.php:1287 +#: ../../mod/admin.php:1292 msgid "Log level" msgstr "Loggnivå" -#: ../../mod/admin.php:1334 +#: ../../mod/admin.php:1339 msgid "New Profile Field" msgstr "Nytt profilfält" -#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 msgid "Field nickname" msgstr "Smeknamn på fält" -#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 msgid "System name of field" msgstr "Systemnamn på fält" -#: ../../mod/admin.php:1336 ../../mod/admin.php:1357 +#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 msgid "Input type" msgstr "Datatyp" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 msgid "Field Name" msgstr "Fältnamn" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 msgid "Label on profile pages" msgstr "Beteckning på profilsidor" -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 msgid "Help text" msgstr "Hjälptext" -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 msgid "Additional info (optional)" msgstr "Ytterligare info (frivilligt)" -#: ../../mod/admin.php:1349 +#: ../../mod/admin.php:1354 msgid "Field definition not found" msgstr "Fältdefinition hittades inte" -#: ../../mod/admin.php:1355 +#: ../../mod/admin.php:1360 msgid "Edit Profile Field" msgstr "Redigera profilfält" @@ -7577,94 +7537,21 @@ msgstr "Redigera meny" msgid "Add or remove entries to this menu" msgstr "Lägg till eller ta bort menyval" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Gränsen för totalt antal inbjudningar överskriden." +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profilträff" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Inte en giltig e-postadress." +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil." -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Gå med oss i Red" +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "är intresserad av:" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Inbjudningsgränsen överskriden. Kontakta din serveradministratör." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Leverans av meddelande misslyckades." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d meddelande sänt." -msgstr[1] "%d meddelanden sända." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du har inga fler inbjudningar kvar" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Skicka inbjudan" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Ange e-postadresser, en per rad:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Gå med mig i gemenskapen på RedMatrix." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Du kommer att behöva den här inbjudningskoden: " - -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Skapa konto på en RedMatrix-server (alla är ihopkopplade)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Ange min RedMatrix-adress i webbplatsens sökruta." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "eller besök " - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klicka [Ta kontakt]" - -#: ../../mod/network.php:84 -msgid "No such group" -msgstr "Ingen sådan grupp" - -#: ../../mod/network.php:122 -msgid "Search Results For:" -msgstr "Sökresultat för:" - -#: ../../mod/network.php:176 -msgid "Collection is empty" -msgstr "Kretsen är tom" - -#: ../../mod/network.php:184 -msgid "Collection: " -msgstr "Krets: " - -#: ../../mod/network.php:197 -msgid "Connection: " -msgstr "Kontakt:" - -#: ../../mod/network.php:200 -msgid "Invalid connection." -msgstr "Ogiltig kontakt." +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Inga träffar" #: ../../mod/notifications.php:26 msgid "Invalid request identifier." @@ -7688,13 +7575,174 @@ msgstr "Systemnotifieringar" msgid "[Embedded content - reload page to view]" msgstr "[Inbäddat innehåll - ladda om sidan för att visa]" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Icke-lokal integritetsinformation är inte tillgänglig" +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Fortsätt" -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Kan ses av:" +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Inställning av premiumkanal" + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Aktivera kontaktrestriktioner för premiumkanal" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Ange dina restriktioner och villkor, som Paypal-kvitto, användarriktlinjer, etc." + +#: ../../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 "Den här kanalen kan kräva ytterligare steg eller godkännande av följande villkor innan anslutning:" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentiella kontakter kommer sedan att se följande text innan de går vidare:" + +#: ../../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 "Genom att fortsätta intygar jag att jag har följt alla instruktioner som ges på den här sidan." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Inga specifika instruktioner har givits av kanalägaren.)" + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Begränsad kanal eller premiumkanal" + +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installerad." + +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Felaktig app." + +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Bädda in kod" + +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "Redigera app" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "Skapa app" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Namn på app" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Adress (URL) för app" + +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "Fotoikon URL" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixlar - valfri" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versions-ID" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Pris på app" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Adress (URL) för att köpa app" + +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Ange din nuvarande sinnesstämning och visa för dina vänner" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Kunde inte hitta mottagare." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Kunde inte kommunicera med den begärda kanalen." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan inte bekräfta den begärda kanalen." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka." + +#: ../../mod/mail.php:139 +msgid "Message deleted." +msgstr "Meddelande borttaget." + +#: ../../mod/mail.php:156 +msgid "Message recalled." +msgstr "Meddelande återkallat." + +#: ../../mod/mail.php:225 +msgid "Send Private Message" +msgstr "Skicka privat meddelande." + +#: ../../mod/mail.php:226 ../../mod/mail.php:343 +msgid "To:" +msgstr "Till:" + +#: ../../mod/mail.php:231 ../../mod/mail.php:345 +msgid "Subject:" +msgstr "Ämne:" + +#: ../../mod/mail.php:242 +msgid "Send" +msgstr "Skicka" + +#: ../../mod/mail.php:269 +msgid "Message not found." +msgstr "Meddelandet hittades inte." + +#: ../../mod/mail.php:312 +msgid "Delete message" +msgstr "Ta bort meddelande" + +#: ../../mod/mail.php:313 +msgid "Recall message" +msgstr "Återkalla meddelande" + +#: ../../mod/mail.php:315 +msgid "Message has been recalled." +msgstr "Meddelandet har återkallats." + +#: ../../mod/mail.php:332 +msgid "Private Conversation" +msgstr "Privat konversation" + +#: ../../mod/mail.php:336 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "Ta bort konversation" + +#: ../../mod/mail.php:338 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida." + +#: ../../mod/mail.php:342 +msgid "Send Reply" +msgstr "Skicka svar" #: ../../mod/viewconnections.php:58 msgid "No connections." @@ -7705,10 +7753,6 @@ msgstr "Inga kontakter." msgid "Visit %s's profile [%s]" msgstr "Besök %ss profil [%s]" -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" -msgstr "Visa kontakter" - #: ../../mod/magic.php:70 msgid "Hub not found." msgstr "Hubb hittades inte." @@ -7725,31 +7769,10 @@ msgstr "Genomsnittsbetyg" msgid "OpenID protocol error. No ID returned." msgstr "Protokollfel för OpenID. Inget ID returnerades." -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:261 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Välkommen %s. Fjärrinloggning lyckades." - #: ../../mod/wall_upload.php:35 msgid "Wall Photos" msgstr "Väggfoton" -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profilträff" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "är intresserad av:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Inga träffar" - #: ../../mod/message.php:41 msgid "Conversation removed." msgstr "Konversation borttagen." @@ -7818,140 +7841,10 @@ msgstr "Sök efter xchan som börjar med (eller webbie): " msgid "invalid target signature" msgstr "ogiltig målsignatur" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Information om sidans ägare kunde inte hittas." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Albumet hittades inte." - -#: ../../mod/photos.php:119 ../../mod/photos.php:672 -msgid "Delete Album" -msgstr "Ta bort album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:955 -msgid "Delete Photo" -msgstr "Ta bort foto" - -#: ../../mod/photos.php:469 -msgid "No photos selected" -msgstr "Inga foton valda" - -#: ../../mod/photos.php:513 -msgid "Access to this item is restricted." -msgstr "Åtkomst till den här posten är begränsat." - -#: ../../mod/photos.php:552 +#: ../../mod/rate.php:146 #, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB av %2$.2f MB fotolagring använt." - -#: ../../mod/photos.php:555 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB fotolagring använt." - -#: ../../mod/photos.php:579 -msgid "Upload Photos" -msgstr "Ladda upp foton" - -#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:940 -msgid "Enter a new album name" -msgstr "Ange ett nytt albumnamn" - -#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:941 -msgid "or select an existing one (doubleclick)" -msgstr "eller välj ett befintligt (dubbelklicka)" - -#: ../../mod/photos.php:585 -msgid "Do not show a status post for this upload" -msgstr "Visa inte en statusuppdatering för den här uppladdningen" - -#: ../../mod/photos.php:613 -msgid "Album name could not be decoded" -msgstr "Albumnamn kunde inte tolkas" - -#: ../../mod/photos.php:654 ../../mod/photos.php:1164 -#: ../../mod/photos.php:1180 -msgid "Contact Photos" -msgstr "Kontaktfoton" - -#: ../../mod/photos.php:678 -msgid "Show Newest First" -msgstr "Visa nyast först" - -#: ../../mod/photos.php:680 -msgid "Show Oldest First" -msgstr "Visa äldst först" - -#: ../../mod/photos.php:704 ../../mod/photos.php:1212 -msgid "View Photo" -msgstr "Visa foto" - -#: ../../mod/photos.php:733 -msgid "Edit Album" -msgstr "Redigera album" - -#: ../../mod/photos.php:778 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Behörighet saknas. Åtkomst till den här posten kan vara begränsat." - -#: ../../mod/photos.php:780 -msgid "Photo not available" -msgstr "Foto inte tillgängligt" - -#: ../../mod/photos.php:838 -msgid "Use as profile photo" -msgstr "Använd som profilfoto" - -#: ../../mod/photos.php:845 -msgid "Private Photo" -msgstr "Privat foto" - -#: ../../mod/photos.php:860 -msgid "View Full Size" -msgstr "Visa fullstorlek" - -#: ../../mod/photos.php:934 -msgid "Edit photo" -msgstr "Redigera foto" - -#: ../../mod/photos.php:936 -msgid "Rotate CW (right)" -msgstr "Rotera medurs (höger)" - -#: ../../mod/photos.php:937 -msgid "Rotate CCW (left)" -msgstr "Rotera moturs (vänster)" - -#: ../../mod/photos.php:944 -msgid "Caption" -msgstr "Bildtext" - -#: ../../mod/photos.php:946 -msgid "Add a Tag" -msgstr "Lägg till en tagg" - -#: ../../mod/photos.php:950 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exempel: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../mod/photos.php:953 -msgid "Flag as adult in album view" -msgstr "Flagga som olämpligt för barn i albumvyn" - -#: ../../mod/photos.php:1130 -msgid "In This Photo:" -msgstr "På fotot:" - -#: ../../mod/photos.php:1218 -msgid "View Album" -msgstr "Visa album" - -#: ../../mod/photos.php:1241 -msgid "Recent Photos" -msgstr "Nya foton" +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Fjärrkanal [%s] (ännu inte känd på den här webbplatsen)" #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." @@ -7961,103 +7854,341 @@ msgstr "Kunde inte hitta din hubb." msgid "Post successful." msgstr "Sändning lyckades." -#: ../../mod/directory.php:201 +#: ../../mod/directory.php:188 ../../mod/profiles.php:728 +msgid "Age: " +msgstr "Ålder:" + +#: ../../mod/directory.php:194 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d betyg" +msgstr[1] "%d betyg" + +#: ../../mod/directory.php:206 msgid "Gender: " msgstr "Kön:" -#: ../../mod/directory.php:203 +#: ../../mod/directory.php:208 msgid "Status: " msgstr "Status: " -#: ../../mod/directory.php:205 +#: ../../mod/directory.php:210 msgid "Homepage: " msgstr "Hemsida: " -#: ../../mod/directory.php:208 +#: ../../mod/directory.php:213 msgid "Hometown: " msgstr "Hemort: " -#: ../../mod/directory.php:210 +#: ../../mod/directory.php:215 msgid "About: " msgstr "Om: " -#: ../../mod/directory.php:265 +#: ../../mod/directory.php:273 msgid "Public Forum:" msgstr "Offentligt forum:" -#: ../../mod/directory.php:268 +#: ../../mod/directory.php:276 msgid "Keywords: " msgstr "Nyckelord: " -#: ../../mod/directory.php:318 +#: ../../mod/directory.php:331 msgid "Finding:" msgstr "Sökning efter:" -#: ../../mod/directory.php:323 +#: ../../mod/directory.php:336 msgid "next page" msgstr "nästa sida" -#: ../../mod/directory.php:323 +#: ../../mod/directory.php:336 msgid "previous page" msgstr "föregående sida" -#: ../../mod/directory.php:340 +#: ../../mod/directory.php:353 msgid "No entries (some entries may be hidden)." msgstr "Inga resultat (vissa resultat kan vara dolda)." -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fjärrinloggning blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen." +#: ../../mod/ratings.php:68 +msgid "No ratings" +msgstr "Inga betyg" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installerad." +#: ../../mod/ratings.php:94 +msgid "Ratings" +msgstr "Betyg" -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Felaktig app." +#: ../../mod/ratings.php:95 +msgid "Rating: " +msgstr "Betyg: " -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Bädda in kod" +#: ../../mod/ratings.php:96 +msgid "Description: " +msgstr "Beskrivning: " -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Redigera app" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 +msgid "Profile not found." +msgstr "Profil hittades inte." -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Skapa app" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profil borttagen." -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Namn på app" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Adress (URL) för app" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Ny profil skapad." -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "Fotoikon URL" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profil inte tillgänglig för kloning." -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixlar - valfri" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Profil inte tillgänglig för export." -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versions-ID" +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." +msgstr "Profilnamn krävs." -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Pris på app" +#: ../../mod/profiles.php:404 +msgid "Marital Status" +msgstr "Civilstånd" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Adress (URL) för att köpa app" +#: ../../mod/profiles.php:408 +msgid "Romantic Partner" +msgstr "Romantisk partner" + +#: ../../mod/profiles.php:412 +msgid "Likes" +msgstr "Gillar" + +#: ../../mod/profiles.php:416 +msgid "Dislikes" +msgstr "Ogillar" + +#: ../../mod/profiles.php:420 +msgid "Work/Employment" +msgstr "Arbete/sysselsättning" + +#: ../../mod/profiles.php:423 +msgid "Religion" +msgstr "Religion" + +#: ../../mod/profiles.php:427 +msgid "Political Views" +msgstr "Politisk åskådning" + +#: ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Kön" + +#: ../../mod/profiles.php:435 +msgid "Sexual Preference" +msgstr "Sexuell preferens" + +#: ../../mod/profiles.php:439 +msgid "Homepage" +msgstr "Hemsida" + +#: ../../mod/profiles.php:443 +msgid "Interests" +msgstr "Intressen" + +#: ../../mod/profiles.php:537 +msgid "Profile updated." +msgstr "Profil uppdaterad." + +#: ../../mod/profiles.php:626 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Dölj din kontakt-/vänlista för de som ser den här profilen" + +#: ../../mod/profiles.php:666 +msgid "Edit Profile Details" +msgstr "Redigera profildetaljer" + +#: ../../mod/profiles.php:668 +msgid "View this profile" +msgstr "Visa den här profilen" + +#: ../../mod/profiles.php:670 +msgid "Change Profile Photo" +msgstr "Byt profilfoto" + +#: ../../mod/profiles.php:671 +msgid "Create a new profile using these settings" +msgstr "Skapa en ny profil utifrån de här inställningarna" + +#: ../../mod/profiles.php:672 +msgid "Clone this profile" +msgstr "Klona den här profilen" + +#: ../../mod/profiles.php:673 +msgid "Delete this profile" +msgstr "Ta bort den här profilen" + +#: ../../mod/profiles.php:675 +msgid "Import profile from file" +msgstr "Importera profil från fil" + +#: ../../mod/profiles.php:676 +msgid "Export profile to file" +msgstr "Exportera profil som fil" + +#: ../../mod/profiles.php:677 +msgid "Profile Name:" +msgstr "Profilnamn:" + +#: ../../mod/profiles.php:678 +msgid "Your Full Name:" +msgstr "Ditt fulllständiga namn:" + +#: ../../mod/profiles.php:679 +msgid "Title/Description:" +msgstr "Titel/beskrivning:" + +#: ../../mod/profiles.php:680 +msgid "Your Gender:" +msgstr "Ditt kön:" + +#: ../../mod/profiles.php:681 +msgid "Birthday :" +msgstr "Födelsedag:" + +#: ../../mod/profiles.php:682 +msgid "Street Address:" +msgstr "Gatuadress:" + +#: ../../mod/profiles.php:683 +msgid "Locality/City:" +msgstr "Ort:" + +#: ../../mod/profiles.php:684 +msgid "Postal/Zip Code:" +msgstr "Postnummer:" + +#: ../../mod/profiles.php:685 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:686 +msgid "Region/State:" +msgstr "Region:" + +#: ../../mod/profiles.php:687 +msgid " Marital Status:" +msgstr " Civilstånd:" + +#: ../../mod/profiles.php:688 +msgid "Who: (if applicable)" +msgstr "Vem: (om tillämpligt)" + +#: ../../mod/profiles.php:689 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exempel: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:690 +msgid "Since [date]:" +msgstr "Sedan [datum]" + +#: ../../mod/profiles.php:692 +msgid "Homepage URL:" +msgstr "Hemsideadress:" + +#: ../../mod/profiles.php:695 +msgid "Religious Views:" +msgstr "Religion/livsåskådning:" + +#: ../../mod/profiles.php:696 +msgid "Keywords:" +msgstr "Nyckelord:" + +#: ../../mod/profiles.php:699 +msgid "Example: fishing photography software" +msgstr "Exempel: fiske fotografering mjukvara" + +#: ../../mod/profiles.php:700 +msgid "Used in directory listings" +msgstr "Används i kataloglistningar" + +#: ../../mod/profiles.php:701 +msgid "Tell us about yourself..." +msgstr "Beskriv dig själv..." + +#: ../../mod/profiles.php:702 +msgid "Hobbies/Interests" +msgstr "Fritidssysselsättning/intressen" + +#: ../../mod/profiles.php:703 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformation och sociala nätverk" + +#: ../../mod/profiles.php:704 +msgid "My other channels" +msgstr "Mina andra kanaler" + +#: ../../mod/profiles.php:705 +msgid "Musical interests" +msgstr "Musikintressen" + +#: ../../mod/profiles.php:706 +msgid "Books, literature" +msgstr "Böcker, litteratur" + +#: ../../mod/profiles.php:707 +msgid "Television" +msgstr "Tv" + +#: ../../mod/profiles.php:708 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/kultur/underhållning" + +#: ../../mod/profiles.php:709 +msgid "Love/romance" +msgstr "Kärlek/romantik" + +#: ../../mod/profiles.php:710 +msgid "Work/employment" +msgstr "Arbete/sysselsättning" + +#: ../../mod/profiles.php:711 +msgid "School/education" +msgstr "Skola/utbildning" + +#: ../../mod/profiles.php:717 +msgid "This is your default profile." +msgstr "Det här är din standardprofil." + +#: ../../mod/profiles.php:771 +msgid "Edit/Manage Profiles" +msgstr "Redigera/hantera profiler" + +#: ../../mod/profiles.php:772 +msgid "Add profile things" +msgstr "Lägg till profilsaker" + +#: ../../mod/profiles.php:773 +msgid "Include desirable objects in your profile" +msgstr "Inkludera fina prylar i din profil" + +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ogiltigt profil-ID." + +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Redigera profilsynlighet" + +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klicka på en kontakt för att lägga till eller ta bort." + +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Kan ses av" #: ../../mod/poll.php:64 msgid "Poll" @@ -8099,6 +8230,18 @@ msgstr "Som standard tas bara instanser av kanaler som finns på den här server msgid "No service class restrictions found." msgstr "Inga tjänsteklassbegränsningar hittades." +#: ../../mod/sharedwithme.php:99 +msgid "Files: shared with me" +msgstr "Filer: delade med mig" + +#: ../../mod/sharedwithme.php:103 +msgid "Remove all files" +msgstr "Ta bort alla filer" + +#: ../../mod/sharedwithme.php:104 +msgid "Remove this file" +msgstr "Ta bort den här filen" + #: ../../view/theme/apw/php/config.php:202 #: ../../view/theme/apw/php/config.php:236 msgid "Schema Default" @@ -8367,41 +8510,41 @@ msgstr "Oordnade fotoalbum" msgid "Are you a clean desk or a messy desk person?" msgstr "Föredrar du ett tomt eller stökigt skrivbord?" -#: ../../boot.php:1347 +#: ../../boot.php:1355 #, php-format msgid "Update %s failed. See error logs." msgstr "Uppdatering %s misslyckades. Se felloggar." -#: ../../boot.php:1350 +#: ../../boot.php:1358 #, php-format msgid "Update Error at %s" msgstr "Uppdateringsfel på %s" -#: ../../boot.php:1517 +#: ../../boot.php:1525 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Skapa ett konto för att komma åt tjänster och applikationer inom Red Matrix" -#: ../../boot.php:1545 +#: ../../boot.php:1553 msgid "Password" msgstr "Lösenord" -#: ../../boot.php:1546 +#: ../../boot.php:1554 msgid "Remember me" msgstr "Kom ihåg mig" -#: ../../boot.php:1549 +#: ../../boot.php:1557 msgid "Forgot your password?" msgstr "Glömt lösenordet?" -#: ../../boot.php:1630 +#: ../../boot.php:1650 msgid "permission denied" msgstr "behörighet saknas" -#: ../../boot.php:1631 +#: ../../boot.php:1651 msgid "Got Zot?" msgstr "Got Zot?" -#: ../../boot.php:2114 +#: ../../boot.php:2134 msgid "toggle mobile" msgstr "växla mobil" From 9b1c09fe83bd0201c326059e6fe9e3823ae11f5b Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 8 Feb 2015 13:52:46 -0800 Subject: [PATCH 08/13] restrict "mark all events seen" to only the events that are presented in the notification view. --- mod/ping.php | 6 ++++-- version.inc | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/mod/ping.php b/mod/ping.php index c69f42a6f..6a89ad5cf 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -173,8 +173,10 @@ function ping_init(&$a) { ); break; case 'all_events': - $r = q("update event set `ignore` = 1 where `ignore` = 0 and uid = %d", - intval(local_channel()) + $r = q("update event set `ignore` = 1 where `ignore` = 0 and uid = %d AND start < '%s' AND start > '%s' ", + intval(local_channel()), + dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + ' . intval($evdays) . ' days')), + dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now - 1 days')) ); break; case 'notify': diff --git a/version.inc b/version.inc index f8cfd0a25..62703f886 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-02-06.937 +2015-02-08.939 From 7893b649552f23125835cd759ba00230b02a0ab3 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 8 Feb 2015 15:14:45 -0800 Subject: [PATCH 09/13] make default calendar view ambivalent to the state of the ignore flag. --- mod/events.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mod/events.php b/mod/events.php index 233447cb1..a34aa62ab 100755 --- a/mod/events.php +++ b/mod/events.php @@ -242,7 +242,7 @@ function events_content(&$a) { $mode = 'view'; $y = 0; $m = 0; - $ignored = ((x($_REQUEST,'ignored')) ? intval($_REQUEST['ignored']) : 0); + $ignored = ((x($_REQUEST,'ignored')) ? " and ignored = " . intval($_REQUEST['ignored']) . " " : ''); if(argc() > 1) { if(argc() > 2 && argv(1) == 'event') { @@ -338,11 +338,10 @@ function events_content(&$a) { $r = q("SELECT event.*, item.plink, item.item_flags, item.author_xchan, item.owner_xchan from event left join item on event_hash = resource_id - where resource_type = 'event' and event.uid = %d and event.ignore = %d + where resource_type = 'event' and event.uid = %d $ignored AND (( `adjust` = 0 AND ( `finish` >= '%s' or nofinish = 1 ) AND `start` <= '%s' ) OR ( `adjust` = 1 AND ( `finish` >= '%s' or nofinish = 1 ) AND `start` <= '%s' )) ", intval(local_channel()), - intval($ignored), dbesc($start), dbesc($finish), dbesc($adjust_start), From 64191de5e741fc1c365db45f197b2153c14e17c2 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 8 Feb 2015 18:31:51 -0800 Subject: [PATCH 10/13] generate the correct service permalink --- assets/home.html | 4 ++-- include/diaspora.php | 10 ++++------ include/network.php | 24 ++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 8 deletions(-) diff --git a/assets/home.html b/assets/home.html index d6f3b4da3..036f9bcc9 100644 --- a/assets/home.html +++ b/assets/home.html @@ -1,7 +1,7 @@ diff --git a/include/diaspora.php b/include/diaspora.php index 736be4f08..22574f9f8 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -772,7 +772,6 @@ function diaspora_request($importer,$xml) { - function diaspora_post($importer,$xml,$msg) { $a = get_app(); @@ -898,8 +897,8 @@ function diaspora_post($importer,$xml,$msg) { } - // this won't work for Friendica or Redmatrix but it's probably the best we can do. - $plink = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1).'/posts/'.$guid; + $plink = service_plink($contact,$guid); + $datarray['uid'] = $importer['channel_id']; @@ -1116,8 +1115,7 @@ function diaspora_reshare($importer,$xml,$msg) { } } - // This won't work on redmatrix - $plink = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1).'/posts/'.$guid; + $plink = service_plink($contact,$guid); $datarray['uid'] = $importer['channel_id']; $datarray['mid'] = $datarray['parent_mid'] = $guid; @@ -1198,7 +1196,7 @@ function diaspora_asphoto($importer,$xml,$msg) { return; } - $plink = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1).'/posts/'.$guid; + $plink = service_plink($contact,$guid); $datarray = array(); diff --git a/include/network.php b/include/network.php index 224d9d5e1..366ac0d24 100644 --- a/include/network.php +++ b/include/network.php @@ -1523,3 +1523,27 @@ function scrape_feed($url) { return $ret; } + + +function service_plink($contact, $guid) { + + $plink = ''; + + $m = parse_url($contact['xchan_url']); + if($m) { + $url = $scheme . '://' . $m['host'] . (($m['port']) ? ':' . $m['port'] : ''); + } + else + $url = 'https://' . substr($contact['xchan_addr'],strpos($contact['xchan_addr'],'@')+1); + + $handle = substr($contact['xchan_addr'], 0, strpos($contact['xchan_addr'],'@')); + + if($contact['xchan_network'] === 'diaspora') + $plink = $url . '/posts/' . $guid; + if($contact['xchan_network'] === 'friendica-over-diaspora') + $plink = $url . '/display/' . $handle . '/' . $guid; + if($contact['xchan_network'] === 'zot') + $plink = $url . '/channel/' . $handle . '?f=&mid=' . $guid; + + return $plink; +} From a1d84f96b6a0852b785a459279d7756aeaa90614 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 8 Feb 2015 19:25:35 -0800 Subject: [PATCH 11/13] first cut at putting editor tools in event form --- view/tpl/event_form.tpl | 65 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/view/tpl/event_form.tpl b/view/tpl/event_form.tpl index 444e77df7..4ce57798c 100755 --- a/view/tpl/event_form.tpl +++ b/view/tpl/event_form.tpl @@ -55,9 +55,74 @@
    {{$d_text}}
    + + + + + + + +{{if $qcomment}} + +{{/if}} +
    +
    +
    +
    + + + + + +
    + +
    + + + +
    + +
    + + +
    + + + + + + +
    {{$l_text}}

    From b8add899a22039697b1ea92d4a854f541ad8f7cb Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 8 Feb 2015 19:28:18 -0800 Subject: [PATCH 12/13] undo extra logging --- mod/item.php | 1 + 1 file changed, 1 insertion(+) diff --git a/mod/item.php b/mod/item.php index d8cbeadc7..6ae02b510 100644 --- a/mod/item.php +++ b/mod/item.php @@ -516,6 +516,7 @@ function item_post(&$a) { * First protect any url inside certain bbcode tags so we don't double link it. */ + $body = preg_replace_callback('/\[code(.*?)\[\/(code)\]/ism','red_escape_codeblock',$body); $body = preg_replace_callback('/\[url(.*?)\[\/(url)\]/ism','red_escape_codeblock',$body); $body = preg_replace_callback('/\[zrl(.*?)\[\/(zrl)\]/ism','red_escape_codeblock',$body); From 69894e28c48dabb1061b55156dbafc91f7c75ea1 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 8 Feb 2015 20:23:02 -0800 Subject: [PATCH 13/13] we still need an event preview but this looks a lot better. --- view/css/mod_events.css | 4 + view/js/mod_events.js | 14 ++- view/theme/redbasic/css/style.css | 2 +- view/tpl/event_form.tpl | 146 +++++++++++++++++++----------- view/tpl/event_head.tpl | 4 +- 5 files changed, 105 insertions(+), 65 deletions(-) diff --git a/view/css/mod_events.css b/view/css/mod_events.css index a029440cb..e2439e844 100644 --- a/view/css/mod_events.css +++ b/view/css/mod_events.css @@ -33,3 +33,7 @@ #event-nofinish-break { margin-bottom: 10px; } + +#event-desc-text, #event-location-text, .event-form-location-end { + margin-top: 15px; +} \ No newline at end of file diff --git a/view/js/mod_events.js b/view/js/mod_events.js index d4dc9b585..fc25e4331 100644 --- a/view/js/mod_events.js +++ b/view/js/mod_events.js @@ -1,14 +1,12 @@ $(document).ready( function() { showHideFinishDate(); }); -function showHideFinishDate() { - if( $('#id_nofinish').is(':checked')) - $('#event-finish-wrapper').hide(); - else - $('#event-finish-wrapper').show(); -} - - + function showHideFinishDate() { + if( $('#id_nofinish').is(':checked')) + $('#event-finish-wrapper').hide(); + else + $('#event-finish-wrapper').show(); + } function eventGetStart() { //reply = prompt("{{$expirewhen}}", $('#jot-expire').val()); diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 1aa7cc729..451c3b3ee 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1221,7 +1221,7 @@ nav .acpopup { } #event-desc-text, #event-location-text { - margin-top: 10px; + margin-top: 15px; margin-bottom: 5px; } #event-submit { diff --git a/view/tpl/event_form.tpl b/view/tpl/event_form.tpl index 4ce57798c..5ade55870 100755 --- a/view/tpl/event_form.tpl +++ b/view/tpl/event_form.tpl @@ -56,54 +56,38 @@
    {{$d_text}}
    - - - - - - - - - -{{if $qcomment}} - -{{/if}} -
    -
    + +
    +
    -
    - - - - - +
    + + + + +
    - - - + + +
    @@ -115,23 +99,77 @@ {{/if}} --> -
    - - - - - +
    +
    {{$l_text}}
    - -
    -
    {{$sh_text}}
    + + +
    +
    +
    +
    + + + + + +
    + +
    + + + +
    + +
    + + +
    + + + +
    +
    + + +
    + +
    +
    +
    + +
    + - {{$acl}} +{{$acl}}
    diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl index 830347555..11dba2f9d 100755 --- a/view/tpl/event_head.tpl +++ b/view/tpl/event_head.tpl @@ -118,9 +118,9 @@ $(document).ready(function() { - $('#event-share-checkbox').change(function() { + $('#id_share').change(function() { - if ($('#event-share-checkbox').is(':checked')) { + if ($('#id_share').is(':checked')) { $('#event-permissions-button').show(); } else {