From c7aa8bf1b4c2a7ca4d7bf1552aabcb0c0a54756e Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 1 Jan 2015 23:47:14 -0800 Subject: [PATCH 1/9] syntax issues (with some php versions?), unchecked intval --- boot.php | 16 ++++++++++++++++ mod/profiles.php | 22 +++++++++++++++------- 2 files changed, 31 insertions(+), 7 deletions(-) diff --git a/boot.php b/boot.php index 4e266f4f1..f57a6701c 100755 --- a/boot.php +++ b/boot.php @@ -2183,3 +2183,19 @@ function get_poller_runtime() { $t = get_config('system','lastpoll'); return relative_date($t); } + +function z_get_upload_dir() { + $upload_dir = get_config('system','uploaddir'); + if(! $upload_dir) + $upload_dir = ini_get('upload_tmp_dir'); + if(! $upload_dir) + $upload_dir = sys_get_temp_dir(); + return $upload_dir; +} + +function z_get_temp_dir() { + $temp_dir = get_config('system','tempdir'); + if(! $temp_dir) + $temp_dir = sys_get_temp_dir(); + return $upload_dir; +} \ No newline at end of file diff --git a/mod/profiles.php b/mod/profiles.php index 6bdc7f11a..fa6a6e35c 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -11,7 +11,7 @@ function profiles_init(&$a) { if((argc() > 2) && (argv(1) === "drop") && intval(argv(2))) { $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is_default` = 0 LIMIT 1", - intval($a->argv[2]), + intval(argv(2)), intval(local_user()) ); if(! count($r)) { @@ -159,9 +159,13 @@ function profiles_init(&$a) { if(((argc() > 1) && (intval(argv(1)))) || !feature_enabled(local_user(),'multi_profiles')) { if(feature_enabled(local_user(),'multi_profiles')) $id = $a->argv[1]; - else - $id = q("select id from profile where uid = %d and is_default = 1",local_user())[0]['id']; - + else { + $x = q("select id from profile where uid = %d and is_default = 1", + intval(local_user()) + ); + if($x) + $id = $x[0]['id']; + } $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($id), intval(local_user()) @@ -564,9 +568,13 @@ function profiles_content(&$a) { if(((argc() > 1) && (intval(argv(1)))) || !feature_enabled(local_user(),'multi_profiles')) { if(feature_enabled(local_user(),'multi_profiles')) $id = $a->argv[1]; - else - $id = q("select id from profile where uid = %d and is_default = 1",local_user())[0]['id']; - + else { + $x = q("select id from profile where uid = %d and is_default = 1", + intval(local_user()) + ); + if($x) + $id = $x[0]['id']; + } $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($id), intval(local_user()) From 6b5f8bfbe45740703de12ff3c5895a92c605cbda Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Fri, 2 Jan 2015 12:08:36 +0100 Subject: [PATCH 2/9] Sort acl results according to match position (only type='c' for now) --- mod/acl.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mod/acl.php b/mod/acl.php index 797a3633b..24f2a35e0 100644 --- a/mod/acl.php +++ b/mod/acl.php @@ -30,6 +30,9 @@ function acl_init(&$a){ $sql_extra = " AND `name` LIKE " . protect_sprintf( "'%" . dbesc($search) . "%'" ) . " "; $sql_extra2 = "AND ( xchan_name LIKE " . protect_sprintf( "'%" . dbesc($search) . "%'" ) . " OR xchan_addr LIKE " . protect_sprintf( "'%" . dbesc($search) . "%'" ) . ") "; + // This horrible mess is needed because position also returns 0 if nothing is found. W/ould be MUCH easier if it instead returned a very large value + // Otherwise we could just order by LEAST(POSTION($search IN xchan_name),POSITION($search IN xchan_addr)). + $order_extra2 = "CASE WHEN xchan_name LIKE " . protect_sprintf( "'%" . dbesc($search) . "%'" ) ." then POSITION('".dbesc($search)."' IN xchan_name) else position('".dbesc($search)."' IN xchan_addr) end, "; $col = ((strpos($search,'@') !== false) ? 'xchan_addr' : 'xchan_name' ); $sql_extra3 = "AND $col like " . protect_sprintf( "'%" . dbesc($search) . "%'" ) . " "; @@ -141,7 +144,7 @@ function acl_init(&$a){ if ($type=='' || $type=='c') { $r = q("SELECT abook_id as id, xchan_hash as hash, xchan_name as name, xchan_photo_s as micro, xchan_url as url, xchan_addr as nick, abook_their_perms, abook_flags FROM abook left join xchan on abook_xchan = xchan_hash - WHERE abook_channel = %d AND not ( abook_flags & %d )>0 and not (xchan_flags & %d )>0 $sql_extra2 order by xchan_name asc" , + WHERE abook_channel = %d AND not ( abook_flags & %d )>0 and not (xchan_flags & %d )>0 $sql_extra2 order by $order_extra2 xchan_name asc" , intval(local_user()), intval(ABOOK_FLAG_BLOCKED|ABOOK_FLAG_PENDING|ABOOK_FLAG_ARCHIVED), intval(XCHAN_FLAGS_DELETED) @@ -150,7 +153,7 @@ function acl_init(&$a){ if((! $r) && $type == 'c') { $r = q("SELECT substr(xchan_hash,1,18) as id, xchan_hash as hash, xchan_name as name, xchan_photo_s as micro, xchan_url as url, xchan_addr as nick, 0 as abook_their_perms, 0 as abook_flags FROM xchan - WHERE not (xchan_flags & %d )>0 $sql_extra2 order by xchan_name asc" , + WHERE not (xchan_flags & %d )>0 $sql_extra2 order by $order_extra2 xchan_name asc" , intval(XCHAN_FLAGS_DELETED) ); } From 53a26661141fcba123da22ff9d96459299d469e3 Mon Sep 17 00:00:00 2001 From: Erik Lundin Date: Fri, 2 Jan 2015 16:40:50 +0100 Subject: [PATCH 3/9] Use HTML entities --- assets/home.html | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/assets/home.html b/assets/home.html index 16baab838..2c3aa6e69 100644 --- a/assets/home.html +++ b/assets/home.html @@ -198,35 +198,35 @@ $(document).ready(function() { "Gratuit", null); else if (lang == "sv") // SWEDISH TRANSLATIONS - terms = new Array("Sekretess skalad för Internet", - "Socialt nätverkande", + terms = new Array("Sekretess skalad för Internet", + "Socialt nätverkande", "Single Sign-On", "Fotoalbum", "Decentraliserat", "Molnlagring", - "Ditt eget innehåll", + "Ditt eget innehåll", "Blogg", "End-to-end-kryptering", "Chattrum", - "Delbara tilläggsprogram", - "Kontrollera behörighet mellan webbplatser", - "Ångra privata meddelanden", + "Delbara tilläggsprogram", + "Kontrollera behörighet mellan webbplatser", + "Ångra privata meddelanden", "Skapa webbsidor", - "Innehållshantering", - "Tidsbegränsade meddelanden", + "Innehållshantering", + "Tidsbegränsade meddelanden", "Spel och verktyg", - "Inte styrt av företag", + "Inte styrt av företag", "Forum", "Gilla + Ogilla", - "Dela allt som är digitalt", + "Dela allt som är digitalt", "Kommunikation", - "Identitsmedvetet innehåll", + "Identitsmedvetet innehåll", "Pseudonymer", "Multipla identiteter", "Reklamfritt", - "Rich Text-inlägg/-kommentarer", - "Händelsekalender", - "Bokmärken", + "Rich Text-inlägg/-kommentarer", + "Händelsekalender", + "Bokmärken", "Gemensam taggning", "Speglad katalog", "Nomadisk identitet", @@ -236,15 +236,15 @@ $(document).ready(function() { "Sekretessgrupper", "Fildelning", "MIT-licens", - "Självständighet", - "Samhörighetsfiltrering", - "Vänförslag", - "Fjärrinloggning", + "Självständighet", + "Samhörighetsfiltrering", + "Vänförslag", + "Fjärrinloggning", "Teman", - "Tillägg", + "Tillägg", "Externt API", "Tredjepartsappar", - "Öppen källkod", + "Öppen källkod", null); // Find all
s with a class of "wrapper" and lang attribute equal @@ -347,7 +347,7 @@ Een van de traditionele problemen met onafhankelijke internetpublicaties is dat

-De RedMatrix is een supernetwerk bestaande uit een enorme hoeveelheid kleinere onafhankelijke en autonome websites, die aan elkaar gekoppeld een coöperatief publicatie en sociaal platform vormen. Het bestaat uit een opensource webapplicatie die een compleet gedecentraliseerd multi-user publicatie-, communicatie- en social media-systeem biedt, een “hub” geheten. Elke hub verzorgt de communicatie (privéberichten, chatten, bloggen, forums en een sociaal netwerk) en het mediabeheer (foto's, agenda, webpagina's en apps) voor zijn leden; alles in een functie-rijke omgeving. Deze hubs maken automatisch contact met elkaar en de rest van de matrix. Het individu blijft altijd directe controle houden over zijn/haar privacy en eigendom; en aan elk item in de gehele matrix kan aan wie dan ook toegang verleend of geweigerd worden. +De RedMatrix is een supernetwerk bestaande uit een enorme hoeveelheid kleinere onafhankelijke en autonome websites, die aan elkaar gekoppeld een coöperatief publicatie en sociaal platform vormen. Het bestaat uit een opensource webapplicatie die een compleet gedecentraliseerd multi-user publicatie-, communicatie- en social media-systeem biedt, een “hub” geheten. Elke hub verzorgt de communicatie (privéberichten, chatten, bloggen, forums en een sociaal netwerk) en het mediabeheer (foto's, agenda, webpagina's en apps) voor zijn leden; alles in een functie-rijke omgeving. Deze hubs maken automatisch contact met elkaar en de rest van de matrix. Het individu blijft altijd directe controle houden over zijn/haar privacy en eigendom; en aan elk item in de gehele matrix kan aan wie dan ook toegang verleend of geweigerd worden.

From ed2917118dd97df6b97c6ee34fe77b7f1818ffcd Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 2 Jan 2015 17:26:57 -0800 Subject: [PATCH 4/9] doc updates --- doc/html/apw_2php_2style_8php.html | 2 +- doc/html/boot_8php.html | 56 +- doc/html/boot_8php.js | 3 + ...atrix_1_1RedDAV_1_1RedBrowser-members.html | 7 +- ...lassRedMatrix_1_1RedDAV_1_1RedBrowser.html | 38 + .../classRedMatrix_1_1RedDAV_1_1RedBrowser.js | 1 + doc/html/datetime_8php.html | 81 +- doc/html/datetime_8php.js | 3 +- doc/html/features_8php.html | 4 +- doc/html/functions_0x67.html | 19 +- doc/html/functions_func_0x67.html | 19 +- doc/html/globals_0x66.html | 3 - doc/html/globals_0x67.html | 6 + doc/html/globals_0x70.html | 3 + doc/html/globals_0x72.html | 3 - doc/html/globals_0x73.html | 3 - doc/html/globals_0x74.html | 5 +- doc/html/globals_0x7a.html | 6 + doc/html/globals_func_0x66.html | 3 - doc/html/globals_func_0x67.html | 6 + doc/html/globals_func_0x72.html | 3 - doc/html/globals_func_0x73.html | 3 - doc/html/globals_func_0x74.html | 3 + doc/html/globals_func_0x7a.html | 6 + doc/html/globals_vars_0x70.html | 3 + doc/html/include_2config_8php.html | 2 +- doc/html/language_8php.html | 16 +- doc/html/navtree.js | 18 +- doc/html/navtreeindex0.js | 186 +- doc/html/navtreeindex1.js | 372 +- doc/html/navtreeindex2.js | 18 +- doc/html/navtreeindex3.js | 18 +- doc/html/navtreeindex4.js | 12 +- doc/html/navtreeindex5.js | 8 +- doc/html/navtreeindex6.js | 8 +- doc/html/navtreeindex7.js | 16 +- doc/html/navtreeindex8.js | 10 +- doc/html/navtreeindex9.js | 4 + doc/html/permissions_8php.html | 59 +- doc/html/permissions_8php.js | 2 +- doc/html/php2po_8php.html | 2 +- doc/html/plugin_8php.html | 2 +- doc/html/po2php_8php.html | 20 + doc/html/po2php_8php.js | 3 +- doc/html/search/all_66.js | 1 - doc/html/search/all_67.js | 3 + doc/html/search/all_70.js | 1 + doc/html/search/all_72.js | 1 - doc/html/search/all_73.js | 5 +- doc/html/search/all_74.js | 1 + doc/html/search/all_7a.js | 2 + doc/html/search/functions_66.js | 1 - doc/html/search/functions_67.js | 3 + doc/html/search/functions_72.js | 1 - doc/html/search/functions_73.js | 1 - doc/html/search/functions_74.js | 1 + doc/html/search/functions_7a.js | 2 + doc/html/search/variables_70.js | 1 + doc/html/text_8php.html | 4 +- doc/html/typo_8php.html | 2 +- doc/html/typohelper_8php.html | 2 +- util/messages.po | 4085 +++++++++-------- version.inc | 2 +- 63 files changed, 2644 insertions(+), 2540 deletions(-) diff --git a/doc/html/apw_2php_2style_8php.html b/doc/html/apw_2php_2style_8php.html index 47e0ac71d..b8dba6f3c 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_webbie(), RedMatrix\RedDAV\RedDirectory\childExists(), cloud_init(), common_init(), connedit_content(), construct_page(), consume_feed(), conversation(), RedMatrix\RedDAV\RedDirectory\createFile(), photo_gd\cropImage(), photo_imagick\cropImage(), decode_tags(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_mention_callback(), diaspora_request(), dir_tagadelic(), directory_content(), directory_run(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editwebpage_content(), email_header_encode(), encode_item(), encode_mail(), dba_postgres\escape(), event_store_item(), events_post(), expand_groups(), expire_run(), externals_run(), feature_enabled(), fetch_post_tags(), fetch_xrd_links(), filer_content(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), foofoo(), fsuggest_post(), get_all_perms(), get_diaspora_reshare_xml(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_mentions(), get_online_status(), get_profile_elements(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), get_system_apps(), get_terms_oftype(), get_theme_uid(), get_things(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getQuotaInfo(), gprobe_run(), handle_feed(), hcard_init(), hostxrd_init(), ids_to_querystr(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_xchan(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_content(), invite_post(), item_post(), item_remove_cid(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), locs_content(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), mark_orphan_hubsxchans(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), netgrowth_content(), network_content(), new_channel_init(), new_contact(), notification(), notifications_off(), notifications_on(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_init(), parse_app_description(), parse_xml_string(), pdledit_content(), pemtome(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), 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(), send_status_notifications(), service_limits_content(), share_init(), share_unshield(), site_default_perms(), smilies(), sources_content(), sslify_init(), photo_driver\store(), store_diaspora_comment_sig(), string_splitter(), stringify_array_elms(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), thing_content(), toggle_theme(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_directory_entry(), update_imported_item(), upgrade_bool_message(), upgrade_message(), valid_email(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), webpages_content(), what_next(), widget_affinity(), widget_bookmarkedchats(), widget_suggestedchats(), widget_suggestions(), xchan_query(), xmlify(), zfinger_init(), zot_build_packet(), zot_encode_locations(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

+

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

diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index df96a83cf..96d0dc31f 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -229,6 +229,10 @@ Functions  get_poller_runtime ()  return relative date of last completed poller execution More...
  + z_get_upload_dir () +  + z_get_temp_dir () +  @@ -352,6 +356,8 @@ Variables + + @@ -1224,7 +1230,7 @@ Variables

return relative date of last completed poller execution

-

Referenced by siteinfo_content(), and siteinfo_init().

+

Referenced by siteinfo_content().

@@ -1688,7 +1694,37 @@ Variables
Returns
bool|int
-

Referenced by FriendicaSmarty\__construct(), App\__construct(), account_service_class_fetch(), acl_init(), admin_page_channels_post(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_themes(), admin_page_users_post(), api_content(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_format_messages(), api_get_user(), api_login(), api_post(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_user(), app_store(), app_update(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), bookmark_add(), App\build_pagehead(), channel_content(), chatsvc_content(), check_form_security_token(), cli_startup(), cloud_init(), connections_content(), connections_post(), connedit_content(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), current_theme(), current_theme_url(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), diaspora_asphoto(), diaspora_conversation(), diaspora_message(), dir_sort_links(), directory_content(), directory_init(), dirsearch_content(), discover_by_url(), display_content(), encode_rel_links(), event_addtocal(), events_content(), events_post(), feed_init(), filerm_content(), filestorage_post(), get_atom_elements(), get_browser_language(), get_item_elements(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), group_side(), home_content(), import_post(), import_xchan(), info(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), load_contact_links(), local_user(), lostpass_content(), magic_init(), mail_content(), mail_post(), mail_store(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_content(), new_cookie(), notice(), oexchange_content(), openid_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), post_init(), probe_content(), proc_run(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_post(), rbmark_content(), rbmark_post(), red_item_new(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeaccount_post(), removeme_post(), rpost_content(), scrape_feed(), script_path(), search_ac_init(), search_content(), search_init(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), suggest_init(), t(), tagrm_post(), App\template_engine(), tt(), validate_channelname(), wall_upload_post(), webfinger_content(), wfinger_init(), widget_affinity(), widget_categories(), widget_filer(), widget_savedsearch(), widget_tagcloud(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().

+

Referenced by FriendicaSmarty\__construct(), App\__construct(), account_service_class_fetch(), acl_init(), admin_page_channels_post(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_themes(), admin_page_users_post(), api_content(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_format_messages(), api_get_user(), api_login(), api_post(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_user(), app_store(), app_update(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), bookmark_add(), App\build_pagehead(), channel_content(), chatsvc_content(), check_form_security_token(), cli_startup(), cloud_init(), connections_content(), connections_post(), connedit_content(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), current_theme(), current_theme_url(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), diaspora_asphoto(), diaspora_conversation(), diaspora_message(), dir_sort_links(), directory_content(), directory_init(), dirsearch_content(), discover_by_url(), display_content(), encode_rel_links(), event_addtocal(), events_content(), events_post(), feed_init(), filerm_content(), filestorage_post(), get_atom_elements(), get_browser_language(), get_item_elements(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), get_timezones(), group_add(), group_rmv(), group_side(), home_content(), import_post(), import_xchan(), info(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), load_contact_links(), local_user(), lostpass_content(), magic_init(), mail_content(), mail_post(), mail_store(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_content(), new_cookie(), notice(), oexchange_content(), openid_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), post_init(), probe_content(), proc_run(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_post(), rbmark_content(), rbmark_post(), red_item_new(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeaccount_post(), removeme_post(), rpost_content(), scrape_feed(), script_path(), search_ac_init(), search_content(), search_init(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), suggest_init(), t(), tagrm_post(), App\template_engine(), tt(), validate_channelname(), wall_upload_post(), webfinger_content(), wfinger_init(), widget_affinity(), widget_categories(), widget_filer(), widget_savedsearch(), widget_tagcloud(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().

+ + + + +
+
+

Variables

 
const PHOTO_ADULT 0x0008
 
const PHOTO_FLAG_OS 0x4000
 
const MENU_SYSTEM 0x0001
 
const MENU_BOOKMARK 0x0002
+ + + + + + +
z_get_temp_dir ()
+
+ +
+ + +
+
+ + + + + + + +
z_get_upload_dir ()
+
@@ -3366,7 +3402,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(), 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(), get_language_name(), 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_init(), 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(), 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_init(), 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().

@@ -4331,7 +4367,7 @@ Variables @@ -4642,6 +4678,18 @@ Variables

Referenced by photos_content(), and photos_post().

+ + + +
+
+ + + + +
const PHOTO_FLAG_OS 0x4000
+
+
diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js index d6041b858..af99f9851 100644 --- a/doc/html/boot_8php.js +++ b/doc/html/boot_8php.js @@ -41,6 +41,8 @@ var boot_8php = [ "startup", "boot_8php.html#aca47505b8732177f52bb2d647eb2741c", null ], [ "system_unavailable", "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0", null ], [ "x", "boot_8php.html#ae97836b0547953be182a2334c9c91d3c", null ], + [ "z_get_temp_dir", "boot_8php.html#a59717d02602a4babf2a54da8b33d93a5", null ], + [ "z_get_upload_dir", "boot_8php.html#a476c499e15caf75972fed134a8f23b2e", null ], [ "z_path", "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda", null ], [ "z_root", "boot_8php.html#add517a0958ac684792c62142a3877f81", null ], [ "$DIRECTORY_FALLBACK_SERVERS", "boot_8php.html#a107d53f96acf5319905a34b1870db09a", null ], @@ -254,6 +256,7 @@ var boot_8php = [ "PERMS_W_TAGWALL", "boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777", null ], [ "PERMS_W_WALL", "boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2", null ], [ "PHOTO_ADULT", "boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0", null ], + [ "PHOTO_FLAG_OS", "boot_8php.html#ab49a5d43ce1150c5af8c750ccb14e15f", null ], [ "PHOTO_NORMAL", "boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4", null ], [ "PHOTO_PROFILE", "boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0", null ], [ "PHOTO_THING", "boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383", null ], diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser-members.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser-members.html index 34718ac8d..489d61569 100644 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser-members.html +++ b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser-members.html @@ -118,9 +118,10 @@ $(document).ready(function(){initNavTree('classRedMatrix_1_1RedDAV_1_1RedBrowser findAttachIdByHash($attachHash)RedMatrix\RedDAV\RedBrowserprotected generateDirectoryIndex($path)RedMatrix\RedDAV\RedBrowser getAssetUrl($assetName)RedMatrix\RedDAV\RedBrowserprotected - htmlActionsPanel(DAV\INode $node, &$output)RedMatrix\RedDAV\RedBrowser - set_writeable()RedMatrix\RedDAV\RedBrowser - userReadableSize($size)RedMatrix\RedDAV\RedBrowser + getIconFromType($type)RedMatrix\RedDAV\RedBrowserprotected + htmlActionsPanel(DAV\INode $node, &$output)RedMatrix\RedDAV\RedBrowser + set_writeable()RedMatrix\RedDAV\RedBrowser + userReadableSize($size)RedMatrix\RedDAV\RedBrowser diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.html b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.html index 7c2e573d5..95f63702d 100644 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.html +++ b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.html @@ -147,6 +147,9 @@ Public Member Functions Protected Member Functions  getAssetUrl ($assetName)   + getIconFromType ($type) + returns icon name for use with e.g. font-awesome based on mime-type More...
+   findAttachHash ($owner, $parentHash, $attachName)  Return the hash of an attachment. More...
  @@ -338,6 +341,41 @@ Private Attributes

Referenced by RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex().

+ + + +
+
+ + + + + +
+ + + + + + + + +
RedMatrix\RedDAV\RedBrowser::getIconFromType ( $type)
+
+protected
+
+ +

returns icon name for use with e.g. font-awesome based on mime-type

+
Parameters
+ + +
string$type
+
+
+
Returns
string
+ +

Referenced by RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex().

+
diff --git a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.js b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.js index 88eb33d70..79397d288 100644 --- a/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.js +++ b/doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.js @@ -5,6 +5,7 @@ var classRedMatrix_1_1RedDAV_1_1RedBrowser = [ "findAttachIdByHash", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a0733e38e254474d9a456825e72f1ddfd", null ], [ "generateDirectoryIndex", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#af764d5f14df751f9ec86c34fab300c09", null ], [ "getAssetUrl", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#acaa792c08d24e9dc2919759e92ba037d", null ], + [ "getIconFromType", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a810af4506cb3247e0ea7b0c4accbbc7a", null ], [ "htmlActionsPanel", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a3bd98af2d1cdfd8f26deb914596176cf", null ], [ "set_writeable", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#aa1607857cb59738c4dce2fe8e73d8f19", null ], [ "userReadableSize", "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a242ce69a2fe5a5fdf9c2b8d3954accfd", null ], diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html index 111683343..26ce4f177 100644 --- a/doc/html/datetime_8php.html +++ b/doc/html/datetime_8php.html @@ -114,10 +114,8 @@ $(document).ready(function(){initNavTree('datetime_8php.html','');}); Functions  timezone_cmp ($a, $b)   - select_timezone ($current= 'America/Los_Angeles') -  - field_timezone ($name='timezone', $label='', $current= 'America/Los_Angeles', $help) -  + get_timezones () +   datetime_convert ($from= 'UTC', $to= 'UTC', $s= 'now', $fmt="Y-m-d H:i:s")    dob ($dob) @@ -414,46 +412,6 @@ Functions

Referenced by profiles_content().

- - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
field_timezone ( $name = 'timezone',
 $label = '',
 $current = 'America/Los_Angeles',
 $help 
)
-
- -

Referenced by setup_content().

-
@@ -510,6 +468,23 @@ Functions

Referenced by cal().

+ + + +
+
+ + + + + + + +
get_timezones ()
+
+ +

Referenced by setup_content().

+
@@ -538,24 +513,6 @@ Functions

Referenced by advanced_profile(), connedit_content(), conversation(), format_notification(), get_poller_runtime(), Item\get_template_data(), notifications_content(), notify_content(), and ping_init().

- - - -
-
- - - - - - - - -
select_timezone ( $current = 'America/Los_Angeles')
-
- -

Referenced by field_timezone().

-
diff --git a/doc/html/datetime_8php.js b/doc/html/datetime_8php.js index 7fdf58cfd..bca9ee938 100644 --- a/doc/html/datetime_8php.js +++ b/doc/html/datetime_8php.js @@ -6,11 +6,10 @@ var datetime_8php = [ "datetime_convert", "datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226", null ], [ "datetimesel", "datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3", null ], [ "dob", "datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8", null ], - [ "field_timezone", "datetime_8php.html#a03900dcf0f9e3c58793a031673a70326", null ], [ "get_dim", "datetime_8php.html#a7df24d72ea05922d3127363e2295174c", null ], [ "get_first_dim", "datetime_8php.html#aba971b67f17fecf050813f1eba72367f", null ], + [ "get_timezones", "datetime_8php.html#afbb34604d0f6e7d2103da4f42e2487b1", null ], [ "relative_date", "datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82", null ], - [ "select_timezone", "datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f", null ], [ "timesel", "datetime_8php.html#a3f239f94e23335d860b148958d87a093", null ], [ "timezone_cmp", "datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865", null ], [ "update_birthdays", "datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826", null ], diff --git a/doc/html/features_8php.html b/doc/html/features_8php.html index cbd3e1603..7ec917b62 100644 --- a/doc/html/features_8php.html +++ b/doc/html/features_8php.html @@ -142,7 +142,7 @@ Functions @@ -159,6 +159,8 @@ Functions
+

Referenced by settings_post().

+
diff --git a/doc/html/functions_0x67.html b/doc/html/functions_0x67.html index b75070e82..c100ff9b0 100644 --- a/doc/html/functions_0x67.html +++ b/doc/html/functions_0x67.html @@ -306,9 +306,9 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');}); : RedMatrix\RedDAV\RedDirectory
  • getdriver() -: dba_mysqli -, dba_postgres +: dba_postgres , dba_mysql +, dba_mysqli , dba_driver
  • getETag() @@ -320,18 +320,21 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');});
  • getHeight() : photo_driver
  • +
  • getIconFromType() +: RedMatrix\RedDAV\RedBrowser +
  • getImage() -: photo_gd +: photo_driver +, photo_gd , photo_imagick -, photo_driver
  • getLastModified() -: RedMatrix\RedDAV\RedDirectory -, RedMatrix\RedDAV\RedFile +: RedMatrix\RedDAV\RedFile +, RedMatrix\RedDAV\RedDirectory
  • getName() -: RedMatrix\RedDAV\RedDirectory -, RedMatrix\RedDAV\RedFile +: RedMatrix\RedDAV\RedFile +, RedMatrix\RedDAV\RedDirectory
  • getQuotaInfo() : RedMatrix\RedDAV\RedDirectory diff --git a/doc/html/functions_func_0x67.html b/doc/html/functions_func_0x67.html index ee6f7d6fc..206c53287 100644 --- a/doc/html/functions_func_0x67.html +++ b/doc/html/functions_func_0x67.html @@ -305,9 +305,9 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');}); : RedMatrix\RedDAV\RedDirectory
  • getdriver() -: dba_mysqli -, dba_postgres +: dba_postgres , dba_mysql +, dba_mysqli , dba_driver
  • getETag() @@ -319,18 +319,21 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');});
  • getHeight() : photo_driver
  • +
  • getIconFromType() +: RedMatrix\RedDAV\RedBrowser +
  • getImage() -: photo_gd +: photo_driver +, photo_gd , photo_imagick -, photo_driver
  • getLastModified() -: RedMatrix\RedDAV\RedDirectory -, RedMatrix\RedDAV\RedFile +: RedMatrix\RedDAV\RedFile +, RedMatrix\RedDAV\RedDirectory
  • getName() -: RedMatrix\RedDAV\RedDirectory -, RedMatrix\RedDAV\RedFile +: RedMatrix\RedDAV\RedFile +, RedMatrix\RedDAV\RedDirectory
  • getQuotaInfo() : RedMatrix\RedDAV\RedDirectory diff --git a/doc/html/globals_0x66.html b/doc/html/globals_0x66.html index b88d3b72a..8557076c6 100644 --- a/doc/html/globals_0x66.html +++ b/doc/html/globals_0x66.html @@ -168,9 +168,6 @@ $(document).ready(function(){initNavTree('globals_0x66.html','');});
  • fetch_xrd_links() : network.php
  • -
  • field_timezone() -: datetime.php -
  • file_tag_decode() : taxonomy.php
  • diff --git a/doc/html/globals_0x67.html b/doc/html/globals_0x67.html index 9ecceb2f0..6f5a7ac19 100644 --- a/doc/html/globals_0x67.html +++ b/doc/html/globals_0x67.html @@ -318,6 +318,9 @@ $(document).ready(function(){initNavTree('globals_0x67.html','');});
  • get_role_perms() : permissions.php
  • +
  • get_roles() +: permissions.php +
  • get_rpost_path() : zot.php
  • @@ -348,6 +351,9 @@ $(document).ready(function(){initNavTree('globals_0x67.html','');});
  • get_things() : taxonomy.php
  • +
  • get_timezones() +: datetime.php +
  • get_words() : spam.php
  • diff --git a/doc/html/globals_0x70.html b/doc/html/globals_0x70.html index c4c0eaf40..2f99e443d 100644 --- a/doc/html/globals_0x70.html +++ b/doc/html/globals_0x70.html @@ -315,6 +315,9 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
  • photo_factory() : photo_driver.php
  • +
  • PHOTO_FLAG_OS +: boot.php +
  • photo_init() : photo.php
  • diff --git a/doc/html/globals_0x72.html b/doc/html/globals_0x72.html index 3c64e1a56..26138e9bd 100644 --- a/doc/html/globals_0x72.html +++ b/doc/html/globals_0x72.html @@ -369,9 +369,6 @@ $(document).ready(function(){initNavTree('globals_0x72.html','');});
  • rmagic_post() : rmagic.php
  • -
  • role_selector() -: permissions.php -
  • rpost_callback() : bbcode.php
  • diff --git a/doc/html/globals_0x73.html b/doc/html/globals_0x73.html index 03522e36b..dadbc4e5d 100644 --- a/doc/html/globals_0x73.html +++ b/doc/html/globals_0x73.html @@ -177,9 +177,6 @@ $(document).ready(function(){initNavTree('globals_0x73.html','');});
  • searchbox() : text.php
  • -
  • select_timezone() -: datetime.php -
  • send_message() : message.php
  • diff --git a/doc/html/globals_0x74.html b/doc/html/globals_0x74.html index 2580271b1..791885bd4 100644 --- a/doc/html/globals_0x74.html +++ b/doc/html/globals_0x74.html @@ -247,7 +247,7 @@ $(document).ready(function(){initNavTree('globals_0x74.html','');}); : plugin.php
  • theme_post() -: config.php +: config.php
  • theme_status() : admin.php @@ -282,6 +282,9 @@ $(document).ready(function(){initNavTree('globals_0x74.html','');});
  • translate_system_apps() : apps.php
  • +
  • trim_message() +: po2php.php +
  • tryoembed() : bbcode.php
  • diff --git a/doc/html/globals_0x7a.html b/doc/html/globals_0x7a.html index 955f88faa..7fcd3ebdf 100644 --- a/doc/html/globals_0x7a.html +++ b/doc/html/globals_0x7a.html @@ -150,6 +150,12 @@ $(document).ready(function(){initNavTree('globals_0x7a.html','');});
  • z_fetch_url() : network.php
  • +
  • z_get_temp_dir() +: boot.php +
  • +
  • z_get_upload_dir() +: boot.php +
  • z_input_filter() : text.php
  • diff --git a/doc/html/globals_func_0x66.html b/doc/html/globals_func_0x66.html index d3d48d48a..66d299ca1 100644 --- a/doc/html/globals_func_0x66.html +++ b/doc/html/globals_func_0x66.html @@ -167,9 +167,6 @@ $(document).ready(function(){initNavTree('globals_func_0x66.html','');});
  • fetch_xrd_links() : network.php
  • -
  • field_timezone() -: datetime.php -
  • file_tag_decode() : taxonomy.php
  • diff --git a/doc/html/globals_func_0x67.html b/doc/html/globals_func_0x67.html index 7b9781032..3ba270db9 100644 --- a/doc/html/globals_func_0x67.html +++ b/doc/html/globals_func_0x67.html @@ -317,6 +317,9 @@ $(document).ready(function(){initNavTree('globals_func_0x67.html','');});
  • get_role_perms() : permissions.php
  • +
  • get_roles() +: permissions.php +
  • get_rpost_path() : zot.php
  • @@ -347,6 +350,9 @@ $(document).ready(function(){initNavTree('globals_func_0x67.html','');});
  • get_things() : taxonomy.php
  • +
  • get_timezones() +: datetime.php +
  • get_words() : spam.php
  • diff --git a/doc/html/globals_func_0x72.html b/doc/html/globals_func_0x72.html index 5b0182fcb..59369194b 100644 --- a/doc/html/globals_func_0x72.html +++ b/doc/html/globals_func_0x72.html @@ -323,9 +323,6 @@ $(document).ready(function(){initNavTree('globals_func_0x72.html','');});
  • rmagic_post() : rmagic.php
  • -
  • role_selector() -: permissions.php -
  • rpost_callback() : bbcode.php
  • diff --git a/doc/html/globals_func_0x73.html b/doc/html/globals_func_0x73.html index dd80318c2..2cd598b41 100644 --- a/doc/html/globals_func_0x73.html +++ b/doc/html/globals_func_0x73.html @@ -176,9 +176,6 @@ $(document).ready(function(){initNavTree('globals_func_0x73.html','');});
  • searchbox() : text.php
  • -
  • select_timezone() -: datetime.php -
  • send_message() : message.php
  • diff --git a/doc/html/globals_func_0x74.html b/doc/html/globals_func_0x74.html index 6723ca6b5..6c8d64872 100644 --- a/doc/html/globals_func_0x74.html +++ b/doc/html/globals_func_0x74.html @@ -230,6 +230,9 @@ $(document).ready(function(){initNavTree('globals_func_0x74.html','');});
  • translate_system_apps() : apps.php
  • +
  • trim_message() +: po2php.php +
  • tryoembed() : bbcode.php
  • diff --git a/doc/html/globals_func_0x7a.html b/doc/html/globals_func_0x7a.html index dc104b249..edcfe475d 100644 --- a/doc/html/globals_func_0x7a.html +++ b/doc/html/globals_func_0x7a.html @@ -149,6 +149,12 @@ $(document).ready(function(){initNavTree('globals_func_0x7a.html','');});
  • z_fetch_url() : network.php
  • +
  • z_get_temp_dir() +: boot.php +
  • +
  • z_get_upload_dir() +: boot.php +
  • z_input_filter() : text.php
  • diff --git a/doc/html/globals_vars_0x70.html b/doc/html/globals_vars_0x70.html index 956ed7d82..549605d29 100644 --- a/doc/html/globals_vars_0x70.html +++ b/doc/html/globals_vars_0x70.html @@ -254,6 +254,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x70.html','');});
  • PHOTO_ADULT : boot.php
  • +
  • PHOTO_FLAG_OS +: boot.php +
  • PHOTO_NORMAL : boot.php
  • diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index 8807a676d..a965b5ee5 100644 --- a/doc/html/include_2config_8php.html +++ b/doc/html/include_2config_8php.html @@ -340,7 +340,7 @@ Functions
    Returns
    mixed Return value or false on error or if not set
    -

    Referenced by account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), 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(), 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_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), RedMatrix\RedDAV\RedFile\put(), 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_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

    +

    Referenced by account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), 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(), 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_init(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), RedMatrix\RedDAV\RedFile\put(), 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().

    diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index df5ee1a79..939a2b1d0 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -138,7 +138,6 @@ Functions  Takes a string and tries to identify the language. More...
       get_language_name ($s, $l=null) - Returns the display name of a given language code. More...
     

    Detailed Description

    @@ -244,18 +243,7 @@ Functions
    -

    Returns the display name of a given language code.

    -

    By default we use the localized language name. You can switch the result to any language with the optional 2nd parameter $l.

    -

    $s and $l can be in any format that PHP's Locale understands. We will mostly use the 2-letter ISO 639-1 (en, de, fr) format.

    -

    If nothing could be looked up it returns $s.

    -
    Parameters
    - - - -
    $sLanguage code to look up
    $l(optional) In which language to return the name
    -
    -
    -
    Returns
    string with the language name, or $s if unrecognized
    +

    Referenced by lang_selector().

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

    +

    Referenced by account_remove(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), app_render(), app_store(), app_update(), appman_content(), appman_post(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bb2diaspora_itembody(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), bookmarks_init(), catblock(), categories_widget(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatsvc_content(), check_account_email(), check_account_invite(), check_config(), check_form_security_std_err_msg(), check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), check_smarty3(), check_store(), cloud_init(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), conversation(), create_account(), create_identity(), day_translate(), delegate_content(), design_tools(), diaspora_like(), dir_safe_mode(), dir_sort_links(), dir_tagblock(), directory_content(), dirsearch_content(), display_content(), dob(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store_item(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), foofoo(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), gender_selector_min(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), get_roles(), Item\get_template_data(), get_timezones(), RedMatrix\RedDAV\RedBrowser\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(), 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(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_scope(), translate_system_apps(), uexport_content(), update_birthdays(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_approve(), user_deny(), validate_channelname(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_photo(), widget_photo_rand(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), wtagblock(), xchan_content(), z_readdir(), and zfinger_init().

    diff --git a/doc/html/navtree.js b/doc/html/navtree.js index 788512356..2e466d088 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#a52b599cd13e152ebc80d7e4413683195", -"classApp.html#a3d84af5e42082098672531cd1a618853", -"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e", -"datetime_8php.html#aea356409ba69f9de412298c998595dd2", -"globals_0x5f.html", -"include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3", -"mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d", -"reddav_8php.html", -"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54" +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa", +"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c", +"classTemplate.html#a285b5b2007dbbf733476273df3fed4ef", +"datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df", +"functions_vars.html", +"include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639", +"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518", +"redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459", +"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index eddcedff6..271d739f4 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -150,104 +150,104 @@ 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,149], -"boot_8php.html#a0209e605028a5bb492683951ab30d49d":[6,0,4,310], -"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,163], -"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,268], -"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,141], -"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[6,0,4,59], -"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,182], -"boot_8php.html#a0450389f24c632906fbc24347700a543":[6,0,4,50], -"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[6,0,4,114], +"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[6,0,4,151], +"boot_8php.html#a0209e605028a5bb492683951ab30d49d":[6,0,4,313], +"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,165], +"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,271], +"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,143], +"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[6,0,4,61], +"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,184], +"boot_8php.html#a0450389f24c632906fbc24347700a543":[6,0,4,52], +"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[6,0,4,116], "boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[6,0,4,1], -"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,224], -"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[6,0,4,74], -"boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3":[6,0,4,301], -"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[6,0,4,186], -"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,288], -"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,284], -"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,287], +"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,226], +"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[6,0,4,76], +"boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3":[6,0,4,304], +"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[6,0,4,188], +"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,291], +"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,287], +"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,290], "boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[6,0,4,23], -"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[6,0,4,66], +"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[6,0,4,68], "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[6,0,4,15], -"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[6,0,4,84], -"boot_8php.html#a107d53f96acf5319905a34b1870db09a":[6,0,4,43], -"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,273], -"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,143], -"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,272], -"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[6,0,4,88], -"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[6,0,4,85], -"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[6,0,4,213], -"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[6,0,4,69], -"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[6,0,4,162], -"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[6,0,4,158], -"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[6,0,4,185], -"boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[6,0,4,152], -"boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71":[6,0,4,300], -"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,307], -"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,262], -"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,309], -"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[6,0,4,189], -"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[6,0,4,83], -"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[6,0,4,239], -"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[6,0,4,116], -"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[6,0,4,169], -"boot_8php.html#a205d013103997adfa72953d2f20c01e1":[6,0,4,233], -"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[6,0,4,206], -"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,264], -"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[6,0,4,44], +"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[6,0,4,86], +"boot_8php.html#a107d53f96acf5319905a34b1870db09a":[6,0,4,45], +"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,276], +"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,145], +"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,275], +"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[6,0,4,90], +"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[6,0,4,87], +"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[6,0,4,215], +"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[6,0,4,71], +"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[6,0,4,164], +"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[6,0,4,160], +"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[6,0,4,187], +"boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[6,0,4,154], +"boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71":[6,0,4,303], +"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,310], +"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,265], +"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,312], +"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[6,0,4,191], +"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[6,0,4,85], +"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[6,0,4,241], +"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[6,0,4,118], +"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[6,0,4,171], +"boot_8php.html#a205d013103997adfa72953d2f20c01e1":[6,0,4,235], +"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[6,0,4,208], +"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,267], +"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[6,0,4,46], "boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[6,0,4,22], -"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[6,0,4,109], -"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[6,0,4,99], -"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,276], -"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,209], -"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[6,0,4,90], -"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[6,0,4,142], -"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[6,0,4,237], -"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[6,0,4,117], -"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,260], -"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,205], -"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,138], -"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[6,0,4,75], -"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[6,0,4,80], +"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[6,0,4,111], +"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[6,0,4,101], +"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,279], +"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,211], +"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[6,0,4,92], +"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[6,0,4,144], +"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[6,0,4,239], +"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[6,0,4,119], +"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,263], +"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,207], +"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,140], +"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[6,0,4,77], +"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[6,0,4,82], "boot_8php.html#a329400dcb29897cdaae3020109272285":[6,0,4,17], -"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[6,0,4,244], -"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[6,0,4,156], -"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[6,0,4,47], -"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[6,0,4,131], -"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[6,0,4,171], -"boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[6,0,4,220], -"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,314], -"boot_8php.html#a37281c30bd92cecb499878d6778c570f":[6,0,4,299], -"boot_8php.html#a37ddabc112db443b4c67fbc0f708817e":[6,0,4,103], -"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[6,0,4,194], -"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[6,0,4,120], -"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[6,0,4,125], -"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,313], -"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,191], -"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,235], +"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[6,0,4,246], +"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[6,0,4,158], +"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[6,0,4,49], +"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[6,0,4,133], +"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[6,0,4,173], +"boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[6,0,4,222], +"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,317], +"boot_8php.html#a37281c30bd92cecb499878d6778c570f":[6,0,4,302], +"boot_8php.html#a37ddabc112db443b4c67fbc0f708817e":[6,0,4,105], +"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[6,0,4,196], +"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[6,0,4,122], +"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[6,0,4,127], +"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,316], +"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,193], +"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,237], "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[6,0,4,12], -"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[6,0,4,67], -"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[6,0,4,97], -"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[6,0,4,57], -"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[6,0,4,145], -"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[6,0,4,228], -"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[6,0,4,204], -"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[6,0,4,96], -"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[6,0,4,179], -"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[6,0,4,166], -"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[6,0,4,78], -"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,172], -"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,285], -"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[6,0,4,192], -"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[6,0,4,115], -"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,254], -"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,190], +"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[6,0,4,69], +"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[6,0,4,99], +"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[6,0,4,59], +"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[6,0,4,147], +"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[6,0,4,230], +"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[6,0,4,206], +"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[6,0,4,98], +"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[6,0,4,181], +"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[6,0,4,168], +"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[6,0,4,80], +"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,174], +"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,288], +"boot_8php.html#a476c499e15caf75972fed134a8f23b2e":[6,0,4,42], +"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[6,0,4,194], +"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[6,0,4,117], +"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,257], +"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,192], "boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[6,0,4,6], -"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,226], -"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,63], -"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,249], -"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,216], -"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,31], -"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,170] +"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,228], +"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,65], +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,251], +"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,218], +"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,31] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index 1a1ee2ab2..710cca29d 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,219 +1,222 @@ var NAVTREEINDEX1 = { -"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,45], -"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,89], +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,172], +"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,47], +"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,91], "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,37], -"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,208], -"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,248], -"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,311], +"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,210], +"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,250], +"boot_8php.html#a59717d02602a4babf2a54da8b33d93a5":[6,0,4,41], +"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,314], "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[6,0,4,21], -"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[6,0,4,68], -"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[6,0,4,198], -"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[6,0,4,221], -"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[6,0,4,86], -"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[6,0,4,177], -"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[6,0,4,222], +"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[6,0,4,70], +"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[6,0,4,200], +"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[6,0,4,223], +"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[6,0,4,88], +"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[6,0,4,179], +"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[6,0,4,224], "boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c":[6,0,4,35], "boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[6,0,4,19], "boot_8php.html#a6252d8eca67c689d9035ec6da544cf46":[6,0,4,26], -"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[6,0,4,82], -"boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,113], -"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,281], -"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[6,0,4,183], -"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[6,0,4,154], -"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[6,0,4,157], -"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[6,0,4,49], -"boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,160], -"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,266], -"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[6,0,4,252], -"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[6,0,4,246], -"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[6,0,4,110], -"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[6,0,4,100], -"boot_8php.html#a6df1102664f64b274810db85197c2755":[6,0,4,232], -"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[6,0,4,140], -"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[6,0,4,227], -"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[6,0,4,111], -"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,265], -"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,176], +"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[6,0,4,84], +"boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,115], +"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,284], +"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[6,0,4,185], +"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[6,0,4,156], +"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[6,0,4,159], +"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[6,0,4,51], +"boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,162], +"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,269], +"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[6,0,4,254], +"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[6,0,4,248], +"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[6,0,4,112], +"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[6,0,4,102], +"boot_8php.html#a6df1102664f64b274810db85197c2755":[6,0,4,234], +"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[6,0,4,142], +"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[6,0,4,229], +"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[6,0,4,113], +"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,268], +"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,178], "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[6,0,4,30], -"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[6,0,4,199], -"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[6,0,4,147], -"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[6,0,4,79], +"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[6,0,4,201], +"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[6,0,4,149], +"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[6,0,4,81], "boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[6,0,4,2], -"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,289], -"boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9":[6,0,4,298], +"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,292], +"boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9":[6,0,4,301], "boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[6,0,4,4], -"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[6,0,4,81], -"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[6,0,4,94], -"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,256], -"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,126], -"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[6,0,4,72], -"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[6,0,4,146], -"boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe":[6,0,4,296], -"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[6,0,4,178], -"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[6,0,4,76], -"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,118], -"boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[6,0,4,64], -"boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1":[6,0,4,304], -"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[6,0,4,180], -"boot_8php.html#a7eeb83e15968f7a6cc5937d493815773":[6,0,4,51], -"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[6,0,4,54], -"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[6,0,4,91], -"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[6,0,4,129], -"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[6,0,4,218], -"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[6,0,4,58], -"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[6,0,4,123], -"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[6,0,4,62], -"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[6,0,4,230], -"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[6,0,4,136], -"boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[6,0,4,128], -"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,280], -"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,279], -"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,197], +"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[6,0,4,83], +"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[6,0,4,96], +"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,259], +"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,128], +"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[6,0,4,74], +"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[6,0,4,148], +"boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe":[6,0,4,299], +"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[6,0,4,180], +"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[6,0,4,78], +"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,120], +"boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[6,0,4,66], +"boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1":[6,0,4,307], +"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[6,0,4,182], +"boot_8php.html#a7eeb83e15968f7a6cc5937d493815773":[6,0,4,53], +"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[6,0,4,56], +"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[6,0,4,93], +"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[6,0,4,131], +"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[6,0,4,220], +"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[6,0,4,60], +"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[6,0,4,125], +"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[6,0,4,64], +"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[6,0,4,232], +"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[6,0,4,138], +"boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[6,0,4,130], +"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,283], +"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,282], +"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,199], "boot_8php.html#a899d24fd074594ceebbf72e1feff335f":[6,0,4,16], -"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[6,0,4,107], -"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[6,0,4,250], -"boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f":[6,0,4,102], -"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[6,0,4,139], -"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[6,0,4,133], -"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,258], -"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,308], -"boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0":[6,0,4,253], +"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[6,0,4,109], +"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[6,0,4,252], +"boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f":[6,0,4,104], +"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[6,0,4,141], +"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[6,0,4,135], +"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,261], +"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,311], +"boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0":[6,0,4,255], "boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[6,0,4,34], "boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[6,0,4,11], -"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[6,0,4,161], -"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[6,0,4,137], -"boot_8php.html#a949116d9a295b214293006c060ca4848":[6,0,4,135], -"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,292], -"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,263], +"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[6,0,4,163], +"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[6,0,4,139], +"boot_8php.html#a949116d9a295b214293006c060ca4848":[6,0,4,137], +"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,295], +"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,266], "boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[6,0,4,18], -"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[6,0,4,211], -"boot_8php.html#a997614f25e58f8313641e1eb0109fd10":[6,0,4,302], -"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[6,0,4,251], -"boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[6,0,4,53], +"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[6,0,4,213], +"boot_8php.html#a997614f25e58f8313641e1eb0109fd10":[6,0,4,305], +"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[6,0,4,253], +"boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[6,0,4,55], "boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[6,0,4,5], -"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[6,0,4,242], -"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[6,0,4,212], -"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,306], -"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,282], -"boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f":[6,0,4,294], -"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[6,0,4,241], -"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[6,0,4,200], +"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[6,0,4,244], +"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[6,0,4,214], +"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,309], +"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,285], +"boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f":[6,0,4,297], +"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[6,0,4,243], +"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[6,0,4,202], "boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[6,0,4,27], -"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[6,0,4,219], -"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[6,0,4,48], -"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[6,0,4,168], +"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[6,0,4,221], +"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[6,0,4,50], +"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[6,0,4,170], "boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[6,0,4,9], -"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[6,0,4,165], +"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[6,0,4,167], "boot_8php.html#aa561f801e962b67a5c4d0548ea95fd17":[6,0,4,20], -"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[6,0,4,122], -"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[6,0,4,93], -"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[6,0,4,104], -"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[6,0,4,247], -"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[6,0,4,151], -"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[6,0,4,229], -"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[6,0,4,73], -"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[6,0,4,203], -"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[6,0,4,127], -"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[6,0,4,231], +"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[6,0,4,124], +"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[6,0,4,95], +"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[6,0,4,106], +"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[6,0,4,249], +"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[6,0,4,153], +"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[6,0,4,231], +"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[6,0,4,75], +"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[6,0,4,205], +"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[6,0,4,129], +"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[6,0,4,233], "boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[6,0,4,36], -"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,225], -"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,255], -"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[6,0,4,196], -"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[6,0,4,236], -"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[6,0,4,121], -"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[6,0,4,153], -"boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[6,0,4,60], -"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,214], +"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,227], +"boot_8php.html#ab49a5d43ce1150c5af8c750ccb14e15f":[6,0,4,256], +"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,258], +"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[6,0,4,198], +"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[6,0,4,238], +"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[6,0,4,123], +"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[6,0,4,155], +"boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[6,0,4,62], +"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,216], "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[6,0,4,7], -"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,106], -"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,291], -"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[6,0,4,41], -"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,259], +"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,108], +"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,294], +"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[6,0,4,43], +"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,262], "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[6,0,4,3], -"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,286], -"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[6,0,4,71], -"boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[6,0,4,124], -"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[6,0,4,105], -"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[6,0,4,134], +"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,289], +"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[6,0,4,73], +"boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[6,0,4,126], +"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[6,0,4,107], +"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[6,0,4,136], "boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[6,0,4,25], -"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,181], -"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,257], -"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,144], -"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[6,0,4,101], +"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,183], +"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,260], +"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,146], +"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[6,0,4,103], "boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08":[6,0,4,28], "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[6,0,4,39], -"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[6,0,4,61], -"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[6,0,4,293], -"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[6,0,4,130], -"boot_8php.html#ac89396b9144391acd08d6d0f9b332220":[6,0,4,295], -"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[6,0,4,132], -"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[6,0,4,210], +"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[6,0,4,63], +"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[6,0,4,296], +"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[6,0,4,132], +"boot_8php.html#ac89396b9144391acd08d6d0f9b332220":[6,0,4,298], +"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[6,0,4,134], +"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[6,0,4,212], "boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[6,0,4,38], "boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[6,0,4,13], "boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[6,0,4,8], -"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[6,0,4,184], -"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,305], -"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,243], -"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,278], -"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,217], -"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[6,0,4,70], -"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[6,0,4,164], -"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[6,0,4,174], +"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[6,0,4,186], +"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,308], +"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,245], +"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,281], +"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,219], +"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[6,0,4,72], +"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[6,0,4,166], +"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[6,0,4,176], "boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13":[6,0,4,10], -"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[6,0,4,77], -"boot_8php.html#ad34c1547020a305915bcc39707744690":[6,0,4,92], +"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[6,0,4,79], +"boot_8php.html#ad34c1547020a305915bcc39707744690":[6,0,4,94], "boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[6,0,4,32], -"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[6,0,4,238], -"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,267], -"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,261], -"boot_8php.html#ad94aca4c260b8a892397786201dc4664":[6,0,4,297], -"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[6,0,4,98], -"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,148], -"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,270], -"boot_8php.html#add517a0958ac684792c62142a3877f81":[6,0,4,42], +"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[6,0,4,240], +"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,270], +"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,264], +"boot_8php.html#ad94aca4c260b8a892397786201dc4664":[6,0,4,300], +"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[6,0,4,100], +"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,150], +"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,273], +"boot_8php.html#add517a0958ac684792c62142a3877f81":[6,0,4,44], "boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[6,0,4,24], -"boot_8php.html#ae09767b94688657978ff9366ec63684b":[6,0,4,303], -"boot_8php.html#ae0d9527117cd87dcba11986047ae336e":[6,0,4,46], -"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,112], -"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,277], -"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[6,0,4,193], -"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[6,0,4,167], -"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[6,0,4,201], +"boot_8php.html#ae09767b94688657978ff9366ec63684b":[6,0,4,306], +"boot_8php.html#ae0d9527117cd87dcba11986047ae336e":[6,0,4,48], +"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,114], +"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,280], +"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[6,0,4,195], +"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[6,0,4,169], +"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[6,0,4,203], "boot_8php.html#ae97836b0547953be182a2334c9c91d3c":[6,0,4,40], -"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,290], +"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,293], "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[6,0,4,29], -"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,283], -"boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[6,0,4,55], -"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,240], -"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,271], -"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[6,0,4,175], -"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[6,0,4,108], -"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[6,0,4,187], -"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[6,0,4,202], -"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[6,0,4,150], -"boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[6,0,4,119], +"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,286], +"boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[6,0,4,57], +"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,242], +"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,274], +"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[6,0,4,177], +"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[6,0,4,110], +"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[6,0,4,189], +"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[6,0,4,204], +"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[6,0,4,152], +"boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[6,0,4,121], "boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[6,0,4,33], -"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,274], -"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,195], -"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[6,0,4,65], -"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[6,0,4,56], -"boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007":[6,0,4,245], -"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[6,0,4,155], -"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[6,0,4,215], -"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[6,0,4,173], -"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[6,0,4,95], -"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,269], -"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[6,0,4,207], -"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[6,0,4,188], -"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,275], -"boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[6,0,4,52], -"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,223], -"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[6,0,4,87], -"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,159], +"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,277], +"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,197], +"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[6,0,4,67], +"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[6,0,4,58], +"boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007":[6,0,4,247], +"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[6,0,4,157], +"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[6,0,4,217], +"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[6,0,4,175], +"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[6,0,4,97], +"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,272], +"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[6,0,4,209], +"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[6,0,4,190], +"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,278], +"boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[6,0,4,54], +"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,225], +"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[6,0,4,89], +"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,161], "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[6,0,4,14], -"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,312], -"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,234], +"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,315], +"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,236], "boxy_8php.html":[6,0,3,1,3,1,0], "cache_8php.html":[6,0,0,15], "channel_8php.html":[6,0,1,11], @@ -246,8 +249,5 @@ var NAVTREEINDEX1 = "classApp.html#a230e975296cf164da2fee35ef720964f":[5,0,6,33], "classApp.html#a244b2d53b21be269aad2269d23192f95":[5,0,6,73], "classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f":[5,0,6,72], -"classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a":[5,0,6,12], -"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,6,62], -"classApp.html#a344d2b7dc2f276648d521aee4da1731c":[5,0,6,23], -"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,6,50] +"classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a":[5,0,6,12] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index ed620527b..8b10dff80 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,5 +1,8 @@ var NAVTREEINDEX2 = { +"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,6,62], +"classApp.html#a344d2b7dc2f276648d521aee4da1731c":[5,0,6,23], +"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,6,50], "classApp.html#a3d84af5e42082098672531cd1a618853":[5,0,6,22], "classApp.html#a4659785d13e4bac0bed50dbb1b0d4299":[5,0,6,6], "classApp.html#a4776d9322edea17fae56afa5d01a323e":[5,0,6,24], @@ -203,12 +206,13 @@ var NAVTREEINDEX2 = "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#af6d239fefed05859327ee8db626703f9":[5,0,3,1,0,6], "classRedMatrix_1_1RedDAV_1_1RedBrowser.html":[5,0,3,1,1], "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a0733e38e254474d9a456825e72f1ddfd":[5,0,3,1,1,2], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a242ce69a2fe5a5fdf9c2b8d3954accfd":[5,0,3,1,1,7], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a3bd98af2d1cdfd8f26deb914596176cf":[5,0,3,1,1,5], +"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a242ce69a2fe5a5fdf9c2b8d3954accfd":[5,0,3,1,1,8], +"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a3bd98af2d1cdfd8f26deb914596176cf":[5,0,3,1,1,6], +"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a810af4506cb3247e0ea7b0c4accbbc7a":[5,0,3,1,1,5], "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a8161f2a0be205412e263c947b5ec46c5":[5,0,3,1,1,0], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#aa1607857cb59738c4dce2fe8e73d8f19":[5,0,3,1,1,6], +"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#aa1607857cb59738c4dce2fe8e73d8f19":[5,0,3,1,1,7], "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#acaa792c08d24e9dc2919759e92ba037d":[5,0,3,1,1,4], -"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad19179bf4ac7f18fafa7e2e3df800142":[5,0,3,1,1,8], +"classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad19179bf4ac7f18fafa7e2e3df800142":[5,0,3,1,1,9], "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad4bc0516533c62733f38043a37267d78":[5,0,3,1,1,1], "classRedMatrix_1_1RedDAV_1_1RedBrowser.html#af764d5f14df751f9ec86c34fab300c09":[5,0,3,1,1,3], "classRedMatrix_1_1RedDAV_1_1RedDirectory.html":[5,0,3,1,2], @@ -245,9 +249,5 @@ var NAVTREEINDEX2 = "classRedMatrix_1_1RedDAV_1_1RedFile.html#ac945aa782d6c035d339e59974266ec4d":[5,0,3,1,3,6], "classRedMatrix_1_1RedDAV_1_1RedFile.html#af5c88b75d0c1f590af03755534cb167e":[5,0,3,1,3,3], "classTemplate.html":[5,0,25], -"classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b":[5,0,25,13], -"classTemplate.html#a285b5b2007dbbf733476273df3fed4ef":[5,0,25,12], -"classTemplate.html#a317d535946dc065c35dd5cd38380e6c6":[5,0,25,22], -"classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[5,0,25,2], -"classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[5,0,25,3] +"classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b":[5,0,25,13] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index 221b0e78d..85e702600 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,5 +1,9 @@ var NAVTREEINDEX3 = { +"classTemplate.html#a285b5b2007dbbf733476273df3fed4ef":[5,0,25,12], +"classTemplate.html#a317d535946dc065c35dd5cd38380e6c6":[5,0,25,22], +"classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[5,0,25,2], +"classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[5,0,25,3], "classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[5,0,25,6], "classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[5,0,25,21], "classTemplate.html#a6f0efc256688c36110180b501067ff11":[5,0,25,23], @@ -237,17 +241,13 @@ var NAVTREEINDEX3 = "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#a03900dcf0f9e3c58793a031673a70326":[6,0,0,28,6], -"datetime_8php.html#a3f239f94e23335d860b148958d87a093":[6,0,0,28,11], +"datetime_8php.html#a3f239f94e23335d860b148958d87a093":[6,0,0,28,10], "datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8":[6,0,0,28,5], -"datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f":[6,0,0,28,10], "datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3":[6,0,0,28,4], "datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766":[6,0,0,28,2], -"datetime_8php.html#a7df24d72ea05922d3127363e2295174c":[6,0,0,28,7], +"datetime_8php.html#a7df24d72ea05922d3127363e2295174c":[6,0,0,28,6], "datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82":[6,0,0,28,9], -"datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865":[6,0,0,28,12], -"datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f":[6,0,0,28,14], -"datetime_8php.html#aba971b67f17fecf050813f1eba72367f":[6,0,0,28,8], -"datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df":[6,0,0,28,0], -"datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[6,0,0,28,3] +"datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865":[6,0,0,28,11], +"datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f":[6,0,0,28,13], +"datetime_8php.html#aba971b67f17fecf050813f1eba72367f":[6,0,0,28,7] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index cd718d68f..81b6fd67c 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,7 +1,10 @@ var NAVTREEINDEX4 = { +"datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df":[6,0,0,28,0], +"datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[6,0,0,28,3], "datetime_8php.html#aea356409ba69f9de412298c998595dd2":[6,0,0,28,1], -"datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826":[6,0,0,28,13], +"datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826":[6,0,0,28,12], +"datetime_8php.html#afbb34604d0f6e7d2103da4f42e2487b1":[6,0,0,28,8], "db__update_8php.html":[6,0,2,1], "dba__driver_8php.html":[6,0,0,0,0], "dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67":[6,0,0,0,0,2], @@ -226,8 +229,8 @@ var NAVTREEINDEX4 = "functions_0x76.html":[5,3,0,20], "functions_8php.html":[6,0,3,1,0,1,1], "functions_8php.html#adefe514c95680928b3aae250cbc3c663":[6,0,3,1,0,1,1,0], -"functions_func.html":[5,3,1], "functions_func.html":[5,3,1,0], +"functions_func.html":[5,3,1], "functions_func_0x61.html":[5,3,1,1], "functions_func_0x62.html":[5,3,1,2], "functions_func_0x63.html":[5,3,1,3], @@ -246,8 +249,5 @@ var NAVTREEINDEX4 = "functions_func_0x73.html":[5,3,1,16], "functions_func_0x74.html":[5,3,1,17], "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] +"functions_func_0x76.html":[5,3,1,19] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index 3bb1df7a0..e77a39247 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,5 +1,8 @@ var NAVTREEINDEX5 = { +"functions_vars.html":[5,3,2], +"globals.html":[6,1,0], +"globals.html":[6,1,0,0], "globals_0x5f.html":[6,1,0,1], "globals_0x61.html":[6,1,0,2], "globals_0x62.html":[6,1,0,3], @@ -246,8 +249,5 @@ var NAVTREEINDEX5 = "include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323":[6,0,0,14,0], "include_2chat_8php.html":[6,0,0,16], "include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f":[6,0,0,16,4], -"include_2chat_8php.html#a26abdccc2a278a59899896dbbfc6f049":[6,0,0,16,6], -"include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639":[6,0,0,16,2], -"include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91":[6,0,0,16,3], -"include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422":[6,0,0,16,1] +"include_2chat_8php.html#a26abdccc2a278a59899896dbbfc6f049":[6,0,0,16,6] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index f173753a2..7a3768ebd 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,5 +1,8 @@ var NAVTREEINDEX6 = { +"include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639":[6,0,0,16,2], +"include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91":[6,0,0,16,3], +"include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422":[6,0,0,16,1], "include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3":[6,0,0,16,0], "include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a":[6,0,0,16,5], "include_2config_8php.html":[6,0,0,20], @@ -246,8 +249,5 @@ var NAVTREEINDEX6 = "minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b":[6,0,3,1,0,2,4,1], "mitem_8php.html":[6,0,1,60], "mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[6,0,1,60,2], -"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[6,0,1,60,0], -"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[6,0,1,60,1], -"mod_2api_8php.html":[6,0,1,4], -"mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[6,0,1,4,2] +"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[6,0,1,60,0] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index 15bd818ca..40bdd34ca 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,5 +1,8 @@ var NAVTREEINDEX7 = { +"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[6,0,1,60,1], +"mod_2api_8php.html":[6,0,1,4], +"mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[6,0,1,4,2], "mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[6,0,1,4,0], "mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2":[6,0,1,4,1], "mod_2apps_8php.html":[6,0,1,6], @@ -52,8 +55,8 @@ var NAVTREEINDEX7 = "mytheme_2php_2style_8php.html":[6,0,3,1,2,0,1], "mytheme_2php_2theme_8php.html":[6,0,3,1,2,0,2], "mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8":[6,0,3,1,2,0,2,0], -"namespaceFriendica.html":[4,0,1], "namespaceFriendica.html":[5,0,1], +"namespaceFriendica.html":[4,0,1], "namespaceRedMatrix.html":[4,0,3], "namespaceRedMatrix.html":[5,0,3], "namespaceRedMatrix_1_1Import.html":[5,0,3,0], @@ -129,8 +132,8 @@ var NAVTREEINDEX7 = "permissions_8php.html":[6,0,0,62], "permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[6,0,0,62,2], "permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[6,0,0,62,0], -"permissions_8php.html#a50e8099ea8a4d7ed68b2a0a7ea9aa724":[6,0,0,62,5], -"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[6,0,0,62,4], +"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[6,0,0,62,5], +"permissions_8php.html#a6b239a0d494b92a89ce7bf9c7e588991":[6,0,0,62,4], "permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe":[6,0,0,62,3], "permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[6,0,0,62,6], "permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[6,0,0,62,1], @@ -191,6 +194,7 @@ var NAVTREEINDEX7 = "plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[6,0,0,64,5], "po2php_8php.html":[6,0,2,6], "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[6,0,2,6,0], +"po2php_8php.html#a4f3dc9b019d0cd1dc171c54c991ef334":[6,0,2,6,1], "poco_8php.html":[6,0,1,82], "poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[6,0,1,82,0], "poke_8php.html":[6,0,1,83], @@ -245,9 +249,5 @@ var NAVTREEINDEX7 = "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], -"redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c":[6,0,3,1,3,0,1,0], -"redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459":[6,0,3,1,3,0,1,1], -"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] +"redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c":[6,0,3,1,3,0,1,0] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index cdfb02dff..9053dfa06 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,5 +1,9 @@ var NAVTREEINDEX8 = { +"redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459":[6,0,3,1,3,0,1,1], +"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], @@ -245,9 +249,5 @@ var NAVTREEINDEX8 = "text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[6,0,0,81,41], "text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[6,0,0,81,32], "text_8php.html#aad557c054cf2ed915633701018fc7e3f":[6,0,0,81,96], -"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[6,0,0,81,75], -"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[6,0,0,81,91], -"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[6,0,0,81,94], -"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[6,0,0,81,62], -"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[6,0,0,81,42] +"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[6,0,0,81,75] }; diff --git a/doc/html/navtreeindex9.js b/doc/html/navtreeindex9.js index 9df281b10..3ab2b8996 100644 --- a/doc/html/navtreeindex9.js +++ b/doc/html/navtreeindex9.js @@ -1,5 +1,9 @@ var NAVTREEINDEX9 = { +"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[6,0,0,81,91], +"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[6,0,0,81,94], +"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[6,0,0,81,62], +"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[6,0,0,81,42], "text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[6,0,0,81,82], "text_8php.html#ace3c98538c63e09b70a363210b414112":[6,0,0,81,22], "text_8php.html#acedb584f65114a33f389efb796172a91":[6,0,0,81,2], diff --git a/doc/html/permissions_8php.html b/doc/html/permissions_8php.html index f74b5e10e..28a402c70 100644 --- a/doc/html/permissions_8php.html +++ b/doc/html/permissions_8php.html @@ -127,9 +127,9 @@ Functions    get_role_perms ($role)   - role_selector ($current) - Creates a HTML select field with all available roles. More...
    -  + get_roles () + Returns a list or roles, grouped by type. More...

    Function Documentation

    @@ -254,6 +254,32 @@ Functions

    Referenced by connedit_content(), create_identity(), diaspora_request(), foofoo(), new_contact(), settings_post(), and zot_refresh().

    + + + +
    +
    + + + + + + + +
    get_roles ()
    +
    + +

    Returns a list or roles, grouped by type.

    +
    Parameters
    + + +
    string$currentThe current role
    +
    +
    +
    Returns
    string Returns an array of roles, grouped by type
    + +

    Referenced by new_channel_content().

    +
    @@ -300,33 +326,6 @@ Functions

    Referenced by 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_init(), 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().

    - - - -
    -
    - - - - - - - - -
    role_selector ( $current)
    -
    - -

    Creates a HTML select field with all available roles.

    -
    Parameters
    - - -
    string$currentThe current role
    -
    -
    -
    Returns
    string Returns the complete HTML code for this privacy-role-select field.
    - -

    Referenced by new_channel_content().

    -
    diff --git a/doc/html/permissions_8php.js b/doc/html/permissions_8php.js index 22580253a..824057ac6 100644 --- a/doc/html/permissions_8php.js +++ b/doc/html/permissions_8php.js @@ -4,7 +4,7 @@ var permissions_8php = [ "get_all_perms", "permissions_8php.html#aeca9b280f3dc3358c89976d81d690008", null ], [ "get_perms", "permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972", null ], [ "get_role_perms", "permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe", null ], + [ "get_roles", "permissions_8php.html#a6b239a0d494b92a89ce7bf9c7e588991", null ], [ "perm_is_allowed", "permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835", null ], - [ "role_selector", "permissions_8php.html#a50e8099ea8a4d7ed68b2a0a7ea9aa724", null ], [ "site_default_perms", "permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d", null ] ]; \ No newline at end of file diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html index ec2862d4c..861554886 100644 --- a/doc/html/php2po_8php.html +++ b/doc/html/php2po_8php.html @@ -168,7 +168,7 @@ Variables
    -

    Referenced by App\__construct(), Template\_get_var(), Template\_replcb_for(), activity_sanitise(), aes_encapsulate(), aes_unencapsulate(), app_render(), bb_sanitize_style(), build_sync_packet(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_poll_interval(), directory_content(), dirsearch_content(), extra_query_args(), foofoo(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_plugin_info(), get_theme_info(), get_things(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), local_dir_update(), mail_post(), mood_content(), netgrowth_content(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), openid_content(), parse_app_description(), photos_albums_list(), po2php_run(), poco_init(), poke_content(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), profile_load(), requestdata(), role_selector(), settings_post(), sslify_init(), startup(), tt(), RedMatrix\RedDAV\RedBrowser\userReadableSize(), vote_post(), x(), xchan_fetch(), zfinger_init(), zot_build_packet(), and zot_refresh().

    +

    Referenced by App\__construct(), Template\_get_var(), Template\_replcb_for(), activity_sanitise(), aes_encapsulate(), aes_unencapsulate(), app_render(), bb_sanitize_style(), build_sync_packet(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_poll_interval(), directory_content(), dirsearch_content(), extra_query_args(), foofoo(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_plugin_info(), get_theme_info(), get_things(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), local_dir_update(), mail_post(), mood_content(), netgrowth_content(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), openid_content(), parse_app_description(), photos_albums_list(), po2php_run(), poco_init(), poke_content(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), profile_load(), requestdata(), settings_post(), sslify_init(), startup(), tt(), RedMatrix\RedDAV\RedBrowser\userReadableSize(), vote_post(), x(), xchan_fetch(), zfinger_init(), zot_build_packet(), and zot_refresh().

    diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index b0f618e3c..eb1dbb904 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(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), home_content(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), uexport_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    +

    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_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), uexport_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    diff --git a/doc/html/po2php_8php.html b/doc/html/po2php_8php.html index 439411fd6..a1b50a4a1 100644 --- a/doc/html/po2php_8php.html +++ b/doc/html/po2php_8php.html @@ -114,6 +114,8 @@ $(document).ready(function(){initNavTree('po2php_8php.html','');}); Functions  po2php_run ($argv, $argc)   + trim_message ($str) + 

    Function Documentation

    @@ -140,6 +142,24 @@ Functions
    +
    + + +
    +
    + + + + + + + + +
    trim_message ( $str)
    +
    + +

    Referenced by po2php_run().

    +
    diff --git a/doc/html/po2php_8php.js b/doc/html/po2php_8php.js index e8f3c4f39..9536e15bf 100644 --- a/doc/html/po2php_8php.js +++ b/doc/html/po2php_8php.js @@ -1,4 +1,5 @@ var po2php_8php = [ - [ "po2php_run", "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4", null ] + [ "po2php_run", "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4", null ], + [ "trim_message", "po2php_8php.html#a4f3dc9b019d0cd1dc171c54c991ef334", null ] ]; \ No newline at end of file diff --git a/doc/html/search/all_66.js b/doc/html/search/all_66.js index 70717140d..7e2378199 100644 --- a/doc/html/search/all_66.js +++ b/doc/html/search/all_66.js @@ -12,7 +12,6 @@ var searchData= ['fetch_5flrdd_5ftemplate',['fetch_lrdd_template',['../include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0',1,'network.php']]], ['fetch_5fpost_5ftags',['fetch_post_tags',['../items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9',1,'items.php']]], ['fetch_5fxrd_5flinks',['fetch_xrd_links',['../include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d',1,'network.php']]], - ['field_5ftimezone',['field_timezone',['../datetime_8php.html#a03900dcf0f9e3c58793a031673a70326',1,'datetime.php']]], ['file_5ftag_5fdecode',['file_tag_decode',['../taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6',1,'taxonomy.php']]], ['file_5ftag_5fencode',['file_tag_encode',['../taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37',1,'taxonomy.php']]], ['file_5ftag_5ffile_5fquery',['file_tag_file_query',['../taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1',1,'taxonomy.php']]], diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js index a2a450f18..0cae305da 100644 --- a/doc/html/search/all_67.js +++ b/doc/html/search/all_67.js @@ -93,6 +93,7 @@ var searchData= ['get_5fredirect_5furl',['get_redirect_url',['../classItem.html#a428f448f89a8629055ea3294eb942aea',1,'Item']]], ['get_5frel_5flink',['get_rel_link',['../text_8php.html#a3972701c5c83624ec4e2d06242f614e7',1,'text.php']]], ['get_5frole_5fperms',['get_role_perms',['../permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe',1,'permissions.php']]], + ['get_5froles',['get_roles',['../permissions_8php.html#a6b239a0d494b92a89ce7bf9c7e588991',1,'permissions.php']]], ['get_5frpost_5fpath',['get_rpost_path',['../zot_8php.html#a8e22dbc6f884be3644a892a876cbd972',1,'zot.php']]], ['get_5fsys_5fchannel',['get_sys_channel',['../identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51',1,'identity.php']]], ['get_5fsystem_5fapps',['get_system_apps',['../include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca',1,'apps.php']]], @@ -110,6 +111,7 @@ var searchData= ['get_5ftheme_5fuid',['get_theme_uid',['../identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3',1,'identity.php']]], ['get_5fthings',['get_things',['../taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de',1,'taxonomy.php']]], ['get_5fthread',['get_thread',['../classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8',1,'Conversation']]], + ['get_5ftimezones',['get_timezones',['../datetime_8php.html#afbb34604d0f6e7d2103da4f42e2487b1',1,'datetime.php']]], ['get_5fwidgets',['get_widgets',['../classApp.html#a871898becd0697d778f36d9336253ae8',1,'App']]], ['get_5fwords',['get_words',['../spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6',1,'spam.php']]], ['get_5fxconfig',['get_xconfig',['../include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e',1,'config.php']]], @@ -123,6 +125,7 @@ var searchData= ['getetag',['getETag',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a9f14682acf3ccb70df5af5dd0687c689',1,'RedMatrix::RedDAV::RedFile']]], ['getext',['getExt',['../classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba',1,'photo_driver']]], ['getheight',['getHeight',['../classphoto__driver.html#af769e9abb144e57002c59aa2aa8f3468',1,'photo_driver']]], + ['geticonfromtype',['getIconFromType',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a810af4506cb3247e0ea7b0c4accbbc7a',1,'RedMatrix::RedDAV::RedBrowser']]], ['getimage',['getImage',['../classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5',1,'photo_driver\getImage()'],['../classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484',1,'photo_gd\getImage()'],['../classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc',1,'photo_imagick\getImage()']]], ['getlastmodified',['getLastModified',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a69db5f641f8f5dc999e55cee1832ecd5',1,'RedMatrix\RedDAV\RedDirectory\getLastModified()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ac47016aa0e3f6f1a1c4570bd6fd8cf25',1,'RedMatrix\RedDAV\RedFile\getLastModified()']]], ['getname',['getName',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a55f7172814a0749b5342f152ab3fa0df',1,'RedMatrix\RedDAV\RedDirectory\getName()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ac945aa782d6c035d339e59974266ec4d',1,'RedMatrix\RedDAV\RedFile\getName()']]], diff --git a/doc/html/search/all_70.js b/doc/html/search/all_70.js index df9d49a93..931668885 100644 --- a/doc/html/search/all_70.js +++ b/doc/html/search/all_70.js @@ -70,6 +70,7 @@ var searchData= ['photo_5fdriver',['photo_driver',['../classphoto__driver.html',1,'']]], ['photo_5fdriver_2ephp',['photo_driver.php',['../photo__driver_8php.html',1,'']]], ['photo_5ffactory',['photo_factory',['../photo__driver_8php.html#a32e2817faa25d7f11f60a8abff565035',1,'photo_driver.php']]], + ['photo_5fflag_5fos',['PHOTO_FLAG_OS',['../boot_8php.html#ab49a5d43ce1150c5af8c750ccb14e15f',1,'boot.php']]], ['photo_5fgd',['photo_gd',['../classphoto__gd.html',1,'']]], ['photo_5fgd_2ephp',['photo_gd.php',['../photo__gd_8php.html',1,'']]], ['photo_5fimagick',['photo_imagick',['../classphoto__imagick.html',1,'']]], diff --git a/doc/html/search/all_72.js b/doc/html/search/all_72.js index 91380a803..04e2802f8 100644 --- a/doc/html/search/all_72.js +++ b/doc/html/search/all_72.js @@ -105,7 +105,6 @@ var searchData= ['rmagic_5fcontent',['rmagic_content',['../rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef',1,'rmagic.php']]], ['rmagic_5finit',['rmagic_init',['../rmagic_8php.html#a95455edd43f1bff39446a57388cdde16',1,'rmagic.php']]], ['rmagic_5fpost',['rmagic_post',['../rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f',1,'rmagic.php']]], - ['role_5fselector',['role_selector',['../permissions_8php.html#a50e8099ea8a4d7ed68b2a0a7ea9aa724',1,'permissions.php']]], ['rotate',['rotate',['../classphoto__driver.html#a2f2b6337cf9aa0688d10b422123f0eec',1,'photo_driver\rotate()'],['../classphoto__gd.html#a77f87730b11093b76980c541159df37d',1,'photo_gd\rotate()'],['../classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f',1,'photo_imagick\rotate()']]], ['rpost_2ephp',['rpost.php',['../rpost_8php.html',1,'']]], ['rpost_5fcallback',['rpost_callback',['../bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7',1,'bbcode.php']]], diff --git a/doc/html/search/all_73.js b/doc/html/search/all_73.js index d0a3ea246..1cfc3bc23 100644 --- a/doc/html/search/all_73.js +++ b/doc/html/search/all_73.js @@ -19,7 +19,6 @@ var searchData= ['search_5finit',['search_init',['../search_8php.html#acf19fd30f07f495781ca0d7a0a08b435',1,'search.php']]], ['searchbox',['searchbox',['../text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447',1,'text.php']]], ['security_2ephp',['security.php',['../security_8php.html',1,'']]], - ['select_5ftimezone',['select_timezone',['../datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f',1,'datetime.php']]], ['send',['send',['../classenotify.html#afbc088860f534c6c05788b48cfc262c6',1,'enotify']]], ['send_5fmessage',['send_message',['../include_2message_8php.html#a751ffd6635022b2190f56154ee745752',1,'message.php']]], ['send_5freg_5fapproval_5femail',['send_reg_approval_email',['../account_8php.html#a014de2d5d5c9785de5bf547a485822fa',1,'account.php']]], @@ -128,11 +127,11 @@ var searchData= ['stripdcode_5fbr_5fcb',['stripdcode_br_cb',['../bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93',1,'bb2diaspora.php']]], ['stumble_5finit',['stumble_init',['../stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753',1,'theme.php']]], ['style_2ephp',['style.php',['../mytheme_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../redbasic_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../stumble_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../suckerberg_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../apw_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../hivenet_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../redbasic_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../suckerberg_2php_2style_8php.html',1,'']]], ['subthread_2ephp',['subthread.php',['../subthread_8php.html',1,'']]], ['subthread_5fcontent',['subthread_content',['../subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3',1,'subthread.php']]], ['suckerberg_5finit',['suckerberg_init',['../suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8',1,'theme.php']]], diff --git a/doc/html/search/all_74.js b/doc/html/search/all_74.js index 676cbba88..fb3605bce 100644 --- a/doc/html/search/all_74.js +++ b/doc/html/search/all_74.js @@ -68,6 +68,7 @@ var searchData= ['tplpaths',['tplpaths',['../namespaceupdatetpl.html#a52a85ffa6b6d63d840b185a133478c12',1,'updatetpl']]], ['translate_5fscope',['translate_scope',['../items_8php.html#aabfaa193b83154c2a81e91284e5d5e59',1,'items.php']]], ['translate_5fsystem_5fapps',['translate_system_apps',['../include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030',1,'apps.php']]], + ['trim_5fmessage',['trim_message',['../po2php_8php.html#a4f3dc9b019d0cd1dc171c54c991ef334',1,'po2php.php']]], ['tryoembed',['tryoembed',['../bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7',1,'bbcode.php']]], ['tryzrlaudio',['tryzrlaudio',['../bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322',1,'bbcode.php']]], ['tryzrlvideo',['tryzrlvideo',['../bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8',1,'bbcode.php']]], diff --git a/doc/html/search/all_7a.js b/doc/html/search/all_7a.js index e38522726..abbf3009d 100644 --- a/doc/html/search/all_7a.js +++ b/doc/html/search/all_7a.js @@ -2,6 +2,8 @@ var searchData= [ ['z_5fbirthday',['z_birthday',['../datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f',1,'datetime.php']]], ['z_5ffetch_5furl',['z_fetch_url',['../include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37',1,'network.php']]], + ['z_5fget_5ftemp_5fdir',['z_get_temp_dir',['../boot_8php.html#a59717d02602a4babf2a54da8b33d93a5',1,'boot.php']]], + ['z_5fget_5fupload_5fdir',['z_get_upload_dir',['../boot_8php.html#a476c499e15caf75972fed134a8f23b2e',1,'boot.php']]], ['z_5finput_5ffilter',['z_input_filter',['../text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f',1,'text.php']]], ['z_5fmime_5fcontent_5ftype',['z_mime_content_type',['../include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a',1,'attach.php']]], ['z_5fpath',['z_path',['../boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda',1,'boot.php']]], diff --git a/doc/html/search/functions_66.js b/doc/html/search/functions_66.js index 23dd781c2..7f97017bd 100644 --- a/doc/html/search/functions_66.js +++ b/doc/html/search/functions_66.js @@ -8,7 +8,6 @@ var searchData= ['fetch_5flrdd_5ftemplate',['fetch_lrdd_template',['../include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0',1,'network.php']]], ['fetch_5fpost_5ftags',['fetch_post_tags',['../items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9',1,'items.php']]], ['fetch_5fxrd_5flinks',['fetch_xrd_links',['../include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d',1,'network.php']]], - ['field_5ftimezone',['field_timezone',['../datetime_8php.html#a03900dcf0f9e3c58793a031673a70326',1,'datetime.php']]], ['file_5ftag_5fdecode',['file_tag_decode',['../taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6',1,'taxonomy.php']]], ['file_5ftag_5fencode',['file_tag_encode',['../taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37',1,'taxonomy.php']]], ['file_5ftag_5ffile_5fquery',['file_tag_file_query',['../taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1',1,'taxonomy.php']]], diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js index a6049d3ac..1f2afb3f3 100644 --- a/doc/html/search/functions_67.js +++ b/doc/html/search/functions_67.js @@ -93,6 +93,7 @@ var searchData= ['get_5fredirect_5furl',['get_redirect_url',['../classItem.html#a428f448f89a8629055ea3294eb942aea',1,'Item']]], ['get_5frel_5flink',['get_rel_link',['../text_8php.html#a3972701c5c83624ec4e2d06242f614e7',1,'text.php']]], ['get_5frole_5fperms',['get_role_perms',['../permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe',1,'permissions.php']]], + ['get_5froles',['get_roles',['../permissions_8php.html#a6b239a0d494b92a89ce7bf9c7e588991',1,'permissions.php']]], ['get_5frpost_5fpath',['get_rpost_path',['../zot_8php.html#a8e22dbc6f884be3644a892a876cbd972',1,'zot.php']]], ['get_5fsys_5fchannel',['get_sys_channel',['../identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51',1,'identity.php']]], ['get_5fsystem_5fapps',['get_system_apps',['../include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca',1,'apps.php']]], @@ -110,6 +111,7 @@ var searchData= ['get_5ftheme_5fuid',['get_theme_uid',['../identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3',1,'identity.php']]], ['get_5fthings',['get_things',['../taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de',1,'taxonomy.php']]], ['get_5fthread',['get_thread',['../classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8',1,'Conversation']]], + ['get_5ftimezones',['get_timezones',['../datetime_8php.html#afbb34604d0f6e7d2103da4f42e2487b1',1,'datetime.php']]], ['get_5fwidgets',['get_widgets',['../classApp.html#a871898becd0697d778f36d9336253ae8',1,'App']]], ['get_5fwords',['get_words',['../spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6',1,'spam.php']]], ['get_5fxconfig',['get_xconfig',['../include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e',1,'config.php']]], @@ -123,6 +125,7 @@ var searchData= ['getetag',['getETag',['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a9f14682acf3ccb70df5af5dd0687c689',1,'RedMatrix::RedDAV::RedFile']]], ['getext',['getExt',['../classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba',1,'photo_driver']]], ['getheight',['getHeight',['../classphoto__driver.html#af769e9abb144e57002c59aa2aa8f3468',1,'photo_driver']]], + ['geticonfromtype',['getIconFromType',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a810af4506cb3247e0ea7b0c4accbbc7a',1,'RedMatrix::RedDAV::RedBrowser']]], ['getimage',['getImage',['../classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5',1,'photo_driver\getImage()'],['../classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484',1,'photo_gd\getImage()'],['../classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc',1,'photo_imagick\getImage()']]], ['getlastmodified',['getLastModified',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a69db5f641f8f5dc999e55cee1832ecd5',1,'RedMatrix\RedDAV\RedDirectory\getLastModified()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ac47016aa0e3f6f1a1c4570bd6fd8cf25',1,'RedMatrix\RedDAV\RedFile\getLastModified()']]], ['getname',['getName',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#a55f7172814a0749b5342f152ab3fa0df',1,'RedMatrix\RedDAV\RedDirectory\getName()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#ac945aa782d6c035d339e59974266ec4d',1,'RedMatrix\RedDAV\RedFile\getName()']]], diff --git a/doc/html/search/functions_72.js b/doc/html/search/functions_72.js index caf791a0f..41d4f1f93 100644 --- a/doc/html/search/functions_72.js +++ b/doc/html/search/functions_72.js @@ -64,7 +64,6 @@ var searchData= ['rmagic_5fcontent',['rmagic_content',['../rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef',1,'rmagic.php']]], ['rmagic_5finit',['rmagic_init',['../rmagic_8php.html#a95455edd43f1bff39446a57388cdde16',1,'rmagic.php']]], ['rmagic_5fpost',['rmagic_post',['../rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f',1,'rmagic.php']]], - ['role_5fselector',['role_selector',['../permissions_8php.html#a50e8099ea8a4d7ed68b2a0a7ea9aa724',1,'permissions.php']]], ['rotate',['rotate',['../classphoto__driver.html#a2f2b6337cf9aa0688d10b422123f0eec',1,'photo_driver\rotate()'],['../classphoto__gd.html#a77f87730b11093b76980c541159df37d',1,'photo_gd\rotate()'],['../classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f',1,'photo_imagick\rotate()']]], ['rpost_5fcallback',['rpost_callback',['../bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7',1,'bbcode.php']]], ['rpost_5fcontent',['rpost_content',['../rpost_8php.html#a8190354d789000806d9879aea276728f',1,'rpost.php']]], diff --git a/doc/html/search/functions_73.js b/doc/html/search/functions_73.js index ce54bd453..fca2627b7 100644 --- a/doc/html/search/functions_73.js +++ b/doc/html/search/functions_73.js @@ -16,7 +16,6 @@ var searchData= ['search_5fcontent',['search_content',['../search_8php.html#ab2568591359edde5b483a6cd9a24b2cc',1,'search.php']]], ['search_5finit',['search_init',['../search_8php.html#acf19fd30f07f495781ca0d7a0a08b435',1,'search.php']]], ['searchbox',['searchbox',['../text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447',1,'text.php']]], - ['select_5ftimezone',['select_timezone',['../datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f',1,'datetime.php']]], ['send',['send',['../classenotify.html#afbc088860f534c6c05788b48cfc262c6',1,'enotify']]], ['send_5fmessage',['send_message',['../include_2message_8php.html#a751ffd6635022b2190f56154ee745752',1,'message.php']]], ['send_5freg_5fapproval_5femail',['send_reg_approval_email',['../account_8php.html#a014de2d5d5c9785de5bf547a485822fa',1,'account.php']]], diff --git a/doc/html/search/functions_74.js b/doc/html/search/functions_74.js index 54d918d35..d20c9760d 100644 --- a/doc/html/search/functions_74.js +++ b/doc/html/search/functions_74.js @@ -30,6 +30,7 @@ var searchData= ['toggle_5ftheme',['toggle_theme',['../admin_8php.html#af81f081851791cd15e49e8ff6722dc27',1,'admin.php']]], ['translate_5fscope',['translate_scope',['../items_8php.html#aabfaa193b83154c2a81e91284e5d5e59',1,'items.php']]], ['translate_5fsystem_5fapps',['translate_system_apps',['../include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030',1,'apps.php']]], + ['trim_5fmessage',['trim_message',['../po2php_8php.html#a4f3dc9b019d0cd1dc171c54c991ef334',1,'po2php.php']]], ['tryoembed',['tryoembed',['../bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7',1,'bbcode.php']]], ['tryzrlaudio',['tryzrlaudio',['../bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322',1,'bbcode.php']]], ['tryzrlvideo',['tryzrlvideo',['../bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8',1,'bbcode.php']]], diff --git a/doc/html/search/functions_7a.js b/doc/html/search/functions_7a.js index 3aa864421..9ea50e71d 100644 --- a/doc/html/search/functions_7a.js +++ b/doc/html/search/functions_7a.js @@ -2,6 +2,8 @@ var searchData= [ ['z_5fbirthday',['z_birthday',['../datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f',1,'datetime.php']]], ['z_5ffetch_5furl',['z_fetch_url',['../include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37',1,'network.php']]], + ['z_5fget_5ftemp_5fdir',['z_get_temp_dir',['../boot_8php.html#a59717d02602a4babf2a54da8b33d93a5',1,'boot.php']]], + ['z_5fget_5fupload_5fdir',['z_get_upload_dir',['../boot_8php.html#a476c499e15caf75972fed134a8f23b2e',1,'boot.php']]], ['z_5finput_5ffilter',['z_input_filter',['../text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f',1,'text.php']]], ['z_5fmime_5fcontent_5ftype',['z_mime_content_type',['../include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a',1,'attach.php']]], ['z_5fpath',['z_path',['../boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda',1,'boot.php']]], diff --git a/doc/html/search/variables_70.js b/doc/html/search/variables_70.js index e9954a9de..976a2c161 100644 --- a/doc/html/search/variables_70.js +++ b/doc/html/search/variables_70.js @@ -39,6 +39,7 @@ var searchData= ['perms_5fw_5ftagwall',['PERMS_W_TAGWALL',['../boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777',1,'boot.php']]], ['perms_5fw_5fwall',['PERMS_W_WALL',['../boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2',1,'boot.php']]], ['photo_5fadult',['PHOTO_ADULT',['../boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0',1,'boot.php']]], + ['photo_5fflag_5fos',['PHOTO_FLAG_OS',['../boot_8php.html#ab49a5d43ce1150c5af8c750ccb14e15f',1,'boot.php']]], ['photo_5fnormal',['PHOTO_NORMAL',['../boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4',1,'boot.php']]], ['photo_5fprofile',['PHOTO_PROFILE',['../boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0',1,'boot.php']]], ['photo_5fthing',['PHOTO_THING',['../boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383',1,'boot.php']]], diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index fa23f818b..993f2201e 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -1497,7 +1497,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(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), datetime_convert(), RedMatrix\RedDAV\RedFile\delete(), delete_imported_item(), deliver_run(), detect_language(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_decode(), diaspora_dispatch(), diaspora_dispatch_public(), diaspora_handle_from_contact(), diaspora_is_blacklisted(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_status(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_parse_query(), directory_content(), directory_run(), discover_by_url(), discover_by_webbie(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), find_diaspora_person_by_handle(), fix_private_photos(), fix_system_urls(), RedMatrix\RedDAV\RedFile\get(), get_atom_elements(), get_diaspora_key(), get_diaspora_reshare_xml(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), group_content(), guess_image_type(), http_status_exit(), hubloc_change_primary(), impel_init(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), old_webfinger(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), prune_hub_reinstalls(), public_recips(), 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(), 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(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), datetime_convert(), RedMatrix\RedDAV\RedFile\delete(), delete_imported_item(), deliver_run(), detect_language(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_decode(), diaspora_dispatch(), diaspora_dispatch_public(), diaspora_handle_from_contact(), diaspora_is_blacklisted(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_status(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_parse_query(), directory_content(), directory_run(), discover_by_url(), discover_by_webbie(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), find_diaspora_person_by_handle(), fix_private_photos(), fix_system_urls(), RedMatrix\RedDAV\RedFile\get(), get_atom_elements(), get_diaspora_key(), get_diaspora_reshare_xml(), get_item_elements(), Conversation\get_template_data(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), group_content(), guess_image_type(), http_status_exit(), hubloc_change_primary(), impel_init(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), old_webfinger(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), prune_hub_reinstalls(), public_recips(), 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(), 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().

    @@ -1986,7 +1986,7 @@ Variables
    Returns
    string substituted string
    -

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

    diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index 93b502cd7..fd5fe7b0b 100644 --- a/doc/html/typo_8php.html +++ b/doc/html/typo_8php.html @@ -134,7 +134,7 @@ Variables
    -

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

    +

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

    diff --git a/doc/html/typohelper_8php.html b/doc/html/typohelper_8php.html index 775f1fde8..c1cf8bdc9 100644 --- a/doc/html/typohelper_8php.html +++ b/doc/html/typohelper_8php.html @@ -130,7 +130,7 @@ Variables Initial value:
    = <<< EOT
    error_reporting(E_ERROR | E_WARNING | E_PARSE )
    -

    Referenced by api_date(), check_php(), check_webbie(), dba_mysql\escape(), dba_mysqli\escape(), dba_postgres\escape(), dba_postgres\escape_identifier(), dba_postgres\escapebin(), filter_insecure(), head_get_css(), head_get_js(), head_get_main_js(), item_store_update(), list_post_dates(), load_database(), photos_album_get_db_idstr(), photos_post(), posted_dates(), relative_date(), stream_perms_api_uids(), stream_perms_xchans(), thing_init(), dba_postgres\unescapebin(), and xmlify().

    +

    Referenced by api_date(), check_php(), check_webbie(), dba_mysql\escape(), dba_mysqli\escape(), dba_postgres\escape(), dba_postgres\escape_identifier(), dba_postgres\escapebin(), filter_insecure(), head_get_css(), head_get_js(), head_get_main_js(), item_store_update(), list_post_dates(), load_database(), photos_album_get_db_idstr(), photos_post(), posted_dates(), relative_date(), stream_perms_api_uids(), stream_perms_xchans(), thing_init(), trim_message(), dba_postgres\unescapebin(), and xmlify().

    diff --git a/util/messages.po b/util/messages.po index e11c412d8..1a05e4cac 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-12-26.901\n" +"Project-Id-Version: 2015-01-02.907\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-26 00:04-0800\n" +"POT-Creation-Date: 2015-01-02 00:04-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,9 +23,9 @@ msgid "Cannot locate DNS info for database server '%s'" msgstr "" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 -#: ../../mod/photos.php:91 ../../mod/photos.php:654 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 +#: ../../mod/profile_photo.php:423 ../../mod/photos.php:91 +#: ../../mod/photos.php:654 msgid "Profile Photos" msgstr "" @@ -85,35 +85,35 @@ msgstr "" #: ../../include/attach.php:318 ../../include/attach.php:511 #: ../../include/attach.php:585 ../../include/chat.php:116 #: ../../mod/mood.php:112 ../../mod/register.php:72 ../../mod/mitem.php:106 -#: ../../mod/achievements.php:30 ../../mod/settings.php:542 -#: ../../mod/group.php:9 ../../mod/poke.php:128 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/setup.php:207 ../../mod/authtest.php:13 +#: ../../mod/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/connections.php:169 ../../mod/connedit.php:266 -#: ../../mod/mail.php:111 ../../mod/photos.php:68 ../../mod/webpages.php:67 -#: ../../mod/bookmarks.php:46 ../../mod/blocks.php:67 ../../mod/blocks.php:75 -#: ../../mod/editblock.php:65 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:118 ../../mod/profile_photo.php:263 -#: ../../mod/profile_photo.php:276 ../../mod/like.php:154 -#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 -#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 -#: ../../mod/filestorage.php:109 ../../mod/locs.php:71 ../../mod/item.php:191 -#: ../../mod/item.php:199 ../../mod/item.php:972 ../../mod/suggest.php:26 -#: ../../mod/layouts.php:67 ../../mod/layouts.php:74 ../../mod/layouts.php:85 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:550 -#: ../../mod/manage.php:6 ../../mod/menu.php:61 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/network.php:12 -#: ../../mod/notifications.php:66 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 -#: ../../mod/message.php:16 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/page.php:28 ../../mod/page.php:78 +#: ../../mod/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." @@ -142,9 +142,9 @@ msgid "Connection not found." msgstr "" #: ../../include/menu.php:42 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:261 +#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:263 #: ../../include/ItemObject.php:100 ../../include/apps.php:254 -#: ../../mod/settings.php:627 ../../mod/editpost.php:112 +#: ../../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 @@ -261,52 +261,52 @@ msgstr "" msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/permissions.php:814 +#: ../../include/permissions.php:810 msgid "Social Networking" msgstr "" -#: ../../include/permissions.php:815 ../../include/permissions.php:817 -#: ../../include/permissions.php:819 +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +#: ../../include/permissions.php:812 msgid "Mostly Public" msgstr "" -#: ../../include/permissions.php:815 ../../include/permissions.php:817 -#: ../../include/permissions.php:819 +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +#: ../../include/permissions.php:812 msgid "Restricted" msgstr "" -#: ../../include/permissions.php:815 ../../include/permissions.php:817 +#: ../../include/permissions.php:810 ../../include/permissions.php:811 msgid "Private" msgstr "" -#: ../../include/permissions.php:816 +#: ../../include/permissions.php:811 msgid "Community Forum" msgstr "" -#: ../../include/permissions.php:818 +#: ../../include/permissions.php:812 msgid "Feed Republish" msgstr "" -#: ../../include/permissions.php:820 +#: ../../include/permissions.php:813 msgid "Special Purpose" msgstr "" -#: ../../include/permissions.php:821 +#: ../../include/permissions.php:813 msgid "Celebrity/Soapbox" msgstr "" -#: ../../include/permissions.php:821 +#: ../../include/permissions.php:813 msgid "Group Repository" msgstr "" -#: ../../include/permissions.php:822 ../../include/profile_selectors.php:6 +#: ../../include/permissions.php:814 ../../include/profile_selectors.php:6 #: ../../include/profile_selectors.php:23 #: ../../include/profile_selectors.php:61 #: ../../include/profile_selectors.php:97 msgid "Other" msgstr "" -#: ../../include/permissions.php:823 +#: ../../include/permissions.php:814 msgid "Custom/Expert Mode" msgstr "" @@ -364,8 +364,8 @@ msgstr "" msgid "dislikes" msgstr "" -#: ../../include/taxonomy.php:380 ../../include/identity.php:1148 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1027 +#: ../../include/taxonomy.php:380 ../../include/identity.php:1151 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1024 msgctxt "noun" msgid "Like" msgid_plural "Likes" @@ -382,8 +382,8 @@ msgid "View" msgstr "" #: ../../include/page_widgets.php:40 ../../include/conversation.php:1102 -#: ../../include/ItemObject.php:638 ../../mod/photos.php:998 -#: ../../mod/webpages.php:166 +#: ../../include/ItemObject.php:638 ../../mod/webpages.php:166 +#: ../../mod/photos.php:995 msgid "Preview" msgstr "" @@ -415,18 +415,6 @@ msgstr "" msgid "Embedding disabled" msgstr "" -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "" - #: ../../include/photos.php:105 #, php-format msgid "Image exceeds website size limit of %lu bytes" @@ -495,12 +483,70 @@ msgstr "" msgid "Finishes:" msgstr "" -#: ../../include/bb2diaspora.php:467 ../../include/event.php:40 -#: ../../include/identity.php:891 ../../mod/events.php:590 +#: ../../include/bb2diaspora.php:467 ../../include/identity.php:894 +#: ../../include/event.php:40 ../../mod/events.php:590 #: ../../mod/directory.php:199 msgid "Location:" msgstr "" +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:377 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:389 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:590 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:606 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:630 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:681 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:685 +msgid "database storage failed." +msgstr "" + #: ../../include/features.php:23 msgid "General Features" msgstr "" @@ -741,11 +787,12 @@ msgid "Provide a personal tag cloud on your channel page" msgstr "" #: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:260 +#: ../../include/RedDAV/RedBrowser.php:262 msgid "parent" msgstr "" #: ../../include/RedDAV/RedBrowser.php:130 +#: ../../include/RedDAV/RedBrowser.php:339 msgid "Collection" msgstr "" @@ -771,71 +818,71 @@ msgstr "" #: ../../include/RedDAV/RedBrowser.php:163 ../../include/conversation.php:992 #: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/connedit.php:513 ../../mod/photos.php:713 -#: ../../mod/photos.php:1132 +#: ../../mod/connedit.php:513 ../../mod/photos.php:710 +#: ../../mod/photos.php:1129 msgid "Unknown" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:223 +#: ../../include/RedDAV/RedBrowser.php:225 #, php-format msgid "%1$s used" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:228 +#: ../../include/RedDAV/RedBrowser.php:230 #, php-format msgid "%1$s used of %2$s (%3$s%)" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:247 ../../include/conversation.php:1539 +#: ../../include/RedDAV/RedBrowser.php:249 ../../include/conversation.php:1539 #: ../../include/apps.php:135 ../../include/nav.php:106 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:249 +#: ../../include/RedDAV/RedBrowser.php:251 msgid "Total" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:256 ../../mod/settings.php:567 -#: ../../mod/settings.php:593 ../../mod/admin.php:866 +#: ../../include/RedDAV/RedBrowser.php:258 ../../mod/settings.php:579 +#: ../../mod/settings.php:605 ../../mod/admin.php:866 msgid "Name" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:257 +#: ../../include/RedDAV/RedBrowser.php:259 msgid "Type" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:258 +#: ../../include/RedDAV/RedBrowser.php:260 msgid "Size" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:259 +#: ../../include/RedDAV/RedBrowser.php:261 msgid "Last Modified" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:262 ../../include/conversation.php:639 +#: ../../include/RedDAV/RedBrowser.php:264 ../../include/conversation.php:639 #: ../../include/ItemObject.php:120 ../../include/apps.php:255 -#: ../../mod/settings.php:628 ../../mod/group.php:176 -#: ../../mod/connedit.php:476 ../../mod/photos.php:1070 -#: ../../mod/thing.php:234 ../../mod/admin.php:730 ../../mod/admin.php:861 +#: ../../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 "" -#: ../../include/RedDAV/RedBrowser.php:310 +#: ../../include/RedDAV/RedBrowser.php:312 msgid "Create new folder" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:311 ../../mod/mitem.php:169 -#: ../../mod/menu.php:100 ../../mod/new_channel.php:124 +#: ../../include/RedDAV/RedBrowser.php:313 ../../mod/mitem.php:169 +#: ../../mod/menu.php:100 ../../mod/new_channel.php:121 msgid "Create" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:312 +#: ../../include/RedDAV/RedBrowser.php:314 msgid "Upload file" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:313 ../../mod/photos.php:738 -#: ../../mod/photos.php:1246 ../../mod/profile_photo.php:361 +#: ../../include/RedDAV/RedBrowser.php:315 ../../mod/profile_photo.php:361 +#: ../../mod/photos.php:735 ../../mod/photos.php:1243 msgid "Upload" msgstr "" @@ -926,7 +973,7 @@ msgid "RSS/Atom" msgstr "" #: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 -#: ../../mod/admin.php:735 ../../boot.php:1542 +#: ../../mod/admin.php:735 ../../boot.php:1544 msgid "Email" msgstr "" @@ -954,6 +1001,18 @@ msgstr "" msgid "MySpace" msgstr "" +#: ../../include/auth.php:130 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:271 +msgid "Failed authentication" +msgstr "" + +#: ../../include/auth.php:285 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "" + #: ../../include/acl_selectors.php:240 msgid "Visible to your default audience" msgstr "" @@ -967,16 +1026,459 @@ msgid "Don't show" msgstr "" #: ../../include/acl_selectors.php:248 ../../mod/events.php:596 -#: ../../mod/chat.php:209 ../../mod/photos.php:588 ../../mod/photos.php:950 -#: ../../mod/filestorage.php:137 +#: ../../mod/chat.php:209 ../../mod/filestorage.php:141 +#: ../../mod/photos.php:588 ../../mod/photos.php:947 msgid "Permissions" msgstr "" #: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 -#: ../../mod/photos.php:1149 +#: ../../mod/photos.php:1146 msgid "Close" msgstr "" +#: ../../include/identity.php:31 ../../mod/item.php:1115 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "" + +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "" + +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "" + +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "" + +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" + +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "" + +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "" + +#: ../../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 "" + +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "" + +#: ../../include/identity.php:691 ../../mod/achievements.php:11 +#: ../../mod/profile.php:16 ../../mod/webpages.php:29 ../../mod/blocks.php:29 +#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 +#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:48 +#: ../../mod/connect.php:13 ../../mod/layouts.php:29 ../../mod/hcard.php:8 +msgid "Requested profile is not available." +msgstr "" + +#: ../../include/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 "" + +#: ../../include/identity.php:854 ../../mod/profiles.php:757 +msgid "Change profile photo" +msgstr "" + +#: ../../include/identity.php:861 +msgid "Profiles" +msgstr "" + +#: ../../include/identity.php:861 +msgid "Manage/edit profiles" +msgstr "" + +#: ../../include/identity.php:862 ../../mod/profiles.php:758 +msgid "Create New Profile" +msgstr "" + +#: ../../include/identity.php:865 ../../include/nav.php:103 +msgid "Edit Profile" +msgstr "" + +#: ../../include/identity.php:878 ../../mod/profiles.php:769 +msgid "Profile Image" +msgstr "" + +#: ../../include/identity.php:881 +msgid "visible to everybody" +msgstr "" + +#: ../../include/identity.php:882 ../../mod/profiles.php:652 +#: ../../mod/profiles.php:773 +msgid "Edit visibility" +msgstr "" + +#: ../../include/identity.php:898 ../../include/identity.php:1135 +msgid "Gender:" +msgstr "" + +#: ../../include/identity.php:899 ../../include/identity.php:1179 +msgid "Status:" +msgstr "" + +#: ../../include/identity.php:900 ../../include/identity.php:1190 +msgid "Homepage:" +msgstr "" + +#: ../../include/identity.php:901 +msgid "Online Now" +msgstr "" + +#: ../../include/identity.php:979 ../../include/identity.php:1059 +#: ../../mod/ping.php:329 +msgid "g A l F d" +msgstr "" + +#: ../../include/identity.php:980 ../../include/identity.php:1060 +msgid "F d" +msgstr "" + +#: ../../include/identity.php:1025 ../../include/identity.php:1100 +#: ../../mod/ping.php:351 +msgid "[today]" +msgstr "" + +#: ../../include/identity.php:1037 +msgid "Birthday Reminders" +msgstr "" + +#: ../../include/identity.php:1038 +msgid "Birthdays this week:" +msgstr "" + +#: ../../include/identity.php:1093 +msgid "[No description]" +msgstr "" + +#: ../../include/identity.php:1111 +msgid "Event Reminders" +msgstr "" + +#: ../../include/identity.php:1112 +msgid "Events this week:" +msgstr "" + +#: ../../include/identity.php:1125 ../../include/identity.php:1254 +#: ../../include/apps.php:138 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "" + +#: ../../include/identity.php:1133 ../../mod/settings.php:1022 +msgid "Full Name:" +msgstr "" + +#: ../../include/identity.php:1140 +msgid "Like this channel" +msgstr "" + +#: ../../include/identity.php:1164 +msgid "j F, Y" +msgstr "" + +#: ../../include/identity.php:1165 +msgid "j F" +msgstr "" + +#: ../../include/identity.php:1172 +msgid "Birthday:" +msgstr "" + +#: ../../include/identity.php:1176 +msgid "Age:" +msgstr "" + +#: ../../include/identity.php:1185 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/identity.php:1188 ../../mod/profiles.php:674 +msgid "Sexual Preference:" +msgstr "" + +#: ../../include/identity.php:1192 ../../mod/profiles.php:676 +msgid "Hometown:" +msgstr "" + +#: ../../include/identity.php:1194 +msgid "Tags:" +msgstr "" + +#: ../../include/identity.php:1196 ../../mod/profiles.php:677 +msgid "Political Views:" +msgstr "" + +#: ../../include/identity.php:1198 +msgid "Religion:" +msgstr "" + +#: ../../include/identity.php:1200 +msgid "About:" +msgstr "" + +#: ../../include/identity.php:1202 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/identity.php:1204 ../../mod/profiles.php:680 +msgid "Likes:" +msgstr "" + +#: ../../include/identity.php:1206 ../../mod/profiles.php:681 +msgid "Dislikes:" +msgstr "" + +#: ../../include/identity.php:1209 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/identity.php:1221 +msgid "My other channels:" +msgstr "" + +#: ../../include/identity.php:1224 +msgid "Musical interests:" +msgstr "" + +#: ../../include/identity.php:1226 +msgid "Books, literature:" +msgstr "" + +#: ../../include/identity.php:1228 +msgid "Television:" +msgstr "" + +#: ../../include/identity.php:1230 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/identity.php:1232 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/identity.php:1234 +msgid "Work/employment:" +msgstr "" + +#: ../../include/identity.php:1236 +msgid "School/education:" +msgstr "" + +#: ../../include/identity.php:1256 +msgid "Like this thing" +msgstr "" + +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 +msgid "Advanced" +msgstr "" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 +#: ../../mod/directory.php:317 ../../mod/directory.php:322 +msgid "Find" +msgstr "" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +#: ../../mod/directory.php:321 +msgid "Channel Suggestions" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 +#: ../../include/widgets.php:305 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "" + +#: ../../include/event.php:376 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../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 "" + +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "" + +#: ../../include/group.php:254 ../../mod/admin.php:735 +msgid "All Channels" +msgstr "" + +#: ../../include/group.php:276 +msgid "edit" +msgstr "" + +#: ../../include/group.php:298 +msgid "Collections" +msgstr "" + +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "" + +#: ../../include/group.php:300 +msgid "Create a new collection" +msgstr "" + +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "" + +#: ../../include/group.php:303 ../../include/widgets.php:273 +msgid "add" +msgstr "" + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "" + +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "" + +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "" + +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." +msgstr "" + #: ../../include/text.php:320 msgid "prev" msgstr "" @@ -1323,642 +1825,28 @@ msgstr "" msgid "Pages" msgstr "" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 -msgid "Advanced" -msgstr "" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:317 ../../mod/directory.php:322 -msgid "Find" -msgstr "" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:321 -msgid "Channel Suggestions" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:305 -msgid "Everything" -msgstr "" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "" - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "" - -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "" - -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "" - -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "" - -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "" - -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." -msgstr "" - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "" - -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/enotify.php:477 -msgid "[Red:Notify]" -msgstr "" - -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../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 "" - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:254 ../../mod/admin.php:735 -msgid "All Channels" -msgstr "" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "" - -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "" - -#: ../../include/group.php:303 ../../include/widgets.php:273 -msgid "add" -msgstr "" - -#: ../../include/identity.php:31 ../../mod/item.php:1112 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "" - -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "" - -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "" - -#: ../../include/identity.php:387 ../../include/identity.php:388 -#: ../../include/identity.php:395 ../../include/widgets.php:428 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:320 -#: ../../mod/settings.php:324 ../../mod/settings.php:325 -#: ../../mod/settings.php:328 ../../mod/settings.php:339 -#: ../../mod/connedit.php:510 -msgid "Friends" -msgstr "" - -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/webpages.php:29 ../../mod/blocks.php:29 -#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 -#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:48 -#: ../../mod/connect.php:13 ../../mod/layouts.php:29 ../../mod/hcard.php:8 -msgid "Requested profile is not available." -msgstr "" - -#: ../../include/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 "" - -#: ../../include/identity.php:854 ../../mod/profiles.php:740 -msgid "Change profile photo" -msgstr "" - -#: ../../include/identity.php:860 -msgid "Profiles" -msgstr "" - -#: ../../include/identity.php:860 -msgid "Manage/edit profiles" -msgstr "" - -#: ../../include/identity.php:861 ../../mod/profiles.php:741 -msgid "Create New Profile" -msgstr "" - -#: ../../include/identity.php:864 ../../include/nav.php:103 -msgid "Edit Profile" -msgstr "" - -#: ../../include/identity.php:875 ../../mod/profiles.php:752 -msgid "Profile Image" -msgstr "" - -#: ../../include/identity.php:878 -msgid "visible to everybody" -msgstr "" - -#: ../../include/identity.php:879 ../../mod/profiles.php:635 -#: ../../mod/profiles.php:756 -msgid "Edit visibility" -msgstr "" - -#: ../../include/identity.php:895 ../../include/identity.php:1132 -msgid "Gender:" -msgstr "" - -#: ../../include/identity.php:896 ../../include/identity.php:1176 -msgid "Status:" -msgstr "" - -#: ../../include/identity.php:897 ../../include/identity.php:1187 -msgid "Homepage:" -msgstr "" - -#: ../../include/identity.php:898 -msgid "Online Now" -msgstr "" - -#: ../../include/identity.php:976 ../../include/identity.php:1056 -#: ../../mod/ping.php:326 -msgid "g A l F d" -msgstr "" - -#: ../../include/identity.php:977 ../../include/identity.php:1057 -msgid "F d" -msgstr "" - -#: ../../include/identity.php:1022 ../../include/identity.php:1097 -#: ../../mod/ping.php:348 -msgid "[today]" -msgstr "" - -#: ../../include/identity.php:1034 -msgid "Birthday Reminders" -msgstr "" - -#: ../../include/identity.php:1035 -msgid "Birthdays this week:" -msgstr "" - -#: ../../include/identity.php:1090 -msgid "[No description]" -msgstr "" - -#: ../../include/identity.php:1108 -msgid "Event Reminders" -msgstr "" - -#: ../../include/identity.php:1109 -msgid "Events this week:" -msgstr "" - -#: ../../include/identity.php:1122 ../../include/identity.php:1251 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "" - -#: ../../include/identity.php:1130 ../../mod/settings.php:1012 -msgid "Full Name:" -msgstr "" - -#: ../../include/identity.php:1137 -msgid "Like this channel" -msgstr "" - -#: ../../include/identity.php:1161 -msgid "j F, Y" -msgstr "" - -#: ../../include/identity.php:1162 -msgid "j F" -msgstr "" - -#: ../../include/identity.php:1169 -msgid "Birthday:" -msgstr "" - -#: ../../include/identity.php:1173 -msgid "Age:" -msgstr "" - -#: ../../include/identity.php:1182 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/identity.php:1185 ../../mod/profiles.php:657 -msgid "Sexual Preference:" -msgstr "" - -#: ../../include/identity.php:1189 ../../mod/profiles.php:659 -msgid "Hometown:" -msgstr "" - -#: ../../include/identity.php:1191 -msgid "Tags:" -msgstr "" - -#: ../../include/identity.php:1193 ../../mod/profiles.php:660 -msgid "Political Views:" -msgstr "" - -#: ../../include/identity.php:1195 -msgid "Religion:" -msgstr "" - -#: ../../include/identity.php:1197 -msgid "About:" -msgstr "" - -#: ../../include/identity.php:1199 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/identity.php:1201 ../../mod/profiles.php:663 -msgid "Likes:" -msgstr "" - -#: ../../include/identity.php:1203 ../../mod/profiles.php:664 -msgid "Dislikes:" -msgstr "" - -#: ../../include/identity.php:1206 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/identity.php:1218 -msgid "My other channels:" -msgstr "" - -#: ../../include/identity.php:1221 -msgid "Musical interests:" -msgstr "" - -#: ../../include/identity.php:1223 -msgid "Books, literature:" -msgstr "" - -#: ../../include/identity.php:1225 -msgid "Television:" -msgstr "" - -#: ../../include/identity.php:1227 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/identity.php:1229 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/identity.php:1231 -msgid "Work/employment:" -msgstr "" - -#: ../../include/identity.php:1233 -msgid "School/education:" -msgstr "" - -#: ../../include/identity.php:1253 -msgid "Like this thing" -msgstr "" - -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:406 -msgid "Account approved." +#: ../../include/api.php:1084 +msgid "Public Timeline" msgstr "" -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/chat.php:10 +msgid "Missing room name" msgstr "" -#: ../../include/account.php:486 -msgid "Account verified. Please login." +#: ../../include/chat.php:19 +msgid "Duplicate room name" msgstr "" -#: ../../include/account.php:648 ../../include/account.php:650 -msgid "Click here to upgrade." +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." msgstr "" -#: ../../include/account.php:656 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/chat.php:105 +msgid "Room not found." msgstr "" -#: ../../include/account.php:661 -msgid "This action is not available under your subscription plan." +#: ../../include/chat.php:126 +msgid "Room is full" msgstr "" #: ../../include/follow.php:28 @@ -1993,127 +1881,6 @@ msgstr "" msgid "Cannot connect to yourself." msgstr "" -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "" - -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:590 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:606 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:681 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:685 -msgid "database storage failed." -msgstr "" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "" - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "" - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "" - -#: ../../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 "" - -#: ../../include/bbcode.php:147 ../../include/bbcode.php:727 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "" - -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "" - -#: ../../include/bbcode.php:220 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:222 -msgid "post" -msgstr "" - -#: ../../include/bbcode.php:645 -msgid "$1 spoiler" -msgstr "" - -#: ../../include/bbcode.php:665 -msgid "$1 wrote:" -msgstr "" - #: ../../include/conversation.php:126 ../../mod/like.php:89 msgid "channel" msgstr "" @@ -2195,9 +1962,9 @@ msgstr "" #: ../../include/conversation.php:719 ../../include/conversation.php:1142 #: ../../include/ItemObject.php:325 ../../mod/editpost.php:121 -#: ../../mod/mail.php:238 ../../mod/mail.php:353 ../../mod/photos.php:978 -#: ../../mod/editblock.php:152 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:183 +#: ../../mod/mail.php:238 ../../mod/mail.php:353 ../../mod/editblock.php:152 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 +#: ../../mod/photos.php:975 msgid "Please wait" msgstr "" @@ -2329,9 +2096,9 @@ msgstr "" msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../include/conversation.php:1117 ../../mod/photos.php:977 -#: ../../mod/editblock.php:198 ../../mod/editlayout.php:193 -#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 +#: ../../include/conversation.php:1117 ../../mod/editblock.php:198 +#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 +#: ../../mod/layouts.php:168 ../../mod/photos.php:974 msgid "Share" msgstr "" @@ -2459,9 +2226,9 @@ msgstr "" msgid "OK" msgstr "" -#: ../../include/conversation.php:1171 ../../mod/settings.php:566 -#: ../../mod/settings.php:592 ../../mod/events.php:579 -#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 +#: ../../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 msgid "Cancel" msgstr "" @@ -2744,11 +2511,11 @@ msgid "Save to Folder" msgstr "" #: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1023 ../../mod/photos.php:1035 +#: ../../mod/photos.php:1020 ../../mod/photos.php:1032 msgid "View all" msgstr "" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1032 +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1029 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -2775,11 +2542,11 @@ msgstr "" msgid "Add Tag" msgstr "" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:975 +#: ../../include/ItemObject.php:221 ../../mod/photos.php:972 msgid "I like this (toggle)" msgstr "" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:976 +#: ../../include/ItemObject.php:222 ../../mod/photos.php:973 msgid "I don't like this (toggle)" msgstr "" @@ -2831,12 +2598,12 @@ msgstr "" msgid "Mark all seen" msgstr "" -#: ../../include/ItemObject.php:314 ../../mod/photos.php:1143 +#: ../../include/ItemObject.php:314 ../../mod/photos.php:1140 msgctxt "noun" msgid "Likes" msgstr "" -#: ../../include/ItemObject.php:315 ../../mod/photos.php:1144 +#: ../../include/ItemObject.php:315 ../../mod/photos.php:1141 msgctxt "noun" msgid "Dislikes" msgstr "" @@ -2845,32 +2612,32 @@ msgstr "" msgid "[+] show all" msgstr "" -#: ../../include/ItemObject.php:626 ../../mod/photos.php:994 -#: ../../mod/photos.php:1104 +#: ../../include/ItemObject.php:626 ../../mod/photos.php:991 +#: ../../mod/photos.php:1101 msgid "This is you" msgstr "" #: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 -#: ../../mod/photos.php:996 ../../mod/photos.php:1106 +#: ../../mod/photos.php:993 ../../mod/photos.php:1103 msgid "Comment" msgstr "" #: ../../include/ItemObject.php:629 ../../mod/mood.php:135 -#: ../../mod/settings.php:565 ../../mod/settings.php:677 -#: ../../mod/settings.php:706 ../../mod/settings.php:730 -#: ../../mod/settings.php:812 ../../mod/settings.php:1004 -#: ../../mod/group.php:81 ../../mod/poke.php:166 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/group.php:81 ../../mod/poke.php:166 ../../mod/profiles.php:650 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 #: ../../mod/events.php:598 ../../mod/chat.php:177 ../../mod/chat.php:211 -#: ../../mod/connedit.php:556 ../../mod/mail.php:352 ../../mod/photos.php:594 -#: ../../mod/photos.php:671 ../../mod/photos.php:957 ../../mod/photos.php:997 -#: ../../mod/photos.php:1107 ../../mod/pdledit.php:58 ../../mod/thing.php:284 -#: ../../mod/thing.php:327 ../../mod/fsuggest.php:108 -#: ../../mod/filestorage.php:146 ../../mod/connect.php:93 -#: ../../mod/locs.php:99 ../../mod/import.php:504 ../../mod/profiles.php:633 -#: ../../mod/admin.php:412 ../../mod/admin.php:723 ../../mod/admin.php:859 -#: ../../mod/admin.php:992 ../../mod/admin.php:1191 ../../mod/admin.php:1278 -#: ../../mod/invite.php:142 ../../mod/xchan.php:11 ../../mod/appman.php:99 +#: ../../mod/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/poll.php:68 ../../view/theme/apw/php/config.php:256 #: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" @@ -2908,89 +2675,89 @@ msgstr "" msgid "Video" msgstr "" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 +#: ../../include/datetime.php:35 msgid "Miscellaneous" msgstr "" -#: ../../include/datetime.php:142 +#: ../../include/datetime.php:113 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/datetime.php:259 +#: ../../include/datetime.php:230 msgid "never" msgstr "" -#: ../../include/datetime.php:265 +#: ../../include/datetime.php:236 msgid "less than a second ago" msgstr "" -#: ../../include/datetime.php:268 +#: ../../include/datetime.php:239 msgid "year" msgstr "" -#: ../../include/datetime.php:268 +#: ../../include/datetime.php:239 msgid "years" msgstr "" -#: ../../include/datetime.php:269 +#: ../../include/datetime.php:240 msgid "month" msgstr "" -#: ../../include/datetime.php:269 +#: ../../include/datetime.php:240 msgid "months" msgstr "" -#: ../../include/datetime.php:270 +#: ../../include/datetime.php:241 msgid "week" msgstr "" -#: ../../include/datetime.php:270 +#: ../../include/datetime.php:241 msgid "weeks" msgstr "" -#: ../../include/datetime.php:271 +#: ../../include/datetime.php:242 msgid "day" msgstr "" -#: ../../include/datetime.php:271 +#: ../../include/datetime.php:242 msgid "days" msgstr "" -#: ../../include/datetime.php:272 +#: ../../include/datetime.php:243 msgid "hour" msgstr "" -#: ../../include/datetime.php:272 +#: ../../include/datetime.php:243 msgid "hours" msgstr "" -#: ../../include/datetime.php:273 +#: ../../include/datetime.php:244 msgid "minute" msgstr "" -#: ../../include/datetime.php:273 +#: ../../include/datetime.php:244 msgid "minutes" msgstr "" -#: ../../include/datetime.php:274 +#: ../../include/datetime.php:245 msgid "second" msgstr "" -#: ../../include/datetime.php:274 +#: ../../include/datetime.php:245 msgid "seconds" msgstr "" -#: ../../include/datetime.php:283 +#: ../../include/datetime.php:254 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: ../../include/datetime.php:491 +#: ../../include/datetime.php:462 #, php-format msgid "%1$s's birthday" msgstr "" -#: ../../include/datetime.php:492 +#: ../../include/datetime.php:463 #, php-format msgid "Happy Birthday %1$s" msgstr "" @@ -3003,12 +2770,12 @@ msgstr "" msgid "Address Book" msgstr "" -#: ../../include/apps.php:131 ../../include/nav.php:125 ../../boot.php:1540 +#: ../../include/apps.php:131 ../../include/nav.php:125 ../../boot.php:1542 msgid "Login" msgstr "" #: ../../include/apps.php:132 ../../include/nav.php:216 -#: ../../mod/manage.php:148 +#: ../../mod/manage.php:150 msgid "Channel Manager" msgstr "" @@ -3080,7 +2847,7 @@ msgid "Profile Photo" msgstr "" #: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:591 +#: ../../mod/settings.php:603 msgid "Update" msgstr "" @@ -3105,6 +2872,240 @@ msgstr "" msgid "User '%s' deleted" msgstr "" +#: ../../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 "" + +#: ../../include/bbcode.php:147 ../../include/bbcode.php:727 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "" + +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "" + +#: ../../include/bbcode.php:220 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:222 +msgid "post" +msgstr "" + +#: ../../include/bbcode.php:645 +msgid "$1 spoiler" +msgstr "" + +#: ../../include/bbcode.php:665 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "" + +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "" + +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "" + +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "" + +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "" + +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "" + +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "" + +#: ../../include/enotify.php:176 ../../include/enotify.php:191 +#: ../../include/enotify.php:217 ../../include/enotify.php:236 +#: ../../include/enotify.php:250 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "" + +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "" + +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "" + +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "" + +#: ../../include/enotify.php:212 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "" + +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "" + +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "" + +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "" + +#: ../../include/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "" + +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "" + +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "" + +#: ../../include/enotify.php:259 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "" + +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "" + +#: ../../include/enotify.php:274 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +msgstr "" + +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "" + +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "" + +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../include/enotify.php:490 +msgid "[Red:Notify]" +msgstr "" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" @@ -3462,7 +3463,7 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1539 +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1541 msgid "Logout" msgstr "" @@ -3535,7 +3536,7 @@ msgstr "" msgid "Home Page" msgstr "" -#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1516 +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1518 msgid "Register" msgstr "" @@ -3807,7 +3808,7 @@ msgstr "" msgid "Menu Item Permissions" msgstr "" -#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1039 +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1049 msgid "(click to open/close)" msgstr "" @@ -3859,568 +3860,16 @@ msgstr "" msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../mod/settings.php:73 -msgid "Name is required" +#: ../../mod/ping.php:266 +msgid "sent you a private message" msgstr "" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" +#: ../../mod/ping.php:319 +msgid "added your channel" msgstr "" -#: ../../mod/settings.php:213 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:217 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:231 -msgid "Password changed." -msgstr "" - -#: ../../mod/settings.php:233 -msgid "Password update failed. Please try again." -msgstr "" - -#: ../../mod/settings.php:247 -msgid "Not valid email." -msgstr "" - -#: ../../mod/settings.php:250 -msgid "Protected email address. Cannot change to that email." -msgstr "" - -#: ../../mod/settings.php:259 -msgid "System failure storing new email. Please try again." -msgstr "" - -#: ../../mod/settings.php:495 -msgid "Settings updated." -msgstr "" - -#: ../../mod/settings.php:564 ../../mod/settings.php:590 -#: ../../mod/settings.php:626 -msgid "Add application" -msgstr "" - -#: ../../mod/settings.php:567 -msgid "Name of application" -msgstr "" - -#: ../../mod/settings.php:568 ../../mod/settings.php:594 -msgid "Consumer Key" -msgstr "" - -#: ../../mod/settings.php:568 ../../mod/settings.php:569 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../mod/settings.php:569 ../../mod/settings.php:595 -msgid "Consumer Secret" -msgstr "" - -#: ../../mod/settings.php:570 ../../mod/settings.php:596 -msgid "Redirect" -msgstr "" - -#: ../../mod/settings.php:570 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" -msgstr "" - -#: ../../mod/settings.php:571 ../../mod/settings.php:597 -msgid "Icon url" -msgstr "" - -#: ../../mod/settings.php:571 -msgid "Optional" -msgstr "" - -#: ../../mod/settings.php:582 -msgid "You can't edit this application." -msgstr "" - -#: ../../mod/settings.php:625 -msgid "Connected Apps" -msgstr "" - -#: ../../mod/settings.php:629 -msgid "Client key starts with" -msgstr "" - -#: ../../mod/settings.php:630 -msgid "No name" -msgstr "" - -#: ../../mod/settings.php:631 -msgid "Remove authorization" -msgstr "" - -#: ../../mod/settings.php:642 -msgid "No feature settings configured" -msgstr "" - -#: ../../mod/settings.php:650 -msgid "Feature Settings" -msgstr "" - -#: ../../mod/settings.php:673 -msgid "Account Settings" -msgstr "" - -#: ../../mod/settings.php:674 -msgid "Password Settings" -msgstr "" - -#: ../../mod/settings.php:675 -msgid "New Password:" -msgstr "" - -#: ../../mod/settings.php:676 -msgid "Confirm:" -msgstr "" - -#: ../../mod/settings.php:676 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: ../../mod/settings.php:678 ../../mod/settings.php:1013 -msgid "Email Address:" -msgstr "" - -#: ../../mod/settings.php:679 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "" - -#: ../../mod/settings.php:680 -msgid "Remove this account from this server including all its channels" -msgstr "" - -#: ../../mod/settings.php:681 ../../mod/settings.php:1095 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "" - -#: ../../mod/settings.php:697 -msgid "Off" -msgstr "" - -#: ../../mod/settings.php:697 -msgid "On" -msgstr "" - -#: ../../mod/settings.php:704 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:729 -msgid "Connector Settings" -msgstr "" - -#: ../../mod/settings.php:768 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/settings.php:771 -#, php-format -msgid "%s - (Experimental)" -msgstr "" - -#: ../../mod/settings.php:774 ../../mod/admin.php:363 -msgid "mobile" -msgstr "" - -#: ../../mod/settings.php:810 -msgid "Display Settings" -msgstr "" - -#: ../../mod/settings.php:816 -msgid "Display Theme:" -msgstr "" - -#: ../../mod/settings.php:817 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:818 -msgid "Enable user zoom on mobile devices" -msgstr "" - -#: ../../mod/settings.php:819 -msgid "Update browser every xx seconds" -msgstr "" - -#: ../../mod/settings.php:819 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: ../../mod/settings.php:820 -msgid "Maximum number of conversations to load at any time:" -msgstr "" - -#: ../../mod/settings.php:820 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../mod/settings.php:821 -msgid "Don't show emoticons" -msgstr "" - -#: ../../mod/settings.php:822 -msgid "Link post titles to source" -msgstr "" - -#: ../../mod/settings.php:823 -msgid "System Page Layout Editor - (advanced)" -msgstr "" - -#: ../../mod/settings.php:826 -msgid "Use blog/list mode on channel page" -msgstr "" - -#: ../../mod/settings.php:826 ../../mod/settings.php:827 -msgid "(comments displayed separately)" -msgstr "" - -#: ../../mod/settings.php:827 -msgid "Use blog/list mode on matrix page" -msgstr "" - -#: ../../mod/settings.php:828 -msgid "Channel page max height of content (in pixels)" -msgstr "" - -#: ../../mod/settings.php:828 ../../mod/settings.php:829 -msgid "click to expand content exceeding this height" -msgstr "" - -#: ../../mod/settings.php:829 -msgid "Matrix page max height of content (in pixels)" -msgstr "" - -#: ../../mod/settings.php:863 -msgid "Nobody except yourself" -msgstr "" - -#: ../../mod/settings.php:864 -msgid "Only those you specifically allow" -msgstr "" - -#: ../../mod/settings.php:865 -msgid "Approved connections" -msgstr "" - -#: ../../mod/settings.php:866 -msgid "Any connections" -msgstr "" - -#: ../../mod/settings.php:867 -msgid "Anybody on this website" -msgstr "" - -#: ../../mod/settings.php:868 -msgid "Anybody in this network" -msgstr "" - -#: ../../mod/settings.php:869 -msgid "Anybody authenticated" -msgstr "" - -#: ../../mod/settings.php:870 -msgid "Anybody on the internet" -msgstr "" - -#: ../../mod/settings.php:944 -msgid "Publish your default profile in the network directory" -msgstr "" - -#: ../../mod/settings.php:944 ../../mod/settings.php:949 -#: ../../mod/settings.php:1032 ../../mod/api.php:106 -#: ../../mod/profiles.php:592 ../../mod/admin.php:390 -msgid "No" -msgstr "" - -#: ../../mod/settings.php:944 ../../mod/settings.php:949 -#: ../../mod/settings.php:1032 ../../mod/api.php:105 -#: ../../mod/profiles.php:591 ../../mod/admin.php:392 -msgid "Yes" -msgstr "" - -#: ../../mod/settings.php:949 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../mod/settings.php:953 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "" - -#: ../../mod/settings.php:958 -msgid "Your channel address is" -msgstr "" - -#: ../../mod/settings.php:1002 -msgid "Channel Settings" -msgstr "" - -#: ../../mod/settings.php:1011 -msgid "Basic Settings" -msgstr "" - -#: ../../mod/settings.php:1014 -msgid "Your Timezone:" -msgstr "" - -#: ../../mod/settings.php:1015 -msgid "Default Post Location:" -msgstr "" - -#: ../../mod/settings.php:1015 -msgid "Geographical location to display on your posts" -msgstr "" - -#: ../../mod/settings.php:1016 -msgid "Use Browser Location:" -msgstr "" - -#: ../../mod/settings.php:1018 -msgid "Adult Content" -msgstr "" - -#: ../../mod/settings.php:1018 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "" - -#: ../../mod/settings.php:1020 -msgid "Security and Privacy Settings" -msgstr "" - -#: ../../mod/settings.php:1022 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../mod/settings.php:1024 -msgid "Hide my online presence" -msgstr "" - -#: ../../mod/settings.php:1024 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../mod/settings.php:1026 -msgid "Simple Privacy Settings:" -msgstr "" - -#: ../../mod/settings.php:1027 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "" - -#: ../../mod/settings.php:1028 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "" - -#: ../../mod/settings.php:1029 -msgid "Private - default private, never open or public" -msgstr "" - -#: ../../mod/settings.php:1030 -msgid "Blocked - default blocked to/from everybody" -msgstr "" - -#: ../../mod/settings.php:1032 -msgid "Allow others to tag your posts" -msgstr "" - -#: ../../mod/settings.php:1032 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../mod/settings.php:1034 -msgid "Advanced Privacy Settings" -msgstr "" - -#: ../../mod/settings.php:1036 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../mod/settings.php:1036 -msgid "0 or blank prevents expiration" -msgstr "" - -#: ../../mod/settings.php:1037 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../mod/settings.php:1037 -msgid "May reduce spam activity" -msgstr "" - -#: ../../mod/settings.php:1038 -msgid "Default Post Permissions" -msgstr "" - -#: ../../mod/settings.php:1043 -msgid "Channel permissions category:" -msgstr "" - -#: ../../mod/settings.php:1051 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../mod/settings.php:1051 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../mod/settings.php:1054 -msgid "Notification Settings" -msgstr "" - -#: ../../mod/settings.php:1055 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1056 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1057 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:1058 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1059 -msgid "Send a notification email when:" -msgstr "" - -#: ../../mod/settings.php:1060 -msgid "You receive a connection request" -msgstr "" - -#: ../../mod/settings.php:1061 -msgid "Your connections are confirmed" -msgstr "" - -#: ../../mod/settings.php:1062 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../mod/settings.php:1063 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../mod/settings.php:1064 -msgid "You receive a private message" -msgstr "" - -#: ../../mod/settings.php:1065 -msgid "You receive a friend suggestion" -msgstr "" - -#: ../../mod/settings.php:1066 -msgid "You are tagged in a post" -msgstr "" - -#: ../../mod/settings.php:1067 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../mod/settings.php:1070 -msgid "Show visual notifications including:" -msgstr "" - -#: ../../mod/settings.php:1072 -msgid "Unseen matrix activity" -msgstr "" - -#: ../../mod/settings.php:1073 -msgid "Unseen channel activity" -msgstr "" - -#: ../../mod/settings.php:1074 -msgid "Unseen private messages" -msgstr "" - -#: ../../mod/settings.php:1074 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -msgid "Recommended" -msgstr "" - -#: ../../mod/settings.php:1075 -msgid "Upcoming events" -msgstr "" - -#: ../../mod/settings.php:1076 -msgid "Events today" -msgstr "" - -#: ../../mod/settings.php:1077 -msgid "Upcoming birthdays" -msgstr "" - -#: ../../mod/settings.php:1077 -msgid "Not available in all themes" -msgstr "" - -#: ../../mod/settings.php:1078 -msgid "System (personal) notifications" -msgstr "" - -#: ../../mod/settings.php:1079 -msgid "System info messages" -msgstr "" - -#: ../../mod/settings.php:1080 -msgid "System critical alerts" -msgstr "" - -#: ../../mod/settings.php:1081 -msgid "New connections" -msgstr "" - -#: ../../mod/settings.php:1082 -msgid "System Registrations" -msgstr "" - -#: ../../mod/settings.php:1084 -msgid "Notify me of events this many days in advance" -msgstr "" - -#: ../../mod/settings.php:1084 -msgid "Must be greater than 0" -msgstr "" - -#: ../../mod/settings.php:1086 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1087 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1090 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "" - -#: ../../mod/settings.php:1091 -msgid "Miscellaneous Settings" -msgstr "" - -#: ../../mod/settings.php:1093 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../mod/settings.php:1094 -msgid "Remove this channel" +#: ../../mod/ping.php:360 +msgid "posted an event" msgstr "" #: ../../mod/group.php:20 @@ -4471,8 +3920,9 @@ msgstr "" msgid "Click on a channel to add or remove." msgstr "" -#: ../../mod/search.php:13 ../../mod/photos.php:458 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 +#: ../../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 "" @@ -4519,391 +3969,275 @@ msgid "" "and/or create new posts for you?" msgstr "" -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" +#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960 +#: ../../mod/settings.php:1042 ../../mod/admin.php:392 +msgid "Yes" msgstr "" -#: ../../mod/setup.php:172 -msgid "Could not connect to database." +#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960 +#: ../../mod/settings.php:1042 ../../mod/admin.php:390 +msgid "No" msgstr "" -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:583 +msgid "Profile not found." msgstr "" -#: ../../mod/setup.php:183 -msgid "Could not create table." +#: ../../mod/profiles.php:38 +msgid "Profile deleted." msgstr "" -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" msgstr "" -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." msgstr "" -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." msgstr "" -#: ../../mod/setup.php:261 -msgid "System check" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." msgstr "" -#: ../../mod/setup.php:265 ../../mod/events.php:445 ../../mod/photos.php:868 -msgid "Next" +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." msgstr "" -#: ../../mod/setup.php:266 -msgid "Check again" +#: ../../mod/profiles.php:387 +msgid "Marital Status" msgstr "" -#: ../../mod/setup.php:289 -msgid "Database connection" +#: ../../mod/profiles.php:391 +msgid "Romantic Partner" msgstr "" -#: ../../mod/setup.php:290 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." +#: ../../mod/profiles.php:395 +msgid "Likes" msgstr "" -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../mod/profiles.php:399 +msgid "Dislikes" msgstr "" -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/profiles.php:403 +msgid "Work/Employment" msgstr "" -#: ../../mod/setup.php:296 -msgid "Database Server Name" +#: ../../mod/profiles.php:406 +msgid "Religion" msgstr "" -#: ../../mod/setup.php:296 -msgid "Default is localhost" +#: ../../mod/profiles.php:410 +msgid "Political Views" msgstr "" -#: ../../mod/setup.php:297 -msgid "Database Port" +#: ../../mod/profiles.php:414 +msgid "Gender" msgstr "" -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" +#: ../../mod/profiles.php:418 +msgid "Sexual Preference" msgstr "" -#: ../../mod/setup.php:298 -msgid "Database Login Name" +#: ../../mod/profiles.php:422 +msgid "Homepage" msgstr "" -#: ../../mod/setup.php:299 -msgid "Database Login Password" +#: ../../mod/profiles.php:426 +msgid "Interests" msgstr "" -#: ../../mod/setup.php:300 -msgid "Database Name" +#: ../../mod/profiles.php:430 ../../mod/admin.php:866 +msgid "Address" msgstr "" -#: ../../mod/setup.php:301 -msgid "Database Type" +#: ../../mod/profiles.php:437 ../../mod/pubsites.php:25 +msgid "Location" msgstr "" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" +#: ../../mod/profiles.php:520 +msgid "Profile updated." msgstr "" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../mod/profiles.php:609 +msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" +#: ../../mod/profiles.php:649 +msgid "Edit Profile Details" msgstr "" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." +#: ../../mod/profiles.php:651 +msgid "View this profile" msgstr "" -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" +#: ../../mod/profiles.php:653 +msgid "Change Profile Photo" msgstr "" -#: ../../mod/setup.php:335 -msgid "Site settings" +#: ../../mod/profiles.php:654 +msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/profiles.php:655 +msgid "Clone this profile" msgstr "" -#: ../../mod/setup.php:396 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +#: ../../mod/profiles.php:656 +msgid "Delete this profile" msgstr "" -#: ../../mod/setup.php:400 -msgid "PHP executable path" +#: ../../mod/profiles.php:658 +msgid "Import profile from file" msgstr "" -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../mod/profiles.php:659 +msgid "Export profile to file" msgstr "" -#: ../../mod/setup.php:405 -msgid "Command line PHP" +#: ../../mod/profiles.php:660 +msgid "Profile Name:" msgstr "" -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../mod/profiles.php:661 +msgid "Your Full Name:" msgstr "" -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." +#: ../../mod/profiles.php:662 +msgid "Title/Description:" msgstr "" -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" +#: ../../mod/profiles.php:663 +msgid "Your Gender:" msgstr "" -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../mod/profiles.php:664 +msgid "Birthday :" msgstr "" -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../mod/profiles.php:665 +msgid "Street Address:" msgstr "" -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" +#: ../../mod/profiles.php:666 +msgid "Locality/City:" msgstr "" -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" +#: ../../mod/profiles.php:667 +msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" +#: ../../mod/profiles.php:668 +msgid "Country:" msgstr "" -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" +#: ../../mod/profiles.php:669 +msgid "Region/State:" msgstr "" -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" +#: ../../mod/profiles.php:670 +msgid " Marital Status:" msgstr "" -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" +#: ../../mod/profiles.php:671 +msgid "Who: (if applicable)" msgstr "" -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" +#: ../../mod/profiles.php:672 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" +#: ../../mod/profiles.php:673 +msgid "Since [date]:" msgstr "" -#: ../../mod/setup.php:458 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../mod/profiles.php:675 +msgid "Homepage URL:" msgstr "" -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" +#: ../../mod/profiles.php:678 +msgid "Religious Views:" msgstr "" -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../mod/profiles.php:679 +msgid "Keywords:" msgstr "" -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." +#: ../../mod/profiles.php:682 +msgid "Example: fishing photography software" msgstr "" -#: ../../mod/setup.php:476 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../mod/profiles.php:683 +msgid "Used in directory listings" msgstr "" -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." +#: ../../mod/profiles.php:684 +msgid "Tell us about yourself..." msgstr "" -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." +#: ../../mod/profiles.php:685 +msgid "Hobbies/Interests" msgstr "" -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." +#: ../../mod/profiles.php:686 +msgid "Contact information and Social Networks" msgstr "" -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." +#: ../../mod/profiles.php:687 +msgid "My other channels" msgstr "" -#: ../../mod/setup.php:508 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../mod/profiles.php:688 +msgid "Musical interests" msgstr "" -#: ../../mod/setup.php:509 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +#: ../../mod/profiles.php:689 +msgid "Books, literature" msgstr "" -#: ../../mod/setup.php:510 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../mod/profiles.php:690 +msgid "Television" msgstr "" -#: ../../mod/setup.php:511 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../mod/profiles.php:691 +msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" +#: ../../mod/profiles.php:692 +msgid "Love/romance" msgstr "" -#: ../../mod/setup.php:524 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: ../../mod/profiles.php:693 +msgid "Work/employment" msgstr "" -#: ../../mod/setup.php:525 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." +#: ../../mod/profiles.php:694 +msgid "School/education" msgstr "" -#: ../../mod/setup.php:526 ../../mod/setup.php:544 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../mod/profiles.php:700 +msgid "This is your default profile." msgstr "" -#: ../../mod/setup.php:527 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../mod/profiles.php:711 ../../mod/directory.php:188 +msgid "Age: " msgstr "" -#: ../../mod/setup.php:530 -#, php-format -msgid "%s is writable" +#: ../../mod/profiles.php:754 +msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/setup.php:543 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to " -"have write access to the store directory under the Red top level folder" +#: ../../mod/profiles.php:755 +msgid "Add profile things" msgstr "" -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "" - -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../mod/setup.php:578 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "" - -#: ../../mod/setup.php:579 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "" - -#: ../../mod/setup.php:580 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "" - -#: ../../mod/setup.php:581 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "" - -#: ../../mod/setup.php:590 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " -msgstr "" - -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/setup.php:602 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" - -#: ../../mod/setup.php:626 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../mod/setup.php:661 -msgid "

    What next

    " -msgstr "" - -#: ../../mod/setup.php:662 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/profiles.php:756 +msgid "Include desirable objects in your profile" msgstr "" #: ../../mod/attach.php:9 @@ -4979,7 +4313,7 @@ msgstr "" msgid "Potential Delegates" msgstr "" -#: ../../mod/delegate.php:130 ../../mod/photos.php:905 ../../mod/tagrm.php:133 +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:902 msgid "Remove" msgstr "" @@ -5152,10 +4486,14 @@ msgstr "" msgid "Create New Event" msgstr "" -#: ../../mod/events.php:444 ../../mod/photos.php:859 +#: ../../mod/events.php:444 ../../mod/photos.php:856 msgid "Previous" msgstr "" +#: ../../mod/events.php:445 ../../mod/setup.php:265 ../../mod/photos.php:865 +msgid "Next" +msgstr "" + #: ../../mod/events.php:446 msgid "Export" msgstr "" @@ -5230,10 +4568,6 @@ msgstr "" msgid "Registration Policy" msgstr "" -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:428 -msgid "Location" -msgstr "" - #: ../../mod/channel.php:25 ../../mod/chat.php:19 msgid "You must be logged in to see this page." msgstr "" @@ -5440,7 +4774,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:85 ../../boot.php:1548 +#: ../../mod/lostpass.php:85 ../../boot.php:1550 msgid "Password Reset" msgstr "" @@ -5489,6 +4823,563 @@ msgstr "" msgid "Reset" msgstr "" +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "" + +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "" + +#: ../../mod/settings.php:222 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:226 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:240 +msgid "Password changed." +msgstr "" + +#: ../../mod/settings.php:242 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../mod/settings.php:256 +msgid "Not valid email." +msgstr "" + +#: ../../mod/settings.php:259 +msgid "Protected email address. Cannot change to that email." +msgstr "" + +#: ../../mod/settings.php:268 +msgid "System failure storing new email. Please try again." +msgstr "" + +#: ../../mod/settings.php:507 +msgid "Settings updated." +msgstr "" + +#: ../../mod/settings.php:576 ../../mod/settings.php:602 +#: ../../mod/settings.php:638 +msgid "Add application" +msgstr "" + +#: ../../mod/settings.php:579 +msgid "Name of application" +msgstr "" + +#: ../../mod/settings.php:580 ../../mod/settings.php:606 +msgid "Consumer Key" +msgstr "" + +#: ../../mod/settings.php:580 ../../mod/settings.php:581 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "" + +#: ../../mod/settings.php:581 ../../mod/settings.php:607 +msgid "Consumer Secret" +msgstr "" + +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +msgid "Redirect" +msgstr "" + +#: ../../mod/settings.php:582 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" +msgstr "" + +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +msgid "Icon url" +msgstr "" + +#: ../../mod/settings.php:583 +msgid "Optional" +msgstr "" + +#: ../../mod/settings.php:594 +msgid "You can't edit this application." +msgstr "" + +#: ../../mod/settings.php:637 +msgid "Connected Apps" +msgstr "" + +#: ../../mod/settings.php:641 +msgid "Client key starts with" +msgstr "" + +#: ../../mod/settings.php:642 +msgid "No name" +msgstr "" + +#: ../../mod/settings.php:643 +msgid "Remove authorization" +msgstr "" + +#: ../../mod/settings.php:654 +msgid "No feature settings configured" +msgstr "" + +#: ../../mod/settings.php:662 +msgid "Feature Settings" +msgstr "" + +#: ../../mod/settings.php:685 +msgid "Account Settings" +msgstr "" + +#: ../../mod/settings.php:686 +msgid "Password Settings" +msgstr "" + +#: ../../mod/settings.php:687 +msgid "New Password:" +msgstr "" + +#: ../../mod/settings.php:688 +msgid "Confirm:" +msgstr "" + +#: ../../mod/settings.php:688 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: ../../mod/settings.php:690 ../../mod/settings.php:1023 +msgid "Email Address:" +msgstr "" + +#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "" + +#: ../../mod/settings.php:692 +msgid "Remove this account from this server including all its channels" +msgstr "" + +#: ../../mod/settings.php:693 ../../mod/settings.php:1104 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "" + +#: ../../mod/settings.php:709 +msgid "Off" +msgstr "" + +#: ../../mod/settings.php:709 +msgid "On" +msgstr "" + +#: ../../mod/settings.php:716 +msgid "Additional Features" +msgstr "" + +#: ../../mod/settings.php:740 +msgid "Connector Settings" +msgstr "" + +#: ../../mod/settings.php:779 +msgid "No special theme for mobile devices" +msgstr "" + +#: ../../mod/settings.php:782 +#, php-format +msgid "%s - (Experimental)" +msgstr "" + +#: ../../mod/settings.php:785 ../../mod/admin.php:363 +msgid "mobile" +msgstr "" + +#: ../../mod/settings.php:821 +msgid "Display Settings" +msgstr "" + +#: ../../mod/settings.php:827 +msgid "Display Theme:" +msgstr "" + +#: ../../mod/settings.php:828 +msgid "Mobile Theme:" +msgstr "" + +#: ../../mod/settings.php:829 +msgid "Enable user zoom on mobile devices" +msgstr "" + +#: ../../mod/settings.php:830 +msgid "Update browser every xx seconds" +msgstr "" + +#: ../../mod/settings.php:830 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: ../../mod/settings.php:831 +msgid "Maximum number of conversations to load at any time:" +msgstr "" + +#: ../../mod/settings.php:831 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../mod/settings.php:832 +msgid "Don't show emoticons" +msgstr "" + +#: ../../mod/settings.php:833 +msgid "Link post titles to source" +msgstr "" + +#: ../../mod/settings.php:834 +msgid "System Page Layout Editor - (advanced)" +msgstr "" + +#: ../../mod/settings.php:837 +msgid "Use blog/list mode on channel page" +msgstr "" + +#: ../../mod/settings.php:837 ../../mod/settings.php:838 +msgid "(comments displayed separately)" +msgstr "" + +#: ../../mod/settings.php:838 +msgid "Use blog/list mode on matrix page" +msgstr "" + +#: ../../mod/settings.php:839 +msgid "Channel page max height of content (in pixels)" +msgstr "" + +#: ../../mod/settings.php:839 ../../mod/settings.php:840 +msgid "click to expand content exceeding this height" +msgstr "" + +#: ../../mod/settings.php:840 +msgid "Matrix page max height of content (in pixels)" +msgstr "" + +#: ../../mod/settings.php:874 +msgid "Nobody except yourself" +msgstr "" + +#: ../../mod/settings.php:875 +msgid "Only those you specifically allow" +msgstr "" + +#: ../../mod/settings.php:876 +msgid "Approved connections" +msgstr "" + +#: ../../mod/settings.php:877 +msgid "Any connections" +msgstr "" + +#: ../../mod/settings.php:878 +msgid "Anybody on this website" +msgstr "" + +#: ../../mod/settings.php:879 +msgid "Anybody in this network" +msgstr "" + +#: ../../mod/settings.php:880 +msgid "Anybody authenticated" +msgstr "" + +#: ../../mod/settings.php:881 +msgid "Anybody on the internet" +msgstr "" + +#: ../../mod/settings.php:955 +msgid "Publish your default profile in the network directory" +msgstr "" + +#: ../../mod/settings.php:960 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../mod/settings.php:964 ../../mod/profile_photo.php:365 +msgid "or" +msgstr "" + +#: ../../mod/settings.php:969 +msgid "Your channel address is" +msgstr "" + +#: ../../mod/settings.php:1014 +msgid "Channel Settings" +msgstr "" + +#: ../../mod/settings.php:1021 +msgid "Basic Settings" +msgstr "" + +#: ../../mod/settings.php:1024 +msgid "Your Timezone:" +msgstr "" + +#: ../../mod/settings.php:1025 +msgid "Default Post Location:" +msgstr "" + +#: ../../mod/settings.php:1025 +msgid "Geographical location to display on your posts" +msgstr "" + +#: ../../mod/settings.php:1026 +msgid "Use Browser Location:" +msgstr "" + +#: ../../mod/settings.php:1028 +msgid "Adult Content" +msgstr "" + +#: ../../mod/settings.php:1028 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "" + +#: ../../mod/settings.php:1030 +msgid "Security and Privacy Settings" +msgstr "" + +#: ../../mod/settings.php:1032 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "" + +#: ../../mod/settings.php:1034 +msgid "Hide my online presence" +msgstr "" + +#: ../../mod/settings.php:1034 +msgid "Prevents displaying in your profile that you are online" +msgstr "" + +#: ../../mod/settings.php:1036 +msgid "Simple Privacy Settings:" +msgstr "" + +#: ../../mod/settings.php:1037 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "" + +#: ../../mod/settings.php:1038 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "" + +#: ../../mod/settings.php:1039 +msgid "Private - default private, never open or public" +msgstr "" + +#: ../../mod/settings.php:1040 +msgid "Blocked - default blocked to/from everybody" +msgstr "" + +#: ../../mod/settings.php:1042 +msgid "Allow others to tag your posts" +msgstr "" + +#: ../../mod/settings.php:1042 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "" + +#: ../../mod/settings.php:1044 +msgid "Advanced Privacy Settings" +msgstr "" + +#: ../../mod/settings.php:1046 +msgid "Expire other channel content after this many days" +msgstr "" + +#: ../../mod/settings.php:1046 +msgid "0 or blank prevents expiration" +msgstr "" + +#: ../../mod/settings.php:1047 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: ../../mod/settings.php:1047 +msgid "May reduce spam activity" +msgstr "" + +#: ../../mod/settings.php:1048 +msgid "Default Post Permissions" +msgstr "" + +#: ../../mod/settings.php:1053 +msgid "Channel permissions category:" +msgstr "" + +#: ../../mod/settings.php:1059 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../mod/settings.php:1059 +msgid "Useful to reduce spamming" +msgstr "" + +#: ../../mod/settings.php:1062 +msgid "Notification Settings" +msgstr "" + +#: ../../mod/settings.php:1063 +msgid "By default post a status message when:" +msgstr "" + +#: ../../mod/settings.php:1064 +msgid "accepting a friend request" +msgstr "" + +#: ../../mod/settings.php:1065 +msgid "joining a forum/community" +msgstr "" + +#: ../../mod/settings.php:1066 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:1067 +msgid "Send a notification email when:" +msgstr "" + +#: ../../mod/settings.php:1068 +msgid "You receive a connection request" +msgstr "" + +#: ../../mod/settings.php:1069 +msgid "Your connections are confirmed" +msgstr "" + +#: ../../mod/settings.php:1070 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../mod/settings.php:1071 +msgid "Someone writes a followup comment" +msgstr "" + +#: ../../mod/settings.php:1072 +msgid "You receive a private message" +msgstr "" + +#: ../../mod/settings.php:1073 +msgid "You receive a friend suggestion" +msgstr "" + +#: ../../mod/settings.php:1074 +msgid "You are tagged in a post" +msgstr "" + +#: ../../mod/settings.php:1075 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../mod/settings.php:1078 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../mod/settings.php:1080 +msgid "Unseen matrix activity" +msgstr "" + +#: ../../mod/settings.php:1081 +msgid "Unseen channel activity" +msgstr "" + +#: ../../mod/settings.php:1082 +msgid "Unseen private messages" +msgstr "" + +#: ../../mod/settings.php:1082 ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 +msgid "Recommended" +msgstr "" + +#: ../../mod/settings.php:1083 +msgid "Upcoming events" +msgstr "" + +#: ../../mod/settings.php:1084 +msgid "Events today" +msgstr "" + +#: ../../mod/settings.php:1085 +msgid "Upcoming birthdays" +msgstr "" + +#: ../../mod/settings.php:1085 +msgid "Not available in all themes" +msgstr "" + +#: ../../mod/settings.php:1086 +msgid "System (personal) notifications" +msgstr "" + +#: ../../mod/settings.php:1087 +msgid "System info messages" +msgstr "" + +#: ../../mod/settings.php:1088 +msgid "System critical alerts" +msgstr "" + +#: ../../mod/settings.php:1089 +msgid "New connections" +msgstr "" + +#: ../../mod/settings.php:1090 +msgid "System Registrations" +msgstr "" + +#: ../../mod/settings.php:1091 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "" + +#: ../../mod/settings.php:1093 +msgid "Notify me of events this many days in advance" +msgstr "" + +#: ../../mod/settings.php:1093 +msgid "Must be greater than 0" +msgstr "" + +#: ../../mod/settings.php:1095 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1096 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/settings.php:1099 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "" + +#: ../../mod/settings.php:1100 +msgid "Miscellaneous Settings" +msgstr "" + +#: ../../mod/settings.php:1102 +msgid "Personal menu to display in your channel pages" +msgstr "" + +#: ../../mod/settings.php:1103 +msgid "Remove this channel" +msgstr "" + #: ../../mod/connections.php:37 ../../mod/connedit.php:64 msgid "Could not access contact record." msgstr "" @@ -5582,16 +5473,39 @@ msgstr "" msgid "Finding: " msgstr "" -#: ../../mod/ping.php:265 -msgid "sent you a private message" +#: ../../mod/manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../mod/ping.php:316 -msgid "added your channel" +#: ../../mod/manage.php:146 +msgid "Create a new channel" msgstr "" -#: ../../mod/ping.php:357 -msgid "posted an event" +#: ../../mod/manage.php:151 +msgid "Current Channel" +msgstr "" + +#: ../../mod/manage.php:153 +msgid "Switch to one of your channels by selecting it." +msgstr "" + +#: ../../mod/manage.php:154 +msgid "Default Channel" +msgstr "" + +#: ../../mod/manage.php:155 +msgid "Make Default" +msgstr "" + +#: ../../mod/manage.php:158 +#, php-format +msgid "%d new messages" +msgstr "" + +#: ../../mod/manage.php:159 +#, php-format +msgid "%d new introductions" msgstr "" #: ../../mod/connedit.php:189 @@ -5981,141 +5895,6 @@ msgstr "" msgid "Send Reply" msgstr "" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "" - -#: ../../mod/photos.php:119 ../../mod/photos.php:672 -msgid "Delete Album" -msgstr "" - -#: ../../mod/photos.php:159 ../../mod/photos.php:958 -msgid "Delete Photo" -msgstr "" - -#: ../../mod/photos.php:469 -msgid "No photos selected" -msgstr "" - -#: ../../mod/photos.php:513 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../mod/photos.php:552 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:555 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:579 -msgid "Upload Photos" -msgstr "" - -#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 -msgid "Enter a new album name" -msgstr "" - -#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../mod/photos.php:585 -msgid "Do not show a status post for this upload" -msgstr "" - -#: ../../mod/photos.php:613 -msgid "Album name could not be decoded" -msgstr "" - -#: ../../mod/photos.php:654 ../../mod/photos.php:1167 -#: ../../mod/photos.php:1183 -msgid "Contact Photos" -msgstr "" - -#: ../../mod/photos.php:678 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:680 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:707 ../../mod/photos.php:1215 -msgid "View Photo" -msgstr "" - -#: ../../mod/photos.php:736 -msgid "Edit Album" -msgstr "" - -#: ../../mod/photos.php:781 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:783 -msgid "Photo not available" -msgstr "" - -#: ../../mod/photos.php:841 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:848 -msgid "Private Photo" -msgstr "" - -#: ../../mod/photos.php:863 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:937 -msgid "Edit photo" -msgstr "" - -#: ../../mod/photos.php:939 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:940 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:947 -msgid "Caption" -msgstr "" - -#: ../../mod/photos.php:949 -msgid "Add a Tag" -msgstr "" - -#: ../../mod/photos.php:953 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../mod/photos.php:956 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../mod/photos.php:1133 -msgid "In This Photo:" -msgstr "" - -#: ../../mod/photos.php:1221 -msgid "View Album" -msgstr "" - -#: ../../mod/photos.php:1244 -msgid "Recent Photos" -msgstr "" - #: ../../mod/bookmarks.php:38 msgid "Bookmark added" msgstr "" @@ -6426,27 +6205,27 @@ msgstr "" msgid "File not found." msgstr "" -#: ../../mod/filestorage.php:131 +#: ../../mod/filestorage.php:135 msgid "Edit file permissions" msgstr "" -#: ../../mod/filestorage.php:140 +#: ../../mod/filestorage.php:144 msgid "Set/edit permissions" msgstr "" -#: ../../mod/filestorage.php:141 +#: ../../mod/filestorage.php:145 msgid "Include all files and sub folders" msgstr "" -#: ../../mod/filestorage.php:142 +#: ../../mod/filestorage.php:146 msgid "Return to file list" msgstr "" -#: ../../mod/filestorage.php:144 +#: ../../mod/filestorage.php:148 msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../mod/filestorage.php:145 +#: ../../mod/filestorage.php:149 msgid "Copy/paste this URL to link file from a web page" msgstr "" @@ -6631,16 +6410,16 @@ msgstr "" msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/item.php:899 +#: ../../mod/item.php:902 msgid "System error. Post not saved." msgstr "" -#: ../../mod/item.php:1117 +#: ../../mod/item.php:1120 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/item.php:1123 +#: ../../mod/item.php:1126 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" @@ -6664,261 +6443,387 @@ msgstr "" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 -msgid "Profile not found." +#: ../../mod/setup.php:166 +msgid "Red Matrix Server - Setup" msgstr "" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." +#: ../../mod/setup.php:172 +msgid "Could not connect to database." msgstr "" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" +#: ../../mod/setup.php:176 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." +#: ../../mod/setup.php:183 +msgid "Could not create table." msgstr "" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." +#: ../../mod/setup.php:189 +msgid "Your site database has been installed." msgstr "" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." +#: ../../mod/setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../mod/profiles.php:378 -msgid "Marital Status" +#: ../../mod/setup.php:261 +msgid "System check" msgstr "" -#: ../../mod/profiles.php:382 -msgid "Romantic Partner" +#: ../../mod/setup.php:266 +msgid "Check again" msgstr "" -#: ../../mod/profiles.php:386 -msgid "Likes" +#: ../../mod/setup.php:289 +msgid "Database connection" msgstr "" -#: ../../mod/profiles.php:390 -msgid "Dislikes" +#: ../../mod/setup.php:290 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." msgstr "" -#: ../../mod/profiles.php:394 -msgid "Work/Employment" +#: ../../mod/setup.php:291 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../mod/profiles.php:397 -msgid "Religion" +#: ../../mod/setup.php:292 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../mod/profiles.php:401 -msgid "Political Views" +#: ../../mod/setup.php:296 +msgid "Database Server Name" msgstr "" -#: ../../mod/profiles.php:405 -msgid "Gender" +#: ../../mod/setup.php:296 +msgid "Default is localhost" msgstr "" -#: ../../mod/profiles.php:409 -msgid "Sexual Preference" +#: ../../mod/setup.php:297 +msgid "Database Port" msgstr "" -#: ../../mod/profiles.php:413 -msgid "Homepage" +#: ../../mod/setup.php:297 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../mod/profiles.php:417 -msgid "Interests" +#: ../../mod/setup.php:298 +msgid "Database Login Name" msgstr "" -#: ../../mod/profiles.php:421 ../../mod/admin.php:866 -msgid "Address" +#: ../../mod/setup.php:299 +msgid "Database Login Password" msgstr "" -#: ../../mod/profiles.php:511 -msgid "Profile updated." +#: ../../mod/setup.php:300 +msgid "Database Name" msgstr "" -#: ../../mod/profiles.php:590 -msgid "Hide your contact/friend list from viewers of this profile?" +#: ../../mod/setup.php:301 +msgid "Database Type" msgstr "" -#: ../../mod/profiles.php:632 -msgid "Edit Profile Details" +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "Site administrator email address" msgstr "" -#: ../../mod/profiles.php:634 -msgid "View this profile" +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../mod/profiles.php:636 -msgid "Change Profile Photo" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Website URL" msgstr "" -#: ../../mod/profiles.php:637 -msgid "Create a new profile using these settings" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../mod/profiles.php:638 -msgid "Clone this profile" +#: ../../mod/setup.php:307 ../../mod/setup.php:352 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../mod/profiles.php:639 -msgid "Delete this profile" +#: ../../mod/setup.php:335 +msgid "Site settings" msgstr "" -#: ../../mod/profiles.php:641 -msgid "Import profile from file" +#: ../../mod/setup.php:395 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../mod/profiles.php:642 -msgid "Export profile to file" +#: ../../mod/setup.php:396 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." msgstr "" -#: ../../mod/profiles.php:643 -msgid "Profile Name:" +#: ../../mod/setup.php:400 +msgid "PHP executable path" msgstr "" -#: ../../mod/profiles.php:644 -msgid "Your Full Name:" +#: ../../mod/setup.php:400 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../mod/profiles.php:645 -msgid "Title/Description:" +#: ../../mod/setup.php:405 +msgid "Command line PHP" msgstr "" -#: ../../mod/profiles.php:646 -msgid "Your Gender:" +#: ../../mod/setup.php:414 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../mod/profiles.php:647 -msgid "Birthday :" +#: ../../mod/setup.php:415 +msgid "This is required for message delivery to work." msgstr "" -#: ../../mod/profiles.php:648 -msgid "Street Address:" +#: ../../mod/setup.php:417 +msgid "PHP register_argc_argv" msgstr "" -#: ../../mod/profiles.php:649 -msgid "Locality/City:" +#: ../../mod/setup.php:438 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../mod/profiles.php:650 -msgid "Postal/Zip Code:" +#: ../../mod/setup.php:439 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../mod/profiles.php:651 -msgid "Country:" +#: ../../mod/setup.php:441 +msgid "Generate encryption keys" msgstr "" -#: ../../mod/profiles.php:652 -msgid "Region/State:" +#: ../../mod/setup.php:448 +msgid "libCurl PHP module" msgstr "" -#: ../../mod/profiles.php:653 -msgid " Marital Status:" +#: ../../mod/setup.php:449 +msgid "GD graphics PHP module" msgstr "" -#: ../../mod/profiles.php:654 -msgid "Who: (if applicable)" +#: ../../mod/setup.php:450 +msgid "OpenSSL PHP module" msgstr "" -#: ../../mod/profiles.php:655 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" msgstr "" -#: ../../mod/profiles.php:656 -msgid "Since [date]:" +#: ../../mod/setup.php:452 +msgid "mb_string PHP module" msgstr "" -#: ../../mod/profiles.php:658 -msgid "Homepage URL:" +#: ../../mod/setup.php:453 +msgid "mcrypt PHP module" msgstr "" -#: ../../mod/profiles.php:661 -msgid "Religious Views:" +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../mod/profiles.php:662 -msgid "Keywords:" +#: ../../mod/setup.php:458 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../mod/profiles.php:665 -msgid "Example: fishing photography software" +#: ../../mod/setup.php:464 ../../mod/setup.php:467 +msgid "proc_open" msgstr "" -#: ../../mod/profiles.php:666 -msgid "Used in directory listings" +#: ../../mod/setup.php:464 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../mod/profiles.php:667 -msgid "Tell us about yourself..." +#: ../../mod/setup.php:472 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../mod/profiles.php:668 -msgid "Hobbies/Interests" +#: ../../mod/setup.php:476 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../mod/profiles.php:669 -msgid "Contact information and Social Networks" +#: ../../mod/setup.php:480 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../mod/profiles.php:670 -msgid "My other channels" +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." msgstr "" -#: ../../mod/profiles.php:671 -msgid "Musical interests" +#: ../../mod/setup.php:488 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../mod/profiles.php:672 -msgid "Books, literature" +#: ../../mod/setup.php:492 +msgid "Error: mcrypt PHP module required but not installed." msgstr "" -#: ../../mod/profiles.php:673 -msgid "Television" +#: ../../mod/setup.php:508 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: ../../mod/profiles.php:674 -msgid "Film/dance/culture/entertainment" +#: ../../mod/setup.php:509 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../mod/profiles.php:675 -msgid "Love/romance" +#: ../../mod/setup.php:510 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." msgstr "" -#: ../../mod/profiles.php:676 -msgid "Work/employment" +#: ../../mod/setup.php:511 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../mod/profiles.php:677 -msgid "School/education" +#: ../../mod/setup.php:514 +msgid ".htconfig.php is writable" msgstr "" -#: ../../mod/profiles.php:683 -msgid "This is your default profile." +#: ../../mod/setup.php:524 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../mod/profiles.php:694 ../../mod/directory.php:188 -msgid "Age: " +#: ../../mod/setup.php:525 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." msgstr "" -#: ../../mod/profiles.php:737 -msgid "Edit/Manage Profiles" +#: ../../mod/setup.php:526 ../../mod/setup.php:544 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../mod/profiles.php:738 -msgid "Add profile things" +#: ../../mod/setup.php:527 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../mod/profiles.php:739 -msgid "Include desirable objects in your profile" +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" +msgstr "" + +#: ../../mod/setup.php:543 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to " +"have write access to the store directory under the Red top level folder" +msgstr "" + +#: ../../mod/setup.php:547 +msgid "store is writable" +msgstr "" + +#: ../../mod/setup.php:577 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." +msgstr "" + +#: ../../mod/setup.php:578 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "" + +#: ../../mod/setup.php:579 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "" + +#: ../../mod/setup.php:580 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "" + +#: ../../mod/setup.php:581 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "" + +#: ../../mod/setup.php:582 +msgid "" +"Providers are available that issue free certificates which are browser-valid." +msgstr "" + +#: ../../mod/setup.php:584 +msgid "SSL certificate validation" +msgstr "" + +#: ../../mod/setup.php:590 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr "" + +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" +msgstr "" + +#: ../../mod/setup.php:602 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: ../../mod/setup.php:626 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../mod/setup.php:661 +msgid "

    What next

    " +msgstr "" + +#: ../../mod/setup.php:662 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" #: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 @@ -7573,31 +7478,6 @@ msgstr "" msgid "Edit Profile Field" msgstr "" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "" - #: ../../mod/menu.php:31 msgid "Menu updated." msgstr "" @@ -7905,21 +7785,17 @@ msgid "" msgstr "" #: ../../mod/new_channel.php:118 +msgid "" +"Please choose a channel type (such as social networking or community forum) " +"and privacy requirements so we can select the best permissions for you" +msgstr "" + +#: ../../mod/new_channel.php:119 msgid "Channel Type" msgstr "" #: ../../mod/new_channel.php:119 -msgid "?" -msgstr "" - -#: ../../mod/new_channel.php:120 -msgid "What is this?" -msgstr "" - -#: ../../mod/new_channel.php:121 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" +msgid "Read more about roles" msgstr "" #: ../../mod/xchan.php:6 @@ -7934,6 +7810,141 @@ msgstr "" msgid "invalid target signature" msgstr "" +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "" + +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "" + +#: ../../mod/photos.php:119 ../../mod/photos.php:672 +msgid "Delete Album" +msgstr "" + +#: ../../mod/photos.php:159 ../../mod/photos.php:955 +msgid "Delete Photo" +msgstr "" + +#: ../../mod/photos.php:469 +msgid "No photos selected" +msgstr "" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../mod/photos.php:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "" + +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "" + +#: ../../mod/photos.php:579 +msgid "Upload Photos" +msgstr "" + +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:940 +msgid "Enter a new album name" +msgstr "" + +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:941 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../mod/photos.php:585 +msgid "Do not show a status post for this upload" +msgstr "" + +#: ../../mod/photos.php:613 +msgid "Album name could not be decoded" +msgstr "" + +#: ../../mod/photos.php:654 ../../mod/photos.php:1164 +#: ../../mod/photos.php:1180 +msgid "Contact Photos" +msgstr "" + +#: ../../mod/photos.php:678 +msgid "Show Newest First" +msgstr "" + +#: ../../mod/photos.php:680 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:704 ../../mod/photos.php:1212 +msgid "View Photo" +msgstr "" + +#: ../../mod/photos.php:733 +msgid "Edit Album" +msgstr "" + +#: ../../mod/photos.php:778 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../mod/photos.php:780 +msgid "Photo not available" +msgstr "" + +#: ../../mod/photos.php:838 +msgid "Use as profile photo" +msgstr "" + +#: ../../mod/photos.php:845 +msgid "Private Photo" +msgstr "" + +#: ../../mod/photos.php:860 +msgid "View Full Size" +msgstr "" + +#: ../../mod/photos.php:934 +msgid "Edit photo" +msgstr "" + +#: ../../mod/photos.php:936 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../mod/photos.php:937 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../mod/photos.php:944 +msgid "Caption" +msgstr "" + +#: ../../mod/photos.php:946 +msgid "Add a Tag" +msgstr "" + +#: ../../mod/photos.php:950 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../mod/photos.php:953 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../mod/photos.php:1130 +msgid "In This Photo:" +msgstr "" + +#: ../../mod/photos.php:1218 +msgid "View Album" +msgstr "" + +#: ../../mod/photos.php:1241 +msgid "Recent Photos" +msgstr "" + #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "" @@ -8348,41 +8359,41 @@ msgstr "" msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../boot.php:1345 +#: ../../boot.php:1347 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1348 +#: ../../boot.php:1350 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1515 +#: ../../boot.php:1517 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../boot.php:1543 +#: ../../boot.php:1545 msgid "Password" msgstr "" -#: ../../boot.php:1544 +#: ../../boot.php:1546 msgid "Remember me" msgstr "" -#: ../../boot.php:1547 +#: ../../boot.php:1549 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1628 +#: ../../boot.php:1630 msgid "permission denied" msgstr "" -#: ../../boot.php:1629 +#: ../../boot.php:1631 msgid "Got Zot?" msgstr "" -#: ../../boot.php:2112 +#: ../../boot.php:2114 msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index 5bcf774f4..a972afa02 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-01-01.906 +2015-01-02.907 From 31648d65c8c5c3a54fc36b83871dcc09a9ac982f Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 2 Jan 2015 19:20:52 -0800 Subject: [PATCH 5/9] some work on the edit connection workflow explanation and connedit page. This needs a lot more attention, but it was screaming for any improvement in documenting why we tell you that the permissions have been changed but not saved. --- mod/connedit.php | 20 +++++++++++--------- view/css/mod_connedit.css | 18 +++++++++++++++++- view/js/mod_connedit.js | 2 +- view/tpl/abook_edit.tpl | 32 +++++++++++++++++--------------- 4 files changed, 46 insertions(+), 26 deletions(-) diff --git a/mod/connedit.php b/mod/connedit.php index 5bf9c130b..6729029ac 100644 --- a/mod/connedit.php +++ b/mod/connedit.php @@ -444,32 +444,34 @@ function connedit_content(&$a) { 'url' => $a->get_baseurl(true) . '/network/?f=&cid=' . $contact['abook_id'], 'sel' => '', 'title' => t('View recent posts and comments'), - ), + ) + ); + $buttons = array( array( 'label' => (($contact['abook_flags'] & ABOOK_FLAG_BLOCKED) ? t('Unblock') : t('Block')), 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/block', 'sel' => (($contact['abook_flags'] & ABOOK_FLAG_BLOCKED) ? 'active' : ''), - 'title' => t('Block or Unblock this connection'), + 'title' => t('Block (or Unblock) all communications with this connection'), ), array( 'label' => (($contact['abook_flags'] & ABOOK_FLAG_IGNORED) ? t('Unignore') : t('Ignore')), 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/ignore', 'sel' => (($contact['abook_flags'] & ABOOK_FLAG_IGNORED) ? 'active' : ''), - 'title' => t('Ignore or Unignore this connection'), + 'title' => t('Ignore (or Unignore) all inbound communications from this connection'), ), array( 'label' => (($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) ? t('Unarchive') : t('Archive')), 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/archive', 'sel' => (($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) ? 'active' : ''), - 'title' => t('Archive or Unarchive this connection'), + 'title' => t('Archive (or Unarchive) this connection - mark channel dead but keep content'), ), array( 'label' => (($contact['abook_flags'] & ABOOK_FLAG_HIDDEN) ? t('Unhide') : t('Hide')), 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/hide', 'sel' => (($contact['abook_flags'] & ABOOK_FLAG_HIDDEN) ? 'active' : ''), - 'title' => t('Hide or Unhide this connection'), + 'title' => t('Hide or Unhide this connection from your other connections'), ), array( @@ -542,11 +544,15 @@ function connedit_content(&$a) { '$notself' => (($self) ? '' : '1'), '$self' => (($self) ? '1' : ''), '$autolbl' => t('Apply the permissions indicated on this page to all new connections.'), + '$buttons' => (($self) ? '' : $buttons), '$viewprof' => t('View Profile'), '$lbl_slider' => t('Slide to adjust your degree of friendship'), '$slide' => $slide, '$tabs' => $t, '$tab_str' => $tab_str, + '$perms_step1' => t('

    Step #1. (Completed).

    Create connection with minimal or no permissions.

    '), + '$perms_step2' => t('

    Step #2. (Incomplete).

    Review and/or edit the default individual permissions on this page, if desired.

    '), + '$perms_step3' => t('

    Step #3. (Incomplete).

    Submit this page to apply the selected permissions.

    Until this is complete, this connection may have insufficient permission to communicate with you.

    '), '$is_pending' => (($contact['abook_flags'] & ABOOK_FLAG_PENDING) ? 1 : ''), '$unapproved' => $unapproved, '$inherited' => t('inherited'), @@ -598,12 +604,8 @@ function connedit_content(&$a) { '$ignored' => (($contact['readonly']) ? t('Currently ignored') : ''), '$archived' => (($contact['archive']) ? t('Currently archived') : ''), '$pending' => (($contact['archive']) ? t('Currently pending') : ''), - '$hidden' => array('hidden', t('Hide this contact from others'), ($contact['hidden'] == 1), t('Replies/likes to your public posts may still be visible')), - '$photo' => $contact['photo'], '$name' => $contact['name'], - '$dir_icon' => $dir_icon, '$alt_text' => $alt_text, - '$sparkle' => $sparkle, '$url' => $url )); diff --git a/view/css/mod_connedit.css b/view/css/mod_connedit.css index e7b93a088..82cc6bc9d 100644 --- a/view/css/mod_connedit.css +++ b/view/css/mod_connedit.css @@ -14,15 +14,31 @@ margin-bottom: 5px !important; } -.abook-pending-contact, .abook-permschange, .abook-autotext { +.abook-pending-contact, .abook-autotext { background: orange; font-weight: bold; margin: 10px; padding: 20px 5px 10px; } +.abook-permschange { + width: 100%; +} + +.abook-perms-steps { + float: left; + width: 200px; + height: 210px; + background: orange; + font-weight: bold; + margin: 10px; + padding: 20px 5px 10px; + +} + .abook-permssave { margin-left: 10px; + clear: both; } #contact-slider { diff --git a/view/js/mod_connedit.js b/view/js/mod_connedit.js index fabf24e95..15b768929 100644 --- a/view/js/mod_connedit.js +++ b/view/js/mod_connedit.js @@ -1,7 +1,7 @@ function abook_perms_msg() { $('.abook-permschange').show(); - $('.abook-permschange').html(aStr['permschange']); +// $('.abook-permschange').html(aStr['permschange']); $('.abook-permssave').show(); } diff --git a/view/tpl/abook_edit.tpl b/view/tpl/abook_edit.tpl index c2c11e4b1..bb20312fa 100755 --- a/view/tpl/abook_edit.tpl +++ b/view/tpl/abook_edit.tpl @@ -7,11 +7,27 @@
    {{$tabs}}
    +
    +{{foreach $buttons as $b }} + +{{/foreach}} {{/if}} -
    +
    + + + + + + {{if $last_update}} {{$lastupdtext}} {{$last_update}} @@ -27,7 +43,6 @@ {{/if}} - {{if $self}}
    @@ -40,10 +55,6 @@ - - {{if $is_pending}} @@ -63,15 +74,6 @@

    {{$permlbl}}

    {{$permnote}}
    - -
    - - - - - -
    - From 3e073f4b626ce5e12f3c9412afa5505ac26e5a9b Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 2 Jan 2015 23:07:37 -0800 Subject: [PATCH 6/9] no newline at end of file --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index f57a6701c..ab2d9671c 100755 --- a/boot.php +++ b/boot.php @@ -2198,4 +2198,4 @@ function z_get_temp_dir() { if(! $temp_dir) $temp_dir = sys_get_temp_dir(); return $upload_dir; -} \ No newline at end of file +} From 0779e3ae53161843110610eba27380bfab0b2dd0 Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 3 Jan 2015 13:42:05 +0100 Subject: [PATCH 7/9] provide some info for buttons --- mod/filestorage.php | 4 +++- view/tpl/attach_edit.tpl | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/mod/filestorage.php b/mod/filestorage.php index 6b731e440..0a25617f0 100644 --- a/mod/filestorage.php +++ b/mod/filestorage.php @@ -147,7 +147,9 @@ function filestorage_content(&$a) { '$isadir' => $is_a_dir, '$cpdesc' => t('Copy/paste this code to attach file to a post'), '$cpldesc' => t('Copy/paste this URL to link file from a web page'), - '$submit' => t('Submit') + '$submit' => t('Submit'), + '$attach_btn_title' => t('Attach this file to a new post'), + '$link_btn_title' => t('Show URL to this file'), )); echo $o; diff --git a/view/tpl/attach_edit.tpl b/view/tpl/attach_edit.tpl index 82f2a7628..0147d35ba 100644 --- a/view/tpl/attach_edit.tpl +++ b/view/tpl/attach_edit.tpl @@ -6,11 +6,11 @@
    {{if !$isadir}} - + {{/if}} -
    From 753e6809d920f0205b49d45072c8a5bb687c1797 Mon Sep 17 00:00:00 2001 From: Jeroen Date: Sat, 3 Jan 2015 15:51:01 +0000 Subject: [PATCH 8/9] update NL and text-background-fix in chat for alternatives schemas --- view/nl/messages.po | 11088 ++++++++-------- view/nl/strings.php | 1797 +-- view/theme/redbasic/css/style.css | 2 +- view/theme/redbasic/php/style.php | 3 + view/theme/redbasic/schema/dark.php | 2 + .../redbasic/schema/simple_black_on_white.php | 2 + .../redbasic/schema/simple_green_on_black.php | 2 + .../redbasic/schema/simple_white_on_black.php | 2 + 8 files changed, 6475 insertions(+), 6423 deletions(-) diff --git a/view/nl/messages.po b/view/nl/messages.po index 54dfcc478..e18f7b719 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -4,13 +4,13 @@ # # Translators: # jeroenpraat , 2013-2014 -# jeroenpraat , 2014 +# jeroenpraat , 2014-2015 msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-12 00:03-0800\n" -"PO-Revision-Date: 2014-12-17 14:09+0000\n" +"POT-Creation-Date: 2015-01-02 00:04-0800\n" +"PO-Revision-Date: 2015-01-03 15:35+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -31,186 +31,130 @@ msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" msgid "Profile Photos" msgstr "Profielfoto's" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." +#: ../../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 "Toegang geweigerd" -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." +#: ../../include/items.php:969 ../../include/items.php:1014 +msgid "(Unknown)" +msgstr "(Onbekend)" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." +#: ../../include/items.php:1171 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." +#: ../../include/items.php:1173 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." -#: ../../include/follow.php:135 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../include/items.php:1175 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../include/items.php:1177 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "lokale account niet gevonden." - -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "maakte een nieuw bericht aan" - -#: ../../include/notify.php:24 +#: ../../include/items.php:1179 #, php-format -msgid "commented on %s's post" -msgstr "gaf een reactie op een bericht van %s" +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." -#: ../../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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " +#: ../../include/items.php:1181 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" +#: ../../include/items.php:1183 +msgid "Visible to approved connections." +msgstr "Voor alle goedgekeurde connecties zichtbaar." -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/menu.php:42 ../../include/RedDAV/RedBrowser.php:250 -#: ../../include/apps.php:249 ../../include/ItemObject.php:100 -#: ../../mod/blocks.php:132 ../../mod/settings.php:627 +#: ../../include/items.php:1185 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." + +#: ../../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 "Item niet gevonden." + +#: ../../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 "Toegang geweigerd" + +#: ../../include/items.php:4410 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Collectie niet gevonden." + +#: ../../include/items.php:4425 +msgid "Collection is empty." +msgstr "Collectie is leeg" + +#: ../../include/items.php:4432 +#, php-format +msgid "Collection: %s" +msgstr "Collectie: %s" + +#: ../../include/items.php:4443 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" + +#: ../../include/items.php:4446 +msgid "Connection not found." +msgstr "Connectie niet gevonden." + +#: ../../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/thing.php:233 -#: ../../mod/webpages.php:162 ../../mod/editblock.php:143 -#: ../../mod/editlayout.php:139 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 -#: ../../mod/menu.php:78 +#: ../../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 "Bewerken" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Weergeven" - -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1104 -#: ../../include/ItemObject.php:630 ../../mod/webpages.php:166 -#: ../../mod/editblock.php:173 ../../mod/editlayout.php:168 -#: ../../mod/editpost.php:140 ../../mod/editwebpage.php:205 -#: ../../mod/photos.php:998 -msgid "Preview" -msgstr "Voorvertoning" - -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Acties" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Paginalink" - -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Titel" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Aangemaakt" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Bewerkt" - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 -msgid "Advanced" -msgstr "Geavanceerd" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Kanalen vinden" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:316 ../../mod/directory.php:321 -msgid "Find" -msgstr "Vinden" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:320 -msgid "Channel Suggestions" -msgstr "Voorgestelde kanalen" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Willekeurig profiel" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" - -#: ../../include/contact_widgets.php:57 ../../include/features.php:73 -#: ../../include/widgets.php:298 -msgid "Saved Folders" -msgstr "Bewaarde mappen" - -#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:301 -msgid "Everything" -msgstr "Alles" - -#: ../../include/contact_widgets.php:92 ../../include/taxonomy.php:230 -#: ../../include/widgets.php:35 -msgid "Categories" -msgstr "Categorieën" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "meer connecties weergeven" - -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Ingesloten inhoud" - -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Insluiten uitgeschakeld" - #: ../../include/message.php:18 msgid "No recipient provided." msgstr "Geen ontvanger opgegeven." @@ -227,599 +171,10 @@ msgstr "Afzender kan niet bepaald worden." msgid "Stored post could not be verified." msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/activities.php:39 -msgid " and " -msgstr " en " - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "openbaar profiel" - -#: ../../include/activities.php:52 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../include/activities.php:53 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Tonen" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Niet tonen" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:596 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:137 -#: ../../mod/photos.php:588 ../../mod/photos.php:950 -msgid "Permissions" -msgstr "Permissies" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:312 -#: ../../mod/photos.php:1149 -msgid "Close" -msgstr "Sluiten" - -#: ../../include/bb2diaspora.php:384 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/bb2diaspora.php:463 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/bb2diaspora.php:465 -msgid "Redmatrix event notification:" -msgstr "Notificatie RedMatrix-gebeurtenis:" - -#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 -msgid "Starts:" -msgstr "Start:" - -#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Einde:" - -#: ../../include/bb2diaspora.php:485 ../../include/identity.php:891 -#: ../../include/event.php:40 ../../mod/events.php:590 -#: ../../mod/directory.php:199 -msgid "Location:" -msgstr "Plaats:" - -#: ../../include/attach.php:116 ../../include/attach.php:163 -#: ../../include/attach.php:226 ../../include/attach.php:240 -#: ../../include/attach.php:280 ../../include/attach.php:294 -#: ../../include/attach.php:318 ../../include/attach.php:511 -#: ../../include/attach.php:585 ../../include/photos.php:15 -#: ../../include/items.php:4019 ../../include/chat.php:116 -#: ../../mod/mood.php:112 ../../mod/mitem.php:106 -#: ../../mod/achievements.php:30 ../../mod/register.php:72 -#: ../../mod/sources.php:66 ../../mod/poke.php:128 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/authtest.php:13 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/setup.php:207 -#: ../../mod/settings.php:542 ../../mod/events.php:195 -#: ../../mod/channel.php:89 ../../mod/channel.php:198 -#: ../../mod/channel.php:241 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/regmod.php:17 ../../mod/common.php:35 ../../mod/like.php:154 -#: ../../mod/connections.php:169 ../../mod/connedit.php:266 -#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 -#: ../../mod/webpages.php:67 ../../mod/bookmarks.php:46 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:550 -#: ../../mod/editblock.php:65 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/item.php:191 ../../mod/item.php:199 ../../mod/item.php:972 -#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 -#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 -#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/locs.php:71 -#: ../../mod/mail.php:111 ../../mod/invite.php:13 ../../mod/invite.php:104 -#: ../../mod/manage.php:6 ../../mod/layouts.php:67 ../../mod/layouts.php:74 -#: ../../mod/layouts.php:85 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 -#: ../../mod/network.php:12 ../../mod/menu.php:61 ../../mod/message.php:16 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/notifications.php:66 ../../mod/page.php:28 ../../mod/page.php:78 -#: ../../mod/photos.php:68 ../../mod/appman.php:66 -#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." -msgstr "Toegang geweigerd" - -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "Geen bronbestand." - -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" - -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" - -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." - -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." - -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." - -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "Pad niet beschikbaar." - -#: ../../include/attach.php:590 -msgid "Empty pathname" -msgstr "Padnaam leeg" - -#: ../../include/attach.php:606 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" - -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "Pad niet gevonden" - -#: ../../include/attach.php:681 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." - -#: ../../include/attach.php:685 -msgid "database storage failed." -msgstr "opslag in database mislukt." - -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:249 -msgid "parent" -msgstr "omhoog" - -#: ../../include/RedDAV/RedBrowser.php:130 -msgid "Collection" -msgstr "map" - -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Principal" -msgstr "principal" - -#: ../../include/RedDAV/RedBrowser.php:136 -msgid "Addressbook" -msgstr "Adresboek" - -#: ../../include/RedDAV/RedBrowser.php:139 -msgid "Calendar" -msgstr "Agenda" - -#: ../../include/RedDAV/RedBrowser.php:142 -msgid "Schedule Inbox" -msgstr "Planning-postvak IN" - -#: ../../include/RedDAV/RedBrowser.php:145 -msgid "Schedule Outbox" -msgstr "Planning-postvak UIT" - -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/conversation.php:993 -#: ../../include/apps.php:331 ../../include/apps.php:382 -#: ../../mod/connedit.php:513 ../../mod/photos.php:713 -#: ../../mod/photos.php:1132 -msgid "Unknown" -msgstr "Onbekend" - -#: ../../include/RedDAV/RedBrowser.php:223 -#, php-format -msgid "%1$s used" -msgstr "%1$s gebruikt" - -#: ../../include/RedDAV/RedBrowser.php:228 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s van %2$s gebruikt (%3$s%)" - -#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 -#: ../../include/conversation.php:1540 ../../include/apps.php:133 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Bestanden" - -#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:567 -#: ../../mod/settings.php:593 ../../mod/admin.php:866 -msgid "Name" -msgstr "Naam" - -#: ../../include/RedDAV/RedBrowser.php:246 -msgid "Type" -msgstr "Type" - -#: ../../include/RedDAV/RedBrowser.php:247 -msgid "Size" -msgstr "Grootte" - -#: ../../include/RedDAV/RedBrowser.php:248 -msgid "Last Modified" -msgstr "Laatst gewijzigd" - -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/conversation.php:639 -#: ../../include/apps.php:250 ../../include/ItemObject.php:120 -#: ../../mod/settings.php:628 ../../mod/connedit.php:476 -#: ../../mod/thing.php:234 ../../mod/group.php:176 ../../mod/admin.php:730 -#: ../../mod/admin.php:861 ../../mod/photos.php:1070 -msgid "Delete" -msgstr "Verwijderen" - -#: ../../include/RedDAV/RedBrowser.php:252 -msgid "Total" -msgstr "Totaal" - -#: ../../include/RedDAV/RedBrowser.php:305 -msgid "Create new folder" -msgstr "Nieuwe map aanmaken" - -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:169 -#: ../../mod/menu.php:100 ../../mod/new_channel.php:122 -msgid "Create" -msgstr "Aanmaken" - -#: ../../include/RedDAV/RedBrowser.php:307 -msgid "Upload file" -msgstr "Bestand uploaden" - -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:361 -#: ../../mod/photos.php:738 ../../mod/photos.php:1246 -msgid "Upload" -msgstr "Uploaden" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" - -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1528 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" -msgstr "Beëindig deze sessie" - -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:98 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" - -#: ../../include/nav.php:99 ../../include/conversation.php:935 -#: ../../mod/connedit.php:429 ../../mod/connedit.php:545 -msgid "View Profile" -msgstr "Profiel weergeven" - -#: ../../include/nav.php:99 -msgid "Your profile page" -msgstr "Jouw profielpagina" - -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "Bewerk profielen" - -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../include/nav.php:103 ../../include/identity.php:864 -msgid "Edit Profile" -msgstr "Profiel bewerken" - -#: ../../include/nav.php:103 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" - -#: ../../include/nav.php:105 ../../include/conversation.php:1531 -#: ../../include/apps.php:137 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" - -#: ../../include/nav.php:105 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../include/nav.php:106 -msgid "Your files" -msgstr "Jouw bestanden" - -#: ../../include/nav.php:111 ../../include/apps.php:144 -msgid "Chat" -msgstr "Chatten" - -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" - -#: ../../include/nav.php:117 ../../include/conversation.php:1566 -#: ../../include/apps.php:127 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: ../../include/nav.php:117 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" - -#: ../../include/nav.php:121 ../../include/conversation.php:1577 -#: ../../include/apps.php:134 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webpagina's" - -#: ../../include/nav.php:121 -msgid "Your webpages" -msgstr "Jouw webpagina's" - -#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1529 -msgid "Login" -msgstr "Inloggen" - -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:142 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" - -#: ../../include/nav.php:145 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" - -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" - -#: ../../include/nav.php:159 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1507 -msgid "Register" -msgstr "Registreren" - -#: ../../include/nav.php:163 -msgid "Create an account" -msgstr "Maak een account aan" - -#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" -msgstr "Hulp" - -#: ../../include/nav.php:168 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:171 ../../include/widgets.php:91 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" -msgstr "Apps" - -#: ../../include/nav.php:173 ../../include/text.php:826 -#: ../../include/text.php:838 ../../include/apps.php:145 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "Zoeken" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "Inhoud van deze RedMatrix-hub doorzoeken" - -#: ../../include/nav.php:176 ../../include/apps.php:139 -#: ../../mod/directory.php:320 -msgid "Directory" -msgstr "Kanalengids" - -#: ../../include/nav.php:176 -msgid "Channel Directory" -msgstr "Kanalengids" - -#: ../../include/nav.php:190 ../../include/apps.php:131 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "Jouw matrix" - -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -msgstr "Markeer alle matrixnotificaties als bekeken" - -#: ../../include/nav.php:193 ../../include/apps.php:135 -msgid "Channel Home" -msgstr "Tijdlijn kanaal" - -#: ../../include/nav.php:193 -msgid "Channel home" -msgstr "Tijdlijn kanaal" - -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" - -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Connecties" - -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "Notificaties" - -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" - -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" - -#: ../../include/nav.php:204 ../../include/apps.php:141 -msgid "Mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:204 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:205 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" - -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" - -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "Postvak IN" - -#: ../../include/nav.php:208 -msgid "Outbox" -msgstr "Postvak UIT" - -#: ../../include/nav.php:209 ../../include/widgets.php:557 -msgid "New Message" -msgstr "Nieuw bericht" - -#: ../../include/nav.php:212 ../../include/apps.php:138 -#: ../../mod/events.php:442 -msgid "Events" -msgstr "Agenda" - -#: ../../include/nav.php:212 -msgid "Event Calendar" -msgstr "Agenda" - -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" - -#: ../../include/nav.php:214 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" - -#: ../../include/nav.php:216 ../../include/apps.php:130 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanaalbeheer" - -#: ../../include/nav.php:216 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" - -#: ../../include/nav.php:218 ../../include/widgets.php:536 -#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 -msgid "Settings" -msgstr "Instellingen" - -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" - -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Beheer" - -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" - -#: ../../include/nav.php:257 ../../include/conversation.php:840 -msgid "Loading..." -msgstr "Aan het laden..." - -#: ../../include/nav.php:262 -msgid "Please wait..." -msgstr "Wachten aub..." - #: ../../include/network.php:590 msgid "view full size" msgstr "volledige grootte tonen" -#: ../../include/dir_fns.php:66 -msgid "Directory Options" -msgstr "Opties kanalengids" - -#: ../../include/dir_fns.php:67 -msgid "Alphabetic" -msgstr "Alfabetisch" - -#: ../../include/dir_fns.php:68 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" - -#: ../../include/dir_fns.php:69 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" - -#: ../../include/dir_fns.php:70 -msgid "Oldest to Newest" -msgstr "Oud naar nieuw" - -#: ../../include/dir_fns.php:71 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" - -#: ../../include/dir_fns.php:73 -msgid "Sort" -msgstr "Sorteren" - -#: ../../include/dir_fns.php:89 -msgid "Enable Safe Search" -msgstr "Veilig zoeken inschakelen" - -#: ../../include/dir_fns.php:91 -msgid "Disable Safe Search" -msgstr "Veilig zoeken uitschakelen" - -#: ../../include/dir_fns.php:93 -msgid "Safe Mode" -msgstr "Veilig zoeken" - #: ../../include/permissions.php:26 msgid "Can view my normal stream and posts" msgstr "Kan mijn normale kanaalstream en berichten bekijken" @@ -909,55 +264,676 @@ msgid "" "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." -#: ../../include/permissions.php:814 +#: ../../include/permissions.php:810 msgid "Social Networking" msgstr "Sociaal netwerk" -#: ../../include/permissions.php:815 ../../include/permissions.php:817 -#: ../../include/permissions.php:819 +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +#: ../../include/permissions.php:812 msgid "Mostly Public" msgstr "Vrijwel alles openbaar" -#: ../../include/permissions.php:815 ../../include/permissions.php:817 -#: ../../include/permissions.php:819 +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +#: ../../include/permissions.php:812 msgid "Restricted" msgstr "Beperkt zichtbaar" -#: ../../include/permissions.php:815 ../../include/permissions.php:817 +#: ../../include/permissions.php:810 ../../include/permissions.php:811 msgid "Private" msgstr "Verborgen kanaal" -#: ../../include/permissions.php:816 +#: ../../include/permissions.php:811 msgid "Community Forum" msgstr "Groepsforum" -#: ../../include/permissions.php:818 +#: ../../include/permissions.php:812 msgid "Feed Republish" msgstr "Feed herpubliceren" -#: ../../include/permissions.php:820 +#: ../../include/permissions.php:813 msgid "Special Purpose" msgstr "Speciaal doel" -#: ../../include/permissions.php:821 +#: ../../include/permissions.php:813 msgid "Celebrity/Soapbox" msgstr "Beroemdheid/alleen volgen" -#: ../../include/permissions.php:821 +#: ../../include/permissions.php:813 msgid "Group Repository" msgstr "Groepsopslag" -#: ../../include/permissions.php:822 ../../include/profile_selectors.php:6 +#: ../../include/permissions.php:814 ../../include/profile_selectors.php:6 #: ../../include/profile_selectors.php:23 #: ../../include/profile_selectors.php:61 #: ../../include/profile_selectors.php:97 msgid "Other" msgstr "Anders" -#: ../../include/permissions.php:823 +#: ../../include/permissions.php:814 msgid "Custom/Expert Mode" msgstr "Expertmodus/handmatig aanpassen" +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "maakte een nieuw bericht aan" + +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "gaf een reactie op een bericht van %s" + +#: ../../include/taxonomy.php:210 ../../include/taxonomy.php:229 +msgid "Tags" +msgstr "Tags" + +#: ../../include/taxonomy.php:250 ../../include/contact_widgets.php:92 +#: ../../include/widgets.php:35 +msgid "Categories" +msgstr "Categorieën" + +#: ../../include/taxonomy.php:269 +msgid "Keywords" +msgstr "Trefwoorden" + +#: ../../include/taxonomy.php:294 +msgid "have" +msgstr "heb" + +#: ../../include/taxonomy.php:294 +msgid "has" +msgstr "heeft" + +#: ../../include/taxonomy.php:295 +msgid "want" +msgstr "wil" + +#: ../../include/taxonomy.php:295 +msgid "wants" +msgstr "wil" + +#: ../../include/taxonomy.php:296 ../../include/ItemObject.php:221 +msgid "like" +msgstr "vind dit leuk" + +#: ../../include/taxonomy.php:296 +msgid "likes" +msgstr "vindt dit leuk" + +#: ../../include/taxonomy.php:297 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "vind dit niet leuk" + +#: ../../include/taxonomy.php:297 +msgid "dislikes" +msgstr "vindt dit niet leuk" + +#: ../../include/taxonomy.php:380 ../../include/identity.php:1151 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1024 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nieuwe pagina" + +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:165 +#: ../../mod/blocks.php:135 ../../mod/layouts.php:171 +msgid "View" +msgstr "Weergeven" + +#: ../../include/page_widgets.php:40 ../../include/conversation.php:1102 +#: ../../include/ItemObject.php:638 ../../mod/webpages.php:166 +#: ../../mod/photos.php:995 +msgid "Preview" +msgstr "Voorvertoning" + +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 +msgid "Actions" +msgstr "Acties" + +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 +msgid "Page Link" +msgstr "Paginalink" + +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 +msgid "Title" +msgstr "Titel" + +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 +msgid "Created" +msgstr "Aangemaakt" + +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 +msgid "Edited" +msgstr "Bewerkt" + +#: ../../include/oembed.php:171 +msgid "Embedded content" +msgstr "Ingesloten inhoud" + +#: ../../include/oembed.php:180 +msgid "Embedding disabled" +msgstr "Insluiten uitgeschakeld" + +#: ../../include/photos.php:105 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" + +#: ../../include/photos.php:112 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" + +#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" + +#: ../../include/photos.php:213 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" + +#: ../../include/photos.php:341 ../../include/conversation.php:1533 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../include/photos.php:345 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: ../../include/activities.php:39 +msgid " and " +msgstr " en " + +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "openbaar profiel" + +#: ../../include/activities.php:56 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: ../../include/activities.php:57 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" + +#: ../../include/activities.php:60 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." + +#: ../../include/bb2diaspora.php:366 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: ../../include/bb2diaspora.php:445 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/bb2diaspora.php:447 +msgid "Redmatrix event notification:" +msgstr "Notificatie RedMatrix-gebeurtenis:" + +#: ../../include/bb2diaspora.php:451 ../../include/event.php:20 +msgid "Starts:" +msgstr "Start:" + +#: ../../include/bb2diaspora.php:459 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Einde:" + +#: ../../include/bb2diaspora.php:467 ../../include/identity.php:894 +#: ../../include/event.php:40 ../../mod/events.php:590 +#: ../../mod/directory.php:199 +msgid "Location:" +msgstr "Plaats:" + +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "Geen bronbestand." + +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" + +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" + +#: ../../include/attach.php:377 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" + +#: ../../include/attach.php:389 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." + +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." + +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." + +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "Pad niet beschikbaar." + +#: ../../include/attach.php:590 +msgid "Empty pathname" +msgstr "Padnaam leeg" + +#: ../../include/attach.php:606 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" + +#: ../../include/attach.php:630 +msgid "Path not found." +msgstr "Pad niet gevonden" + +#: ../../include/attach.php:681 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." + +#: ../../include/attach.php:685 +msgid "database storage failed." +msgstr "opslag in database mislukt." + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Algemene functies" + +#: ../../include/features.php:25 +msgid "Content Expiration" +msgstr "Inhoud laten verlopen" + +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" + +#: ../../include/features.php:26 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" + +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" + +#: ../../include/features.php:27 +msgid "Advanced Profiles" +msgstr "Geavanceerde profielen" + +#: ../../include/features.php:27 +msgid "Additional profile sections and selections" +msgstr "Extra onderdelen en keuzes voor je profiel" + +#: ../../include/features.php:28 +msgid "Profile Import/Export" +msgstr "Profiel importen/exporteren" + +#: ../../include/features.php:28 +msgid "Save and load profile details across sites/channels" +msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." + +#: ../../include/features.php:29 +msgid "Web Pages" +msgstr "Webpagina's" + +#: ../../include/features.php:29 +msgid "Provide managed web pages on your channel" +msgstr "Sta beheerde webpagina's op jouw kanaal toe" + +#: ../../include/features.php:30 +msgid "Private Notes" +msgstr "Privé-aantekeningen" + +#: ../../include/features.php:30 +msgid "Enables a tool to store notes and reminders" +msgstr "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan" + +#: ../../include/features.php:34 +msgid "Navigation Channel Select" +msgstr "Kanaal kiezen in navigatiemenu" + +#: ../../include/features.php:34 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" + +#: ../../include/features.php:38 +msgid "Extended Identity Sharing" +msgstr "Uitgebreid identiteit delen" + +#: ../../include/features.php:38 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." +msgstr "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet." + +#: ../../include/features.php:39 +msgid "Expert Mode" +msgstr "Expertmodus" + +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Schakel de expertmodus in voor geavanceerde instellingen" + +#: ../../include/features.php:40 +msgid "Premium Channel" +msgstr "Premiumkanaal" + +#: ../../include/features.php:40 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" + +#: ../../include/features.php:45 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" + +#: ../../include/features.php:47 +msgid "Use Markdown" +msgstr "Markdown gebruiken" + +#: ../../include/features.php:47 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken." + +#: ../../include/features.php:49 ../../include/widgets.php:527 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanaalbronnen" + +#: ../../include/features.php:49 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." + +#: ../../include/features.php:50 +msgid "Even More Encryption" +msgstr "Extra encryptie" + +#: ../../include/features.php:50 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." + +#: ../../include/features.php:51 +msgid "Flag Adult Photos" +msgstr "Markeer foto's als voor volwassenen" + +#: ../../include/features.php:51 +msgid "Provide photo edit option to hide adult photos from default album view" +msgstr "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen" + +#: ../../include/features.php:56 +msgid "Network and Stream Filtering" +msgstr "Netwerk- en streamfilter" + +#: ../../include/features.php:57 +msgid "Search by Date" +msgstr "Zoek op datum" + +#: ../../include/features.php:57 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten op datum te filteren " + +#: ../../include/features.php:58 +msgid "Collections Filter" +msgstr "Filter op collecties" + +#: ../../include/features.php:58 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" + +#: ../../include/features.php:59 ../../include/widgets.php:272 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: ../../include/features.php:59 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" + +#: ../../include/features.php:60 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" + +#: ../../include/features.php:60 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" + +#: ../../include/features.php:61 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" + +#: ../../include/features.php:61 +msgid "Enable tab to display all new Network activity" +msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" + +#: ../../include/features.php:62 +msgid "Affinity Tool" +msgstr "Verwantschapsfilter" + +#: ../../include/features.php:62 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag" + +#: ../../include/features.php:63 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" + +#: ../../include/features.php:63 +msgid "Show channel suggestions" +msgstr "Voor jou mogelijk interessante kanalen voorstellen" + +#: ../../include/features.php:68 +msgid "Post/Comment Tools" +msgstr "Bericht- en reactiehulpmiddelen" + +#: ../../include/features.php:71 +msgid "Tagging" +msgstr "Taggen" + +#: ../../include/features.php:71 +msgid "Ability to tag existing posts" +msgstr "Mogelijkheid om bestaande berichten te taggen" + +#: ../../include/features.php:72 +msgid "Post Categories" +msgstr "Categorieën berichten" + +#: ../../include/features.php:72 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" + +#: ../../include/features.php:73 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:302 +msgid "Saved Folders" +msgstr "Bewaarde mappen" + +#: ../../include/features.php:73 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen op te slaan" + +#: ../../include/features.php:74 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" + +#: ../../include/features.php:74 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" + +#: ../../include/features.php:75 +msgid "Star Posts" +msgstr "Geef berichten een ster" + +#: ../../include/features.php:75 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mogelijkheid om speciale berichten met een ster te markeren" + +#: ../../include/features.php:76 +msgid "Tag Cloud" +msgstr "Tagwolk" + +#: ../../include/features.php:76 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" + +#: ../../include/RedDAV/RedBrowser.php:106 +#: ../../include/RedDAV/RedBrowser.php:262 +msgid "parent" +msgstr "omhoog" + +#: ../../include/RedDAV/RedBrowser.php:130 +#: ../../include/RedDAV/RedBrowser.php:339 +msgid "Collection" +msgstr "map" + +#: ../../include/RedDAV/RedBrowser.php:133 +msgid "Principal" +msgstr "principal" + +#: ../../include/RedDAV/RedBrowser.php:136 +msgid "Addressbook" +msgstr "Adresboek" + +#: ../../include/RedDAV/RedBrowser.php:139 +msgid "Calendar" +msgstr "Agenda" + +#: ../../include/RedDAV/RedBrowser.php:142 +msgid "Schedule Inbox" +msgstr "Planning-postvak IN" + +#: ../../include/RedDAV/RedBrowser.php:145 +msgid "Schedule Outbox" +msgstr "Planning-postvak UIT" + +#: ../../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 +msgid "Unknown" +msgstr "Onbekend" + +#: ../../include/RedDAV/RedBrowser.php:225 +#, php-format +msgid "%1$s used" +msgstr "%1$s gebruikt" + +#: ../../include/RedDAV/RedBrowser.php:230 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s van %2$s gebruikt (%3$s%)" + +#: ../../include/RedDAV/RedBrowser.php:249 ../../include/conversation.php:1539 +#: ../../include/apps.php:135 ../../include/nav.php:106 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Bestanden" + +#: ../../include/RedDAV/RedBrowser.php:251 +msgid "Total" +msgstr "Totaal" + +#: ../../include/RedDAV/RedBrowser.php:258 ../../mod/settings.php:579 +#: ../../mod/settings.php:605 ../../mod/admin.php:866 +msgid "Name" +msgstr "Naam" + +#: ../../include/RedDAV/RedBrowser.php:259 +msgid "Type" +msgstr "Type" + +#: ../../include/RedDAV/RedBrowser.php:260 +msgid "Size" +msgstr "Grootte" + +#: ../../include/RedDAV/RedBrowser.php:261 +msgid "Last Modified" +msgstr "Laatst gewijzigd" + +#: ../../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 "Verwijderen" + +#: ../../include/RedDAV/RedBrowser.php:312 +msgid "Create new folder" +msgstr "Nieuwe map aanmaken" + +#: ../../include/RedDAV/RedBrowser.php:313 ../../mod/mitem.php:169 +#: ../../mod/menu.php:100 ../../mod/new_channel.php:121 +msgid "Create" +msgstr "Aanmaken" + +#: ../../include/RedDAV/RedBrowser.php:314 +msgid "Upload file" +msgstr "Bestand uploaden" + +#: ../../include/RedDAV/RedBrowser.php:315 ../../mod/profile_photo.php:361 +#: ../../mod/photos.php:735 ../../mod/photos.php:1243 +msgid "Upload" +msgstr "Uploaden" + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" + +#: ../../include/dir_fns.php:68 +msgid "Directory Options" +msgstr "Opties kanalengids" + +#: ../../include/dir_fns.php:69 +msgid "Alphabetic" +msgstr "Alfabetisch" + +#: ../../include/dir_fns.php:70 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" + +#: ../../include/dir_fns.php:71 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" + +#: ../../include/dir_fns.php:72 +msgid "Oldest to Newest" +msgstr "Oud naar nieuw" + +#: ../../include/dir_fns.php:73 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" + +#: ../../include/dir_fns.php:75 +msgid "Sort" +msgstr "Sorteren" + +#: ../../include/dir_fns.php:91 +msgid "Enable Safe Search" +msgstr "Veilig zoeken inschakelen" + +#: ../../include/dir_fns.php:93 +msgid "Disable Safe Search" +msgstr "Veilig zoeken uitschakelen" + +#: ../../include/dir_fns.php:95 +msgid "Safe Mode" +msgstr "Veilig zoeken" + #: ../../include/comanche.php:35 ../../mod/admin.php:353 #: ../../view/theme/apw/php/config.php:185 msgid "Default" @@ -1000,7 +976,7 @@ msgid "RSS/Atom" msgstr "RSS/Atom" #: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 -#: ../../mod/admin.php:735 ../../boot.php:1531 +#: ../../mod/admin.php:735 ../../boot.php:1544 msgid "Email" msgstr "E-mail" @@ -1028,7 +1004,42 @@ msgstr "XMPP/IM" msgid "MySpace" msgstr "MySpace" -#: ../../include/identity.php:31 ../../mod/item.php:1112 +#: ../../include/auth.php:130 +msgid "Logged out." +msgstr "Uitgelogd." + +#: ../../include/auth.php:271 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" + +#: ../../include/auth.php:285 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Inloggen mislukt." + +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" + +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Tonen" + +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Niet tonen" + +#: ../../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 +msgid "Permissions" +msgstr "Permissies" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 +#: ../../mod/photos.php:1146 +msgid "Close" +msgstr "Sluiten" + +#: ../../include/identity.php:31 ../../mod/item.php:1115 msgid "Unable to obtain identity information from database" msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" @@ -1066,10 +1077,10 @@ msgid "Default Profile" msgstr "Standaardprofiel" #: ../../include/identity.php:387 ../../include/identity.php:388 -#: ../../include/identity.php:395 ../../include/widgets.php:424 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:320 -#: ../../mod/settings.php:324 ../../mod/settings.php:325 -#: ../../mod/settings.php:328 ../../mod/settings.php:339 +#: ../../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 "Vrienden" @@ -1079,228 +1090,1802 @@ msgid "Requested channel is not available." msgstr "Opgevraagd kanaal is niet beschikbaar." #: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/blocks.php:29 ../../mod/connect.php:13 -#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 +#: ../../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 "Opgevraagd profiel is niet beschikbaar" -#: ../../include/identity.php:840 ../../include/Contact.php:107 -#: ../../include/conversation.php:938 ../../include/widgets.php:136 -#: ../../include/widgets.php:175 ../../mod/suggest.php:51 +#: ../../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 "Verbinden" -#: ../../include/identity.php:854 ../../mod/profiles.php:740 +#: ../../include/identity.php:854 ../../mod/profiles.php:757 msgid "Change profile photo" msgstr "Profielfoto veranderen" -#: ../../include/identity.php:860 +#: ../../include/identity.php:861 msgid "Profiles" msgstr "Profielen" -#: ../../include/identity.php:860 +#: ../../include/identity.php:861 msgid "Manage/edit profiles" msgstr "Profielen beheren/bewerken" -#: ../../include/identity.php:861 ../../mod/profiles.php:741 +#: ../../include/identity.php:862 ../../mod/profiles.php:758 msgid "Create New Profile" msgstr "Nieuw profiel aanmaken" -#: ../../include/identity.php:875 ../../mod/profiles.php:752 +#: ../../include/identity.php:865 ../../include/nav.php:103 +msgid "Edit Profile" +msgstr "Profiel bewerken" + +#: ../../include/identity.php:878 ../../mod/profiles.php:769 msgid "Profile Image" msgstr "Profielfoto" -#: ../../include/identity.php:878 +#: ../../include/identity.php:881 msgid "visible to everybody" msgstr "Voor iedereen zichtbaar" -#: ../../include/identity.php:879 ../../mod/profiles.php:635 -#: ../../mod/profiles.php:756 +#: ../../include/identity.php:882 ../../mod/profiles.php:652 +#: ../../mod/profiles.php:773 msgid "Edit visibility" msgstr "Zichtbaarheid bewerken" -#: ../../include/identity.php:895 ../../include/identity.php:1132 +#: ../../include/identity.php:898 ../../include/identity.php:1135 msgid "Gender:" msgstr "Geslacht:" -#: ../../include/identity.php:896 ../../include/identity.php:1176 +#: ../../include/identity.php:899 ../../include/identity.php:1179 msgid "Status:" msgstr "Status:" -#: ../../include/identity.php:897 ../../include/identity.php:1187 +#: ../../include/identity.php:900 ../../include/identity.php:1190 msgid "Homepage:" msgstr "Homepagina:" -#: ../../include/identity.php:898 +#: ../../include/identity.php:901 msgid "Online Now" msgstr "Nu online" -#: ../../include/identity.php:976 ../../include/identity.php:1056 -#: ../../mod/ping.php:326 +#: ../../include/identity.php:979 ../../include/identity.php:1059 +#: ../../mod/ping.php:329 msgid "g A l F d" msgstr "G:i, l d F" -#: ../../include/identity.php:977 ../../include/identity.php:1057 +#: ../../include/identity.php:980 ../../include/identity.php:1060 msgid "F d" msgstr "d F" -#: ../../include/identity.php:1022 ../../include/identity.php:1097 -#: ../../mod/ping.php:348 +#: ../../include/identity.php:1025 ../../include/identity.php:1100 +#: ../../mod/ping.php:351 msgid "[today]" msgstr "[vandaag]" -#: ../../include/identity.php:1034 +#: ../../include/identity.php:1037 msgid "Birthday Reminders" msgstr "Verjaardagsherinneringen" -#: ../../include/identity.php:1035 +#: ../../include/identity.php:1038 msgid "Birthdays this week:" msgstr "Verjaardagen deze week:" -#: ../../include/identity.php:1090 +#: ../../include/identity.php:1093 msgid "[No description]" msgstr "[Geen omschrijving]" -#: ../../include/identity.php:1108 +#: ../../include/identity.php:1111 msgid "Event Reminders" msgstr "Herinneringen" -#: ../../include/identity.php:1109 +#: ../../include/identity.php:1112 msgid "Events this week:" msgstr "Gebeurtenissen deze week:" -#: ../../include/identity.php:1122 ../../include/identity.php:1251 -#: ../../include/apps.php:136 ../../mod/profperm.php:112 +#: ../../include/identity.php:1125 ../../include/identity.php:1254 +#: ../../include/apps.php:138 ../../mod/profperm.php:112 msgid "Profile" msgstr "Profiel" -#: ../../include/identity.php:1130 ../../mod/settings.php:1012 +#: ../../include/identity.php:1133 ../../mod/settings.php:1022 msgid "Full Name:" msgstr "Volledige naam:" -#: ../../include/identity.php:1137 +#: ../../include/identity.php:1140 msgid "Like this channel" msgstr "Vind dit kanaal leuk" -#: ../../include/identity.php:1148 ../../include/taxonomy.php:360 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1027 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "vindt dit leuk" -msgstr[1] "vinden dit leuk" - -#: ../../include/identity.php:1161 +#: ../../include/identity.php:1164 msgid "j F, Y" msgstr "F j Y" -#: ../../include/identity.php:1162 +#: ../../include/identity.php:1165 msgid "j F" msgstr "F j" -#: ../../include/identity.php:1169 +#: ../../include/identity.php:1172 msgid "Birthday:" msgstr "Geboortedatum:" -#: ../../include/identity.php:1173 +#: ../../include/identity.php:1176 msgid "Age:" msgstr "Leeftijd:" -#: ../../include/identity.php:1182 +#: ../../include/identity.php:1185 #, php-format msgid "for %1$d %2$s" msgstr "voor %1$d %2$s" -#: ../../include/identity.php:1185 ../../mod/profiles.php:657 +#: ../../include/identity.php:1188 ../../mod/profiles.php:674 msgid "Sexual Preference:" msgstr "Seksuele voorkeur:" -#: ../../include/identity.php:1189 ../../mod/profiles.php:659 +#: ../../include/identity.php:1192 ../../mod/profiles.php:676 msgid "Hometown:" msgstr "Oorspronkelijk uit:" -#: ../../include/identity.php:1191 +#: ../../include/identity.php:1194 msgid "Tags:" -msgstr "Trefwoorden:" +msgstr "Tags:" -#: ../../include/identity.php:1193 ../../mod/profiles.php:660 +#: ../../include/identity.php:1196 ../../mod/profiles.php:677 msgid "Political Views:" msgstr "Politieke overtuigingen:" -#: ../../include/identity.php:1195 +#: ../../include/identity.php:1198 msgid "Religion:" msgstr "Religie:" -#: ../../include/identity.php:1197 +#: ../../include/identity.php:1200 msgid "About:" msgstr "Over:" -#: ../../include/identity.php:1199 +#: ../../include/identity.php:1202 msgid "Hobbies/Interests:" msgstr "Hobby's/interesses:" -#: ../../include/identity.php:1201 ../../mod/profiles.php:663 +#: ../../include/identity.php:1204 ../../mod/profiles.php:680 msgid "Likes:" msgstr "Houdt van:" -#: ../../include/identity.php:1203 ../../mod/profiles.php:664 +#: ../../include/identity.php:1206 ../../mod/profiles.php:681 msgid "Dislikes:" msgstr "Houdt niet van:" -#: ../../include/identity.php:1206 +#: ../../include/identity.php:1209 msgid "Contact information and Social Networks:" msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/identity.php:1218 +#: ../../include/identity.php:1221 msgid "My other channels:" msgstr "Mijn andere kanalen" -#: ../../include/identity.php:1221 +#: ../../include/identity.php:1224 msgid "Musical interests:" msgstr "Muzikale interesses:" -#: ../../include/identity.php:1223 +#: ../../include/identity.php:1226 msgid "Books, literature:" msgstr "Boeken, literatuur:" -#: ../../include/identity.php:1225 +#: ../../include/identity.php:1228 msgid "Television:" msgstr "Televisie:" -#: ../../include/identity.php:1227 +#: ../../include/identity.php:1230 msgid "Film/dance/culture/entertainment:" msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/identity.php:1229 +#: ../../include/identity.php:1232 msgid "Love/Romance:" msgstr "Liefde/romantiek:" -#: ../../include/identity.php:1231 +#: ../../include/identity.php:1234 msgid "Work/employment:" msgstr "Werk/beroep:" -#: ../../include/identity.php:1233 +#: ../../include/identity.php:1236 msgid "School/education:" msgstr "School/opleiding:" -#: ../../include/identity.php:1253 +#: ../../include/identity.php:1256 msgid "Like this thing" msgstr "Vind dit ding leuk" -#: ../../include/bbcode.php:112 ../../include/bbcode.php:655 -#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 -#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 -#: ../../include/bbcode.php:672 ../../include/bbcode.php:677 +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 +msgid "Advanced" +msgstr "Geavanceerd" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Kanalen vinden" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" + +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 +#: ../../mod/directory.php:317 ../../mod/directory.php:322 +msgid "Find" +msgstr "Vinden" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +#: ../../mod/directory.php:321 +msgid "Channel Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Willekeurig profiel" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" + +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 +#: ../../include/widgets.php:305 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" + +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "meer connecties weergeven" + +#: ../../include/event.php:376 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." + +#: ../../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 "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." + +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Standaard privacy-collectie voor nieuwe kanalen" + +#: ../../include/group.php:254 ../../mod/admin.php:735 +msgid "All Channels" +msgstr "Alle kanalen" + +#: ../../include/group.php:276 +msgid "edit" +msgstr "bewerken" + +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Collecties" + +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Collectie bewerken" + +#: ../../include/group.php:300 +msgid "Create a new collection" +msgstr "Nieuwe collectie aanmaken" + +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanalen die zich in geen enkele collectie bevinden" + +#: ../../include/group.php:303 ../../include/widgets.php:273 +msgid "add" +msgstr "toevoegen" + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd." + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." + +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Beheerder" + +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" + +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" + +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Account goedgekeurd" + +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" + +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." + +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." + +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." + +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." + +#: ../../include/text.php:320 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:322 +msgid "first" +msgstr "eerste" + +#: ../../include/text.php:351 +msgid "last" +msgstr "laatste" + +#: ../../include/text.php:354 +msgid "next" +msgstr "volgende" + +#: ../../include/text.php:366 +msgid "older" +msgstr "ouder" + +#: ../../include/text.php:368 +msgid "newer" +msgstr "nieuwer" + +#: ../../include/text.php:756 +msgid "No connections" +msgstr "Geen connecties" + +#: ../../include/text.php:772 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d connectie" +msgstr[1] "%d connecties" + +#: ../../include/text.php:785 +msgid "View Connections" +msgstr "Connecties weergeven" + +#: ../../include/text.php:842 ../../include/text.php:854 +#: ../../include/apps.php:147 ../../include/nav.php:173 +#: ../../mod/search.php:30 +msgid "Search" +msgstr "Zoeken" + +#: ../../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 "Opslaan" + +#: ../../include/text.php:920 +msgid "poke" +msgstr "aanstoten" + +#: ../../include/text.php:920 ../../include/conversation.php:243 +msgid "poked" +msgstr "aangestoten" + +#: ../../include/text.php:921 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:921 +msgid "pinged" +msgstr "gepingd" + +#: ../../include/text.php:922 +msgid "prod" +msgstr "por" + +#: ../../include/text.php:922 +msgid "prodded" +msgstr "gepord" + +#: ../../include/text.php:923 +msgid "slap" +msgstr "slaan" + +#: ../../include/text.php:923 +msgid "slapped" +msgstr "sloeg" + +#: ../../include/text.php:924 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:924 +msgid "fingered" +msgstr "gefingerd" + +#: ../../include/text.php:925 +msgid "rebuff" +msgstr "afpoeieren" + +#: ../../include/text.php:925 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: ../../include/text.php:935 +msgid "happy" +msgstr "gelukkig" + +#: ../../include/text.php:936 +msgid "sad" +msgstr "bedroefd" + +#: ../../include/text.php:937 +msgid "mellow" +msgstr "mellow" + +#: ../../include/text.php:938 +msgid "tired" +msgstr "moe" + +#: ../../include/text.php:939 +msgid "perky" +msgstr "parmantig" + +#: ../../include/text.php:940 +msgid "angry" +msgstr "boos" + +#: ../../include/text.php:941 +msgid "stupified" +msgstr "beteuterd" + +#: ../../include/text.php:942 +msgid "puzzled" +msgstr "verward" + +#: ../../include/text.php:943 +msgid "interested" +msgstr "geïnteresseerd" + +#: ../../include/text.php:944 +msgid "bitter" +msgstr "verbitterd" + +#: ../../include/text.php:945 +msgid "cheerful" +msgstr "vrolijk" + +#: ../../include/text.php:946 +msgid "alive" +msgstr "levendig" + +#: ../../include/text.php:947 +msgid "annoyed" +msgstr "geërgerd" + +#: ../../include/text.php:948 +msgid "anxious" +msgstr "bezorgd" + +#: ../../include/text.php:949 +msgid "cranky" +msgstr "humeurig" + +#: ../../include/text.php:950 +msgid "disturbed" +msgstr "verontrust" + +#: ../../include/text.php:951 +msgid "frustrated" +msgstr "gefrustreerd " + +#: ../../include/text.php:952 +msgid "depressed" +msgstr "gedeprimeerd" + +#: ../../include/text.php:953 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:954 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:955 +msgid "surprised" +msgstr "verrast" + +#: ../../include/text.php:1121 +msgid "Monday" +msgstr "maandag" + +#: ../../include/text.php:1121 +msgid "Tuesday" +msgstr "dinsdag" + +#: ../../include/text.php:1121 +msgid "Wednesday" +msgstr "woensdag" + +#: ../../include/text.php:1121 +msgid "Thursday" +msgstr "donderdag" + +#: ../../include/text.php:1121 +msgid "Friday" +msgstr "vrijdag" + +#: ../../include/text.php:1121 +msgid "Saturday" +msgstr "zaterdag" + +#: ../../include/text.php:1121 +msgid "Sunday" +msgstr "zondag" + +#: ../../include/text.php:1125 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1125 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1125 +msgid "March" +msgstr "maart" + +#: ../../include/text.php:1125 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1125 +msgid "May" +msgstr "mei" + +#: ../../include/text.php:1125 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1125 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1125 +msgid "August" +msgstr "augustus" + +#: ../../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 "onbekend.???" + +#: ../../include/text.php:1204 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1240 +msgid "remove category" +msgstr "categorie verwijderen" + +#: ../../include/text.php:1309 +msgid "remove from file" +msgstr "uit map verwijderen" + +#: ../../include/text.php:1385 ../../include/text.php:1396 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" + +#: ../../include/text.php:1544 ../../mod/events.php:414 +msgid "Link to Source" +msgstr "Originele locatie" + +#: ../../include/text.php:1563 +msgid "Select a page layout: " +msgstr "Kies een paginalay-out: " + +#: ../../include/text.php:1566 ../../include/text.php:1626 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1599 +msgid "Page content type: " +msgstr "Opmaakcode pagina" + +#: ../../include/text.php:1638 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../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 "gebeurtenis" + +#: ../../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 "bericht" + +#: ../../include/text.php:1765 ../../include/conversation.php:150 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "reactie" + +#: ../../include/text.php:1770 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:2057 +msgid "Design" +msgstr "Ontwerp" + +#: ../../include/text.php:2060 +msgid "Blocks" +msgstr "Blokken" + +#: ../../include/text.php:2061 +msgid "Menus" +msgstr "Menu's" + +#: ../../include/text.php:2062 +msgid "Layouts" +msgstr "Lay-outs" + +#: ../../include/text.php:2063 +msgid "Pages" +msgstr "Pagina's" + +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" + +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" + +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" + +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" + +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Chatkanaal is vol" + +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." + +#: ../../include/follow.php:135 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." + +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." + +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "lokale account niet gevonden." + +#: ../../include/follow.php:220 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" + +#: ../../include/conversation.php:126 ../../mod/like.php:89 +msgid "channel" +msgstr "kanaal" + +#: ../../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 vindt %3$s van %2$s leuk" + +#: ../../include/conversation.php:167 ../../mod/like.php:338 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s is nu met %2$s verbonden" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" + +#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" + +#: ../../include/conversation.php:638 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Kies" + +#: ../../include/conversation.php:646 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Privébericht" + +#: ../../include/conversation.php:653 ../../include/ItemObject.php:194 +msgid "Message signature validated" +msgstr "Berichtkenmerk gevalideerd" + +#: ../../include/conversation.php:654 ../../include/ItemObject.php:195 +msgid "Message signature incorrect" +msgstr "Berichtkenmerk onjuist" + +#: ../../include/conversation.php:674 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" + +#: ../../include/conversation.php:689 +msgid "Categories:" +msgstr "Categorieën:" + +#: ../../include/conversation.php:690 +msgid "Filed under:" +msgstr "Bewaard onder:" + +#: ../../include/conversation.php:698 ../../include/ItemObject.php:274 +#, php-format +msgid " from %s" +msgstr " van %s" + +#: ../../include/conversation.php:701 ../../include/ItemObject.php:277 +#, php-format +msgid "last edited: %s" +msgstr "laatst bewerkt: %s" + +#: ../../include/conversation.php:702 ../../include/ItemObject.php:278 +#, php-format +msgid "Expires: %s" +msgstr "Verloopt: %s" + +#: ../../include/conversation.php:717 +msgid "View in context" +msgstr "In context bekijken" + +#: ../../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 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 +#: ../../mod/photos.php:975 +msgid "Please wait" +msgstr "Even wachten" + +#: ../../include/conversation.php:835 +msgid "remove" +msgstr "verwijderen" + +#: ../../include/conversation.php:839 ../../include/nav.php:257 +msgid "Loading..." +msgstr "Aan het laden..." + +#: ../../include/conversation.php:840 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" + +#: ../../include/conversation.php:931 +msgid "View Source" +msgstr "Bron weergeven" + +#: ../../include/conversation.php:932 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: ../../include/conversation.php:933 +msgid "View Status" +msgstr "Status weergeven" + +#: ../../include/conversation.php:934 ../../include/nav.php:99 +#: ../../mod/connedit.php:429 ../../mod/connedit.php:545 +msgid "View Profile" +msgstr "Profiel weergeven" + +#: ../../include/conversation.php:935 +msgid "View Photos" +msgstr "Foto's weergeven" + +#: ../../include/conversation.php:936 +msgid "Matrix Activity" +msgstr "Activiteit in de RedMatrix" + +#: ../../include/conversation.php:938 +msgid "Edit Contact" +msgstr "Contact bewerken" + +#: ../../include/conversation.php:939 +msgid "Send PM" +msgstr "Privébericht verzenden" + +#: ../../include/conversation.php:940 ../../include/apps.php:145 +msgid "Poke" +msgstr "Aanstoten" + +#: ../../include/conversation.php:1013 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." + +#: ../../include/conversation.php:1013 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." + +#: ../../include/conversation.php:1017 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d persoon vindt dit leuk." +msgstr[1] "%2$d personen vinden dit leuk." + +#: ../../include/conversation.php:1019 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d persoon vindt dit niet leuk." +msgstr[1] "%2$d personen vinden dit niet leuk." + +#: ../../include/conversation.php:1025 +msgid "and" +msgstr "en" + +#: ../../include/conversation.php:1028 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", en %d ander persoon" +msgstr[1] ", en %d andere personen" + +#: ../../include/conversation.php:1029 +#, php-format +msgid "%s like this." +msgstr "%s vinden dit leuk." + +#: ../../include/conversation.php:1029 +#, php-format +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." + +#: ../../include/conversation.php:1086 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" + +#: ../../include/conversation.php:1087 ../../mod/mail.php:171 +#: ../../mod/mail.php:286 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: ../../include/conversation.php:1088 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: ../../include/conversation.php:1089 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: ../../include/conversation.php:1090 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1091 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Bewaar in map: " + +#: ../../include/conversation.php:1092 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" + +#: ../../include/conversation.php:1093 ../../mod/editpost.php:52 +#: ../../mod/mail.php:172 ../../mod/mail.php:287 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om 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 +msgid "Share" +msgstr "Delen" + +#: ../../include/conversation.php:1119 ../../mod/editwebpage.php:170 +msgid "Page link title" +msgstr "Titel van paginalink" + +#: ../../include/conversation.php:1122 +msgid "Post as" +msgstr "Bericht plaatsen als" + +#: ../../include/conversation.php:1123 ../../mod/editpost.php:113 +#: ../../mod/mail.php:235 ../../mod/mail.php:349 ../../mod/editblock.php:144 +#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:175 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: ../../include/conversation.php:1124 +msgid "upload photo" +msgstr "foto uploaden" + +#: ../../include/conversation.php:1125 ../../mod/editpost.php:114 +#: ../../mod/mail.php:236 ../../mod/mail.php:350 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:176 +msgid "Attach file" +msgstr "Bestand toevoegen" + +#: ../../include/conversation.php:1126 +msgid "attach file" +msgstr "bestand toevoegen" + +#: ../../include/conversation.php:1127 ../../mod/editpost.php:115 +#: ../../mod/mail.php:237 ../../mod/mail.php:351 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:177 +msgid "Insert web link" +msgstr "Weblink invoegen" + +#: ../../include/conversation.php:1128 +msgid "web link" +msgstr "Weblink" + +#: ../../include/conversation.php:1129 +msgid "Insert video link" +msgstr "Videolink invoegen" + +#: ../../include/conversation.php:1130 +msgid "video link" +msgstr "videolink" + +#: ../../include/conversation.php:1131 +msgid "Insert audio link" +msgstr "Audiolink invoegen" + +#: ../../include/conversation.php:1132 +msgid "audio link" +msgstr "audiolink" + +#: ../../include/conversation.php:1133 ../../mod/editpost.php:119 +#: ../../mod/editblock.php:150 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:181 +msgid "Set your location" +msgstr "Locatie instellen" + +#: ../../include/conversation.php:1134 +msgid "set location" +msgstr "locatie instellen" + +#: ../../include/conversation.php:1135 ../../mod/editpost.php:120 +#: ../../mod/editblock.php:151 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:182 +msgid "Clear browser location" +msgstr "Locatie van webbrowser wissen" + +#: ../../include/conversation.php:1136 +msgid "clear location" +msgstr "locatie wissen" + +#: ../../include/conversation.php:1138 ../../mod/editpost.php:132 +#: ../../mod/editblock.php:164 ../../mod/editlayout.php:159 +#: ../../mod/editwebpage.php:198 +msgid "Title (optional)" +msgstr "Titel (optioneel)" + +#: ../../include/conversation.php:1141 ../../mod/editpost.php:134 +#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 +#: ../../mod/editwebpage.php:200 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" + +#: ../../include/conversation.php:1143 ../../mod/editpost.php:122 +#: ../../mod/editblock.php:153 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:184 +msgid "Permission settings" +msgstr "Permissies" + +#: ../../include/conversation.php:1144 +msgid "permissions" +msgstr "permissies" + +#: ../../include/conversation.php:1151 ../../mod/editpost.php:129 +#: ../../mod/editblock.php:161 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:193 +msgid "Public post" +msgstr "Openbaar bericht" + +#: ../../include/conversation.php:1153 ../../mod/editpost.php:135 +#: ../../mod/editblock.php:168 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:201 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" + +#: ../../include/conversation.php:1166 ../../mod/editpost.php:146 +#: ../../mod/mail.php:242 ../../mod/mail.php:356 ../../mod/editblock.php:178 +#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:210 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" + +#: ../../include/conversation.php:1168 ../../include/ItemObject.php:641 +#: ../../mod/editpost.php:148 ../../mod/mail.php:244 ../../mod/mail.php:358 +msgid "Encrypt text" +msgstr "Tekst versleutelen" + +#: ../../include/conversation.php:1170 ../../mod/events.php:580 +#: ../../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 +msgid "Cancel" +msgstr "Annuleren" + +#: ../../include/conversation.php:1415 +msgid "Discover" +msgstr "Ontdekken" + +#: ../../include/conversation.php:1418 +msgid "Imported public streams" +msgstr "Openbare streams importeren" + +#: ../../include/conversation.php:1423 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" + +#: ../../include/conversation.php:1426 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" + +#: ../../include/conversation.php:1430 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" + +#: ../../include/conversation.php:1433 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" + +#: ../../include/conversation.php:1438 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Persoonlijk" + +#: ../../include/conversation.php:1441 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" + +#: ../../include/conversation.php:1447 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:80 +msgid "New" +msgstr "Nieuw" + +#: ../../include/conversation.php:1450 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" + +#: ../../include/conversation.php:1456 +msgid "Starred" +msgstr "Met ster" + +#: ../../include/conversation.php:1459 +msgid "Favourite Posts" +msgstr "Favoriete berichten" + +#: ../../include/conversation.php:1466 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1469 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" + +#: ../../include/conversation.php:1509 ../../mod/admin.php:865 +msgid "Channel" +msgstr "Kanaal" + +#: ../../include/conversation.php:1512 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" + +#: ../../include/conversation.php:1521 +msgid "About" +msgstr "Over" + +#: ../../include/conversation.php:1524 +msgid "Profile Details" +msgstr "Profiel" + +#: ../../include/conversation.php:1530 ../../include/apps.php:139 +#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto's" + +#: ../../include/conversation.php:1542 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" + +#: ../../include/conversation.php:1552 ../../include/conversation.php:1555 +msgid "Chatrooms" +msgstr "Chatkanalen" + +#: ../../include/conversation.php:1565 ../../include/apps.php:129 +#: ../../include/nav.php:117 +msgid "Bookmarks" +msgstr "Bladwijzers" + +#: ../../include/conversation.php:1568 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" + +#: ../../include/conversation.php:1576 ../../include/apps.php:136 +#: ../../include/nav.php:121 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "Webpagina's" + +#: ../../include/conversation.php:1579 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" + +#: ../../include/widgets.php:91 ../../include/nav.php:171 +#: ../../mod/apps.php:34 +msgid "Apps" +msgstr "Apps" + +#: ../../include/widgets.php:92 +msgid "System" +msgstr "Systeem" + +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Persoonlijke app maken" + +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Persoonlijke app bewerken" + +#: ../../include/widgets.php:138 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" + +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Meer..." + +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." + +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" + +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Vul het adres van het nieuwe kanaal in" + +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" + +#: ../../include/widgets.php:190 +msgid "Notes" +msgstr "Aantekeningen" + +#: ../../include/widgets.php:264 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: ../../include/widgets.php:347 +msgid "Archives" +msgstr "Archieven" + +#: ../../include/widgets.php:425 +msgid "Refresh" +msgstr "Vernieuwen" + +#: ../../include/widgets.php:426 ../../mod/connedit.php:506 +msgid "Me" +msgstr "Ik" + +#: ../../include/widgets.php:427 ../../mod/connedit.php:509 +msgid "Best Friends" +msgstr "Goede vrienden" + +#: ../../include/widgets.php:429 +msgid "Co-workers" +msgstr "Collega's" + +#: ../../include/widgets.php:430 ../../mod/connedit.php:511 +msgid "Former Friends" +msgstr "Oude vrienden" + +#: ../../include/widgets.php:431 ../../mod/connedit.php:512 +msgid "Acquaintances" +msgstr "Kennissen" + +#: ../../include/widgets.php:432 +msgid "Everybody" +msgstr "Iedereen" + +#: ../../include/widgets.php:466 +msgid "Account settings" +msgstr "Account" + +#: ../../include/widgets.php:472 +msgid "Channel settings" +msgstr "Kanaal" + +#: ../../include/widgets.php:478 +msgid "Additional features" +msgstr "Extra functies" + +#: ../../include/widgets.php:484 +msgid "Feature settings" +msgstr "Plug-ins" + +#: ../../include/widgets.php:490 +msgid "Display settings" +msgstr "Weergave" + +#: ../../include/widgets.php:496 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: ../../include/widgets.php:502 +msgid "Export channel" +msgstr "Kanaal exporteren" + +#: ../../include/widgets.php:511 ../../mod/connedit.php:539 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" + +#: ../../include/widgets.php:519 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" + +#: ../../include/widgets.php:535 ../../include/apps.php:134 +#: ../../include/nav.php:218 ../../mod/admin.php:951 ../../mod/admin.php:1156 +msgid "Settings" +msgstr "Instellingen" + +#: ../../include/widgets.php:548 ../../mod/mail.php:125 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Berichten" + +#: ../../include/widgets.php:551 +msgid "Check Mail" +msgstr "Controleer op nieuwe berichten" + +#: ../../include/widgets.php:556 ../../include/nav.php:209 +msgid "New Message" +msgstr "Nieuw bericht" + +#: ../../include/widgets.php:634 +msgid "Chat Rooms" +msgstr "Chatkanalen" + +#: ../../include/widgets.php:654 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" + +#: ../../include/widgets.php:674 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" + +#: ../../include/widgets.php:801 ../../include/widgets.php:859 +msgid "photo/image" +msgstr "foto/afbeelding" + +#: ../../include/zot.php:664 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" + +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " + +#: ../../include/zot.php:1829 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In map opslaan" + +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:1020 ../../mod/photos.php:1032 +msgid "View all" +msgstr "Toon alles" + +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1029 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" + +#: ../../include/ItemObject.php:179 +msgid "Add Star" +msgstr "Ster toevoegen" + +#: ../../include/ItemObject.php:180 +msgid "Remove Star" +msgstr "Ster verwijderen" + +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" + +#: ../../include/ItemObject.php:185 +msgid "starred" +msgstr "met ster" + +#: ../../include/ItemObject.php:203 +msgid "Add Tag" +msgstr "Tag toevoegen" + +#: ../../include/ItemObject.php:221 ../../mod/photos.php:972 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: ../../include/ItemObject.php:222 ../../mod/photos.php:973 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: ../../include/ItemObject.php:226 +msgid "Share This" +msgstr "Delen" + +#: ../../include/ItemObject.php:226 +msgid "share" +msgstr "delen" + +#: ../../include/ItemObject.php:243 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" + +#: ../../include/ItemObject.php:256 ../../include/ItemObject.php:257 +#, php-format +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" + +#: ../../include/ItemObject.php:260 +msgid "to" +msgstr "aan" + +#: ../../include/ItemObject.php:261 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:262 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:263 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:299 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" + +#: ../../include/ItemObject.php:300 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" + +#: ../../include/ItemObject.php:309 +msgid "Mark all seen" +msgstr "Markeer alles als bekeken" + +#: ../../include/ItemObject.php:314 ../../mod/photos.php:1140 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../include/ItemObject.php:315 ../../mod/photos.php:1141 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../include/ItemObject.php:345 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] alle" + +#: ../../include/ItemObject.php:626 ../../mod/photos.php:991 +#: ../../mod/photos.php:1101 +msgid "This is you" +msgstr "Dit ben jij" + +#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 +#: ../../mod/photos.php:993 ../../mod/photos.php:1103 +msgid "Comment" +msgstr "Reactie" + +#: ../../include/ItemObject.php:629 ../../mod/mood.php:135 +#: ../../mod/group.php:81 ../../mod/poke.php:166 ../../mod/profiles.php:650 +#: ../../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/poll.php:68 ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Opslaan" + +#: ../../include/ItemObject.php:630 +msgid "Bold" +msgstr "Vet" + +#: ../../include/ItemObject.php:631 +msgid "Italic" +msgstr "Cursief" + +#: ../../include/ItemObject.php:632 +msgid "Underline" +msgstr "Onderstrepen" + +#: ../../include/ItemObject.php:633 +msgid "Quote" +msgstr "Citeren" + +#: ../../include/ItemObject.php:634 +msgid "Code" +msgstr "Broncode" + +#: ../../include/ItemObject.php:635 +msgid "Image" +msgstr "Afbeelding" + +#: ../../include/ItemObject.php:636 +msgid "Link" +msgstr "Link" + +#: ../../include/ItemObject.php:637 +msgid "Video" +msgstr "Video" + +#: ../../include/datetime.php:35 +msgid "Miscellaneous" +msgstr "Diversen" + +#: ../../include/datetime.php:113 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" + +#: ../../include/datetime.php:230 +msgid "never" +msgstr "nooit" + +#: ../../include/datetime.php:236 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: ../../include/datetime.php:239 +msgid "year" +msgstr "jaar" + +#: ../../include/datetime.php:239 +msgid "years" +msgstr "jaren" + +#: ../../include/datetime.php:240 +msgid "month" +msgstr "maand" + +#: ../../include/datetime.php:240 +msgid "months" +msgstr "maanden" + +#: ../../include/datetime.php:241 +msgid "week" +msgstr "week" + +#: ../../include/datetime.php:241 +msgid "weeks" +msgstr "weken" + +#: ../../include/datetime.php:242 +msgid "day" +msgstr "dag" + +#: ../../include/datetime.php:242 +msgid "days" +msgstr "dagen" + +#: ../../include/datetime.php:243 +msgid "hour" +msgstr "uur" + +#: ../../include/datetime.php:243 +msgid "hours" +msgstr "uren" + +#: ../../include/datetime.php:244 +msgid "minute" +msgstr "minuut" + +#: ../../include/datetime.php:244 +msgid "minutes" +msgstr "minuten" + +#: ../../include/datetime.php:245 +msgid "second" +msgstr "seconde" + +#: ../../include/datetime.php:245 +msgid "seconds" +msgstr "seconden" + +#: ../../include/datetime.php:254 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: ../../include/datetime.php:462 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" + +#: ../../include/datetime.php:463 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" + +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Hubbeheerder" + +#: ../../include/apps.php:130 +msgid "Address Book" +msgstr "Connecties" + +#: ../../include/apps.php:131 ../../include/nav.php:125 ../../boot.php:1542 +msgid "Login" +msgstr "Inloggen" + +#: ../../include/apps.php:132 ../../include/nav.php:216 +#: ../../mod/manage.php:150 +msgid "Channel Manager" +msgstr "Kanaalbeheer" + +#: ../../include/apps.php:133 ../../include/nav.php:190 +msgid "Matrix" +msgstr "Matrix" + +#: ../../include/apps.php:137 ../../include/nav.php:193 +msgid "Channel Home" +msgstr "Tijdlijn kanaal" + +#: ../../include/apps.php:140 ../../include/nav.php:212 +#: ../../mod/events.php:442 +msgid "Events" +msgstr "Agenda" + +#: ../../include/apps.php:141 ../../include/nav.php:176 +#: ../../mod/directory.php:321 +msgid "Directory" +msgstr "Kanalengids" + +#: ../../include/apps.php:142 ../../include/nav.php:168 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" +msgstr "Hulp" + +#: ../../include/apps.php:143 ../../include/nav.php:204 +msgid "Mail" +msgstr "Privéberichten" + +#: ../../include/apps.php:144 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Stemming" + +#: ../../include/apps.php:146 ../../include/nav.php:111 +msgid "Chat" +msgstr "Chatten" + +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Onderzoeken" + +#: ../../include/apps.php:149 +msgid "Suggest" +msgstr "Voorstellen" + +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Willekeurig kanaal" + +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Uitnodigen " + +#: ../../include/apps.php:152 +msgid "Features" +msgstr "Extra functies" + +#: ../../include/apps.php:153 +msgid "Language" +msgstr "Taal" + +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Bericht" + +#: ../../include/apps.php:155 +msgid "Profile Photo" +msgstr "Profielfoto" + +#: ../../include/apps.php:247 ../../mod/settings.php:81 +#: ../../mod/settings.php:603 +msgid "Update" +msgstr "Bijwerken" + +#: ../../include/apps.php:247 +msgid "Install" +msgstr "Installeren" + +#: ../../include/apps.php:252 +msgid "Purchase" +msgstr "Aanschaffen" + +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Nieuw venster" + +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" + +#: ../../include/Contact.php:214 ../../mod/admin.php:646 +#, php-format +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" + +#: ../../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: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 "Afbeelding/foto" -#: ../../include/bbcode.php:147 ../../include/bbcode.php:705 +#: ../../include/bbcode.php:147 ../../include/bbcode.php:727 msgid "Encrypted content" msgstr "Versleutelde inhoud" @@ -1321,158 +2906,14 @@ msgstr "%1$s schreef het volgende %2$s %3$s" msgid "post" msgstr "bericht" -#: ../../include/bbcode.php:623 +#: ../../include/bbcode.php:645 msgid "$1 spoiler" msgstr "$1 spoiler" -#: ../../include/bbcode.php:643 +#: ../../include/bbcode.php:665 msgid "$1 wrote:" msgstr "$1 schreef:" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" - -#: ../../include/datetime.php:142 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" - -#: ../../include/datetime.php:259 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:265 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:268 -msgid "year" -msgstr "jaar" - -#: ../../include/datetime.php:268 -msgid "years" -msgstr "jaren" - -#: ../../include/datetime.php:269 -msgid "month" -msgstr "maand" - -#: ../../include/datetime.php:269 -msgid "months" -msgstr "maanden" - -#: ../../include/datetime.php:270 -msgid "week" -msgstr "week" - -#: ../../include/datetime.php:270 -msgid "weeks" -msgstr "weken" - -#: ../../include/datetime.php:271 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:271 -msgid "days" -msgstr "dagen" - -#: ../../include/datetime.php:272 -msgid "hour" -msgstr "uur" - -#: ../../include/datetime.php:272 -msgid "hours" -msgstr "uren" - -#: ../../include/datetime.php:273 -msgid "minute" -msgstr "minuut" - -#: ../../include/datetime.php:273 -msgid "minutes" -msgstr "minuten" - -#: ../../include/datetime.php:274 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:274 -msgid "seconds" -msgstr "seconden" - -#: ../../include/datetime.php:283 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/datetime.php:491 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" - -#: ../../include/datetime.php:492 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" - -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nieuw venster" - -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" - -#: ../../include/Contact.php:214 ../../mod/admin.php:646 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Labels" - -#: ../../include/taxonomy.php:249 -msgid "Keywords" -msgstr "Trefwoorden" - -#: ../../include/taxonomy.php:274 -msgid "have" -msgstr "heb" - -#: ../../include/taxonomy.php:274 -msgid "has" -msgstr "heeft" - -#: ../../include/taxonomy.php:275 -msgid "want" -msgstr "wil" - -#: ../../include/taxonomy.php:275 -msgid "wants" -msgstr "wil" - -#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 -msgid "like" -msgstr "vind dit leuk" - -#: ../../include/taxonomy.php:276 -msgid "likes" -msgstr "vindt dit leuk" - -#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "vind dit niet leuk" - -#: ../../include/taxonomy.php:277 -msgid "dislikes" -msgstr "vindt dit niet leuk" - -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" - #: ../../include/enotify.php:41 msgid "Red Matrix Notification" msgstr "RedMatrix-notificatie" @@ -1599,17 +3040,17 @@ msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." #: ../../include/enotify.php:243 #, php-format msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notificatie] %s heeft jouw bericht gelabeld" +msgstr "[Red:Notificatie] %s heeft jouw bericht getagd" #: ../../include/enotify.php:244 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s labelde jouw bericht om %3$s" +msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" #: ../../include/enotify.php:245 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s labelde [zrl=%3$s]jouw bericht[/zrl]" +msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" #: ../../include/enotify.php:257 msgid "[Red:Notify] Introduction received" @@ -1665,1421 +3106,14 @@ msgstr "Foto:" msgid "Please visit %s to approve or reject the suggestion." msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." -#: ../../include/enotify.php:477 +#: ../../include/enotify.php:490 msgid "[Red:Notify]" msgstr "[Red:Notificatie]" -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." - -#: ../../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 "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy-collectie voor nieuwe kanalen" - -#: ../../include/group.php:254 ../../mod/admin.php:735 -msgid "All Channels" -msgstr "Alle kanalen" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "bewerken" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Collecties" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Collectie bewerken" - -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Nieuwe collectie aanmaken" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanalen die zich in geen enkele collectie bevinden" - -#: ../../include/group.php:303 ../../include/widgets.php:269 -msgid "add" -msgstr "toevoegen" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Algemene functies" - -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "Inhoud laten verlopen" - -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" - -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" - -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" - -#: ../../include/features.php:27 -msgid "Advanced Profiles" -msgstr "Geavanceerde profielen" - -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" -msgstr "Extra onderdelen en keuzes voor je profiel" - -#: ../../include/features.php:28 -msgid "Profile Import/Export" -msgstr "Profiel importen/exporteren" - -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" -msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." - -#: ../../include/features.php:29 -msgid "Web Pages" -msgstr "Webpagina's" - -#: ../../include/features.php:29 -msgid "Provide managed web pages on your channel" -msgstr "Sta beheerde webpagina's op jouw kanaal toe" - -#: ../../include/features.php:30 -msgid "Private Notes" -msgstr "Privé-aantekeningen" - -#: ../../include/features.php:30 -msgid "Enables a tool to store notes and reminders" -msgstr "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan" - -#: ../../include/features.php:34 -msgid "Navigation Channel Select" -msgstr "Kanaal kiezen in navigatiemenu" - -#: ../../include/features.php:34 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" - -#: ../../include/features.php:38 -msgid "Extended Identity Sharing" -msgstr "Uitgebreid identiteit delen" - -#: ../../include/features.php:38 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet." - -#: ../../include/features.php:39 -msgid "Expert Mode" -msgstr "Expertmodus" - -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Schakel de expertmodus in voor geavanceerde instellingen" - -#: ../../include/features.php:40 -msgid "Premium Channel" -msgstr "Premiumkanaal" - -#: ../../include/features.php:40 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" - -#: ../../include/features.php:45 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" - -#: ../../include/features.php:47 -msgid "Use Markdown" -msgstr "Markdown gebruiken" - -#: ../../include/features.php:47 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken." - -#: ../../include/features.php:48 -msgid "Post Preview" -msgstr "Voorvertoning" - -#: ../../include/features.php:48 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Een optie om je berichten en reacties voor het definitief publiceren voor te vertonen" - -#: ../../include/features.php:49 ../../include/widgets.php:528 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanaalbronnen" - -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." - -#: ../../include/features.php:50 -msgid "Even More Encryption" -msgstr "Extra encryptie" - -#: ../../include/features.php:50 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." - -#: ../../include/features.php:51 -msgid "Flag Adult Photos" -msgstr "Markeer foto's als voor volwassenen" - -#: ../../include/features.php:51 -msgid "Provide photo edit option to hide adult photos from default album view" -msgstr "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen" - -#: ../../include/features.php:56 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" - -#: ../../include/features.php:57 -msgid "Search by Date" -msgstr "Zoek op datum" - -#: ../../include/features.php:57 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " - -#: ../../include/features.php:58 -msgid "Collections Filter" -msgstr "Filter op collecties" - -#: ../../include/features.php:58 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" - -#: ../../include/features.php:59 ../../include/widgets.php:268 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: ../../include/features.php:59 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: ../../include/features.php:60 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: ../../include/features.php:60 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" - -#: ../../include/features.php:61 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: ../../include/features.php:61 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" - -#: ../../include/features.php:62 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" - -#: ../../include/features.php:62 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag" - -#: ../../include/features.php:63 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" - -#: ../../include/features.php:63 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" - -#: ../../include/features.php:68 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" - -#: ../../include/features.php:70 -msgid "Edit Sent Posts" -msgstr "Bewerk verzonden berichten" - -#: ../../include/features.php:70 -msgid "Edit and correct posts and comments after sending" -msgstr "Bewerk en corrigeer berichten en reacties nadat deze zijn verzonden" - -#: ../../include/features.php:71 -msgid "Tagging" -msgstr "Labelen" - -#: ../../include/features.php:71 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te labelen" - -#: ../../include/features.php:72 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: ../../include/features.php:72 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: ../../include/features.php:73 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" - -#: ../../include/features.php:74 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" - -#: ../../include/features.php:74 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" - -#: ../../include/features.php:75 -msgid "Star Posts" -msgstr "Geef berichten een ster" - -#: ../../include/features.php:75 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mogelijkheid om speciale berichten met een ster te markeren" - -#: ../../include/features.php:76 -msgid "Tag Cloud" -msgstr "Wolk met trefwoorden/labels" - -#: ../../include/features.php:76 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Zorgt voor een persoonlijke wolk met trefwoorden of labels op jouw kanaalpagina" - -#: ../../include/text.php:321 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:323 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:352 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:355 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:367 -msgid "older" -msgstr "ouder" - -#: ../../include/text.php:369 -msgid "newer" -msgstr "nieuwer" - -#: ../../include/text.php:736 -msgid "No connections" -msgstr "Geen connecties" - -#: ../../include/text.php:753 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d connectie" -msgstr[1] "%d connecties" - -#: ../../include/text.php:766 -msgid "View Connections" -msgstr "Connecties weergeven" - -#: ../../include/text.php:827 ../../include/text.php:839 -#: ../../include/widgets.php:192 ../../mod/filer.php:50 -#: ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 ../../mod/admin.php:1339 -#: ../../mod/admin.php:1360 -msgid "Save" -msgstr "Opslaan" - -#: ../../include/text.php:905 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:905 ../../include/conversation.php:243 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/text.php:906 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:906 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:907 -msgid "prod" -msgstr "por" - -#: ../../include/text.php:907 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:908 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:908 -msgid "slapped" -msgstr "sloeg" - -#: ../../include/text.php:909 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:909 -msgid "fingered" -msgstr "gefingerd" - -#: ../../include/text.php:910 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:910 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:919 -msgid "happy" -msgstr "gelukkig" - -#: ../../include/text.php:920 -msgid "sad" -msgstr "bedroefd" - -#: ../../include/text.php:921 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:922 -msgid "tired" -msgstr "moe" - -#: ../../include/text.php:923 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:924 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:925 -msgid "stupified" -msgstr "beteuterd" - -#: ../../include/text.php:926 -msgid "puzzled" -msgstr "verward" - -#: ../../include/text.php:927 -msgid "interested" -msgstr "geïnteresseerd" - -#: ../../include/text.php:928 -msgid "bitter" -msgstr "verbitterd" - -#: ../../include/text.php:929 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:930 -msgid "alive" -msgstr "levendig" - -#: ../../include/text.php:931 -msgid "annoyed" -msgstr "geërgerd" - -#: ../../include/text.php:932 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:933 -msgid "cranky" -msgstr "humeurig" - -#: ../../include/text.php:934 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:935 -msgid "frustrated" -msgstr "gefrustreerd " - -#: ../../include/text.php:936 -msgid "depressed" -msgstr "gedeprimeerd" - -#: ../../include/text.php:937 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:938 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:939 -msgid "surprised" -msgstr "verrast" - -#: ../../include/text.php:1103 -msgid "Monday" -msgstr "maandag" - -#: ../../include/text.php:1103 -msgid "Tuesday" -msgstr "dinsdag" - -#: ../../include/text.php:1103 -msgid "Wednesday" -msgstr "woensdag" - -#: ../../include/text.php:1103 -msgid "Thursday" -msgstr "donderdag" - -#: ../../include/text.php:1103 -msgid "Friday" -msgstr "vrijdag" - -#: ../../include/text.php:1103 -msgid "Saturday" -msgstr "zaterdag" - -#: ../../include/text.php:1103 -msgid "Sunday" -msgstr "zondag" - -#: ../../include/text.php:1107 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1107 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1107 -msgid "March" -msgstr "maart" - -#: ../../include/text.php:1107 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1107 -msgid "May" -msgstr "mei" - -#: ../../include/text.php:1107 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1107 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1107 -msgid "August" -msgstr "augustus" - -#: ../../include/text.php:1107 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1107 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1107 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1107 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1185 -msgid "unknown.???" -msgstr "onbekend.???" - -#: ../../include/text.php:1186 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1225 -msgid "remove category" -msgstr "categorie verwijderen" - -#: ../../include/text.php:1295 -msgid "remove from file" -msgstr "uit map verwijderen" - -#: ../../include/text.php:1360 ../../include/text.php:1372 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" - -#: ../../include/text.php:1527 ../../mod/events.php:414 -msgid "Link to Source" -msgstr "Originele locatie" - -#: ../../include/text.php:1546 -msgid "Select a page layout: " -msgstr "Kies een paginalay-out: " - -#: ../../include/text.php:1549 ../../include/text.php:1614 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1585 -msgid "Page content type: " -msgstr "Opmaakcode pagina" - -#: ../../include/text.php:1626 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1747 ../../include/conversation.php:120 -#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:45 -msgid "photo" -msgstr "foto" - -#: ../../include/text.php:1750 ../../include/conversation.php:123 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "gebeurtenis" - -#: ../../include/text.php:1753 ../../include/conversation.php:148 -#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:53 -msgid "status" -msgstr "bericht" - -#: ../../include/text.php:1755 ../../include/conversation.php:150 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "reactie" - -#: ../../include/text.php:1760 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:2046 -msgid "Design" -msgstr "Ontwerp" - -#: ../../include/text.php:2049 -msgid "Blocks" -msgstr "Blokken" - -#: ../../include/text.php:2050 -msgid "Menus" -msgstr "Menu's" - -#: ../../include/text.php:2051 -msgid "Layouts" -msgstr "Lay-outs" - -#: ../../include/text.php:2052 -msgid "Pages" -msgstr "Pagina's" - -#: ../../include/conversation.php:126 ../../mod/like.php:89 -msgid "channel" -msgstr "kanaal" - -#: ../../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 vindt %3$s van %2$s leuk" - -#: ../../include/conversation.php:167 ../../mod/like.php:338 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s is nu met %2$s verbonden" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s heeft %2$s aangestoten" - -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" - -#: ../../include/conversation.php:638 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "Kies" - -#: ../../include/conversation.php:646 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "Privébericht" - -#: ../../include/conversation.php:653 ../../include/ItemObject.php:194 -msgid "Message signature validated" -msgstr "Berichtkenmerk gevalideerd" - -#: ../../include/conversation.php:654 ../../include/ItemObject.php:195 -msgid "Message signature incorrect" -msgstr "Berichtkenmerk onjuist" - -#: ../../include/conversation.php:675 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" - -#: ../../include/conversation.php:690 -msgid "Categories:" -msgstr "Categorieën:" - -#: ../../include/conversation.php:691 -msgid "Filed under:" -msgstr "Bewaard onder:" - -#: ../../include/conversation.php:699 ../../include/ItemObject.php:266 -#, php-format -msgid " from %s" -msgstr " van %s" - -#: ../../include/conversation.php:702 ../../include/ItemObject.php:269 -#, php-format -msgid "last edited: %s" -msgstr "laatst bewerkt: %s" - -#: ../../include/conversation.php:703 ../../include/ItemObject.php:270 -#, php-format -msgid "Expires: %s" -msgstr "Verloopt: %s" - -#: ../../include/conversation.php:718 -msgid "View in context" -msgstr "In context bekijken" - -#: ../../include/conversation.php:720 ../../include/conversation.php:1143 -#: ../../include/ItemObject.php:317 ../../mod/editblock.php:152 -#: ../../mod/editlayout.php:148 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:183 ../../mod/mail.php:238 ../../mod/mail.php:353 -#: ../../mod/photos.php:978 -msgid "Please wait" -msgstr "Even wachten" - -#: ../../include/conversation.php:836 -msgid "remove" -msgstr "verwijderen" - -#: ../../include/conversation.php:841 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" - -#: ../../include/conversation.php:932 -msgid "View Source" -msgstr "Bron weergeven" - -#: ../../include/conversation.php:933 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: ../../include/conversation.php:934 -msgid "View Status" -msgstr "Status weergeven" - -#: ../../include/conversation.php:936 -msgid "View Photos" -msgstr "Foto's weergeven" - -#: ../../include/conversation.php:937 -msgid "Matrix Activity" -msgstr "Activiteit in de RedMatrix" - -#: ../../include/conversation.php:939 -msgid "Edit Contact" -msgstr "Contact bewerken" - -#: ../../include/conversation.php:940 -msgid "Send PM" -msgstr "Privébericht verzenden" - -#: ../../include/conversation.php:941 ../../include/apps.php:143 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:1018 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d persoon vindt dit leuk." -msgstr[1] "%2$d personen vinden dit leuk." - -#: ../../include/conversation.php:1020 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d persoon vindt dit niet leuk." -msgstr[1] "%2$d personen vinden dit niet leuk." - -#: ../../include/conversation.php:1026 -msgid "and" -msgstr "en" - -#: ../../include/conversation.php:1029 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", en %d ander persoon" -msgstr[1] ", en %d andere personen" - -#: ../../include/conversation.php:1030 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." - -#: ../../include/conversation.php:1030 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." - -#: ../../include/conversation.php:1087 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/conversation.php:1088 ../../mod/mail.php:171 -#: ../../mod/mail.php:286 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: ../../include/conversation.php:1089 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: ../../include/conversation.php:1090 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: ../../include/conversation.php:1091 -msgid "Tag term:" -msgstr "Label:" - -#: ../../include/conversation.php:1092 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Bewaar in map: " - -#: ../../include/conversation.php:1093 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" - -#: ../../include/conversation.php:1094 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:287 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" - -#: ../../include/conversation.php:1118 ../../mod/editblock.php:198 -#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 -#: ../../mod/layouts.php:168 ../../mod/photos.php:977 -msgid "Share" -msgstr "Delen" - -#: ../../include/conversation.php:1120 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Titel van paginalink" - -#: ../../include/conversation.php:1123 -msgid "Post as" -msgstr "Bericht plaatsen als" - -#: ../../include/conversation.php:1124 ../../mod/editblock.php:144 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:235 ../../mod/mail.php:349 -msgid "Upload photo" -msgstr "Foto uploaden" - -#: ../../include/conversation.php:1125 -msgid "upload photo" -msgstr "foto uploaden" - -#: ../../include/conversation.php:1126 ../../mod/editblock.php:145 -#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:236 ../../mod/mail.php:350 -msgid "Attach file" -msgstr "Bestand toevoegen" - -#: ../../include/conversation.php:1127 -msgid "attach file" -msgstr "bestand toevoegen" - -#: ../../include/conversation.php:1128 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:142 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:237 ../../mod/mail.php:351 -msgid "Insert web link" -msgstr "Weblink invoegen" - -#: ../../include/conversation.php:1129 -msgid "web link" -msgstr "Weblink" - -#: ../../include/conversation.php:1130 -msgid "Insert video link" -msgstr "Videolink invoegen" - -#: ../../include/conversation.php:1131 -msgid "video link" -msgstr "videolink" - -#: ../../include/conversation.php:1132 -msgid "Insert audio link" -msgstr "Audiolink invoegen" - -#: ../../include/conversation.php:1133 -msgid "audio link" -msgstr "audiolink" - -#: ../../include/conversation.php:1134 ../../mod/editblock.php:150 -#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:181 -msgid "Set your location" -msgstr "Locatie instellen" - -#: ../../include/conversation.php:1135 -msgid "set location" -msgstr "locatie instellen" - -#: ../../include/conversation.php:1136 ../../mod/editblock.php:151 -#: ../../mod/editlayout.php:147 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:182 -msgid "Clear browser location" -msgstr "Locatie van webbrowser wissen" - -#: ../../include/conversation.php:1137 -msgid "clear location" -msgstr "locatie wissen" - -#: ../../include/conversation.php:1139 ../../mod/editblock.php:164 -#: ../../mod/editlayout.php:159 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:198 -msgid "Title (optional)" -msgstr "Titel (optioneel)" - -#: ../../include/conversation.php:1142 ../../mod/editblock.php:167 -#: ../../mod/editlayout.php:162 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:200 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" - -#: ../../include/conversation.php:1144 ../../mod/editblock.php:153 -#: ../../mod/editlayout.php:149 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" -msgstr "Permissies" - -#: ../../include/conversation.php:1145 -msgid "permissions" -msgstr "permissies" - -#: ../../include/conversation.php:1152 ../../mod/editblock.php:161 -#: ../../mod/editlayout.php:156 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:193 -msgid "Public post" -msgstr "Openbaar bericht" - -#: ../../include/conversation.php:1154 ../../mod/editblock.php:168 -#: ../../mod/editlayout.php:163 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:201 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" - -#: ../../include/conversation.php:1167 ../../mod/editblock.php:178 -#: ../../mod/editlayout.php:173 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:242 ../../mod/mail.php:356 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" - -#: ../../include/conversation.php:1169 ../../include/ItemObject.php:633 -#: ../../mod/editpost.php:148 ../../mod/mail.php:244 ../../mod/mail.php:358 -msgid "Encrypt text" -msgstr "Tekst versleutelen" - -#: ../../include/conversation.php:1171 ../../mod/events.php:580 -#: ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1172 ../../mod/settings.php:566 -#: ../../mod/settings.php:592 ../../mod/events.php:579 -#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Annuleren" - -#: ../../include/conversation.php:1416 -msgid "Discover" -msgstr "Ontdekken" - -#: ../../include/conversation.php:1419 -msgid "Imported public streams" -msgstr "Openbare streams importeren" - -#: ../../include/conversation.php:1424 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" - -#: ../../include/conversation.php:1427 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" - -#: ../../include/conversation.php:1431 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" - -#: ../../include/conversation.php:1434 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" - -#: ../../include/conversation.php:1439 ../../include/widgets.php:94 -msgid "Personal" -msgstr "Persoonlijk" - -#: ../../include/conversation.php:1442 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" - -#: ../../include/conversation.php:1448 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:80 -msgid "New" -msgstr "Nieuw" - -#: ../../include/conversation.php:1451 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" - -#: ../../include/conversation.php:1457 -msgid "Starred" -msgstr "Met ster" - -#: ../../include/conversation.php:1460 -msgid "Favourite Posts" -msgstr "Favoriete berichten" - -#: ../../include/conversation.php:1467 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1470 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" - -#: ../../include/conversation.php:1510 ../../mod/admin.php:865 -msgid "Channel" -msgstr "Kanaal" - -#: ../../include/conversation.php:1513 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" - -#: ../../include/conversation.php:1522 -msgid "About" -msgstr "Over" - -#: ../../include/conversation.php:1525 -msgid "Profile Details" -msgstr "Profiel" - -#: ../../include/conversation.php:1534 ../../include/photos.php:341 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../include/conversation.php:1543 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" - -#: ../../include/conversation.php:1553 ../../include/conversation.php:1556 -msgid "Chatrooms" -msgstr "Chatkanalen" - -#: ../../include/conversation.php:1569 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" - -#: ../../include/conversation.php:1580 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" - -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd." - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Beheerder" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." - -#: ../../include/account.php:648 ../../include/account.php:650 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../include/account.php:656 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." - -#: ../../include/account.php:661 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." - -#: ../../include/photos.php:105 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" - -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" - -#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" - -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" - -#: ../../include/photos.php:345 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: ../../include/items.php:382 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/like.php:246 ../../mod/group.php:68 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "Toegang geweigerd" - -#: ../../include/items.php:969 ../../include/items.php:1014 -msgid "(Unknown)" -msgstr "(Onbekend)" - -#: ../../include/items.php:1171 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." - -#: ../../include/items.php:1173 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." - -#: ../../include/items.php:1175 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." - -#: ../../include/items.php:1177 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." - -#: ../../include/items.php:1179 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." - -#: ../../include/items.php:1181 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." - -#: ../../include/items.php:1183 -msgid "Visible to approved connections." -msgstr "Voor alle goedgekeurde connecties zichtbaar." - -#: ../../include/items.php:1185 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." - -#: ../../include/items.php:3952 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:26 -#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Item niet gevonden." - -#: ../../include/items.php:4410 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Collectie niet gevonden." - -#: ../../include/items.php:4425 -msgid "Collection is empty." -msgstr "Collectie is leeg" - -#: ../../include/items.php:4432 -#, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" - -#: ../../include/items.php:4443 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" - -#: ../../include/items.php:4446 -msgid "Connection not found." -msgstr "Connectie niet gevonden." - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Systeem" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persoonlijke app maken" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persoonlijke app bewerken" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" - -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Meer..." - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Vul het adres van het nieuwe kanaal in" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Aantekeningen" - -#: ../../include/widgets.php:260 -msgid "Remove term" -msgstr "Verwijder zoekterm" - -#: ../../include/widgets.php:343 -msgid "Archives" -msgstr "Archieven" - -#: ../../include/widgets.php:421 -msgid "Refresh" -msgstr "Vernieuwen" - -#: ../../include/widgets.php:422 ../../mod/connedit.php:506 -msgid "Me" -msgstr "Ik" - -#: ../../include/widgets.php:423 ../../mod/connedit.php:509 -msgid "Best Friends" -msgstr "Goede vrienden" - -#: ../../include/widgets.php:425 -msgid "Co-workers" -msgstr "Collega's" - -#: ../../include/widgets.php:426 ../../mod/connedit.php:511 -msgid "Former Friends" -msgstr "Oude vrienden" - -#: ../../include/widgets.php:427 ../../mod/connedit.php:512 -msgid "Acquaintances" -msgstr "Kennissen" - -#: ../../include/widgets.php:428 -msgid "Everybody" -msgstr "Iedereen" - -#: ../../include/widgets.php:462 -msgid "Account settings" -msgstr "Account" - -#: ../../include/widgets.php:468 -msgid "Channel settings" -msgstr "Kanaal" - -#: ../../include/widgets.php:474 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../include/widgets.php:480 -msgid "Feature settings" -msgstr "Plug-ins" - -#: ../../include/widgets.php:486 -msgid "Display settings" -msgstr "Weergave" - -#: ../../include/widgets.php:492 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../include/widgets.php:498 -msgid "Export channel" -msgstr "Kanaal exporteren" - -#: ../../include/widgets.php:504 -msgid "Export content" -msgstr "Inhoud exporteren" - -#: ../../include/widgets.php:512 ../../mod/connedit.php:539 -msgid "Connection Default Permissions" -msgstr "Standaard permissies voor connecties" - -#: ../../include/widgets.php:520 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" - -#: ../../include/widgets.php:549 ../../mod/mail.php:125 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Berichten" - -#: ../../include/widgets.php:552 -msgid "Check Mail" -msgstr "Controleer op nieuwe berichten" - -#: ../../include/widgets.php:635 -msgid "Chat Rooms" -msgstr "Chatkanalen" - -#: ../../include/widgets.php:655 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" - -#: ../../include/widgets.php:675 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" - -#: ../../include/widgets.php:802 ../../include/widgets.php:860 -msgid "photo/image" -msgstr "foto/afbeelding" - -#: ../../include/zot.php:664 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" - -#: ../../include/zot.php:680 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " - -#: ../../include/zot.php:1819 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dit item verwijderen?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:620 -#: ../../mod/photos.php:996 ../../mod/photos.php:1106 -msgid "Comment" -msgstr "Reactie" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:337 -msgid "[+] show all" -msgstr "[+] alle" - #: ../../include/js_strings.php:8 msgid "[-] show less" msgstr "[-] minder reacties weergeven" @@ -3433,379 +3467,205 @@ msgstr "Maakt mij niks uit" msgid "Ask me" msgstr "Vraag het me" -#: ../../include/apps.php:126 -msgid "Site Admin" -msgstr "Hubbeheerder" +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1541 +msgid "Logout" +msgstr "Uitloggen" -#: ../../include/apps.php:128 -msgid "Address Book" +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" +msgstr "Beëindig deze sessie" + +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:98 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" + +#: ../../include/nav.php:99 +msgid "Your profile page" +msgstr "Jouw profielpagina" + +#: ../../include/nav.php:101 +msgid "Edit Profiles" +msgstr "Bewerk profielen" + +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" + +#: ../../include/nav.php:103 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" + +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "Jouw foto's" + +#: ../../include/nav.php:106 +msgid "Your files" +msgstr "Jouw bestanden" + +#: ../../include/nav.php:111 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" + +#: ../../include/nav.php:117 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" + +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "Jouw webpagina's" + +#: ../../include/nav.php:125 +msgid "Sign in" +msgstr "Inloggen" + +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" + +#: ../../include/nav.php:145 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" + +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" + +#: ../../include/nav.php:159 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1518 +msgid "Register" +msgstr "Registreren" + +#: ../../include/nav.php:163 +msgid "Create an account" +msgstr "Maak een account aan" + +#: ../../include/nav.php:168 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" +msgstr "Apps" + +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "Inhoud van deze RedMatrix-hub doorzoeken" + +#: ../../include/nav.php:176 +msgid "Channel Directory" +msgstr "Kanalengids" + +#: ../../include/nav.php:190 +msgid "Your matrix" +msgstr "Jouw matrix" + +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" +msgstr "Markeer alle matrixnotificaties als bekeken" + +#: ../../include/nav.php:193 +msgid "Channel home" +msgstr "Tijdlijn kanaal" + +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" + +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" msgstr "Connecties" -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Stemming" +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "Notificaties" -#: ../../include/apps.php:146 -msgid "Probe" -msgstr "Onderzoeken" +#: ../../include/nav.php:200 +msgid "Notifications" +msgstr "Notificaties" -#: ../../include/apps.php:147 -msgid "Suggest" -msgstr "Voorstellen" +#: ../../include/nav.php:201 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "Willekeurig kanaal" +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../include/apps.php:149 -msgid "Invite" -msgstr "Uitnodigen " +#: ../../include/nav.php:204 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../include/apps.php:150 -msgid "Features" -msgstr "Extra functies" +#: ../../include/nav.php:205 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../include/apps.php:151 -msgid "Language" -msgstr "Taal" +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../include/apps.php:152 -msgid "Post" -msgstr "Bericht" +#: ../../include/nav.php:207 +msgid "Inbox" +msgstr "Postvak IN" -#: ../../include/apps.php:153 -msgid "Profile Photo" -msgstr "Profielfoto" +#: ../../include/nav.php:208 +msgid "Outbox" +msgstr "Postvak UIT" -#: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:591 -msgid "Update" -msgstr "Bijwerken" +#: ../../include/nav.php:212 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../include/apps.php:242 -msgid "Install" -msgstr "Installeren" +#: ../../include/nav.php:213 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../include/apps.php:247 -msgid "Purchase" -msgstr "Aanschaffen" +#: ../../include/nav.php:214 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "Uitgelogd." +#: ../../include/nav.php:216 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Inloggen mislukt." +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Beheer" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In map opslaan" +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1023 ../../mod/photos.php:1035 -msgid "View all" -msgstr "Toon alles" +#: ../../include/nav.php:262 +msgid "@name, #tag, content" +msgstr "@kanaal, #label, inhoud" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1032 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" +#: ../../include/nav.php:263 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../include/ItemObject.php:179 -msgid "Add Star" -msgstr "Ster toevoegen" - -#: ../../include/ItemObject.php:180 -msgid "Remove Star" -msgstr "Ster verwijderen" - -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" - -#: ../../include/ItemObject.php:185 -msgid "starred" -msgstr "met ster" - -#: ../../include/ItemObject.php:203 -msgid "Add Tag" -msgstr "Label toevoegen" - -#: ../../include/ItemObject.php:221 ../../mod/photos.php:975 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: ../../include/ItemObject.php:222 ../../mod/photos.php:976 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: ../../include/ItemObject.php:226 -msgid "Share This" -msgstr "Delen" - -#: ../../include/ItemObject.php:226 -msgid "share" -msgstr "delen" - -#: ../../include/ItemObject.php:236 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" - -#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" - -#: ../../include/ItemObject.php:252 -msgid "to" -msgstr "aan" - -#: ../../include/ItemObject.php:253 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:254 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" - -#: ../../include/ItemObject.php:255 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" - -#: ../../include/ItemObject.php:291 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" - -#: ../../include/ItemObject.php:292 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" - -#: ../../include/ItemObject.php:301 -msgid "Mark all seen" -msgstr "Markeer alles als bekeken" - -#: ../../include/ItemObject.php:306 ../../mod/photos.php:1143 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../include/ItemObject.php:307 ../../mod/photos.php:1144 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../include/ItemObject.php:618 ../../mod/photos.php:994 -#: ../../mod/photos.php:1104 -msgid "This is you" -msgstr "Dit ben jij" - -#: ../../include/ItemObject.php:621 ../../mod/mood.php:135 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/poke.php:166 -#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/settings.php:565 -#: ../../mod/settings.php:677 ../../mod/settings.php:706 -#: ../../mod/settings.php:730 ../../mod/settings.php:812 -#: ../../mod/settings.php:1004 ../../mod/events.php:598 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:93 ../../mod/connedit.php:556 -#: ../../mod/thing.php:284 ../../mod/thing.php:327 ../../mod/profiles.php:633 -#: ../../mod/pdledit.php:58 ../../mod/fsuggest.php:108 -#: ../../mod/filestorage.php:146 ../../mod/group.php:81 -#: ../../mod/import.php:480 ../../mod/admin.php:412 ../../mod/admin.php:723 -#: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 ../../mod/locs.php:99 ../../mod/mail.php:352 -#: ../../mod/invite.php:142 ../../mod/xchan.php:11 ../../mod/photos.php:594 -#: ../../mod/photos.php:671 ../../mod/photos.php:957 ../../mod/photos.php:997 -#: ../../mod/photos.php:1107 ../../mod/appman.php:99 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Opslaan" - -#: ../../include/ItemObject.php:622 -msgid "Bold" -msgstr "Vet" - -#: ../../include/ItemObject.php:623 -msgid "Italic" -msgstr "Cursief" - -#: ../../include/ItemObject.php:624 -msgid "Underline" -msgstr "Onderstrepen" - -#: ../../include/ItemObject.php:625 -msgid "Quote" -msgstr "Citeren" - -#: ../../include/ItemObject.php:626 -msgid "Code" -msgstr "Broncode" - -#: ../../include/ItemObject.php:627 -msgid "Image" -msgstr "Afbeelding" - -#: ../../include/ItemObject.php:628 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:629 -msgid "Video" -msgstr "Video" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Chatkanaal is vol" +#: ../../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 "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " #: ../../mod/mood.php:132 msgid "Set your current mood and tell your friends" msgstr "Noteer je huidige stemming en toon het aan je connecties" -#: ../../mod/mitem.php:24 ../../mod/menu.php:108 -msgid "Menu not found." -msgstr "Menu niet gevonden." - -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menu-onderdeel geüpdatet." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menu-onderdeel toegevoegd" - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." - -#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "Niet gevonden." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Menu-onderdelen beheren" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Menu bewerken" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Onderdeel bewerken" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Onderdeel verwijderen" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Nieuw element" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Menu-element toevoegen" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Nieuw menu-element" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1039 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Linktekst" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL of link" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use RedMatrix magic-auth if available" -msgstr "Gebruik RedMatrix' magic-auth wanneer beschikbaar" - -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Volgorde in lijst" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" - -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" - -#: ../../mod/mitem.php:213 ../../mod/menu.php:130 -msgid "Modify" -msgstr "Wijzigen" - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)." - #: ../../mod/register.php:44 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals." @@ -3885,29 +3745,646 @@ msgstr "Geef een wachtwoord op" msgid "Please re-enter your password" msgstr "Geef het wachtwoord opnieuw op" -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- kies map -" +#: ../../mod/mitem.php:24 ../../mod/menu.php:108 +msgid "Menu not found." +msgstr "Menu niet gevonden." -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" +#: ../../mod/mitem.php:67 +msgid "Menu element updated." +msgstr "Menu-onderdeel geüpdatet." -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" +#: ../../mod/mitem.php:77 +msgid "Menu element added." +msgstr "Menu-onderdeel toegevoegd" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Zichtbaar voor" +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "Alle connecties" +#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "Niet gevonden." + +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" +msgstr "Menu-onderdelen beheren" + +#: ../../mod/mitem.php:130 +msgid "Edit menu" +msgstr "Menu bewerken" + +#: ../../mod/mitem.php:133 +msgid "Edit element" +msgstr "Onderdeel bewerken" + +#: ../../mod/mitem.php:134 +msgid "Drop element" +msgstr "Onderdeel verwijderen" + +#: ../../mod/mitem.php:135 +msgid "New element" +msgstr "Nieuw element" + +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" + +#: ../../mod/mitem.php:137 +msgid "Add menu element" +msgstr "Menu-element toevoegen" + +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" + +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" + +#: ../../mod/mitem.php:158 +msgid "New Menu Element" +msgstr "Nieuw menu-element" + +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1049 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" +msgstr "Linktekst" + +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" +msgstr "URL of link" + +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "Gebruik RedMatrix' magic-auth wanneer beschikbaar" + +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" +msgstr "Volgorde in lijst" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" + +#: ../../mod/mitem.php:181 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." + +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." + +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." + +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" + +#: ../../mod/mitem.php:213 ../../mod/menu.php:130 +msgid "Modify" +msgstr "Wijzigen" + +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)." + +#: ../../mod/ping.php:266 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" + +#: ../../mod/ping.php:319 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" + +#: ../../mod/ping.php:360 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Collectie aangemaakt" + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Collectie kon niet aangemaakt worden" + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Collectie bijgewerkt." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Kanaalcollectie aanmaken" + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Naam collectie:" + +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "Kanalen in deze collectie zijn zichtbaar voor andere kanalen" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Collectie verwijderd" + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Verwijderen collectie mislukt" + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Collectiebewerker" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Kanalen" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alle kanaalconnecties" + +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." + +#: ../../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 "Openbare toegang geweigerd." + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Ontvanger" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Maak dit bericht privé" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." + +#: ../../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 "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" + +#: ../../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 "Nee" + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:583 +msgid "Profile not found." +msgstr "Profiel niet gevonden." + +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profiel verwijderd." + +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profiel-" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" + +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" + +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" + +#: ../../mod/profiles.php:387 +msgid "Marital Status" +msgstr "Huwelijke status" + +#: ../../mod/profiles.php:391 +msgid "Romantic Partner" +msgstr "Romantische partner" + +#: ../../mod/profiles.php:395 +msgid "Likes" +msgstr "Houdt van" + +#: ../../mod/profiles.php:399 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: ../../mod/profiles.php:403 +msgid "Work/Employment" +msgstr "Werk/arbeid" + +#: ../../mod/profiles.php:406 +msgid "Religion" +msgstr "Religie" + +#: ../../mod/profiles.php:410 +msgid "Political Views" +msgstr "Politieke overtuigingen" + +#: ../../mod/profiles.php:414 +msgid "Gender" +msgstr "Geslacht" + +#: ../../mod/profiles.php:418 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" + +#: ../../mod/profiles.php:422 +msgid "Homepage" +msgstr "Homepage" + +#: ../../mod/profiles.php:426 +msgid "Interests" +msgstr "Interesses" + +#: ../../mod/profiles.php:430 ../../mod/admin.php:866 +msgid "Address" +msgstr "Kanaaladres" + +#: ../../mod/profiles.php:437 ../../mod/pubsites.php:25 +msgid "Location" +msgstr "Locatie" + +#: ../../mod/profiles.php:520 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" + +#: ../../mod/profiles.php:609 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." + +#: ../../mod/profiles.php:649 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" + +#: ../../mod/profiles.php:651 +msgid "View this profile" +msgstr "Profiel weergeven" + +#: ../../mod/profiles.php:653 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" + +#: ../../mod/profiles.php:654 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" + +#: ../../mod/profiles.php:655 +msgid "Clone this profile" +msgstr "Dit profiel klonen" + +#: ../../mod/profiles.php:656 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" + +#: ../../mod/profiles.php:658 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" + +#: ../../mod/profiles.php:659 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" + +#: ../../mod/profiles.php:660 +msgid "Profile Name:" +msgstr "Profielnaam:" + +#: ../../mod/profiles.php:661 +msgid "Your Full Name:" +msgstr "Jouw volledige naam:" + +#: ../../mod/profiles.php:662 +msgid "Title/Description:" +msgstr "Titel/omschrijving:" + +#: ../../mod/profiles.php:663 +msgid "Your Gender:" +msgstr "Jouw geslacht" + +#: ../../mod/profiles.php:664 +msgid "Birthday :" +msgstr "Verjaardag: " + +#: ../../mod/profiles.php:665 +msgid "Street Address:" +msgstr "Straat en huisnummer:" + +#: ../../mod/profiles.php:666 +msgid "Locality/City:" +msgstr "Woonplaats:" + +#: ../../mod/profiles.php:667 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: ../../mod/profiles.php:668 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:669 +msgid "Region/State:" +msgstr "Provincie/gewest/deelstaat:" + +#: ../../mod/profiles.php:670 +msgid " Marital Status:" +msgstr " Huwelijkse staat:" + +#: ../../mod/profiles.php:671 +msgid "Who: (if applicable)" +msgstr "Wie (wanneer toepasselijk):" + +#: ../../mod/profiles.php:672 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" + +#: ../../mod/profiles.php:673 +msgid "Since [date]:" +msgstr "Sinds [datum]:" + +#: ../../mod/profiles.php:675 +msgid "Homepage URL:" +msgstr "Adres homepage:" + +#: ../../mod/profiles.php:678 +msgid "Religious Views:" +msgstr "Religieuze overtuigingen" + +#: ../../mod/profiles.php:679 +msgid "Keywords:" +msgstr "Trefwoorden" + +#: ../../mod/profiles.php:682 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" + +#: ../../mod/profiles.php:683 +msgid "Used in directory listings" +msgstr "Wordt in de kanalengids gebruikt" + +#: ../../mod/profiles.php:684 +msgid "Tell us about yourself..." +msgstr "Vertel ons iets over jezelf..." + +#: ../../mod/profiles.php:685 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" + +#: ../../mod/profiles.php:686 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: ../../mod/profiles.php:687 +msgid "My other channels" +msgstr "Mijn andere kanalen" + +#: ../../mod/profiles.php:688 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: ../../mod/profiles.php:689 +msgid "Books, literature" +msgstr "Boeken/literatuur" + +#: ../../mod/profiles.php:690 +msgid "Television" +msgstr "Televisie" + +#: ../../mod/profiles.php:691 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/entertainment" + +#: ../../mod/profiles.php:692 +msgid "Love/romance" +msgstr "Liefde/romantiek" + +#: ../../mod/profiles.php:693 +msgid "Work/employment" +msgstr "Werk/arbeid" + +#: ../../mod/profiles.php:694 +msgid "School/education" +msgstr "School/onderwijs" + +#: ../../mod/profiles.php:700 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" + +#: ../../mod/profiles.php:711 ../../mod/directory.php:188 +msgid "Age: " +msgstr "Leeftijd:" + +#: ../../mod/profiles.php:754 +msgid "Edit/Manage Profiles" +msgstr "Profielen bewerken/beheren" + +#: ../../mod/profiles.php:755 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" + +#: ../../mod/profiles.php:756 +msgid "Include desirable objects in your profile" +msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Item is niet aanwezig." + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "Ongeldig item." + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." + +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "Pagina niet gevonden." + +#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +msgid "Export Channel" +msgstr "Kanaal exporteren" + +#: ../../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 "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." + +#: ../../mod/uexport.php:36 +msgid "Export Content" +msgstr "Inhoud exporteren" + +#: ../../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 "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Accountbeheer uitbesteden" + +#: ../../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 "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Bestaande accountbeheerders" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Bestaande gevolmachtigde accountbeheerders" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." + +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:902 +msgid "Remove" +msgstr "Verwijderen" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Toevoegen" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Geen" + +#: ../../mod/siteinfo.php:93 +#, php-format +msgid "Version %s" +msgstr "Versie %s" + +#: ../../mod/siteinfo.php:114 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plug-ins/add-ons/apps:" + +#: ../../mod/siteinfo.php:127 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plug-ins/add-ons/apps" + +#: ../../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 "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy." + +#: ../../mod/siteinfo.php:138 +msgid "Tag: " +msgstr "Tag: " + +#: ../../mod/siteinfo.php:140 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" + +#: ../../mod/siteinfo.php:143 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" + +#: ../../mod/siteinfo.php:144 +msgid "" +"Please visit RedMatrix.me to learn more" +" about the Red Matrix." +msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." + +#: ../../mod/siteinfo.php:145 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" + +#: ../../mod/siteinfo.php:148 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" + +#: ../../mod/siteinfo.php:150 +msgid "Site Administrators" +msgstr "Hubbeheerders: " #: ../../mod/sources.php:32 msgid "Failed to create source. No channel selected." @@ -3972,93 +4449,2009 @@ msgstr "Bron verwijderd" msgid "Unable to remove source." msgstr "Verwijderen bron mislukt." -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Ontvanger" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Zichtbaar voor" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Maak dit bericht privé" +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" +msgstr "Alle connecties" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../mod/events.php:81 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" +#: ../../mod/events.php:86 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../mod/events.php:100 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" -#: ../../mod/api.php:104 +#: ../../mod/events.php:369 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:391 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: ../../mod/events.php:443 +msgid "Create New Event" +msgstr "Nieuwe gebeurtenis aanmaken" + +#: ../../mod/events.php:444 ../../mod/photos.php:856 +msgid "Previous" +msgstr "Vorige" + +#: ../../mod/events.php:445 ../../mod/setup.php:265 ../../mod/photos.php:865 +msgid "Next" +msgstr "Volgende" + +#: ../../mod/events.php:446 +msgid "Export" +msgstr "Exporteren" + +#: ../../mod/events.php:571 +msgid "Event details" +msgstr "Details van gebeurtenis" + +#: ../../mod/events.php:572 +msgid "Starting date and Title are required." +msgstr "Begintijd en titel zijn vereist." + +#: ../../mod/events.php:574 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" + +#: ../../mod/events.php:576 +msgid "Event Starts:" +msgstr "Begin gebeurtenis:" + +#: ../../mod/events.php:576 ../../mod/events.php:592 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" +msgstr "Vereist" + +#: ../../mod/events.php:582 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/-tijd is niet bekend of niet relevant" + +#: ../../mod/events.php:584 +msgid "Event Finishes:" +msgstr "Einde gebeurtenis:" + +#: ../../mod/events.php:586 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" + +#: ../../mod/events.php:588 +msgid "Description:" +msgstr "Omschrijving:" + +#: ../../mod/events.php:592 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:594 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Openbare hubs" + +#: ../../mod/pubsites.php:19 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" +"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 "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." -#: ../../mod/api.php:105 ../../mod/settings.php:944 ../../mod/settings.php:949 -#: ../../mod/settings.php:1032 ../../mod/profiles.php:591 -#: ../../mod/admin.php:392 -msgid "Yes" -msgstr "Ja" +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "URL hub" -#: ../../mod/api.php:106 ../../mod/settings.php:944 ../../mod/settings.php:949 -#: ../../mod/settings.php:1032 ../../mod/profiles.php:592 -#: ../../mod/admin.php:390 -msgid "No" -msgstr "Nee" +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Toegangstype" -#: ../../mod/search.php:13 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 -#: ../../mod/photos.php:458 -msgid "Public access denied." -msgstr "Openbare toegang geweigerd." +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Registratiebeleid" -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Item is niet aanwezig." +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." -#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#: ../../mod/channel.php:87 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Omschrijving" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Chatkanaal verwijderen" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Ik ben online" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Naam chatkanaal" + +#: ../../mod/chat.php:225 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ongeldig item." +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Afwezig" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Pagina niet gevonden." +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Inloggen." -#: ../../mod/subthread.php:103 +#: ../../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 "Item niet gevonden" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" + +#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 +msgid "Edit post" +msgstr "Bericht bewerken" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Item verwijderen?" + +#: ../../mod/editpost.php:116 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" +msgstr "YouTube-video invoegen" + +#: ../../mod/editpost.php:117 ../../mod/editblock.php:148 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis-video [.ogg] invoegen" + +#: ../../mod/editpost.php:118 ../../mod/editblock.php:149 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis-audio [.ogg] invoegen" + +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" + +#: ../../mod/removeme.php:58 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden." + +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen" + +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd." + +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Geen kanaal." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Veel voorkomende connecties" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." + +#: ../../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 "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Het foutbericht was:" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." + +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" + +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" + +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Authenticeren" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s" +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." + +#: ../../mod/lostpass.php:85 ../../boot.php:1550 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-mailadres" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Opnieuw instellen" + +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "Naam is vereist" + +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" + +#: ../../mod/settings.php:222 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." + +#: ../../mod/settings.php:226 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." + +#: ../../mod/settings.php:240 +msgid "Password changed." +msgstr "Wachtwoord veranderd." + +#: ../../mod/settings.php:242 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." + +#: ../../mod/settings.php:256 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." + +#: ../../mod/settings.php:259 +msgid "Protected email address. Cannot change to that email." +msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." + +#: ../../mod/settings.php:268 +msgid "System failure storing new email. Please try again." +msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." + +#: ../../mod/settings.php:507 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." + +#: ../../mod/settings.php:576 ../../mod/settings.php:602 +#: ../../mod/settings.php:638 +msgid "Add application" +msgstr "Applicatie toevoegen" + +#: ../../mod/settings.php:579 +msgid "Name of application" +msgstr "Naam van applicatie" + +#: ../../mod/settings.php:580 ../../mod/settings.php:606 +msgid "Consumer Key" +msgstr "Consumer key" + +#: ../../mod/settings.php:580 ../../mod/settings.php:581 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" + +#: ../../mod/settings.php:581 ../../mod/settings.php:607 +msgid "Consumer Secret" +msgstr "Consumer secret" + +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +msgid "Redirect" +msgstr "Redirect/doorverwijzing" + +#: ../../mod/settings.php:582 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" + +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +msgid "Icon url" +msgstr "URL van pictogram" + +#: ../../mod/settings.php:583 +msgid "Optional" +msgstr "Optioneel" + +#: ../../mod/settings.php:594 +msgid "You can't edit this application." +msgstr "Je kan deze applicatie niet bewerken" + +#: ../../mod/settings.php:637 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: ../../mod/settings.php:641 +msgid "Client key starts with" +msgstr "Client key begint met" + +#: ../../mod/settings.php:642 +msgid "No name" +msgstr "Geen naam" + +#: ../../mod/settings.php:643 +msgid "Remove authorization" +msgstr "Autorisatie verwijderen" + +#: ../../mod/settings.php:654 +msgid "No feature settings configured" +msgstr "Geen plugin-instellingen ingesteld" + +#: ../../mod/settings.php:662 +msgid "Feature Settings" +msgstr "Plugin-instellingen" + +#: ../../mod/settings.php:685 +msgid "Account Settings" +msgstr "Account-instellingen" + +#: ../../mod/settings.php:686 +msgid "Password Settings" +msgstr "Wachtwoord-instellingen" + +#: ../../mod/settings.php:687 +msgid "New Password:" +msgstr "Nieuw wachtwoord:" + +#: ../../mod/settings.php:688 +msgid "Confirm:" +msgstr "Bevestigen:" + +#: ../../mod/settings.php:688 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" + +#: ../../mod/settings.php:690 ../../mod/settings.php:1023 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "Account verwijderen" + +#: ../../mod/settings.php:692 +msgid "Remove this account from this server including all its channels" +msgstr "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen" + +#: ../../mod/settings.php:693 ../../mod/settings.php:1104 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid." + +#: ../../mod/settings.php:709 +msgid "Off" +msgstr "Uit" + +#: ../../mod/settings.php:709 +msgid "On" +msgstr "Aan" + +#: ../../mod/settings.php:716 +msgid "Additional Features" +msgstr "Extra functies" + +#: ../../mod/settings.php:740 +msgid "Connector Settings" +msgstr "Instellingen externe koppelingen" + +#: ../../mod/settings.php:779 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: ../../mod/settings.php:782 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (experimenteel)" + +#: ../../mod/settings.php:785 ../../mod/admin.php:363 +msgid "mobile" +msgstr "mobiel" + +#: ../../mod/settings.php:821 +msgid "Display Settings" +msgstr "Weergave-instellingen" + +#: ../../mod/settings.php:827 +msgid "Display Theme:" +msgstr "Gebruik thema:" + +#: ../../mod/settings.php:828 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" + +#: ../../mod/settings.php:829 +msgid "Enable user zoom on mobile devices" +msgstr "Inzoomen op smartphones en tablets toestaan" + +#: ../../mod/settings.php:830 +msgid "Update browser every xx seconds" +msgstr "Ververs de webbrowser om de zoveel seconde" + +#: ../../mod/settings.php:830 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimaal 10 seconde, geen maximum" + +#: ../../mod/settings.php:831 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximaal aantal conversaties die per keer geladen worden:" + +#: ../../mod/settings.php:831 +msgid "Maximum of 100 items" +msgstr "Maximaal 100 conversaties" + +#: ../../mod/settings.php:832 +msgid "Don't show emoticons" +msgstr "Geen emoticons weergeven" + +#: ../../mod/settings.php:833 +msgid "Link post titles to source" +msgstr "Berichtkoppen naar originele locatie linken" + +#: ../../mod/settings.php:834 +msgid "System Page Layout Editor - (advanced)" +msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" + +#: ../../mod/settings.php:837 +msgid "Use blog/list mode on channel page" +msgstr "Gebruik blog/lijst-modus op kanaalpagina" + +#: ../../mod/settings.php:837 ../../mod/settings.php:838 +msgid "(comments displayed separately)" +msgstr "(reacties worden afzonderlijk weergeven)" + +#: ../../mod/settings.php:838 +msgid "Use blog/list mode on matrix page" +msgstr "Gebruik blog/lijst-modus op matrixpagina" + +#: ../../mod/settings.php:839 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" + +#: ../../mod/settings.php:839 ../../mod/settings.php:840 +msgid "click to expand content exceeding this height" +msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" + +#: ../../mod/settings.php:840 +msgid "Matrix page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op matrixpagina (in pixels)" + +#: ../../mod/settings.php:874 +msgid "Nobody except yourself" +msgstr "Niemand, behalve jezelf" + +#: ../../mod/settings.php:875 +msgid "Only those you specifically allow" +msgstr "Alleen connecties met uitdrukkelijke toestemming" + +#: ../../mod/settings.php:876 +msgid "Approved connections" +msgstr "Geaccepteerde connecties" + +#: ../../mod/settings.php:877 +msgid "Any connections" +msgstr "Alle connecties" + +#: ../../mod/settings.php:878 +msgid "Anybody on this website" +msgstr "Iedereen op deze hub" + +#: ../../mod/settings.php:879 +msgid "Anybody in this network" +msgstr "Iedereen in dit netwerk" + +#: ../../mod/settings.php:880 +msgid "Anybody authenticated" +msgstr "Geauthenticeerd" + +#: ../../mod/settings.php:881 +msgid "Anybody on the internet" +msgstr "Iedereen op het internet" + +#: ../../mod/settings.php:955 +msgid "Publish your default profile in the network directory" +msgstr "Publiceer je standaardprofiel in de kanalengids" + +#: ../../mod/settings.php:960 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" + +#: ../../mod/settings.php:964 ../../mod/profile_photo.php:365 +msgid "or" +msgstr "of" + +#: ../../mod/settings.php:969 +msgid "Your channel address is" +msgstr "Jouw kanaaladres is" + +#: ../../mod/settings.php:1014 +msgid "Channel Settings" +msgstr "Kanaal-instellingen" + +#: ../../mod/settings.php:1021 +msgid "Basic Settings" +msgstr "Basis-instellingen" + +#: ../../mod/settings.php:1024 +msgid "Your Timezone:" +msgstr "Jouw tijdzone:" + +#: ../../mod/settings.php:1025 +msgid "Default Post Location:" +msgstr "Standaardlocatie bericht:" + +#: ../../mod/settings.php:1025 +msgid "Geographical location to display on your posts" +msgstr "Geografische locatie die bij het bericht moet worden vermeld" + +#: ../../mod/settings.php:1026 +msgid "Use Browser Location:" +msgstr "Locatie van webbrowser gebruiken:" + +#: ../../mod/settings.php:1028 +msgid "Adult Content" +msgstr "Inhoud voor volwassenen" + +#: ../../mod/settings.php:1028 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" + +#: ../../mod/settings.php:1030 +msgid "Security and Privacy Settings" +msgstr "Veiligheids- en privacy-instellingen" + +#: ../../mod/settings.php:1032 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." + +#: ../../mod/settings.php:1034 +msgid "Hide my online presence" +msgstr "Verberg mijn aanwezigheid" + +#: ../../mod/settings.php:1034 +msgid "Prevents displaying in your profile that you are online" +msgstr "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent" + +#: ../../mod/settings.php:1036 +msgid "Simple Privacy Settings:" +msgstr "Eenvoudige privacy-instellingen:" + +#: ../../mod/settings.php:1037 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" + +#: ../../mod/settings.php:1038 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" + +#: ../../mod/settings.php:1039 +msgid "Private - default private, never open or public" +msgstr "Privé (standaard privé en nooit openbaar)" + +#: ../../mod/settings.php:1040 +msgid "Blocked - default blocked to/from everybody" +msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" + +#: ../../mod/settings.php:1042 +msgid "Allow others to tag your posts" +msgstr "Anderen toestaan om je berichten te taggen" + +#: ../../mod/settings.php:1042 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" + +#: ../../mod/settings.php:1044 +msgid "Advanced Privacy Settings" +msgstr "Geavanceerde privacy-instellingen" + +#: ../../mod/settings.php:1046 +msgid "Expire other channel content after this many days" +msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" + +#: ../../mod/settings.php:1046 +msgid "0 or blank prevents expiration" +msgstr "0 of leeg voorkomt het verlopen" + +#: ../../mod/settings.php:1047 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal connectieverzoeken per dag:" + +#: ../../mod/settings.php:1047 +msgid "May reduce spam activity" +msgstr "Kan eventuele spam verminderen" + +#: ../../mod/settings.php:1048 +msgid "Default Post Permissions" +msgstr "Standaard permissies voor nieuwe berichten" + +#: ../../mod/settings.php:1053 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" + +#: ../../mod/settings.php:1059 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: ../../mod/settings.php:1059 +msgid "Useful to reduce spamming" +msgstr "Kan eventuele spam verminderen" + +#: ../../mod/settings.php:1062 +msgid "Notification Settings" +msgstr "Notificatie-instellingen" + +#: ../../mod/settings.php:1063 +msgid "By default post a status message when:" +msgstr "Plaats automatisch een statusbericht wanneer:" + +#: ../../mod/settings.php:1064 +msgid "accepting a friend request" +msgstr "Een connectieverzoek wordt geaccepteerd" + +#: ../../mod/settings.php:1065 +msgid "joining a forum/community" +msgstr "Je lid wordt van een forum/groep" + +#: ../../mod/settings.php:1066 +msgid "making an interesting profile change" +msgstr "Er sprake is van een interessante profielwijziging" + +#: ../../mod/settings.php:1067 +msgid "Send a notification email when:" +msgstr "Verzend een notificatie per e-mail wanneer:" + +#: ../../mod/settings.php:1068 +msgid "You receive a connection request" +msgstr "Je een connectieverzoek ontvangt" + +#: ../../mod/settings.php:1069 +msgid "Your connections are confirmed" +msgstr "Jouw connecties zijn bevestigd" + +#: ../../mod/settings.php:1070 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op jouw kanaal heeft geschreven" + +#: ../../mod/settings.php:1071 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: ../../mod/settings.php:1072 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: ../../mod/settings.php:1073 +msgid "You receive a friend suggestion" +msgstr "Je een kanaalvoorstel ontvangt" + +#: ../../mod/settings.php:1074 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: ../../mod/settings.php:1075 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je bent in een bericht aangestoten/gepord/etc." + +#: ../../mod/settings.php:1078 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" + +#: ../../mod/settings.php:1080 +msgid "Unseen matrix activity" +msgstr "Niet bekeken matrix-activiteit" + +#: ../../mod/settings.php:1081 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" + +#: ../../mod/settings.php:1082 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" + +#: ../../mod/settings.php:1082 ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 +msgid "Recommended" +msgstr "Aanbevolen" + +#: ../../mod/settings.php:1083 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" + +#: ../../mod/settings.php:1084 +msgid "Events today" +msgstr "Gebeurtissen van vandaag" + +#: ../../mod/settings.php:1085 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" + +#: ../../mod/settings.php:1085 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" + +#: ../../mod/settings.php:1086 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" + +#: ../../mod/settings.php:1087 +msgid "System info messages" +msgstr "Systeemmededelingen" + +#: ../../mod/settings.php:1088 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" + +#: ../../mod/settings.php:1089 +msgid "New connections" +msgstr "Nieuwe connecties" + +#: ../../mod/settings.php:1090 +msgid "System Registrations" +msgstr "Nieuwe accountregistraties op deze hub" + +#: ../../mod/settings.php:1091 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" + +#: ../../mod/settings.php:1093 +msgid "Notify me of events this many days in advance" +msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" + +#: ../../mod/settings.php:1093 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" + +#: ../../mod/settings.php:1095 +msgid "Advanced Account/Page Type Settings" +msgstr "Instellingen geavanceerd account/paginatype" + +#: ../../mod/settings.php:1096 +msgid "Change the behaviour of this account for special situations" +msgstr "Verander het gedrag van dit account voor speciale situaties" + +#: ../../mod/settings.php:1099 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" + +#: ../../mod/settings.php:1100 +msgid "Miscellaneous Settings" +msgstr "Diverse instellingen" + +#: ../../mod/settings.php:1102 +msgid "Personal menu to display in your channel pages" +msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" + +#: ../../mod/settings.php:1103 +msgid "Remove this channel" +msgstr "Verwijder dit kanaal" + +#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." + +#: ../../mod/connections.php:51 ../../mod/connedit.php:86 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." + +#: ../../mod/connections.php:94 ../../mod/connedit.php:140 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." + +#: ../../mod/connections.php:96 ../../mod/connedit.php:142 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." + +#: ../../mod/connections.php:191 ../../mod/connections.php:292 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: ../../mod/connections.php:196 ../../mod/connections.php:299 +msgid "Ignored" +msgstr "Genegeerd" + +#: ../../mod/connections.php:201 ../../mod/connections.php:313 +msgid "Hidden" +msgstr "Verborgen" + +#: ../../mod/connections.php:206 ../../mod/connections.php:306 +msgid "Archived" +msgstr "Gearchiveerd" + +#: ../../mod/connections.php:230 ../../mod/connections.php:245 +msgid "All" +msgstr "Alles" + +#: ../../mod/connections.php:270 +msgid "Suggest new connections" +msgstr "Nieuwe kanalen voorstellen" + +#: ../../mod/connections.php:273 +msgid "New Connections" +msgstr "Nieuwe connecties" + +#: ../../mod/connections.php:276 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" + +#: ../../mod/connections.php:282 +msgid "Show all connections" +msgstr "Toon alle connecties" + +#: ../../mod/connections.php:285 +msgid "Unblocked" +msgstr "Niet geblokkeerd" + +#: ../../mod/connections.php:288 +msgid "Only show unblocked connections" +msgstr "Toon alleen niet geblokkeerde connecties" + +#: ../../mod/connections.php:295 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" + +#: ../../mod/connections.php:302 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" + +#: ../../mod/connections.php:309 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" + +#: ../../mod/connections.php:316 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" + +#: ../../mod/connections.php:371 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:372 +msgid "Edit connection" +msgstr "Connectie bewerken" + +#: ../../mod/connections.php:410 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" + +#: ../../mod/connections.php:411 +msgid "Finding: " +msgstr "Zoeken naar: " + +#: ../../mod/manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." + +#: ../../mod/manage.php:146 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" + +#: ../../mod/manage.php:151 +msgid "Current Channel" +msgstr "Huidig kanaal" + +#: ../../mod/manage.php:153 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." + +#: ../../mod/manage.php:154 +msgid "Default Channel" +msgstr "Standaardkanaal" + +#: ../../mod/manage.php:155 +msgid "Make Default" +msgstr "Als standaard instellen" + +#: ../../mod/manage.php:158 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" + +#: ../../mod/manage.php:159 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" + +#: ../../mod/connedit.php:189 +msgid "is now connected to" +msgstr "is nu verbonden met" + +#: ../../mod/connedit.php:310 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." + +#: ../../mod/connedit.php:324 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" + +#: ../../mod/connedit.php:331 +msgid "Channel has been unblocked" +msgstr "Kanaal is gedeblokkeerd" + +#: ../../mod/connedit.php:332 +msgid "Channel has been blocked" +msgstr "Kanaal is geblokkeerd" + +#: ../../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 "Niet in staat om de parameters van connecties in te stellen." + +#: ../../mod/connedit.php:343 +msgid "Channel has been unignored" +msgstr "Kanaal wordt niet meer genegeerd" + +#: ../../mod/connedit.php:344 +msgid "Channel has been ignored" +msgstr "Kanaal wordt genegeerd" + +#: ../../mod/connedit.php:355 +msgid "Channel has been unarchived" +msgstr "Kanaal is niet meer gearchiveerd" + +#: ../../mod/connedit.php:356 +msgid "Channel has been archived" +msgstr "Kanaal is gearchiveerd" + +#: ../../mod/connedit.php:367 +msgid "Channel has been unhidden" +msgstr "Kanaal is niet meer verborgen" + +#: ../../mod/connedit.php:368 +msgid "Channel has been hidden" +msgstr "Kanaal is verborgen" + +#: ../../mod/connedit.php:383 +msgid "Channel has been approved" +msgstr "Connectie/kanaal is geaccepteerd" + +#: ../../mod/connedit.php:384 +msgid "Channel has been unapproved" +msgstr "Connectie/kanaal is afgewezen" + +#: ../../mod/connedit.php:412 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" + +#: ../../mod/connedit.php:432 +#, php-format +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" + +#: ../../mod/connedit.php:436 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" + +#: ../../mod/connedit.php:439 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" + +#: ../../mod/connedit.php:443 +msgid "Recent Activity" +msgstr "Recente activiteit" + +#: ../../mod/connedit.php:446 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:595 +#: ../../mod/admin.php:732 +msgid "Unblock" +msgstr "Deblokkeren" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:595 +#: ../../mod/admin.php:731 +msgid "Block" +msgstr "Blokkeren" + +#: ../../mod/connedit.php:453 +msgid "Block or Unblock this connection" +msgstr "Deze connectie blokkeren of deblokkeren" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:596 +msgid "Unignore" +msgstr "Niet meer negeren" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:596 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Negeren" + +#: ../../mod/connedit.php:460 +msgid "Ignore or Unignore this connection" +msgstr "Deze connectie negeren of niet meer negeren" + +#: ../../mod/connedit.php:463 +msgid "Unarchive" +msgstr "Niet meer archiveren" + +#: ../../mod/connedit.php:463 +msgid "Archive" +msgstr "Archiveren" + +#: ../../mod/connedit.php:466 +msgid "Archive or Unarchive this connection" +msgstr "Deze connectie archiveren of niet meer archiveren" + +#: ../../mod/connedit.php:469 +msgid "Unhide" +msgstr "Niet meer verbergen" + +#: ../../mod/connedit.php:469 +msgid "Hide" +msgstr "Verbergen" + +#: ../../mod/connedit.php:472 +msgid "Hide or Unhide this connection" +msgstr "Deze connectie verbergen of niet meer verbergen" + +#: ../../mod/connedit.php:479 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" + +#: ../../mod/connedit.php:523 ../../mod/connedit.php:553 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" + +#: ../../mod/connedit.php:523 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" + +#: ../../mod/connedit.php:539 +#, php-format +msgid "Connections: settings for %s" +msgstr "Connecties: instellingen voor %s" + +#: ../../mod/connedit.php:540 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" + +#: ../../mod/connedit.php:544 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen." + +#: ../../mod/connedit.php:546 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" + +#: ../../mod/connedit.php:552 +msgid "inherited" +msgstr "geërfd" + +#: ../../mod/connedit.php:554 +msgid "Connection has no individual permissions!" +msgstr "Connectie heeft geen individuele permissies!" + +#: ../../mod/connedit.php:555 +msgid "" +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." + +#: ../../mod/connedit.php:557 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" + +#: ../../mod/connedit.php:558 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." + +#: ../../mod/connedit.php:559 +msgid "Contact Information / Notes" +msgstr "Informatie/aantekeningen over connectie" + +#: ../../mod/connedit.php:560 +msgid "Edit contact notes" +msgstr "Bewerk aantekeningen over contact" + +#: ../../mod/connedit.php:562 +msgid "Their Settings" +msgstr "Hun instellingen" + +#: ../../mod/connedit.php:563 +msgid "My Settings" +msgstr "Mijn instellingen" + +#: ../../mod/connedit.php:565 +msgid "Clear/Disable Automatic Permissions" +msgstr "Verwijderen/uitschakelen automatische permissies" + +#: ../../mod/connedit.php:566 +msgid "Forum Members" +msgstr "Forumleden" + +#: ../../mod/connedit.php:567 +msgid "Soapbox" +msgstr "Zeepkist" + +#: ../../mod/connedit.php:568 +msgid "Full Sharing (typical social network permissions)" +msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" + +#: ../../mod/connedit.php:569 +msgid "Cautious Sharing " +msgstr "Voorzichtig delen" + +#: ../../mod/connedit.php:570 +msgid "Follow Only" +msgstr "Alleen volgen" + +#: ../../mod/connedit.php:571 +msgid "Individual Permissions" +msgstr "Individuele permissies" + +#: ../../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 "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." + +#: ../../mod/connedit.php:573 +msgid "Advanced Permissions" +msgstr "Geavanceerde permissies" + +#: ../../mod/connedit.php:574 +msgid "Simple Permissions (select one and submit)" +msgstr "Eenvoudige permissies (selecteer er één en opslaan)" + +#: ../../mod/connedit.php:578 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "Profiel van %s bezoeken - %s" + +#: ../../mod/connedit.php:579 +msgid "Block/Unblock contact" +msgstr "Connectie blokkeren/deblokkeren" + +#: ../../mod/connedit.php:580 +msgid "Ignore contact" +msgstr "Connectie negeren" + +#: ../../mod/connedit.php:581 +msgid "Repair URL settings" +msgstr "URL-instellingen repareren" + +#: ../../mod/connedit.php:582 +msgid "View conversations" +msgstr "Conversaties weergeven" + +#: ../../mod/connedit.php:584 +msgid "Delete contact" +msgstr "Connectie verwijderen" + +#: ../../mod/connedit.php:587 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: ../../mod/connedit.php:589 +msgid "Update public posts" +msgstr "Openbare berichten updaten" + +#: ../../mod/connedit.php:591 +msgid "Update now" +msgstr "Nu updaten" + +#: ../../mod/connedit.php:597 +msgid "Currently blocked" +msgstr "Momenteel geblokkeerd" + +#: ../../mod/connedit.php:598 +msgid "Currently ignored" +msgstr "Momenteel genegeerd" + +#: ../../mod/connedit.php:599 +msgid "Currently archived" +msgstr "Momenteel gearchiveerd" + +#: ../../mod/connedit.php:600 +msgid "Currently pending" +msgstr "Moeten nog geaccepteerd of afgewezen worden" + +#: ../../mod/connedit.php:601 +msgid "Hide this contact from others" +msgstr "Verberg deze connectie voor anderen" + +#: ../../mod/connedit.php:601 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." + +#: ../../mod/mail.php:136 +msgid "Message deleted." +msgstr "Bericht verwijderd." + +#: ../../mod/mail.php:153 +msgid "Message recalled." +msgstr "Bericht ingetrokken." + +#: ../../mod/mail.php:222 +msgid "Send Private Message" +msgstr "Privébericht versturen" + +#: ../../mod/mail.php:223 ../../mod/mail.php:340 +msgid "To:" +msgstr "Aan:" + +#: ../../mod/mail.php:228 ../../mod/mail.php:342 +msgid "Subject:" +msgstr "Onderwerp:" + +#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: ../../mod/mail.php:239 +msgid "Send" +msgstr "Verzenden" + +#: ../../mod/mail.php:266 +msgid "Message not found." +msgstr "Bericht niet gevonden" + +#: ../../mod/mail.php:309 +msgid "Delete message" +msgstr "Bericht verwijderen" + +#: ../../mod/mail.php:310 +msgid "Recall message" +msgstr "Bericht intrekken" + +#: ../../mod/mail.php:312 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." + +#: ../../mod/mail.php:329 +msgid "Private Conversation" +msgstr "Privéconversatie" + +#: ../../mod/mail.php:333 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "Verwijder conversatie" + +#: ../../mod/mail.php:335 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." + +#: ../../mod/mail.php:339 +msgid "Send Reply" +msgstr "Antwoord versturen" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" + +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" + +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" + +#: ../../mod/acl.php:245 +msgid "network" +msgstr "netwerk" #: ../../mod/blocks.php:99 msgid "Block Name" msgstr "Bloknaam" +#: ../../mod/editblock.php:115 +msgid "Edit Block" +msgstr "Blok bewerken" + +#: ../../mod/editblock.php:125 +msgid "Delete block?" +msgstr "Blok verwijderen" + +#: ../../mod/editblock.php:183 +msgid "Delete Block" +msgstr "Blok verwijderen" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulenaam:" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" +msgstr "Lay-out-hulp" + +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" +msgstr "Lay-out bewerken" + +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" +msgstr "Lay-out verwijderen?" + +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" +msgstr "Lay-out verwijderen" + +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" +msgstr "RedMatrix - "The Network"" + +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: ../../mod/editwebpage.php:140 +msgid "Edit Webpage" +msgstr "Webpagina bewerken" + +#: ../../mod/editwebpage.php:150 +msgid "Delete webpage?" +msgstr "Webpagina verwijderen?" + +#: ../../mod/editwebpage.php:215 +msgid "Delete Webpage" +msgstr "Webpagina verwijderen" + +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "Webpagina" + +#: ../../mod/impel.php:38 +msgid "block" +msgstr "blok" + +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "lay-out" + +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" + +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " + +#: ../../mod/profile_photo.php:161 +msgid "Image resize failed." +msgstr "Afbeelding kon niet van grootte veranderd worden." + +#: ../../mod/profile_photo.php:205 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." + +#: ../../mod/profile_photo.php:232 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" + +#: ../../mod/profile_photo.php:241 +msgid "Unable to process image." +msgstr "Niet in staat om afbeelding te verwerken." + +#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 +msgid "Photo not available." +msgstr "Foto niet beschikbaar." + +#: ../../mod/profile_photo.php:358 +msgid "Upload File:" +msgstr "Bestand uploaden:" + +#: ../../mod/profile_photo.php:359 +msgid "Select a profile:" +msgstr "Kies een profiel:" + +#: ../../mod/profile_photo.php:360 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" + +#: ../../mod/profile_photo.php:365 +msgid "skip this step" +msgstr "sla deze stap over" + +#: ../../mod/profile_photo.php:365 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit jouw fotoalbums" + +#: ../../mod/profile_photo.php:381 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" + +#: ../../mod/profile_photo.php:382 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." + +#: ../../mod/profile_photo.php:384 +msgid "Done Editing" +msgstr "Klaar met bewerken" + +#: ../../mod/profile_photo.php:427 +msgid "Image uploaded successfully." +msgstr "Uploaden afbeelding geslaagd" + +#: ../../mod/profile_photo.php:429 +msgid "Image upload failed." +msgstr "Uploaden afbeelding mislukt" + +#: ../../mod/profile_photo.php:438 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleinen [%s] van afbeelding mislukt." + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd." + +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." + +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ongeldig verzoek" + +#: ../../mod/like.php:119 +msgid "thing" +msgstr "ding" + +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." + +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" + +#: ../../mod/like.php:422 +msgid "Action completed." +msgstr "Actie voltooid" + +#: ../../mod/like.php:423 +msgid "Thank you." +msgstr "Bedankt" + +#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 +msgid "Help:" +msgstr "Hulp:" + +#: ../../mod/help.php:67 ../../index.php:238 +msgid "Not Found" +msgstr "Niet gevonden" + +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Ding bijgewerkt" + +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" + +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Ding toegevoegd" + +#: ../../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 "Ding weergeven" + +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "Item niet gevonden" + +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Ding bewerken" + +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Kies een profiel" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Plaats een bericht" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." + +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" + +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" + +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL van foto van ding (optioneel)" + +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contact niet gevonden" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kanaalvoorstel verzonden." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kanalen voorstellen" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stel een kanaal voor aan %s" + +#: ../../mod/filestorage.php:76 +msgid "Permission Denied." +msgstr "Toegang geweigerd" + +#: ../../mod/filestorage.php:92 +msgid "File not found." +msgstr "Bestand niet gevonden." + +#: ../../mod/filestorage.php:135 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" + +#: ../../mod/filestorage.php:144 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" + +#: ../../mod/filestorage.php:145 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" + +#: ../../mod/filestorage.php:146 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " + +#: ../../mod/filestorage.php:148 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" + +#: ../../mod/filestorage.php:149 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" + +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Ga verder" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." + +#: ../../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 "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" + +#: ../../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 "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- kies map -" + +#: ../../mod/locs.php:19 ../../mod/locs.php:46 +msgid "Location not found." +msgstr "Locatie niet gevonden." + +#: ../../mod/locs.php:50 +msgid "Primary location cannot be removed." +msgstr "Primaire locatie kan niet worden verwijderd." + +#: ../../mod/locs.php:82 +msgid "No locations found." +msgstr "Geen locaties gevonden." + +#: ../../mod/locs.php:95 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" + +#: ../../mod/locs.php:96 +msgid "Location (address)" +msgstr "Locatie (adres)" + +#: ../../mod/locs.php:97 +msgid "Primary Location" +msgstr "Primaire locatie" + +#: ../../mod/locs.php:98 +msgid "Drop location" +msgstr "Locatie verwijderen" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanaal toegevoegd." + +#: ../../mod/import.php:25 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." + +#: ../../mod/import.php:51 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" + +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" + +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" + +#: ../../mod/import.php:106 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." + +#: ../../mod/import.php:127 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." + +#: ../../mod/import.php:147 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." + +#: ../../mod/import.php:157 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." + +#: ../../mod/import.php:475 +msgid "Import completed." +msgstr "Import voltooid." + +#: ../../mod/import.php:487 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." + +#: ../../mod/import.php:492 +msgid "Import Channel" +msgstr "Kanaal importeren" + +#: ../../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 "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken. Alleen de identiteit en de connecties zullen geïmporteerd worden. Het importeren van inhoud is nog niet beschikbaar." + +#: ../../mod/import.php:494 +msgid "File to Upload" +msgstr "Bestand om te uploaden" + +#: ../../mod/import.php:495 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" + +#: ../../mod/import.php:496 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" + +#: ../../mod/import.php:497 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" + +#: ../../mod/import.php:498 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" + +#: ../../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 "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." + +#: ../../mod/import.php:500 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" + +#: ../../mod/import.php:501 +msgid "Import existing posts if possible" +msgstr "Importeer bestaande berichten (wanneer mogelijk)" + +#: ../../mod/item.php:159 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " + +#: ../../mod/item.php:418 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" + +#: ../../mod/item.php:460 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." + +#: ../../mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." + +#: ../../mod/item.php:1120 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." + +#: ../../mod/item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." + +#: ../../mod/layouts.php:110 +msgid "Help with this feature" +msgstr "Hulp voor dit onderdeel" + +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "Naam lay-out" + +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" + #: ../../mod/setup.php:166 msgid "Red Matrix Server - Setup" msgstr "RedMatrix Server - Setup" @@ -4095,10 +6488,6 @@ msgstr "Please see the file \"install/INSTALL.txt\"." msgid "System check" msgstr "System check" -#: ../../mod/setup.php:265 ../../mod/events.php:445 ../../mod/photos.php:868 -msgid "Next" -msgstr "Volgende" - #: ../../mod/setup.php:266 msgid "Check again" msgstr "Check again" @@ -4448,2240 +6837,17 @@ msgid "" "poller." msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Naam is vereist" - -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" - -#: ../../mod/settings.php:213 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." - -#: ../../mod/settings.php:217 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." - -#: ../../mod/settings.php:231 -msgid "Password changed." -msgstr "Wachtwoord veranderd." - -#: ../../mod/settings.php:233 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." - -#: ../../mod/settings.php:247 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." - -#: ../../mod/settings.php:250 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." - -#: ../../mod/settings.php:259 -msgid "System failure storing new email. Please try again." -msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." - -#: ../../mod/settings.php:495 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." - -#: ../../mod/settings.php:564 ../../mod/settings.php:590 -#: ../../mod/settings.php:626 -msgid "Add application" -msgstr "Applicatie toevoegen" - -#: ../../mod/settings.php:567 -msgid "Name of application" -msgstr "Naam van applicatie" - -#: ../../mod/settings.php:568 ../../mod/settings.php:594 -msgid "Consumer Key" -msgstr "Consumer key" - -#: ../../mod/settings.php:568 ../../mod/settings.php:569 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" - -#: ../../mod/settings.php:569 ../../mod/settings.php:595 -msgid "Consumer Secret" -msgstr "Consumer secret" - -#: ../../mod/settings.php:570 ../../mod/settings.php:596 -msgid "Redirect" -msgstr "Redirect/doorverwijzing" - -#: ../../mod/settings.php:570 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" - -#: ../../mod/settings.php:571 ../../mod/settings.php:597 -msgid "Icon url" -msgstr "URL van pictogram" - -#: ../../mod/settings.php:571 -msgid "Optional" -msgstr "Optioneel" - -#: ../../mod/settings.php:582 -msgid "You can't edit this application." -msgstr "Je kan deze applicatie niet bewerken" - -#: ../../mod/settings.php:625 -msgid "Connected Apps" -msgstr "Verbonden applicaties" - -#: ../../mod/settings.php:629 -msgid "Client key starts with" -msgstr "Client key begint met" - -#: ../../mod/settings.php:630 -msgid "No name" -msgstr "Geen naam" - -#: ../../mod/settings.php:631 -msgid "Remove authorization" -msgstr "Autorisatie verwijderen" - -#: ../../mod/settings.php:642 -msgid "No feature settings configured" -msgstr "Geen plugin-instellingen ingesteld" - -#: ../../mod/settings.php:650 -msgid "Feature Settings" -msgstr "Plugin-instellingen" - -#: ../../mod/settings.php:673 -msgid "Account Settings" -msgstr "Account-instellingen" - -#: ../../mod/settings.php:674 -msgid "Password Settings" -msgstr "Wachtwoord-instellingen" - -#: ../../mod/settings.php:675 -msgid "New Password:" -msgstr "Nieuw wachtwoord:" - -#: ../../mod/settings.php:676 -msgid "Confirm:" -msgstr "Bevestigen:" - -#: ../../mod/settings.php:676 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" - -#: ../../mod/settings.php:678 ../../mod/settings.php:1013 -msgid "Email Address:" -msgstr "E-mailadres:" - -#: ../../mod/settings.php:679 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Account verwijderen" - -#: ../../mod/settings.php:680 -msgid "Remove this account from this server including all its channels" -msgstr "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen" - -#: ../../mod/settings.php:681 ../../mod/settings.php:1095 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid." - -#: ../../mod/settings.php:697 -msgid "Off" -msgstr "Uit" - -#: ../../mod/settings.php:697 -msgid "On" -msgstr "Aan" - -#: ../../mod/settings.php:704 -msgid "Additional Features" -msgstr "Extra functies" - -#: ../../mod/settings.php:729 -msgid "Connector Settings" -msgstr "Instellingen externe koppelingen" - -#: ../../mod/settings.php:768 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" - -#: ../../mod/settings.php:771 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimenteel)" - -#: ../../mod/settings.php:774 ../../mod/admin.php:363 -msgid "mobile" -msgstr "mobiel" - -#: ../../mod/settings.php:810 -msgid "Display Settings" -msgstr "Weergave-instellingen" - -#: ../../mod/settings.php:816 -msgid "Display Theme:" -msgstr "Gebruik thema:" - -#: ../../mod/settings.php:817 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" - -#: ../../mod/settings.php:818 -msgid "Enable user zoom on mobile devices" -msgstr "Inzoomen op smartphones en tablets toestaan" - -#: ../../mod/settings.php:819 -msgid "Update browser every xx seconds" -msgstr "Ververs de webbrowser om de zoveel seconde" - -#: ../../mod/settings.php:819 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimaal 10 seconde, geen maximum" - -#: ../../mod/settings.php:820 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximaal aantal conversaties die per keer geladen worden:" - -#: ../../mod/settings.php:820 -msgid "Maximum of 100 items" -msgstr "Maximaal 100 conversaties" - -#: ../../mod/settings.php:821 -msgid "Don't show emoticons" -msgstr "Geen emoticons weergeven" - -#: ../../mod/settings.php:822 -msgid "Link post titles to source" -msgstr "Berichtkoppen naar originele locatie linken" - -#: ../../mod/settings.php:823 -msgid "System Page Layout Editor - (advanced)" -msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" - -#: ../../mod/settings.php:826 -msgid "Use blog/list mode on channel page" -msgstr "Gebruik blog/lijst-modus op kanaalpagina" - -#: ../../mod/settings.php:826 ../../mod/settings.php:827 -msgid "(comments displayed separately)" -msgstr "(reacties worden afzonderlijk weergeven)" - -#: ../../mod/settings.php:827 -msgid "Use blog/list mode on matrix page" -msgstr "Gebruik blog/lijst-modus op matrixpagina" - -#: ../../mod/settings.php:828 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" - -#: ../../mod/settings.php:828 ../../mod/settings.php:829 -msgid "click to expand content exceeding this height" -msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" - -#: ../../mod/settings.php:829 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op matrixpagina (in pixels)" - -#: ../../mod/settings.php:863 -msgid "Nobody except yourself" -msgstr "Niemand, behalve jezelf" - -#: ../../mod/settings.php:864 -msgid "Only those you specifically allow" -msgstr "Alleen connecties met uitdrukkelijke toestemming" - -#: ../../mod/settings.php:865 -msgid "Approved connections" -msgstr "Geaccepteerde connecties" - -#: ../../mod/settings.php:866 -msgid "Any connections" -msgstr "Alle connecties" - -#: ../../mod/settings.php:867 -msgid "Anybody on this website" -msgstr "Iedereen op deze hub" - -#: ../../mod/settings.php:868 -msgid "Anybody in this network" -msgstr "Iedereen in dit netwerk" - -#: ../../mod/settings.php:869 -msgid "Anybody authenticated" -msgstr "Geauthenticeerd" - -#: ../../mod/settings.php:870 -msgid "Anybody on the internet" -msgstr "Iedereen op het internet" - -#: ../../mod/settings.php:944 -msgid "Publish your default profile in the network directory" -msgstr "Publiceer je standaardprofiel in de kanalengids" - -#: ../../mod/settings.php:949 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" - -#: ../../mod/settings.php:953 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "of" - -#: ../../mod/settings.php:958 -msgid "Your channel address is" -msgstr "Jouw kanaaladres is" - -#: ../../mod/settings.php:1002 -msgid "Channel Settings" -msgstr "Kanaal-instellingen" - -#: ../../mod/settings.php:1011 -msgid "Basic Settings" -msgstr "Basis-instellingen" - -#: ../../mod/settings.php:1014 -msgid "Your Timezone:" -msgstr "Jouw tijdzone:" - -#: ../../mod/settings.php:1015 -msgid "Default Post Location:" -msgstr "Standaardlocatie bericht:" - -#: ../../mod/settings.php:1015 -msgid "Geographical location to display on your posts" -msgstr "Geografische locatie die bij het bericht moet worden vermeld" - -#: ../../mod/settings.php:1016 -msgid "Use Browser Location:" -msgstr "Locatie van webbrowser gebruiken:" - -#: ../../mod/settings.php:1018 -msgid "Adult Content" -msgstr "Inhoud voor volwassenen" - -#: ../../mod/settings.php:1018 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de hashtag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" - -#: ../../mod/settings.php:1020 -msgid "Security and Privacy Settings" -msgstr "Veiligheids- en privacy-instellingen" - -#: ../../mod/settings.php:1022 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." - -#: ../../mod/settings.php:1024 -msgid "Hide my online presence" -msgstr "Verberg mijn aanwezigheid" - -#: ../../mod/settings.php:1024 -msgid "Prevents displaying in your profile that you are online" -msgstr "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent" - -#: ../../mod/settings.php:1026 -msgid "Simple Privacy Settings:" -msgstr "Eenvoudige privacy-instellingen:" - -#: ../../mod/settings.php:1027 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" - -#: ../../mod/settings.php:1028 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" - -#: ../../mod/settings.php:1029 -msgid "Private - default private, never open or public" -msgstr "Privé (standaard privé en nooit openbaar)" - -#: ../../mod/settings.php:1030 -msgid "Blocked - default blocked to/from everybody" -msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" - -#: ../../mod/settings.php:1032 -msgid "Allow others to tag your posts" -msgstr "Anderen toestaan om je berichten te labelen" - -#: ../../mod/settings.php:1032 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" - -#: ../../mod/settings.php:1034 -msgid "Advanced Privacy Settings" -msgstr "Geavanceerde privacy-instellingen" - -#: ../../mod/settings.php:1036 -msgid "Expire other channel content after this many days" -msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" - -#: ../../mod/settings.php:1036 -msgid "0 or blank prevents expiration" -msgstr "0 of leeg voorkomt het verlopen" - -#: ../../mod/settings.php:1037 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal connectieverzoeken per dag:" - -#: ../../mod/settings.php:1037 -msgid "May reduce spam activity" -msgstr "Kan eventuele spam verminderen" - -#: ../../mod/settings.php:1038 -msgid "Default Post Permissions" -msgstr "Standaard permissies voor nieuwe berichten" - -#: ../../mod/settings.php:1043 -msgid "Channel permissions category:" -msgstr "Kanaaltype en -permissies:" - -#: ../../mod/settings.php:1051 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" - -#: ../../mod/settings.php:1051 -msgid "Useful to reduce spamming" -msgstr "Kan eventuele spam verminderen" - -#: ../../mod/settings.php:1054 -msgid "Notification Settings" -msgstr "Notificatie-instellingen" - -#: ../../mod/settings.php:1055 -msgid "By default post a status message when:" -msgstr "Plaats automatisch een statusbericht wanneer:" - -#: ../../mod/settings.php:1056 -msgid "accepting a friend request" -msgstr "Een connectieverzoek wordt geaccepteerd" - -#: ../../mod/settings.php:1057 -msgid "joining a forum/community" -msgstr "Je lid wordt van een forum/groep" - -#: ../../mod/settings.php:1058 -msgid "making an interesting profile change" -msgstr "Er sprake is van een interessante profielwijziging" - -#: ../../mod/settings.php:1059 -msgid "Send a notification email when:" -msgstr "Verzend een notificatie per e-mail wanneer:" - -#: ../../mod/settings.php:1060 -msgid "You receive a connection request" -msgstr "Je een connectieverzoek ontvangt" - -#: ../../mod/settings.php:1061 -msgid "Your connections are confirmed" -msgstr "Jouw connecties zijn bevestigd" - -#: ../../mod/settings.php:1062 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op jouw kanaal heeft geschreven" - -#: ../../mod/settings.php:1063 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" - -#: ../../mod/settings.php:1064 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: ../../mod/settings.php:1065 -msgid "You receive a friend suggestion" -msgstr "Je een kanaalvoorstel ontvangt" - -#: ../../mod/settings.php:1066 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" - -#: ../../mod/settings.php:1067 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je bent in een bericht aangestoten/gepord/etc." - -#: ../../mod/settings.php:1070 -msgid "Show visual notifications including:" -msgstr "Toon de volgende zichtbare notificaties:" - -#: ../../mod/settings.php:1072 -msgid "Unseen matrix activity" -msgstr "Niet bekeken matrix-activiteit" - -#: ../../mod/settings.php:1073 -msgid "Unseen channel activity" -msgstr "Niet bekeken kanaal-activiteit" - -#: ../../mod/settings.php:1074 -msgid "Unseen private messages" -msgstr "Niet bekeken privéberichten" - -#: ../../mod/settings.php:1074 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -msgid "Recommended" -msgstr "Aanbevolen" - -#: ../../mod/settings.php:1075 -msgid "Upcoming events" -msgstr "Aankomende gebeurtenissen" - -#: ../../mod/settings.php:1076 -msgid "Events today" -msgstr "Gebeurtissen van vandaag" - -#: ../../mod/settings.php:1077 -msgid "Upcoming birthdays" -msgstr "Aankomende verjaardagen" - -#: ../../mod/settings.php:1077 -msgid "Not available in all themes" -msgstr "Niet in alle thema's beschikbaar" - -#: ../../mod/settings.php:1078 -msgid "System (personal) notifications" -msgstr "(Persoonlijke) systeemnotificaties" - -#: ../../mod/settings.php:1079 -msgid "System info messages" -msgstr "Systeemmededelingen" - -#: ../../mod/settings.php:1080 -msgid "System critical alerts" -msgstr "Kritische systeemwaarschuwingen" - -#: ../../mod/settings.php:1081 -msgid "New connections" -msgstr "Nieuwe connecties" - -#: ../../mod/settings.php:1082 -msgid "System Registrations" -msgstr "Nieuwe accountregistraties op deze hub" - -#: ../../mod/settings.php:1084 -msgid "Notify me of events this many days in advance" -msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" - -#: ../../mod/settings.php:1084 -msgid "Must be greater than 0" -msgstr "Moet hoger dan 0 zijn" - -#: ../../mod/settings.php:1086 -msgid "Advanced Account/Page Type Settings" -msgstr "Instellingen geavanceerd account/paginatype" - -#: ../../mod/settings.php:1087 -msgid "Change the behaviour of this account for special situations" -msgstr "Verander het gedrag van dit account voor speciale situaties" - -#: ../../mod/settings.php:1090 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" - -#: ../../mod/settings.php:1091 -msgid "Miscellaneous Settings" -msgstr "Diverse instellingen" - -#: ../../mod/settings.php:1093 -msgid "Personal menu to display in your channel pages" -msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" - -#: ../../mod/settings.php:1094 -msgid "Remove this channel" -msgstr "Verwijder dit kanaal" - -#: ../../mod/events.php:81 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" - -#: ../../mod/events.php:86 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." - -#: ../../mod/events.php:100 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" - -#: ../../mod/events.php:369 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:391 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: ../../mod/events.php:443 -msgid "Create New Event" -msgstr "Nieuwe gebeurtenis aanmaken" - -#: ../../mod/events.php:444 ../../mod/photos.php:859 -msgid "Previous" -msgstr "Vorige" - -#: ../../mod/events.php:446 -msgid "Export" -msgstr "Exporteren" - -#: ../../mod/events.php:571 -msgid "Event details" -msgstr "Details van gebeurtenis" - -#: ../../mod/events.php:572 -msgid "Starting date and Title are required." -msgstr "Begintijd en titel zijn vereist." - -#: ../../mod/events.php:574 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" - -#: ../../mod/events.php:576 -msgid "Event Starts:" -msgstr "Begin gebeurtenis:" - -#: ../../mod/events.php:576 ../../mod/events.php:592 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "Vereist" - -#: ../../mod/events.php:582 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/-tijd is niet bekend of niet relevant" - -#: ../../mod/events.php:584 -msgid "Event Finishes:" -msgstr "Einde gebeurtenis:" - -#: ../../mod/events.php:586 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" - -#: ../../mod/events.php:588 -msgid "Description:" -msgstr "Omschrijving:" - -#: ../../mod/events.php:592 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:594 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Openbare hubs" - -#: ../../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 "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL hub" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Toegangstype" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Registratiebeleid" - -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:428 -msgid "Location" -msgstr "Locatie" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Omschrijving" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Chatkanaal verwijderen" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ik ben online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Naam chatkanaal" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" - -#: ../../mod/siteinfo.php:92 -#, php-format -msgid "Version %s" -msgstr "Versie %s" - -#: ../../mod/siteinfo.php:113 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plug-ins/add-ons/apps:" - -#: ../../mod/siteinfo.php:126 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plug-ins/add-ons/apps" - -#: ../../mod/siteinfo.php:134 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:135 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy." - -#: ../../mod/siteinfo.php:139 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" - -#: ../../mod/siteinfo.php:140 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." - -#: ../../mod/siteinfo.php:141 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" - -#: ../../mod/siteinfo.php:144 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" - -#: ../../mod/siteinfo.php:146 -msgid "Site Administrators" -msgstr "Hubbeheerders: " - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Afwezig" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Inloggen." - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Ga verder" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" - -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." - -#: ../../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 "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" - -#: ../../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 "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" - -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden." - -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd." - -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Geen kanaal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Veel voorkomende connecties" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." - -#: ../../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 "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Het foutbericht was:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authenticeren" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." - -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ongeldig verzoek" - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "ding" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" - -#: ../../mod/like.php:422 -msgid "Action completed." -msgstr "Actie voltooid" - -#: ../../mod/like.php:423 -msgid "Thank you." -msgstr "Bedankt" - -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." - -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Welkom %s. Authenticatie op afstand geslaagd." - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." - -#: ../../mod/connections.php:51 ../../mod/connedit.php:86 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." - -#: ../../mod/connections.php:94 ../../mod/connedit.php:140 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." - -#: ../../mod/connections.php:96 ../../mod/connedit.php:142 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." - -#: ../../mod/connections.php:191 ../../mod/connections.php:292 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: ../../mod/connections.php:196 ../../mod/connections.php:299 -msgid "Ignored" -msgstr "Genegeerd" - -#: ../../mod/connections.php:201 ../../mod/connections.php:313 -msgid "Hidden" -msgstr "Verborgen" - -#: ../../mod/connections.php:206 ../../mod/connections.php:306 -msgid "Archived" -msgstr "Gearchiveerd" - -#: ../../mod/connections.php:230 ../../mod/connections.php:245 -msgid "All" -msgstr "Alles" - -#: ../../mod/connections.php:270 -msgid "Suggest new connections" -msgstr "Nieuwe kanalen voorstellen" - -#: ../../mod/connections.php:273 -msgid "New Connections" -msgstr "Nieuwe connecties" - -#: ../../mod/connections.php:276 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" - -#: ../../mod/connections.php:282 -msgid "Show all connections" -msgstr "Toon alle connecties" - -#: ../../mod/connections.php:285 -msgid "Unblocked" -msgstr "Niet geblokkeerd" - -#: ../../mod/connections.php:288 -msgid "Only show unblocked connections" -msgstr "Toon alleen niet geblokkeerde connecties" - -#: ../../mod/connections.php:295 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" - -#: ../../mod/connections.php:302 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" - -#: ../../mod/connections.php:309 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" - -#: ../../mod/connections.php:316 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" - -#: ../../mod/connections.php:371 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:372 -msgid "Edit connection" -msgstr "Connectie bewerken" - -#: ../../mod/connections.php:410 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" - -#: ../../mod/connections.php:411 -msgid "Finding: " -msgstr "Zoeken naar: " - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." - -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: ../../mod/connedit.php:189 -msgid "is now connected to" -msgstr "is nu verbonden met" - -#: ../../mod/connedit.php:310 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." - -#: ../../mod/connedit.php:324 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" - -#: ../../mod/connedit.php:331 -msgid "Channel has been unblocked" -msgstr "Kanaal is gedeblokkeerd" - -#: ../../mod/connedit.php:332 -msgid "Channel has been blocked" -msgstr "Kanaal is geblokkeerd" - -#: ../../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 "Niet in staat om de parameters van connecties in te stellen." - -#: ../../mod/connedit.php:343 -msgid "Channel has been unignored" -msgstr "Kanaal wordt niet meer genegeerd" - -#: ../../mod/connedit.php:344 -msgid "Channel has been ignored" -msgstr "Kanaal wordt genegeerd" - -#: ../../mod/connedit.php:355 -msgid "Channel has been unarchived" -msgstr "Kanaal is niet meer gearchiveerd" - -#: ../../mod/connedit.php:356 -msgid "Channel has been archived" -msgstr "Kanaal is gearchiveerd" - -#: ../../mod/connedit.php:367 -msgid "Channel has been unhidden" -msgstr "Kanaal is niet meer verborgen" - -#: ../../mod/connedit.php:368 -msgid "Channel has been hidden" -msgstr "Kanaal is verborgen" - -#: ../../mod/connedit.php:383 -msgid "Channel has been approved" -msgstr "Connectie/kanaal is geaccepteerd" - -#: ../../mod/connedit.php:384 -msgid "Channel has been unapproved" -msgstr "Connectie/kanaal is afgewezen" - -#: ../../mod/connedit.php:412 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" - -#: ../../mod/connedit.php:432 -#, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" - -#: ../../mod/connedit.php:436 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" - -#: ../../mod/connedit.php:439 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" - -#: ../../mod/connedit.php:443 -msgid "Recent Activity" -msgstr "Recente activiteit" - -#: ../../mod/connedit.php:446 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:595 -#: ../../mod/admin.php:732 -msgid "Unblock" -msgstr "Deblokkeren" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:595 -#: ../../mod/admin.php:731 -msgid "Block" -msgstr "Blokkeren" - -#: ../../mod/connedit.php:453 -msgid "Block or Unblock this connection" -msgstr "Deze connectie blokkeren of deblokkeren" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:596 -msgid "Unignore" -msgstr "Niet meer negeren" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:596 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Negeren" - -#: ../../mod/connedit.php:460 -msgid "Ignore or Unignore this connection" -msgstr "Deze connectie negeren of niet meer negeren" - -#: ../../mod/connedit.php:463 -msgid "Unarchive" -msgstr "Niet meer archiveren" - -#: ../../mod/connedit.php:463 -msgid "Archive" -msgstr "Archiveren" - -#: ../../mod/connedit.php:466 -msgid "Archive or Unarchive this connection" -msgstr "Deze connectie archiveren of niet meer archiveren" - -#: ../../mod/connedit.php:469 -msgid "Unhide" -msgstr "Niet meer verbergen" - -#: ../../mod/connedit.php:469 -msgid "Hide" -msgstr "Verbergen" - -#: ../../mod/connedit.php:472 -msgid "Hide or Unhide this connection" -msgstr "Deze connectie verbergen of niet meer verbergen" - -#: ../../mod/connedit.php:479 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" - -#: ../../mod/connedit.php:523 ../../mod/connedit.php:553 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" - -#: ../../mod/connedit.php:523 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" - -#: ../../mod/connedit.php:539 -#, php-format -msgid "Connections: settings for %s" -msgstr "Connecties: instellingen voor %s" - -#: ../../mod/connedit.php:540 -msgid "Apply these permissions automatically" -msgstr "Deze permissies automatisch toepassen" - -#: ../../mod/connedit.php:544 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen." - -#: ../../mod/connedit.php:546 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" - -#: ../../mod/connedit.php:552 -msgid "inherited" -msgstr "geërfd" - -#: ../../mod/connedit.php:554 -msgid "Connection has no individual permissions!" -msgstr "Connectie heeft geen individuele permissies!" - -#: ../../mod/connedit.php:555 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." - -#: ../../mod/connedit.php:557 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" - -#: ../../mod/connedit.php:558 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." - -#: ../../mod/connedit.php:559 -msgid "Contact Information / Notes" -msgstr "Informatie/aantekeningen over connectie" - -#: ../../mod/connedit.php:560 -msgid "Edit contact notes" -msgstr "Bewerk aantekeningen over contact" - -#: ../../mod/connedit.php:562 -msgid "Their Settings" -msgstr "Hun instellingen" - -#: ../../mod/connedit.php:563 -msgid "My Settings" -msgstr "Mijn instellingen" - -#: ../../mod/connedit.php:565 -msgid "Clear/Disable Automatic Permissions" -msgstr "Verwijderen/uitschakelen automatische permissies" - -#: ../../mod/connedit.php:566 -msgid "Forum Members" -msgstr "Forumleden" - -#: ../../mod/connedit.php:567 -msgid "Soapbox" -msgstr "Zeepkist" - -#: ../../mod/connedit.php:568 -msgid "Full Sharing (typical social network permissions)" -msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" - -#: ../../mod/connedit.php:569 -msgid "Cautious Sharing " -msgstr "Voorzichtig delen" - -#: ../../mod/connedit.php:570 -msgid "Follow Only" -msgstr "Alleen volgen" - -#: ../../mod/connedit.php:571 -msgid "Individual Permissions" -msgstr "Individuele permissies" - -#: ../../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 "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." - -#: ../../mod/connedit.php:573 -msgid "Advanced Permissions" -msgstr "Geavanceerde permissies" - -#: ../../mod/connedit.php:574 -msgid "Simple Permissions (select one and submit)" -msgstr "Eenvoudige permissies (selecteer er één en opslaan)" - -#: ../../mod/connedit.php:578 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Profiel van %s bezoeken - %s" - -#: ../../mod/connedit.php:579 -msgid "Block/Unblock contact" -msgstr "Connectie blokkeren/deblokkeren" - -#: ../../mod/connedit.php:580 -msgid "Ignore contact" -msgstr "Connectie negeren" - -#: ../../mod/connedit.php:581 -msgid "Repair URL settings" -msgstr "URL-instellingen repareren" - -#: ../../mod/connedit.php:582 -msgid "View conversations" -msgstr "Conversaties weergeven" - -#: ../../mod/connedit.php:584 -msgid "Delete contact" -msgstr "Connectie verwijderen" - -#: ../../mod/connedit.php:587 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: ../../mod/connedit.php:589 -msgid "Update public posts" -msgstr "Openbare berichten updaten" - -#: ../../mod/connedit.php:591 -msgid "Update now" -msgstr "Nu updaten" - -#: ../../mod/connedit.php:597 -msgid "Currently blocked" -msgstr "Momenteel geblokkeerd" - -#: ../../mod/connedit.php:598 -msgid "Currently ignored" -msgstr "Momenteel genegeerd" - -#: ../../mod/connedit.php:599 -msgid "Currently archived" -msgstr "Momenteel gearchiveerd" - -#: ../../mod/connedit.php:600 -msgid "Currently pending" -msgstr "Moeten nog geaccepteerd of afgewezen worden" - -#: ../../mod/connedit.php:601 -msgid "Hide this contact from others" -msgstr "Verberg deze connectie voor anderen" - -#: ../../mod/connedit.php:601 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven" - -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Ding bijgewerkt" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Ding toegevoegd" - -#: ../../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 "Ding weergeven" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Item niet gevonden" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Ding bewerken" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Kies een profiel" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Plaats een bericht" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL van foto van ding (optioneel)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." - -#: ../../mod/lostpass.php:85 ../../boot.php:1537 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-mailadres" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Opnieuw instellen" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" - -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" - -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 -msgid "Profile not found." -msgstr "Profiel niet gevonden." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profiel verwijderd." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profiel-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" - -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" - -#: ../../mod/profiles.php:378 -msgid "Marital Status" -msgstr "Huwelijke status" - -#: ../../mod/profiles.php:382 -msgid "Romantic Partner" -msgstr "Romantische partner" - -#: ../../mod/profiles.php:386 -msgid "Likes" -msgstr "Houdt van" - -#: ../../mod/profiles.php:390 -msgid "Dislikes" -msgstr "Houdt niet van" - -#: ../../mod/profiles.php:394 -msgid "Work/Employment" -msgstr "Werk/arbeid" - -#: ../../mod/profiles.php:397 -msgid "Religion" -msgstr "Religie" - -#: ../../mod/profiles.php:401 -msgid "Political Views" -msgstr "Politieke overtuigingen" - -#: ../../mod/profiles.php:405 -msgid "Gender" -msgstr "Geslacht" - -#: ../../mod/profiles.php:409 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" - -#: ../../mod/profiles.php:413 -msgid "Homepage" -msgstr "Homepage" - -#: ../../mod/profiles.php:417 -msgid "Interests" -msgstr "Interesses" - -#: ../../mod/profiles.php:421 ../../mod/admin.php:866 -msgid "Address" -msgstr "Kanaaladres" - -#: ../../mod/profiles.php:511 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" - -#: ../../mod/profiles.php:590 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." - -#: ../../mod/profiles.php:632 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" - -#: ../../mod/profiles.php:634 -msgid "View this profile" -msgstr "Profiel weergeven" - -#: ../../mod/profiles.php:636 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: ../../mod/profiles.php:637 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" - -#: ../../mod/profiles.php:638 -msgid "Clone this profile" -msgstr "Dit profiel klonen" - -#: ../../mod/profiles.php:639 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" - -#: ../../mod/profiles.php:641 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" - -#: ../../mod/profiles.php:642 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" - -#: ../../mod/profiles.php:643 -msgid "Profile Name:" -msgstr "Profielnaam:" - -#: ../../mod/profiles.php:644 -msgid "Your Full Name:" -msgstr "Jouw volledige naam:" - -#: ../../mod/profiles.php:645 -msgid "Title/Description:" -msgstr "Titel/omschrijving:" - -#: ../../mod/profiles.php:646 -msgid "Your Gender:" -msgstr "Jouw geslacht" - -#: ../../mod/profiles.php:647 -msgid "Birthday :" -msgstr "Verjaardag: " - -#: ../../mod/profiles.php:648 -msgid "Street Address:" -msgstr "Straat en huisnummer:" - -#: ../../mod/profiles.php:649 -msgid "Locality/City:" -msgstr "Woonplaats:" - -#: ../../mod/profiles.php:650 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: ../../mod/profiles.php:651 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:652 -msgid "Region/State:" -msgstr "Provincie/gewest/deelstaat:" - -#: ../../mod/profiles.php:653 -msgid " Marital Status:" -msgstr " Huwelijkse staat:" - -#: ../../mod/profiles.php:654 -msgid "Who: (if applicable)" -msgstr "Wie (wanneer toepasselijk):" - -#: ../../mod/profiles.php:655 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" - -#: ../../mod/profiles.php:656 -msgid "Since [date]:" -msgstr "Sinds [datum]:" - -#: ../../mod/profiles.php:658 -msgid "Homepage URL:" -msgstr "Adres homepage:" - -#: ../../mod/profiles.php:661 -msgid "Religious Views:" -msgstr "Religieuze overtuigingen" - -#: ../../mod/profiles.php:662 -msgid "Keywords:" -msgstr "Trefwoorden" - -#: ../../mod/profiles.php:665 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" - -#: ../../mod/profiles.php:666 -msgid "Used in directory listings" -msgstr "Wordt in de kanalengids gebruikt" - -#: ../../mod/profiles.php:667 -msgid "Tell us about yourself..." -msgstr "Vertel ons iets over jezelf..." - -#: ../../mod/profiles.php:668 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" - -#: ../../mod/profiles.php:669 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: ../../mod/profiles.php:670 -msgid "My other channels" -msgstr "Mijn andere kanalen" - -#: ../../mod/profiles.php:671 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: ../../mod/profiles.php:672 -msgid "Books, literature" -msgstr "Boeken/literatuur" - -#: ../../mod/profiles.php:673 -msgid "Television" -msgstr "Televisie" - -#: ../../mod/profiles.php:674 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/entertainment" - -#: ../../mod/profiles.php:675 -msgid "Love/romance" -msgstr "Liefde/romantiek" - -#: ../../mod/profiles.php:676 -msgid "Work/employment" -msgstr "Werk/arbeid" - -#: ../../mod/profiles.php:677 -msgid "School/education" -msgstr "School/onderwijs" - -#: ../../mod/profiles.php:683 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" - -#: ../../mod/profiles.php:694 ../../mod/directory.php:188 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../mod/profiles.php:737 -msgid "Edit/Manage Profiles" -msgstr "Profielen bewerken/beheren" - -#: ../../mod/profiles.php:738 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" - -#: ../../mod/profiles.php:739 -msgid "Include desirable objects in your profile" -msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" - -#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 -#: ../../mod/editlayout.php:78 ../../mod/editpost.php:20 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Item niet gevonden" - -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Blok bewerken" - -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Blok verwijderen" - -#: ../../mod/editblock.php:147 ../../mod/editlayout.php:143 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" -msgstr "YouTube-video invoegen" - -#: ../../mod/editblock.php:148 ../../mod/editlayout.php:144 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis-video [.ogg] invoegen" - -#: ../../mod/editblock.php:149 ../../mod/editlayout.php:145 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis-audio [.ogg] invoegen" - -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Blok verwijderen" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulenaam:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Lay-out-hulp" - -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Lay-out bewerken" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Lay-out verwijderen?" - -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Lay-out verwijderen" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Item verwijderen?" - -#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 -msgid "Help:" -msgstr "Hulp:" - -#: ../../mod/help.php:67 ../../index.php:238 -msgid "Not Found" -msgstr "Niet gevonden" - -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Webpagina bewerken" - -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Webpagina verwijderen?" - -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Webpagina verwijderen" - -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webpagina" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "blok" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "lay-out" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " - -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." -msgstr "Afbeelding kon niet van grootte veranderd worden." - -#: ../../mod/profile_photo.php:205 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." - -#: ../../mod/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" - -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." -msgstr "Niet in staat om afbeelding te verwerken." - -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." -msgstr "Foto niet beschikbaar." - -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" -msgstr "Bestand uploaden:" - -#: ../../mod/profile_photo.php:359 -msgid "Select a profile:" -msgstr "Kies een profiel:" - -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: ../../mod/profile_photo.php:365 -msgid "skip this step" -msgstr "sla deze stap over" - -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit jouw fotoalbums" - -#: ../../mod/profile_photo.php:381 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" - -#: ../../mod/profile_photo.php:382 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." - -#: ../../mod/profile_photo.php:384 -msgid "Done Editing" -msgstr "Klaar met bewerken" - -#: ../../mod/profile_photo.php:427 -msgid "Image uploaded successfully." -msgstr "Uploaden afbeelding geslaagd" - -#: ../../mod/profile_photo.php:429 -msgid "Image upload failed." -msgstr "Uploaden afbeelding mislukt" - -#: ../../mod/profile_photo.php:438 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinen [%s] van afbeelding mislukt." - -#: ../../mod/item.php:159 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " - -#: ../../mod/item.php:418 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" - -#: ../../mod/item.php:460 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." - -#: ../../mod/item.php:899 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." - -#: ../../mod/item.php:1117 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." - -#: ../../mod/item.php:1123 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contact niet gevonden" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kanaalvoorstel verzonden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kanalen voorstellen" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een kanaal voor aan %s" - -#: ../../mod/filestorage.php:76 -msgid "Permission Denied." -msgstr "Toegang geweigerd" - -#: ../../mod/filestorage.php:92 -msgid "File not found." -msgstr "Bestand niet gevonden." - -#: ../../mod/filestorage.php:131 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" - -#: ../../mod/filestorage.php:140 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" - -#: ../../mod/filestorage.php:141 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" - -#: ../../mod/filestorage.php:142 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " - -#: ../../mod/filestorage.php:144 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" - -#: ../../mod/filestorage.php:145 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" - -#: ../../mod/acl.php:245 -msgid "network" -msgstr "netwerk" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Accountbeheer uitbesteden" - -#: ../../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 "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Bestaande accountbeheerders" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Bestaande gevolmachtigde accountbeheerders" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." - -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:905 -msgid "Remove" -msgstr "Verwijderen" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Toevoegen" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Geen" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanaal toegevoegd." - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Collectie aangemaakt" - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Collectie kon niet aangemaakt worden" - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Collectie bijgewerkt." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Kanaalcollectie aanmaken" - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Naam collectie:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Kanalen in deze collectie zijn zichtbaar voor andere kanalen" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Collectie verwijderd" - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Verwijderen collectie mislukt" - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Collectiebewerker" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Kanalen" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alle kanaalconnecties" - -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." - -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix - "The Network"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" - -#: ../../mod/import.php:105 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." - -#: ../../mod/import.php:123 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." - -#: ../../mod/import.php:133 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." - -#: ../../mod/import.php:451 -msgid "Import completed." -msgstr "Import voltooid." - -#: ../../mod/import.php:463 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." - -#: ../../mod/import.php:468 -msgid "Import Channel" -msgstr "Kanaal importeren" - -#: ../../mod/import.php:469 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken. Alleen de identiteit en de connecties zullen geïmporteerd worden. Het importeren van inhoud is nog niet beschikbaar." - -#: ../../mod/import.php:470 -msgid "File to Upload" -msgstr "Bestand om te uploaden" - -#: ../../mod/import.php:471 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" - -#: ../../mod/import.php:472 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" - -#: ../../mod/import.php:473 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" - -#: ../../mod/import.php:474 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" - -#: ../../mod/import.php:475 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." - -#: ../../mod/import.php:476 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" - -#: ../../mod/import.php:477 -msgid "Import existing posts if possible" -msgstr "Importeer bestaande berichten (wanneer mogelijk)" - -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s labelde het %3$s van %2$s met %4$s" - #: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 msgid "Tag removed" -msgstr "Label verwijderd" +msgstr "Tag verwijderd" #: ../../mod/tagrm.php:119 msgid "Remove Item Tag" -msgstr "Verwijder itemlabel" +msgstr "Verwijder item-tag" #: ../../mod/tagrm.php:121 msgid "Select a tag to remove: " -msgstr "Kies een label om te verwijderen" +msgstr "Kies een tag om te verwijderen" #: ../../mod/admin.php:52 msgid "Theme settings updated." @@ -7323,293 +7489,6 @@ msgstr "Velddefinitie niet gevonden" msgid "Edit Profile Field" msgstr "Profielveld bewerken" -#: ../../mod/locs.php:19 ../../mod/locs.php:46 -msgid "Location not found." -msgstr "Locatie niet gevonden." - -#: ../../mod/locs.php:50 -msgid "Primary location cannot be removed." -msgstr "Primaire locatie kan niet worden verwijderd." - -#: ../../mod/locs.php:82 -msgid "No locations found." -msgstr "Geen locaties gevonden." - -#: ../../mod/locs.php:95 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" - -#: ../../mod/locs.php:96 -msgid "Location (address)" -msgstr "Locatie (adres)" - -#: ../../mod/locs.php:97 -msgid "Primary Location" -msgstr "Primaire locatie" - -#: ../../mod/locs.php:98 -msgid "Drop location" -msgstr "Locatie verwijderen" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." - -#: ../../mod/mail.php:136 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: ../../mod/mail.php:153 -msgid "Message recalled." -msgstr "Bericht ingetrokken." - -#: ../../mod/mail.php:222 -msgid "Send Private Message" -msgstr "Privébericht versturen" - -#: ../../mod/mail.php:223 ../../mod/mail.php:340 -msgid "To:" -msgstr "Aan:" - -#: ../../mod/mail.php:228 ../../mod/mail.php:342 -msgid "Subject:" -msgstr "Onderwerp:" - -#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: ../../mod/mail.php:239 -msgid "Send" -msgstr "Verzenden" - -#: ../../mod/mail.php:266 -msgid "Message not found." -msgstr "Bericht niet gevonden" - -#: ../../mod/mail.php:309 -msgid "Delete message" -msgstr "Bericht verwijderen" - -#: ../../mod/mail.php:310 -msgid "Recall message" -msgstr "Bericht intrekken" - -#: ../../mod/mail.php:312 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." - -#: ../../mod/mail.php:329 -msgid "Private Conversation" -msgstr "Privéconversatie" - -#: ../../mod/mail.php:333 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Verwijder conversatie" - -#: ../../mod/mail.php:335 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." - -#: ../../mod/mail.php:339 -msgid "Send Reply" -msgstr "Antwoord versturen" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Uitnodiging voor de RedMatrix" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Je moet deze uitnodigingscode opgeven:" - -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):" - -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:" - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "of bezoek " - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" - -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "Huidig kanaal" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "Gebruik een van jouw kanalen door op een te klikken." - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Standaardkanaal" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "Als standaard instellen" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Ingesloten inhoud - ververs pagina om te bekijken] " - -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hulp voor dit onderdeel" - -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Naam lay-out" - -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." - -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Zichtbaar voor:" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Geen connecties." - -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bezoek het profiel van %s [%s]" - -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" -msgstr "Connecties weergeven" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Hub niet gevonden." - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totaal aantal stemmen" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Gemiddelde waardering" - -#: ../../mod/network.php:81 -msgid "No such group" -msgstr "Collectie niet gevonden" - -#: ../../mod/network.php:119 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" - -#: ../../mod/network.php:173 -msgid "Collection is empty" -msgstr "Collectie is leeg" - -#: ../../mod/network.php:181 -msgid "Collection: " -msgstr "Collectie: " - -#: ../../mod/network.php:194 -msgid "Connection: " -msgstr "Connectie: " - -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "Ongeldige connectie." - -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "Kanaalfoto's" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profielovereenkomst" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Geen overeenkomsten" - #: ../../mod/menu.php:31 msgid "Menu updated." msgstr "Menu aangepast. " @@ -7698,6 +7577,179 @@ msgstr "Menu bewerken" msgid "Add or remove entries to this menu" msgstr "Items aan dit menu toevoegen of verwijder" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Uitnodiging voor de RedMatrix" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" + +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me." + +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Je moet deze uitnodigingscode opgeven:" + +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):" + +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:" + +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "of bezoek " + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" + +#: ../../mod/network.php:84 +msgid "No such group" +msgstr "Collectie niet gevonden" + +#: ../../mod/network.php:122 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" + +#: ../../mod/network.php:176 +msgid "Collection is empty" +msgstr "Collectie is leeg" + +#: ../../mod/network.php:184 +msgid "Collection: " +msgstr "Collectie: " + +#: ../../mod/network.php:197 +msgid "Connection: " +msgstr "Connectie: " + +#: ../../mod/network.php:200 +msgid "Invalid connection." +msgstr "Ongeldige connectie." + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Annuleren" + +#: ../../mod/notifications.php:94 ../../mod/notify.php:53 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." + +#: ../../mod/notifications.php:98 ../../mod/notify.php:57 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +#: ../../mod/update_home.php:21 +msgid "[Embedded content - reload page to view]" +msgstr "[Ingesloten inhoud - ververs pagina om te bekijken] " + +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." + +#: ../../mod/lockview.php:52 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Geen connecties." + +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bezoek het profiel van %s [%s]" + +#: ../../mod/viewconnections.php:86 +msgid "View Connnections" +msgstr "Connecties weergeven" + +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Hub niet gevonden." + +#: ../../mod/vote.php:97 +msgid "Total votes" +msgstr "Totaal aantal stemmen" + +#: ../../mod/vote.php:98 +msgid "Average Rating" +msgstr "Gemiddelde waardering" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." + +#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:261 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Welkom %s. Authenticatie op afstand geslaagd." + +#: ../../mod/wall_upload.php:35 +msgid "Wall Photos" +msgstr "Kanaalfoto's" + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profielovereenkomst" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Geen overeenkomsten" + #: ../../mod/message.php:41 msgid "Conversation removed." msgstr "Conversatie verwijderd" @@ -7741,30 +7793,18 @@ msgid "Or import an existing channel from another locatio msgstr "Of importeer een bestaand kanaal vanaf een andere locatie." #: ../../mod/new_channel.php:118 -msgid "Channel Type" -msgstr "Kanaaltype" - -#: ../../mod/new_channel.php:119 msgid "" "Please choose a channel type (such as social networking or community forum) " "and privacy requirements so we can select the best permissions for you" msgstr "Kies een kanaaltype (bijv. een persoonlijk kanaal voor een sociaal netwerk of eentje voor een groepsforum) en jouw behoefte aan privacy, zodat wij voor jou de beste permissies kunnen kiezen." -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" +#: ../../mod/new_channel.php:119 +msgid "Channel Type" +msgstr "Kanaaltype" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Annuleren" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Systeemnotificaties" +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" #: ../../mod/xchan.php:6 msgid "Xchan Lookup" @@ -7778,6 +7818,141 @@ msgstr "Zoek een xchan (of webbie) die begint met:" msgid "invalid target signature" msgstr "ongeldig doelkenmerk" +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." + +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Album niet gevonden." + +#: ../../mod/photos.php:119 ../../mod/photos.php:672 +msgid "Delete Album" +msgstr "Verwijder album" + +#: ../../mod/photos.php:159 ../../mod/photos.php:955 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: ../../mod/photos.php:469 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: ../../mod/photos.php:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." + +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." + +#: ../../mod/photos.php:579 +msgid "Upload Photos" +msgstr "Foto's uploaden" + +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:940 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" + +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:941 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" + +#: ../../mod/photos.php:585 +msgid "Do not show a status post for this upload" +msgstr "Plaats geen bericht voor deze upload." + +#: ../../mod/photos.php:613 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" + +#: ../../mod/photos.php:654 ../../mod/photos.php:1164 +#: ../../mod/photos.php:1180 +msgid "Contact Photos" +msgstr "Connectiefoto's" + +#: ../../mod/photos.php:678 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" + +#: ../../mod/photos.php:680 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" + +#: ../../mod/photos.php:704 ../../mod/photos.php:1212 +msgid "View Photo" +msgstr "Foto weergeven" + +#: ../../mod/photos.php:733 +msgid "Edit Album" +msgstr "Album bewerken" + +#: ../../mod/photos.php:778 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." + +#: ../../mod/photos.php:780 +msgid "Photo not available" +msgstr "Foto niet aanwezig" + +#: ../../mod/photos.php:838 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" + +#: ../../mod/photos.php:845 +msgid "Private Photo" +msgstr "Privéfoto" + +#: ../../mod/photos.php:860 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" + +#: ../../mod/photos.php:934 +msgid "Edit photo" +msgstr "Foto bewerken" + +#: ../../mod/photos.php:936 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" + +#: ../../mod/photos.php:937 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" + +#: ../../mod/photos.php:944 +msgid "Caption" +msgstr "Bijschrift" + +#: ../../mod/photos.php:946 +msgid "Add a Tag" +msgstr "Tag toevoegen" + +#: ../../mod/photos.php:950 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" + +#: ../../mod/photos.php:953 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" + +#: ../../mod/photos.php:1130 +msgid "In This Photo:" +msgstr "Op deze foto:" + +#: ../../mod/photos.php:1218 +msgid "View Album" +msgstr "Album weergeven" + +#: ../../mod/photos.php:1241 +msgid "Recent Photos" +msgstr "Recente foto's" + #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "Niet in staat om je hub te vinden" @@ -7814,168 +7989,27 @@ msgstr "Openbaar forum:" msgid "Keywords: " msgstr "Trefwoorden: " -#: ../../mod/directory.php:317 +#: ../../mod/directory.php:318 msgid "Finding:" msgstr "Gezocht naar:" -#: ../../mod/directory.php:322 +#: ../../mod/directory.php:323 msgid "next page" msgstr "volgende pagina" -#: ../../mod/directory.php:322 +#: ../../mod/directory.php:323 msgid "previous page" msgstr "vorige pagina" -#: ../../mod/directory.php:339 +#: ../../mod/directory.php:340 msgid "No entries (some entries may be hidden)." msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album niet gevonden." - -#: ../../mod/photos.php:119 ../../mod/photos.php:672 -msgid "Delete Album" -msgstr "Verwijder album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:958 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: ../../mod/photos.php:469 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: ../../mod/photos.php:513 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: ../../mod/photos.php:552 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." - -#: ../../mod/photos.php:555 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB aan foto-opslag gebruikt." - -#: ../../mod/photos.php:579 -msgid "Upload Photos" -msgstr "Foto's uploaden" - -#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 -msgid "Enter a new album name" -msgstr "Vul een nieuwe albumnaam in" - -#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 -msgid "or select an existing one (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" - -#: ../../mod/photos.php:585 -msgid "Do not show a status post for this upload" -msgstr "Plaats geen bericht voor deze upload." - -#: ../../mod/photos.php:613 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" - -#: ../../mod/photos.php:654 ../../mod/photos.php:1167 -#: ../../mod/photos.php:1183 -msgid "Contact Photos" -msgstr "Connectiefoto's" - -#: ../../mod/photos.php:678 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" - -#: ../../mod/photos.php:680 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" - -#: ../../mod/photos.php:707 ../../mod/photos.php:1215 -msgid "View Photo" -msgstr "Foto weergeven" - -#: ../../mod/photos.php:736 -msgid "Edit Album" -msgstr "Album bewerken" - -#: ../../mod/photos.php:781 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." - -#: ../../mod/photos.php:783 -msgid "Photo not available" -msgstr "Foto niet aanwezig" - -#: ../../mod/photos.php:841 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" - -#: ../../mod/photos.php:848 -msgid "Private Photo" -msgstr "Privéfoto" - -#: ../../mod/photos.php:863 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" - -#: ../../mod/photos.php:937 -msgid "Edit photo" -msgstr "Foto bewerken" - -#: ../../mod/photos.php:939 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" - -#: ../../mod/photos.php:940 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" - -#: ../../mod/photos.php:947 -msgid "Caption" -msgstr "Bijschrift" - -#: ../../mod/photos.php:949 -msgid "Add a Tag" -msgstr "Label toevoegen" - -#: ../../mod/photos.php:953 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" - -#: ../../mod/photos.php:956 -msgid "Flag as adult in album view" -msgstr "Markeer als voor volwassenen in albumweergave" - -#: ../../mod/photos.php:1133 -msgid "In This Photo:" -msgstr "Op deze foto:" - -#: ../../mod/photos.php:1221 -msgid "View Album" -msgstr "Album weergeven" - -#: ../../mod/photos.php:1244 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: ../../mod/ping.php:265 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" - -#: ../../mod/ping.php:316 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" - -#: ../../mod/ping.php:357 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." #: ../../mod/appman.php:28 ../../mod/appman.php:44 msgid "App installed." @@ -8333,41 +8367,41 @@ msgstr "Rommelig vormgegeven fotoalbums" msgid "Are you a clean desk or a messy desk person?" msgstr "Ben je iemand die van een opgeruimd bureau houdt of van een rommelig bureau?" -#: ../../boot.php:1336 +#: ../../boot.php:1347 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1339 +#: ../../boot.php:1350 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1506 +#: ../../boot.php:1517 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix" -#: ../../boot.php:1532 +#: ../../boot.php:1545 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1533 +#: ../../boot.php:1546 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1536 +#: ../../boot.php:1549 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:1617 +#: ../../boot.php:1630 msgid "permission denied" msgstr "toegang geweigerd" -#: ../../boot.php:1618 +#: ../../boot.php:1631 msgid "Got Zot?" msgstr "Heb je Zot?" -#: ../../boot.php:2101 +#: ../../boot.php:2114 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" diff --git a/view/nl/strings.php b/view/nl/strings.php index 720010ff1..8632c2e2b 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -7,183 +7,29 @@ function string_plural_select_nl($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; $a->strings["Profile Photos"] = "Profielfoto's"; -$a->strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -$a->strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -$a->strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -$a->strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -$a->strings["Protocol disabled."] = "Protocol uitgeschakeld."; -$a->strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -$a->strings["local account not found."] = "lokale account niet gevonden."; -$a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; -$a->strings["created a new post"] = "maakte een nieuw bericht aan"; -$a->strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; -$a->strings["New Page"] = "Nieuwe pagina"; +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["(Unknown)"] = "(Onbekend)"; +$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; +$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["Permission denied."] = "Toegang geweigerd"; +$a->strings["Collection not found."] = "Collectie niet gevonden."; +$a->strings["Collection is empty."] = "Collectie is leeg"; +$a->strings["Collection: %s"] = "Collectie: %s"; +$a->strings["Connection: %s"] = "Connectie: %s"; +$a->strings["Connection not found."] = "Connectie niet gevonden."; $a->strings["Edit"] = "Bewerken"; -$a->strings["View"] = "Weergeven"; -$a->strings["Preview"] = "Voorvertoning"; -$a->strings["Actions"] = "Acties"; -$a->strings["Page Link"] = "Paginalink"; -$a->strings["Title"] = "Titel"; -$a->strings["Created"] = "Aangemaakt"; -$a->strings["Edited"] = "Bewerkt"; -$a->strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -$a->strings["Advanced"] = "Geavanceerd"; -$a->strings["Find Channels"] = "Kanalen vinden"; -$a->strings["Enter name or interest"] = "Vul naam of interesse in"; -$a->strings["Connect/Follow"] = "Verbinden/volgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; -$a->strings["Find"] = "Vinden"; -$a->strings["Channel Suggestions"] = "Voorgestelde kanalen"; -$a->strings["Random Profile"] = "Willekeurig profiel"; -$a->strings["Invite Friends"] = "Vrienden uitnodigen"; -$a->strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; -$a->strings["Saved Folders"] = "Bewaarde mappen"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Categorieën"; -$a->strings["%d connection in common"] = array( - 0 => "%d gemeenschappelijke connectie", - 1 => "%d gemeenschappelijke connecties", -); -$a->strings["show more"] = "meer connecties weergeven"; -$a->strings["Embedded content"] = "Ingesloten inhoud"; -$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; $a->strings["No recipient provided."] = "Geen ontvanger opgegeven."; $a->strings["[no subject]"] = "[geen onderwerp]"; $a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; $a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; -$a->strings[" and "] = " en "; -$a->strings["public profile"] = "openbaar profiel"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; -$a->strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; -$a->strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; -$a->strings["Show"] = "Tonen"; -$a->strings["Don't show"] = "Niet tonen"; -$a->strings["Permissions"] = "Permissies"; -$a->strings["Close"] = "Sluiten"; -$a->strings["Attachments:"] = "Bijlagen:"; -$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -$a->strings["Redmatrix event notification:"] = "Notificatie RedMatrix-gebeurtenis:"; -$a->strings["Starts:"] = "Start:"; -$a->strings["Finishes:"] = "Einde:"; -$a->strings["Location:"] = "Plaats:"; -$a->strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["No source file."] = "Geen bronbestand."; -$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -$a->strings["Path not available."] = "Pad niet beschikbaar."; -$a->strings["Empty pathname"] = "Padnaam leeg"; -$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -$a->strings["Path not found."] = "Pad niet gevonden"; -$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -$a->strings["database storage failed."] = "opslag in database mislukt."; -$a->strings["parent"] = "omhoog"; -$a->strings["Collection"] = "map"; -$a->strings["Principal"] = "principal"; -$a->strings["Addressbook"] = "Adresboek"; -$a->strings["Calendar"] = "Agenda"; -$a->strings["Schedule Inbox"] = "Planning-postvak IN"; -$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; -$a->strings["Unknown"] = "Onbekend"; -$a->strings["%1\$s used"] = "%1\$s gebruikt"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s van %2\$s gebruikt (%3\$s%)"; -$a->strings["Files"] = "Bestanden"; -$a->strings["Name"] = "Naam"; -$a->strings["Type"] = "Type"; -$a->strings["Size"] = "Grootte"; -$a->strings["Last Modified"] = "Laatst gewijzigd"; -$a->strings["Delete"] = "Verwijderen"; -$a->strings["Total"] = "Totaal"; -$a->strings["Create new folder"] = "Nieuwe map aanmaken"; -$a->strings["Create"] = "Aanmaken"; -$a->strings["Upload file"] = "Bestand uploaden"; -$a->strings["Upload"] = "Uploaden"; -$a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["End this session"] = "Beëindig deze sessie"; -$a->strings["Home"] = "Home"; -$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; -$a->strings["View Profile"] = "Profiel weergeven"; -$a->strings["Your profile page"] = "Jouw profielpagina"; -$a->strings["Edit Profiles"] = "Bewerk profielen"; -$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Edit Profile"] = "Profiel bewerken"; -$a->strings["Edit your profile"] = "Jouw profiel bewerken"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Your files"] = "Jouw bestanden"; -$a->strings["Chat"] = "Chatten"; -$a->strings["Your chatrooms"] = "Jouw chatkanalen"; -$a->strings["Bookmarks"] = "Bladwijzers"; -$a->strings["Your bookmarks"] = "Jouw bladwijzers"; -$a->strings["Webpages"] = "Webpagina's"; -$a->strings["Your webpages"] = "Jouw webpagina's"; -$a->strings["Login"] = "Inloggen"; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; -$a->strings["Remote authentication"] = "Authenticatie op afstand"; -$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registreren"; -$a->strings["Create an account"] = "Maak een account aan"; -$a->strings["Help"] = "Hulp"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Apps"] = "Apps"; -$a->strings["Applications, utilities, links, games"] = "Apps"; -$a->strings["Search"] = "Zoeken"; -$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; -$a->strings["Directory"] = "Kanalengids"; -$a->strings["Channel Directory"] = "Kanalengids"; -$a->strings["Matrix"] = "Matrix"; -$a->strings["Your matrix"] = "Jouw matrix"; -$a->strings["Mark all matrix notifications seen"] = "Markeer alle matrixnotificaties als bekeken"; -$a->strings["Channel Home"] = "Tijdlijn kanaal"; -$a->strings["Channel home"] = "Tijdlijn kanaal"; -$a->strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -$a->strings["Connections"] = "Connecties"; -$a->strings["Notices"] = "Notificaties"; -$a->strings["Notifications"] = "Notificaties"; -$a->strings["See all notifications"] = "Alle notificaties weergeven"; -$a->strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; -$a->strings["Mail"] = "Privéberichten"; -$a->strings["Private mail"] = "Privéberichten"; -$a->strings["See all private messages"] = "Alle privéberichten weergeven"; -$a->strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -$a->strings["Inbox"] = "Postvak IN"; -$a->strings["Outbox"] = "Postvak UIT"; -$a->strings["New Message"] = "Nieuw bericht"; -$a->strings["Events"] = "Agenda"; -$a->strings["Event Calendar"] = "Agenda"; -$a->strings["See all events"] = "Alle gebeurtenissen weergeven"; -$a->strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -$a->strings["Channel Manager"] = "Kanaalbeheer"; -$a->strings["Manage Your Channels"] = "Beheer je kanalen"; -$a->strings["Settings"] = "Instellingen"; -$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -$a->strings["Admin"] = "Beheer"; -$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -$a->strings["Loading..."] = "Aan het laden..."; -$a->strings["Please wait..."] = "Wachten aub..."; $a->strings["view full size"] = "volledige grootte tonen"; -$a->strings["Directory Options"] = "Opties kanalengids"; -$a->strings["Alphabetic"] = "Alfabetisch"; -$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; -$a->strings["Newest to Oldest"] = "Nieuw naar oud"; -$a->strings["Oldest to Newest"] = "Oud naar nieuw"; -$a->strings["Public Forums Only"] = "Alleen openbare forums"; -$a->strings["Sort"] = "Sorteren"; -$a->strings["Enable Safe Search"] = "Veilig zoeken inschakelen"; -$a->strings["Disable Safe Search"] = "Veilig zoeken uitschakelen"; -$a->strings["Safe Mode"] = "Veilig zoeken"; $a->strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; $a->strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; $a->strings["Can view my photo albums"] = "Kan mijn fotoalbums bekijken"; @@ -217,119 +63,10 @@ $a->strings["Celebrity/Soapbox"] = "Beroemdheid/alleen volgen"; $a->strings["Group Repository"] = "Groepsopslag"; $a->strings["Other"] = "Anders"; $a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; -$a->strings["Default"] = "Standaard"; -$a->strings["Frequently"] = "Regelmatig"; -$a->strings["Hourly"] = "Elk uur"; -$a->strings["Twice daily"] = "Twee keer per dag"; -$a->strings["Daily"] = "Dagelijks"; -$a->strings["Weekly"] = "Wekelijks"; -$a->strings["Monthly"] = "Maandelijks"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-mail"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; -$a->strings["Empty name"] = "Ontbrekende naam"; -$a->strings["Name too long"] = "Naam te lang"; -$a->strings["No account identifier"] = "Geen account-identificator"; -$a->strings["Nickname is required."] = "Bijnaam is verplicht"; -$a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; -$a->strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; -$a->strings["Default Profile"] = "Standaardprofiel"; -$a->strings["Friends"] = "Vrienden"; -$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; -$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Change profile photo"] = "Profielfoto veranderen"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken"; -$a->strings["Create New Profile"] = "Nieuw profiel aanmaken"; -$a->strings["Profile Image"] = "Profielfoto"; -$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; -$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; -$a->strings["Gender:"] = "Geslacht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepagina:"; -$a->strings["Online Now"] = "Nu online"; -$a->strings["g A l F d"] = "G:i, l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[vandaag]"; -$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; -$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; -$a->strings["[No description]"] = "[Geen omschrijving]"; -$a->strings["Event Reminders"] = "Herinneringen"; -$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["Profile"] = "Profiel"; -$a->strings["Full Name:"] = "Volledige naam:"; -$a->strings["Like this channel"] = "Vind dit kanaal leuk"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Geboortedatum:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; -$a->strings["Hometown:"] = "Oorspronkelijk uit:"; -$a->strings["Tags:"] = "Trefwoorden:"; -$a->strings["Political Views:"] = "Politieke overtuigingen:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["About:"] = "Over:"; -$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -$a->strings["Likes:"] = "Houdt van:"; -$a->strings["Dislikes:"] = "Houdt niet van:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["My other channels:"] = "Mijn andere kanalen"; -$a->strings["Musical interests:"] = "Muzikale interesses:"; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie:"; -$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -$a->strings["Love/Romance:"] = "Liefde/romantiek:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Like this thing"] = "Vind dit ding leuk"; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["Install design element: "] = "Installeer ontwerp-onderdeel"; -$a->strings["QR code"] = "QR-code"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -$a->strings["post"] = "bericht"; -$a->strings["$1 spoiler"] = "$1 spoiler"; -$a->strings["$1 wrote:"] = "$1 schreef:"; -$a->strings["Miscellaneous"] = "Diversen"; -$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["year"] = "jaar"; -$a->strings["years"] = "jaren"; -$a->strings["month"] = "maand"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$a->strings["day"] = "dag"; -$a->strings["days"] = "dagen"; -$a->strings["hour"] = "uur"; -$a->strings["hours"] = "uren"; -$a->strings["minute"] = "minuut"; -$a->strings["minutes"] = "minuten"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "seconden"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -$a->strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; -$a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; -$a->strings["New window"] = "Nieuw venster"; -$a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; -$a->strings["Tags"] = "Labels"; +$a->strings["created a new post"] = "maakte een nieuw bericht aan"; +$a->strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; +$a->strings["Tags"] = "Tags"; +$a->strings["Categories"] = "Categorieën"; $a->strings["Keywords"] = "Trefwoorden"; $a->strings["have"] = "heb"; $a->strings["has"] = "heeft"; @@ -339,57 +76,51 @@ $a->strings["like"] = "vind dit leuk"; $a->strings["likes"] = "vindt dit leuk"; $a->strings["dislike"] = "vind dit niet leuk"; $a->strings["dislikes"] = "vindt dit niet leuk"; -$a->strings["Public Timeline"] = "Openbare tijdlijn"; -$a->strings["Red Matrix Notification"] = "RedMatrix-notificatie"; -$a->strings["redmatrix"] = "RedMatrix"; -$a->strings["Thank You,"] = "Bedankt,"; -$a->strings["%s Administrator"] = "Beheerder %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notificatie] Nieuw privébericht ontvangen op %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; -$a->strings["a private message"] = "een privébericht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notificatie] %s heeft je genoemd"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notificatie] %1\$s heeft je aangestoten"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notificatie] %s heeft jouw bericht gelabeld"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s labelde jouw bericht om %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s labelde [zrl=%3\$s]jouw bericht[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Notificatie] Connectieverzoek ontvangen"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; -$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificatie] Kanaalvoorstel ontvangen"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; -$a->strings["Name:"] = "Naam:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; -$a->strings["[Red:Notify]"] = "[Red:Notificatie]"; -$a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -$a->strings["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."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; -$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; -$a->strings["All Channels"] = "Alle kanalen"; -$a->strings["edit"] = "bewerken"; -$a->strings["Collections"] = "Collecties"; -$a->strings["Edit collection"] = "Collectie bewerken"; -$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken"; -$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; -$a->strings["add"] = "toevoegen"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); +$a->strings["New Page"] = "Nieuwe pagina"; +$a->strings["View"] = "Weergeven"; +$a->strings["Preview"] = "Voorvertoning"; +$a->strings["Actions"] = "Acties"; +$a->strings["Page Link"] = "Paginalink"; +$a->strings["Title"] = "Titel"; +$a->strings["Created"] = "Aangemaakt"; +$a->strings["Edited"] = "Bewerkt"; +$a->strings["Embedded content"] = "Ingesloten inhoud"; +$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; +$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings[" and "] = " en "; +$a->strings["public profile"] = "openbaar profiel"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; +$a->strings["Attachments:"] = "Bijlagen:"; +$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["Redmatrix event notification:"] = "Notificatie RedMatrix-gebeurtenis:"; +$a->strings["Starts:"] = "Start:"; +$a->strings["Finishes:"] = "Einde:"; +$a->strings["Location:"] = "Plaats:"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["No source file."] = "Geen bronbestand."; +$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +$a->strings["Path not available."] = "Pad niet beschikbaar."; +$a->strings["Empty pathname"] = "Padnaam leeg"; +$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; +$a->strings["Path not found."] = "Pad niet gevonden"; +$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +$a->strings["database storage failed."] = "opslag in database mislukt."; $a->strings["General Features"] = "Algemene functies"; $a->strings["Content Expiration"] = "Inhoud laten verlopen"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; @@ -414,8 +145,6 @@ $a->strings["Allows you to set restrictions and terms on those that connect with $a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; $a->strings["Use Markdown"] = "Markdown gebruiken"; $a->strings["Allow use of \"Markdown\" to format posts"] = "Sta het gebruik van \"markdown\" toe om berichten mee op te maken."; -$a->strings["Post Preview"] = "Voorvertoning"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Een optie om je berichten en reacties voor het definitief publiceren voor te vertonen"; $a->strings["Channel Sources"] = "Kanaalbronnen"; $a->strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; $a->strings["Even More Encryption"] = "Extra encryptie"; @@ -438,19 +167,183 @@ $a->strings["Filter stream activity by depth of relationships"] = "Filter wat je $a->strings["Suggest Channels"] = "Kanalen voorstellen"; $a->strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; $a->strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; -$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten"; -$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties nadat deze zijn verzonden"; -$a->strings["Tagging"] = "Labelen"; -$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen"; +$a->strings["Tagging"] = "Taggen"; +$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te taggen"; $a->strings["Post Categories"] = "Categorieën berichten"; $a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +$a->strings["Saved Folders"] = "Bewaarde mappen"; $a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; $a->strings["Dislike Posts"] = "Vind berichten niet leuk"; $a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; $a->strings["Star Posts"] = "Geef berichten een ster"; $a->strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; -$a->strings["Tag Cloud"] = "Wolk met trefwoorden/labels"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met trefwoorden of labels op jouw kanaalpagina"; +$a->strings["Tag Cloud"] = "Tagwolk"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; +$a->strings["parent"] = "omhoog"; +$a->strings["Collection"] = "map"; +$a->strings["Principal"] = "principal"; +$a->strings["Addressbook"] = "Adresboek"; +$a->strings["Calendar"] = "Agenda"; +$a->strings["Schedule Inbox"] = "Planning-postvak IN"; +$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; +$a->strings["Unknown"] = "Onbekend"; +$a->strings["%1\$s used"] = "%1\$s gebruikt"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s van %2\$s gebruikt (%3\$s%)"; +$a->strings["Files"] = "Bestanden"; +$a->strings["Total"] = "Totaal"; +$a->strings["Name"] = "Naam"; +$a->strings["Type"] = "Type"; +$a->strings["Size"] = "Grootte"; +$a->strings["Last Modified"] = "Laatst gewijzigd"; +$a->strings["Delete"] = "Verwijderen"; +$a->strings["Create new folder"] = "Nieuwe map aanmaken"; +$a->strings["Create"] = "Aanmaken"; +$a->strings["Upload file"] = "Bestand uploaden"; +$a->strings["Upload"] = "Uploaden"; +$a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; +$a->strings["Directory Options"] = "Opties kanalengids"; +$a->strings["Alphabetic"] = "Alfabetisch"; +$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; +$a->strings["Newest to Oldest"] = "Nieuw naar oud"; +$a->strings["Oldest to Newest"] = "Oud naar nieuw"; +$a->strings["Public Forums Only"] = "Alleen openbare forums"; +$a->strings["Sort"] = "Sorteren"; +$a->strings["Enable Safe Search"] = "Veilig zoeken inschakelen"; +$a->strings["Disable Safe Search"] = "Veilig zoeken uitschakelen"; +$a->strings["Safe Mode"] = "Veilig zoeken"; +$a->strings["Default"] = "Standaard"; +$a->strings["Frequently"] = "Regelmatig"; +$a->strings["Hourly"] = "Elk uur"; +$a->strings["Twice daily"] = "Twee keer per dag"; +$a->strings["Daily"] = "Dagelijks"; +$a->strings["Weekly"] = "Wekelijks"; +$a->strings["Monthly"] = "Maandelijks"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-mail"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Logged out."] = "Uitgelogd."; +$a->strings["Failed authentication"] = "Mislukte authenticatie"; +$a->strings["Login failed."] = "Inloggen mislukt."; +$a->strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; +$a->strings["Show"] = "Tonen"; +$a->strings["Don't show"] = "Niet tonen"; +$a->strings["Permissions"] = "Permissies"; +$a->strings["Close"] = "Sluiten"; +$a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; +$a->strings["Empty name"] = "Ontbrekende naam"; +$a->strings["Name too long"] = "Naam te lang"; +$a->strings["No account identifier"] = "Geen account-identificator"; +$a->strings["Nickname is required."] = "Bijnaam is verplicht"; +$a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; +$a->strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; +$a->strings["Default Profile"] = "Standaardprofiel"; +$a->strings["Friends"] = "Vrienden"; +$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; +$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Change profile photo"] = "Profielfoto veranderen"; +$a->strings["Profiles"] = "Profielen"; +$a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken"; +$a->strings["Create New Profile"] = "Nieuw profiel aanmaken"; +$a->strings["Edit Profile"] = "Profiel bewerken"; +$a->strings["Profile Image"] = "Profielfoto"; +$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; +$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; +$a->strings["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepagina:"; +$a->strings["Online Now"] = "Nu online"; +$a->strings["g A l F d"] = "G:i, l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[vandaag]"; +$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; +$a->strings["[No description]"] = "[Geen omschrijving]"; +$a->strings["Event Reminders"] = "Herinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["Profile"] = "Profiel"; +$a->strings["Full Name:"] = "Volledige naam:"; +$a->strings["Like this channel"] = "Vind dit kanaal leuk"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Geboortedatum:"; +$a->strings["Age:"] = "Leeftijd:"; +$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; +$a->strings["Hometown:"] = "Oorspronkelijk uit:"; +$a->strings["Tags:"] = "Tags:"; +$a->strings["Political Views:"] = "Politieke overtuigingen:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["About:"] = "Over:"; +$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; +$a->strings["Likes:"] = "Houdt van:"; +$a->strings["Dislikes:"] = "Houdt niet van:"; +$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +$a->strings["My other channels:"] = "Mijn andere kanalen"; +$a->strings["Musical interests:"] = "Muzikale interesses:"; +$a->strings["Books, literature:"] = "Boeken, literatuur:"; +$a->strings["Television:"] = "Televisie:"; +$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; +$a->strings["Love/Romance:"] = "Liefde/romantiek:"; +$a->strings["Work/employment:"] = "Werk/beroep:"; +$a->strings["School/education:"] = "School/opleiding:"; +$a->strings["Like this thing"] = "Vind dit ding leuk"; +$a->strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +$a->strings["Advanced"] = "Geavanceerd"; +$a->strings["Find Channels"] = "Kanalen vinden"; +$a->strings["Enter name or interest"] = "Vul naam of interesse in"; +$a->strings["Connect/Follow"] = "Verbinden/volgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; +$a->strings["Find"] = "Vinden"; +$a->strings["Channel Suggestions"] = "Voorgestelde kanalen"; +$a->strings["Random Profile"] = "Willekeurig profiel"; +$a->strings["Invite Friends"] = "Vrienden uitnodigen"; +$a->strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; +$a->strings["Everything"] = "Alles"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemeenschappelijke connectie", + 1 => "%d gemeenschappelijke connecties", +); +$a->strings["show more"] = "meer connecties weergeven"; +$a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +$a->strings["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."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; +$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; +$a->strings["All Channels"] = "Alle kanalen"; +$a->strings["edit"] = "bewerken"; +$a->strings["Collections"] = "Collecties"; +$a->strings["Edit collection"] = "Collectie bewerken"; +$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken"; +$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; +$a->strings["add"] = "toevoegen"; +$a->strings["Not a valid email address"] = "Geen geldig e-mailadres"; +$a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan"; +$a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd."; +$a->strings["An invitation is required."] = "Een uitnodiging is vereist"; +$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; +$a->strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +$a->strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +$a->strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +$a->strings["Administrator"] = "Beheerder"; +$a->strings["your registration password"] = "jouw registratiewachtwoord"; +$a->strings["Registration details for %s"] = "Registratiegegevens voor %s"; +$a->strings["Account approved."] = "Account goedgekeurd"; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; +$a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +$a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; $a->strings["prev"] = "vorige"; $a->strings["first"] = "eerste"; $a->strings["last"] = "laatste"; @@ -463,6 +356,7 @@ $a->strings["%d Connection"] = array( 1 => "%d connecties", ); $a->strings["View Connections"] = "Connecties weergeven"; +$a->strings["Search"] = "Zoeken"; $a->strings["Save"] = "Opslaan"; $a->strings["poke"] = "aanstoten"; $a->strings["poked"] = "aangestoten"; @@ -536,6 +430,20 @@ $a->strings["Blocks"] = "Blokken"; $a->strings["Menus"] = "Menu's"; $a->strings["Layouts"] = "Lay-outs"; $a->strings["Pages"] = "Pagina's"; +$a->strings["Public Timeline"] = "Openbare tijdlijn"; +$a->strings["Missing room name"] = "Naam chatkanaal ontbreekt"; +$a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; +$a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; +$a->strings["Room not found."] = "Chatkanaal niet gevonden"; +$a->strings["Room is full"] = "Chatkanaal is vol"; +$a->strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +$a->strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +$a->strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +$a->strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +$a->strings["Protocol disabled."] = "Protocol uitgeschakeld."; +$a->strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +$a->strings["local account not found."] = "lokale account niet gevonden."; +$a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; $a->strings["channel"] = "kanaal"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; @@ -555,10 +463,12 @@ $a->strings["Expires: %s"] = "Verloopt: %s"; $a->strings["View in context"] = "In context bekijken"; $a->strings["Please wait"] = "Even wachten"; $a->strings["remove"] = "verwijderen"; +$a->strings["Loading..."] = "Aan het laden..."; $a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; $a->strings["View Source"] = "Bron weergeven"; $a->strings["Follow Thread"] = "Conversatie volgen"; $a->strings["View Status"] = "Status weergeven"; +$a->strings["View Profile"] = "Profiel weergeven"; $a->strings["View Photos"] = "Foto's weergeven"; $a->strings["Matrix Activity"] = "Activiteit in de RedMatrix"; $a->strings["Edit Contact"] = "Contact bewerken"; @@ -585,7 +495,7 @@ $a->strings["Visible to everybody"] = "Voor iedereenstrings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; $a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; $a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; -$a->strings["Tag term:"] = "Label:"; +$a->strings["Tag term:"] = "Tag:"; $a->strings["Save to Folder:"] = "Bewaar in map: "; $a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; $a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; @@ -634,50 +544,14 @@ $a->strings["Channel"] = "Kanaal"; $a->strings["Status Messages and Posts"] = "Berichten in dit kanaal"; $a->strings["About"] = "Over"; $a->strings["Profile Details"] = "Profiel"; -$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Photos"] = "Foto's"; $a->strings["Files and Storage"] = "Bestanden en opslagruimte"; $a->strings["Chatrooms"] = "Chatkanalen"; +$a->strings["Bookmarks"] = "Bladwijzers"; $a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +$a->strings["Webpages"] = "Webpagina's"; $a->strings["Manage Webpages"] = "Webpagina's beheren"; -$a->strings["Not a valid email address"] = "Geen geldig e-mailadres"; -$a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan"; -$a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd."; -$a->strings["An invitation is required."] = "Een uitnodiging is vereist"; -$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; -$a->strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -$a->strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -$a->strings["Registration request at %s"] = "Registratiebevestiging voor %s"; -$a->strings["Administrator"] = "Beheerder"; -$a->strings["your registration password"] = "jouw registratiewachtwoord"; -$a->strings["Registration details for %s"] = "Registratiegegevens voor %s"; -$a->strings["Account approved."] = "Account goedgekeurd"; -$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -$a->strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; -$a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -$a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -$a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; -$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; -$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; -$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["(Unknown)"] = "(Onbekend)"; -$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; -$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Collection not found."] = "Collectie niet gevonden."; -$a->strings["Collection is empty."] = "Collectie is leeg"; -$a->strings["Collection: %s"] = "Collectie: %s"; -$a->strings["Connection: %s"] = "Connectie: %s"; -$a->strings["Connection not found."] = "Connectie niet gevonden."; +$a->strings["Apps"] = "Apps"; $a->strings["System"] = "Systeem"; $a->strings["Create Personal App"] = "Persoonlijke app maken"; $a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; @@ -705,11 +579,12 @@ $a->strings["Feature settings"] = "Plug-ins"; $a->strings["Display settings"] = "Weergave"; $a->strings["Connected apps"] = "Verbonden applicaties"; $a->strings["Export channel"] = "Kanaal exporteren"; -$a->strings["Export content"] = "Inhoud exporteren"; $a->strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; $a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +$a->strings["Settings"] = "Instellingen"; $a->strings["Messages"] = "Berichten"; $a->strings["Check Mail"] = "Controleer op nieuwe berichten"; +$a->strings["New Message"] = "Nieuw bericht"; $a->strings["Chat Rooms"] = "Chatkanalen"; $a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; $a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; @@ -717,9 +592,143 @@ $a->strings["photo/image"] = "foto/afbeelding"; $a->strings["Invalid data packet"] = "Datapakket ongeldig"; $a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; $a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; -$a->strings["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["Comment"] = "Reactie"; +$a->strings["Save to Folder"] = "In map opslaan"; +$a->strings["View all"] = "Toon alles"; +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "vindt dit niet leuk", + 1 => "vinden dit niet leuk", +); +$a->strings["Add Star"] = "Ster toevoegen"; +$a->strings["Remove Star"] = "Ster verwijderen"; +$a->strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; +$a->strings["starred"] = "met ster"; +$a->strings["Add Tag"] = "Tag toevoegen"; +$a->strings["I like this (toggle)"] = "Vind ik leuk"; +$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +$a->strings["Share This"] = "Delen"; +$a->strings["share"] = "delen"; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties weergeven", +); +$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; +$a->strings["to"] = "aan"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; +$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; +$a->strings["Save Bookmarks"] = "Bladwijzers opslaan"; +$a->strings["Add to Calendar"] = "Aan agenda toevoegen"; +$a->strings["Mark all seen"] = "Markeer alles als bekeken"; +$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk"; +$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; $a->strings["[+] show all"] = "[+] alle"; +$a->strings["This is you"] = "Dit ben jij"; +$a->strings["Comment"] = "Reactie"; +$a->strings["Submit"] = "Opslaan"; +$a->strings["Bold"] = "Vet"; +$a->strings["Italic"] = "Cursief"; +$a->strings["Underline"] = "Onderstrepen"; +$a->strings["Quote"] = "Citeren"; +$a->strings["Code"] = "Broncode"; +$a->strings["Image"] = "Afbeelding"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Miscellaneous"] = "Diversen"; +$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["year"] = "jaar"; +$a->strings["years"] = "jaren"; +$a->strings["month"] = "maand"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$a->strings["day"] = "dag"; +$a->strings["days"] = "dagen"; +$a->strings["hour"] = "uur"; +$a->strings["hours"] = "uren"; +$a->strings["minute"] = "minuut"; +$a->strings["minutes"] = "minuten"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "seconden"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +$a->strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; +$a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +$a->strings["Site Admin"] = "Hubbeheerder"; +$a->strings["Address Book"] = "Connecties"; +$a->strings["Login"] = "Inloggen"; +$a->strings["Channel Manager"] = "Kanaalbeheer"; +$a->strings["Matrix"] = "Matrix"; +$a->strings["Channel Home"] = "Tijdlijn kanaal"; +$a->strings["Events"] = "Agenda"; +$a->strings["Directory"] = "Kanalengids"; +$a->strings["Help"] = "Hulp"; +$a->strings["Mail"] = "Privéberichten"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Chat"] = "Chatten"; +$a->strings["Probe"] = "Onderzoeken"; +$a->strings["Suggest"] = "Voorstellen"; +$a->strings["Random Channel"] = "Willekeurig kanaal"; +$a->strings["Invite"] = "Uitnodigen "; +$a->strings["Features"] = "Extra functies"; +$a->strings["Language"] = "Taal"; +$a->strings["Post"] = "Bericht"; +$a->strings["Profile Photo"] = "Profielfoto"; +$a->strings["Update"] = "Bijwerken"; +$a->strings["Install"] = "Installeren"; +$a->strings["Purchase"] = "Aanschaffen"; +$a->strings["New window"] = "Nieuw venster"; +$a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +$a->strings["User '%s' deleted"] = "Account '%s' verwijderd"; +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["Install design element: "] = "Installeer ontwerp-onderdeel"; +$a->strings["QR code"] = "QR-code"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; +$a->strings["post"] = "bericht"; +$a->strings["$1 spoiler"] = "$1 spoiler"; +$a->strings["$1 wrote:"] = "$1 schreef:"; +$a->strings["Red Matrix Notification"] = "RedMatrix-notificatie"; +$a->strings["redmatrix"] = "RedMatrix"; +$a->strings["Thank You,"] = "Bedankt,"; +$a->strings["%s Administrator"] = "Beheerder %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notificatie] Nieuw privébericht ontvangen op %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; +$a->strings["a private message"] = "een privébericht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notificatie] %s heeft je genoemd"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notificatie] %1\$s heeft je aangestoten"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notificatie] %s heeft jouw bericht getagd"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Notificatie] Connectieverzoek ontvangen"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; +$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificatie] Kanaalvoorstel ontvangen"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; +$a->strings["Name:"] = "Naam:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; +$a->strings["[Red:Notify]"] = "[Red:Notificatie]"; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; $a->strings["[-] show less"] = "[-] minder reacties weergeven"; $a->strings["[+] expand"] = "[+] uitklappen"; $a->strings["[-] collapse"] = "[-] inklappen"; @@ -804,68 +813,73 @@ $a->strings["Uncertain"] = "Onzeker"; $a->strings["It's complicated"] = "Het is ingewikkeld"; $a->strings["Don't care"] = "Maakt mij niks uit"; $a->strings["Ask me"] = "Vraag het me"; -$a->strings["Site Admin"] = "Hubbeheerder"; -$a->strings["Address Book"] = "Connecties"; -$a->strings["Mood"] = "Stemming"; -$a->strings["Probe"] = "Onderzoeken"; -$a->strings["Suggest"] = "Voorstellen"; -$a->strings["Random Channel"] = "Willekeurig kanaal"; -$a->strings["Invite"] = "Uitnodigen "; -$a->strings["Features"] = "Extra functies"; -$a->strings["Language"] = "Taal"; -$a->strings["Post"] = "Bericht"; -$a->strings["Profile Photo"] = "Profielfoto"; -$a->strings["Update"] = "Bijwerken"; -$a->strings["Install"] = "Installeren"; -$a->strings["Purchase"] = "Aanschaffen"; -$a->strings["Logged out."] = "Uitgelogd."; -$a->strings["Failed authentication"] = "Mislukte authenticatie"; -$a->strings["Login failed."] = "Inloggen mislukt."; -$a->strings["Save to Folder"] = "In map opslaan"; -$a->strings["View all"] = "Toon alles"; -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "vindt dit niet leuk", - 1 => "vinden dit niet leuk", -); -$a->strings["Add Star"] = "Ster toevoegen"; -$a->strings["Remove Star"] = "Ster verwijderen"; -$a->strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; -$a->strings["starred"] = "met ster"; -$a->strings["Add Tag"] = "Label toevoegen"; -$a->strings["I like this (toggle)"] = "Vind ik leuk"; -$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -$a->strings["Share This"] = "Delen"; -$a->strings["share"] = "delen"; -$a->strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties weergeven", -); -$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; -$a->strings["to"] = "aan"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; -$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; -$a->strings["Save Bookmarks"] = "Bladwijzers opslaan"; -$a->strings["Add to Calendar"] = "Aan agenda toevoegen"; -$a->strings["Mark all seen"] = "Markeer alles als bekeken"; -$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk"; -$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -$a->strings["This is you"] = "Dit ben jij"; -$a->strings["Submit"] = "Opslaan"; -$a->strings["Bold"] = "Vet"; -$a->strings["Italic"] = "Cursief"; -$a->strings["Underline"] = "Onderstrepen"; -$a->strings["Quote"] = "Citeren"; -$a->strings["Code"] = "Broncode"; -$a->strings["Image"] = "Afbeelding"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Missing room name"] = "Naam chatkanaal ontbreekt"; -$a->strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; -$a->strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; -$a->strings["Room not found."] = "Chatkanaal niet gevonden"; -$a->strings["Room is full"] = "Chatkanaal is vol"; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["End this session"] = "Beëindig deze sessie"; +$a->strings["Home"] = "Home"; +$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; +$a->strings["Your profile page"] = "Jouw profielpagina"; +$a->strings["Edit Profiles"] = "Bewerk profielen"; +$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["Edit your profile"] = "Jouw profiel bewerken"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Your files"] = "Jouw bestanden"; +$a->strings["Your chatrooms"] = "Jouw chatkanalen"; +$a->strings["Your bookmarks"] = "Jouw bladwijzers"; +$a->strings["Your webpages"] = "Jouw webpagina's"; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; +$a->strings["Remote authentication"] = "Authenticatie op afstand"; +$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Register"] = "Registreren"; +$a->strings["Create an account"] = "Maak een account aan"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Applications, utilities, links, games"] = "Apps"; +$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; +$a->strings["Channel Directory"] = "Kanalengids"; +$a->strings["Your matrix"] = "Jouw matrix"; +$a->strings["Mark all matrix notifications seen"] = "Markeer alle matrixnotificaties als bekeken"; +$a->strings["Channel home"] = "Tijdlijn kanaal"; +$a->strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +$a->strings["Connections"] = "Connecties"; +$a->strings["Notices"] = "Notificaties"; +$a->strings["Notifications"] = "Notificaties"; +$a->strings["See all notifications"] = "Alle notificaties weergeven"; +$a->strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["See all private messages"] = "Alle privéberichten weergeven"; +$a->strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +$a->strings["Inbox"] = "Postvak IN"; +$a->strings["Outbox"] = "Postvak UIT"; +$a->strings["Event Calendar"] = "Agenda"; +$a->strings["See all events"] = "Alle gebeurtenissen weergeven"; +$a->strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +$a->strings["Manage Your Channels"] = "Beheer je kanalen"; +$a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +$a->strings["Admin"] = "Beheer"; +$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +$a->strings["@name, #tag, content"] = "@kanaal, #label, inhoud"; +$a->strings["Please wait..."] = "Wachten aub..."; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; $a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; +$a->strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; +$a->strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub."; +$a->strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; +$a->strings["Registration on this site/hub is by approval only."] = "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd."; +$a->strings["Register at another affiliated site/hub"] = "Registreer op een andere RedMatrix-hub"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; +$a->strings["Terms of Service"] = "Gebruiksvoorwaarden"; +$a->strings["I accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; +$a->strings["Registration"] = "Registratie"; +$a->strings["Membership on this site is by invitation only."] = "Registreren op deze RedMatrix-hub kan alleen op uitnodiging."; +$a->strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; +$a->strings["Your email address"] = "Jouw e-mailadres"; +$a->strings["Choose a password"] = "Geef een wachtwoord op"; +$a->strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; $a->strings["Menu not found."] = "Menu niet gevonden."; $a->strings["Menu element updated."] = "Menu-onderdeel geüpdatet."; $a->strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; @@ -896,30 +910,129 @@ $a->strings["Menu item could not be deleted."] = "Menu-item kon niet worden verw $a->strings["Edit Menu Element"] = "Menu-element bewerken"; $a->strings["Modify"] = "Wijzigen"; $a->strings["Some blurb about what to do when you're new here"] = "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)."; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; -$a->strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; -$a->strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub."; -$a->strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; -$a->strings["Registration on this site/hub is by approval only."] = "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd."; -$a->strings["Register at another affiliated site/hub"] = "Registreer op een andere RedMatrix-hub"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; -$a->strings["Terms of Service"] = "Gebruiksvoorwaarden"; -$a->strings["I accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ik accepteer de %s van deze RedMatrix-hub"; -$a->strings["Registration"] = "Registratie"; -$a->strings["Membership on this site is by invitation only."] = "Registreren op deze RedMatrix-hub kan alleen op uitnodiging."; -$a->strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; -$a->strings["Your email address"] = "Jouw e-mailadres"; -$a->strings["Choose a password"] = "Geef een wachtwoord op"; -$a->strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; -$a->strings["- select -"] = "- kies map -"; -$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; -$a->strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; -$a->strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; -$a->strings["Visible To"] = "Zichtbaar voor"; -$a->strings["All Connections"] = "Alle connecties"; +$a->strings["sent you a private message"] = "stuurde jou een privébericht"; +$a->strings["added your channel"] = "voegde jouw kanaal toe"; +$a->strings["posted an event"] = "plaatste een gebeurtenis"; +$a->strings["Collection created."] = "Collectie aangemaakt"; +$a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden"; +$a->strings["Collection updated."] = "Collectie bijgewerkt."; +$a->strings["Create a collection of channels."] = "Kanaalcollectie aanmaken"; +$a->strings["Collection Name: "] = "Naam collectie:"; +$a->strings["Members are visible to other channels"] = "Kanalen in deze collectie zijn zichtbaar voor andere kanalen"; +$a->strings["Collection removed."] = "Collectie verwijderd"; +$a->strings["Unable to remove collection."] = "Verwijderen collectie mislukt"; +$a->strings["Collection Editor"] = "Collectiebewerker"; +$a->strings["Members"] = "Kanalen"; +$a->strings["All Connected Channels"] = "Alle kanaalconnecties"; +$a->strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; +$a->strings["Public access denied."] = "Openbare toegang geweigerd."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; +$a->strings["Poke/Prod"] = "Aanstoten/porren"; +$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; +$a->strings["Recipient"] = "Ontvanger"; +$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +$a->strings["Make this post private"] = "Maak dit bericht privé"; +$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +$a->strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +$a->strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +$a->strings["Yes"] = "Ja"; +$a->strings["No"] = "Nee"; +$a->strings["Profile not found."] = "Profiel niet gevonden."; +$a->strings["Profile deleted."] = "Profiel verwijderd."; +$a->strings["Profile-"] = "Profiel-"; +$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; +$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; +$a->strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; +$a->strings["Profile Name is required."] = "Profielnaam is vereist"; +$a->strings["Marital Status"] = "Huwelijke status"; +$a->strings["Romantic Partner"] = "Romantische partner"; +$a->strings["Likes"] = "Houdt van"; +$a->strings["Dislikes"] = "Houdt niet van"; +$a->strings["Work/Employment"] = "Werk/arbeid"; +$a->strings["Religion"] = "Religie"; +$a->strings["Political Views"] = "Politieke overtuigingen"; +$a->strings["Gender"] = "Geslacht"; +$a->strings["Sexual Preference"] = "Seksuele voorkeur"; +$a->strings["Homepage"] = "Homepage"; +$a->strings["Interests"] = "Interesses"; +$a->strings["Address"] = "Kanaaladres"; +$a->strings["Location"] = "Locatie"; +$a->strings["Profile updated."] = "Profiel bijgewerkt"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; +$a->strings["Edit Profile Details"] = "Profiel bewerken"; +$a->strings["View this profile"] = "Profiel weergeven"; +$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; +$a->strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; +$a->strings["Clone this profile"] = "Dit profiel klonen"; +$a->strings["Delete this profile"] = "Dit profiel verwijderen"; +$a->strings["Import profile from file"] = "Profiel vanuit bestand importeren"; +$a->strings["Export profile to file"] = "Profiel naar bestand exporteren"; +$a->strings["Profile Name:"] = "Profielnaam:"; +$a->strings["Your Full Name:"] = "Jouw volledige naam:"; +$a->strings["Title/Description:"] = "Titel/omschrijving:"; +$a->strings["Your Gender:"] = "Jouw geslacht"; +$a->strings["Birthday :"] = "Verjaardag: "; +$a->strings["Street Address:"] = "Straat en huisnummer:"; +$a->strings["Locality/City:"] = "Woonplaats:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:"; +$a->strings[" Marital Status:"] = " Huwelijkse staat:"; +$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl"; +$a->strings["Since [date]:"] = "Sinds [datum]:"; +$a->strings["Homepage URL:"] = "Adres homepage:"; +$a->strings["Religious Views:"] = "Religieuze overtuigingen"; +$a->strings["Keywords:"] = "Trefwoorden"; +$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; +$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt"; +$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf..."; +$a->strings["Hobbies/Interests"] = "Hobby's/interesses"; +$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; +$a->strings["My other channels"] = "Mijn andere kanalen"; +$a->strings["Musical interests"] = "Muzikale interesses"; +$a->strings["Books, literature"] = "Boeken/literatuur"; +$a->strings["Television"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment"; +$a->strings["Love/romance"] = "Liefde/romantiek"; +$a->strings["Work/employment"] = "Werk/arbeid"; +$a->strings["School/education"] = "School/onderwijs"; +$a->strings["This is your default profile."] = "Dit is jouw standaardprofiel"; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren"; +$a->strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +$a->strings["Include desirable objects in your profile"] = "Voeg door jou gewenste dingen aan jouw profiel toe"; +$a->strings["Item not available."] = "Item is niet aanwezig."; +$a->strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +$a->strings["Invalid item."] = "Ongeldig item."; +$a->strings["Channel not found."] = "Kanaal niet gevonden."; +$a->strings["Page not found."] = "Pagina niet gevonden."; +$a->strings["Export Channel"] = "Kanaal exporteren"; +$a->strings["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."] = "Exporteer de basisinformatie van jouw kanaal naar een klein bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; +$a->strings["Export Content"] = "Inhoud exporteren"; +$a->strings["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."] = "Exporteer informatie en alle inhoud van jouw kanaal naar een JSON-back-up. Dit slaat al jouw connecties, permissies, profielgegevens en de volledige inhoud van jouw kanaal op, maar is in het algemeen niet geschikt om op een nieuwe hub te importeren, omdat dit bestand ZEER groot kan worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +$a->strings["No potential page delegates located."] = "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed."; +$a->strings["Delegate Page Management"] = "Accountbeheer uitbesteden"; +$a->strings["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."] = "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd."; +$a->strings["Existing Page Managers"] = "Bestaande accountbeheerders"; +$a->strings["Existing Page Delegates"] = "Bestaande gevolmachtigde accountbeheerders"; +$a->strings["Potential Delegates"] = "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed."; +$a->strings["Remove"] = "Verwijderen"; +$a->strings["Add"] = "Toevoegen"; +$a->strings["No entries."] = "Geen"; +$a->strings["Version %s"] = "Versie %s"; +$a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; +$a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps"; +$a->strings["Red"] = "Red"; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy."; +$a->strings["Tag: "] = "Tag: "; +$a->strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +$a->strings["Running at web location"] = "Draaiend op weblocatie"; +$a->strings["Please visit RedMatrix.me to learn more about the Red Matrix."] = "Bezoek RedMatrix.me om meer te leren over de RedMatrix."; +$a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; +$a->strings["Site Administrators"] = "Hubbeheerders: "; $a->strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; $a->strings["Source created."] = "Bron aangemaakt."; $a->strings["Source updated."] = "Bron aangemaakt."; @@ -935,105 +1048,94 @@ $a->strings["Edit Source"] = "Bron bewerken"; $a->strings["Delete Source"] = "Bron verwijderen"; $a->strings["Source removed"] = "Bron verwijderd"; $a->strings["Unable to remove source."] = "Verwijderen bron mislukt."; -$a->strings["Poke/Prod"] = "Aanstoten/porren"; -$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; -$a->strings["Recipient"] = "Ontvanger"; -$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -$a->strings["Make this post private"] = "Maak dit bericht privé"; -$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -$a->strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -$a->strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nee"; -$a->strings["Public access denied."] = "Openbare toegang geweigerd."; -$a->strings["Item not available."] = "Item is niet aanwezig."; -$a->strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -$a->strings["Invalid item."] = "Ongeldig item."; -$a->strings["Channel not found."] = "Kanaal niet gevonden."; -$a->strings["Page not found."] = "Pagina niet gevonden."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; -$a->strings["Block Name"] = "Bloknaam"; -$a->strings["Red Matrix Server - Setup"] = "RedMatrix Server - Setup"; -$a->strings["Could not connect to database."] = "Could not connect to database."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; -$a->strings["Could not create table."] = "Could not create table."; -$a->strings["Your site database has been installed."] = "Your hub database has been installed."; -$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; -$a->strings["System check"] = "System check"; +$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; +$a->strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; +$a->strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; +$a->strings["Visible To"] = "Zichtbaar voor"; +$a->strings["All Connections"] = "Alle connecties"; +$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; +$a->strings["Previous"] = "Vorige"; $a->strings["Next"] = "Volgende"; -$a->strings["Check again"] = "Check again"; -$a->strings["Database connection"] = "Database connection"; -$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "In order to install RedMatrix we need to know how to connect to your database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; -$a->strings["Database Server Name"] = "Database Server Name"; -$a->strings["Default is localhost"] = "Default is localhost"; -$a->strings["Database Port"] = "Database Port"; -$a->strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; -$a->strings["Database Login Name"] = "Database Login Name"; -$a->strings["Database Login Password"] = "Database Login Password"; -$a->strings["Database Name"] = "Database Name"; -$a->strings["Database Type"] = "Database Type"; -$a->strings["Site administrator email address"] = "Hub administrator email address"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; -$a->strings["Website URL"] = "Hub URL"; -$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; -$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; -$a->strings["Site settings"] = "Hub settings"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."; -$a->strings["PHP executable path"] = "PHP executable path"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; -$a->strings["Command line PHP"] = "Command line PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; -$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generate encryption keys"; -$a->strings["libCurl PHP module"] = "libCurl PHP module"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; -$a->strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; -$a->strings["mb_string PHP module"] = "mb_string PHP module"; -$a->strings["mcrypt PHP module"] = "mcrypt PHP module"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; -$a->strings["proc_open"] = "proc_open"; -$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; -$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; -$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; -$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; -$a->strings["%s is writable"] = "%s is writable"; -$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; -$a->strings["store is writable"] = "store is writable"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; -$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."; -$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; -$a->strings["SSL certificate validation"] = "SSL certificate validation"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; -$a->strings["Url rewrite is working"] = "Url rewrite is working"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."; -$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; -$a->strings["

    What next

    "] = "

    Wat nu

    "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +$a->strings["Export"] = "Exporteren"; +$a->strings["Event details"] = "Details van gebeurtenis"; +$a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; +$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +$a->strings["Event Starts:"] = "Begin gebeurtenis:"; +$a->strings["Required"] = "Vereist"; +$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant"; +$a->strings["Event Finishes:"] = "Einde gebeurtenis:"; +$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +$a->strings["Description:"] = "Omschrijving:"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Deel deze gebeurtenis"; +$a->strings["Public Sites"] = "Openbare hubs"; +$a->strings["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."] = "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +$a->strings["Site URL"] = "URL hub"; +$a->strings["Access Type"] = "Toegangstype"; +$a->strings["Registration Policy"] = "Registratiebeleid"; +$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +$a->strings["Select a bookmark folder"] = "Kies een bladwijzermap"; +$a->strings["Save Bookmark"] = "Bladwijzer opslaan"; +$a->strings["URL of bookmark"] = "URL van bladwijzer"; +$a->strings["Description"] = "Omschrijving"; +$a->strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; +$a->strings["Room not found"] = "Chatkanaal niet gevonden"; +$a->strings["Leave Room"] = "Chatkanaal verlaten"; +$a->strings["Delete This Room"] = "Chatkanaal verwijderen"; +$a->strings["I am away right now"] = "Ik ben momenteel afwezig"; +$a->strings["I am online"] = "Ik ben online"; +$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +$a->strings["New Chatroom"] = "Nieuw chatkanaal"; +$a->strings["Chatroom Name"] = "Naam chatkanaal"; +$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; +$a->strings["Away"] = "Afwezig"; +$a->strings["Online"] = "Online"; +$a->strings["Please login."] = "Inloggen."; +$a->strings["Item not found"] = "Item niet gevonden"; +$a->strings["Item is not editable"] = "Item is niet te bewerken"; +$a->strings["Edit post"] = "Bericht bewerken"; +$a->strings["Delete item?"] = "Item verwijderen?"; +$a->strings["Insert YouTube video"] = "YouTube-video invoegen"; +$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen"; +$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; +$a->strings["Remove This Channel"] = "Verwijder dit kanaal"; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden."; +$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; +$a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd."; +$a->strings["Remove Channel"] = "Kanaal verwijderen"; +$a->strings["No channel."] = "Geen kanaal."; +$a->strings["Common connections"] = "Veel voorkomende connecties"; +$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; +$a->strings["The error message was:"] = "Het foutbericht was:"; +$a->strings["Authentication failed."] = "Authenticatie mislukt."; +$a->strings["Remote Authentication"] = "Authenticatie op afstand"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; +$a->strings["Authenticate"] = "Authenticeren"; +$a->strings["No valid account found."] = "Geen geldige account gevonden."; +$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; +$a->strings["Site Member (%s)"] = "Lid van hub (%s)"; +$a->strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +$a->strings["Password Reset"] = "Wachtwoord vergeten?"; +$a->strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +$a->strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +$a->strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +$a->strings["click here to login"] = "klik dan hier om in te loggen"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +$a->strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; +$a->strings["Email Address"] = "E-mailadres"; +$a->strings["Reset"] = "Opnieuw instellen"; $a->strings["Name is required"] = "Naam is vereist"; $a->strings["Key and Secret are required"] = "Key en secret zijn vereist"; $a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; @@ -1112,7 +1214,7 @@ $a->strings["Default Post Location:"] = "Standaardlocatie bericht:"; $a->strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; $a->strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; $a->strings["Adult Content"] = "Inhoud voor volwassenen"; -$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de hashtag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; +$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; $a->strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; $a->strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; $a->strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; @@ -1122,7 +1224,7 @@ $a->strings["Very Public - extremely permissive (should be used with caution $a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; $a->strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; $a->strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; -$a->strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te labelen"; +$a->strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; $a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; $a->strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen"; $a->strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; @@ -1161,6 +1263,7 @@ $a->strings["System info messages"] = "Systeemmededelingen"; $a->strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; $a->strings["New connections"] = "Nieuwe connecties"; $a->strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; +$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; $a->strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; $a->strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; $a->strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; @@ -1169,96 +1272,6 @@ $a->strings["Please enable expert mode (in Setting $a->strings["Miscellaneous Settings"] = "Diverse instellingen"; $a->strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; $a->strings["Remove this channel"] = "Verwijder dit kanaal"; -$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Gebeurtenis bewerken"; -$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; -$a->strings["Previous"] = "Vorige"; -$a->strings["Export"] = "Exporteren"; -$a->strings["Event details"] = "Details van gebeurtenis"; -$a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; -$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -$a->strings["Event Starts:"] = "Begin gebeurtenis:"; -$a->strings["Required"] = "Vereist"; -$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant"; -$a->strings["Event Finishes:"] = "Einde gebeurtenis:"; -$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -$a->strings["Description:"] = "Omschrijving:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["Public Sites"] = "Openbare hubs"; -$a->strings["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."] = "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -$a->strings["Site URL"] = "URL hub"; -$a->strings["Access Type"] = "Toegangstype"; -$a->strings["Registration Policy"] = "Registratiebeleid"; -$a->strings["Location"] = "Locatie"; -$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; -$a->strings["Select a bookmark folder"] = "Kies een bladwijzermap"; -$a->strings["Save Bookmark"] = "Bladwijzer opslaan"; -$a->strings["URL of bookmark"] = "URL van bladwijzer"; -$a->strings["Description"] = "Omschrijving"; -$a->strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; -$a->strings["Room not found"] = "Chatkanaal niet gevonden"; -$a->strings["Leave Room"] = "Chatkanaal verlaten"; -$a->strings["Delete This Room"] = "Chatkanaal verwijderen"; -$a->strings["I am away right now"] = "Ik ben momenteel afwezig"; -$a->strings["I am online"] = "Ik ben online"; -$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -$a->strings["New Chatroom"] = "Nieuw chatkanaal"; -$a->strings["Chatroom Name"] = "Naam chatkanaal"; -$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -$a->strings["Version %s"] = "Versie %s"; -$a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; -$a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy."; -$a->strings["Running at web location"] = "Draaiend op weblocatie"; -$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Bezoek RedMatrix.me om meer te leren over de RedMatrix."; -$a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; -$a->strings["Site Administrators"] = "Hubbeheerders: "; -$a->strings["Away"] = "Afwezig"; -$a->strings["Online"] = "Online"; -$a->strings["Please login."] = "Inloggen."; -$a->strings["Continue"] = "Ga verder"; -$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -$a->strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; -$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; -$a->strings["Remove This Channel"] = "Verwijder dit kanaal"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden."; -$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; -$a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd."; -$a->strings["Remove Channel"] = "Kanaal verwijderen"; -$a->strings["No channel."] = "Geen kanaal."; -$a->strings["Common connections"] = "Veel voorkomende connecties"; -$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; -$a->strings["The error message was:"] = "Het foutbericht was:"; -$a->strings["Authentication failed."] = "Authenticatie mislukt."; -$a->strings["Remote Authentication"] = "Authenticatie op afstand"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; -$a->strings["Authenticate"] = "Authenticeren"; -$a->strings["Like/Dislike"] = "Leuk/niet leuk"; -$a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd."; -$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan."; -$a->strings["Invalid request."] = "Ongeldig verzoek"; -$a->strings["thing"] = "ding"; -$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -$a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; -$a->strings["Action completed."] = "Actie voltooid"; -$a->strings["Thank you."] = "Bedankt"; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; -$a->strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; $a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; $a->strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; $a->strings["Connection updated."] = "Connectie bijgewerkt."; @@ -1282,8 +1295,14 @@ $a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; $a->strings["Edit connection"] = "Connectie bewerken"; $a->strings["Search your connections"] = "Doorzoek jouw connecties"; $a->strings["Finding: "] = "Zoeken naar: "; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -$a->strings["Edit post"] = "Bericht bewerken"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; +$a->strings["Create a new channel"] = "Nieuw kanaal aanmaken"; +$a->strings["Current Channel"] = "Huidig kanaal"; +$a->strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; +$a->strings["Default Channel"] = "Standaardkanaal"; +$a->strings["Make Default"] = "Als standaard instellen"; +$a->strings["%d new messages"] = "%d nieuwe berichten"; +$a->strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; $a->strings["is now connected to"] = "is nu verbonden met"; $a->strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; $a->strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; @@ -1357,111 +1376,34 @@ $a->strings["Currently archived"] = "Momenteel gearchiveerd"; $a->strings["Currently pending"] = "Moeten nog geaccepteerd of afgewezen worden"; $a->strings["Hide this contact from others"] = "Verberg deze connectie voor anderen"; $a->strings["Replies/likes to your public posts may still be visible"] = "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven"; -$a->strings["Thing updated"] = "Ding bijgewerkt"; -$a->strings["Object store: failed"] = "Opslaan van ding mislukt"; -$a->strings["Thing added"] = "Ding toegevoegd"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Ding weergeven"; -$a->strings["item not found."] = "Item niet gevonden"; -$a->strings["Edit Thing"] = "Ding bewerken"; -$a->strings["Select a profile"] = "Kies een profiel"; -$a->strings["Post an activity"] = "Plaats een bericht"; -$a->strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -$a->strings["Name of thing e.g. something"] = "Naam van ding"; -$a->strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -$a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optioneel)"; -$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; -$a->strings["No valid account found."] = "Geen geldige account gevonden."; -$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; -$a->strings["Site Member (%s)"] = "Lid van hub (%s)"; -$a->strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -$a->strings["Password Reset"] = "Wachtwoord vergeten?"; -$a->strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -$a->strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -$a->strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -$a->strings["click here to login"] = "klik dan hier om in te loggen"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -$a->strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; -$a->strings["Email Address"] = "E-mailadres"; -$a->strings["Reset"] = "Opnieuw instellen"; +$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +$a->strings["Message deleted."] = "Bericht verwijderd."; +$a->strings["Message recalled."] = "Bericht ingetrokken."; +$a->strings["Send Private Message"] = "Privébericht versturen"; +$a->strings["To:"] = "Aan:"; +$a->strings["Subject:"] = "Onderwerp:"; +$a->strings["Your message:"] = "Jouw bericht:"; +$a->strings["Send"] = "Verzenden"; +$a->strings["Message not found."] = "Bericht niet gevonden"; +$a->strings["Delete message"] = "Bericht verwijderen"; +$a->strings["Recall message"] = "Bericht intrekken"; +$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; +$a->strings["Private Conversation"] = "Privéconversatie"; +$a->strings["Delete conversation"] = "Verwijder conversatie"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +$a->strings["Send Reply"] = "Antwoord versturen"; $a->strings["Bookmark added"] = "Bladwijzer toegevoegd"; $a->strings["My Bookmarks"] = "Mijn bladwijzers"; $a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; $a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; $a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++"; -$a->strings["Profile not found."] = "Profiel niet gevonden."; -$a->strings["Profile deleted."] = "Profiel verwijderd."; -$a->strings["Profile-"] = "Profiel-"; -$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; -$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; -$a->strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; -$a->strings["Profile Name is required."] = "Profielnaam is vereist"; -$a->strings["Marital Status"] = "Huwelijke status"; -$a->strings["Romantic Partner"] = "Romantische partner"; -$a->strings["Likes"] = "Houdt van"; -$a->strings["Dislikes"] = "Houdt niet van"; -$a->strings["Work/Employment"] = "Werk/arbeid"; -$a->strings["Religion"] = "Religie"; -$a->strings["Political Views"] = "Politieke overtuigingen"; -$a->strings["Gender"] = "Geslacht"; -$a->strings["Sexual Preference"] = "Seksuele voorkeur"; -$a->strings["Homepage"] = "Homepage"; -$a->strings["Interests"] = "Interesses"; -$a->strings["Address"] = "Kanaaladres"; -$a->strings["Profile updated."] = "Profiel bijgewerkt"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; -$a->strings["Edit Profile Details"] = "Profiel bewerken"; -$a->strings["View this profile"] = "Profiel weergeven"; -$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; -$a->strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; -$a->strings["Clone this profile"] = "Dit profiel klonen"; -$a->strings["Delete this profile"] = "Dit profiel verwijderen"; -$a->strings["Import profile from file"] = "Profiel vanuit bestand importeren"; -$a->strings["Export profile to file"] = "Profiel naar bestand exporteren"; -$a->strings["Profile Name:"] = "Profielnaam:"; -$a->strings["Your Full Name:"] = "Jouw volledige naam:"; -$a->strings["Title/Description:"] = "Titel/omschrijving:"; -$a->strings["Your Gender:"] = "Jouw geslacht"; -$a->strings["Birthday :"] = "Verjaardag: "; -$a->strings["Street Address:"] = "Straat en huisnummer:"; -$a->strings["Locality/City:"] = "Woonplaats:"; -$a->strings["Postal/Zip Code:"] = "Postcode:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:"; -$a->strings[" Marital Status:"] = " Huwelijkse staat:"; -$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl"; -$a->strings["Since [date]:"] = "Sinds [datum]:"; -$a->strings["Homepage URL:"] = "Adres homepage:"; -$a->strings["Religious Views:"] = "Religieuze overtuigingen"; -$a->strings["Keywords:"] = "Trefwoorden"; -$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; -$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt"; -$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf..."; -$a->strings["Hobbies/Interests"] = "Hobby's/interesses"; -$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; -$a->strings["My other channels"] = "Mijn andere kanalen"; -$a->strings["Musical interests"] = "Muzikale interesses"; -$a->strings["Books, literature"] = "Boeken/literatuur"; -$a->strings["Television"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment"; -$a->strings["Love/romance"] = "Liefde/romantiek"; -$a->strings["Work/employment"] = "Werk/arbeid"; -$a->strings["School/education"] = "School/onderwijs"; -$a->strings["This is your default profile."] = "Dit is jouw standaardprofiel"; -$a->strings["Age: "] = "Leeftijd:"; -$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren"; -$a->strings["Add profile things"] = "Dingen aan je profiel toevoegen"; -$a->strings["Include desirable objects in your profile"] = "Voeg door jou gewenste dingen aan jouw profiel toe"; -$a->strings["Item not found"] = "Item niet gevonden"; +$a->strings["network"] = "netwerk"; +$a->strings["Block Name"] = "Bloknaam"; $a->strings["Edit Block"] = "Blok bewerken"; $a->strings["Delete block?"] = "Blok verwijderen"; -$a->strings["Insert YouTube video"] = "YouTube-video invoegen"; -$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen"; $a->strings["Delete Block"] = "Blok verwijderen"; $a->strings["Layout updated."] = "Lay-out bijgewerkt."; $a->strings["Edit System Page Description"] = "Systeempagina's bewerken"; @@ -1471,10 +1413,8 @@ $a->strings["Layout Help"] = "Lay-out-hulp"; $a->strings["Edit Layout"] = "Lay-out bewerken"; $a->strings["Delete layout?"] = "Lay-out verwijderen?"; $a->strings["Delete Layout"] = "Lay-out verwijderen"; -$a->strings["Item is not editable"] = "Item is niet te bewerken"; -$a->strings["Delete item?"] = "Item verwijderen?"; -$a->strings["Help:"] = "Hulp:"; -$a->strings["Not Found"] = "Niet gevonden"; +$a->strings["Red Matrix - "The Network""] = "RedMatrix - "The Network""; +$a->strings["Welcome to %s"] = "Welkom op %s"; $a->strings["Edit Webpage"] = "Webpagina bewerken"; $a->strings["Delete webpage?"] = "Webpagina verwijderen?"; $a->strings["Delete Webpage"] = "Webpagina verwijderen"; @@ -1499,12 +1439,31 @@ $a->strings["Done Editing"] = "Klaar met bewerken"; $a->strings["Image uploaded successfully."] = "Uploaden afbeelding geslaagd"; $a->strings["Image upload failed."] = "Uploaden afbeelding mislukt"; $a->strings["Image size reduction [%s] failed."] = "Verkleinen [%s] van afbeelding mislukt."; -$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; -$a->strings["Empty post discarded."] = "Leeg bericht geannuleerd"; -$a->strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; -$a->strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; +$a->strings["Like/Dislike"] = "Leuk/niet leuk"; +$a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd."; +$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan."; +$a->strings["Invalid request."] = "Ongeldig verzoek"; +$a->strings["thing"] = "ding"; +$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +$a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; +$a->strings["Action completed."] = "Actie voltooid"; +$a->strings["Thank you."] = "Bedankt"; +$a->strings["Help:"] = "Hulp:"; +$a->strings["Not Found"] = "Niet gevonden"; +$a->strings["Thing updated"] = "Ding bijgewerkt"; +$a->strings["Object store: failed"] = "Opslaan van ding mislukt"; +$a->strings["Thing added"] = "Ding toegevoegd"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Ding weergeven"; +$a->strings["item not found."] = "Item niet gevonden"; +$a->strings["Edit Thing"] = "Ding bewerken"; +$a->strings["Select a profile"] = "Kies een profiel"; +$a->strings["Post an activity"] = "Plaats een bericht"; +$a->strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +$a->strings["Name of thing e.g. something"] = "Naam van ding"; +$a->strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +$a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optioneel)"; +$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; $a->strings["Contact not found."] = "Contact niet gevonden"; $a->strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; $a->strings["Suggest Friends"] = "Kanalen voorstellen"; @@ -1517,37 +1476,30 @@ $a->strings["Include all files and sub folders"] = "Toepassen op alle bestanden $a->strings["Return to file list"] = "Terugkeren naar bestandlijst "; $a->strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; $a->strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; -$a->strings["network"] = "netwerk"; -$a->strings["No potential page delegates located."] = "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed."; -$a->strings["Delegate Page Management"] = "Accountbeheer uitbesteden"; -$a->strings["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."] = "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd."; -$a->strings["Existing Page Managers"] = "Bestaande accountbeheerders"; -$a->strings["Existing Page Delegates"] = "Bestaande gevolmachtigde accountbeheerders"; -$a->strings["Potential Delegates"] = "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed."; -$a->strings["Remove"] = "Verwijderen"; -$a->strings["Add"] = "Toevoegen"; -$a->strings["No entries."] = "Geen"; +$a->strings["Continue"] = "Ga verder"; +$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +$a->strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +$a->strings["- select -"] = "- kies map -"; +$a->strings["Location not found."] = "Locatie niet gevonden."; +$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; +$a->strings["No locations found."] = "Geen locaties gevonden."; +$a->strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +$a->strings["Location (address)"] = "Locatie (adres)"; +$a->strings["Primary Location"] = "Primaire locatie"; +$a->strings["Drop location"] = "Locatie verwijderen"; $a->strings["Channel added."] = "Kanaal toegevoegd."; -$a->strings["Collection created."] = "Collectie aangemaakt"; -$a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden"; -$a->strings["Collection updated."] = "Collectie bijgewerkt."; -$a->strings["Create a collection of channels."] = "Kanaalcollectie aanmaken"; -$a->strings["Collection Name: "] = "Naam collectie:"; -$a->strings["Members are visible to other channels"] = "Kanalen in deze collectie zijn zichtbaar voor andere kanalen"; -$a->strings["Collection removed."] = "Collectie verwijderd"; -$a->strings["Unable to remove collection."] = "Verwijderen collectie mislukt"; -$a->strings["Collection Editor"] = "Collectiebewerker"; -$a->strings["Members"] = "Kanalen"; -$a->strings["All Connected Channels"] = "Alle kanaalconnecties"; -$a->strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; -$a->strings["Red Matrix - "The Network""] = "RedMatrix - "The Network""; -$a->strings["Welcome to %s"] = "Welkom op %s"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; $a->strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; $a->strings["Nothing to import."] = "Niets gevonden om te importeren"; $a->strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; $a->strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; $a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; +$a->strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; $a->strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; $a->strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; $a->strings["Import completed."] = "Import voltooid."; @@ -1562,10 +1514,98 @@ $a->strings["Your old login password"] = "Wachtwoord van jouw oude account"; $a->strings["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."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; $a->strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; $a->strings["Import existing posts if possible"] = "Importeer bestaande berichten (wanneer mogelijk)"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde het %3\$s van %2\$s met %4\$s"; -$a->strings["Tag removed"] = "Label verwijderd"; -$a->strings["Remove Item Tag"] = "Verwijder itemlabel"; -$a->strings["Select a tag to remove: "] = "Kies een label om te verwijderen"; +$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; +$a->strings["Empty post discarded."] = "Leeg bericht geannuleerd"; +$a->strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; +$a->strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; +$a->strings["Help with this feature"] = "Hulp voor dit onderdeel"; +$a->strings["Layout Name"] = "Naam lay-out"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; +$a->strings["Red Matrix Server - Setup"] = "RedMatrix Server - Setup"; +$a->strings["Could not connect to database."] = "Could not connect to database."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; +$a->strings["Could not create table."] = "Could not create table."; +$a->strings["Your site database has been installed."] = "Your hub database has been installed."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; +$a->strings["System check"] = "System check"; +$a->strings["Check again"] = "Check again"; +$a->strings["Database connection"] = "Database connection"; +$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "In order to install RedMatrix we need to know how to connect to your database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; +$a->strings["Database Server Name"] = "Database Server Name"; +$a->strings["Default is localhost"] = "Default is localhost"; +$a->strings["Database Port"] = "Database Port"; +$a->strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; +$a->strings["Database Login Name"] = "Database Login Name"; +$a->strings["Database Login Password"] = "Database Login Password"; +$a->strings["Database Name"] = "Database Name"; +$a->strings["Database Type"] = "Database Type"; +$a->strings["Site administrator email address"] = "Hub administrator email address"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +$a->strings["Website URL"] = "Hub URL"; +$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; +$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; +$a->strings["Site settings"] = "Hub settings"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."; +$a->strings["PHP executable path"] = "PHP executable path"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; +$a->strings["Command line PHP"] = "Command line PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; +$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generate encryption keys"; +$a->strings["libCurl PHP module"] = "libCurl PHP module"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +$a->strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; +$a->strings["mb_string PHP module"] = "mb_string PHP module"; +$a->strings["mcrypt PHP module"] = "mcrypt PHP module"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; +$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; +$a->strings["%s is writable"] = "%s is writable"; +$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; +$a->strings["store is writable"] = "store is writable"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."; +$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; +$a->strings["SSL certificate validation"] = "SSL certificate validation"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; +$a->strings["Url rewrite is working"] = "Url rewrite is working"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."; +$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; +$a->strings["

    What next

    "] = "

    Wat nu

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +$a->strings["Tag removed"] = "Tag verwijderd"; +$a->strings["Remove Item Tag"] = "Verwijder item-tag"; +$a->strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; $a->strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; $a->strings["Site"] = "Hub-instellingen"; $a->strings["Accounts"] = "Accounts"; @@ -1722,78 +1762,6 @@ $a->strings["Help text"] = "Helptekst"; $a->strings["Additional info (optional)"] = "Extra informatie (optioneel)"; $a->strings["Field definition not found"] = "Velddefinitie niet gevonden"; $a->strings["Edit Profile Field"] = "Profielveld bewerken"; -$a->strings["Location not found."] = "Locatie niet gevonden."; -$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; -$a->strings["No locations found."] = "Geen locaties gevonden."; -$a->strings["Manage Channel Locations"] = "Kanaallocaties beheren"; -$a->strings["Location (address)"] = "Locatie (adres)"; -$a->strings["Primary Location"] = "Primaire locatie"; -$a->strings["Drop location"] = "Locatie verwijderen"; -$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -$a->strings["Message deleted."] = "Bericht verwijderd."; -$a->strings["Message recalled."] = "Bericht ingetrokken."; -$a->strings["Send Private Message"] = "Privébericht versturen"; -$a->strings["To:"] = "Aan:"; -$a->strings["Subject:"] = "Onderwerp:"; -$a->strings["Your message:"] = "Jouw bericht:"; -$a->strings["Send"] = "Verzenden"; -$a->strings["Message not found."] = "Bericht niet gevonden"; -$a->strings["Delete message"] = "Bericht verwijderen"; -$a->strings["Recall message"] = "Bericht intrekken"; -$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; -$a->strings["Private Conversation"] = "Privéconversatie"; -$a->strings["Delete conversation"] = "Verwijder conversatie"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -$a->strings["Send Reply"] = "Antwoord versturen"; -$a->strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; -$a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; -$a->strings["Please join us on Red"] = "Uitnodiging voor de RedMatrix"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; -$a->strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; -$a->strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", -); -$a->strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; -$a->strings["Send invitations"] = "Uitnodigingen verzenden"; -$a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; -$a->strings["Please join my community on RedMatrix."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me."; -$a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven:"; -$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):"; -$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:"; -$a->strings["or visit "] = "of bezoek "; -$a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; -$a->strings["Create a new channel"] = "Nieuw kanaal aanmaken"; -$a->strings["Current Channel"] = "Huidig kanaal"; -$a->strings["Attach to one of your channels by selecting it."] = "Gebruik een van jouw kanalen door op een te klikken."; -$a->strings["Default Channel"] = "Standaardkanaal"; -$a->strings["Make Default"] = "Als standaard instellen"; -$a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; -$a->strings["Help with this feature"] = "Hulp voor dit onderdeel"; -$a->strings["Layout Name"] = "Naam lay-out"; -$a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -$a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["No connections."] = "Geen connecties."; -$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; -$a->strings["View Connnections"] = "Connecties weergeven"; -$a->strings["Hub not found."] = "Hub niet gevonden."; -$a->strings["Total votes"] = "Totaal aantal stemmen"; -$a->strings["Average Rating"] = "Gemiddelde waardering"; -$a->strings["No such group"] = "Collectie niet gevonden"; -$a->strings["Search Results For:"] = "Zoekresultaten voor:"; -$a->strings["Collection is empty"] = "Collectie is leeg"; -$a->strings["Collection: "] = "Collectie: "; -$a->strings["Connection: "] = "Connectie: "; -$a->strings["Invalid connection."] = "Ongeldige connectie."; -$a->strings["Wall Photos"] = "Kanaalfoto's"; -$a->strings["Profile Match"] = "Profielovereenkomst"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; -$a->strings["is interested in:"] = "is geïnteresseerd in:"; -$a->strings["No matches"] = "Geen overeenkomsten"; $a->strings["Menu updated."] = "Menu aangepast. "; $a->strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; $a->strings["Menu created."] = "Menu aangemaakt."; @@ -1816,6 +1784,50 @@ $a->strings["Menu deleted."] = "Menu verwijderd."; $a->strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; $a->strings["Edit Menu"] = "Menu bewerken"; $a->strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; +$a->strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; +$a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; +$a->strings["Please join us on Red"] = "Uitnodiging voor de RedMatrix"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; +$a->strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; +$a->strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +$a->strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; +$a->strings["Send invitations"] = "Uitnodigingen verzenden"; +$a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; +$a->strings["Please join my community on RedMatrix."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me."; +$a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven:"; +$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):"; +$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:"; +$a->strings["or visit "] = "of bezoek "; +$a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; +$a->strings["No such group"] = "Collectie niet gevonden"; +$a->strings["Search Results For:"] = "Zoekresultaten voor:"; +$a->strings["Collection is empty"] = "Collectie is leeg"; +$a->strings["Collection: "] = "Collectie: "; +$a->strings["Connection: "] = "Connectie: "; +$a->strings["Invalid connection."] = "Ongeldige connectie."; +$a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +$a->strings["Discard"] = "Annuleren"; +$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; +$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; +$a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; +$a->strings["No connections."] = "Geen connecties."; +$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; +$a->strings["View Connnections"] = "Connecties weergeven"; +$a->strings["Hub not found."] = "Hub niet gevonden."; +$a->strings["Total votes"] = "Totaal aantal stemmen"; +$a->strings["Average Rating"] = "Gemiddelde waardering"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +$a->strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; +$a->strings["Wall Photos"] = "Kanaalfoto's"; +$a->strings["Profile Match"] = "Profielovereenkomst"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; +$a->strings["is interested in:"] = "is geïnteresseerd in:"; +$a->strings["No matches"] = "Geen overeenkomsten"; $a->strings["Conversation removed."] = "Conversatie verwijderd"; $a->strings["No messages."] = "Geen berichten"; $a->strings["D, d M Y - g:i A"] = "D, j M Y - G:i"; @@ -1825,28 +1837,12 @@ $a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"A $a->strings["Choose a short nickname"] = "Kies een korte bijnaam"; $a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Jouw bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) aan te maken, die je dan kan delen met anderen."; $a->strings["Or import an existing channel from another location"] = "Of importeer een bestaand kanaal vanaf een andere locatie."; -$a->strings["Channel Type"] = "Kanaaltype"; $a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Kies een kanaaltype (bijv. een persoonlijk kanaal voor een sociaal netwerk of eentje voor een groepsforum) en jouw behoefte aan privacy, zodat wij voor jou de beste permissies kunnen kiezen."; -$a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -$a->strings["Discard"] = "Annuleren"; -$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; -$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["Channel Type"] = "Kanaaltype"; +$a->strings["Read more about roles"] = "Lees meer over kanaaltypes"; $a->strings["Xchan Lookup"] = "Xchan opzoeken"; $a->strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; $a->strings["invalid target signature"] = "ongeldig doelkenmerk"; -$a->strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -$a->strings["Post successful."] = "Verzenden bericht geslaagd."; -$a->strings["Gender: "] = "Geslacht:"; -$a->strings["Status: "] = "Status: "; -$a->strings["Homepage: "] = "Homepage: "; -$a->strings["Hometown: "] = "Oorspronkelijk uit: "; -$a->strings["About: "] = "Over: "; -$a->strings["Public Forum:"] = "Openbaar forum:"; -$a->strings["Keywords: "] = "Trefwoorden: "; -$a->strings["Finding:"] = "Gezocht naar:"; -$a->strings["next page"] = "volgende pagina"; -$a->strings["previous page"] = "vorige pagina"; -$a->strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; $a->strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; $a->strings["Album not found."] = "Album niet gevonden."; $a->strings["Delete Album"] = "Verwijder album"; @@ -1874,15 +1870,26 @@ $a->strings["Edit photo"] = "Foto bewerken"; $a->strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; $a->strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; $a->strings["Caption"] = "Bijschrift"; -$a->strings["Add a Tag"] = "Label toevoegen"; +$a->strings["Add a Tag"] = "Tag toevoegen"; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; $a->strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; $a->strings["In This Photo:"] = "Op deze foto:"; $a->strings["View Album"] = "Album weergeven"; $a->strings["Recent Photos"] = "Recente foto's"; -$a->strings["sent you a private message"] = "stuurde jou een privébericht"; -$a->strings["added your channel"] = "voegde jouw kanaal toe"; -$a->strings["posted an event"] = "plaatste een gebeurtenis"; +$a->strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +$a->strings["Post successful."] = "Verzenden bericht geslaagd."; +$a->strings["Gender: "] = "Geslacht:"; +$a->strings["Status: "] = "Status: "; +$a->strings["Homepage: "] = "Homepage: "; +$a->strings["Hometown: "] = "Oorspronkelijk uit: "; +$a->strings["About: "] = "Over: "; +$a->strings["Public Forum:"] = "Openbaar forum:"; +$a->strings["Keywords: "] = "Trefwoorden: "; +$a->strings["Finding:"] = "Gezocht naar:"; +$a->strings["next page"] = "volgende pagina"; +$a->strings["previous page"] = "vorige pagina"; +$a->strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; $a->strings["App installed."] = "App geïnstalleerd"; $a->strings["Malformed app."] = "Misvormde app."; $a->strings["Embed code"] = "Insluitcode"; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 63cf27d58..7a6ceb968 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1978,7 +1978,7 @@ img.mail-list-sender-photo { .chat-item-text { border-radius: $radiuspx; - background-color: #eee; + background-color: $chat_txtbgcol; } /* nav bootstrap */ diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 50ec9613b..5d44a9b9d 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -272,6 +272,8 @@ if(! $a->install) { $advperm_gradientcol = "#E8E8E8"; if(! $cal_bgcolour) $cal_bgcolour = "#FCF8E3"; + if(! $chat_txtbgcol) + $chat_txtbgcol = "#EEE"; if(! $fancybox_bgcolour) $fancybox_bgcolour = "#FFF"; if (!$comment_padding) @@ -409,6 +411,7 @@ $options = array ( '$advperm_bordercol' => $advperm_bordercol, '$advperm_gradientcol' => $advperm_gradientcol, '$cal_bgcolour' => $cal_bgcolour, +'$chat_txtbgcol' => $chat_txtbgcol, '$fancybox_bgcolour' => $fancybox_bgcolour, '$pmenu_top' => $pmenu_top, '$pmenu_reply' => $pmenu_reply, diff --git a/view/theme/redbasic/schema/dark.php b/view/theme/redbasic/schema/dark.php index 51a6d23a4..0203d30cd 100644 --- a/view/theme/redbasic/schema/dark.php +++ b/view/theme/redbasic/schema/dark.php @@ -176,6 +176,8 @@ $advperm_gradientcol = "#1E1E1E"; if(! $cal_bgcolour) $cal_bgcolour = "#333"; + if(! $chat_txtbgcol) + $chat_txtbgcol = "#222"; if(! $fancybox_bgcolour) $fancybox_bgcolour = "#1E1E1E"; if (!$admintable_hoverbgcol) diff --git a/view/theme/redbasic/schema/simple_black_on_white.php b/view/theme/redbasic/schema/simple_black_on_white.php index 2bf002bca..ddbcae495 100644 --- a/view/theme/redbasic/schema/simple_black_on_white.php +++ b/view/theme/redbasic/schema/simple_black_on_white.php @@ -176,6 +176,8 @@ $advperm_gradientcol = "#fff"; if(! $cal_bgcolour) $cal_bgcolour = "#fff"; + if(! $chat_txtbgcol) + $chat_txtbgcol = "#fff"; if(! $fancybox_bgcolour) $fancybox_bgcolour = "#fff"; if (!$admintable_hoverbgcol) diff --git a/view/theme/redbasic/schema/simple_green_on_black.php b/view/theme/redbasic/schema/simple_green_on_black.php index 15adcf198..f034185f7 100644 --- a/view/theme/redbasic/schema/simple_green_on_black.php +++ b/view/theme/redbasic/schema/simple_green_on_black.php @@ -176,6 +176,8 @@ if (! $navaside_bghover) $advperm_gradientcol = "#000"; if(! $cal_bgcolour) $cal_bgcolour = "#000"; + if(! $chat_txtbgcol) + $chat_txtbgcol = "#000"; if(! $fancybox_bgcolour) $fancybox_bgcolour = "#000"; if (!$admintable_hoverbgcol) diff --git a/view/theme/redbasic/schema/simple_white_on_black.php b/view/theme/redbasic/schema/simple_white_on_black.php index 96450d835..95ede29ed 100644 --- a/view/theme/redbasic/schema/simple_white_on_black.php +++ b/view/theme/redbasic/schema/simple_white_on_black.php @@ -176,6 +176,8 @@ $advperm_gradientcol = "#000"; if(! $cal_bgcolour) $cal_bgcolour = "#000"; + if(! $chat_txtbgcol) + $chat_txtbgcol = "#000"; if(! $fancybox_bgcolour) $fancybox_bgcolour = "#000"; if (!$admintable_hoverbgcol) From 028dff44cccc27db4140ad41fc4893d6cd6ad0f0 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 4 Jan 2015 00:47:44 -0800 Subject: [PATCH 9/9] remove hard-coded url to caterva.eu from events code. --- version.inc | 2 +- view/tpl/event_head.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/version.inc b/version.inc index a972afa02..a2c77cbe0 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-01-02.907 +2015-01-04.909 diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl index 03ea833f9..830347555 100755 --- a/view/tpl/event_head.tpl +++ b/view/tpl/event_head.tpl @@ -26,7 +26,7 @@ }, loading: function(isLoading, view) { if(!isLoading) { - $('td.fc-day').dblclick(function() { window.location.href='https://caterva.eu/events/new?start='+$(this).data('date'); }); + $('td.fc-day').dblclick(function() { window.location.href='/events/new?start='+$(this).data('date'); }); } },
    {{$them}}{{$me}}