From c7aa8bf1b4c2a7ca4d7bf1552aabcb0c0a54756e Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 1 Jan 2015 23:47:14 -0800 Subject: 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()) -- cgit v1.2.3 From 6b5f8bfbe45740703de12ff3c5895a92c605cbda Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Fri, 2 Jan 2015 12:08:36 +0100 Subject: 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) ); } -- cgit v1.2.3 From 53a26661141fcba123da22ff9d96459299d469e3 Mon Sep 17 00:00:00 2001 From: Erik Lundin Date: Fri, 2 Jan 2015 16:40:50 +0100 Subject: 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.

-- cgit v1.2.3 From ed2917118dd97df6b97c6ee34fe77b7f1818ffcd Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 2 Jan 2015 17:26:57 -0800 Subject: doc updates --- doc/html/apw_2php_2style_8php.html | 2 +- doc/html/boot_8php.html | 56 +- doc/html/boot_8php.js | 3 + ...sRedMatrix_1_1RedDAV_1_1RedBrowser-members.html | 7 +- .../classRedMatrix_1_1RedDAV_1_1RedBrowser.html | 38 + doc/html/classRedMatrix_1_1RedDAV_1_1RedBrowser.js | 1 + doc/html/datetime_8php.html | 71 +- 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 | 4343 ++++++++++---------- version.inc | 2 +- 63 files changed, 2768 insertions(+), 2664 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) @@ -416,33 +414,21 @@ Functions - +
- + - - - - - - - - - - - - - + - + @@ -452,16 +438,16 @@ Functions
field_timezone get_dim (  $name = 'timezone',
 $label = '',
 $current = 'America/Los_Angeles', $y,
 $help $m 
-

Referenced by setup_content().

+

Referenced by cal(), events_content(), list_post_dates(), and posted_dates().

- +
- + @@ -480,35 +466,24 @@ Functions
get_dim get_first_dim (   $y,
-

Referenced by cal(), events_content(), list_post_dates(), and posted_dates().

+

Referenced by cal().

- +
- + - - - - - - - - - - + - -
get_first_dim get_timezones ( $y,
 $m 
) )
-

Referenced by cal().

+

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,360 +1026,272 @@ 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/text.php:320 -msgid "prev" +#: ../../include/identity.php:31 ../../mod/item.php:1115 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/text.php:322 -msgid "first" +#: ../../include/identity.php:66 +msgid "Empty name" msgstr "" -#: ../../include/text.php:351 -msgid "last" +#: ../../include/identity.php:68 +msgid "Name too long" msgstr "" -#: ../../include/text.php:354 -msgid "next" +#: ../../include/identity.php:169 +msgid "No account identifier" msgstr "" -#: ../../include/text.php:366 -msgid "older" +#: ../../include/identity.php:182 +msgid "Nickname is required." msgstr "" -#: ../../include/text.php:368 -msgid "newer" +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/text.php:756 -msgid "No connections" +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/text.php:772 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "" -msgstr[1] "" +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "" -#: ../../include/text.php:785 -msgid "View Connections" +#: ../../include/identity.php:343 +msgid "Default Profile" msgstr "" -#: ../../include/text.php:842 ../../include/text.php:854 -#: ../../include/apps.php:147 ../../include/nav.php:173 -#: ../../mod/search.php:30 -msgid "Search" +#: ../../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/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" +#: ../../include/identity.php:643 +msgid "Requested channel is not available." msgstr "" -#: ../../include/text.php:920 -msgid "poke" +#: ../../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/text.php:920 ../../include/conversation.php:243 -msgid "poked" +#: ../../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/text.php:921 -msgid "ping" +#: ../../include/identity.php:854 ../../mod/profiles.php:757 +msgid "Change profile photo" msgstr "" -#: ../../include/text.php:921 -msgid "pinged" +#: ../../include/identity.php:861 +msgid "Profiles" msgstr "" -#: ../../include/text.php:922 -msgid "prod" +#: ../../include/identity.php:861 +msgid "Manage/edit profiles" msgstr "" -#: ../../include/text.php:922 -msgid "prodded" +#: ../../include/identity.php:862 ../../mod/profiles.php:758 +msgid "Create New Profile" msgstr "" -#: ../../include/text.php:923 -msgid "slap" +#: ../../include/identity.php:865 ../../include/nav.php:103 +msgid "Edit Profile" msgstr "" -#: ../../include/text.php:923 -msgid "slapped" +#: ../../include/identity.php:878 ../../mod/profiles.php:769 +msgid "Profile Image" msgstr "" -#: ../../include/text.php:924 -msgid "finger" +#: ../../include/identity.php:881 +msgid "visible to everybody" msgstr "" -#: ../../include/text.php:924 -msgid "fingered" +#: ../../include/identity.php:882 ../../mod/profiles.php:652 +#: ../../mod/profiles.php:773 +msgid "Edit visibility" msgstr "" -#: ../../include/text.php:925 -msgid "rebuff" +#: ../../include/identity.php:898 ../../include/identity.php:1135 +msgid "Gender:" msgstr "" -#: ../../include/text.php:925 -msgid "rebuffed" +#: ../../include/identity.php:899 ../../include/identity.php:1179 +msgid "Status:" msgstr "" -#: ../../include/text.php:935 -msgid "happy" +#: ../../include/identity.php:900 ../../include/identity.php:1190 +msgid "Homepage:" msgstr "" -#: ../../include/text.php:936 -msgid "sad" +#: ../../include/identity.php:901 +msgid "Online Now" msgstr "" -#: ../../include/text.php:937 -msgid "mellow" +#: ../../include/identity.php:979 ../../include/identity.php:1059 +#: ../../mod/ping.php:329 +msgid "g A l F d" msgstr "" -#: ../../include/text.php:938 -msgid "tired" +#: ../../include/identity.php:980 ../../include/identity.php:1060 +msgid "F d" msgstr "" -#: ../../include/text.php:939 -msgid "perky" +#: ../../include/identity.php:1025 ../../include/identity.php:1100 +#: ../../mod/ping.php:351 +msgid "[today]" msgstr "" -#: ../../include/text.php:940 -msgid "angry" +#: ../../include/identity.php:1037 +msgid "Birthday Reminders" msgstr "" -#: ../../include/text.php:941 -msgid "stupified" +#: ../../include/identity.php:1038 +msgid "Birthdays this week:" msgstr "" -#: ../../include/text.php:942 -msgid "puzzled" +#: ../../include/identity.php:1093 +msgid "[No description]" msgstr "" -#: ../../include/text.php:943 -msgid "interested" +#: ../../include/identity.php:1111 +msgid "Event Reminders" msgstr "" -#: ../../include/text.php:944 -msgid "bitter" +#: ../../include/identity.php:1112 +msgid "Events this week:" msgstr "" -#: ../../include/text.php:945 -msgid "cheerful" +#: ../../include/identity.php:1125 ../../include/identity.php:1254 +#: ../../include/apps.php:138 ../../mod/profperm.php:112 +msgid "Profile" msgstr "" -#: ../../include/text.php:946 -msgid "alive" +#: ../../include/identity.php:1133 ../../mod/settings.php:1022 +msgid "Full Name:" msgstr "" -#: ../../include/text.php:947 -msgid "annoyed" +#: ../../include/identity.php:1140 +msgid "Like this channel" msgstr "" -#: ../../include/text.php:948 -msgid "anxious" +#: ../../include/identity.php:1164 +msgid "j F, Y" msgstr "" -#: ../../include/text.php:949 -msgid "cranky" +#: ../../include/identity.php:1165 +msgid "j F" msgstr "" -#: ../../include/text.php:950 -msgid "disturbed" +#: ../../include/identity.php:1172 +msgid "Birthday:" msgstr "" -#: ../../include/text.php:951 -msgid "frustrated" +#: ../../include/identity.php:1176 +msgid "Age:" msgstr "" -#: ../../include/text.php:952 -msgid "depressed" +#: ../../include/identity.php:1185 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../include/text.php:953 -msgid "motivated" +#: ../../include/identity.php:1188 ../../mod/profiles.php:674 +msgid "Sexual Preference:" msgstr "" -#: ../../include/text.php:954 -msgid "relaxed" +#: ../../include/identity.php:1192 ../../mod/profiles.php:676 +msgid "Hometown:" msgstr "" -#: ../../include/text.php:955 -msgid "surprised" +#: ../../include/identity.php:1194 +msgid "Tags:" msgstr "" -#: ../../include/text.php:1121 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1121 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1121 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1121 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1121 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1121 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1121 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1125 -msgid "January" -msgstr "" - -#: ../../include/text.php:1125 -msgid "February" -msgstr "" - -#: ../../include/text.php:1125 -msgid "March" -msgstr "" - -#: ../../include/text.php:1125 -msgid "April" -msgstr "" - -#: ../../include/text.php:1125 -msgid "May" -msgstr "" - -#: ../../include/text.php:1125 -msgid "June" -msgstr "" - -#: ../../include/text.php:1125 -msgid "July" -msgstr "" - -#: ../../include/text.php:1125 -msgid "August" -msgstr "" - -#: ../../include/text.php:1125 -msgid "September" -msgstr "" - -#: ../../include/text.php:1125 -msgid "October" -msgstr "" - -#: ../../include/text.php:1125 -msgid "November" -msgstr "" - -#: ../../include/text.php:1125 -msgid "December" -msgstr "" - -#: ../../include/text.php:1203 -msgid "unknown.???" -msgstr "" - -#: ../../include/text.php:1204 -msgid "bytes" -msgstr "" - -#: ../../include/text.php:1240 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1309 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1385 ../../include/text.php:1396 -msgid "Click to open/close" +#: ../../include/identity.php:1196 ../../mod/profiles.php:677 +msgid "Political Views:" msgstr "" -#: ../../include/text.php:1544 ../../mod/events.php:414 -msgid "Link to Source" +#: ../../include/identity.php:1198 +msgid "Religion:" msgstr "" -#: ../../include/text.php:1563 -msgid "Select a page layout: " +#: ../../include/identity.php:1200 +msgid "About:" msgstr "" -#: ../../include/text.php:1566 ../../include/text.php:1626 -msgid "default" +#: ../../include/identity.php:1202 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/text.php:1599 -msgid "Page content type: " +#: ../../include/identity.php:1204 ../../mod/profiles.php:680 +msgid "Likes:" msgstr "" -#: ../../include/text.php:1638 -msgid "Select an alternate language" +#: ../../include/identity.php:1206 ../../mod/profiles.php:681 +msgid "Dislikes:" msgstr "" -#: ../../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" +#: ../../include/identity.php:1209 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/text.php:1760 ../../include/conversation.php:123 -#: ../../mod/tagger.php:49 -msgid "event" +#: ../../include/identity.php:1221 +msgid "My other channels:" msgstr "" -#: ../../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" +#: ../../include/identity.php:1224 +msgid "Musical interests:" msgstr "" -#: ../../include/text.php:1765 ../../include/conversation.php:150 -#: ../../mod/tagger.php:55 -msgid "comment" +#: ../../include/identity.php:1226 +msgid "Books, literature:" msgstr "" -#: ../../include/text.php:1770 -msgid "activity" +#: ../../include/identity.php:1228 +msgid "Television:" msgstr "" -#: ../../include/text.php:2057 -msgid "Design" +#: ../../include/identity.php:1230 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/text.php:2060 -msgid "Blocks" +#: ../../include/identity.php:1232 +msgid "Love/Romance:" msgstr "" -#: ../../include/text.php:2061 -msgid "Menus" +#: ../../include/identity.php:1234 +msgid "Work/employment:" msgstr "" -#: ../../include/text.php:2062 -msgid "Layouts" +#: ../../include/identity.php:1236 +msgid "School/education:" msgstr "" -#: ../../include/text.php:2063 -msgid "Pages" +#: ../../include/identity.php:1256 +msgid "Like this thing" msgstr "" #: ../../include/contact_widgets.php:14 @@ -1388,577 +1359,494 @@ msgstr[1] "" msgid "show more" msgstr "" -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" +#: ../../include/event.php:376 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/enotify.php:42 -msgid "redmatrix" +#: ../../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/enotify.php:44 -msgid "Thank You," +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" +#: ../../include/group.php:254 ../../mod/admin.php:735 +msgid "All Channels" msgstr "" -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " +#: ../../include/group.php:276 +msgid "edit" msgstr "" -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" +#: ../../include/group.php:298 +msgid "Collections" msgstr "" -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." +#: ../../include/group.php:299 +msgid "Edit collection" msgstr "" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." +#: ../../include/group.php:300 +msgid "Create a new collection" msgstr "" -#: ../../include/enotify.php:88 -msgid "a private message" +#: ../../include/group.php:301 +msgid "Channels not in any collection" msgstr "" -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." +#: ../../include/group.php:303 ../../include/widgets.php:273 +msgid "add" msgstr "" -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +#: ../../include/account.php:23 +msgid "Not a valid email address" msgstr "" -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +#: ../../include/account.php:64 +msgid "An invitation is required." msgstr "" -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." +#: ../../include/account.php:68 +msgid "Invitation could not be verified." 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." +#: ../../include/account.php:119 +msgid "Please enter the required information." msgstr "" -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" +#: ../../include/account.php:187 +msgid "Failed to store account information." msgstr "" -#: ../../include/enotify.php:184 +#: ../../include/account.php:245 #, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/enotify.php:186 +#: ../../include/account.php:313 #, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgid "Registration request at %s" msgstr "" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" msgstr "" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" +#: ../../include/account.php:337 +msgid "your registration password" msgstr "" -#: ../../include/enotify.php:212 +#: ../../include/account.php:340 ../../include/account.php:397 #, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgid "Registration details for %s" msgstr "" -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" +#: ../../include/account.php:406 +msgid "Account approved." msgstr "" -#: ../../include/enotify.php:226 +#: ../../include/account.php:440 #, php-format -msgid "%1$s, %2$s poked you at %3$s" +msgid "Registration revoked for %s" msgstr "" -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +#: ../../include/account.php:486 +msgid "Account verified. Please login." msgstr "" -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." msgstr "" -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" +#: ../../include/text.php:320 +msgid "prev" msgstr "" -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +#: ../../include/text.php:322 +msgid "first" msgstr "" -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +#: ../../include/text.php:351 +msgid "last" msgstr "" -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" +#: ../../include/text.php:354 +msgid "next" msgstr "" -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." +#: ../../include/text.php:366 +msgid "older" msgstr "" -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" +#: ../../include/text.php:368 +msgid "newer" msgstr "" -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +#: ../../include/text.php:756 +msgid "No connections" msgstr "" -#: ../../include/enotify.php:274 +#: ../../include/text.php:772 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." -msgstr "" +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "" +msgstr[1] "" -#: ../../include/enotify.php:280 -msgid "Name:" +#: ../../include/text.php:785 +msgid "View Connections" msgstr "" -#: ../../include/enotify.php:281 -msgid "Photo:" +#: ../../include/text.php:842 ../../include/text.php:854 +#: ../../include/apps.php:147 ../../include/nav.php:173 +#: ../../mod/search.php:30 +msgid "Search" msgstr "" -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." +#: ../../include/text.php:843 ../../include/text.php:855 +#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1339 +#: ../../mod/admin.php:1360 +msgid "Save" msgstr "" -#: ../../include/enotify.php:477 -msgid "[Red:Notify]" +#: ../../include/text.php:920 +msgid "poke" msgstr "" -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." +#: ../../include/text.php:920 ../../include/conversation.php:243 +msgid "poked" 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." +#: ../../include/text.php:921 +msgid "ping" msgstr "" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" +#: ../../include/text.php:921 +msgid "pinged" msgstr "" -#: ../../include/group.php:254 ../../mod/admin.php:735 -msgid "All Channels" +#: ../../include/text.php:922 +msgid "prod" msgstr "" -#: ../../include/group.php:276 -msgid "edit" +#: ../../include/text.php:922 +msgid "prodded" msgstr "" -#: ../../include/group.php:298 -msgid "Collections" +#: ../../include/text.php:923 +msgid "slap" msgstr "" -#: ../../include/group.php:299 -msgid "Edit collection" +#: ../../include/text.php:923 +msgid "slapped" msgstr "" -#: ../../include/group.php:300 -msgid "Create a new collection" +#: ../../include/text.php:924 +msgid "finger" msgstr "" -#: ../../include/group.php:301 -msgid "Channels not in any collection" +#: ../../include/text.php:924 +msgid "fingered" msgstr "" -#: ../../include/group.php:303 ../../include/widgets.php:273 -msgid "add" +#: ../../include/text.php:925 +msgid "rebuff" msgstr "" -#: ../../include/identity.php:31 ../../mod/item.php:1112 -msgid "Unable to obtain identity information from database" +#: ../../include/text.php:925 +msgid "rebuffed" msgstr "" -#: ../../include/identity.php:66 -msgid "Empty name" +#: ../../include/text.php:935 +msgid "happy" msgstr "" -#: ../../include/identity.php:68 -msgid "Name too long" +#: ../../include/text.php:936 +msgid "sad" msgstr "" -#: ../../include/identity.php:169 -msgid "No account identifier" +#: ../../include/text.php:937 +msgid "mellow" msgstr "" -#: ../../include/identity.php:182 -msgid "Nickname is required." +#: ../../include/text.php:938 +msgid "tired" msgstr "" -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." +#: ../../include/text.php:939 +msgid "perky" msgstr "" -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../include/text.php:940 +msgid "angry" msgstr "" -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" +#: ../../include/text.php:941 +msgid "stupified" msgstr "" -#: ../../include/identity.php:343 -msgid "Default Profile" +#: ../../include/text.php:942 +msgid "puzzled" 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" +#: ../../include/text.php:943 +msgid "interested" msgstr "" -#: ../../include/identity.php:643 -msgid "Requested channel is not available." +#: ../../include/text.php:944 +msgid "bitter" 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." +#: ../../include/text.php:945 +msgid "cheerful" 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" +#: ../../include/text.php:946 +msgid "alive" msgstr "" -#: ../../include/identity.php:854 ../../mod/profiles.php:740 -msgid "Change profile photo" +#: ../../include/text.php:947 +msgid "annoyed" msgstr "" -#: ../../include/identity.php:860 -msgid "Profiles" +#: ../../include/text.php:948 +msgid "anxious" msgstr "" -#: ../../include/identity.php:860 -msgid "Manage/edit profiles" +#: ../../include/text.php:949 +msgid "cranky" msgstr "" -#: ../../include/identity.php:861 ../../mod/profiles.php:741 -msgid "Create New Profile" +#: ../../include/text.php:950 +msgid "disturbed" msgstr "" -#: ../../include/identity.php:864 ../../include/nav.php:103 -msgid "Edit Profile" +#: ../../include/text.php:951 +msgid "frustrated" msgstr "" -#: ../../include/identity.php:875 ../../mod/profiles.php:752 -msgid "Profile Image" +#: ../../include/text.php:952 +msgid "depressed" msgstr "" -#: ../../include/identity.php:878 -msgid "visible to everybody" +#: ../../include/text.php:953 +msgid "motivated" msgstr "" -#: ../../include/identity.php:879 ../../mod/profiles.php:635 -#: ../../mod/profiles.php:756 -msgid "Edit visibility" +#: ../../include/text.php:954 +msgid "relaxed" msgstr "" -#: ../../include/identity.php:895 ../../include/identity.php:1132 -msgid "Gender:" +#: ../../include/text.php:955 +msgid "surprised" msgstr "" -#: ../../include/identity.php:896 ../../include/identity.php:1176 -msgid "Status:" +#: ../../include/text.php:1121 +msgid "Monday" msgstr "" -#: ../../include/identity.php:897 ../../include/identity.php:1187 -msgid "Homepage:" +#: ../../include/text.php:1121 +msgid "Tuesday" msgstr "" -#: ../../include/identity.php:898 -msgid "Online Now" +#: ../../include/text.php:1121 +msgid "Wednesday" msgstr "" -#: ../../include/identity.php:976 ../../include/identity.php:1056 -#: ../../mod/ping.php:326 -msgid "g A l F d" +#: ../../include/text.php:1121 +msgid "Thursday" msgstr "" -#: ../../include/identity.php:977 ../../include/identity.php:1057 -msgid "F d" +#: ../../include/text.php:1121 +msgid "Friday" msgstr "" -#: ../../include/identity.php:1022 ../../include/identity.php:1097 -#: ../../mod/ping.php:348 -msgid "[today]" +#: ../../include/text.php:1121 +msgid "Saturday" msgstr "" -#: ../../include/identity.php:1034 -msgid "Birthday Reminders" +#: ../../include/text.php:1121 +msgid "Sunday" msgstr "" -#: ../../include/identity.php:1035 -msgid "Birthdays this week:" +#: ../../include/text.php:1125 +msgid "January" msgstr "" -#: ../../include/identity.php:1090 -msgid "[No description]" +#: ../../include/text.php:1125 +msgid "February" msgstr "" -#: ../../include/identity.php:1108 -msgid "Event Reminders" +#: ../../include/text.php:1125 +msgid "March" 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:" +#: ../../include/text.php:1125 +msgid "April" msgstr "" -#: ../../include/identity.php:1193 ../../mod/profiles.php:660 -msgid "Political Views:" +#: ../../include/text.php:1125 +msgid "May" msgstr "" -#: ../../include/identity.php:1195 -msgid "Religion:" +#: ../../include/text.php:1125 +msgid "June" msgstr "" -#: ../../include/identity.php:1197 -msgid "About:" +#: ../../include/text.php:1125 +msgid "July" msgstr "" -#: ../../include/identity.php:1199 -msgid "Hobbies/Interests:" +#: ../../include/text.php:1125 +msgid "August" msgstr "" -#: ../../include/identity.php:1201 ../../mod/profiles.php:663 -msgid "Likes:" +#: ../../include/text.php:1125 +msgid "September" msgstr "" -#: ../../include/identity.php:1203 ../../mod/profiles.php:664 -msgid "Dislikes:" +#: ../../include/text.php:1125 +msgid "October" msgstr "" -#: ../../include/identity.php:1206 -msgid "Contact information and Social Networks:" +#: ../../include/text.php:1125 +msgid "November" msgstr "" -#: ../../include/identity.php:1218 -msgid "My other channels:" +#: ../../include/text.php:1125 +msgid "December" msgstr "" -#: ../../include/identity.php:1221 -msgid "Musical interests:" +#: ../../include/text.php:1203 +msgid "unknown.???" msgstr "" -#: ../../include/identity.php:1223 -msgid "Books, literature:" +#: ../../include/text.php:1204 +msgid "bytes" msgstr "" -#: ../../include/identity.php:1225 -msgid "Television:" +#: ../../include/text.php:1240 +msgid "remove category" msgstr "" -#: ../../include/identity.php:1227 -msgid "Film/dance/culture/entertainment:" +#: ../../include/text.php:1309 +msgid "remove from file" msgstr "" -#: ../../include/identity.php:1229 -msgid "Love/Romance:" +#: ../../include/text.php:1385 ../../include/text.php:1396 +msgid "Click to open/close" msgstr "" -#: ../../include/identity.php:1231 -msgid "Work/employment:" +#: ../../include/text.php:1544 ../../mod/events.php:414 +msgid "Link to Source" msgstr "" -#: ../../include/identity.php:1233 -msgid "School/education:" +#: ../../include/text.php:1563 +msgid "Select a page layout: " msgstr "" -#: ../../include/identity.php:1253 -msgid "Like this thing" +#: ../../include/text.php:1566 ../../include/text.php:1626 +msgid "default" msgstr "" -#: ../../include/account.php:23 -msgid "Not a valid email address" +#: ../../include/text.php:1599 +msgid "Page content type: " msgstr "" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/text.php:1638 +msgid "Select an alternate language" msgstr "" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." +#: ../../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 "" -#: ../../include/account.php:64 -msgid "An invitation is required." +#: ../../include/text.php:1760 ../../include/conversation.php:123 +#: ../../mod/tagger.php:49 +msgid "event" msgstr "" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." +#: ../../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 "" -#: ../../include/account.php:119 -msgid "Please enter the required information." +#: ../../include/text.php:1765 ../../include/conversation.php:150 +#: ../../mod/tagger.php:55 +msgid "comment" msgstr "" -#: ../../include/account.php:187 -msgid "Failed to store account information." +#: ../../include/text.php:1770 +msgid "activity" msgstr "" -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" +#: ../../include/text.php:2057 +msgid "Design" msgstr "" -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" +#: ../../include/text.php:2060 +msgid "Blocks" msgstr "" -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" +#: ../../include/text.php:2061 +msgid "Menus" msgstr "" -#: ../../include/account.php:337 -msgid "your registration password" +#: ../../include/text.php:2062 +msgid "Layouts" msgstr "" -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" +#: ../../include/text.php:2063 +msgid "Pages" 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,212 +1881,91 @@ 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." +#: ../../include/conversation.php:126 ../../mod/like.php:89 +msgid "channel" msgstr "" -#: ../../include/attach.php:331 -msgid "No source file." +#: ../../include/conversation.php:164 ../../include/diaspora.php:1957 +#: ../../mod/like.php:336 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" +#: ../../include/conversation.php:167 ../../mod/like.php:338 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/attach.php:377 +#: ../../include/conversation.php:239 #, php-format -msgid "File exceeds size limit of %d" +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/attach.php:389 +#: ../../include/conversation.php:261 ../../mod/mood.php:63 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/conversation.php:638 ../../include/ItemObject.php:126 +msgid "Select" msgstr "" -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/conversation.php:646 ../../include/ItemObject.php:89 +msgid "Private Message" msgstr "" -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." +#: ../../include/conversation.php:653 ../../include/ItemObject.php:194 +msgid "Message signature validated" msgstr "" -#: ../../include/attach.php:590 -msgid "Empty pathname" +#: ../../include/conversation.php:654 ../../include/ItemObject.php:195 +msgid "Message signature incorrect" msgstr "" -#: ../../include/attach.php:606 -msgid "duplicate filename or path" +#: ../../include/conversation.php:674 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/attach.php:630 -msgid "Path not found." +#: ../../include/conversation.php:689 +msgid "Categories:" msgstr "" -#: ../../include/attach.php:681 -msgid "mkdir failed." +#: ../../include/conversation.php:690 +msgid "Filed under:" msgstr "" -#: ../../include/attach.php:685 -msgid "database storage failed." +#: ../../include/conversation.php:698 ../../include/ItemObject.php:274 +#, php-format +msgid " from %s" msgstr "" -#: ../../include/chat.php:10 -msgid "Missing room name" +#: ../../include/conversation.php:701 ../../include/ItemObject.php:277 +#, php-format +msgid "last edited: %s" msgstr "" -#: ../../include/chat.php:19 -msgid "Duplicate room name" +#: ../../include/conversation.php:702 ../../include/ItemObject.php:278 +#, php-format +msgid "Expires: %s" msgstr "" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." +#: ../../include/conversation.php:717 +msgid "View in context" 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 "" - -#: ../../include/conversation.php:164 ../../include/diaspora.php:1957 -#: ../../mod/like.php:336 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:167 ../../mod/like.php:338 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "" - -#: ../../include/conversation.php:638 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "" - -#: ../../include/conversation.php:646 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "" - -#: ../../include/conversation.php:653 ../../include/ItemObject.php:194 -msgid "Message signature validated" -msgstr "" - -#: ../../include/conversation.php:654 ../../include/ItemObject.php:195 -msgid "Message signature incorrect" -msgstr "" - -#: ../../include/conversation.php:674 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:689 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:690 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:698 ../../include/ItemObject.php:274 -#, php-format -msgid " from %s" -msgstr "" - -#: ../../include/conversation.php:701 ../../include/ItemObject.php:277 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/conversation.php:702 ../../include/ItemObject.php:278 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../include/conversation.php:717 -msgid "View in context" -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 -msgid "Please wait" +#: ../../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 "" #: ../../include/conversation.php:835 @@ -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,122 +2872,356 @@ msgstr "" msgid "User '%s' deleted" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../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/js_strings.php:8 -msgid "[-] show less" +#: ../../include/bbcode.php:147 ../../include/bbcode.php:727 +msgid "Encrypted content" msgstr "" -#: ../../include/js_strings.php:9 -msgid "[+] expand" +#: ../../include/bbcode.php:165 +msgid "Install design element: " msgstr "" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" +#: ../../include/bbcode.php:171 +msgid "QR code" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../include/bbcode.php:220 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" +#: ../../include/bbcode.php:222 +msgid "post" msgstr "" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" +#: ../../include/bbcode.php:645 +msgid "$1 spoiler" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../include/bbcode.php:665 +msgid "$1 wrote:" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../include/enotify.php:42 +msgid "redmatrix" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../include/enotify.php:44 +msgid "Thank You," msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" msgstr "" -#: ../../include/js_strings.php:20 -msgid "timeago.prefixAgo" +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " msgstr "" -#: ../../include/js_strings.php:21 -msgid "timeago.prefixFromNow" +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" msgstr "" -#: ../../include/js_strings.php:22 -msgid "ago" +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "" -#: ../../include/js_strings.php:23 -msgid "from now" +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: ../../include/js_strings.php:24 -msgid "less than a minute" +#: ../../include/enotify.php:88 +msgid "a private message" msgstr "" -#: ../../include/js_strings.php:25 -msgid "about a minute" +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../include/js_strings.php:26 +#: ../../include/enotify.php:144 #, php-format -msgid "%d minutes" +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../include/js_strings.php:27 -msgid "about an hour" +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../include/js_strings.php:28 +#: ../../include/enotify.php:161 #, php-format -msgid "about %d hours" +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../include/js_strings.php:29 -msgid "a day" +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../include/js_strings.php:30 +#: ../../include/enotify.php:173 #, php-format -msgid "%d days" +msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../include/js_strings.php:31 -msgid "about a month" +#: ../../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/js_strings.php:32 +#: ../../include/enotify.php:182 #, php-format -msgid "%d months" +msgid "[Red:Notify] %s posted to your profile wall" msgstr "" -#: ../../include/js_strings.php:33 -msgid "about a year" +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../include/js_strings.php:34 +#: ../../include/enotify.php:186 #, php-format -msgid "%d years" +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../include/js_strings.php:35 -msgid " " -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 "" + +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "" + +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "" + +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "" + +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" +msgstr "" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "" + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "" + +#: ../../include/js_strings.php:20 +msgid "timeago.prefixAgo" +msgstr "" + +#: ../../include/js_strings.php:21 +msgid "timeago.prefixFromNow" +msgstr "" + +#: ../../include/js_strings.php:22 +msgid "ago" +msgstr "" + +#: ../../include/js_strings.php:23 +msgid "from now" +msgstr "" + +#: ../../include/js_strings.php:24 +msgid "less than a minute" +msgstr "" + +#: ../../include/js_strings.php:25 +msgid "about a minute" +msgstr "" + +#: ../../include/js_strings.php:26 +#, php-format +msgid "%d minutes" +msgstr "" + +#: ../../include/js_strings.php:27 +msgid "about an hour" +msgstr "" + +#: ../../include/js_strings.php:28 +#, php-format +msgid "about %d hours" +msgstr "" + +#: ../../include/js_strings.php:29 +msgid "a day" +msgstr "" + +#: ../../include/js_strings.php:30 +#, php-format +msgid "%d days" +msgstr "" + +#: ../../include/js_strings.php:31 +msgid "about a month" +msgstr "" + +#: ../../include/js_strings.php:32 +#, php-format +msgid "%d months" +msgstr "" + +#: ../../include/js_strings.php:33 +msgid "about a year" +msgstr "" + +#: ../../include/js_strings.php:34 +#, php-format +msgid "%d years" +msgstr "" + +#: ../../include/js_strings.php:35 +msgid " " +msgstr "" #: ../../include/js_strings.php:36 msgid "timeago.numbers" @@ -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,1634 +3860,1524 @@ 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." +#: ../../mod/ping.php:360 +msgid "posted an event" msgstr "" -#: ../../mod/settings.php:217 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../mod/group.php:20 +msgid "Collection created." msgstr "" -#: ../../mod/settings.php:231 -msgid "Password changed." +#: ../../mod/group.php:26 +msgid "Could not create collection." msgstr "" -#: ../../mod/settings.php:233 -msgid "Password update failed. Please try again." +#: ../../mod/group.php:54 +msgid "Collection updated." msgstr "" -#: ../../mod/settings.php:247 -msgid "Not valid email." +#: ../../mod/group.php:86 +msgid "Create a collection of channels." msgstr "" -#: ../../mod/settings.php:250 -msgid "Protected email address. Cannot change to that email." +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " msgstr "" -#: ../../mod/settings.php:259 -msgid "System failure storing new email. Please try again." +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" msgstr "" -#: ../../mod/settings.php:495 -msgid "Settings updated." +#: ../../mod/group.php:107 +msgid "Collection removed." msgstr "" -#: ../../mod/settings.php:564 ../../mod/settings.php:590 -#: ../../mod/settings.php:626 -msgid "Add application" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." msgstr "" -#: ../../mod/settings.php:567 -msgid "Name of application" +#: ../../mod/group.php:182 +msgid "Collection Editor" msgstr "" -#: ../../mod/settings.php:568 ../../mod/settings.php:594 -msgid "Consumer Key" +#: ../../mod/group.php:196 +msgid "Members" msgstr "" -#: ../../mod/settings.php:568 ../../mod/settings.php:569 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../mod/group.php:198 +msgid "All Connected Channels" msgstr "" -#: ../../mod/settings.php:569 ../../mod/settings.php:595 -msgid "Consumer Secret" +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../mod/settings.php:570 ../../mod/settings.php:596 -msgid "Redirect" +#: ../../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 "" -#: ../../mod/settings.php:570 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../mod/settings.php:571 ../../mod/settings.php:597 -msgid "Icon url" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" msgstr "" -#: ../../mod/settings.php:571 -msgid "Optional" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" msgstr "" -#: ../../mod/settings.php:582 -msgid "You can't edit this application." +#: ../../mod/poke.php:161 +msgid "Recipient" msgstr "" -#: ../../mod/settings.php:625 -msgid "Connected Apps" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../mod/settings.php:629 -msgid "Client key starts with" +#: ../../mod/poke.php:165 +msgid "Make this post private" msgstr "" -#: ../../mod/settings.php:630 -msgid "No name" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" msgstr "" -#: ../../mod/settings.php:631 -msgid "Remove authorization" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: ../../mod/settings.php:642 -msgid "No feature settings configured" +#: ../../mod/api.php:89 +msgid "Please login to continue." msgstr "" -#: ../../mod/settings.php:650 -msgid "Feature Settings" +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../mod/settings.php:673 -msgid "Account Settings" +#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960 +#: ../../mod/settings.php:1042 ../../mod/admin.php:392 +msgid "Yes" msgstr "" -#: ../../mod/settings.php:674 -msgid "Password Settings" +#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960 +#: ../../mod/settings.php:1042 ../../mod/admin.php:390 +msgid "No" msgstr "" -#: ../../mod/settings.php:675 -msgid "New Password:" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:583 +msgid "Profile not found." msgstr "" -#: ../../mod/settings.php:676 -msgid "Confirm:" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." msgstr "" -#: ../../mod/settings.php:676 -msgid "Leave password fields blank unless changing" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" msgstr "" -#: ../../mod/settings.php:678 ../../mod/settings.php:1013 -msgid "Email Address:" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." msgstr "" -#: ../../mod/settings.php:679 ../../mod/removeaccount.php:61 -msgid "Remove Account" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." msgstr "" -#: ../../mod/settings.php:680 -msgid "Remove this account from this server including all its channels" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." msgstr "" -#: ../../mod/settings.php:681 ../../mod/settings.php:1095 -msgid "Warning: This action is permanent and cannot be reversed." +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." msgstr "" -#: ../../mod/settings.php:697 -msgid "Off" +#: ../../mod/profiles.php:387 +msgid "Marital Status" msgstr "" -#: ../../mod/settings.php:697 -msgid "On" +#: ../../mod/profiles.php:391 +msgid "Romantic Partner" msgstr "" -#: ../../mod/settings.php:704 -msgid "Additional Features" +#: ../../mod/profiles.php:395 +msgid "Likes" msgstr "" -#: ../../mod/settings.php:729 -msgid "Connector Settings" +#: ../../mod/profiles.php:399 +msgid "Dislikes" msgstr "" -#: ../../mod/settings.php:768 -msgid "No special theme for mobile devices" +#: ../../mod/profiles.php:403 +msgid "Work/Employment" msgstr "" -#: ../../mod/settings.php:771 -#, php-format -msgid "%s - (Experimental)" +#: ../../mod/profiles.php:406 +msgid "Religion" msgstr "" -#: ../../mod/settings.php:774 ../../mod/admin.php:363 -msgid "mobile" +#: ../../mod/profiles.php:410 +msgid "Political Views" msgstr "" -#: ../../mod/settings.php:810 -msgid "Display Settings" +#: ../../mod/profiles.php:414 +msgid "Gender" msgstr "" -#: ../../mod/settings.php:816 -msgid "Display Theme:" +#: ../../mod/profiles.php:418 +msgid "Sexual Preference" msgstr "" -#: ../../mod/settings.php:817 -msgid "Mobile Theme:" +#: ../../mod/profiles.php:422 +msgid "Homepage" msgstr "" -#: ../../mod/settings.php:818 -msgid "Enable user zoom on mobile devices" +#: ../../mod/profiles.php:426 +msgid "Interests" msgstr "" -#: ../../mod/settings.php:819 -msgid "Update browser every xx seconds" +#: ../../mod/profiles.php:430 ../../mod/admin.php:866 +msgid "Address" msgstr "" -#: ../../mod/settings.php:819 -msgid "Minimum of 10 seconds, no maximum" +#: ../../mod/profiles.php:437 ../../mod/pubsites.php:25 +msgid "Location" msgstr "" -#: ../../mod/settings.php:820 -msgid "Maximum number of conversations to load at any time:" +#: ../../mod/profiles.php:520 +msgid "Profile updated." msgstr "" -#: ../../mod/settings.php:820 -msgid "Maximum of 100 items" +#: ../../mod/profiles.php:609 +msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/settings.php:821 -msgid "Don't show emoticons" +#: ../../mod/profiles.php:649 +msgid "Edit Profile Details" msgstr "" -#: ../../mod/settings.php:822 -msgid "Link post titles to source" +#: ../../mod/profiles.php:651 +msgid "View this profile" msgstr "" -#: ../../mod/settings.php:823 -msgid "System Page Layout Editor - (advanced)" +#: ../../mod/profiles.php:653 +msgid "Change Profile Photo" msgstr "" -#: ../../mod/settings.php:826 -msgid "Use blog/list mode on channel page" +#: ../../mod/profiles.php:654 +msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/settings.php:826 ../../mod/settings.php:827 -msgid "(comments displayed separately)" +#: ../../mod/profiles.php:655 +msgid "Clone this profile" msgstr "" -#: ../../mod/settings.php:827 -msgid "Use blog/list mode on matrix page" +#: ../../mod/profiles.php:656 +msgid "Delete this profile" msgstr "" -#: ../../mod/settings.php:828 -msgid "Channel page max height of content (in pixels)" +#: ../../mod/profiles.php:658 +msgid "Import profile from file" msgstr "" -#: ../../mod/settings.php:828 ../../mod/settings.php:829 -msgid "click to expand content exceeding this height" +#: ../../mod/profiles.php:659 +msgid "Export profile to file" msgstr "" -#: ../../mod/settings.php:829 -msgid "Matrix page max height of content (in pixels)" +#: ../../mod/profiles.php:660 +msgid "Profile Name:" msgstr "" -#: ../../mod/settings.php:863 -msgid "Nobody except yourself" +#: ../../mod/profiles.php:661 +msgid "Your Full Name:" msgstr "" -#: ../../mod/settings.php:864 -msgid "Only those you specifically allow" +#: ../../mod/profiles.php:662 +msgid "Title/Description:" msgstr "" -#: ../../mod/settings.php:865 -msgid "Approved connections" +#: ../../mod/profiles.php:663 +msgid "Your Gender:" msgstr "" -#: ../../mod/settings.php:866 -msgid "Any connections" +#: ../../mod/profiles.php:664 +msgid "Birthday :" msgstr "" -#: ../../mod/settings.php:867 -msgid "Anybody on this website" +#: ../../mod/profiles.php:665 +msgid "Street Address:" msgstr "" -#: ../../mod/settings.php:868 -msgid "Anybody in this network" +#: ../../mod/profiles.php:666 +msgid "Locality/City:" msgstr "" -#: ../../mod/settings.php:869 -msgid "Anybody authenticated" +#: ../../mod/profiles.php:667 +msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/settings.php:870 -msgid "Anybody on the internet" +#: ../../mod/profiles.php:668 +msgid "Country:" msgstr "" -#: ../../mod/settings.php:944 -msgid "Publish your default profile in the network directory" +#: ../../mod/profiles.php:669 +msgid "Region/State:" 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" +#: ../../mod/profiles.php:670 +msgid " Marital Status:" 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" +#: ../../mod/profiles.php:671 +msgid "Who: (if applicable)" msgstr "" -#: ../../mod/settings.php:949 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../mod/profiles.php:672 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../mod/settings.php:953 ../../mod/profile_photo.php:365 -msgid "or" +#: ../../mod/profiles.php:673 +msgid "Since [date]:" msgstr "" -#: ../../mod/settings.php:958 -msgid "Your channel address is" +#: ../../mod/profiles.php:675 +msgid "Homepage URL:" msgstr "" -#: ../../mod/settings.php:1002 -msgid "Channel Settings" +#: ../../mod/profiles.php:678 +msgid "Religious Views:" msgstr "" -#: ../../mod/settings.php:1011 -msgid "Basic Settings" +#: ../../mod/profiles.php:679 +msgid "Keywords:" msgstr "" -#: ../../mod/settings.php:1014 -msgid "Your Timezone:" +#: ../../mod/profiles.php:682 +msgid "Example: fishing photography software" msgstr "" -#: ../../mod/settings.php:1015 -msgid "Default Post Location:" +#: ../../mod/profiles.php:683 +msgid "Used in directory listings" msgstr "" -#: ../../mod/settings.php:1015 -msgid "Geographical location to display on your posts" +#: ../../mod/profiles.php:684 +msgid "Tell us about yourself..." msgstr "" -#: ../../mod/settings.php:1016 -msgid "Use Browser Location:" +#: ../../mod/profiles.php:685 +msgid "Hobbies/Interests" msgstr "" -#: ../../mod/settings.php:1018 -msgid "Adult Content" +#: ../../mod/profiles.php:686 +msgid "Contact information and Social Networks" msgstr "" -#: ../../mod/settings.php:1018 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +#: ../../mod/profiles.php:687 +msgid "My other channels" msgstr "" -#: ../../mod/settings.php:1020 -msgid "Security and Privacy Settings" +#: ../../mod/profiles.php:688 +msgid "Musical interests" msgstr "" -#: ../../mod/settings.php:1022 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../mod/profiles.php:689 +msgid "Books, literature" msgstr "" -#: ../../mod/settings.php:1024 -msgid "Hide my online presence" +#: ../../mod/profiles.php:690 +msgid "Television" msgstr "" -#: ../../mod/settings.php:1024 -msgid "Prevents displaying in your profile that you are online" +#: ../../mod/profiles.php:691 +msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/settings.php:1026 -msgid "Simple Privacy Settings:" +#: ../../mod/profiles.php:692 +msgid "Love/romance" msgstr "" -#: ../../mod/settings.php:1027 -msgid "" -"Very Public - extremely permissive (should be used with caution)" +#: ../../mod/profiles.php:693 +msgid "Work/employment" msgstr "" -#: ../../mod/settings.php:1028 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +#: ../../mod/profiles.php:694 +msgid "School/education" msgstr "" -#: ../../mod/settings.php:1029 -msgid "Private - default private, never open or public" +#: ../../mod/profiles.php:700 +msgid "This is your default profile." msgstr "" -#: ../../mod/settings.php:1030 -msgid "Blocked - default blocked to/from everybody" +#: ../../mod/profiles.php:711 ../../mod/directory.php:188 +msgid "Age: " msgstr "" -#: ../../mod/settings.php:1032 -msgid "Allow others to tag your posts" +#: ../../mod/profiles.php:754 +msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/settings.php:1032 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" +#: ../../mod/profiles.php:755 +msgid "Add profile things" msgstr "" -#: ../../mod/settings.php:1034 -msgid "Advanced Privacy Settings" +#: ../../mod/profiles.php:756 +msgid "Include desirable objects in your profile" msgstr "" -#: ../../mod/settings.php:1036 -msgid "Expire other channel content after this many days" +#: ../../mod/attach.php:9 +msgid "Item not available." msgstr "" -#: ../../mod/settings.php:1036 -msgid "0 or blank prevents expiration" +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../mod/settings.php:1037 -msgid "Maximum Friend Requests/Day:" +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." msgstr "" -#: ../../mod/settings.php:1037 -msgid "May reduce spam activity" +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." msgstr "" -#: ../../mod/settings.php:1038 -msgid "Default Post Permissions" +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." msgstr "" -#: ../../mod/settings.php:1043 -msgid "Channel permissions category:" +#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +msgid "Export Channel" msgstr "" -#: ../../mod/settings.php:1051 -msgid "Maximum private messages per day from unknown people:" +#: ../../mod/uexport.php:35 +msgid "" +"Export your basic channel information to a small file. This acts as a " +"backup of your connections, permissions, profile and basic data, which can " +"be used to import your data to a new hub, but\tdoes not contain your content." msgstr "" -#: ../../mod/settings.php:1051 -msgid "Useful to reduce spamming" +#: ../../mod/uexport.php:36 +msgid "Export Content" msgstr "" -#: ../../mod/settings.php:1054 -msgid "Notification Settings" +#: ../../mod/uexport.php:37 +msgid "" +"Export your channel information and all the content to a JSON backup. This " +"backs up all of your connections, permissions, profile data and all of your " +"content, but is generally not suitable for importing a channel to a new hub " +"as this file may be VERY large. Please be patient - it may take several " +"minutes for this download to begin." msgstr "" -#: ../../mod/settings.php:1055 -msgid "By default post a status message when:" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." msgstr "" -#: ../../mod/settings.php:1056 -msgid "accepting a friend request" +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" msgstr "" -#: ../../mod/settings.php:1057 -msgid "joining a forum/community" +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." msgstr "" -#: ../../mod/settings.php:1058 -msgid "making an interesting profile change" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" msgstr "" -#: ../../mod/settings.php:1059 -msgid "Send a notification email when:" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" msgstr "" -#: ../../mod/settings.php:1060 -msgid "You receive a connection request" +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" msgstr "" -#: ../../mod/settings.php:1061 -msgid "Your connections are confirmed" +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:902 +msgid "Remove" msgstr "" -#: ../../mod/settings.php:1062 -msgid "Someone writes on your profile wall" +#: ../../mod/delegate.php:131 +msgid "Add" msgstr "" -#: ../../mod/settings.php:1063 -msgid "Someone writes a followup comment" +#: ../../mod/delegate.php:132 +msgid "No entries." msgstr "" -#: ../../mod/settings.php:1064 -msgid "You receive a private message" +#: ../../mod/siteinfo.php:93 +#, php-format +msgid "Version %s" msgstr "" -#: ../../mod/settings.php:1065 -msgid "You receive a friend suggestion" +#: ../../mod/siteinfo.php:114 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/settings.php:1066 -msgid "You are tagged in a post" +#: ../../mod/siteinfo.php:127 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/settings.php:1067 -msgid "You are poked/prodded/etc. in a post" +#: ../../mod/siteinfo.php:135 +msgid "Red" msgstr "" -#: ../../mod/settings.php:1070 -msgid "Show visual notifications including:" +#: ../../mod/siteinfo.php:136 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../mod/settings.php:1072 -msgid "Unseen matrix activity" +#: ../../mod/siteinfo.php:138 +msgid "Tag: " msgstr "" -#: ../../mod/settings.php:1073 -msgid "Unseen channel activity" +#: ../../mod/siteinfo.php:140 +msgid "Last background fetch: " msgstr "" -#: ../../mod/settings.php:1074 -msgid "Unseen private messages" +#: ../../mod/siteinfo.php:143 +msgid "Running at web location" msgstr "" -#: ../../mod/settings.php:1074 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -msgid "Recommended" +#: ../../mod/siteinfo.php:144 +msgid "" +"Please visit RedMatrix.me to learn more " +"about the Red Matrix." msgstr "" -#: ../../mod/settings.php:1075 -msgid "Upcoming events" +#: ../../mod/siteinfo.php:145 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../mod/settings.php:1076 -msgid "Events today" +#: ../../mod/siteinfo.php:148 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../mod/settings.php:1077 -msgid "Upcoming birthdays" +#: ../../mod/siteinfo.php:150 +msgid "Site Administrators" msgstr "" -#: ../../mod/settings.php:1077 -msgid "Not available in all themes" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../mod/settings.php:1078 -msgid "System (personal) notifications" +#: ../../mod/sources.php:45 +msgid "Source created." msgstr "" -#: ../../mod/settings.php:1079 -msgid "System info messages" +#: ../../mod/sources.php:57 +msgid "Source updated." msgstr "" -#: ../../mod/settings.php:1080 -msgid "System critical alerts" +#: ../../mod/sources.php:82 +msgid "*" msgstr "" -#: ../../mod/settings.php:1081 -msgid "New connections" +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../mod/settings.php:1082 -msgid "System Registrations" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" msgstr "" -#: ../../mod/settings.php:1084 -msgid "Notify me of events this many days in advance" +#: ../../mod/sources.php:101 ../../mod/sources.php:133 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../mod/settings.php:1084 -msgid "Must be greater than 0" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../mod/settings.php:1086 -msgid "Advanced Account/Page Type Settings" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" msgstr "" -#: ../../mod/settings.php:1087 -msgid "Change the behaviour of this account for special situations" +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" msgstr "" -#: ../../mod/settings.php:1090 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." msgstr "" -#: ../../mod/settings.php:1091 -msgid "Miscellaneous Settings" +#: ../../mod/sources.php:130 +msgid "Edit Source" msgstr "" -#: ../../mod/settings.php:1093 -msgid "Personal menu to display in your channel pages" +#: ../../mod/sources.php:131 +msgid "Delete Source" msgstr "" -#: ../../mod/settings.php:1094 -msgid "Remove this channel" +#: ../../mod/sources.php:158 +msgid "Source removed" msgstr "" -#: ../../mod/group.php:20 -msgid "Collection created." +#: ../../mod/sources.php:160 +msgid "Unable to remove source." msgstr "" -#: ../../mod/group.php:26 -msgid "Could not create collection." +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/group.php:54 -msgid "Collection updated." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " +#: ../../mod/profperm.php:123 +msgid "Visible To" msgstr "" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" msgstr "" -#: ../../mod/group.php:107 -msgid "Collection removed." +#: ../../mod/events.php:81 +msgid "Event can not end before it has started." msgstr "" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." +#: ../../mod/events.php:86 +msgid "Event title and start time are required." msgstr "" -#: ../../mod/group.php:182 -msgid "Collection Editor" +#: ../../mod/events.php:100 +msgid "Event not found." msgstr "" -#: ../../mod/group.php:196 -msgid "Members" +#: ../../mod/events.php:369 +msgid "l, F j" msgstr "" -#: ../../mod/group.php:198 -msgid "All Connected Channels" +#: ../../mod/events.php:391 +msgid "Edit event" msgstr "" -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." +#: ../../mod/events.php:443 +msgid "Create New Event" msgstr "" -#: ../../mod/search.php:13 ../../mod/photos.php:458 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 -msgid "Public access denied." +#: ../../mod/events.php:444 ../../mod/photos.php:856 +msgid "Previous" msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../mod/events.php:445 ../../mod/setup.php:265 ../../mod/photos.php:865 +msgid "Next" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" +#: ../../mod/events.php:446 +msgid "Export" msgstr "" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" +#: ../../mod/events.php:571 +msgid "Event details" msgstr "" -#: ../../mod/poke.php:161 -msgid "Recipient" +#: ../../mod/events.php:572 +msgid "Starting date and Title are required." msgstr "" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" +#: ../../mod/events.php:574 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../mod/poke.php:165 -msgid "Make this post private" +#: ../../mod/events.php:576 +msgid "Event Starts:" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" +#: ../../mod/events.php:576 ../../mod/events.php:592 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" msgstr "" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: ../../mod/events.php:582 +msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/api.php:89 -msgid "Please login to continue." +#: ../../mod/events.php:584 +msgid "Event Finishes:" msgstr "" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../mod/events.php:586 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" +#: ../../mod/events.php:588 +msgid "Description:" msgstr "" -#: ../../mod/setup.php:172 -msgid "Could not connect to database." +#: ../../mod/events.php:592 +msgid "Title:" msgstr "" -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "" - -#: ../../mod/setup.php:183 -msgid "Could not create table." +#: ../../mod/events.php:594 +msgid "Share this event" msgstr "" -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." +#: ../../mod/pubsites.php:16 +msgid "Public Sites" msgstr "" -#: ../../mod/setup.php:194 +#: ../../mod/pubsites.php:19 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "" - -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" - -#: ../../mod/setup.php:261 -msgid "System check" +"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 "" -#: ../../mod/setup.php:265 ../../mod/events.php:445 ../../mod/photos.php:868 -msgid "Next" +#: ../../mod/pubsites.php:25 +msgid "Site URL" msgstr "" -#: ../../mod/setup.php:266 -msgid "Check again" +#: ../../mod/pubsites.php:25 +msgid "Access Type" msgstr "" -#: ../../mod/setup.php:289 -msgid "Database connection" +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" msgstr "" -#: ../../mod/setup.php:290 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." msgstr "" -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../mod/channel.php:87 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" msgstr "" -#: ../../mod/setup.php:296 -msgid "Database Server Name" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" msgstr "" -#: ../../mod/setup.php:296 -msgid "Default is localhost" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" msgstr "" -#: ../../mod/setup.php:297 -msgid "Database Port" +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" msgstr "" -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" msgstr "" -#: ../../mod/setup.php:298 -msgid "Database Login Name" +#: ../../mod/chat.php:167 +msgid "Room not found" msgstr "" -#: ../../mod/setup.php:299 -msgid "Database Login Password" +#: ../../mod/chat.php:178 +msgid "Leave Room" msgstr "" -#: ../../mod/setup.php:300 -msgid "Database Name" +#: ../../mod/chat.php:179 +msgid "Delete This Room" msgstr "" -#: ../../mod/setup.php:301 -msgid "Database Type" +#: ../../mod/chat.php:180 +msgid "I am away right now" msgstr "" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" +#: ../../mod/chat.php:181 +msgid "I am online" 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/chat.php:183 +msgid "Bookmark this room" msgstr "" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" msgstr "" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." +#: ../../mod/chat.php:208 +msgid "Chatroom Name" msgstr "" -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../mod/setup.php:335 -msgid "Site settings" +#: ../../mod/chatsvc.php:111 +msgid "Away" msgstr "" -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/chatsvc.php:115 +msgid "Online" 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/regmod.php:11 +msgid "Please login." msgstr "" -#: ../../mod/setup.php:400 -msgid "PHP executable path" +#: ../../mod/editpost.php:20 ../../mod/editblock.php:79 +#: ../../mod/editblock.php:95 ../../mod/editlayout.php:78 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" msgstr "" -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../mod/editpost.php:31 +msgid "Item is not editable" msgstr "" -#: ../../mod/setup.php:405 -msgid "Command line PHP" +#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 +msgid "Edit post" msgstr "" -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../mod/editpost.php:53 +msgid "Delete item?" msgstr "" -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." +#: ../../mod/editpost.php:116 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" msgstr "" -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" +#: ../../mod/editpost.php:117 ../../mod/editblock.php:148 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" msgstr "" -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../mod/editpost.php:118 ../../mod/editblock.php:149 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" msgstr "" -#: ../../mod/setup.php:439 +#: ../../mod/removeme.php:29 msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "" - -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "" - -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "" - -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "" - -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" msgstr "" -#: ../../mod/setup.php:458 +#: ../../mod/removeme.php:58 msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." msgstr "" -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" msgstr "" -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../mod/setup.php:476 +#: ../../mod/removeme.php:60 msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +"By default only the instance of the channel located on this hub will be " +"removed from the network" msgstr "" -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." +#: ../../mod/removeme.php:61 +msgid "Remove Channel" msgstr "" -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." +#: ../../mod/common.php:10 +msgid "No channel." msgstr "" -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." +#: ../../mod/common.php:39 +msgid "Common connections" msgstr "" -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." +#: ../../mod/common.php:44 +msgid "No connections in common." msgstr "" -#: ../../mod/setup.php:508 +#: ../../mod/rmagic.php:38 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." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." 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/rmagic.php:38 +msgid "The error message was:" 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/rmagic.php:42 +msgid "Authentication failed." 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/rmagic.php:82 +msgid "Remote Authentication" msgstr "" -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" 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/rmagic.php:84 +msgid "Authenticate" 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/lostpass.php:15 +msgid "No valid account found." 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/lostpass.php:29 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../mod/setup.php:527 +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 #, 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." +msgid "Site Member (%s)" msgstr "" -#: ../../mod/setup.php:530 +#: ../../mod/lostpass.php:40 #, php-format -msgid "%s is writable" +msgid "Password reset requested at %s" msgstr "" -#: ../../mod/setup.php:543 +#: ../../mod/lostpass.php:63 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" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../mod/lostpass.php:85 ../../boot.php:1550 +msgid "Password Reset" msgstr "" -#: ../../mod/setup.php:578 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." msgstr "" -#: ../../mod/setup.php:579 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../mod/lostpass.php:87 +msgid "Your new password is" msgstr "" -#: ../../mod/setup.php:580 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../mod/setup.php:581 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../mod/lostpass.php:89 +msgid "click here to login" msgstr "" -#: ../../mod/setup.php:582 +#: ../../mod/lostpass.php:90 msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../mod/setup.php:590 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" msgstr "" -#: ../../mod/setup.php:602 +#: ../../mod/lostpass.php:123 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." +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../mod/setup.php:626 -msgid "Errors encountered creating database tables." +#: ../../mod/lostpass.php:124 +msgid "Email Address" msgstr "" -#: ../../mod/setup.php:661 -msgid "

    What next

    " +#: ../../mod/lostpass.php:125 +msgid "Reset" msgstr "" -#: ../../mod/setup.php:662 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/settings.php:73 +msgid "Name is required" msgstr "" -#: ../../mod/attach.php:9 -msgid "Item not available." +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" msgstr "" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../mod/settings.php:222 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." +#: ../../mod/settings.php:226 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." +#: ../../mod/settings.php:240 +msgid "Password changed." msgstr "" -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." +#: ../../mod/settings.php:242 +msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" +#: ../../mod/settings.php:256 +msgid "Not valid email." msgstr "" -#: ../../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." +#: ../../mod/settings.php:259 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../mod/uexport.php:36 -msgid "Export Content" +#: ../../mod/settings.php:268 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../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." +#: ../../mod/settings.php:507 +msgid "Settings updated." msgstr "" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." +#: ../../mod/settings.php:576 ../../mod/settings.php:602 +#: ../../mod/settings.php:638 +msgid "Add application" msgstr "" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" +#: ../../mod/settings.php:579 +msgid "Name of application" msgstr "" -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." +#: ../../mod/settings.php:580 ../../mod/settings.php:606 +msgid "Consumer Key" msgstr "" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" +#: ../../mod/settings.php:580 ../../mod/settings.php:581 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" +#: ../../mod/settings.php:581 ../../mod/settings.php:607 +msgid "Consumer Secret" msgstr "" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +msgid "Redirect" msgstr "" -#: ../../mod/delegate.php:130 ../../mod/photos.php:905 ../../mod/tagrm.php:133 -msgid "Remove" +#: ../../mod/settings.php:582 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../mod/delegate.php:131 -msgid "Add" +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +msgid "Icon url" msgstr "" -#: ../../mod/delegate.php:132 -msgid "No entries." +#: ../../mod/settings.php:583 +msgid "Optional" msgstr "" -#: ../../mod/siteinfo.php:93 -#, php-format -msgid "Version %s" +#: ../../mod/settings.php:594 +msgid "You can't edit this application." msgstr "" -#: ../../mod/siteinfo.php:114 -msgid "Installed plugins/addons/apps:" +#: ../../mod/settings.php:637 +msgid "Connected Apps" msgstr "" -#: ../../mod/siteinfo.php:127 -msgid "No installed plugins/addons/apps" +#: ../../mod/settings.php:641 +msgid "Client key starts with" msgstr "" -#: ../../mod/siteinfo.php:135 -msgid "Red" +#: ../../mod/settings.php:642 +msgid "No name" msgstr "" -#: ../../mod/siteinfo.php:136 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." +#: ../../mod/settings.php:643 +msgid "Remove authorization" msgstr "" -#: ../../mod/siteinfo.php:138 -msgid "Tag: " +#: ../../mod/settings.php:654 +msgid "No feature settings configured" msgstr "" -#: ../../mod/siteinfo.php:140 -msgid "Last background fetch: " +#: ../../mod/settings.php:662 +msgid "Feature Settings" msgstr "" -#: ../../mod/siteinfo.php:143 -msgid "Running at web location" +#: ../../mod/settings.php:685 +msgid "Account Settings" msgstr "" -#: ../../mod/siteinfo.php:144 -msgid "" -"Please visit RedMatrix.me to learn more " -"about the Red Matrix." +#: ../../mod/settings.php:686 +msgid "Password Settings" msgstr "" -#: ../../mod/siteinfo.php:145 -msgid "Bug reports and issues: please visit" +#: ../../mod/settings.php:687 +msgid "New Password:" msgstr "" -#: ../../mod/siteinfo.php:148 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +#: ../../mod/settings.php:688 +msgid "Confirm:" msgstr "" -#: ../../mod/siteinfo.php:150 -msgid "Site Administrators" +#: ../../mod/settings.php:688 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." +#: ../../mod/settings.php:690 ../../mod/settings.php:1023 +msgid "Email Address:" msgstr "" -#: ../../mod/sources.php:45 -msgid "Source created." +#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 +msgid "Remove Account" msgstr "" -#: ../../mod/sources.php:57 -msgid "Source updated." +#: ../../mod/settings.php:692 +msgid "Remove this account from this server including all its channels" msgstr "" -#: ../../mod/sources.php:82 -msgid "*" +#: ../../mod/settings.php:693 ../../mod/settings.php:1104 +msgid "Warning: This action is permanent and cannot be reversed." msgstr "" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." +#: ../../mod/settings.php:709 +msgid "Off" msgstr "" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" +#: ../../mod/settings.php:709 +msgid "On" msgstr "" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +#: ../../mod/settings.php:716 +msgid "Additional Features" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" +#: ../../mod/settings.php:740 +msgid "Connector Settings" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" +#: ../../mod/settings.php:779 +msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" +#: ../../mod/settings.php:782 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." +#: ../../mod/settings.php:785 ../../mod/admin.php:363 +msgid "mobile" msgstr "" -#: ../../mod/sources.php:130 -msgid "Edit Source" +#: ../../mod/settings.php:821 +msgid "Display Settings" msgstr "" -#: ../../mod/sources.php:131 -msgid "Delete Source" +#: ../../mod/settings.php:827 +msgid "Display Theme:" msgstr "" -#: ../../mod/sources.php:158 -msgid "Source removed" +#: ../../mod/settings.php:828 +msgid "Mobile Theme:" msgstr "" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." +#: ../../mod/settings.php:829 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." +#: ../../mod/settings.php:830 +msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" +#: ../../mod/settings.php:830 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." +#: ../../mod/settings.php:831 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/profperm.php:123 -msgid "Visible To" +#: ../../mod/settings.php:831 +msgid "Maximum of 100 items" msgstr "" -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" +#: ../../mod/settings.php:832 +msgid "Don't show emoticons" msgstr "" -#: ../../mod/events.php:81 -msgid "Event can not end before it has started." +#: ../../mod/settings.php:833 +msgid "Link post titles to source" msgstr "" -#: ../../mod/events.php:86 -msgid "Event title and start time are required." +#: ../../mod/settings.php:834 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../mod/events.php:100 -msgid "Event not found." +#: ../../mod/settings.php:837 +msgid "Use blog/list mode on channel page" msgstr "" -#: ../../mod/events.php:369 -msgid "l, F j" +#: ../../mod/settings.php:837 ../../mod/settings.php:838 +msgid "(comments displayed separately)" msgstr "" -#: ../../mod/events.php:391 -msgid "Edit event" +#: ../../mod/settings.php:838 +msgid "Use blog/list mode on matrix page" msgstr "" -#: ../../mod/events.php:443 -msgid "Create New Event" +#: ../../mod/settings.php:839 +msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../mod/events.php:444 ../../mod/photos.php:859 -msgid "Previous" +#: ../../mod/settings.php:839 ../../mod/settings.php:840 +msgid "click to expand content exceeding this height" msgstr "" -#: ../../mod/events.php:446 -msgid "Export" +#: ../../mod/settings.php:840 +msgid "Matrix page max height of content (in pixels)" msgstr "" -#: ../../mod/events.php:571 -msgid "Event details" +#: ../../mod/settings.php:874 +msgid "Nobody except yourself" msgstr "" -#: ../../mod/events.php:572 -msgid "Starting date and Title are required." +#: ../../mod/settings.php:875 +msgid "Only those you specifically allow" msgstr "" -#: ../../mod/events.php:574 -msgid "Categories (comma-separated list)" +#: ../../mod/settings.php:876 +msgid "Approved connections" msgstr "" -#: ../../mod/events.php:576 -msgid "Event Starts:" +#: ../../mod/settings.php:877 +msgid "Any connections" msgstr "" -#: ../../mod/events.php:576 ../../mod/events.php:592 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" +#: ../../mod/settings.php:878 +msgid "Anybody on this website" msgstr "" -#: ../../mod/events.php:582 -msgid "Finish date/time is not known or not relevant" +#: ../../mod/settings.php:879 +msgid "Anybody in this network" msgstr "" -#: ../../mod/events.php:584 -msgid "Event Finishes:" +#: ../../mod/settings.php:880 +msgid "Anybody authenticated" msgstr "" -#: ../../mod/events.php:586 -msgid "Adjust for viewer timezone" +#: ../../mod/settings.php:881 +msgid "Anybody on the internet" msgstr "" -#: ../../mod/events.php:588 -msgid "Description:" +#: ../../mod/settings.php:955 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/events.php:592 -msgid "Title:" +#: ../../mod/settings.php:960 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/events.php:594 -msgid "Share this event" +#: ../../mod/settings.php:964 ../../mod/profile_photo.php:365 +msgid "or" msgstr "" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" +#: ../../mod/settings.php:969 +msgid "Your channel address is" msgstr "" -#: ../../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." +#: ../../mod/settings.php:1014 +msgid "Channel Settings" msgstr "" -#: ../../mod/pubsites.php:25 -msgid "Site URL" +#: ../../mod/settings.php:1021 +msgid "Basic Settings" msgstr "" -#: ../../mod/pubsites.php:25 -msgid "Access Type" +#: ../../mod/settings.php:1024 +msgid "Your Timezone:" msgstr "" -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" +#: ../../mod/settings.php:1025 +msgid "Default Post Location:" msgstr "" -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:428 -msgid "Location" +#: ../../mod/settings.php:1025 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." +#: ../../mod/settings.php:1026 +msgid "Use Browser Location:" msgstr "" -#: ../../mod/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../mod/settings.php:1028 +msgid "Adult Content" msgstr "" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" +#: ../../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/rbmark.php:93 -msgid "Save Bookmark" +#: ../../mod/settings.php:1030 +msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" +#: ../../mod/settings.php:1032 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" +#: ../../mod/settings.php:1034 +msgid "Hide my online presence" msgstr "" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" +#: ../../mod/settings.php:1034 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../mod/chat.php:167 -msgid "Room not found" +#: ../../mod/settings.php:1036 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../mod/chat.php:178 -msgid "Leave Room" +#: ../../mod/settings.php:1037 +msgid "" +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/chat.php:179 -msgid "Delete This Room" +#: ../../mod/settings.php:1038 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../mod/chat.php:180 -msgid "I am away right now" +#: ../../mod/settings.php:1039 +msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/chat.php:181 -msgid "I am online" +#: ../../mod/settings.php:1040 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" +#: ../../mod/settings.php:1042 +msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" +#: ../../mod/settings.php:1042 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" +#: ../../mod/settings.php:1044 +msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../mod/settings.php:1046 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/chatsvc.php:111 -msgid "Away" +#: ../../mod/settings.php:1046 +msgid "0 or blank prevents expiration" msgstr "" -#: ../../mod/chatsvc.php:115 -msgid "Online" +#: ../../mod/settings.php:1047 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/regmod.php:11 -msgid "Please login." +#: ../../mod/settings.php:1047 +msgid "May reduce spam activity" msgstr "" -#: ../../mod/editpost.php:20 ../../mod/editblock.php:79 -#: ../../mod/editblock.php:95 ../../mod/editlayout.php:78 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" +#: ../../mod/settings.php:1048 +msgid "Default Post Permissions" msgstr "" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" +#: ../../mod/settings.php:1053 +msgid "Channel permissions category:" msgstr "" -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" +#: ../../mod/settings.php:1059 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/editpost.php:53 -msgid "Delete item?" +#: ../../mod/settings.php:1059 +msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/editpost.php:116 ../../mod/editblock.php:147 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" +#: ../../mod/settings.php:1062 +msgid "Notification Settings" msgstr "" -#: ../../mod/editpost.php:117 ../../mod/editblock.php:148 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" +#: ../../mod/settings.php:1063 +msgid "By default post a status message when:" msgstr "" -#: ../../mod/editpost.php:118 ../../mod/editblock.php:149 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" +#: ../../mod/settings.php:1064 +msgid "accepting a friend request" msgstr "" -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +#: ../../mod/settings.php:1065 +msgid "joining a forum/community" msgstr "" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" +#: ../../mod/settings.php:1066 +msgid "making an interesting profile change" msgstr "" -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." +#: ../../mod/settings.php:1067 +msgid "Send a notification email when:" msgstr "" -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" +#: ../../mod/settings.php:1068 +msgid "You receive a connection request" msgstr "" -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" +#: ../../mod/settings.php:1069 +msgid "Your connections are confirmed" +msgstr "" + +#: ../../mod/settings.php:1070 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" +#: ../../mod/settings.php:1071 +msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/removeme.php:61 -msgid "Remove Channel" +#: ../../mod/settings.php:1072 +msgid "You receive a private message" msgstr "" -#: ../../mod/common.php:10 -msgid "No channel." +#: ../../mod/settings.php:1073 +msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/common.php:39 -msgid "Common connections" +#: ../../mod/settings.php:1074 +msgid "You are tagged in a post" msgstr "" -#: ../../mod/common.php:44 -msgid "No connections in common." +#: ../../mod/settings.php:1075 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../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." +#: ../../mod/settings.php:1078 +msgid "Show visual notifications including:" msgstr "" -#: ../../mod/rmagic.php:38 -msgid "The error message was:" +#: ../../mod/settings.php:1080 +msgid "Unseen matrix activity" msgstr "" -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." +#: ../../mod/settings.php:1081 +msgid "Unseen channel activity" msgstr "" -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" +#: ../../mod/settings.php:1082 +msgid "Unseen private messages" msgstr "" -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../mod/settings.php:1082 ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 +msgid "Recommended" msgstr "" -#: ../../mod/rmagic.php:84 -msgid "Authenticate" +#: ../../mod/settings.php:1083 +msgid "Upcoming events" msgstr "" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." +#: ../../mod/settings.php:1084 +msgid "Events today" msgstr "" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." +#: ../../mod/settings.php:1085 +msgid "Upcoming birthdays" msgstr "" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" +#: ../../mod/settings.php:1085 +msgid "Not available in all themes" msgstr "" -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" +#: ../../mod/settings.php:1086 +msgid "System (personal) notifications" msgstr "" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../mod/settings.php:1087 +msgid "System info messages" msgstr "" -#: ../../mod/lostpass.php:85 ../../boot.php:1548 -msgid "Password Reset" +#: ../../mod/settings.php:1088 +msgid "System critical alerts" msgstr "" -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." +#: ../../mod/settings.php:1089 +msgid "New connections" msgstr "" -#: ../../mod/lostpass.php:87 -msgid "Your new password is" +#: ../../mod/settings.php:1090 +msgid "System Registrations" msgstr "" -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" +#: ../../mod/settings.php:1091 +msgid "" +"Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../mod/lostpass.php:89 -msgid "click here to login" +#: ../../mod/settings.php:1093 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../mod/settings.php:1093 +msgid "Must be greater than 0" msgstr "" -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" +#: ../../mod/settings.php:1095 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" +#: ../../mod/settings.php:1096 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/lostpass.php:123 +#: ../../mod/settings.php:1099 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" msgstr "" -#: ../../mod/lostpass.php:124 -msgid "Email Address" +#: ../../mod/settings.php:1100 +msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/lostpass.php:125 -msgid "Reset" +#: ../../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 @@ -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 @@ -5959,161 +5873,26 @@ msgstr "" msgid "Recall message" msgstr "" -#: ../../mod/mail.php:312 -msgid "Message has been recalled." -msgstr "" - -#: ../../mod/mail.php:329 -msgid "Private Conversation" -msgstr "" - -#: ../../mod/mail.php:333 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/mail.php:335 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/mail.php:339 -msgid "Send Reply" -msgstr "" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "" - -#: ../../mod/photos.php:119 ../../mod/photos.php:672 -msgid "Delete Album" -msgstr "" - -#: ../../mod/photos.php:159 ../../mod/photos.php:958 -msgid "Delete Photo" -msgstr "" - -#: ../../mod/photos.php:469 -msgid "No photos selected" -msgstr "" - -#: ../../mod/photos.php:513 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../mod/photos.php:552 -#, php-format -msgid "%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" +#: ../../mod/mail.php:312 +msgid "Message has been recalled." msgstr "" -#: ../../mod/photos.php:956 -msgid "Flag as adult in album view" +#: ../../mod/mail.php:329 +msgid "Private Conversation" msgstr "" -#: ../../mod/photos.php:1133 -msgid "In This Photo:" +#: ../../mod/mail.php:333 ../../mod/message.php:72 +msgid "Delete conversation" msgstr "" -#: ../../mod/photos.php:1221 -msgid "View Album" +#: ../../mod/mail.php:335 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../mod/photos.php:1244 -msgid "Recent Photos" +#: ../../mod/mail.php:339 +msgid "Send Reply" msgstr "" #: ../../mod/bookmarks.php:38 @@ -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/setup.php:453 +msgid "mcrypt PHP module" +msgstr "" + +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../mod/setup.php:458 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../mod/setup.php:464 ../../mod/setup.php:467 +msgid "proc_open" +msgstr "" + +#: ../../mod/setup.php:464 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "" + +#: ../../mod/setup.php:472 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../mod/setup.php:476 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../mod/setup.php:480 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "" + +#: ../../mod/setup.php:488 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../mod/setup.php:492 +msgid "Error: mcrypt PHP module required but not installed." +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." +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." +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." +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." msgstr "" -#: ../../mod/profiles.php:658 -msgid "Homepage URL:" +#: ../../mod/setup.php:514 +msgid ".htconfig.php is writable" msgstr "" -#: ../../mod/profiles.php:661 -msgid "Religious Views:" +#: ../../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:662 -msgid "Keywords:" +#: ../../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:665 -msgid "Example: fishing photography software" +#: ../../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:666 -msgid "Used in directory listings" +#: ../../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:667 -msgid "Tell us about yourself..." +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../mod/profiles.php:668 -msgid "Hobbies/Interests" +#: ../../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/profiles.php:669 -msgid "Contact information and Social Networks" +#: ../../mod/setup.php:547 +msgid "store is writable" msgstr "" -#: ../../mod/profiles.php:670 -msgid "My other channels" +#: ../../mod/setup.php:577 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../mod/profiles.php:671 -msgid "Musical interests" +#: ../../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/profiles.php:672 -msgid "Books, literature" +#: ../../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/profiles.php:673 -msgid "Television" +#: ../../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/profiles.php:674 -msgid "Film/dance/culture/entertainment" +#: ../../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/profiles.php:675 -msgid "Love/romance" +#: ../../mod/setup.php:582 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../mod/profiles.php:676 -msgid "Work/employment" +#: ../../mod/setup.php:584 +msgid "SSL certificate validation" msgstr "" -#: ../../mod/profiles.php:677 -msgid "School/education" +#: ../../mod/setup.php:590 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../mod/profiles.php:683 -msgid "This is your default profile." +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" msgstr "" -#: ../../mod/profiles.php:694 ../../mod/directory.php:188 -msgid "Age: " +#: ../../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/profiles.php:737 -msgid "Edit/Manage Profiles" +#: ../../mod/setup.php:626 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../mod/profiles.php:738 -msgid "Add profile things" +#: ../../mod/setup.php:661 +msgid "

    What next

    " msgstr "" -#: ../../mod/profiles.php:739 -msgid "Include desirable objects in your profile" +#: ../../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 "Channel Type" +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 "?" -msgstr "" - -#: ../../mod/new_channel.php:120 -msgid "What is this?" +msgid "Channel Type" 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" +#: ../../mod/new_channel.php:119 +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 -- cgit v1.2.3 From 31648d65c8c5c3a54fc36b83871dcc09a9ac982f Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 2 Jan 2015 19:20:52 -0800 Subject: 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}}
    - -
    - - - - - -
    - -- cgit v1.2.3 From 3e073f4b626ce5e12f3c9412afa5505ac26e5a9b Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 2 Jan 2015 23:07:37 -0800 Subject: 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 +} -- cgit v1.2.3 From 0779e3ae53161843110610eba27380bfab0b2dd0 Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 3 Jan 2015 13:42:05 +0100 Subject: 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}} -
    -- cgit v1.2.3 From 753e6809d920f0205b49d45072c8a5bb687c1797 Mon Sep 17 00:00:00 2001 From: Jeroen Date: Sat, 3 Jan 2015 15:51:01 +0000 Subject: update NL and text-background-fix in chat for alternatives schemas --- view/nl/messages.po | 10108 ++++++++++--------- view/nl/strings.php | 1849 ++-- 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, 6011 insertions(+), 5959 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,185 +31,129 @@ 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/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/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:135 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../include/items.php:969 ../../include/items.php:1014 +msgid "(Unknown)" +msgstr "(Onbekend)" -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../include/items.php:1171 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "lokale account niet gevonden." +#: ../../include/items.php:1173 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" +#: ../../include/items.php:1175 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "maakte een nieuw bericht aan" +#: ../../include/items.php:1177 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../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" - -#: ../../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/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" - -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/menu.php:42 ../../include/RedDAV/RedBrowser.php:250 -#: ../../include/apps.php:249 ../../include/ItemObject.php:100 -#: ../../mod/blocks.php:132 ../../mod/settings.php:627 -#: ../../mod/connections.php:381 ../../mod/connections.php:394 -#: ../../mod/connections.php:413 ../../mod/thing.php:233 -#: ../../mod/webpages.php:162 ../../mod/editblock.php:143 -#: ../../mod/editlayout.php:139 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 -#: ../../mod/menu.php:78 -msgid "Edit" -msgstr "Bewerken" +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Weergeven" +#: ../../include/items.php:1181 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." -#: ../../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/items.php:1183 +msgid "Visible to approved connections." +msgstr "Voor alle goedgekeurde connecties zichtbaar." -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Acties" +#: ../../include/items.php:1185 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Paginalink" +#: ../../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/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Titel" +#: ../../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/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Aangemaakt" +#: ../../include/items.php:4410 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Collectie niet gevonden." -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Bewerkt" +#: ../../include/items.php:4425 +msgid "Collection is empty." +msgstr "Collectie is leeg" -#: ../../include/contact_widgets.php:14 +#: ../../include/items.php:4432 #, 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" +msgid "Collection: %s" +msgstr "Collectie: %s" -#: ../../include/contact_widgets.php:125 +#: ../../include/items.php:4443 #, 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" +msgid "Connection: %s" +msgstr "Connectie: %s" -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Ingesloten inhoud" +#: ../../include/items.php:4446 +msgid "Connection not found." +msgstr "Connectie niet gevonden." -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Insluiten uitgeschakeld" +#: ../../include/menu.php:42 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:263 +#: ../../include/ItemObject.php:100 ../../include/apps.php:254 +#: ../../mod/editpost.php:112 ../../mod/settings.php:639 +#: ../../mod/connections.php:381 ../../mod/connections.php:394 +#: ../../mod/connections.php:413 ../../mod/webpages.php:162 +#: ../../mod/blocks.php:132 ../../mod/editblock.php:143 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 +#: ../../mod/thing.php:233 ../../mod/layouts.php:167 ../../mod/menu.php:78 +msgid "Edit" +msgstr "Bewerken" #: ../../include/message.php:18 msgid "No recipient provided." @@ -227,120 +171,327 @@ 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/network.php:590 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../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/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" -#: ../../include/activities.php:53 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" -#: ../../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/permissions.php:28 +msgid "Can view my photo albums" +msgstr "Kan mijn fotoalbums bekijken" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" +#: ../../include/permissions.php:29 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Tonen" +#: ../../include/permissions.php:30 +msgid "Can view my file storage" +msgstr "Kan mijn bestanden bekijken" -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Niet tonen" +#: ../../include/permissions.php:31 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" -#: ../../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/permissions.php:34 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:312 -#: ../../mod/photos.php:1149 -msgid "Close" -msgstr "Sluiten" +#: ../../include/permissions.php:35 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" -#: ../../include/bb2diaspora.php:384 -msgid "Attachments:" +#: ../../include/permissions.php:36 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" + +#: ../../include/permissions.php:37 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" + +#: ../../include/permissions.php:38 +msgid "Can post photos to my photo albums" +msgstr "Kan foto's aan mijn fotoalbums toevoegen" + +#: ../../include/permissions.php:39 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" + +#: ../../include/permissions.php:39 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" + +#: ../../include/permissions.php:41 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" + +#: ../../include/permissions.php:41 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" + +#: ../../include/permissions.php:42 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" + +#: ../../include/permissions.php:43 +msgid "Can write to my file storage" +msgstr "Kan bestanden aan mijn bestandsopslag toevoegen" + +#: ../../include/permissions.php:44 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" + +#: ../../include/permissions.php:46 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" + +#: ../../include/permissions.php:46 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" + +#: ../../include/permissions.php:48 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" + +#: ../../include/permissions.php:48 +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:810 +msgid "Social Networking" +msgstr "Sociaal netwerk" + +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +#: ../../include/permissions.php:812 +msgid "Mostly Public" +msgstr "Vrijwel alles openbaar" + +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +#: ../../include/permissions.php:812 +msgid "Restricted" +msgstr "Beperkt zichtbaar" + +#: ../../include/permissions.php:810 ../../include/permissions.php:811 +msgid "Private" +msgstr "Verborgen kanaal" + +#: ../../include/permissions.php:811 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../include/permissions.php:812 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../include/permissions.php:813 +msgid "Special Purpose" +msgstr "Speciaal doel" + +#: ../../include/permissions.php:813 +msgid "Celebrity/Soapbox" +msgstr "Beroemdheid/alleen volgen" + +#: ../../include/permissions.php:813 +msgid "Group Repository" +msgstr "Groepsopslag" + +#: ../../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: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:463 ../../include/event.php:11 +#: ../../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:465 +#: ../../include/bb2diaspora.php:447 msgid "Redmatrix event notification:" msgstr "Notificatie RedMatrix-gebeurtenis:" -#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 +#: ../../include/bb2diaspora.php:451 ../../include/event.php:20 msgid "Starts:" msgstr "Start:" -#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 +#: ../../include/bb2diaspora.php:459 ../../include/event.php:30 msgid "Finishes:" msgstr "Einde:" -#: ../../include/bb2diaspora.php:485 ../../include/identity.php:891 +#: ../../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: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" @@ -399,20 +550,260 @@ msgstr "directory aanmaken (mkdir) mislukt." msgid "database storage failed." msgstr "opslag in database mislukt." -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:249 -msgid "parent" -msgstr "omhoog" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Algemene functies" -#: ../../include/RedDAV/RedBrowser.php:130 -msgid "Collection" -msgstr "map" +#: ../../include/features.php:25 +msgid "Content Expiration" +msgstr "Inhoud laten verlopen" -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Principal" -msgstr "principal" +#: ../../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/RedDAV/RedBrowser.php:136 +#: ../../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" @@ -428,73 +819,73 @@ msgstr "Planning-postvak IN" 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 +#: ../../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:223 +#: ../../include/RedDAV/RedBrowser.php:225 #, php-format msgid "%1$s used" msgstr "%1$s gebruikt" -#: ../../include/RedDAV/RedBrowser.php:228 +#: ../../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:241 ../../include/nav.php:106 -#: ../../include/conversation.php:1540 ../../include/apps.php:133 +#: ../../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:245 ../../mod/settings.php:567 -#: ../../mod/settings.php:593 ../../mod/admin.php:866 +#: ../../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:246 +#: ../../include/RedDAV/RedBrowser.php:259 msgid "Type" msgstr "Type" -#: ../../include/RedDAV/RedBrowser.php:247 +#: ../../include/RedDAV/RedBrowser.php:260 msgid "Size" msgstr "Grootte" -#: ../../include/RedDAV/RedBrowser.php:248 +#: ../../include/RedDAV/RedBrowser.php:261 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 +#: ../../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:252 -msgid "Total" -msgstr "Totaal" - -#: ../../include/RedDAV/RedBrowser.php:305 +#: ../../include/RedDAV/RedBrowser.php:312 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 +#: ../../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:307 +#: ../../include/RedDAV/RedBrowser.php:314 msgid "Upload file" msgstr "Bestand uploaden" -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:361 -#: ../../mod/photos.php:738 ../../mod/photos.php:1246 +#: ../../include/RedDAV/RedBrowser.php:315 ../../mod/profile_photo.php:361 +#: ../../mod/photos.php:735 ../../mod/photos.php:1243 msgid "Upload" msgstr "Uploaden" @@ -503,3188 +894,2856 @@ msgstr "Uploaden" 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/dir_fns.php:68 +msgid "Directory Options" +msgstr "Opties kanalengids" -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" -msgstr "Beëindig deze sessie" +#: ../../include/dir_fns.php:69 +msgid "Alphabetic" +msgstr "Alfabetisch" -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "Home" +#: ../../include/dir_fns.php:70 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" -#: ../../include/nav.php:98 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" +#: ../../include/dir_fns.php:71 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" -#: ../../include/nav.php:99 ../../include/conversation.php:935 -#: ../../mod/connedit.php:429 ../../mod/connedit.php:545 -msgid "View Profile" -msgstr "Profiel weergeven" +#: ../../include/dir_fns.php:72 +msgid "Oldest to Newest" +msgstr "Oud naar nieuw" -#: ../../include/nav.php:99 -msgid "Your profile page" -msgstr "Jouw profielpagina" +#: ../../include/dir_fns.php:73 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "Bewerk profielen" +#: ../../include/dir_fns.php:75 +msgid "Sort" +msgstr "Sorteren" -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" +#: ../../include/dir_fns.php:91 +msgid "Enable Safe Search" +msgstr "Veilig zoeken inschakelen" -#: ../../include/nav.php:103 ../../include/identity.php:864 -msgid "Edit Profile" -msgstr "Profiel bewerken" +#: ../../include/dir_fns.php:93 +msgid "Disable Safe Search" +msgstr "Veilig zoeken uitschakelen" -#: ../../include/nav.php:103 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" +#: ../../include/dir_fns.php:95 +msgid "Safe Mode" +msgstr "Veilig zoeken" -#: ../../include/nav.php:105 ../../include/conversation.php:1531 -#: ../../include/apps.php:137 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" +#: ../../include/comanche.php:35 ../../mod/admin.php:353 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "Standaard" -#: ../../include/nav.php:105 -msgid "Your photos" -msgstr "Jouw foto's" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Regelmatig" -#: ../../include/nav.php:106 -msgid "Your files" -msgstr "Jouw bestanden" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Elk uur" -#: ../../include/nav.php:111 ../../include/apps.php:144 -msgid "Chat" -msgstr "Chatten" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Dagelijks" -#: ../../include/nav.php:117 ../../include/conversation.php:1566 -#: ../../include/apps.php:127 -msgid "Bookmarks" -msgstr "Bladwijzers" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wekelijks" -#: ../../include/nav.php:117 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Maandelijks" -#: ../../include/nav.php:121 ../../include/conversation.php:1577 -#: ../../include/apps.php:134 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webpagina's" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/nav.php:121 -msgid "Your webpages" -msgstr "Jouw webpagina's" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1529 -msgid "Login" -msgstr "Inloggen" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "Inloggen" +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 +#: ../../mod/admin.php:735 ../../boot.php:1544 +msgid "Email" +msgstr "E-mail" -#: ../../include/nav.php:142 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/nav.php:145 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../include/nav.php:159 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1507 -msgid "Register" -msgstr "Registreren" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/nav.php:163 -msgid "Create an account" -msgstr "Maak een account aan" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" -msgstr "Hulp" +#: ../../include/auth.php:130 +msgid "Logged out." +msgstr "Uitgelogd." -#: ../../include/nav.php:168 -msgid "Help and documentation" -msgstr "Hulp en documentatie" +#: ../../include/auth.php:271 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" -#: ../../include/nav.php:171 ../../include/widgets.php:91 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Apps" +#: ../../include/auth.php:285 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Inloggen mislukt." -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" -msgstr "Apps" +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" -#: ../../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/acl_selectors.php:241 +msgid "Show" +msgstr "Tonen" -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "Inhoud van deze RedMatrix-hub doorzoeken" +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Niet tonen" -#: ../../include/nav.php:176 ../../include/apps.php:139 -#: ../../mod/directory.php:320 -msgid "Directory" -msgstr "Kanalengids" +#: ../../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/nav.php:176 -msgid "Channel Directory" -msgstr "Kanalengids" +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 +#: ../../mod/photos.php:1146 +msgid "Close" +msgstr "Sluiten" -#: ../../include/nav.php:190 ../../include/apps.php:131 -msgid "Matrix" -msgstr "Matrix" +#: ../../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" -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "Jouw matrix" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -msgstr "Markeer alle matrixnotificaties als bekeken" +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "Naam te lang" -#: ../../include/nav.php:193 ../../include/apps.php:135 -msgid "Channel Home" -msgstr "Tijdlijn kanaal" +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Geen account-identificator" -#: ../../include/nav.php:193 -msgid "Channel home" -msgstr "Tijdlijn kanaal" +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Connecties" +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "Notificaties" +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "Notificaties" +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "Standaardprofiel" -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" +#: ../../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 "Vrienden" -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../include/nav.php:204 ../../include/apps.php:141 -msgid "Mail" -msgstr "Privéberichten" +#: ../../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 "Opgevraagd profiel is niet beschikbaar" -#: ../../include/nav.php:204 -msgid "Private mail" -msgstr "Privéberichten" +#: ../../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/nav.php:205 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" +#: ../../include/identity.php:854 ../../mod/profiles.php:757 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" +#: ../../include/identity.php:861 +msgid "Profiles" +msgstr "Profielen" -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "Postvak IN" +#: ../../include/identity.php:861 +msgid "Manage/edit profiles" +msgstr "Profielen beheren/bewerken" -#: ../../include/nav.php:208 -msgid "Outbox" -msgstr "Postvak UIT" +#: ../../include/identity.php:862 ../../mod/profiles.php:758 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" -#: ../../include/nav.php:209 ../../include/widgets.php:557 -msgid "New Message" -msgstr "Nieuw bericht" +#: ../../include/identity.php:865 ../../include/nav.php:103 +msgid "Edit Profile" +msgstr "Profiel bewerken" -#: ../../include/nav.php:212 ../../include/apps.php:138 -#: ../../mod/events.php:442 -msgid "Events" -msgstr "Agenda" +#: ../../include/identity.php:878 ../../mod/profiles.php:769 +msgid "Profile Image" +msgstr "Profielfoto" -#: ../../include/nav.php:212 -msgid "Event Calendar" -msgstr "Agenda" +#: ../../include/identity.php:881 +msgid "visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" +#: ../../include/identity.php:882 ../../mod/profiles.php:652 +#: ../../mod/profiles.php:773 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" -#: ../../include/nav.php:214 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" +#: ../../include/identity.php:898 ../../include/identity.php:1135 +msgid "Gender:" +msgstr "Geslacht:" -#: ../../include/nav.php:216 ../../include/apps.php:130 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanaalbeheer" +#: ../../include/identity.php:899 ../../include/identity.php:1179 +msgid "Status:" +msgstr "Status:" -#: ../../include/nav.php:216 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" +#: ../../include/identity.php:900 ../../include/identity.php:1190 +msgid "Homepage:" +msgstr "Homepagina:" -#: ../../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/identity.php:901 +msgid "Online Now" +msgstr "Nu online" -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" +#: ../../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/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Beheer" +#: ../../include/identity.php:980 ../../include/identity.php:1060 +msgid "F d" +msgstr "d F" -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" +#: ../../include/identity.php:1025 ../../include/identity.php:1100 +#: ../../mod/ping.php:351 +msgid "[today]" +msgstr "[vandaag]" -#: ../../include/nav.php:257 ../../include/conversation.php:840 -msgid "Loading..." -msgstr "Aan het laden..." +#: ../../include/identity.php:1037 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" -#: ../../include/nav.php:262 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../include/identity.php:1038 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" -#: ../../include/network.php:590 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../include/identity.php:1093 +msgid "[No description]" +msgstr "[Geen omschrijving]" -#: ../../include/dir_fns.php:66 -msgid "Directory Options" -msgstr "Opties kanalengids" +#: ../../include/identity.php:1111 +msgid "Event Reminders" +msgstr "Herinneringen" -#: ../../include/dir_fns.php:67 -msgid "Alphabetic" -msgstr "Alfabetisch" +#: ../../include/identity.php:1112 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" -#: ../../include/dir_fns.php:68 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" +#: ../../include/identity.php:1125 ../../include/identity.php:1254 +#: ../../include/apps.php:138 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profiel" -#: ../../include/dir_fns.php:69 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" +#: ../../include/identity.php:1133 ../../mod/settings.php:1022 +msgid "Full Name:" +msgstr "Volledige naam:" -#: ../../include/dir_fns.php:70 -msgid "Oldest to Newest" -msgstr "Oud naar nieuw" +#: ../../include/identity.php:1140 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" -#: ../../include/dir_fns.php:71 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" +#: ../../include/identity.php:1164 +msgid "j F, Y" +msgstr "F j Y" -#: ../../include/dir_fns.php:73 -msgid "Sort" -msgstr "Sorteren" +#: ../../include/identity.php:1165 +msgid "j F" +msgstr "F j" -#: ../../include/dir_fns.php:89 -msgid "Enable Safe Search" -msgstr "Veilig zoeken inschakelen" +#: ../../include/identity.php:1172 +msgid "Birthday:" +msgstr "Geboortedatum:" -#: ../../include/dir_fns.php:91 -msgid "Disable Safe Search" -msgstr "Veilig zoeken uitschakelen" +#: ../../include/identity.php:1176 +msgid "Age:" +msgstr "Leeftijd:" -#: ../../include/dir_fns.php:93 -msgid "Safe Mode" -msgstr "Veilig zoeken" +#: ../../include/identity.php:1185 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../include/identity.php:1188 ../../mod/profiles.php:674 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" +#: ../../include/identity.php:1192 ../../mod/profiles.php:676 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kan mijn fotoalbums bekijken" +#: ../../include/identity.php:1194 +msgid "Tags:" +msgstr "Tags:" -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" +#: ../../include/identity.php:1196 ../../mod/profiles.php:677 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kan mijn bestanden bekijken" +#: ../../include/identity.php:1198 +msgid "Religion:" +msgstr "Religie:" -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../include/identity.php:1200 +msgid "About:" +msgstr "Over:" -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" +#: ../../include/identity.php:1202 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../include/identity.php:1204 ../../mod/profiles.php:680 +msgid "Likes:" +msgstr "Houdt van:" -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" +#: ../../include/identity.php:1206 ../../mod/profiles.php:681 +msgid "Dislikes:" +msgstr "Houdt niet van:" -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" +#: ../../include/identity.php:1209 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kan foto's aan mijn fotoalbums toevoegen" +#: ../../include/identity.php:1221 +msgid "My other channels:" +msgstr "Mijn andere kanalen" -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../include/identity.php:1224 +msgid "Musical interests:" +msgstr "Muzikale interesses:" -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" +#: ../../include/identity.php:1226 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" +#: ../../include/identity.php:1228 +msgid "Television:" +msgstr "Televisie:" -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" +#: ../../include/identity.php:1230 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" +#: ../../include/identity.php:1232 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kan bestanden aan mijn bestandsopslag toevoegen" +#: ../../include/identity.php:1234 +msgid "Work/employment:" +msgstr "Werk/beroep:" -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" +#: ../../include/identity.php:1236 +msgid "School/education:" +msgstr "School/opleiding:" -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" +#: ../../include/identity.php:1256 +msgid "Like this thing" +msgstr "Vind dit ding leuk" -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" +#: ../../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/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 +msgid "Advanced" +msgstr "Geavanceerd" -#: ../../include/permissions.php:48 -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/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Kanalen vinden" -#: ../../include/permissions.php:814 -msgid "Social Networking" -msgstr "Sociaal netwerk" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" -#: ../../include/permissions.php:815 ../../include/permissions.php:817 -#: ../../include/permissions.php:819 -msgid "Mostly Public" -msgstr "Vrijwel alles openbaar" - -#: ../../include/permissions.php:815 ../../include/permissions.php:817 -#: ../../include/permissions.php:819 -msgid "Restricted" -msgstr "Beperkt zichtbaar" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" -#: ../../include/permissions.php:815 ../../include/permissions.php:817 -msgid "Private" -msgstr "Verborgen kanaal" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" -#: ../../include/permissions.php:816 -msgid "Community Forum" -msgstr "Groepsforum" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 +#: ../../mod/directory.php:317 ../../mod/directory.php:322 +msgid "Find" +msgstr "Vinden" -#: ../../include/permissions.php:818 -msgid "Feed Republish" -msgstr "Feed herpubliceren" +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +#: ../../mod/directory.php:321 +msgid "Channel Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../include/permissions.php:820 -msgid "Special Purpose" -msgstr "Speciaal doel" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Willekeurig profiel" -#: ../../include/permissions.php:821 -msgid "Celebrity/Soapbox" -msgstr "Beroemdheid/alleen volgen" +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" -#: ../../include/permissions.php:821 -msgid "Group Repository" -msgstr "Groepsopslag" +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" -#: ../../include/permissions.php:822 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Anders" +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 +#: ../../include/widgets.php:305 +msgid "Everything" +msgstr "Alles" -#: ../../include/permissions.php:823 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" +#: ../../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/comanche.php:35 ../../mod/admin.php:353 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standaard" +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "meer connecties weergeven" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Regelmatig" +#: ../../include/event.php:376 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Elk uur" +#: ../../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/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Standaard privacy-collectie voor nieuwe kanalen" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Dagelijks" +#: ../../include/group.php:254 ../../mod/admin.php:735 +msgid "All Channels" +msgstr "Alle kanalen" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wekelijks" +#: ../../include/group.php:276 +msgid "edit" +msgstr "bewerken" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Maandelijks" +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Collecties" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Collectie bewerken" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/group.php:300 +msgid "Create a new collection" +msgstr "Nieuwe collectie aanmaken" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanalen die zich in geen enkele collectie bevinden" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 -#: ../../mod/admin.php:735 ../../boot.php:1531 -msgid "Email" -msgstr "E-mail" +#: ../../include/group.php:303 ../../include/widgets.php:273 +msgid "add" +msgstr "toevoegen" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../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/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../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/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." -#: ../../include/identity.php:31 ../../mod/item.php:1112 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Ontbrekende naam" +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Naam te lang" +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Geen account-identificator" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Beheerder" -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Account goedgekeurd" -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standaardprofiel" +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." -#: ../../include/identity.php:387 ../../include/identity.php:388 -#: ../../include/identity.php:395 ../../include/widgets.php:424 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:320 -#: ../../mod/settings.php:324 ../../mod/settings.php:325 -#: ../../mod/settings.php:328 ../../mod/settings.php:339 -#: ../../mod/connedit.php:510 -msgid "Friends" -msgstr "Vrienden" +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." +#: ../../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/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/blocks.php:29 ../../mod/connect.php:13 -#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 -msgid "Requested profile is not available." -msgstr "Opgevraagd profiel is niet beschikbaar" +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." -#: ../../include/identity.php:840 ../../include/Contact.php:107 -#: ../../include/conversation.php:938 ../../include/widgets.php:136 -#: ../../include/widgets.php:175 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 ../../mod/directory.php:264 -msgid "Connect" -msgstr "Verbinden" +#: ../../include/text.php:320 +msgid "prev" +msgstr "vorige" -#: ../../include/identity.php:854 ../../mod/profiles.php:740 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" +#: ../../include/text.php:322 +msgid "first" +msgstr "eerste" -#: ../../include/identity.php:860 -msgid "Profiles" -msgstr "Profielen" +#: ../../include/text.php:351 +msgid "last" +msgstr "laatste" -#: ../../include/identity.php:860 -msgid "Manage/edit profiles" -msgstr "Profielen beheren/bewerken" +#: ../../include/text.php:354 +msgid "next" +msgstr "volgende" -#: ../../include/identity.php:861 ../../mod/profiles.php:741 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" +#: ../../include/text.php:366 +msgid "older" +msgstr "ouder" -#: ../../include/identity.php:875 ../../mod/profiles.php:752 -msgid "Profile Image" -msgstr "Profielfoto" - -#: ../../include/identity.php:878 -msgid "visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../include/text.php:368 +msgid "newer" +msgstr "nieuwer" -#: ../../include/identity.php:879 ../../mod/profiles.php:635 -#: ../../mod/profiles.php:756 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" +#: ../../include/text.php:756 +msgid "No connections" +msgstr "Geen connecties" -#: ../../include/identity.php:895 ../../include/identity.php:1132 -msgid "Gender:" -msgstr "Geslacht:" +#: ../../include/text.php:772 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d connectie" +msgstr[1] "%d connecties" -#: ../../include/identity.php:896 ../../include/identity.php:1176 -msgid "Status:" -msgstr "Status:" +#: ../../include/text.php:785 +msgid "View Connections" +msgstr "Connecties weergeven" -#: ../../include/identity.php:897 ../../include/identity.php:1187 -msgid "Homepage:" -msgstr "Homepagina:" +#: ../../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/identity.php:898 -msgid "Online Now" -msgstr "Nu online" +#: ../../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/identity.php:976 ../../include/identity.php:1056 -#: ../../mod/ping.php:326 -msgid "g A l F d" -msgstr "G:i, l d F" +#: ../../include/text.php:920 +msgid "poke" +msgstr "aanstoten" -#: ../../include/identity.php:977 ../../include/identity.php:1057 -msgid "F d" -msgstr "d F" +#: ../../include/text.php:920 ../../include/conversation.php:243 +msgid "poked" +msgstr "aangestoten" -#: ../../include/identity.php:1022 ../../include/identity.php:1097 -#: ../../mod/ping.php:348 -msgid "[today]" -msgstr "[vandaag]" +#: ../../include/text.php:921 +msgid "ping" +msgstr "ping" -#: ../../include/identity.php:1034 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" +#: ../../include/text.php:921 +msgid "pinged" +msgstr "gepingd" -#: ../../include/identity.php:1035 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" +#: ../../include/text.php:922 +msgid "prod" +msgstr "por" -#: ../../include/identity.php:1090 -msgid "[No description]" -msgstr "[Geen omschrijving]" +#: ../../include/text.php:922 +msgid "prodded" +msgstr "gepord" -#: ../../include/identity.php:1108 -msgid "Event Reminders" -msgstr "Herinneringen" +#: ../../include/text.php:923 +msgid "slap" +msgstr "slaan" -#: ../../include/identity.php:1109 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" +#: ../../include/text.php:923 +msgid "slapped" +msgstr "sloeg" -#: ../../include/identity.php:1122 ../../include/identity.php:1251 -#: ../../include/apps.php:136 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profiel" +#: ../../include/text.php:924 +msgid "finger" +msgstr "finger" -#: ../../include/identity.php:1130 ../../mod/settings.php:1012 -msgid "Full Name:" -msgstr "Volledige naam:" +#: ../../include/text.php:924 +msgid "fingered" +msgstr "gefingerd" -#: ../../include/identity.php:1137 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" +#: ../../include/text.php:925 +msgid "rebuff" +msgstr "afpoeieren" -#: ../../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/text.php:925 +msgid "rebuffed" +msgstr "afgepoeierd" -#: ../../include/identity.php:1161 -msgid "j F, Y" -msgstr "F j Y" +#: ../../include/text.php:935 +msgid "happy" +msgstr "gelukkig" -#: ../../include/identity.php:1162 -msgid "j F" -msgstr "F j" +#: ../../include/text.php:936 +msgid "sad" +msgstr "bedroefd" -#: ../../include/identity.php:1169 -msgid "Birthday:" -msgstr "Geboortedatum:" +#: ../../include/text.php:937 +msgid "mellow" +msgstr "mellow" -#: ../../include/identity.php:1173 -msgid "Age:" -msgstr "Leeftijd:" +#: ../../include/text.php:938 +msgid "tired" +msgstr "moe" -#: ../../include/identity.php:1182 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" +#: ../../include/text.php:939 +msgid "perky" +msgstr "parmantig" -#: ../../include/identity.php:1185 ../../mod/profiles.php:657 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" +#: ../../include/text.php:940 +msgid "angry" +msgstr "boos" -#: ../../include/identity.php:1189 ../../mod/profiles.php:659 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" +#: ../../include/text.php:941 +msgid "stupified" +msgstr "beteuterd" -#: ../../include/identity.php:1191 -msgid "Tags:" -msgstr "Trefwoorden:" +#: ../../include/text.php:942 +msgid "puzzled" +msgstr "verward" -#: ../../include/identity.php:1193 ../../mod/profiles.php:660 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" +#: ../../include/text.php:943 +msgid "interested" +msgstr "geïnteresseerd" -#: ../../include/identity.php:1195 -msgid "Religion:" -msgstr "Religie:" +#: ../../include/text.php:944 +msgid "bitter" +msgstr "verbitterd" -#: ../../include/identity.php:1197 -msgid "About:" -msgstr "Over:" +#: ../../include/text.php:945 +msgid "cheerful" +msgstr "vrolijk" -#: ../../include/identity.php:1199 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" +#: ../../include/text.php:946 +msgid "alive" +msgstr "levendig" -#: ../../include/identity.php:1201 ../../mod/profiles.php:663 -msgid "Likes:" -msgstr "Houdt van:" +#: ../../include/text.php:947 +msgid "annoyed" +msgstr "geërgerd" -#: ../../include/identity.php:1203 ../../mod/profiles.php:664 -msgid "Dislikes:" -msgstr "Houdt niet van:" +#: ../../include/text.php:948 +msgid "anxious" +msgstr "bezorgd" -#: ../../include/identity.php:1206 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" +#: ../../include/text.php:949 +msgid "cranky" +msgstr "humeurig" -#: ../../include/identity.php:1218 -msgid "My other channels:" -msgstr "Mijn andere kanalen" +#: ../../include/text.php:950 +msgid "disturbed" +msgstr "verontrust" -#: ../../include/identity.php:1221 -msgid "Musical interests:" -msgstr "Muzikale interesses:" +#: ../../include/text.php:951 +msgid "frustrated" +msgstr "gefrustreerd " -#: ../../include/identity.php:1223 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" +#: ../../include/text.php:952 +msgid "depressed" +msgstr "gedeprimeerd" -#: ../../include/identity.php:1225 -msgid "Television:" -msgstr "Televisie:" +#: ../../include/text.php:953 +msgid "motivated" +msgstr "gemotiveerd" -#: ../../include/identity.php:1227 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" +#: ../../include/text.php:954 +msgid "relaxed" +msgstr "ontspannen" -#: ../../include/identity.php:1229 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" +#: ../../include/text.php:955 +msgid "surprised" +msgstr "verrast" -#: ../../include/identity.php:1231 -msgid "Work/employment:" -msgstr "Werk/beroep:" +#: ../../include/text.php:1121 +msgid "Monday" +msgstr "maandag" -#: ../../include/identity.php:1233 -msgid "School/education:" -msgstr "School/opleiding:" +#: ../../include/text.php:1121 +msgid "Tuesday" +msgstr "dinsdag" -#: ../../include/identity.php:1253 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +#: ../../include/text.php:1121 +msgid "Wednesday" +msgstr "woensdag" -#: ../../include/bbcode.php:112 ../../include/bbcode.php:655 -#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 -#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 -#: ../../include/bbcode.php:672 ../../include/bbcode.php:677 -#: ../../include/bbcode.php:680 ../../include/bbcode.php:685 -#: ../../include/bbcode.php:688 ../../include/bbcode.php:691 -#: ../../include/bbcode.php:694 -msgid "Image/photo" -msgstr "Afbeelding/foto" +#: ../../include/text.php:1121 +msgid "Thursday" +msgstr "donderdag" -#: ../../include/bbcode.php:147 ../../include/bbcode.php:705 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" +#: ../../include/text.php:1121 +msgid "Friday" +msgstr "vrijdag" -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "Installeer ontwerp-onderdeel" +#: ../../include/text.php:1121 +msgid "Saturday" +msgstr "zaterdag" -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "QR-code" +#: ../../include/text.php:1121 +msgid "Sunday" +msgstr "zondag" -#: ../../include/bbcode.php:220 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" +#: ../../include/text.php:1125 +msgid "January" +msgstr "januari" -#: ../../include/bbcode.php:222 -msgid "post" -msgstr "bericht" +#: ../../include/text.php:1125 +msgid "February" +msgstr "februari" -#: ../../include/bbcode.php:623 -msgid "$1 spoiler" -msgstr "$1 spoiler" +#: ../../include/text.php:1125 +msgid "March" +msgstr "maart" -#: ../../include/bbcode.php:643 -msgid "$1 wrote:" -msgstr "$1 schreef:" +#: ../../include/text.php:1125 +msgid "April" +msgstr "april" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" +#: ../../include/text.php:1125 +msgid "May" +msgstr "mei" -#: ../../include/datetime.php:142 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" +#: ../../include/text.php:1125 +msgid "June" +msgstr "juni" -#: ../../include/datetime.php:259 -msgid "never" -msgstr "nooit" +#: ../../include/text.php:1125 +msgid "July" +msgstr "juli" -#: ../../include/datetime.php:265 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" +#: ../../include/text.php:1125 +msgid "August" +msgstr "augustus" -#: ../../include/datetime.php:268 -msgid "year" -msgstr "jaar" +#: ../../include/text.php:1125 +msgid "September" +msgstr "september" -#: ../../include/datetime.php:268 -msgid "years" -msgstr "jaren" +#: ../../include/text.php:1125 +msgid "October" +msgstr "oktober" -#: ../../include/datetime.php:269 -msgid "month" -msgstr "maand" +#: ../../include/text.php:1125 +msgid "November" +msgstr "november" -#: ../../include/datetime.php:269 -msgid "months" -msgstr "maanden" +#: ../../include/text.php:1125 +msgid "December" +msgstr "december" -#: ../../include/datetime.php:270 -msgid "week" -msgstr "week" +#: ../../include/text.php:1203 +msgid "unknown.???" +msgstr "onbekend.???" -#: ../../include/datetime.php:270 -msgid "weeks" -msgstr "weken" +#: ../../include/text.php:1204 +msgid "bytes" +msgstr "bytes" -#: ../../include/datetime.php:271 -msgid "day" -msgstr "dag" +#: ../../include/text.php:1240 +msgid "remove category" +msgstr "categorie verwijderen" -#: ../../include/datetime.php:271 -msgid "days" -msgstr "dagen" +#: ../../include/text.php:1309 +msgid "remove from file" +msgstr "uit map verwijderen" -#: ../../include/datetime.php:272 -msgid "hour" -msgstr "uur" +#: ../../include/text.php:1385 ../../include/text.php:1396 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" -#: ../../include/datetime.php:272 -msgid "hours" -msgstr "uren" +#: ../../include/text.php:1544 ../../mod/events.php:414 +msgid "Link to Source" +msgstr "Originele locatie" -#: ../../include/datetime.php:273 -msgid "minute" -msgstr "minuut" +#: ../../include/text.php:1563 +msgid "Select a page layout: " +msgstr "Kies een paginalay-out: " -#: ../../include/datetime.php:273 -msgid "minutes" -msgstr "minuten" +#: ../../include/text.php:1566 ../../include/text.php:1626 +msgid "default" +msgstr "standaard" -#: ../../include/datetime.php:274 -msgid "second" -msgstr "seconde" +#: ../../include/text.php:1599 +msgid "Page content type: " +msgstr "Opmaakcode pagina" -#: ../../include/datetime.php:274 -msgid "seconds" -msgstr "seconden" +#: ../../include/text.php:1638 +msgid "Select an alternate language" +msgstr "Kies een andere taal" -#: ../../include/datetime.php:283 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" +#: ../../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/datetime.php:491 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" +#: ../../include/text.php:1760 ../../include/conversation.php:123 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "gebeurtenis" -#: ../../include/datetime.php:492 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" +#: ../../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/Contact.php:123 -msgid "New window" -msgstr "Nieuw venster" +#: ../../include/text.php:1765 ../../include/conversation.php:150 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "reactie" -#: ../../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/text.php:1770 +msgid "activity" +msgstr "activiteit" -#: ../../include/Contact.php:214 ../../mod/admin.php:646 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" +#: ../../include/text.php:2057 +msgid "Design" +msgstr "Ontwerp" -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Labels" +#: ../../include/text.php:2060 +msgid "Blocks" +msgstr "Blokken" -#: ../../include/taxonomy.php:249 -msgid "Keywords" -msgstr "Trefwoorden" +#: ../../include/text.php:2061 +msgid "Menus" +msgstr "Menu's" -#: ../../include/taxonomy.php:274 -msgid "have" -msgstr "heb" +#: ../../include/text.php:2062 +msgid "Layouts" +msgstr "Lay-outs" -#: ../../include/taxonomy.php:274 -msgid "has" -msgstr "heeft" +#: ../../include/text.php:2063 +msgid "Pages" +msgstr "Pagina's" -#: ../../include/taxonomy.php:275 -msgid "want" -msgstr "wil" +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" -#: ../../include/taxonomy.php:275 -msgid "wants" -msgstr "wil" +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" -#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 -msgid "like" -msgstr "vind dit leuk" +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" -#: ../../include/taxonomy.php:276 -msgid "likes" -msgstr "vindt dit leuk" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" -#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "vind dit niet leuk" +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" -#: ../../include/taxonomy.php:277 -msgid "dislikes" -msgstr "vindt dit niet leuk" +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Chatkanaal is vol" -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "RedMatrix-notificatie" +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "RedMatrix" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Bedankt," +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." -#: ../../include/enotify.php:46 +#: ../../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 "%s Administrator" -msgstr "Beheerder %s" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../include/enotify.php:81 +#: ../../include/conversation.php:167 ../../mod/like.php:338 #, php-format -msgid "%s " -msgstr "%s " +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" -#: ../../include/enotify.php:85 +#: ../../include/conversation.php:204 #, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notificatie] Nieuw privébericht ontvangen op %s" +msgid "%1$s is now connected with %2$s" +msgstr "%1$s is nu met %2$s verbonden" -#: ../../include/enotify.php:87 +#: ../../include/conversation.php:239 #, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/enotify.php:88 +#: ../../include/conversation.php:261 ../../mod/mood.php:63 #, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s zond jou %2$s." +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "een privébericht" +#: ../../include/conversation.php:638 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Kies" -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." +#: ../../include/conversation.php:646 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Privébericht" -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" +#: ../../include/conversation.php:653 ../../include/ItemObject.php:194 +msgid "Message signature validated" +msgstr "Berichtkenmerk gevalideerd" -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" +#: ../../include/conversation.php:654 ../../include/ItemObject.php:195 +msgid "Message signature incorrect" +msgstr "Berichtkenmerk onjuist" -#: ../../include/enotify.php:161 +#: ../../include/conversation.php:674 #, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/enotify.php:172 +#: ../../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 "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Notificatie] Reactie op conversatie #%1$d door %2$s" +msgid " from %s" +msgstr " van %s" -#: ../../include/enotify.php:173 +#: ../../include/conversation.php:701 ../../include/ItemObject.php:277 #, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." +msgid "last edited: %s" +msgstr "laatst bewerkt: %s" -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 +#: ../../include/conversation.php:702 ../../include/ItemObject.php:278 #, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bezoek %s om de conversatie te bekijken en/of er op te reageren." +msgid "Expires: %s" +msgstr "Verloopt: %s" -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" +#: ../../include/conversation.php:717 +msgid "View in context" +msgstr "In context bekijken" -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" +#: ../../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/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" +#: ../../include/conversation.php:835 +msgid "remove" +msgstr "verwijderen" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notificatie] %s heeft je genoemd" +#: ../../include/conversation.php:839 ../../include/nav.php:257 +msgid "Loading..." +msgstr "Aan het laden..." -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s noemde jou op %3$s" +#: ../../include/conversation.php:840 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." +#: ../../include/conversation.php:931 +msgid "View Source" +msgstr "Bron weergeven" -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notificatie] %1$s heeft je aangestoten" +#: ../../include/conversation.php:932 +msgid "Follow Thread" +msgstr "Conversatie volgen" -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s heeft je aangestoten op %3$s" +#: ../../include/conversation.php:933 +msgid "View Status" +msgstr "Status weergeven" -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." +#: ../../include/conversation.php:934 ../../include/nav.php:99 +#: ../../mod/connedit.php:429 ../../mod/connedit.php:545 +msgid "View Profile" +msgstr "Profiel weergeven" -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notificatie] %s heeft jouw bericht gelabeld" +#: ../../include/conversation.php:935 +msgid "View Photos" +msgstr "Foto's weergeven" -#: ../../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" +#: ../../include/conversation.php:936 +msgid "Matrix Activity" +msgstr "Activiteit in de RedMatrix" -#: ../../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]" +#: ../../include/conversation.php:938 +msgid "Edit Contact" +msgstr "Contact bewerken" -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notificatie] Connectieverzoek ontvangen" +#: ../../include/conversation.php:939 +msgid "Send PM" +msgstr "Privébericht verzenden" -#: ../../include/enotify.php:258 +#: ../../include/conversation.php:940 ../../include/apps.php:145 +msgid "Poke" +msgstr "Aanstoten" + +#: ../../include/conversation.php:1013 #, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" +msgid "%s likes this." +msgstr "%s vindt dit leuk." -#: ../../include/enotify.php:259 +#: ../../include/conversation.php:1013 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." -#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#: ../../include/conversation.php:1017 #, php-format -msgid "You may visit their profile at %s" -msgstr "Je kan het profiel bekijken op %s" +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/enotify.php:265 +#: ../../include/conversation.php:1019 #, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." +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/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notificatie] Kanaalvoorstel ontvangen" +#: ../../include/conversation.php:1025 +msgid "and" +msgstr "en" -#: ../../include/enotify.php:273 +#: ../../include/conversation.php:1028 #, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", en %d ander persoon" +msgstr[1] ", en %d andere personen" -#: ../../include/enotify.php:274 +#: ../../include/conversation.php:1029 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Naam:" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" +msgid "%s like this." +msgstr "%s vinden dit leuk." -#: ../../include/enotify.php:284 +#: ../../include/conversation.php:1029 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." -#: ../../include/enotify.php:477 -msgid "[Red:Notify]" -msgstr "[Red:Notificatie]" +#: ../../include/conversation.php:1086 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../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/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/conversation.php:1088 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy-collectie voor nieuwe kanalen" +#: ../../include/conversation.php:1089 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" -#: ../../include/group.php:254 ../../mod/admin.php:735 -msgid "All Channels" -msgstr "Alle kanalen" +#: ../../include/conversation.php:1090 +msgid "Tag term:" +msgstr "Tag:" -#: ../../include/group.php:276 -msgid "edit" -msgstr "bewerken" +#: ../../include/conversation.php:1091 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Bewaar in map: " -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Collecties" +#: ../../include/conversation.php:1092 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Collectie bewerken" +#: ../../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/group.php:300 -msgid "Create a new collection" -msgstr "Nieuwe collectie aanmaken" +#: ../../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/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanalen die zich in geen enkele collectie bevinden" +#: ../../include/conversation.php:1119 ../../mod/editwebpage.php:170 +msgid "Page link title" +msgstr "Titel van paginalink" -#: ../../include/group.php:303 ../../include/widgets.php:269 -msgid "add" -msgstr "toevoegen" +#: ../../include/conversation.php:1122 +msgid "Post as" +msgstr "Bericht plaatsen als" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Algemene functies" +#: ../../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/features.php:25 -msgid "Content Expiration" -msgstr "Inhoud laten verlopen" +#: ../../include/conversation.php:1124 +msgid "upload photo" +msgstr "foto uploaden" -#: ../../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/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/features.php:26 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" +#: ../../include/conversation.php:1126 +msgid "attach file" +msgstr "bestand toevoegen" -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" +#: ../../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/features.php:27 -msgid "Advanced Profiles" -msgstr "Geavanceerde profielen" +#: ../../include/conversation.php:1128 +msgid "web link" +msgstr "Weblink" -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" -msgstr "Extra onderdelen en keuzes voor je profiel" +#: ../../include/conversation.php:1129 +msgid "Insert video link" +msgstr "Videolink invoegen" -#: ../../include/features.php:28 -msgid "Profile Import/Export" -msgstr "Profiel importen/exporteren" +#: ../../include/conversation.php:1130 +msgid "video link" +msgstr "videolink" -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" -msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." +#: ../../include/conversation.php:1131 +msgid "Insert audio link" +msgstr "Audiolink invoegen" -#: ../../include/features.php:29 -msgid "Web Pages" -msgstr "Webpagina's" +#: ../../include/conversation.php:1132 +msgid "audio link" +msgstr "audiolink" -#: ../../include/features.php:29 -msgid "Provide managed web pages on your channel" -msgstr "Sta beheerde webpagina's op jouw kanaal toe" +#: ../../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/features.php:30 -msgid "Private Notes" -msgstr "Privé-aantekeningen" +#: ../../include/conversation.php:1134 +msgid "set location" +msgstr "locatie instellen" -#: ../../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/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/features.php:34 -msgid "Navigation Channel Select" -msgstr "Kanaal kiezen in navigatiemenu" +#: ../../include/conversation.php:1136 +msgid "clear location" +msgstr "locatie wissen" -#: ../../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/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/features.php:38 -msgid "Extended Identity Sharing" -msgstr "Uitgebreid identiteit delen" +#: ../../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/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/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/features.php:39 -msgid "Expert Mode" -msgstr "Expertmodus" +#: ../../include/conversation.php:1144 +msgid "permissions" +msgstr "permissies" -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Schakel de expertmodus in voor geavanceerde instellingen" +#: ../../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/features.php:40 -msgid "Premium Channel" -msgstr "Premiumkanaal" +#: ../../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/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/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/features.php:45 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" +#: ../../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/features.php:47 -msgid "Use Markdown" -msgstr "Markdown gebruiken" +#: ../../include/conversation.php:1170 ../../mod/events.php:580 +#: ../../mod/editpost.php:150 +msgid "OK" +msgstr "OK" -#: ../../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/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/features.php:48 -msgid "Post Preview" -msgstr "Voorvertoning" +#: ../../include/conversation.php:1415 +msgid "Discover" +msgstr "Ontdekken" -#: ../../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/conversation.php:1418 +msgid "Imported public streams" +msgstr "Openbare streams importeren" -#: ../../include/features.php:49 ../../include/widgets.php:528 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanaalbronnen" +#: ../../include/conversation.php:1423 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." +#: ../../include/conversation.php:1426 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/features.php:50 -msgid "Even More Encryption" -msgstr "Extra encryptie" +#: ../../include/conversation.php:1430 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" -#: ../../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/conversation.php:1433 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" -#: ../../include/features.php:51 -msgid "Flag Adult Photos" -msgstr "Markeer foto's als voor volwassenen" +#: ../../include/conversation.php:1438 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Persoonlijk" -#: ../../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/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/features.php:56 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" +#: ../../include/conversation.php:1447 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:80 +msgid "New" +msgstr "Nieuw" -#: ../../include/features.php:57 -msgid "Search by Date" -msgstr "Zoek op datum" +#: ../../include/conversation.php:1450 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" -#: ../../include/features.php:57 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " +#: ../../include/conversation.php:1456 +msgid "Starred" +msgstr "Met ster" -#: ../../include/features.php:58 -msgid "Collections Filter" -msgstr "Filter op collecties" +#: ../../include/conversation.php:1459 +msgid "Favourite Posts" +msgstr "Favoriete berichten" -#: ../../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/conversation.php:1466 +msgid "Spam" +msgstr "Spam" -#: ../../include/features.php:59 ../../include/widgets.php:268 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" +#: ../../include/conversation.php:1469 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/features.php:59 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" +#: ../../include/conversation.php:1509 ../../mod/admin.php:865 +msgid "Channel" +msgstr "Kanaal" -#: ../../include/features.php:60 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" +#: ../../include/conversation.php:1512 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" -#: ../../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/conversation.php:1521 +msgid "About" +msgstr "Over" -#: ../../include/features.php:61 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" +#: ../../include/conversation.php:1524 +msgid "Profile Details" +msgstr "Profiel" -#: ../../include/features.php:61 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" +#: ../../include/conversation.php:1530 ../../include/apps.php:139 +#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto's" -#: ../../include/features.php:62 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" +#: ../../include/conversation.php:1542 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" -#: ../../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/conversation.php:1552 ../../include/conversation.php:1555 +msgid "Chatrooms" +msgstr "Chatkanalen" -#: ../../include/features.php:63 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" +#: ../../include/conversation.php:1565 ../../include/apps.php:129 +#: ../../include/nav.php:117 +msgid "Bookmarks" +msgstr "Bladwijzers" -#: ../../include/features.php:63 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" +#: ../../include/conversation.php:1568 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" -#: ../../include/features.php:68 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" +#: ../../include/conversation.php:1576 ../../include/apps.php:136 +#: ../../include/nav.php:121 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../include/features.php:70 -msgid "Edit Sent Posts" -msgstr "Bewerk verzonden berichten" +#: ../../include/conversation.php:1579 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" -#: ../../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/widgets.php:91 ../../include/nav.php:171 +#: ../../mod/apps.php:34 +msgid "Apps" +msgstr "Apps" -#: ../../include/features.php:71 -msgid "Tagging" -msgstr "Labelen" +#: ../../include/widgets.php:92 +msgid "System" +msgstr "Systeem" -#: ../../include/features.php:71 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te labelen" +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Persoonlijke app maken" -#: ../../include/features.php:72 -msgid "Post Categories" -msgstr "Categorieën berichten" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Persoonlijke app bewerken" -#: ../../include/features.php:72 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" +#: ../../include/widgets.php:138 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" -#: ../../include/features.php:73 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../include/features.php:74 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Meer..." -#: ../../include/features.php:74 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" +#: ../../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/features.php:75 -msgid "Star Posts" -msgstr "Geef berichten een ster" +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" -#: ../../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/widgets.php:173 +msgid "Enter the channel address" +msgstr "Vul het adres van het nieuwe kanaal in" -#: ../../include/features.php:76 -msgid "Tag Cloud" -msgstr "Wolk met trefwoorden/labels" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" -#: ../../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/widgets.php:190 +msgid "Notes" +msgstr "Aantekeningen" -#: ../../include/text.php:321 -msgid "prev" -msgstr "vorige" +#: ../../include/widgets.php:264 +msgid "Remove term" +msgstr "Verwijder zoekterm" -#: ../../include/text.php:323 -msgid "first" -msgstr "eerste" +#: ../../include/widgets.php:347 +msgid "Archives" +msgstr "Archieven" -#: ../../include/text.php:352 -msgid "last" -msgstr "laatste" +#: ../../include/widgets.php:425 +msgid "Refresh" +msgstr "Vernieuwen" -#: ../../include/text.php:355 -msgid "next" -msgstr "volgende" +#: ../../include/widgets.php:426 ../../mod/connedit.php:506 +msgid "Me" +msgstr "Ik" -#: ../../include/text.php:367 -msgid "older" -msgstr "ouder" +#: ../../include/widgets.php:427 ../../mod/connedit.php:509 +msgid "Best Friends" +msgstr "Goede vrienden" -#: ../../include/text.php:369 -msgid "newer" -msgstr "nieuwer" +#: ../../include/widgets.php:429 +msgid "Co-workers" +msgstr "Collega's" -#: ../../include/text.php:736 -msgid "No connections" -msgstr "Geen connecties" +#: ../../include/widgets.php:430 ../../mod/connedit.php:511 +msgid "Former Friends" +msgstr "Oude vrienden" -#: ../../include/text.php:753 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d connectie" -msgstr[1] "%d connecties" +#: ../../include/widgets.php:431 ../../mod/connedit.php:512 +msgid "Acquaintances" +msgstr "Kennissen" -#: ../../include/text.php:766 -msgid "View Connections" -msgstr "Connecties weergeven" +#: ../../include/widgets.php:432 +msgid "Everybody" +msgstr "Iedereen" -#: ../../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/widgets.php:466 +msgid "Account settings" +msgstr "Account" -#: ../../include/text.php:905 -msgid "poke" -msgstr "aanstoten" +#: ../../include/widgets.php:472 +msgid "Channel settings" +msgstr "Kanaal" -#: ../../include/text.php:905 ../../include/conversation.php:243 -msgid "poked" -msgstr "aangestoten" +#: ../../include/widgets.php:478 +msgid "Additional features" +msgstr "Extra functies" -#: ../../include/text.php:906 -msgid "ping" -msgstr "ping" +#: ../../include/widgets.php:484 +msgid "Feature settings" +msgstr "Plug-ins" -#: ../../include/text.php:906 -msgid "pinged" -msgstr "gepingd" +#: ../../include/widgets.php:490 +msgid "Display settings" +msgstr "Weergave" -#: ../../include/text.php:907 -msgid "prod" -msgstr "por" +#: ../../include/widgets.php:496 +msgid "Connected apps" +msgstr "Verbonden applicaties" -#: ../../include/text.php:907 -msgid "prodded" -msgstr "gepord" +#: ../../include/widgets.php:502 +msgid "Export channel" +msgstr "Kanaal exporteren" -#: ../../include/text.php:908 -msgid "slap" -msgstr "slaan" +#: ../../include/widgets.php:511 ../../mod/connedit.php:539 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" -#: ../../include/text.php:908 -msgid "slapped" -msgstr "sloeg" +#: ../../include/widgets.php:519 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" -#: ../../include/text.php:909 -msgid "finger" -msgstr "finger" +#: ../../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/text.php:909 -msgid "fingered" -msgstr "gefingerd" +#: ../../include/widgets.php:548 ../../mod/mail.php:125 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Berichten" -#: ../../include/text.php:910 -msgid "rebuff" -msgstr "afpoeieren" +#: ../../include/widgets.php:551 +msgid "Check Mail" +msgstr "Controleer op nieuwe berichten" -#: ../../include/text.php:910 -msgid "rebuffed" -msgstr "afgepoeierd" +#: ../../include/widgets.php:556 ../../include/nav.php:209 +msgid "New Message" +msgstr "Nieuw bericht" -#: ../../include/text.php:919 -msgid "happy" -msgstr "gelukkig" +#: ../../include/widgets.php:634 +msgid "Chat Rooms" +msgstr "Chatkanalen" -#: ../../include/text.php:920 -msgid "sad" -msgstr "bedroefd" +#: ../../include/widgets.php:654 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" -#: ../../include/text.php:921 -msgid "mellow" -msgstr "mellow" +#: ../../include/widgets.php:674 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" -#: ../../include/text.php:922 -msgid "tired" -msgstr "moe" +#: ../../include/widgets.php:801 ../../include/widgets.php:859 +msgid "photo/image" +msgstr "foto/afbeelding" -#: ../../include/text.php:923 -msgid "perky" -msgstr "parmantig" +#: ../../include/zot.php:664 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" -#: ../../include/text.php:924 -msgid "angry" -msgstr "boos" +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../include/text.php:925 -msgid "stupified" -msgstr "beteuterd" +#: ../../include/zot.php:1829 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" -#: ../../include/text.php:926 -msgid "puzzled" -msgstr "verward" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In map opslaan" -#: ../../include/text.php:927 -msgid "interested" -msgstr "geïnteresseerd" +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:1020 ../../mod/photos.php:1032 +msgid "View all" +msgstr "Toon alles" -#: ../../include/text.php:928 -msgid "bitter" -msgstr "verbitterd" +#: ../../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/text.php:929 -msgid "cheerful" -msgstr "vrolijk" +#: ../../include/ItemObject.php:179 +msgid "Add Star" +msgstr "Ster toevoegen" -#: ../../include/text.php:930 -msgid "alive" -msgstr "levendig" +#: ../../include/ItemObject.php:180 +msgid "Remove Star" +msgstr "Ster verwijderen" -#: ../../include/text.php:931 -msgid "annoyed" -msgstr "geërgerd" +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" -#: ../../include/text.php:932 -msgid "anxious" -msgstr "bezorgd" +#: ../../include/ItemObject.php:185 +msgid "starred" +msgstr "met ster" -#: ../../include/text.php:933 -msgid "cranky" -msgstr "humeurig" +#: ../../include/ItemObject.php:203 +msgid "Add Tag" +msgstr "Tag toevoegen" -#: ../../include/text.php:934 -msgid "disturbed" -msgstr "verontrust" +#: ../../include/ItemObject.php:221 ../../mod/photos.php:972 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" -#: ../../include/text.php:935 -msgid "frustrated" -msgstr "gefrustreerd " +#: ../../include/ItemObject.php:222 ../../mod/photos.php:973 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" -#: ../../include/text.php:936 -msgid "depressed" -msgstr "gedeprimeerd" +#: ../../include/ItemObject.php:226 +msgid "Share This" +msgstr "Delen" -#: ../../include/text.php:937 -msgid "motivated" -msgstr "gemotiveerd" +#: ../../include/ItemObject.php:226 +msgid "share" +msgstr "delen" -#: ../../include/text.php:938 -msgid "relaxed" -msgstr "ontspannen" +#: ../../include/ItemObject.php:243 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" -#: ../../include/text.php:939 -msgid "surprised" -msgstr "verrast" +#: ../../include/ItemObject.php:256 ../../include/ItemObject.php:257 +#, php-format +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" -#: ../../include/text.php:1103 -msgid "Monday" -msgstr "maandag" +#: ../../include/ItemObject.php:260 +msgid "to" +msgstr "aan" -#: ../../include/text.php:1103 -msgid "Tuesday" -msgstr "dinsdag" +#: ../../include/ItemObject.php:261 +msgid "via" +msgstr "via" -#: ../../include/text.php:1103 -msgid "Wednesday" -msgstr "woensdag" +#: ../../include/ItemObject.php:262 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" -#: ../../include/text.php:1103 -msgid "Thursday" -msgstr "donderdag" +#: ../../include/ItemObject.php:263 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" -#: ../../include/text.php:1103 -msgid "Friday" -msgstr "vrijdag" +#: ../../include/ItemObject.php:299 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" -#: ../../include/text.php:1103 -msgid "Saturday" -msgstr "zaterdag" +#: ../../include/ItemObject.php:300 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" -#: ../../include/text.php:1103 -msgid "Sunday" -msgstr "zondag" +#: ../../include/ItemObject.php:309 +msgid "Mark all seen" +msgstr "Markeer alles als bekeken" -#: ../../include/text.php:1107 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1107 -msgid "February" -msgstr "februari" +#: ../../include/ItemObject.php:314 ../../mod/photos.php:1140 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../include/text.php:1107 -msgid "March" -msgstr "maart" +#: ../../include/ItemObject.php:315 ../../mod/photos.php:1141 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../include/text.php:1107 -msgid "April" -msgstr "april" +#: ../../include/ItemObject.php:345 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] alle" -#: ../../include/text.php:1107 -msgid "May" -msgstr "mei" +#: ../../include/ItemObject.php:626 ../../mod/photos.php:991 +#: ../../mod/photos.php:1101 +msgid "This is you" +msgstr "Dit ben jij" -#: ../../include/text.php:1107 -msgid "June" -msgstr "juni" +#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 +#: ../../mod/photos.php:993 ../../mod/photos.php:1103 +msgid "Comment" +msgstr "Reactie" -#: ../../include/text.php:1107 -msgid "July" -msgstr "juli" +#: ../../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/text.php:1107 -msgid "August" -msgstr "augustus" +#: ../../include/ItemObject.php:630 +msgid "Bold" +msgstr "Vet" -#: ../../include/text.php:1107 -msgid "September" -msgstr "september" +#: ../../include/ItemObject.php:631 +msgid "Italic" +msgstr "Cursief" -#: ../../include/text.php:1107 -msgid "October" -msgstr "oktober" +#: ../../include/ItemObject.php:632 +msgid "Underline" +msgstr "Onderstrepen" -#: ../../include/text.php:1107 -msgid "November" -msgstr "november" +#: ../../include/ItemObject.php:633 +msgid "Quote" +msgstr "Citeren" -#: ../../include/text.php:1107 -msgid "December" -msgstr "december" +#: ../../include/ItemObject.php:634 +msgid "Code" +msgstr "Broncode" -#: ../../include/text.php:1185 -msgid "unknown.???" -msgstr "onbekend.???" +#: ../../include/ItemObject.php:635 +msgid "Image" +msgstr "Afbeelding" -#: ../../include/text.php:1186 -msgid "bytes" -msgstr "bytes" +#: ../../include/ItemObject.php:636 +msgid "Link" +msgstr "Link" -#: ../../include/text.php:1225 -msgid "remove category" -msgstr "categorie verwijderen" +#: ../../include/ItemObject.php:637 +msgid "Video" +msgstr "Video" -#: ../../include/text.php:1295 -msgid "remove from file" -msgstr "uit map verwijderen" +#: ../../include/datetime.php:35 +msgid "Miscellaneous" +msgstr "Diversen" -#: ../../include/text.php:1360 ../../include/text.php:1372 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" +#: ../../include/datetime.php:113 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" -#: ../../include/text.php:1527 ../../mod/events.php:414 -msgid "Link to Source" -msgstr "Originele locatie" +#: ../../include/datetime.php:230 +msgid "never" +msgstr "nooit" -#: ../../include/text.php:1546 -msgid "Select a page layout: " -msgstr "Kies een paginalay-out: " +#: ../../include/datetime.php:236 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" -#: ../../include/text.php:1549 ../../include/text.php:1614 -msgid "default" -msgstr "standaard" +#: ../../include/datetime.php:239 +msgid "year" +msgstr "jaar" -#: ../../include/text.php:1585 -msgid "Page content type: " -msgstr "Opmaakcode pagina" +#: ../../include/datetime.php:239 +msgid "years" +msgstr "jaren" -#: ../../include/text.php:1626 -msgid "Select an alternate language" -msgstr "Kies een andere taal" +#: ../../include/datetime.php:240 +msgid "month" +msgstr "maand" -#: ../../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/datetime.php:240 +msgid "months" +msgstr "maanden" -#: ../../include/text.php:1750 ../../include/conversation.php:123 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "gebeurtenis" +#: ../../include/datetime.php:241 +msgid "week" +msgstr "week" -#: ../../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/datetime.php:241 +msgid "weeks" +msgstr "weken" -#: ../../include/text.php:1755 ../../include/conversation.php:150 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "reactie" +#: ../../include/datetime.php:242 +msgid "day" +msgstr "dag" -#: ../../include/text.php:1760 -msgid "activity" -msgstr "activiteit" +#: ../../include/datetime.php:242 +msgid "days" +msgstr "dagen" -#: ../../include/text.php:2046 -msgid "Design" -msgstr "Ontwerp" +#: ../../include/datetime.php:243 +msgid "hour" +msgstr "uur" -#: ../../include/text.php:2049 -msgid "Blocks" -msgstr "Blokken" +#: ../../include/datetime.php:243 +msgid "hours" +msgstr "uren" -#: ../../include/text.php:2050 -msgid "Menus" -msgstr "Menu's" +#: ../../include/datetime.php:244 +msgid "minute" +msgstr "minuut" -#: ../../include/text.php:2051 -msgid "Layouts" -msgstr "Lay-outs" +#: ../../include/datetime.php:244 +msgid "minutes" +msgstr "minuten" -#: ../../include/text.php:2052 -msgid "Pages" -msgstr "Pagina's" +#: ../../include/datetime.php:245 +msgid "second" +msgstr "seconde" -#: ../../include/conversation.php:126 ../../mod/like.php:89 -msgid "channel" -msgstr "kanaal" +#: ../../include/datetime.php:245 +msgid "seconds" +msgstr "seconden" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1957 -#: ../../mod/like.php:336 +#: ../../include/datetime.php:254 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" -#: ../../include/conversation.php:167 ../../mod/like.php:338 +#: ../../include/datetime.php:462 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" -#: ../../include/conversation.php:204 +#: ../../include/datetime.php:463 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s is nu met %2$s verbonden" +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s heeft %2$s aangestoten" +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Hubbeheerder" -#: ../../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/apps.php:130 +msgid "Address Book" +msgstr "Connecties" -#: ../../include/conversation.php:638 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "Kies" +#: ../../include/apps.php:131 ../../include/nav.php:125 ../../boot.php:1542 +msgid "Login" +msgstr "Inloggen" -#: ../../include/conversation.php:646 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "Privébericht" +#: ../../include/apps.php:132 ../../include/nav.php:216 +#: ../../mod/manage.php:150 +msgid "Channel Manager" +msgstr "Kanaalbeheer" -#: ../../include/conversation.php:653 ../../include/ItemObject.php:194 -msgid "Message signature validated" -msgstr "Berichtkenmerk gevalideerd" +#: ../../include/apps.php:133 ../../include/nav.php:190 +msgid "Matrix" +msgstr "Matrix" -#: ../../include/conversation.php:654 ../../include/ItemObject.php:195 -msgid "Message signature incorrect" -msgstr "Berichtkenmerk onjuist" +#: ../../include/apps.php:137 ../../include/nav.php:193 +msgid "Channel Home" +msgstr "Tijdlijn kanaal" -#: ../../include/conversation.php:675 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" +#: ../../include/apps.php:140 ../../include/nav.php:212 +#: ../../mod/events.php:442 +msgid "Events" +msgstr "Agenda" -#: ../../include/conversation.php:690 -msgid "Categories:" -msgstr "Categorieën:" +#: ../../include/apps.php:141 ../../include/nav.php:176 +#: ../../mod/directory.php:321 +msgid "Directory" +msgstr "Kanalengids" -#: ../../include/conversation.php:691 -msgid "Filed under:" -msgstr "Bewaard onder:" +#: ../../include/apps.php:142 ../../include/nav.php:168 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" +msgstr "Hulp" -#: ../../include/conversation.php:699 ../../include/ItemObject.php:266 -#, php-format -msgid " from %s" -msgstr " van %s" +#: ../../include/apps.php:143 ../../include/nav.php:204 +msgid "Mail" +msgstr "Privéberichten" -#: ../../include/conversation.php:702 ../../include/ItemObject.php:269 -#, php-format -msgid "last edited: %s" -msgstr "laatst bewerkt: %s" +#: ../../include/apps.php:144 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Stemming" -#: ../../include/conversation.php:703 ../../include/ItemObject.php:270 -#, php-format -msgid "Expires: %s" -msgstr "Verloopt: %s" +#: ../../include/apps.php:146 ../../include/nav.php:111 +msgid "Chat" +msgstr "Chatten" -#: ../../include/conversation.php:718 -msgid "View in context" -msgstr "In context bekijken" +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Onderzoeken" -#: ../../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/apps.php:149 +msgid "Suggest" +msgstr "Voorstellen" -#: ../../include/conversation.php:836 -msgid "remove" -msgstr "verwijderen" +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Willekeurig kanaal" -#: ../../include/conversation.php:841 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Uitnodigen " -#: ../../include/conversation.php:932 -msgid "View Source" -msgstr "Bron weergeven" +#: ../../include/apps.php:152 +msgid "Features" +msgstr "Extra functies" -#: ../../include/conversation.php:933 -msgid "Follow Thread" -msgstr "Conversatie volgen" +#: ../../include/apps.php:153 +msgid "Language" +msgstr "Taal" -#: ../../include/conversation.php:934 -msgid "View Status" -msgstr "Status weergeven" - -#: ../../include/conversation.php:936 -msgid "View Photos" -msgstr "Foto's weergeven" +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Bericht" -#: ../../include/conversation.php:937 -msgid "Matrix Activity" -msgstr "Activiteit in de RedMatrix" +#: ../../include/apps.php:155 +msgid "Profile Photo" +msgstr "Profielfoto" -#: ../../include/conversation.php:939 -msgid "Edit Contact" -msgstr "Contact bewerken" +#: ../../include/apps.php:247 ../../mod/settings.php:81 +#: ../../mod/settings.php:603 +msgid "Update" +msgstr "Bijwerken" -#: ../../include/conversation.php:940 -msgid "Send PM" -msgstr "Privébericht verzenden" +#: ../../include/apps.php:247 +msgid "Install" +msgstr "Installeren" -#: ../../include/conversation.php:941 ../../include/apps.php:143 -msgid "Poke" -msgstr "Aanstoten" +#: ../../include/apps.php:252 +msgid "Purchase" +msgstr "Aanschaffen" -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Nieuw venster" -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." +#: ../../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/conversation.php:1018 +#: ../../include/Contact.php:214 ../../mod/admin.php:646 #, 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." +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../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/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 "Afbeelding/foto" -#: ../../include/conversation.php:1026 -msgid "and" -msgstr "en" +#: ../../include/bbcode.php:147 ../../include/bbcode.php:727 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" -#: ../../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/bbcode.php:165 +msgid "Install design element: " +msgstr "Installeer ontwerp-onderdeel" -#: ../../include/conversation.php:1030 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "QR-code" -#: ../../include/conversation.php:1030 +#: ../../include/bbcode.php:220 #, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" -#: ../../include/conversation.php:1087 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../include/bbcode.php:222 +msgid "post" +msgstr "bericht" -#: ../../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/bbcode.php:645 +msgid "$1 spoiler" +msgstr "$1 spoiler" -#: ../../include/conversation.php:1089 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" +#: ../../include/bbcode.php:665 +msgid "$1 wrote:" +msgstr "$1 schreef:" -#: ../../include/conversation.php:1090 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "RedMatrix-notificatie" -#: ../../include/conversation.php:1091 -msgid "Tag term:" -msgstr "Label:" +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "RedMatrix" -#: ../../include/conversation.php:1092 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Bewaar in map: " +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "Bedankt," -#: ../../include/conversation.php:1093 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "Beheerder %s" -#: ../../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/enotify.php:81 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../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/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Notificatie] Nieuw privébericht ontvangen op %s" -#: ../../include/conversation.php:1120 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Titel van paginalink" +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." -#: ../../include/conversation.php:1123 -msgid "Post as" -msgstr "Bericht plaatsen als" +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s zond jou %2$s." -#: ../../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/enotify.php:88 +msgid "a private message" +msgstr "een privébericht" -#: ../../include/conversation.php:1125 -msgid "upload photo" -msgstr "foto uploaden" +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." -#: ../../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/enotify.php:144 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" -#: ../../include/conversation.php:1127 -msgid "attach file" -msgstr "bestand toevoegen" +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" -#: ../../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/enotify.php:161 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" -#: ../../include/conversation.php:1129 -msgid "web link" -msgstr "Weblink" +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Red:Notificatie] Reactie op conversatie #%1$d door %2$s" -#: ../../include/conversation.php:1130 -msgid "Insert video link" -msgstr "Videolink invoegen" +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." -#: ../../include/conversation.php:1131 -msgid "video link" -msgstr "videolink" +#: ../../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 "Bezoek %s om de conversatie te bekijken en/of er op te reageren." -#: ../../include/conversation.php:1132 -msgid "Insert audio link" -msgstr "Audiolink invoegen" +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" -#: ../../include/conversation.php:1133 -msgid "audio link" -msgstr "audiolink" +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" -#: ../../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/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" -#: ../../include/conversation.php:1135 -msgid "set location" -msgstr "locatie instellen" +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Notificatie] %s heeft je genoemd" -#: ../../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/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s noemde jou op %3$s" -#: ../../include/conversation.php:1137 -msgid "clear location" -msgstr "locatie wissen" +#: ../../include/enotify.php:212 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." -#: ../../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/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Notificatie] %1$s heeft je aangestoten" -#: ../../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/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s heeft je aangestoten op %3$s" -#: ../../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/enotify.php:227 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." -#: ../../include/conversation.php:1145 -msgid "permissions" -msgstr "permissies" +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Notificatie] %s heeft jouw bericht getagd" -#: ../../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/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" -#: ../../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/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" -#: ../../include/conversation.php:1171 ../../mod/events.php:580 -#: ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Notificatie] Connectieverzoek ontvangen" -#: ../../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/enotify.php:258 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" -#: ../../include/conversation.php:1416 -msgid "Discover" -msgstr "Ontdekken" +#: ../../include/enotify.php:259 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." -#: ../../include/conversation.php:1419 -msgid "Imported public streams" -msgstr "Openbare streams importeren" +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Je kan het profiel bekijken op %s" -#: ../../include/conversation.php:1424 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." -#: ../../include/conversation.php:1427 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Notificatie] Kanaalvoorstel ontvangen" -#: ../../include/conversation.php:1431 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" -#: ../../include/conversation.php:1434 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" +#: ../../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 "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." -#: ../../include/conversation.php:1439 ../../include/widgets.php:94 -msgid "Personal" -msgstr "Persoonlijk" +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "Naam:" -#: ../../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/enotify.php:281 +msgid "Photo:" +msgstr "Foto:" -#: ../../include/conversation.php:1448 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:80 -msgid "New" -msgstr "Nieuw" +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." -#: ../../include/conversation.php:1451 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" +#: ../../include/enotify.php:490 +msgid "[Red:Notify]" +msgstr "[Red:Notificatie]" -#: ../../include/conversation.php:1457 -msgid "Starred" -msgstr "Met ster" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" -#: ../../include/conversation.php:1460 -msgid "Favourite Posts" -msgstr "Favoriete berichten" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] minder reacties weergeven" -#: ../../include/conversation.php:1467 -msgid "Spam" -msgstr "Spam" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] uitklappen" -#: ../../include/conversation.php:1470 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] inklappen" -#: ../../include/conversation.php:1510 ../../mod/admin.php:865 -msgid "Channel" -msgstr "Kanaal" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Wachtwoord te kort" -#: ../../include/conversation.php:1513 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen" -#: ../../include/conversation.php:1522 -msgid "About" -msgstr "Over" +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" +msgstr "iedereen" -#: ../../include/conversation.php:1525 -msgid "Profile Details" -msgstr "Profiel" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Geheim wachtwoord" -#: ../../include/conversation.php:1534 ../../include/photos.php:341 -msgid "Photo Albums" -msgstr "Fotoalbums" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Wachtwoordhint" -#: ../../include/conversation.php:1543 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." -#: ../../include/conversation.php:1553 ../../include/conversation.php:1556 -msgid "Chatrooms" -msgstr "Chatkanalen" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alles sluiten" -#: ../../include/conversation.php:1569 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niets nieuw hier" -#: ../../include/conversation.php:1580 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" +#: ../../include/js_strings.php:20 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" +#: ../../include/js_strings.php:21 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../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/js_strings.php:22 +msgid "ago" +msgstr "geleden" -#: ../../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/js_strings.php:23 +msgid "from now" +msgstr "vanaf nu" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" +#: ../../include/js_strings.php:24 +msgid "less than a minute" +msgstr "minder dan een minuut" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" +#: ../../include/js_strings.php:25 +msgid "about a minute" +msgstr "ongeveer een minuut" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." +#: ../../include/js_strings.php:26 +#, php-format +msgid "%d minutes" +msgstr "%d minuten" -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." +#: ../../include/js_strings.php:27 +msgid "about an hour" +msgstr "ongeveer een uur" -#: ../../include/account.php:245 +#: ../../include/js_strings.php:28 #, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" +msgid "about %d hours" +msgstr "ongeveer %d uren" -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" +#: ../../include/js_strings.php:29 +msgid "a day" +msgstr "een dag" -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Beheerder" +#: ../../include/js_strings.php:30 +#, php-format +msgid "%d days" +msgstr "%d dagen" -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" +#: ../../include/js_strings.php:31 +msgid "about a month" +msgstr "ongeveer een maand" -#: ../../include/account.php:340 ../../include/account.php:397 +#: ../../include/js_strings.php:32 #, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" +msgid "%d months" +msgstr "%d maanden" -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account goedgekeurd" +#: ../../include/js_strings.php:33 +msgid "about a year" +msgstr "ongeveer een jaar" -#: ../../include/account.php:440 +#: ../../include/js_strings.php:34 #, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" +msgid "%d years" +msgstr "%d jaren" -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." +#: ../../include/js_strings.php:35 +msgid " " +msgstr " " -#: ../../include/account.php:648 ../../include/account.php:650 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." +#: ../../include/js_strings.php:36 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../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/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" +msgstr "Man" -#: ../../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/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" +msgstr "Vrouw" -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momenteel man" -#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momenteel vrouw" -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Voornamelijk man" -#: ../../include/photos.php:345 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Voornamelijk vrouw" -#: ../../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/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/items.php:969 ../../include/items.php:1014 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Interseksueel" -#: ../../include/items.php:1171 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksueel" -#: ../../include/items.php:1173 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" -#: ../../include/items.php:1175 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Genderneutraal" -#: ../../include/items.php:1177 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Niet gespecificeerd" -#: ../../include/items.php:1179 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Nog niet beslist" -#: ../../include/items.php:1181 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Mannen" -#: ../../include/items.php:1183 -msgid "Visible to approved connections." -msgstr "Voor alle goedgekeurde connecties zichtbaar." +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Vrouwen" -#: ../../include/items.php:1185 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Homoseksueel" -#: ../../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/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/items.php:4410 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Collectie niet gevonden." +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Geen voorkeur" -#: ../../include/items.php:4425 -msgid "Collection is empty." -msgstr "Collectie is leeg" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Biseksueel" -#: ../../include/items.php:4432 -#, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autoseksueel" -#: ../../include/items.php:4443 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Seksuele onthouding" -#: ../../include/items.php:4446 -msgid "Connection not found." -msgstr "Connectie niet gevonden." +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Maagd" -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Systeem" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Afwijkend" -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persoonlijke app maken" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetisj" -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persoonlijke app bewerken" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Veel" -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Aseksueel" -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Alleen" -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Meer..." +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Eenzaam" -#: ../../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/profile_selectors.php:80 +msgid "Available" +msgstr "Beschikbaar" -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Niet beschikbaar" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Vul het adres van het nieuwe kanaal in" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Heeft een oogje op iemand" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Smoorverliefd" -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Aantekeningen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Aan het daten" -#: ../../include/widgets.php:260 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Ontrouw" -#: ../../include/widgets.php:343 -msgid "Archives" -msgstr "Archieven" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Seksverslaafd" -#: ../../include/widgets.php:421 -msgid "Refresh" -msgstr "Vernieuwen" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" -#: ../../include/widgets.php:422 ../../mod/connedit.php:506 -msgid "Me" -msgstr "Ik" +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Ongebonden/vluchtig" -#: ../../include/widgets.php:423 ../../mod/connedit.php:509 -msgid "Best Friends" -msgstr "Goede vrienden" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Verloofd" -#: ../../include/widgets.php:425 -msgid "Co-workers" -msgstr "Collega's" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Getrouwd" -#: ../../include/widgets.php:426 ../../mod/connedit.php:511 -msgid "Former Friends" -msgstr "Oude vrienden" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" -#: ../../include/widgets.php:427 ../../mod/connedit.php:512 -msgid "Acquaintances" -msgstr "Kennissen" +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partners" -#: ../../include/widgets.php:428 -msgid "Everybody" -msgstr "Iedereen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Samenwonend" -#: ../../include/widgets.php:462 -msgid "Account settings" -msgstr "Account" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Common-law-huwelijk" -#: ../../include/widgets.php:468 -msgid "Channel settings" -msgstr "Kanaal" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Gelukkig" -#: ../../include/widgets.php:474 -msgid "Additional features" -msgstr "Extra functies" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Niet op zoek" -#: ../../include/widgets.php:480 -msgid "Feature settings" -msgstr "Plug-ins" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/widgets.php:486 -msgid "Display settings" -msgstr "Weergave" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Verraden" -#: ../../include/widgets.php:492 -msgid "Connected apps" -msgstr "Verbonden applicaties" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Uit elkaar" -#: ../../include/widgets.php:498 -msgid "Export channel" -msgstr "Kanaal exporteren" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Onstabiel" -#: ../../include/widgets.php:504 -msgid "Export content" -msgstr "Inhoud exporteren" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Gescheiden" -#: ../../include/widgets.php:512 ../../mod/connedit.php:539 -msgid "Connection Default Permissions" -msgstr "Standaard permissies voor connecties" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" -#: ../../include/widgets.php:520 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" -#: ../../include/widgets.php:549 ../../mod/mail.php:125 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Berichten" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Onzeker" -#: ../../include/widgets.php:552 -msgid "Check Mail" -msgstr "Controleer op nieuwe berichten" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Het is ingewikkeld" -#: ../../include/widgets.php:635 -msgid "Chat Rooms" -msgstr "Chatkanalen" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Maakt mij niks uit" -#: ../../include/widgets.php:655 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Vraag het me" -#: ../../include/widgets.php:675 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1541 +msgid "Logout" +msgstr "Uitloggen" -#: ../../include/widgets.php:802 ../../include/widgets.php:860 -msgid "photo/image" -msgstr "foto/afbeelding" +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" +msgstr "Beëindig deze sessie" -#: ../../include/zot.php:664 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" +msgstr "Home" -#: ../../include/zot.php:680 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " +#: ../../include/nav.php:98 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" -#: ../../include/zot.php:1819 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" +#: ../../include/nav.php:99 +msgid "Your profile page" +msgstr "Jouw profielpagina" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" +#: ../../include/nav.php:101 +msgid "Edit Profiles" +msgstr "Bewerk profielen" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:620 -#: ../../mod/photos.php:996 ../../mod/photos.php:1106 -msgid "Comment" -msgstr "Reactie" +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:337 -msgid "[+] show all" -msgstr "[+] alle" +#: ../../include/nav.php:103 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] minder reacties weergeven" +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "Jouw foto's" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] uitklappen" +#: ../../include/nav.php:106 +msgid "Your files" +msgstr "Jouw bestanden" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] inklappen" +#: ../../include/nav.php:111 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Wachtwoord te kort" +#: ../../include/nav.php:117 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen" +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "Jouw webpagina's" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "iedereen" +#: ../../include/nav.php:125 +msgid "Sign in" +msgstr "Inloggen" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Geheim wachtwoord" +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Wachtwoordhint" +#: ../../include/nav.php:145 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alles sluiten" +#: ../../include/nav.php:159 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niets nieuw hier" +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1518 +msgid "Register" +msgstr "Registreren" -#: ../../include/js_strings.php:20 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/nav.php:163 +msgid "Create an account" +msgstr "Maak een account aan" -#: ../../include/js_strings.php:21 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/nav.php:168 +msgid "Help and documentation" +msgstr "Hulp en documentatie" -#: ../../include/js_strings.php:22 -msgid "ago" -msgstr "geleden" +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" +msgstr "Apps" -#: ../../include/js_strings.php:23 -msgid "from now" -msgstr "vanaf nu" +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "Inhoud van deze RedMatrix-hub doorzoeken" -#: ../../include/js_strings.php:24 -msgid "less than a minute" -msgstr "minder dan een minuut" +#: ../../include/nav.php:176 +msgid "Channel Directory" +msgstr "Kanalengids" -#: ../../include/js_strings.php:25 -msgid "about a minute" -msgstr "ongeveer een minuut" +#: ../../include/nav.php:190 +msgid "Your matrix" +msgstr "Jouw matrix" -#: ../../include/js_strings.php:26 -#, php-format -msgid "%d minutes" -msgstr "%d minuten" +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" +msgstr "Markeer alle matrixnotificaties als bekeken" -#: ../../include/js_strings.php:27 -msgid "about an hour" -msgstr "ongeveer een uur" +#: ../../include/nav.php:193 +msgid "Channel home" +msgstr "Tijdlijn kanaal" -#: ../../include/js_strings.php:28 -#, php-format -msgid "about %d hours" -msgstr "ongeveer %d uren" +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" -#: ../../include/js_strings.php:29 -msgid "a day" -msgstr "een dag" +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" +msgstr "Connecties" -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d days" -msgstr "%d dagen" +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "Notificaties" -#: ../../include/js_strings.php:31 -msgid "about a month" -msgstr "ongeveer een maand" - -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d months" -msgstr "%d maanden" - -#: ../../include/js_strings.php:33 -msgid "about a year" -msgstr "ongeveer een jaar" - -#: ../../include/js_strings.php:34 -#, php-format -msgid "%d years" -msgstr "%d jaren" - -#: ../../include/js_strings.php:35 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:36 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" -msgstr "Man" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" -msgstr "Vrouw" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momenteel man" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momenteel vrouw" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Voornamelijk man" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Voornamelijk vrouw" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Interseksueel" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksueel" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Genderneutraal" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Niet gespecificeerd" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Nog niet beslist" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Mannen" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Vrouwen" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Homoseksueel" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisch" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Geen voorkeur" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Biseksueel" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autoseksueel" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Seksuele onthouding" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Maagd" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Afwijkend" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisj" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Veel" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Aseksueel" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Alleen" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Eenzaam" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Beschikbaar" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Niet beschikbaar" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Heeft een oogje op iemand" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Smoorverliefd" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Aan het daten" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Ontrouw" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Seksverslaafd" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Ongebonden/vluchtig" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Verloofd" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Getrouwd" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partners" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Samenwonend" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Common-law-huwelijk" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Gelukkig" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Niet op zoek" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Verraden" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Uit elkaar" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Onstabiel" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Gescheiden" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Onzeker" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Het is ingewikkeld" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Maakt mij niks uit" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Vraag het me" - -#: ../../include/apps.php:126 -msgid "Site Admin" -msgstr "Hubbeheerder" - -#: ../../include/apps.php:128 -msgid "Address Book" -msgstr "Connecties" - -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Stemming" - -#: ../../include/apps.php:146 -msgid "Probe" -msgstr "Onderzoeken" - -#: ../../include/apps.php:147 -msgid "Suggest" -msgstr "Voorstellen" - -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "Willekeurig kanaal" - -#: ../../include/apps.php:149 -msgid "Invite" -msgstr "Uitnodigen " - -#: ../../include/apps.php:150 -msgid "Features" -msgstr "Extra functies" - -#: ../../include/apps.php:151 -msgid "Language" -msgstr "Taal" - -#: ../../include/apps.php:152 -msgid "Post" -msgstr "Bericht" - -#: ../../include/apps.php:153 -msgid "Profile Photo" -msgstr "Profielfoto" - -#: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:591 -msgid "Update" -msgstr "Bijwerken" - -#: ../../include/apps.php:242 -msgid "Install" -msgstr "Installeren" - -#: ../../include/apps.php:247 -msgid "Purchase" -msgstr "Aanschaffen" - -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" - -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Inloggen mislukt." - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In map opslaan" - -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1023 ../../mod/photos.php:1035 -msgid "View all" -msgstr "Toon alles" - -#: ../../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/ItemObject.php:179 -msgid "Add Star" -msgstr "Ster toevoegen" +#: ../../include/nav.php:200 +msgid "Notifications" +msgstr "Notificaties" -#: ../../include/ItemObject.php:180 -msgid "Remove Star" -msgstr "Ster verwijderen" +#: ../../include/nav.php:201 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../include/ItemObject.php:185 -msgid "starred" -msgstr "met ster" +#: ../../include/nav.php:204 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../include/ItemObject.php:203 -msgid "Add Tag" -msgstr "Label toevoegen" +#: ../../include/nav.php:205 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:975 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:976 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" +#: ../../include/nav.php:207 +msgid "Inbox" +msgstr "Postvak IN" -#: ../../include/ItemObject.php:226 -msgid "Share This" -msgstr "Delen" +#: ../../include/nav.php:208 +msgid "Outbox" +msgstr "Postvak UIT" -#: ../../include/ItemObject.php:226 -msgid "share" -msgstr "delen" +#: ../../include/nav.php:212 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../include/ItemObject.php:236 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" +#: ../../include/nav.php:213 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" +#: ../../include/nav.php:214 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../include/ItemObject.php:252 -msgid "to" -msgstr "aan" +#: ../../include/nav.php:216 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../include/ItemObject.php:253 -msgid "via" -msgstr "via" +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../include/ItemObject.php:254 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Beheer" -#: ../../include/ItemObject.php:255 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../include/ItemObject.php:291 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" +#: ../../include/nav.php:262 +msgid "@name, #tag, content" +msgstr "@kanaal, #label, inhoud" -#: ../../include/ItemObject.php:292 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" +#: ../../include/nav.php:263 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../include/ItemObject.php:301 -msgid "Mark all seen" -msgstr "Markeer alles als bekeken" +#: ../../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/ItemObject.php:306 ../../mod/photos.php:1143 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" -#: ../../include/ItemObject.php:307 ../../mod/photos.php:1144 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" +#: ../../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." -#: ../../include/ItemObject.php:618 ../../mod/photos.php:994 -#: ../../mod/photos.php:1104 -msgid "This is you" -msgstr "Dit ben jij" +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." -#: ../../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" +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." -#: ../../include/ItemObject.php:622 -msgid "Bold" -msgstr "Vet" +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." -#: ../../include/ItemObject.php:623 -msgid "Italic" -msgstr "Cursief" +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub." -#: ../../include/ItemObject.php:624 -msgid "Underline" -msgstr "Onderstrepen" +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." -#: ../../include/ItemObject.php:625 -msgid "Quote" -msgstr "Citeren" +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." -#: ../../include/ItemObject.php:626 -msgid "Code" -msgstr "Broncode" +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registreer op een andere RedMatrix-hub" -#: ../../include/ItemObject.php:627 -msgid "Image" -msgstr "Afbeelding" +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../include/ItemObject.php:628 -msgid "Link" -msgstr "Link" +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" -#: ../../include/ItemObject.php:629 -msgid "Video" -msgstr "Video" +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze RedMatrix-hub" -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ik accepteer de %s van deze RedMatrix-hub" -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" +#: ../../mod/register.php:207 ../../mod/admin.php:413 +msgid "Registration" +msgstr "Registratie" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Chatkanaal is vol" +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Jouw e-mailadres" -#: ../../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/register.php:217 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" #: ../../mod/mitem.php:24 ../../mod/menu.php:108 msgid "Menu not found." @@ -3744,233 +3803,138 @@ 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." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." +msgstr "Dit menu-item bewerken" -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registreer op een andere RedMatrix-hub" +#: ../../mod/mitem.php:158 +msgid "New Menu Element" +msgstr "Nieuw menu-element" -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1049 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze RedMatrix-hub" +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" +msgstr "Linktekst" -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ik accepteer de %s van deze RedMatrix-hub" +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" +msgstr "URL of link" -#: ../../mod/register.php:207 ../../mod/admin.php:413 -msgid "Registration" -msgstr "Registratie" +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "Gebruik RedMatrix' magic-auth wanneer beschikbaar" -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" +msgstr "Volgorde in lijst" -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Jouw e-mailadres" +#: ../../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/register.php:217 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" +#: ../../mod/mitem.php:181 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- kies map -" +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " +#: ../../mod/mitem.php:213 ../../mod/menu.php:130 +msgid "Modify" +msgstr "Wijzigen" -#: ../../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/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/profperm.php:123 -msgid "Visible To" -msgstr "Zichtbaar voor" +#: ../../mod/ping.php:266 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "Alle connecties" +#: ../../mod/ping.php:319 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." +#: ../../mod/ping.php:360 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Bron aangemaakt." +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Collectie aangemaakt" -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Bron aangemaakt." +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Collectie kon niet aangemaakt worden" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Collectie bijgewerkt." -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Kanaalcollectie aanmaken" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nieuwe bron" +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Naam collectie:" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." +#: ../../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/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importeer alleen inhoud met deze woorden (één per regel)" +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Collectie verwijderd" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Laat leeg om alle openbare inhoud te importeren" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Verwijderen collectie mislukt" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Kanaalnaam" +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Collectiebewerker" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Bron niet gevonden" +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Kanalen" -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Bron bewerken" +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alle kanaalconnecties" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Bron verwijderen" +#: ../../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/sources.php:158 -msgid "Source removed" -msgstr "Bron verwijderd" +#: ../../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/sources.php:160 -msgid "Unable to remove source." -msgstr "Verwijderen bron mislukt." +#: ../../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" @@ -3996,1404 +3960,1433 @@ msgstr "Maak dit bericht privé" 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: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/api.php:89 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../mod/profiles.php:410 +msgid "Political Views" +msgstr "Politieke overtuigingen" -#: ../../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/profiles.php:414 +msgid "Gender" +msgstr "Geslacht" -#: ../../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/profiles.php:418 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" -#: ../../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/profiles.php:422 +msgid "Homepage" +msgstr "Homepage" -#: ../../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/profiles.php:426 +msgid "Interests" +msgstr "Interesses" -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Item is niet aanwezig." +#: ../../mod/profiles.php:430 ../../mod/admin.php:866 +msgid "Address" +msgstr "Kanaaladres" -#: ../../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/profiles.php:437 ../../mod/pubsites.php:25 +msgid "Location" +msgstr "Locatie" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ongeldig item." +#: ../../mod/profiles.php:520 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." +#: ../../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/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/profiles.php:649 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" -#: ../../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/profiles.php:651 +msgid "View this profile" +msgstr "Profiel weergeven" -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Bloknaam" +#: ../../mod/profiles.php:653 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" -msgstr "RedMatrix Server - Setup" +#: ../../mod/profiles.php:654 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" -#: ../../mod/setup.php:172 -msgid "Could not connect to database." -msgstr "Could not connect to database." +#: ../../mod/profiles.php:655 +msgid "Clone this profile" +msgstr "Dit profiel klonen" -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." +#: ../../mod/profiles.php:656 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Could not create table." +#: ../../mod/profiles.php:658 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Your hub database has been installed." +#: ../../mod/profiles.php:659 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." +#: ../../mod/profiles.php:660 +msgid "Profile Name:" +msgstr "Profielnaam:" -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Please see the file \"install/INSTALL.txt\"." +#: ../../mod/profiles.php:661 +msgid "Your Full Name:" +msgstr "Jouw volledige naam:" -#: ../../mod/setup.php:261 -msgid "System check" -msgstr "System check" +#: ../../mod/profiles.php:662 +msgid "Title/Description:" +msgstr "Titel/omschrijving:" -#: ../../mod/setup.php:265 ../../mod/events.php:445 ../../mod/photos.php:868 -msgid "Next" -msgstr "Volgende" +#: ../../mod/profiles.php:663 +msgid "Your Gender:" +msgstr "Jouw geslacht" -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Check again" +#: ../../mod/profiles.php:664 +msgid "Birthday :" +msgstr "Verjaardag: " -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Database connection" +#: ../../mod/profiles.php:665 +msgid "Street Address:" +msgstr "Straat en huisnummer:" -#: ../../mod/setup.php:290 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." -msgstr "In order to install RedMatrix we need to know how to connect to your database." +#: ../../mod/profiles.php:666 +msgid "Locality/City:" +msgstr "Woonplaats:" -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." +#: ../../mod/profiles.php:667 +msgid "Postal/Zip Code:" +msgstr "Postcode:" -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "The database you specify below should already exist. If it does not, please create it before continuing." +#: ../../mod/profiles.php:668 +msgid "Country:" +msgstr "Land:" -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Database Server Name" +#: ../../mod/profiles.php:669 +msgid "Region/State:" +msgstr "Provincie/gewest/deelstaat:" -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "Default is localhost" +#: ../../mod/profiles.php:670 +msgid " Marital Status:" +msgstr " Huwelijkse staat:" -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Database Port" +#: ../../mod/profiles.php:671 +msgid "Who: (if applicable)" +msgstr "Wie (wanneer toepasselijk):" -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" -msgstr "Communication port number - use 0 for default" +#: ../../mod/profiles.php:672 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" -#: ../../mod/setup.php:298 -msgid "Database Login Name" -msgstr "Database Login Name" +#: ../../mod/profiles.php:673 +msgid "Since [date]:" +msgstr "Sinds [datum]:" -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Database Login Password" +#: ../../mod/profiles.php:675 +msgid "Homepage URL:" +msgstr "Adres homepage:" -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Database Name" +#: ../../mod/profiles.php:678 +msgid "Religious Views:" +msgstr "Religieuze overtuigingen" -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Database Type" +#: ../../mod/profiles.php:679 +msgid "Keywords:" +msgstr "Trefwoorden" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "Hub administrator email address" +#: ../../mod/profiles.php:682 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" -#: ../../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 "Your account email address must match this in order to use the web admin panel." +#: ../../mod/profiles.php:683 +msgid "Used in directory listings" +msgstr "Wordt in de kanalengids gebruikt" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "Hub URL" +#: ../../mod/profiles.php:684 +msgid "Tell us about yourself..." +msgstr "Vertel ons iets over jezelf..." -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." -msgstr "Please use SSL (https) URL if available." +#: ../../mod/profiles.php:685 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Please select a default timezone for your hub" +#: ../../mod/profiles.php:686 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Hub settings" +#: ../../mod/profiles.php:687 +msgid "My other channels" +msgstr "Mijn andere kanalen" -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/profiles.php:688 +msgid "Musical interests" +msgstr "Muzikale interesses" -#: ../../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 "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:689 +msgid "Books, literature" +msgstr "Boeken/literatuur" -#: ../../mod/setup.php:400 -msgid "PHP executable path" -msgstr "PHP executable path" +#: ../../mod/profiles.php:690 +msgid "Television" +msgstr "Televisie" -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Enter full path to php executable. You can leave this blank to continue the installation." +#: ../../mod/profiles.php:691 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/entertainment" -#: ../../mod/setup.php:405 -msgid "Command line PHP" -msgstr "Command line PHP" +#: ../../mod/profiles.php:692 +msgid "Love/romance" +msgstr "Liefde/romantiek" -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." +#: ../../mod/profiles.php:693 +msgid "Work/employment" +msgstr "Werk/arbeid" -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "This is required for message delivery to work." +#: ../../mod/profiles.php:694 +msgid "School/education" +msgstr "School/onderwijs" -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../mod/profiles.php:700 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" +#: ../../mod/profiles.php:711 ../../mod/directory.php:188 +msgid "Age: " +msgstr "Leeftijd:" -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../mod/profiles.php:754 +msgid "Edit/Manage Profiles" +msgstr "Profielen bewerken/beheren" -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "Generate encryption keys" +#: ../../mod/profiles.php:755 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" +#: ../../mod/profiles.php:756 +msgid "Include desirable objects in your profile" +msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Item is niet aanwezig." -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" +#: ../../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/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "mysqli or postgres PHP module" +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "Ongeldig item." -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP module" +#: ../../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/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" +#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +msgid "Export Channel" +msgstr "Kanaal exporteren" -#: ../../mod/setup.php:458 +#: ../../mod/uexport.php:35 msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: Apache webserver mod-rewrite module is required but not installed." - -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" +"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/setup.php:464 +#: ../../mod/uexport.php:37 msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" +"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/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: libCURL PHP module required but not installed." +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." -#: ../../mod/setup.php:476 +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Accountbeheer uitbesteden" + +#: ../../mod/delegate.php:123 msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: GD graphics PHP module with JPEG support required but not installed." +"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/setup.php:480 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: openssl PHP module required but not installed." +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Bestaande accountbeheerders" -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: mysqli or postgres PHP module required but neither are installed." +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Bestaande gevolmachtigde accountbeheerders" -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mb_string PHP module required but not installed." +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: mcrypt PHP module required but not installed." +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:902 +msgid "Remove" +msgstr "Verwijderen" -#: ../../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 "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/delegate.php:131 +msgid "Add" +msgstr "Toevoegen" -#: ../../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 "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/delegate.php:132 +msgid "No entries." +msgstr "Geen" -#: ../../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 "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/siteinfo.php:93 +#, php-format +msgid "Version %s" +msgstr "Versie %s" -#: ../../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 "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../mod/siteinfo.php:114 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plug-ins/add-ons/apps:" -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" +#: ../../mod/siteinfo.php:127 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plug-ins/add-ons/apps" -#: ../../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 "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." +#: ../../mod/siteinfo.php:135 +msgid "Red" +msgstr "Red" -#: ../../mod/setup.php:525 -#, php-format +#: ../../mod/siteinfo.php:136 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 "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." +"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/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 "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." +#: ../../mod/siteinfo.php:138 +msgid "Tag: " +msgstr "Tag: " -#: ../../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 "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/siteinfo.php:140 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" -#: ../../mod/setup.php:530 -#, php-format -msgid "%s is writable" -msgstr "%s is writable" +#: ../../mod/siteinfo.php:143 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" -#: ../../mod/setup.php:543 +#: ../../mod/siteinfo.php:144 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 "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" +"Please visit RedMatrix.me to learn more" +" about the Red Matrix." +msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "store is writable" +#: ../../mod/siteinfo.php:145 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" -#: ../../mod/setup.php:577 +#: ../../mod/siteinfo.php:148 msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" -#: ../../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 "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!" +#: ../../mod/siteinfo.php:150 +msgid "Site Administrators" +msgstr "Hubbeheerders: " -#: ../../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 "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." -#: ../../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 "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." +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Bron aangemaakt." -#: ../../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 "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Bron aangemaakt." -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Providers are available that issue free certificates which are browser-valid." +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "SSL certificate validation" +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" -#: ../../mod/setup.php:590 +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Nieuwe bron" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "Url rewrite is working" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importeer alleen inhoud met deze woorden (één per regel)" -#: ../../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 "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Laat leeg om alle openbare inhoud te importeren" -#: ../../mod/setup.php:626 -msgid "Errors encountered creating database tables." -msgstr "Errors encountered creating database tables." +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "Kanaalnaam" -#: ../../mod/setup.php:661 -msgid "

    What next

    " -msgstr "

    Wat nu

    " +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Bron niet gevonden" -#: ../../mod/setup.php:662 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Bron bewerken" -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Naam is vereist" +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Bron verwijderen" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Bron verwijderd" -#: ../../mod/settings.php:213 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Verwijderen bron mislukt." -#: ../../mod/settings.php:217 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../mod/settings.php:231 -msgid "Password changed." -msgstr "Wachtwoord veranderd." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../mod/settings.php:233 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." +#: ../../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/settings.php:247 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Zichtbaar voor" -#: ../../mod/settings.php:250 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" +msgstr "Alle connecties" -#: ../../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/events.php:81 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" -#: ../../mod/settings.php:495 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." +#: ../../mod/events.php:86 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." -#: ../../mod/settings.php:564 ../../mod/settings.php:590 -#: ../../mod/settings.php:626 -msgid "Add application" -msgstr "Applicatie toevoegen" +#: ../../mod/events.php:100 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" -#: ../../mod/settings.php:567 -msgid "Name of application" -msgstr "Naam van applicatie" +#: ../../mod/events.php:369 +msgid "l, F j" +msgstr "l j F" -#: ../../mod/settings.php:568 ../../mod/settings.php:594 -msgid "Consumer Key" -msgstr "Consumer key" +#: ../../mod/events.php:391 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" -#: ../../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/events.php:443 +msgid "Create New Event" +msgstr "Nieuwe gebeurtenis aanmaken" -#: ../../mod/settings.php:569 ../../mod/settings.php:595 -msgid "Consumer Secret" -msgstr "Consumer secret" +#: ../../mod/events.php:444 ../../mod/photos.php:856 +msgid "Previous" +msgstr "Vorige" -#: ../../mod/settings.php:570 ../../mod/settings.php:596 -msgid "Redirect" -msgstr "Redirect/doorverwijzing" +#: ../../mod/events.php:445 ../../mod/setup.php:265 ../../mod/photos.php:865 +msgid "Next" +msgstr "Volgende" -#: ../../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/events.php:446 +msgid "Export" +msgstr "Exporteren" -#: ../../mod/settings.php:571 ../../mod/settings.php:597 -msgid "Icon url" -msgstr "URL van pictogram" +#: ../../mod/events.php:571 +msgid "Event details" +msgstr "Details van gebeurtenis" -#: ../../mod/settings.php:571 -msgid "Optional" -msgstr "Optioneel" +#: ../../mod/events.php:572 +msgid "Starting date and Title are required." +msgstr "Begintijd en titel zijn vereist." -#: ../../mod/settings.php:582 -msgid "You can't edit this application." -msgstr "Je kan deze applicatie niet bewerken" +#: ../../mod/events.php:574 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" -#: ../../mod/settings.php:625 -msgid "Connected Apps" -msgstr "Verbonden applicaties" +#: ../../mod/events.php:576 +msgid "Event Starts:" +msgstr "Begin gebeurtenis:" -#: ../../mod/settings.php:629 -msgid "Client key starts with" -msgstr "Client key begint met" +#: ../../mod/events.php:576 ../../mod/events.php:592 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" +msgstr "Vereist" -#: ../../mod/settings.php:630 -msgid "No name" -msgstr "Geen naam" +#: ../../mod/events.php:582 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/-tijd is niet bekend of niet relevant" -#: ../../mod/settings.php:631 -msgid "Remove authorization" -msgstr "Autorisatie verwijderen" +#: ../../mod/events.php:584 +msgid "Event Finishes:" +msgstr "Einde gebeurtenis:" -#: ../../mod/settings.php:642 -msgid "No feature settings configured" -msgstr "Geen plugin-instellingen ingesteld" +#: ../../mod/events.php:586 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" -#: ../../mod/settings.php:650 -msgid "Feature Settings" -msgstr "Plugin-instellingen" +#: ../../mod/events.php:588 +msgid "Description:" +msgstr "Omschrijving:" -#: ../../mod/settings.php:673 -msgid "Account Settings" -msgstr "Account-instellingen" +#: ../../mod/events.php:592 +msgid "Title:" +msgstr "Titel:" -#: ../../mod/settings.php:674 -msgid "Password Settings" -msgstr "Wachtwoord-instellingen" +#: ../../mod/events.php:594 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" -#: ../../mod/settings.php:675 -msgid "New Password:" -msgstr "Nieuw wachtwoord:" +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Openbare hubs" -#: ../../mod/settings.php:676 -msgid "Confirm:" -msgstr "Bevestigen:" +#: ../../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/settings.php:676 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "URL hub" -#: ../../mod/settings.php:678 ../../mod/settings.php:1013 -msgid "Email Address:" -msgstr "E-mailadres:" +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Toegangstype" -#: ../../mod/settings.php:679 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Account verwijderen" +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Registratiebeleid" -#: ../../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/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:87 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." -#: ../../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/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" -#: ../../mod/settings.php:697 -msgid "Off" -msgstr "Uit" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" -#: ../../mod/settings.php:697 -msgid "On" -msgstr "Aan" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" -#: ../../mod/settings.php:704 -msgid "Additional Features" -msgstr "Extra functies" +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Omschrijving" -#: ../../mod/settings.php:729 -msgid "Connector Settings" -msgstr "Instellingen externe koppelingen" +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" -#: ../../mod/settings.php:768 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" -#: ../../mod/settings.php:771 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimenteel)" +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" -#: ../../mod/settings.php:774 ../../mod/admin.php:363 -msgid "mobile" -msgstr "mobiel" +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Chatkanaal verwijderen" -#: ../../mod/settings.php:810 -msgid "Display Settings" -msgstr "Weergave-instellingen" +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" -#: ../../mod/settings.php:816 -msgid "Display Theme:" -msgstr "Gebruik thema:" +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Ik ben online" -#: ../../mod/settings.php:817 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" -#: ../../mod/settings.php:818 -msgid "Enable user zoom on mobile devices" -msgstr "Inzoomen op smartphones en tablets toestaan" +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" -#: ../../mod/settings.php:819 -msgid "Update browser every xx seconds" -msgstr "Ververs de webbrowser om de zoveel seconde" +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Naam chatkanaal" -#: ../../mod/settings.php:819 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimaal 10 seconde, geen maximum" +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" -#: ../../mod/settings.php:820 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximaal aantal conversaties die per keer geladen worden:" +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Afwezig" -#: ../../mod/settings.php:820 -msgid "Maximum of 100 items" -msgstr "Maximaal 100 conversaties" +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" -#: ../../mod/settings.php:821 -msgid "Don't show emoticons" -msgstr "Geen emoticons weergeven" +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Inloggen." -#: ../../mod/settings.php:822 -msgid "Link post titles to source" -msgstr "Berichtkoppen naar originele locatie linken" +#: ../../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/settings.php:823 -msgid "System Page Layout Editor - (advanced)" -msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" -#: ../../mod/settings.php:826 -msgid "Use blog/list mode on channel page" -msgstr "Gebruik blog/lijst-modus op kanaalpagina" +#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../mod/settings.php:826 ../../mod/settings.php:827 -msgid "(comments displayed separately)" -msgstr "(reacties worden afzonderlijk weergeven)" +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Item verwijderen?" -#: ../../mod/settings.php:827 -msgid "Use blog/list mode on matrix page" -msgstr "Gebruik blog/lijst-modus op matrixpagina" +#: ../../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/settings.php:828 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" +#: ../../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/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/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/settings.php:829 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op matrixpagina (in pixels)" +#: ../../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/settings.php:863 -msgid "Nobody except yourself" -msgstr "Niemand, behalve jezelf" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" -#: ../../mod/settings.php:864 -msgid "Only those you specifically allow" -msgstr "Alleen connecties met uitdrukkelijke toestemming" +#: ../../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/settings.php:865 -msgid "Approved connections" -msgstr "Geaccepteerde connecties" +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" -#: ../../mod/settings.php:866 -msgid "Any connections" -msgstr "Alle connecties" +#: ../../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/settings.php:867 -msgid "Anybody on this website" -msgstr "Iedereen op deze hub" +#: ../../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/settings.php:868 -msgid "Anybody in this network" -msgstr "Iedereen in dit netwerk" +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" -#: ../../mod/settings.php:869 -msgid "Anybody authenticated" -msgstr "Geauthenticeerd" +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Geen kanaal." -#: ../../mod/settings.php:870 -msgid "Anybody on the internet" -msgstr "Iedereen op het internet" +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Veel voorkomende connecties" -#: ../../mod/settings.php:944 -msgid "Publish your default profile in the network directory" -msgstr "Publiceer je standaardprofiel in de kanalengids" +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." -#: ../../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/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/settings.php:953 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "of" +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Het foutbericht was:" -#: ../../mod/settings.php:958 -msgid "Your channel address is" -msgstr "Jouw kanaaladres is" +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." -#: ../../mod/settings.php:1002 -msgid "Channel Settings" -msgstr "Kanaal-instellingen" +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" -#: ../../mod/settings.php:1011 -msgid "Basic Settings" -msgstr "Basis-instellingen" +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" -#: ../../mod/settings.php:1014 -msgid "Your Timezone:" -msgstr "Jouw tijdzone:" +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Authenticeren" -#: ../../mod/settings.php:1015 -msgid "Default Post Location:" -msgstr "Standaardlocatie bericht:" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." -#: ../../mod/settings.php:1015 -msgid "Geographical location to display on your posts" -msgstr "Geografische locatie die bij het bericht moet worden vermeld" +#: ../../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/settings.php:1016 -msgid "Use Browser Location:" -msgstr "Locatie van webbrowser gebruiken:" +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" -#: ../../mod/settings.php:1018 -msgid "Adult Content" -msgstr "Inhoud voor volwassenen" +#: ../../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/settings.php:1018 +#: ../../mod/lostpass.php:63 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" +"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/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/lostpass.php:85 ../../boot.php:1550 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" -#: ../../mod/settings.php:1024 -msgid "Hide my online presence" -msgstr "Verberg mijn aanwezigheid" +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." -#: ../../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/lostpass.php:87 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" -#: ../../mod/settings.php:1026 -msgid "Simple Privacy Settings:" -msgstr "Eenvoudige privacy-instellingen:" +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" -#: ../../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/lostpass.php:89 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" -#: ../../mod/settings.php:1028 +#: ../../mod/lostpass.php:90 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)" +"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/settings.php:1030 -msgid "Blocked - default blocked to/from everybody" -msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" -#: ../../mod/settings.php:1032 -msgid "Allow others to tag your posts" -msgstr "Anderen toestaan om je berichten te labelen" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" -#: ../../mod/settings.php:1032 +#: ../../mod/lostpass.php:123 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" +"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/settings.php:1034 -msgid "Advanced Privacy Settings" -msgstr "Geavanceerde privacy-instellingen" +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-mailadres" -#: ../../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/lostpass.php:125 +msgid "Reset" +msgstr "Opnieuw instellen" -#: ../../mod/settings.php:1036 -msgid "0 or blank prevents expiration" -msgstr "0 of leeg voorkomt het verlopen" +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "Naam is vereist" -#: ../../mod/settings.php:1037 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal connectieverzoeken per dag:" +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" -#: ../../mod/settings.php:1037 -msgid "May reduce spam activity" -msgstr "Kan eventuele spam verminderen" +#: ../../mod/settings.php:222 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../mod/settings.php:1038 -msgid "Default Post Permissions" -msgstr "Standaard permissies voor nieuwe berichten" +#: ../../mod/settings.php:226 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../mod/settings.php:1043 -msgid "Channel permissions category:" -msgstr "Kanaaltype en -permissies:" +#: ../../mod/settings.php:240 +msgid "Password changed." +msgstr "Wachtwoord veranderd." -#: ../../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:242 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../mod/settings.php:1051 -msgid "Useful to reduce spamming" -msgstr "Kan eventuele spam verminderen" +#: ../../mod/settings.php:256 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." -#: ../../mod/settings.php:1054 -msgid "Notification Settings" -msgstr "Notificatie-instellingen" +#: ../../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:1055 -msgid "By default post a status message when:" -msgstr "Plaats automatisch een statusbericht wanneer:" +#: ../../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:1056 -msgid "accepting a friend request" -msgstr "Een connectieverzoek wordt geaccepteerd" +#: ../../mod/settings.php:507 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." -#: ../../mod/settings.php:1057 -msgid "joining a forum/community" -msgstr "Je lid wordt van een forum/groep" +#: ../../mod/settings.php:576 ../../mod/settings.php:602 +#: ../../mod/settings.php:638 +msgid "Add application" +msgstr "Applicatie toevoegen" -#: ../../mod/settings.php:1058 -msgid "making an interesting profile change" -msgstr "Er sprake is van een interessante profielwijziging" +#: ../../mod/settings.php:579 +msgid "Name of application" +msgstr "Naam van applicatie" -#: ../../mod/settings.php:1059 -msgid "Send a notification email when:" -msgstr "Verzend een notificatie per e-mail wanneer:" +#: ../../mod/settings.php:580 ../../mod/settings.php:606 +msgid "Consumer Key" +msgstr "Consumer key" -#: ../../mod/settings.php:1060 -msgid "You receive a connection request" -msgstr "Je een connectieverzoek ontvangt" +#: ../../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:1061 -msgid "Your connections are confirmed" -msgstr "Jouw connecties zijn bevestigd" +#: ../../mod/settings.php:581 ../../mod/settings.php:607 +msgid "Consumer Secret" +msgstr "Consumer secret" -#: ../../mod/settings.php:1062 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op jouw kanaal heeft geschreven" +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +msgid "Redirect" +msgstr "Redirect/doorverwijzing" -#: ../../mod/settings.php:1063 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" +#: ../../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:1064 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +msgid "Icon url" +msgstr "URL van pictogram" -#: ../../mod/settings.php:1065 -msgid "You receive a friend suggestion" -msgstr "Je een kanaalvoorstel ontvangt" +#: ../../mod/settings.php:583 +msgid "Optional" +msgstr "Optioneel" -#: ../../mod/settings.php:1066 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" +#: ../../mod/settings.php:594 +msgid "You can't edit this application." +msgstr "Je kan deze applicatie niet bewerken" -#: ../../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:637 +msgid "Connected Apps" +msgstr "Verbonden applicaties" -#: ../../mod/settings.php:1070 -msgid "Show visual notifications including:" -msgstr "Toon de volgende zichtbare notificaties:" +#: ../../mod/settings.php:641 +msgid "Client key starts with" +msgstr "Client key begint met" -#: ../../mod/settings.php:1072 -msgid "Unseen matrix activity" -msgstr "Niet bekeken matrix-activiteit" +#: ../../mod/settings.php:642 +msgid "No name" +msgstr "Geen naam" -#: ../../mod/settings.php:1073 -msgid "Unseen channel activity" -msgstr "Niet bekeken kanaal-activiteit" +#: ../../mod/settings.php:643 +msgid "Remove authorization" +msgstr "Autorisatie verwijderen" -#: ../../mod/settings.php:1074 -msgid "Unseen private messages" -msgstr "Niet bekeken privéberichten" +#: ../../mod/settings.php:654 +msgid "No feature settings configured" +msgstr "Geen plugin-instellingen ingesteld" -#: ../../mod/settings.php:1074 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -msgid "Recommended" -msgstr "Aanbevolen" +#: ../../mod/settings.php:662 +msgid "Feature Settings" +msgstr "Plugin-instellingen" -#: ../../mod/settings.php:1075 -msgid "Upcoming events" -msgstr "Aankomende gebeurtenissen" +#: ../../mod/settings.php:685 +msgid "Account Settings" +msgstr "Account-instellingen" -#: ../../mod/settings.php:1076 -msgid "Events today" -msgstr "Gebeurtissen van vandaag" +#: ../../mod/settings.php:686 +msgid "Password Settings" +msgstr "Wachtwoord-instellingen" -#: ../../mod/settings.php:1077 -msgid "Upcoming birthdays" -msgstr "Aankomende verjaardagen" +#: ../../mod/settings.php:687 +msgid "New Password:" +msgstr "Nieuw wachtwoord:" -#: ../../mod/settings.php:1077 -msgid "Not available in all themes" -msgstr "Niet in alle thema's beschikbaar" +#: ../../mod/settings.php:688 +msgid "Confirm:" +msgstr "Bevestigen:" -#: ../../mod/settings.php:1078 -msgid "System (personal) notifications" -msgstr "(Persoonlijke) systeemnotificaties" +#: ../../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:1079 -msgid "System info messages" -msgstr "Systeemmededelingen" +#: ../../mod/settings.php:690 ../../mod/settings.php:1023 +msgid "Email Address:" +msgstr "E-mailadres:" -#: ../../mod/settings.php:1080 -msgid "System critical alerts" -msgstr "Kritische systeemwaarschuwingen" +#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "Account verwijderen" -#: ../../mod/settings.php:1081 -msgid "New connections" -msgstr "Nieuwe connecties" +#: ../../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:1082 -msgid "System Registrations" -msgstr "Nieuwe accountregistraties op deze hub" +#: ../../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:1084 -msgid "Notify me of events this many days in advance" -msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" +#: ../../mod/settings.php:709 +msgid "Off" +msgstr "Uit" -#: ../../mod/settings.php:1084 -msgid "Must be greater than 0" -msgstr "Moet hoger dan 0 zijn" +#: ../../mod/settings.php:709 +msgid "On" +msgstr "Aan" -#: ../../mod/settings.php:1086 -msgid "Advanced Account/Page Type Settings" -msgstr "Instellingen geavanceerd account/paginatype" +#: ../../mod/settings.php:716 +msgid "Additional Features" +msgstr "Extra functies" -#: ../../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:740 +msgid "Connector Settings" +msgstr "Instellingen externe koppelingen" -#: ../../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:779 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" -#: ../../mod/settings.php:1091 -msgid "Miscellaneous Settings" -msgstr "Diverse instellingen" +#: ../../mod/settings.php:782 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (experimenteel)" -#: ../../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:785 ../../mod/admin.php:363 +msgid "mobile" +msgstr "mobiel" -#: ../../mod/settings.php:1094 -msgid "Remove this channel" -msgstr "Verwijder dit kanaal" +#: ../../mod/settings.php:821 +msgid "Display Settings" +msgstr "Weergave-instellingen" -#: ../../mod/events.php:81 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" +#: ../../mod/settings.php:827 +msgid "Display Theme:" +msgstr "Gebruik thema:" -#: ../../mod/events.php:86 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." +#: ../../mod/settings.php:828 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" -#: ../../mod/events.php:100 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" +#: ../../mod/settings.php:829 +msgid "Enable user zoom on mobile devices" +msgstr "Inzoomen op smartphones en tablets toestaan" -#: ../../mod/events.php:369 -msgid "l, F j" -msgstr "l j F" +#: ../../mod/settings.php:830 +msgid "Update browser every xx seconds" +msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../mod/events.php:391 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" +#: ../../mod/settings.php:830 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimaal 10 seconde, geen maximum" -#: ../../mod/events.php:443 -msgid "Create New Event" -msgstr "Nieuwe gebeurtenis aanmaken" +#: ../../mod/settings.php:831 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximaal aantal conversaties die per keer geladen worden:" -#: ../../mod/events.php:444 ../../mod/photos.php:859 -msgid "Previous" -msgstr "Vorige" +#: ../../mod/settings.php:831 +msgid "Maximum of 100 items" +msgstr "Maximaal 100 conversaties" -#: ../../mod/events.php:446 -msgid "Export" -msgstr "Exporteren" +#: ../../mod/settings.php:832 +msgid "Don't show emoticons" +msgstr "Geen emoticons weergeven" -#: ../../mod/events.php:571 -msgid "Event details" -msgstr "Details van gebeurtenis" +#: ../../mod/settings.php:833 +msgid "Link post titles to source" +msgstr "Berichtkoppen naar originele locatie linken" -#: ../../mod/events.php:572 -msgid "Starting date and Title are required." -msgstr "Begintijd en titel zijn vereist." +#: ../../mod/settings.php:834 +msgid "System Page Layout Editor - (advanced)" +msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../mod/events.php:574 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" +#: ../../mod/settings.php:837 +msgid "Use blog/list mode on channel page" +msgstr "Gebruik blog/lijst-modus op kanaalpagina" -#: ../../mod/events.php:576 -msgid "Event Starts:" -msgstr "Begin gebeurtenis:" +#: ../../mod/settings.php:837 ../../mod/settings.php:838 +msgid "(comments displayed separately)" +msgstr "(reacties worden afzonderlijk weergeven)" -#: ../../mod/events.php:576 ../../mod/events.php:592 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "Vereist" +#: ../../mod/settings.php:838 +msgid "Use blog/list mode on matrix page" +msgstr "Gebruik blog/lijst-modus op matrixpagina" -#: ../../mod/events.php:582 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/-tijd is niet bekend of niet relevant" +#: ../../mod/settings.php:839 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" -#: ../../mod/events.php:584 -msgid "Event Finishes:" -msgstr "Einde gebeurtenis:" +#: ../../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/events.php:586 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" +#: ../../mod/settings.php:840 +msgid "Matrix page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op matrixpagina (in pixels)" -#: ../../mod/events.php:588 -msgid "Description:" -msgstr "Omschrijving:" +#: ../../mod/settings.php:874 +msgid "Nobody except yourself" +msgstr "Niemand, behalve jezelf" -#: ../../mod/events.php:592 -msgid "Title:" -msgstr "Titel:" +#: ../../mod/settings.php:875 +msgid "Only those you specifically allow" +msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../mod/events.php:594 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" +#: ../../mod/settings.php:876 +msgid "Approved connections" +msgstr "Geaccepteerde connecties" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Openbare hubs" +#: ../../mod/settings.php:877 +msgid "Any connections" +msgstr "Alle connecties" -#: ../../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/settings.php:878 +msgid "Anybody on this website" +msgstr "Iedereen op deze hub" -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL hub" +#: ../../mod/settings.php:879 +msgid "Anybody in this network" +msgstr "Iedereen in dit netwerk" -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Toegangstype" +#: ../../mod/settings.php:880 +msgid "Anybody authenticated" +msgstr "Geauthenticeerd" -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Registratiebeleid" +#: ../../mod/settings.php:881 +msgid "Anybody on the internet" +msgstr "Iedereen op het internet" -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:428 -msgid "Location" -msgstr "Locatie" +#: ../../mod/settings.php:955 +msgid "Publish your default profile in the network directory" +msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../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/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/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." +#: ../../mod/settings.php:964 ../../mod/profile_photo.php:365 +msgid "or" +msgstr "of" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" +#: ../../mod/settings.php:969 +msgid "Your channel address is" +msgstr "Jouw kanaaladres is" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" +#: ../../mod/settings.php:1014 +msgid "Channel Settings" +msgstr "Kanaal-instellingen" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" +#: ../../mod/settings.php:1021 +msgid "Basic Settings" +msgstr "Basis-instellingen" -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Omschrijving" +#: ../../mod/settings.php:1024 +msgid "Your Timezone:" +msgstr "Jouw tijdzone:" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" +#: ../../mod/settings.php:1025 +msgid "Default Post Location:" +msgstr "Standaardlocatie bericht:" -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../mod/settings.php:1025 +msgid "Geographical location to display on your posts" +msgstr "Geografische locatie die bij het bericht moet worden vermeld" -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../mod/settings.php:1026 +msgid "Use Browser Location:" +msgstr "Locatie van webbrowser gebruiken:" -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Chatkanaal verwijderen" +#: ../../mod/settings.php:1028 +msgid "Adult Content" +msgstr "Inhoud voor volwassenen" -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" +#: ../../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/chat.php:181 -msgid "I am online" -msgstr "Ik ben online" +#: ../../mod/settings.php:1030 +msgid "Security and Privacy Settings" +msgstr "Veiligheids- en privacy-instellingen" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" +#: ../../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/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" +#: ../../mod/settings.php:1034 +msgid "Hide my online presence" +msgstr "Verberg mijn aanwezigheid" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Naam chatkanaal" +#: ../../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/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" +#: ../../mod/settings.php:1036 +msgid "Simple Privacy Settings:" +msgstr "Eenvoudige privacy-instellingen:" -#: ../../mod/siteinfo.php:92 -#, php-format -msgid "Version %s" -msgstr "Versie %s" +#: ../../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/siteinfo.php:113 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plug-ins/add-ons/apps:" +#: ../../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/siteinfo.php:126 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plug-ins/add-ons/apps" +#: ../../mod/settings.php:1039 +msgid "Private - default private, never open or public" +msgstr "Privé (standaard privé en nooit openbaar)" -#: ../../mod/siteinfo.php:134 -msgid "Red" -msgstr "Red" +#: ../../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/siteinfo.php:135 +#: ../../mod/settings.php:1042 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." +"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/siteinfo.php:139 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" +#: ../../mod/settings.php:1044 +msgid "Advanced Privacy Settings" +msgstr "Geavanceerde privacy-instellingen" -#: ../../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/settings.php:1046 +msgid "Expire other channel content after this many days" +msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" -#: ../../mod/siteinfo.php:141 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" +#: ../../mod/settings.php:1046 +msgid "0 or blank prevents expiration" +msgstr "0 of leeg voorkomt het verlopen" -#: ../../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/settings.php:1047 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../mod/siteinfo.php:146 -msgid "Site Administrators" -msgstr "Hubbeheerders: " +#: ../../mod/settings.php:1047 +msgid "May reduce spam activity" +msgstr "Kan eventuele spam verminderen" -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Afwezig" +#: ../../mod/settings.php:1048 +msgid "Default Post Permissions" +msgstr "Standaard permissies voor nieuwe berichten" -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" +#: ../../mod/settings.php:1053 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Inloggen." +#: ../../mod/settings.php:1059 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Ga verder" +#: ../../mod/settings.php:1059 +msgid "Useful to reduce spamming" +msgstr "Kan eventuele spam verminderen" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " +#: ../../mod/settings.php:1062 +msgid "Notification Settings" +msgstr "Notificatie-instellingen" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" +#: ../../mod/settings.php:1063 +msgid "By default post a status message when:" +msgstr "Plaats automatisch een statusbericht wanneer:" -#: ../../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/settings.php:1064 +msgid "accepting a friend request" +msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../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/settings.php:1065 +msgid "joining a forum/community" +msgstr "Je lid wordt van een forum/groep" -#: ../../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/settings.php:1066 +msgid "making an interesting profile change" +msgstr "Er sprake is van een interessante profielwijziging" -#: ../../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/settings.php:1067 +msgid "Send a notification email when:" +msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../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/settings.php:1068 +msgid "You receive a connection request" +msgstr "Je een connectieverzoek ontvangt" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" +#: ../../mod/settings.php:1069 +msgid "Your connections are confirmed" +msgstr "Jouw connecties zijn bevestigd" -#: ../../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/settings.php:1070 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" +#: ../../mod/settings.php:1071 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" -#: ../../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/settings.php:1072 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" +#: ../../mod/settings.php:1073 +msgid "You receive a friend suggestion" +msgstr "Je een kanaalvoorstel ontvangt" -#: ../../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/settings.php:1074 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" -#: ../../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/settings.php:1075 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" +#: ../../mod/settings.php:1078 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Geen kanaal." +#: ../../mod/settings.php:1080 +msgid "Unseen matrix activity" +msgstr "Niet bekeken matrix-activiteit" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Veel voorkomende connecties" +#: ../../mod/settings.php:1081 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../mod/settings.php:1082 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" -#: ../../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/settings.php:1082 ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 +msgid "Recommended" +msgstr "Aanbevolen" -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Het foutbericht was:" +#: ../../mod/settings.php:1083 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." +#: ../../mod/settings.php:1084 +msgid "Events today" +msgstr "Gebeurtissen van vandaag" -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" +#: ../../mod/settings.php:1085 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" +#: ../../mod/settings.php:1085 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authenticeren" +#: ../../mod/settings.php:1086 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" +#: ../../mod/settings.php:1087 +msgid "System info messages" +msgstr "Systeemmededelingen" -#: ../../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/settings.php:1088 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" -#: ../../mod/like.php:21 +#: ../../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 "" -"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." +"Also show new wall posts, private messages and connections under Notices" +msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ongeldig verzoek" +#: ../../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/like.php:119 -msgid "thing" -msgstr "ding" +#: ../../mod/settings.php:1093 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." +#: ../../mod/settings.php:1095 +msgid "Advanced Account/Page Type Settings" +msgstr "Instellingen geavanceerd account/paginatype" -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" +#: ../../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/like.php:422 -msgid "Action completed." -msgstr "Actie voltooid" +#: ../../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/like.php:423 -msgid "Thank you." -msgstr "Bedankt" +#: ../../mod/settings.php:1100 +msgid "Miscellaneous Settings" +msgstr "Diverse instellingen" -#: ../../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/settings.php:1102 +msgid "Personal menu to display in your channel pages" +msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../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/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." @@ -5488,13 +5481,40 @@ msgstr "Doorzoek jouw connecties" msgid "Finding: " msgstr "Zoeken naar: " -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." +#: ../../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/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Bericht bewerken" +#: ../../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" @@ -5806,135 +5826,83 @@ 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/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL van foto van ding (optioneel)" +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." +#: ../../mod/mail.php:136 +msgid "Message deleted." +msgstr "Bericht verwijderd." -#: ../../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/mail.php:153 +msgid "Message recalled." +msgstr "Bericht ingetrokken." -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" +#: ../../mod/mail.php:222 +msgid "Send Private Message" +msgstr "Privébericht versturen" -#: ../../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/mail.php:223 ../../mod/mail.php:340 +msgid "To:" +msgstr "Aan:" -#: ../../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/mail.php:228 ../../mod/mail.php:342 +msgid "Subject:" +msgstr "Onderwerp:" -#: ../../mod/lostpass.php:85 ../../boot.php:1537 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" +#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Jouw bericht:" -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." +#: ../../mod/mail.php:239 +msgid "Send" +msgstr "Verzenden" -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" +#: ../../mod/mail.php:266 +msgid "Message not found." +msgstr "Bericht niet gevonden" -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" +#: ../../mod/mail.php:309 +msgid "Delete message" +msgstr "Bericht verwijderen" -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" +#: ../../mod/mail.php:310 +msgid "Recall message" +msgstr "Bericht intrekken" -#: ../../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/mail.php:312 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" +#: ../../mod/mail.php:329 +msgid "Private Conversation" +msgstr "Privéconversatie" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" +#: ../../mod/mail.php:333 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "Verwijder conversatie" -#: ../../mod/lostpass.php:123 +#: ../../mod/mail.php:335 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" +"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/lostpass.php:125 -msgid "Reset" -msgstr "Opnieuw instellen" +#: ../../mod/mail.php:339 +msgid "Send Reply" +msgstr "Antwoord versturen" #: ../../mod/bookmarks.php:38 msgid "Bookmark added" @@ -5956,444 +5924,488 @@ msgstr "Deze hub is geen kanalengidshub (directoryserver)" 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/acl.php:245 +msgid "network" +msgstr "netwerk" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profiel verwijderd." +#: ../../mod/blocks.php:99 +msgid "Block Name" +msgstr "Bloknaam" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profiel-" +#: ../../mod/editblock.php:115 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." +#: ../../mod/editblock.php:125 +msgid "Delete block?" +msgstr "Blok verwijderen" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" +#: ../../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/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" +msgstr "Lay-out bewerken" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" +msgstr "Lay-out verwijderen?" -#: ../../mod/profiles.php:378 -msgid "Marital Status" -msgstr "Huwelijke status" +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" +msgstr "Lay-out verwijderen" -#: ../../mod/profiles.php:382 -msgid "Romantic Partner" -msgstr "Romantische partner" +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" +msgstr "RedMatrix - "The Network"" -#: ../../mod/profiles.php:386 -msgid "Likes" -msgstr "Houdt van" +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" -#: ../../mod/profiles.php:390 -msgid "Dislikes" -msgstr "Houdt niet van" +#: ../../mod/editwebpage.php:140 +msgid "Edit Webpage" +msgstr "Webpagina bewerken" -#: ../../mod/profiles.php:394 -msgid "Work/Employment" -msgstr "Werk/arbeid" +#: ../../mod/editwebpage.php:150 +msgid "Delete webpage?" +msgstr "Webpagina verwijderen?" -#: ../../mod/profiles.php:397 -msgid "Religion" -msgstr "Religie" +#: ../../mod/editwebpage.php:215 +msgid "Delete Webpage" +msgstr "Webpagina verwijderen" -#: ../../mod/profiles.php:401 -msgid "Political Views" -msgstr "Politieke overtuigingen" +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "Webpagina" -#: ../../mod/profiles.php:405 -msgid "Gender" -msgstr "Geslacht" +#: ../../mod/impel.php:38 +msgid "block" +msgstr "blok" -#: ../../mod/profiles.php:409 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "lay-out" -#: ../../mod/profiles.php:413 -msgid "Homepage" -msgstr "Homepage" +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" -#: ../../mod/profiles.php:417 -msgid "Interests" -msgstr "Interesses" +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " -#: ../../mod/profiles.php:421 ../../mod/admin.php:866 -msgid "Address" -msgstr "Kanaaladres" +#: ../../mod/profile_photo.php:161 +msgid "Image resize failed." +msgstr "Afbeelding kon niet van grootte veranderd worden." -#: ../../mod/profiles.php:511 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" +#: ../../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/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/profile_photo.php:232 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" -#: ../../mod/profiles.php:632 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" +#: ../../mod/profile_photo.php:241 +msgid "Unable to process image." +msgstr "Niet in staat om afbeelding te verwerken." -#: ../../mod/profiles.php:634 -msgid "View this profile" -msgstr "Profiel weergeven" +#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 +msgid "Photo not available." +msgstr "Foto niet beschikbaar." -#: ../../mod/profiles.php:636 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" +#: ../../mod/profile_photo.php:358 +msgid "Upload File:" +msgstr "Bestand uploaden:" -#: ../../mod/profiles.php:637 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" +#: ../../mod/profile_photo.php:359 +msgid "Select a profile:" +msgstr "Kies een profiel:" -#: ../../mod/profiles.php:638 -msgid "Clone this profile" -msgstr "Dit profiel klonen" +#: ../../mod/profile_photo.php:360 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../mod/profiles.php:639 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" +#: ../../mod/profile_photo.php:365 +msgid "skip this step" +msgstr "sla deze stap over" -#: ../../mod/profiles.php:641 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" +#: ../../mod/profile_photo.php:365 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit jouw fotoalbums" -#: ../../mod/profiles.php:642 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" +#: ../../mod/profile_photo.php:381 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" -#: ../../mod/profiles.php:643 -msgid "Profile Name:" -msgstr "Profielnaam:" +#: ../../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/profiles.php:644 -msgid "Your Full Name:" -msgstr "Jouw volledige naam:" +#: ../../mod/profile_photo.php:384 +msgid "Done Editing" +msgstr "Klaar met bewerken" -#: ../../mod/profiles.php:645 -msgid "Title/Description:" -msgstr "Titel/omschrijving:" +#: ../../mod/profile_photo.php:427 +msgid "Image uploaded successfully." +msgstr "Uploaden afbeelding geslaagd" -#: ../../mod/profiles.php:646 -msgid "Your Gender:" -msgstr "Jouw geslacht" +#: ../../mod/profile_photo.php:429 +msgid "Image upload failed." +msgstr "Uploaden afbeelding mislukt" -#: ../../mod/profiles.php:647 -msgid "Birthday :" -msgstr "Verjaardag: " +#: ../../mod/profile_photo.php:438 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleinen [%s] van afbeelding mislukt." -#: ../../mod/profiles.php:648 -msgid "Street Address:" -msgstr "Straat en huisnummer:" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" -#: ../../mod/profiles.php:649 -msgid "Locality/City:" -msgstr "Woonplaats:" +#: ../../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/profiles.php:650 -msgid "Postal/Zip Code:" -msgstr "Postcode:" +#: ../../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/profiles.php:651 -msgid "Country:" -msgstr "Land:" +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ongeldig verzoek" -#: ../../mod/profiles.php:652 -msgid "Region/State:" -msgstr "Provincie/gewest/deelstaat:" +#: ../../mod/like.php:119 +msgid "thing" +msgstr "ding" -#: ../../mod/profiles.php:653 -msgid " Marital Status:" -msgstr " Huwelijkse staat:" +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." -#: ../../mod/profiles.php:654 -msgid "Who: (if applicable)" -msgstr "Wie (wanneer toepasselijk):" +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" -#: ../../mod/profiles.php:655 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" +#: ../../mod/like.php:422 +msgid "Action completed." +msgstr "Actie voltooid" -#: ../../mod/profiles.php:656 -msgid "Since [date]:" -msgstr "Sinds [datum]:" +#: ../../mod/like.php:423 +msgid "Thank you." +msgstr "Bedankt" -#: ../../mod/profiles.php:658 -msgid "Homepage URL:" -msgstr "Adres homepage:" +#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 +msgid "Help:" +msgstr "Hulp:" -#: ../../mod/profiles.php:661 -msgid "Religious Views:" -msgstr "Religieuze overtuigingen" +#: ../../mod/help.php:67 ../../index.php:238 +msgid "Not Found" +msgstr "Niet gevonden" -#: ../../mod/profiles.php:662 -msgid "Keywords:" -msgstr "Trefwoorden" +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Ding bijgewerkt" -#: ../../mod/profiles.php:665 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" -#: ../../mod/profiles.php:666 -msgid "Used in directory listings" -msgstr "Wordt in de kanalengids gebruikt" +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Ding toegevoegd" -#: ../../mod/profiles.php:667 -msgid "Tell us about yourself..." -msgstr "Vertel ons iets over jezelf..." +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/profiles.php:668 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../mod/profiles.php:669 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../mod/profiles.php:670 -msgid "My other channels" -msgstr "Mijn andere kanalen" +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../mod/profiles.php:671 -msgid "Musical interests" -msgstr "Muzikale interesses" +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Kies een profiel" -#: ../../mod/profiles.php:672 -msgid "Books, literature" -msgstr "Boeken/literatuur" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Plaats een bericht" -#: ../../mod/profiles.php:673 -msgid "Television" -msgstr "Televisie" +#: ../../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/profiles.php:674 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/entertainment" +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" -#: ../../mod/profiles.php:675 -msgid "Love/romance" -msgstr "Liefde/romantiek" +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" -#: ../../mod/profiles.php:676 -msgid "Work/employment" -msgstr "Werk/arbeid" +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL van foto van ding (optioneel)" -#: ../../mod/profiles.php:677 -msgid "School/education" -msgstr "School/onderwijs" +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" -#: ../../mod/profiles.php:683 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contact niet gevonden" -#: ../../mod/profiles.php:694 ../../mod/directory.php:188 -msgid "Age: " -msgstr "Leeftijd:" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kanaalvoorstel verzonden." -#: ../../mod/profiles.php:737 -msgid "Edit/Manage Profiles" -msgstr "Profielen bewerken/beheren" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kanalen voorstellen" -#: ../../mod/profiles.php:738 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stel een kanaal voor aan %s" -#: ../../mod/profiles.php:739 -msgid "Include desirable objects in your profile" -msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" +#: ../../mod/filestorage.php:76 +msgid "Permission Denied." +msgstr "Toegang geweigerd" -#: ../../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/filestorage.php:92 +msgid "File not found." +msgstr "Bestand niet gevonden." -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Blok bewerken" +#: ../../mod/filestorage.php:135 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Blok verwijderen" +#: ../../mod/filestorage.php:144 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" -#: ../../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/filestorage.php:145 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" -#: ../../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/filestorage.php:146 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " -#: ../../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/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/editblock.php:183 -msgid "Delete Block" -msgstr "Blok verwijderen" +#: ../../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/pdledit.php:13 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Ga verder" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulenaam:" +#: ../../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/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Lay-out-hulp" +#: ../../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/editlayout.php:108 -msgid "Edit Layout" -msgstr "Lay-out bewerken" +#: ../../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/editlayout.php:117 -msgid "Delete layout?" -msgstr "Lay-out verwijderen?" +#: ../../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/editlayout.php:178 -msgid "Delete Layout" -msgstr "Lay-out verwijderen" +#: ../../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/editpost.php:31 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Item verwijderen?" +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- kies map -" -#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 -msgid "Help:" -msgstr "Hulp:" +#: ../../mod/locs.php:19 ../../mod/locs.php:46 +msgid "Location not found." +msgstr "Locatie niet gevonden." -#: ../../mod/help.php:67 ../../index.php:238 -msgid "Not Found" -msgstr "Niet gevonden" +#: ../../mod/locs.php:50 +msgid "Primary location cannot be removed." +msgstr "Primaire locatie kan niet worden verwijderd." -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Webpagina bewerken" +#: ../../mod/locs.php:82 +msgid "No locations found." +msgstr "Geen locaties gevonden." -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Webpagina verwijderen?" +#: ../../mod/locs.php:95 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Webpagina verwijderen" +#: ../../mod/locs.php:96 +msgid "Location (address)" +msgstr "Locatie (adres)" -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webpagina" +#: ../../mod/locs.php:97 +msgid "Primary Location" +msgstr "Primaire locatie" -#: ../../mod/impel.php:38 -msgid "block" -msgstr "blok" +#: ../../mod/locs.php:98 +msgid "Drop location" +msgstr "Locatie verwijderen" -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "lay-out" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanaal toegevoegd." -#: ../../mod/impel.php:117 +#: ../../mod/import.php:25 #, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " +#: ../../mod/import.php:51 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." -msgstr "Afbeelding kon niet van grootte veranderd worden." +#: ../../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/profile_photo.php:205 +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" + +#: ../../mod/import.php:106 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." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." -#: ../../mod/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" +#: ../../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/profile_photo.php:241 -msgid "Unable to process image." -msgstr "Niet in staat om afbeelding te verwerken." +#: ../../mod/import.php:157 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." -msgstr "Foto niet beschikbaar." +#: ../../mod/import.php:475 +msgid "Import completed." +msgstr "Import voltooid." -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" -msgstr "Bestand uploaden:" +#: ../../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/profile_photo.php:359 -msgid "Select a profile:" -msgstr "Kies een profiel:" +#: ../../mod/import.php:492 +msgid "Import Channel" +msgstr "Kanaal importeren" -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" +#: ../../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/profile_photo.php:365 -msgid "skip this step" -msgstr "sla deze stap over" +#: ../../mod/import.php:494 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit jouw fotoalbums" +#: ../../mod/import.php:495 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" -#: ../../mod/profile_photo.php:381 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" +#: ../../mod/import.php:496 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../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/import.php:497 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" -#: ../../mod/profile_photo.php:384 -msgid "Done Editing" -msgstr "Klaar met bewerken" +#: ../../mod/import.php:498 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" -#: ../../mod/profile_photo.php:427 -msgid "Image uploaded successfully." -msgstr "Uploaden afbeelding geslaagd" +#: ../../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/profile_photo.php:429 -msgid "Image upload failed." -msgstr "Uploaden afbeelding mislukt" +#: ../../mod/import.php:500 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../mod/profile_photo.php:438 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinen [%s] van afbeelding mislukt." +#: ../../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." @@ -6407,281 +6419,435 @@ msgstr "Leeg bericht geannuleerd" msgid "Executable content type not permitted to this channel." msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../mod/item.php:899 +#: ../../mod/item.php:902 msgid "System error. Post not saved." msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../mod/item.php:1117 +#: ../../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:1123 +#: ../../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/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contact niet gevonden" +#: ../../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/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kanaalvoorstel verzonden." +#: ../../mod/layouts.php:110 +msgid "Help with this feature" +msgstr "Hulp voor dit onderdeel" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kanalen voorstellen" +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "Naam lay-out" -#: ../../mod/fsuggest.php:99 +#: ../../mod/tagger.php:98 #, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een kanaal voor aan %s" +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/filestorage.php:76 -msgid "Permission Denied." -msgstr "Toegang geweigerd" +#: ../../mod/setup.php:166 +msgid "Red Matrix Server - Setup" +msgstr "RedMatrix Server - Setup" -#: ../../mod/filestorage.php:92 -msgid "File not found." -msgstr "Bestand niet gevonden." +#: ../../mod/setup.php:172 +msgid "Could not connect to database." +msgstr "Could not connect to database." -#: ../../mod/filestorage.php:131 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" +#: ../../mod/setup.php:176 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." -#: ../../mod/filestorage.php:140 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" +#: ../../mod/setup.php:183 +msgid "Could not create table." +msgstr "Could not create table." -#: ../../mod/filestorage.php:141 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" +#: ../../mod/setup.php:189 +msgid "Your site database has been installed." +msgstr "Your hub database has been installed." -#: ../../mod/filestorage.php:142 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " +#: ../../mod/setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." -#: ../../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/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Please see the file \"install/INSTALL.txt\"." + +#: ../../mod/setup.php:261 +msgid "System check" +msgstr "System check" + +#: ../../mod/setup.php:266 +msgid "Check again" +msgstr "Check again" + +#: ../../mod/setup.php:289 +msgid "Database connection" +msgstr "Database connection" + +#: ../../mod/setup.php:290 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." +msgstr "In order to install RedMatrix we need to know how to connect to your database." + +#: ../../mod/setup.php:291 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." + +#: ../../mod/setup.php:292 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." + +#: ../../mod/setup.php:296 +msgid "Database Server Name" +msgstr "Database Server Name" + +#: ../../mod/setup.php:296 +msgid "Default is localhost" +msgstr "Default is localhost" + +#: ../../mod/setup.php:297 +msgid "Database Port" +msgstr "Database Port" + +#: ../../mod/setup.php:297 +msgid "Communication port number - use 0 for default" +msgstr "Communication port number - use 0 for default" + +#: ../../mod/setup.php:298 +msgid "Database Login Name" +msgstr "Database Login Name" + +#: ../../mod/setup.php:299 +msgid "Database Login Password" +msgstr "Database Login Password" + +#: ../../mod/setup.php:300 +msgid "Database Name" +msgstr "Database Name" + +#: ../../mod/setup.php:301 +msgid "Database Type" +msgstr "Database Type" + +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "Site administrator email address" +msgstr "Hub administrator email address" + +#: ../../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 "Your account email address must match this in order to use the web admin panel." + +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Website URL" +msgstr "Hub URL" + +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Please use SSL (https) URL if available." +msgstr "Please use SSL (https) URL if available." + +#: ../../mod/setup.php:307 ../../mod/setup.php:352 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your hub" + +#: ../../mod/setup.php:335 +msgid "Site settings" +msgstr "Hub settings" + +#: ../../mod/setup.php:395 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." + +#: ../../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 "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/setup.php:400 +msgid "PHP executable path" +msgstr "PHP executable path" + +#: ../../mod/setup.php:400 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." + +#: ../../mod/setup.php:405 +msgid "Command line PHP" +msgstr "Command line PHP" -#: ../../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/setup.php:414 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: ../../mod/acl.php:245 -msgid "network" -msgstr "netwerk" +#: ../../mod/setup.php:415 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." +#: ../../mod/setup.php:417 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Accountbeheer uitbesteden" +#: ../../mod/setup.php:438 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: ../../mod/delegate.php:123 +#: ../../mod/setup.php:439 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." +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Bestaande accountbeheerders" +#: ../../mod/setup.php:441 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Bestaande gevolmachtigde accountbeheerders" +#: ../../mod/setup.php:448 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." +#: ../../mod/setup.php:449 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:905 -msgid "Remove" -msgstr "Verwijderen" +#: ../../mod/setup.php:450 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Toevoegen" +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" +msgstr "mysqli or postgres PHP module" -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Geen" +#: ../../mod/setup.php:452 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanaal toegevoegd." +#: ../../mod/setup.php:453 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP module" -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Collectie aangemaakt" +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Collectie kon niet aangemaakt worden" +#: ../../mod/setup.php:458 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Collectie bijgewerkt." +#: ../../mod/setup.php:464 ../../mod/setup.php:467 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Kanaalcollectie aanmaken" +#: ../../mod/setup.php:464 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Naam collectie:" +#: ../../mod/setup.php:472 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." -#: ../../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/setup.php:476 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Collectie verwijderd" +#: ../../mod/setup.php:480 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Verwijderen collectie mislukt" +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: mysqli or postgres PHP module required but neither are installed." -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Collectiebewerker" +#: ../../mod/setup.php:488 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Kanalen" +#: ../../mod/setup.php:492 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: mcrypt PHP module required but not installed." -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alle kanaalconnecties" +#: ../../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 "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/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/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 "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/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix - "The Network"" +#: ../../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 "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/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +#: ../../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 "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." -#: ../../mod/suggest.php:35 +#: ../../mod/setup.php:514 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" + +#: ../../mod/setup.php:524 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." +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: ../../mod/import.php:25 +#: ../../mod/setup.php:525 #, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." +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 "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/import.php:51 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" +#: ../../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 "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../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/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 "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/import.php:81 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" -#: ../../mod/import.php:105 +#: ../../mod/setup.php:543 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." +"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 "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/import.php:133 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." +#: ../../mod/setup.php:547 +msgid "store is writable" +msgstr "store is writable" -#: ../../mod/import.php:451 -msgid "Import completed." -msgstr "Import voltooid." +#: ../../mod/setup.php:577 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../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/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 "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!" -#: ../../mod/import.php:468 -msgid "Import Channel" -msgstr "Kanaal importeren" +#: ../../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 "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." -#: ../../mod/import.php:469 +#: ../../mod/setup.php:580 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." +"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 "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." -#: ../../mod/import.php:470 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../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 "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." -#: ../../mod/import.php:471 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" +#: ../../mod/setup.php:582 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Providers are available that issue free certificates which are browser-valid." -#: ../../mod/import.php:472 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" +#: ../../mod/setup.php:584 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" -#: ../../mod/import.php:473 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" +#: ../../mod/setup.php:590 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../mod/import.php:474 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" -#: ../../mod/import.php:475 +#: ../../mod/setup.php:602 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." +"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 "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." -#: ../../mod/import.php:476 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../mod/setup.php:626 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." -#: ../../mod/import.php:477 -msgid "Import existing posts if possible" -msgstr "Importeer bestaande berichten (wanneer mogelijk)" +#: ../../mod/setup.php:661 +msgid "

    What next

    " +msgstr "

    Wat nu

    " -#: ../../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/setup.php:662 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." #: ../../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,111 +7489,93 @@ 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/menu.php:31 +msgid "Menu updated." +msgstr "Menu aangepast. " -#: ../../mod/locs.php:97 -msgid "Primary Location" -msgstr "Primaire locatie" +#: ../../mod/menu.php:35 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" -#: ../../mod/locs.php:98 -msgid "Drop location" -msgstr "Locatie verwijderen" +#: ../../mod/menu.php:40 +msgid "Menu created." +msgstr "Menu aangemaakt." -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." +#: ../../mod/menu.php:44 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." +#: ../../mod/menu.php:76 +msgid "Manage Menus" +msgstr "Menu's beheren" -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" +#: ../../mod/menu.php:79 +msgid "Drop" +msgstr "Verwijderen" -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" -#: ../../mod/mail.php:136 -msgid "Message deleted." -msgstr "Bericht verwijderd." +#: ../../mod/menu.php:82 +msgid "Create a new menu" +msgstr "Een nieuwe menu aanmaken" -#: ../../mod/mail.php:153 -msgid "Message recalled." -msgstr "Bericht ingetrokken." +#: ../../mod/menu.php:83 +msgid "Delete this menu" +msgstr "Menu verwijderen" -#: ../../mod/mail.php:222 -msgid "Send Private Message" -msgstr "Privébericht versturen" +#: ../../mod/menu.php:84 ../../mod/menu.php:125 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" -#: ../../mod/mail.php:223 ../../mod/mail.php:340 -msgid "To:" -msgstr "Aan:" +#: ../../mod/menu.php:85 +msgid "Edit this menu" +msgstr "Dit menu bewerken" -#: ../../mod/mail.php:228 ../../mod/mail.php:342 -msgid "Subject:" -msgstr "Onderwerp:" +#: ../../mod/menu.php:96 +msgid "New Menu" +msgstr "Nieuw menu" -#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Jouw bericht:" +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Menu name" +msgstr "Naam van menu" -#: ../../mod/mail.php:239 -msgid "Send" -msgstr "Verzenden" +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." -#: ../../mod/mail.php:266 -msgid "Message not found." -msgstr "Bericht niet gevonden" +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title" +msgstr "Titel van menu" -#: ../../mod/mail.php:309 -msgid "Delete message" -msgstr "Bericht verwijderen" +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." -#: ../../mod/mail.php:310 -msgid "Recall message" -msgstr "Bericht intrekken" +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../mod/mail.php:312 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" -#: ../../mod/mail.php:329 -msgid "Private Conversation" -msgstr "Privéconversatie" +#: ../../mod/menu.php:114 +msgid "Menu deleted." +msgstr "Menu verwijderd." -#: ../../mod/mail.php:333 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Verwijder conversatie" +#: ../../mod/menu.php:116 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." -#: ../../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/menu.php:122 +msgid "Edit Menu" +msgstr "Menu bewerken" -#: ../../mod/mail.php:339 -msgid "Send Reply" -msgstr "Antwoord versturen" +#: ../../mod/menu.php:124 +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." @@ -7494,30 +7642,45 @@ msgstr "of bezoek " 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/network.php:84 +msgid "No such group" +msgstr "Collectie niet gevonden" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" +#: ../../mod/network.php:122 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "Huidig kanaal" +#: ../../mod/network.php:176 +msgid "Collection is empty" +msgstr "Collectie is leeg" -#: ../../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/network.php:184 +msgid "Collection: " +msgstr "Collectie: " -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Standaardkanaal" +#: ../../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/manage.php:153 -msgid "Make Default" -msgstr "Als standaard instellen" +#: ../../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 @@ -7525,14 +7688,6 @@ msgstr "Als standaard instellen" 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." @@ -7566,29 +7721,14 @@ msgstr "Totaal aantal stemmen" 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/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "Ongeldige connectie." +#: ../../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" @@ -7610,94 +7750,6 @@ msgstr "is geïnteresseerd in:" msgid "No matches" msgstr "Geen overeenkomsten" -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Menu aangepast. " - -#: ../../mod/menu.php:35 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" - -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Menu aangemaakt." - -#: ../../mod/menu.php:44 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." - -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Menu's beheren" - -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Verwijderen" - -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" - -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Een nieuwe menu aanmaken" - -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Menu verwijderen" - -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" - -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Dit menu bewerken" - -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Nieuw menu" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Naam van menu" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Titel van menu" - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" - -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Menu verwijderd." - -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." - -#: ../../mod/menu.php:122 -msgid "Edit Menu" -msgstr "Menu bewerken" - -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" - #: ../../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/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/new_channel.php:119 +msgid "Channel Type" +msgstr "Kanaaltype" -#: ../../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,58 +7818,6 @@ msgstr "Zoek een xchan (of webbie) die begint met:" msgid "invalid target signature" msgstr "ongeldig doelkenmerk" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." - -#: ../../mod/directory.php:201 -msgid "Gender: " -msgstr "Geslacht:" - -#: ../../mod/directory.php:203 -msgid "Status: " -msgstr "Status: " - -#: ../../mod/directory.php:205 -msgid "Homepage: " -msgstr "Homepage: " - -#: ../../mod/directory.php:208 -msgid "Hometown: " -msgstr "Oorspronkelijk uit: " - -#: ../../mod/directory.php:210 -msgid "About: " -msgstr "Over: " - -#: ../../mod/directory.php:265 -msgid "Public Forum:" -msgstr "Openbaar forum:" - -#: ../../mod/directory.php:268 -msgid "Keywords: " -msgstr "Trefwoorden: " - -#: ../../mod/directory.php:317 -msgid "Finding:" -msgstr "Gezocht naar:" - -#: ../../mod/directory.php:322 -msgid "next page" -msgstr "volgende pagina" - -#: ../../mod/directory.php:322 -msgid "previous page" -msgstr "vorige pagina" - -#: ../../mod/directory.php:339 -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." @@ -7842,7 +7830,7 @@ msgstr "Album niet gevonden." msgid "Delete Album" msgstr "Verwijder album" -#: ../../mod/photos.php:159 ../../mod/photos.php:958 +#: ../../mod/photos.php:159 ../../mod/photos.php:955 msgid "Delete Photo" msgstr "Verwijder foto" @@ -7868,11 +7856,11 @@ msgstr "%1$.2f MB aan foto-opslag gebruikt." msgid "Upload Photos" msgstr "Foto's uploaden" -#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 +#: ../../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:944 +#: ../../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)" @@ -7884,8 +7872,8 @@ msgstr "Plaats geen bericht voor deze upload." 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 +#: ../../mod/photos.php:654 ../../mod/photos.php:1164 +#: ../../mod/photos.php:1180 msgid "Contact Photos" msgstr "Connectiefoto's" @@ -7897,85 +7885,131 @@ msgstr "Nieuwste eerst weergeven" msgid "Show Oldest First" msgstr "Oudste eerst weergeven" -#: ../../mod/photos.php:707 ../../mod/photos.php:1215 +#: ../../mod/photos.php:704 ../../mod/photos.php:1212 msgid "View Photo" msgstr "Foto weergeven" -#: ../../mod/photos.php:736 +#: ../../mod/photos.php:733 msgid "Edit Album" msgstr "Album bewerken" -#: ../../mod/photos.php:781 +#: ../../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:783 +#: ../../mod/photos.php:780 msgid "Photo not available" msgstr "Foto niet aanwezig" -#: ../../mod/photos.php:841 +#: ../../mod/photos.php:838 msgid "Use as profile photo" msgstr "Als profielfoto gebruiken" -#: ../../mod/photos.php:848 +#: ../../mod/photos.php:845 msgid "Private Photo" msgstr "Privéfoto" -#: ../../mod/photos.php:863 +#: ../../mod/photos.php:860 msgid "View Full Size" msgstr "Volledige grootte weergeven" -#: ../../mod/photos.php:937 +#: ../../mod/photos.php:934 msgid "Edit photo" msgstr "Foto bewerken" -#: ../../mod/photos.php:939 +#: ../../mod/photos.php:936 msgid "Rotate CW (right)" msgstr "Draai met de klok mee (naar rechts)" -#: ../../mod/photos.php:940 +#: ../../mod/photos.php:937 msgid "Rotate CCW (left)" msgstr "Draai tegen de klok in (naar links)" -#: ../../mod/photos.php:947 +#: ../../mod/photos.php:944 msgid "Caption" msgstr "Bijschrift" -#: ../../mod/photos.php:949 +#: ../../mod/photos.php:946 msgid "Add a Tag" -msgstr "Label toevoegen" +msgstr "Tag toevoegen" -#: ../../mod/photos.php:953 +#: ../../mod/photos.php:950 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" -#: ../../mod/photos.php:956 +#: ../../mod/photos.php:953 msgid "Flag as adult in album view" msgstr "Markeer als voor volwassenen in albumweergave" -#: ../../mod/photos.php:1133 +#: ../../mod/photos.php:1130 msgid "In This Photo:" msgstr "Op deze foto:" -#: ../../mod/photos.php:1221 +#: ../../mod/photos.php:1218 msgid "View Album" msgstr "Album weergeven" -#: ../../mod/photos.php:1244 +#: ../../mod/photos.php:1241 msgid "Recent Photos" msgstr "Recente foto's" -#: ../../mod/ping.php:265 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" -#: ../../mod/ping.php:316 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." -#: ../../mod/ping.php:357 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" +#: ../../mod/directory.php:201 +msgid "Gender: " +msgstr "Geslacht:" + +#: ../../mod/directory.php:203 +msgid "Status: " +msgstr "Status: " + +#: ../../mod/directory.php:205 +msgid "Homepage: " +msgstr "Homepage: " + +#: ../../mod/directory.php:208 +msgid "Hometown: " +msgstr "Oorspronkelijk uit: " + +#: ../../mod/directory.php:210 +msgid "About: " +msgstr "Over: " + +#: ../../mod/directory.php:265 +msgid "Public Forum:" +msgstr "Openbaar forum:" + +#: ../../mod/directory.php:268 +msgid "Keywords: " +msgstr "Trefwoorden: " + +#: ../../mod/directory.php:318 +msgid "Finding:" +msgstr "Gezocht naar:" + +#: ../../mod/directory.php:323 +msgid "next page" +msgstr "volgende pagina" + +#: ../../mod/directory.php:323 +msgid "previous page" +msgstr "vorige pagina" + +#: ../../mod/directory.php:340 +msgid "No entries (some entries may be hidden)." +msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." + +#: ../../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,19 +7,80 @@ 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["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["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["view full size"] = "volledige grootte tonen"; +$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"; +$a->strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; +$a->strings["Can view my file storage"] = "Kan mijn bestanden bekijken"; +$a->strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; +$a->strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; +$a->strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; +$a->strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; +$a->strings["Can post photos to my photo albums"] = "Kan foto's aan mijn fotoalbums toevoegen"; +$a->strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; +$a->strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +$a->strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; +$a->strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; +$a->strings["Can write to my file storage"] = "Kan bestanden aan mijn bestandsopslag toevoegen"; +$a->strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; +$a->strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; +$a->strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +$a->strings["Social Networking"] = "Sociaal netwerk"; +$a->strings["Mostly Public"] = "Vrijwel alles openbaar"; +$a->strings["Restricted"] = "Beperkt zichtbaar"; +$a->strings["Private"] = "Verborgen kanaal"; +$a->strings["Community Forum"] = "Groepsforum"; +$a->strings["Feed Republish"] = "Feed herpubliceren"; +$a->strings["Special Purpose"] = "Speciaal doel"; +$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["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["Tags"] = "Tags"; +$a->strings["Categories"] = "Categorieën"; +$a->strings["Keywords"] = "Trefwoorden"; +$a->strings["have"] = "heb"; +$a->strings["has"] = "heeft"; +$a->strings["want"] = "wil"; +$a->strings["wants"] = "wil"; +$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["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); $a->strings["New Page"] = "Nieuwe pagina"; -$a->strings["Edit"] = "Bewerken"; $a->strings["View"] = "Weergeven"; $a->strings["Preview"] = "Voorvertoning"; $a->strings["Actions"] = "Acties"; @@ -27,51 +88,25 @@ $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["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["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"; @@ -86,6 +121,64 @@ $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"; +$a->strings["Multiple Profiles"] = "Meerdere profielen"; +$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +$a->strings["Advanced Profiles"] = "Geavanceerde profielen"; +$a->strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; +$a->strings["Profile Import/Export"] = "Profiel importen/exporteren"; +$a->strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; +$a->strings["Web Pages"] = "Webpagina's"; +$a->strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; +$a->strings["Private Notes"] = "Privé-aantekeningen"; +$a->strings["Enables a tool to store notes and reminders"] = "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan"; +$a->strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; +$a->strings["Extended Identity Sharing"] = "Uitgebreid identiteit delen"; +$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "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."; +$a->strings["Expert Mode"] = "Expertmodus"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; +$a->strings["Premium Channel"] = "Premiumkanaal"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; +$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["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"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; +$a->strings["Flag Adult Photos"] = "Markeer foto's als voor volwassenen"; +$a->strings["Provide photo edit option to hide adult photos from default album view"] = "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen"; +$a->strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; +$a->strings["Search by Date"] = "Zoek op datum"; +$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; +$a->strings["Collections Filter"] = "Filter op collecties"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +$a->strings["Network New Tab"] = "Nieuwe netwerktab"; +$a->strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; +$a->strings["Affinity Tool"] = "Verwantschapsfilter"; +$a->strings["Filter stream activity by depth of relationships"] = "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag"; +$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["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"] = "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"; @@ -97,83 +190,17 @@ $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["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"; @@ -184,39 +211,6 @@ $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"; -$a->strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; -$a->strings["Can view my file storage"] = "Kan mijn bestanden bekijken"; -$a->strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; -$a->strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; -$a->strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; -$a->strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; -$a->strings["Can post photos to my photo albums"] = "Kan foto's aan mijn fotoalbums toevoegen"; -$a->strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; -$a->strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -$a->strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; -$a->strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; -$a->strings["Can write to my file storage"] = "Kan bestanden aan mijn bestandsopslag toevoegen"; -$a->strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; -$a->strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; -$a->strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; -$a->strings["Social Networking"] = "Sociaal netwerk"; -$a->strings["Mostly Public"] = "Vrijwel alles openbaar"; -$a->strings["Restricted"] = "Beperkt zichtbaar"; -$a->strings["Private"] = "Verborgen kanaal"; -$a->strings["Community Forum"] = "Groepsforum"; -$a->strings["Feed Republish"] = "Feed herpubliceren"; -$a->strings["Special Purpose"] = "Speciaal doel"; -$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"; @@ -234,6 +228,14 @@ $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"; @@ -251,6 +253,7 @@ $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"; @@ -269,10 +272,6 @@ $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:"; @@ -280,7 +279,7 @@ $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["Tags:"] = "Tags:"; $a->strings["Political Views:"] = "Politieke overtuigingen:"; $a->strings["Religion:"] = "Religie:"; $a->strings["About:"] = "Over:"; @@ -297,89 +296,26 @@ $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["Keywords"] = "Trefwoorden"; -$a->strings["have"] = "heb"; -$a->strings["has"] = "heeft"; -$a->strings["want"] = "wil"; -$a->strings["wants"] = "wil"; -$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["%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"; @@ -390,67 +326,24 @@ $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["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"; -$a->strings["Multiple Profiles"] = "Meerdere profielen"; -$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -$a->strings["Advanced Profiles"] = "Geavanceerde profielen"; -$a->strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; -$a->strings["Profile Import/Export"] = "Profiel importen/exporteren"; -$a->strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; -$a->strings["Web Pages"] = "Webpagina's"; -$a->strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; -$a->strings["Private Notes"] = "Privé-aantekeningen"; -$a->strings["Enables a tool to store notes and reminders"] = "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan"; -$a->strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; -$a->strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; -$a->strings["Extended Identity Sharing"] = "Uitgebreid identiteit delen"; -$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "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."; -$a->strings["Expert Mode"] = "Expertmodus"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; -$a->strings["Premium Channel"] = "Premiumkanaal"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; -$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"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; -$a->strings["Flag Adult Photos"] = "Markeer foto's als voor volwassenen"; -$a->strings["Provide photo edit option to hide adult photos from default album view"] = "Zorgt voor een optie om foto's met inhoud voor volwassenen in de standaard albumweergave te verbergen"; -$a->strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; -$a->strings["Search by Date"] = "Zoek op datum"; -$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; -$a->strings["Collections Filter"] = "Filter op collecties"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties"; -$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -$a->strings["Network New Tab"] = "Nieuwe netwerktab"; -$a->strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; -$a->strings["Affinity Tool"] = "Verwantschapsfilter"; -$a->strings["Filter stream activity by depth of relationships"] = "Filter wat je in de Matrix ziet op hoe goed je iemand kent of mag"; -$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["Post Categories"] = "Categorieën berichten"; -$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -$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["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,76 +813,81 @@ $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["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."; -$a->strings["Menu element added."] = "Menu-onderdeel toegevoegd"; -$a->strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; -$a->strings["Not found."] = "Niet gevonden."; -$a->strings["Manage Menu Elements"] = "Menu-onderdelen beheren"; -$a->strings["Edit menu"] = "Menu bewerken"; +$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."; +$a->strings["Menu element added."] = "Menu-onderdeel toegevoegd"; +$a->strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; +$a->strings["Not found."] = "Niet gevonden."; +$a->strings["Manage Menu Elements"] = "Menu-onderdelen beheren"; +$a->strings["Edit menu"] = "Menu bewerken"; $a->strings["Edit element"] = "Onderdeel bewerken"; $a->strings["Drop element"] = "Onderdeel verwijderen"; $a->strings["New element"] = "Nieuw element"; @@ -896,45 +910,23 @@ $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["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."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; -$a->strings["New Source"] = "Nieuwe bron"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; -$a->strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; -$a->strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; -$a->strings["Channel Name"] = "Kanaalnaam"; -$a->strings["Source not found."] = "Bron niet gevonden"; -$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["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"; @@ -946,229 +938,121 @@ $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["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["%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["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["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."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; -$a->strings["Password changed."] = "Wachtwoord veranderd."; -$a->strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; -$a->strings["Not valid email."] = "Geen geldig e-mailadres."; -$a->strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; -$a->strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; -$a->strings["Settings updated."] = "Instellingen bijgewerkt."; -$a->strings["Add application"] = "Applicatie toevoegen"; -$a->strings["Name of application"] = "Naam van applicatie"; -$a->strings["Consumer Key"] = "Consumer key"; -$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; -$a->strings["Consumer Secret"] = "Consumer secret"; -$a->strings["Redirect"] = "Redirect/doorverwijzing"; -$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; -$a->strings["Icon url"] = "URL van pictogram"; -$a->strings["Optional"] = "Optioneel"; -$a->strings["You can't edit this application."] = "Je kan deze applicatie niet bewerken"; -$a->strings["Connected Apps"] = "Verbonden applicaties"; -$a->strings["Client key starts with"] = "Client key begint met"; -$a->strings["No name"] = "Geen naam"; -$a->strings["Remove authorization"] = "Autorisatie verwijderen"; -$a->strings["No feature settings configured"] = "Geen plugin-instellingen ingesteld"; -$a->strings["Feature Settings"] = "Plugin-instellingen"; -$a->strings["Account Settings"] = "Account-instellingen"; -$a->strings["Password Settings"] = "Wachtwoord-instellingen"; -$a->strings["New Password:"] = "Nieuw wachtwoord:"; -$a->strings["Confirm:"] = "Bevestigen:"; -$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; -$a->strings["Email Address:"] = "E-mailadres:"; -$a->strings["Remove Account"] = "Account verwijderen"; -$a->strings["Remove this account from this server including all its channels"] = "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen"; -$a->strings["Warning: This action is permanent and cannot be reversed."] = "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid."; -$a->strings["Off"] = "Uit"; -$a->strings["On"] = "Aan"; -$a->strings["Additional Features"] = "Extra functies"; -$a->strings["Connector Settings"] = "Instellingen externe koppelingen"; -$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; -$a->strings["%s - (Experimental)"] = "%s - (experimenteel)"; -$a->strings["mobile"] = "mobiel"; -$a->strings["Display Settings"] = "Weergave-instellingen"; -$a->strings["Display Theme:"] = "Gebruik thema:"; -$a->strings["Mobile Theme:"] = "Mobiel thema:"; -$a->strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; -$a->strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; -$a->strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; -$a->strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; -$a->strings["Don't show emoticons"] = "Geen emoticons weergeven"; -$a->strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; -$a->strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; -$a->strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; -$a->strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; -$a->strings["Use blog/list mode on matrix page"] = "Gebruik blog/lijst-modus op matrixpagina"; -$a->strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; -$a->strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; -$a->strings["Matrix page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op matrixpagina (in pixels)"; -$a->strings["Nobody except yourself"] = "Niemand, behalve jezelf"; -$a->strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; -$a->strings["Approved connections"] = "Geaccepteerde connecties"; -$a->strings["Any connections"] = "Alle connecties"; -$a->strings["Anybody on this website"] = "Iedereen op deze hub"; -$a->strings["Anybody in this network"] = "Iedereen in dit netwerk"; -$a->strings["Anybody authenticated"] = "Geauthenticeerd"; -$a->strings["Anybody on the internet"] = "Iedereen op het internet"; -$a->strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; -$a->strings["or"] = "of"; -$a->strings["Your channel address is"] = "Jouw kanaaladres is"; -$a->strings["Channel Settings"] = "Kanaal-instellingen"; -$a->strings["Basic Settings"] = "Basis-instellingen"; -$a->strings["Your Timezone:"] = "Jouw tijdzone:"; -$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["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"; -$a->strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent"; -$a->strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; -$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; -$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["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:"; -$a->strings["0 or blank prevents expiration"] = "0 of leeg voorkomt het verlopen"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; -$a->strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; -$a->strings["Default Post Permissions"] = "Standaard permissies voor nieuwe berichten"; -$a->strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; -$a->strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; -$a->strings["Notification Settings"] = "Notificatie-instellingen"; -$a->strings["By default post a status message when:"] = "Plaats automatisch een statusbericht wanneer:"; -$a->strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; -$a->strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; -$a->strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; -$a->strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; -$a->strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; -$a->strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; -$a->strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; -$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; -$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; -$a->strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; -$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; -$a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; -$a->strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; -$a->strings["Unseen matrix activity"] = "Niet bekeken matrix-activiteit"; -$a->strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; -$a->strings["Unseen private messages"] = "Niet bekeken privéberichten"; -$a->strings["Recommended"] = "Aanbevolen"; -$a->strings["Upcoming events"] = "Aankomende gebeurtenissen"; -$a->strings["Events today"] = "Gebeurtissen van vandaag"; -$a->strings["Upcoming birthdays"] = "Aankomende verjaardagen"; -$a->strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; -$a->strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; -$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["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"; -$a->strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; -$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; -$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["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."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; +$a->strings["New Source"] = "Nieuwe bron"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; +$a->strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; +$a->strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; +$a->strings["Channel Name"] = "Kanaalnaam"; +$a->strings["Source not found."] = "Bron niet gevonden"; +$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["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"; @@ -1176,6 +1060,7 @@ $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["Export"] = "Exporteren"; $a->strings["Event details"] = "Details van gebeurtenis"; $a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; @@ -1193,7 +1078,6 @@ $a->strings["The listed sites allow public registration into the Red Matrix. All $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"; @@ -1210,28 +1094,16 @@ $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["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."; @@ -1248,17 +1120,158 @@ $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["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."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; +$a->strings["Password changed."] = "Wachtwoord veranderd."; +$a->strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; +$a->strings["Not valid email."] = "Geen geldig e-mailadres."; +$a->strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; +$a->strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; +$a->strings["Settings updated."] = "Instellingen bijgewerkt."; +$a->strings["Add application"] = "Applicatie toevoegen"; +$a->strings["Name of application"] = "Naam van applicatie"; +$a->strings["Consumer Key"] = "Consumer key"; +$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; +$a->strings["Consumer Secret"] = "Consumer secret"; +$a->strings["Redirect"] = "Redirect/doorverwijzing"; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; +$a->strings["Icon url"] = "URL van pictogram"; +$a->strings["Optional"] = "Optioneel"; +$a->strings["You can't edit this application."] = "Je kan deze applicatie niet bewerken"; +$a->strings["Connected Apps"] = "Verbonden applicaties"; +$a->strings["Client key starts with"] = "Client key begint met"; +$a->strings["No name"] = "Geen naam"; +$a->strings["Remove authorization"] = "Autorisatie verwijderen"; +$a->strings["No feature settings configured"] = "Geen plugin-instellingen ingesteld"; +$a->strings["Feature Settings"] = "Plugin-instellingen"; +$a->strings["Account Settings"] = "Account-instellingen"; +$a->strings["Password Settings"] = "Wachtwoord-instellingen"; +$a->strings["New Password:"] = "Nieuw wachtwoord:"; +$a->strings["Confirm:"] = "Bevestigen:"; +$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; +$a->strings["Email Address:"] = "E-mailadres:"; +$a->strings["Remove Account"] = "Account verwijderen"; +$a->strings["Remove this account from this server including all its channels"] = "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen"; +$a->strings["Warning: This action is permanent and cannot be reversed."] = "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid."; +$a->strings["Off"] = "Uit"; +$a->strings["On"] = "Aan"; +$a->strings["Additional Features"] = "Extra functies"; +$a->strings["Connector Settings"] = "Instellingen externe koppelingen"; +$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; +$a->strings["%s - (Experimental)"] = "%s - (experimenteel)"; +$a->strings["mobile"] = "mobiel"; +$a->strings["Display Settings"] = "Weergave-instellingen"; +$a->strings["Display Theme:"] = "Gebruik thema:"; +$a->strings["Mobile Theme:"] = "Mobiel thema:"; +$a->strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; +$a->strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; +$a->strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; +$a->strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; +$a->strings["Don't show emoticons"] = "Geen emoticons weergeven"; +$a->strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; +$a->strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; +$a->strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; +$a->strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; +$a->strings["Use blog/list mode on matrix page"] = "Gebruik blog/lijst-modus op matrixpagina"; +$a->strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; +$a->strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; +$a->strings["Matrix page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op matrixpagina (in pixels)"; +$a->strings["Nobody except yourself"] = "Niemand, behalve jezelf"; +$a->strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; +$a->strings["Approved connections"] = "Geaccepteerde connecties"; +$a->strings["Any connections"] = "Alle connecties"; +$a->strings["Anybody on this website"] = "Iedereen op deze hub"; +$a->strings["Anybody in this network"] = "Iedereen in dit netwerk"; +$a->strings["Anybody authenticated"] = "Geauthenticeerd"; +$a->strings["Anybody on the internet"] = "Iedereen op het internet"; +$a->strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; +$a->strings["or"] = "of"; +$a->strings["Your channel address is"] = "Jouw kanaaladres is"; +$a->strings["Channel Settings"] = "Kanaal-instellingen"; +$a->strings["Basic Settings"] = "Basis-instellingen"; +$a->strings["Your Timezone:"] = "Jouw tijdzone:"; +$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 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"; +$a->strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent"; +$a->strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; +$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; +$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 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:"; +$a->strings["0 or blank prevents expiration"] = "0 of leeg voorkomt het verlopen"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; +$a->strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; +$a->strings["Default Post Permissions"] = "Standaard permissies voor nieuwe berichten"; +$a->strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; +$a->strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; +$a->strings["Notification Settings"] = "Notificatie-instellingen"; +$a->strings["By default post a status message when:"] = "Plaats automatisch een statusbericht wanneer:"; +$a->strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; +$a->strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; +$a->strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; +$a->strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; +$a->strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; +$a->strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; +$a->strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; +$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; +$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; +$a->strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; +$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +$a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; +$a->strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; +$a->strings["Unseen matrix activity"] = "Niet bekeken matrix-activiteit"; +$a->strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; +$a->strings["Unseen private messages"] = "Niet bekeken privéberichten"; +$a->strings["Recommended"] = "Aanbevolen"; +$a->strings["Upcoming events"] = "Aankomende gebeurtenissen"; +$a->strings["Events today"] = "Gebeurtissen van vandaag"; +$a->strings["Upcoming birthdays"] = "Aankomende verjaardagen"; +$a->strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; +$a->strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; +$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"; +$a->strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; +$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; +$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["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,55 +1439,67 @@ $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"; $a->strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s"; $a->strings["Permission Denied."] = "Toegang geweigerd"; $a->strings["File not found."] = "Bestand niet gevonden."; -$a->strings["Edit file permissions"] = "Bestandsrechten bewerken"; -$a->strings["Set/edit permissions"] = "Rechten instellen/bewerken"; -$a->strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; -$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["Edit file permissions"] = "Bestandsrechten bewerken"; +$a->strings["Set/edit permissions"] = "Rechten instellen/bewerken"; +$a->strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; +$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["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,32 +1762,28 @@ $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["Menu updated."] = "Menu aangepast. "; +$a->strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; +$a->strings["Menu created."] = "Menu aangemaakt."; +$a->strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; +$a->strings["Manage Menus"] = "Menu's beheren"; +$a->strings["Drop"] = "Verwijderen"; +$a->strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; +$a->strings["Create a new menu"] = "Een nieuwe menu aanmaken"; +$a->strings["Delete this menu"] = "Menu verwijderen"; +$a->strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; +$a->strings["Edit this menu"] = "Dit menu bewerken"; +$a->strings["New Menu"] = "Nieuw menu"; +$a->strings["Menu name"] = "Naam van menu"; +$a->strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; +$a->strings["Menu title"] = "Titel van menu"; +$a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; +$a->strings["Allow bookmarks"] = "Bladwijzers toestaan"; +$a->strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; +$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"; @@ -1766,15 +1802,17 @@ $a->strings["1. Register at any RedMatrix location (they are all inter-connected $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["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["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."; @@ -1783,39 +1821,13 @@ $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["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["Menu updated."] = "Menu aangepast. "; -$a->strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; -$a->strings["Menu created."] = "Menu aangemaakt."; -$a->strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; -$a->strings["Manage Menus"] = "Menu's beheren"; -$a->strings["Drop"] = "Verwijderen"; -$a->strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; -$a->strings["Create a new menu"] = "Een nieuwe menu aanmaken"; -$a->strings["Delete this menu"] = "Menu verwijderen"; -$a->strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; -$a->strings["Edit this menu"] = "Dit menu bewerken"; -$a->strings["New Menu"] = "Nieuw menu"; -$a->strings["Menu name"] = "Naam van menu"; -$a->strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; -$a->strings["Menu title"] = "Titel van menu"; -$a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; -$a->strings["Allow bookmarks"] = "Bladwijzers toestaan"; -$a->strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; -$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["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) -- cgit v1.2.3 From 028dff44cccc27db4140ad41fc4893d6cd6ad0f0 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 4 Jan 2015 00:47:44 -0800 Subject: 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'); }); } }, -- cgit v1.2.3
    {{$them}}{{$me}}