From 48b2eafcaaaa8cc05947c4b4b64c3e9daa78c2f4 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Mon, 20 Oct 2014 19:31:47 +0100 Subject: Prevent more than one instance of the poller running at a time. --- include/poller.php | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/include/poller.php b/include/poller.php index 61298b0ab..61d8b87cc 100644 --- a/include/poller.php +++ b/include/poller.php @@ -25,6 +25,15 @@ function poller_run($argv, $argc){ if(! $interval) $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval'))); + // Check for a logfile. If it exists, but is over an hour old, it's stale. Ignore it. + $lockfile = 'store/[data]/poller'; + if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600))) { + logger("poller: Already running"); + return; + } + + // Create a lockfile. Needs two vars, but $x doesn't need to contain anything. + file_put_contents($lockfile, $x); logger('poller: start'); @@ -254,7 +263,7 @@ function poller_run($argv, $argc){ ); - $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel + $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_channel FROM abook LEFT JOIN account on abook_account = account_id where 1 $sql_extra AND (( abook_flags & %d ) OR ( abook_flags = %d )) @@ -310,17 +319,12 @@ function poller_run($argv, $argc){ // He's dead, Jim if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 30 day")) > 0) { - $n = q("select xchan_network from xchan where xchan_hash = '%s' limit 1", - dbesc($contact['abook_xchan']) + $r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d limit 1", + intval(ABOOK_FLAG_ARCHIVED), + intval($contact['abook_id']) ); - if($n && $n[0]['xchan_network'] == 'zot') { - $r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d limit 1", - intval(ABOOK_FLAG_ARCHIVED), - intval($contact['abook_id']) - ); - $update = false; - continue; - } + $update = false; + continue; } if($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) { @@ -375,7 +379,10 @@ function poller_run($argv, $argc){ } } } - + + //All done - clear the lockfile + @unlink($lockfile); + return; } -- cgit v1.2.3 From 58431f948eb5e1d23548b537fdb92dea7d79e196 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Mon, 20 Oct 2014 19:35:02 +0100 Subject: Screwed up merge - put Mike's stuff back. --- include/poller.php | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/include/poller.php b/include/poller.php index 61d8b87cc..d18cb1ca6 100644 --- a/include/poller.php +++ b/include/poller.php @@ -263,7 +263,7 @@ function poller_run($argv, $argc){ ); - $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_channel + $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel FROM abook LEFT JOIN account on abook_account = account_id where 1 $sql_extra AND (( abook_flags & %d ) OR ( abook_flags = %d )) @@ -319,12 +319,17 @@ function poller_run($argv, $argc){ // He's dead, Jim if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 30 day")) > 0) { - $r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d limit 1", - intval(ABOOK_FLAG_ARCHIVED), - intval($contact['abook_id']) + $n = q("select xchan_network from xchan where xchan_hash = '%s' limit 1", + dbesc($contact['abook_xchan']) ); - $update = false; - continue; + if($n && $n[0]['xchan_network'] == 'zot') { + $r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d limit 1", + intval(ABOOK_FLAG_ARCHIVED), + intval($contact['abook_id']) + ); + $update = false; + continue; + } } if($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) { -- cgit v1.2.3 From d02162ee83416ca651133724bd4a01fdc60c20d0 Mon Sep 17 00:00:00 2001 From: marijus Date: Mon, 20 Oct 2014 23:01:58 +0200 Subject: minor correction and typo --- view/css/mod_photos.css | 3 ++- view/tpl/photo_view.tpl | 7 +++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/view/css/mod_photos.css b/view/css/mod_photos.css index c8cdab6c3..571aba57c 100644 --- a/view/css/mod_photos.css +++ b/view/css/mod_photos.css @@ -3,7 +3,8 @@ margin-bottom: 25px; } -.photo-item-tools { +.photo-item-tools-left, +.photo-item-tools-right { padding: 7px 10px; } diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl index 88f9577b4..ddbce5b0b 100755 --- a/view/tpl/photo_view.tpl +++ b/view/tpl/photo_view.tpl @@ -67,7 +67,7 @@ {{$edit.aclselect}}
-<
+
@@ -82,17 +82,16 @@
+ {{if $tags}}
- {{if $tags}}
{{$tag_hdr}} {{foreach $tags as $t}} {{$t.0}}{{if $edit}}  {{/if}} {{/foreach}}
- {{/if}} -
+ {{/if}} {{if $likebuttons}}
-- cgit v1.2.3 From cb15c73dae51c7001fa7277ef4d324645f72c5c3 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 20 Oct 2014 16:47:58 -0700 Subject: move all theme initialisation to one place - just after calling module_init. Revert if there are serious issues, but please note the issues in as much detail as possible so we can work through them. --- boot.php | 16 ++++++++++------ include/RedDAV/RedBrowser.php | 1 + index.php | 40 ++++++++++++++++++++++++++++++++-------- mod/page.php | 22 ++++++++++++++++++---- version.inc | 2 +- 5 files changed, 62 insertions(+), 19 deletions(-) diff --git a/boot.php b/boot.php index 14d0a61a5..abbf48636 100755 --- a/boot.php +++ b/boot.php @@ -1880,13 +1880,9 @@ function get_custom_nav(&$a,$navname) { } -function construct_page(&$a) { - +function load_pdl(&$a) { require_once('include/comanche.php'); - // in case a page has overloaded a module, see if we already have a layout defined - // otherwise, if a pdl file exists for this module, use it - if(! count($a->layout)) { $n = 'mod_' . $a->module . '.pdl' ; $u = comanche_get_channel_id(); @@ -1898,12 +1894,20 @@ function construct_page(&$a) { comanche_parser($a,$s); } - $comanche = ((count($a->layout)) ? true : false); +} + + + +function construct_page(&$a) { + /** * Build the page - now that we have all the components */ + + $comanche = ((count($a->layout)) ? true : false); + require_once(theme_include('theme_init.php')); $installing = false; diff --git a/include/RedDAV/RedBrowser.php b/include/RedDAV/RedBrowser.php index 6ec5c978d..21ea76aed 100644 --- a/include/RedDAV/RedBrowser.php +++ b/include/RedDAV/RedBrowser.php @@ -259,6 +259,7 @@ class RedBrowser extends DAV\Browser\Plugin { $html .= $output; get_app()->page['content'] = $html; + load_pdl(get_app()); construct_page(get_app()); } diff --git a/index.php b/index.php index 6c18cbcb8..3e5207f2b 100755 --- a/index.php +++ b/index.php @@ -242,14 +242,6 @@ if(strlen($a->module)) { } } -/** - * load current theme info - */ -$theme_info_file = "view/theme/".current_theme()."/php/theme.php"; -if (file_exists($theme_info_file)){ - require_once($theme_info_file); -} - /* initialise content region */ @@ -281,12 +273,44 @@ if($a->module_loaded) { $a->page['page_title'] = $a->module; $placeholder = ''; + /** + * No theme has been specified when calling the module_init functions + * For this reason, please restrict the use of templates to those which + * do not provide any presentation details - as themes will not be able + * to over-ride them. + */ + if(function_exists($a->module . '_init')) { call_hooks($a->module . '_mod_init', $placeholder); $func = $a->module . '_init'; $func($a); } + /** + * Do all theme initialiasion here before calling any additional module functions. + * The module_init function may have changed the theme. + * Additionally any page with a Comanche template may alter the theme. + * So we'll check for those now. + */ + + + /** + * In case a page has overloaded a module, see if we already have a layout defined + * otherwise, if a PDL file exists for this module, use it + * The member may have also created a customised PDL that's stored in the config + */ + + load_pdl($a); + + /** + * load current theme info + */ + + $theme_info_file = "view/theme/".current_theme()."/php/theme.php"; + if (file_exists($theme_info_file)){ + require_once($theme_info_file); + } + if(function_exists(str_replace('-','_',current_theme()) . '_init')) { $func = str_replace('-','_',current_theme()) . '_init'; $func($a); diff --git a/mod/page.php b/mod/page.php index b3f53a227..e8f17ebda 100644 --- a/mod/page.php +++ b/mod/page.php @@ -14,13 +14,11 @@ function page_init(&$a) { if($a->profile['profile_uid']) head_set_icon($a->profile['thumb']); -} - + // load the item here in the init function because we need to extract + // the page layout and initialise the correct theme. -function page_content(&$a) { - $observer = $a->get_observer(); $ob_hash = (($observer) ? $observer['xchan_hash'] : ''); @@ -97,11 +95,27 @@ function page_content(&$a) { } } + $a->data['webpage'] = $r; + + + +} + + + + +function page_content(&$a) { + + $r = $a->data['webpage']; + if(! $r) + return; // logger('layout: ' . print_r($a->layout,true)); // Use of widgets should be determined by Comanche, but we don't have it on system pages yet, so... + // I recommend we now get rid of this bit - it's quite a hack to work around... - mike + if ($perms['write_pages']) { $chan = $a->channel['channel_id']; $who = $channel_address; diff --git a/version.inc b/version.inc index 89d0ecd1c..5a2540b37 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-10-19.833 +2014-10-20.834 -- cgit v1.2.3 From 577d84b883b52dde84c18c659a8c4674abe4e94e Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 20 Oct 2014 19:06:02 -0700 Subject: bb2diaspora wallwall comment - match both bits (ITEM_WALL|ITEM_ORIGIN) --- include/bb2diaspora.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 9a87de5b2..665fd4622 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -290,7 +290,7 @@ function bb2diaspora_itemwallwall(&$item) { // We have to do something similar for wall-to-wall comments. ITEM_WALL|ITEM_ORIGIN indicates that it was posted on this site. // Regular matrix comments may have one of these bits set, but not both. - if(($item['mid'] != $item['parent_mid']) && ($item['author_xchan'] != $item['owner_xchan']) && ($item['item_flags'] & (ITEM_WALL|ITEM_ORIGIN)) && (is_array($item['author'])) && $item['author']['xchan_url'] && $item['author']['xchan_name'] && $item['author']['xchan_photo_m']) { + if(($item['mid'] != $item['parent_mid']) && ($item['author_xchan'] != $item['owner_xchan']) && (($item['item_flags'] & (ITEM_WALL|ITEM_ORIGIN)) == (ITEM_WALL|ITEM_ORIGIN)) && (is_array($item['author'])) && $item['author']['xchan_url'] && $item['author']['xchan_name'] && $item['author']['xchan_photo_m']) { logger('bb2diaspora_itemwallwall: wall to wall comment',LOGGER_DEBUG); // post will come across with the owner's identity. Throw a preamble onto the post to indicate the true author. $item['body'] = "\n\n" -- cgit v1.2.3 From bac947c4dd6c635be9135388f7a99ec6a57cc3de Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 20 Oct 2014 20:10:23 -0700 Subject: wrong template loaded issue --- mod/channel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/channel.php b/mod/channel.php index 395160d2c..e4a7173c0 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -64,7 +64,7 @@ function channel_content(&$a, $update = 0, $load = false) { if($update) { // Ensure we've got a profile owner if updating. - $a->profile['profile_uid'] = $update; + $a->profile['profile_uid'] = $a->profile_uid = $update; } else { if($a->profile['profile_uid'] == local_user()) { -- cgit v1.2.3 From e8a7fb3d015b36af31312daf50739cf73f0f4368 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 20 Oct 2014 21:15:29 -0700 Subject: strip out the Diaspora quoted reshare markers --- include/bb2diaspora.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 665fd4622..5663ce9ef 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -116,6 +116,8 @@ function diaspora_mention_callback($matches) { function diaspora2bb($s,$use_zrl = false) { + $s = str_replace(" \n>","",$s); + $s = html_entity_decode($s,ENT_COMPAT,'UTF-8'); // Too many new lines. So deactivated the following line -- cgit v1.2.3 From a03c3d54805b087181730a84263a14e5a1ca3e96 Mon Sep 17 00:00:00 2001 From: marijus Date: Tue, 21 Oct 2014 13:43:14 +0200 Subject: fix nav double dropdown --- view/tpl/nav.tpl | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index bc9d0ba37..a283b35a8 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -50,12 +50,16 @@ {{if $nav.register}}
  • {{$nav.register.1}}
  • {{/if}} {{if !$userinfo}} {{if $nav.loginmenu}} -
  • {{$nav.loginmenu.0.1}} -
  • {{/if}} {{/if}} -- cgit v1.2.3 From 1fb2de6d55779c853e25d38f5b93133a5414d72a Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Tue, 21 Oct 2014 17:27:13 +0100 Subject: Typo --- include/poller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/poller.php b/include/poller.php index d18cb1ca6..f11618d37 100644 --- a/include/poller.php +++ b/include/poller.php @@ -25,7 +25,7 @@ function poller_run($argv, $argc){ if(! $interval) $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval'))); - // Check for a logfile. If it exists, but is over an hour old, it's stale. Ignore it. + // Check for a lockfile. If it exists, but is over an hour old, it's stale. Ignore it. $lockfile = 'store/[data]/poller'; if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600))) { logger("poller: Already running"); -- cgit v1.2.3 From ed7712cfbf9835368de79f8686954b536c12e4d1 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 21 Oct 2014 16:33:35 -0700 Subject: private forum issues --- include/identity.php | 3 ++- include/items.php | 1 + mod/item.php | 15 +++++++++++++++ version.inc | 2 +- 4 files changed, 19 insertions(+), 2 deletions(-) diff --git a/include/identity.php b/include/identity.php index 07bfaebbd..8866b4811 100644 --- a/include/identity.php +++ b/include/identity.php @@ -389,7 +389,8 @@ function create_identity($arr) { dbesc( t('Friends') ) ); if($r) { - q("update channel set channel_allow_gid = '%s' where channel_id = %d limit 1", + q("update channel set channel_default_group = '%s', channel_allow_gid = '%s' where channel_id = %d limit 1", + dbesc($r[0]['hash']), dbesc('<' . $r[0]['hash'] . '>'), intval($newuid) ); diff --git a/include/items.php b/include/items.php index 40343d505..75eaecb20 100755 --- a/include/items.php +++ b/include/items.php @@ -98,6 +98,7 @@ function collect_recipients($item,&$private_envelope) { } } + // This is a somewhat expensive operation but important. // Don't send this item to anybody who isn't allowed to see it diff --git a/mod/item.php b/mod/item.php index ac15e50e8..589e3beb1 100644 --- a/mod/item.php +++ b/mod/item.php @@ -257,10 +257,16 @@ function item_post(&$a) { killme(); } + $walltowall = false; + if($observer) { logger('mod_item: post accepted from ' . $observer['xchan_name'] . ' for ' . $owner_xchan['xchan_name'], LOGGER_DEBUG); + if($observer['xchan_name'] != $owner_xchan['xchan_name']) + $walltowall = true; } + + $public_policy = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope($channel['channel_r_stream'],true)); if($webpage) $public_policy = ''; @@ -329,6 +335,15 @@ function item_post(&$a) { $str_group_deny = $channel['channel_deny_gid']; $str_contact_deny = $channel['channel_deny_cid']; } + elseif($walltowall) { + + // use the channel owner's default permissions + + $str_group_allow = $channel['channel_allow_gid']; + $str_contact_allow = $channel['channel_allow_cid']; + $str_group_deny = $channel['channel_deny_gid']; + $str_contact_deny = $channel['channel_deny_cid']; + } else { // use the posted permissions diff --git a/version.inc b/version.inc index 5a2540b37..a9ceeba21 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-10-20.834 +2014-10-21.835 -- cgit v1.2.3 From d5edd89dd2bcfae198bb316c4f9be212937e9fa5 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 21 Oct 2014 17:04:52 -0700 Subject: when removing a channel, check to see if there are any valid hublocs remaining before marking the xchan deleted. Issue #657 --- include/Contact.php | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/include/Contact.php b/include/Contact.php index 4440369dc..20e5e1a1e 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -245,11 +245,13 @@ function channel_remove($channel_id, $local = true, $unset_session=true) { intval($channel_id) ); + $r = q("update hubloc set hubloc_flags = (hubloc_flags | %d) where hubloc_hash = '%s'", intval(HUBLOC_FLAGS_DELETED), dbesc($channel['channel_hash']) ); + $r = q("update xchan set xchan_flags = (xchan_flags | %d) where xchan_hash = '%s'", intval(XCHAN_FLAGS_DELETED), dbesc($channel['channel_hash']) @@ -257,7 +259,6 @@ function channel_remove($channel_id, $local = true, $unset_session=true) { proc_run('php','include/notifier.php','purge_all',$channel_id); - } q("DELETE FROM `groups` WHERE `uid` = %d", intval($channel_id)); @@ -291,11 +292,23 @@ function channel_remove($channel_id, $local = true, $unset_session=true) { dbesc(z_root()) ); - $r = q("update xchan set xchan_flags = (xchan_flags | %d) where xchan_hash = '%s' ", - intval(XCHAN_FLAGS_DELETED), - dbesc($channel['channel_hash']) + // Do we have any valid hublocs remaining? + + $hublocs = 0; + + $r = q("select hubloc_id from hubloc where hubloc_hash = '%s' and not (hubloc_flags & %d)", + dbesc($channel['channel_hash']), + intval(HUBLOC_FLAGS_DELETED) ); + if($r) + $hublocs = count($r); + if(! $hublocs) { + $r = q("update xchan set xchan_flags = (xchan_flags | %d) where xchan_hash = '%s' ", + intval(XCHAN_FLAGS_DELETED), + dbesc($channel['channel_hash']) + ); + } proc_run('php','include/directory.php',$channel_id); -- cgit v1.2.3 From 4fe86305180914e163deee7cba5fd95cbad3759d Mon Sep 17 00:00:00 2001 From: zottel Date: Wed, 22 Oct 2014 13:09:56 +0200 Subject: document store writability requirements --- install/INSTALL.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install/INSTALL.txt b/install/INSTALL.txt index 8ec919369..cec0b535f 100644 --- a/install/INSTALL.txt +++ b/install/INSTALL.txt @@ -101,8 +101,9 @@ directory/path component in the URL) is REQUIRED. chmod -R 777 store [This permission (777) is very dangerous and if you have sufficient - privilege and knowledge you should make this directory writeable only - by the webserver. In many shared hosting environments this may be + privilege and knowledge you should make these directories writeable + only by the webserver and, if different, the user that will run the + cron job (see below). In many shared hosting environments this may be difficult without opening a trouble ticket with your provider. The above permissions will allow the software to work, but are not optimal.] -- cgit v1.2.3 From 77fb1c2ee6cf7810200cf91bfb737c29f9f1a67b Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Wed, 22 Oct 2014 20:22:37 +0100 Subject: Doco - some clean up to install - keep politics out of it, 80 columnise it and whitespace. --- install/INSTALL.txt | 126 ++++++++++++++++++++++++++-------------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/install/INSTALL.txt b/install/INSTALL.txt index cec0b535f..f5edf009f 100644 --- a/install/INSTALL.txt +++ b/install/INSTALL.txt @@ -1,4 +1,3 @@ - Red Matrix Installation We've tried very hard to ensure that the Red Matrix will run on commodity @@ -46,47 +45,48 @@ allow you to use a non browser-valid certificate. This restriction is incorporated because public posts from you may for example contain references to images on your own hub. If your certificate is not known by the internet browser of users they get a warning message complaining about -some security issues. Although these complains are not the real truth - there -are no security issues with your encryption! - the users may be confused, -nerved or even worse may become scared about Red Matrix having security issues. +the invalid certificate. + Free "browser-valid" certificates are available from providers such as StartSSL. - + If you do NOT use SSL, there may be a delay of up to a minute for the initial install script - while we check the SSL port to see if anything responds there. When communicating with new sites, Red Matrix always attempts connection on the -SSL port first, before falling back to a less secure connection. +SSL port first, before falling back to a less secure connection. If you do not +use SSL, your webserver must not listen on port 443 at all. 1. Requirements - - Apache with mod-rewrite enabled and "AllowOverride All" so you can use a -local .htaccess file + - Apache with mod-rewrite enabled and "AllowOverride All" so you can use a + local .htaccess file - - PHP 5.3+. The later the better. + - PHP 5.3+. The later the better. - - PHP *command line* access with register_argc_argv set to true in the -php.ini file - and with no hosting provider restrictions on the use of exec() -and proc_open(). + - PHP *command line* access with register_argc_argv set to true in the + php.ini file - and with no hosting provider restrictions on the use of + exec() and proc_open(). - - curl, gd (with at least jpeg and png support), mysqli, mbstring, mcrypt, and openssl extensions. The imagick extension is not required but desirable. + - curl, gd (with at least jpeg and png support), mysqli, mbstring, mcrypt, + and openssl extensions. The imagick extension is not required but desirable. - - some form of email server or email gateway such that PHP mail() works + - some form of email server or email gateway such that PHP mail() works - - Mysql 5.x or MariaDB + - Mysql 5.x or MariaDB + + - ability to schedule jobs with cron. - - ability to schedule jobs with cron. + - Installation into a top-level domain or sub-domain (without a + directory/path component in the URL) is REQUIRED. - - Installation into a top-level domain or sub-domain (without a -directory/path component in the URL) is REQUIRED. +2. Unpack the RedMatrix files into the root of your web server document area. + + If you copy the directory tree to your webserver, make sure that you + also copy .htaccess - as "dot" files are often hidden and aren't normally + copied. -2. Unpack the Red Matrix files into the root of your web server document area. - - - If you copy the directory tree to your webserver, make sure - that you also copy .htaccess - as "dot" files are often hidden - and aren't normally copied. - - - If you are able to do so, we recommend using git to clone the - source repository rather than to use a packaged tar or zip file. - This makes the software much easier to update. The Linux command - to clone the repository into a directory "mywebsite" would be + - If you are able to do so, we recommend using git to clone the source + repository rather than to use a packaged tar or zip file. This makes the + software much easier to update. The Linux command to clone the repository + into a directory "mywebsite" would be git clone https://github.com/friendica/red.git mywebsite @@ -94,19 +94,20 @@ directory/path component in the URL) is REQUIRED. git pull - - make sure folders *store/[data]/smarty3* and *store* exist and are writable by webserver + - make sure folders *store/[data]/smarty3* and *store* exist and are + writable by the webserver - mkdir -p "store/[data]/smarty3" + mkdir -p "store/[data]/smarty3" chmod -R 777 store - [This permission (777) is very dangerous and if you have sufficient - privilege and knowledge you should make these directories writeable - only by the webserver and, if different, the user that will run the - cron job (see below). In many shared hosting environments this may be - difficult without opening a trouble ticket with your provider. The - above permissions will allow the software to work, but are not - optimal.] + [This permission (777) is very dangerous and if you have sufficient + privilege and knowledge you should make these directories writeable + only by the webserver and, if different, the user that will run the + cron job (see below). In many shared hosting environments this may be + difficult without opening a trouble ticket with your provider. The + above permissions will allow the software to work, but are not + optimal.] - For installing addons @@ -114,21 +115,20 @@ directory/path component in the URL) is REQUIRED. cd mywebsite - - Then you should clone the addon repository (separately) + - Then you should clone the addon repository (separately) - git clone https://github.com/friendica/red-addons.git addon + git clone https://github.com/friendica/red-addons.git addon - - For keeping the addon tree updated, you should be on you addon tree and issue a git pull + - For keeping the addon tree updated, you should be on you addon tree and + issue a git pull cd mywebsite/addon - - git pull + git pull 3. Create an empty database and note the access details (hostname, username, password, database name). - 4. If you know in advance that it will be impossible for the web server to write or create files in your web directory, create an empty file called .htconfig.php and make it writable by the web server. @@ -140,12 +140,12 @@ website. 6. *If* the automated installation fails for any reason, check the following: - - ".htconfig.php" exists - If not, edit htconfig.php and change system settings. Rename -to .htconfig.php + - ".htconfig.php" exists + If not, edit htconfig.php and change system settings. Rename + to .htconfig.php - Database is populated. - If not, import the contents of "database.sql" with phpmyadmin -or mysql command line + If not, import the contents of "database.sql" with phpmyadmin + or mysql command line 7. At this point visit your website again, and register your personal account. Registration errors should all be recoverable automatically. @@ -174,10 +174,10 @@ one shown, substituting for your unique paths and settings: You can generally find the location of PHP by executing "which php". If you have troubles with this section please contact your hosting provider for -assistance. The RedMatrix will not work correctly if you cannot perform this step. +assistance. RedMatrix will not work correctly if you cannot perform this step. -You should also be sure that $a->config['system']['php_path'] is set correctly, it should -look like (changing it to the correct PHP location) +You should also be sure that $a->config['system']['php_path'] is set correctly, +it should look like (changing it to the correct PHP location) $a->config['system']['php_path'] = '/usr/local/php53/bin/php'; @@ -194,20 +194,20 @@ $a->config['system']['php_path'] = '/usr/local/php53/bin/php'; "System is currently unavailable. Please try again later" ##################################################################### - Check your database settings. It usually means your database could not -be opened or accessed. If the database resides on the same machine, check that +Check your database settings. It usually means your database could not be +opened or accessed. If the database resides on the same machine, check that the database server name is the word "localhost". ##################################################################### - 500 Internal Error ##################################################################### - This could be the result of one of our Apache directives not being +This could be the result of one of our Apache directives not being supported by your version of Apache. Examine your apache server logs. Also check your file permissions. Your website and all contents must generally be world-readable. - It is likely that your web server reported the source of the problem in +It is likely that your web server reported the source of the problem in its error log files. Please review these system error logs to determine what caused the problem. Often this will need to be resolved with your hosting provider or (if self-hosted) your web server configuration. @@ -216,23 +216,23 @@ provider or (if self-hosted) your web server configuration. - 400 and 4xx "File not found" errors ##################################################################### - First check your file permissions. Your website and all contents must +First check your file permissions. Your website and all contents must generally be world-readable. - Ensure that mod-rewite is installed and working, and that your +Ensure that mod-rewite is installed and working, and that your .htaccess file is being used. To verify the latter, create a file test.out containing the word "test" in the top directory of the RedMatrix, make it world readable and point your web browser to http://yoursitenamehere.com/test.out - This file should be blocked. You should get a permission denied message. +This file should be blocked. You should get a permission denied message. - If you see the word "test" your Apache configuration is not allowing -your .htaccess file to be used (there are rules in this file to block access +If you see the word "test" your Apache configuration is not allowing your +.htaccess file to be used (there are rules in this file to block access to any file with .out at the end, as these are typically used for system logs). - Make certain the .htaccess file exists and is readable by everybody, then +Make certain the .htaccess file exists and is readable by everybody, then look for the existence of "AllowOverride None" in the Apache server configuration for your site. This will need to be changed to "AllowOverride All". @@ -245,7 +245,7 @@ likely that mod-rewrite is not installed in your web server or is not working. % a2enmod rewrite % /etc/init.d/apache2 restart - Consult your hosting provider, experts on your particular Linux +Consult your hosting provider, experts on your particular Linux distribution or (if Windows) the provider of your Apache server software if you need to change either of these and can not figure out how. There is a lot of help available on the web. Google "mod-rewrite" along with the @@ -257,7 +257,7 @@ name of your operating system distribution or Apache package. due to permissions issues: ##################################################################### - create an empty file with that name and give it world-write permission. +create an empty file with that name and give it world-write permission. For Linux: % touch .htconfig.php -- cgit v1.2.3 From b27790302b104df7e788077e7a046561f072e762 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Wed, 22 Oct 2014 23:13:17 +0100 Subject: Doco - politics, unwritten pages, links, and stuff. Nothing major. --- doc/Privacy.md | 7 ++----- doc/Profiles.md | 36 ------------------------------------ doc/debian_install.bb | 4 ++-- doc/developer_function_primer.bb | 4 ++-- doc/faq_admins.bb | 5 +++++ doc/main.bb | 13 ++++--------- doc/red2pi.bb | 4 ---- doc/troubleshooting.bb | 2 ++ 8 files changed, 17 insertions(+), 58 deletions(-) delete mode 100644 doc/Profiles.md diff --git a/doc/Privacy.md b/doc/Privacy.md index 60e087e06..9519651eb 100644 --- a/doc/Privacy.md +++ b/doc/Privacy.md @@ -25,10 +25,6 @@ An individual computer or server connected to the RedMatrix. These are provided The system operator of an individual hub. -**spy network** - -Typically large centralised providers including but not limited to Facebook and Google. RedMatrix PRIVATE communications are designed to even be resistant to monitoring by the American NSA, however the technical capabilities of the NSA are not completely known and no guarantee of privacy against this organisation can be made. RedMatrix PUBLIC communications are not protected in any way. - ##Policies **Public Information** @@ -52,7 +48,7 @@ Comments to posts that were created by others and posts which are designated as **Private Information** -RedMatrix developers will ensure that any content you provide which is designated as PRIVATE will be protected against eavesdropping - to the best of their ability. Private content is generally hidden or obscured even from hub administrators. It is also stripped from email notifications. It is difficult but NOT impossible for this content to be seen by a hub administrator who is determined to monitor your communications. We consider this like the lock on the door of a house. It will generally keep the house safe, but a determined burgler will ignore the lock on the door and instead break a window. +RedMatrix developers will ensure that any content you provide which is designated as PRIVATE will be protected against eavesdropping - to the best of their ability. Private content is generally hidden or obscured even from hub administrators. It is also stripped from email notifications. It is difficult but NOT impossible for this content to be seen by a hub administrator. This is a side effect of the physical laws of the universe. Unfortunately, if a database needs to decrypt a post at display time, it must have the means to decrypt the post! End to end encryption is also provided and this CANNOT be seen, even by a determined administrator. ##Identity Privacy @@ -74,3 +70,4 @@ The RedMatrix RECOMMENDS that hub administrators provide a grace period of 1-2 d If you typically and regularly post content of an adult or offensive nature, you are STRONGLY encouraged to mark your account "NSFW" (Not Safe For Work). This will prevent the display of your profile photo in the directory except to viewers that have chosen to disable "safe mode". If your profile photo is found by directory administrators to be adult or offensive, the directory administrator MAY flag your profile photo as NSFW. There is currently no official mechanism to contest or reverse this decision, which is why you SHOULD mark your own account NSFW if it is likely to be inappropriate for general audiences. +#include doc/macros/main_footer.bb; diff --git a/doc/Profiles.md b/doc/Profiles.md deleted file mode 100644 index 1e9e0fe5e..000000000 --- a/doc/Profiles.md +++ /dev/null @@ -1,36 +0,0 @@ -Profiles -======== - -* [Home](help) - -Red has unlimited profiles. You may use different profiles to show different "sides of yourself" to different audiences. This is different to having different _channels_. Different channels allow for completely different sets of information. You may have a channel for yourself, a channel for your sports team, a channel for your website, or whatever else. A profile allows for finely graded "sides" of each channel. For example, your default public profile might say "Hello, I'm Fred, and I like laughing". You may show your close friends a profile that adds "and I also enjoy dwarf tossing". - -You always have a profile known as your "default" or "public" profile. This profile is always available to the general public and cannot be hidden (there may be rare exceptions on privately run or disconnected sites). You may, and probably should restrict the information you make available on your public profile. - -That said, if you want other friends to be able to find you, it helps to have the following information in your public profile... - -* Your real name or at least a nickname everybody knows -* A photo of **you** -* Your location on the planet, at least to a country level. - -Without this basic information, you could get very lonely here. Most people (even your best friends) will not try and connect with somebody that has a fake name or doesn't contain a real photo. - -In addition, if you'd like to meet people that share some general interests with you, please take a moment and add some "Keywords" to your profile. Such as "music, linux, photography" or whatever. You can add as many keywords as you like. - -To create an alternate profile, select "View Profile" from the menu of your Red Matrix site, then click on the pencil at your profile photo. You may edit an existing profile, change the profile photo, add things to a profile or create a new profile. You may also create a "clone" of an existing profile if you only wish to change a few items but don't wish to enter all the information again. To do that, click on the profile you want to clone and choose "Clone this profile" there. - -In the list of your profiles, you can also choose the contacts who can see a specific profile. Just click on "Edit visibility" next to the profile in question (only available for the profiles that are not your default profile) and then click on user images to add them to or remove them from the group of people who can see this profile. - -Once a profile has been selected, when the person views your profile, they will see the private profile you have assigned. If they are not authenticated, they will see your public profile. - -There is a setting which allows you to publish your profile to a directory and ensure that it can be found by others. You can change this setting on the "Settings" page. - -If you do not wish to be found be people unless you give them your channel address, you may leave your profile unpublished. - -**Keywords and Directory Search** - -On the directory page, you may search for people with published profiles. The search is typically for your nickname or part of your full name. However this search will also match against other profile fields - such as gender, location, "about", work, and education. You may also include "Keywords" in your default profile - which may be used to search for common interests with other members. Keywords are used in the channel suggestion tool and although they aren't visible in the directory, they are shown if people visit your profile page. - -Directory searches are also able to use "boolean" logic so that you can search for "+lesbian +Florida" and find those who's sexual preference (or keywords) contain the world "lesbian" and that live in Florida. See the section on "Topical Tags" on the [Tags-and-Mentions](help/Tags-and-Mentions) page for more information on performing boolean searches. - -On your Connnections page and in the directory there is a link to "Suggestions" or "Channel Suggestions", respectively. This will find channels who have matching and/or similar keywords. The more keywords you provide, the more relevant the search results that are returned. These are sorted by relevance. diff --git a/doc/debian_install.bb b/doc/debian_install.bb index f4e901dc6..866ee8e9f 100644 --- a/doc/debian_install.bb +++ b/doc/debian_install.bb @@ -1,7 +1,7 @@ [b]Installing On Debian[/b] While following the instructions for any other installation will work on Debian, for this platform we also provide an install script -which can be [zrl=http://beardyunixer.com:1234/?p=debian-install-script.git;a=tree]downloaded here[/zrl] +which can be [url=http://gitweb.whogotzot.com/debian-install-script]downloaded here[/url] [b]THIS SCRIPT IS MEANT TO BE RUN ON A NEW OR JUST REINSTALLED SERVER[/b] @@ -17,7 +17,7 @@ For the initial setup git may not be installed on your server, to install git: If wget is installed try -[code]wget "http://beardyunixer.com:1234/?p=debian-install-script.git;a=blob_plain;f=debian-setup.sh;hb=HEAD" -O debian-setup.sh[/code] +[code]wget "http://gitweb.whogotzot.com/debian-install-script/snapshot/91e76332668509585d52d4fa3f5b81a728c67fa6.tar.gz" -O debian-setup.sh[/code] To install wget: [code]apt-get install wget[/code] diff --git a/doc/developer_function_primer.bb b/doc/developer_function_primer.bb index 3d5fe82a9..3db853b82 100644 --- a/doc/developer_function_primer.bb +++ b/doc/developer_function_primer.bb @@ -20,13 +20,13 @@ Returns the global app structure ($a). (App:: is usually assigned to the global $a), so $a->get_observer() or get_app()->get_observer() - returns an xchan structure representing the current viewer if authenticated (locally or remotely). -[b]get_config($family,$key), get_pconfig($uid,$family,$key)[/b] +[b]get_config($family,$key), get_pconfig($uid,$family,$key), get_xconfig($xchan_hash,$family,$key)[/b] Returns the config setting for $family and $key or false if unset. [b] set_config($family,$key,$value), set_pconfig($uid,$family,$key,$value)[/b] -Sets the value of config setting for $family and $key to $value. Returns $value. The config versions operate on system-wide settings. The pconfig versions get/set the values for a specific integer uid (channel_id). +Sets the value of config setting for $family and $key to $value. Returns $value. The config versions operate on system-wide settings. The pconfig versions get/set the values for a specific integer uid (channel_id). The xconfig version get/sets the value for a specific xchan hash - generally used for remote users. [b]dbesc()[/b] diff --git a/doc/faq_admins.bb b/doc/faq_admins.bb index 60c1be5a8..e4541035b 100644 --- a/doc/faq_admins.bb +++ b/doc/faq_admins.bb @@ -43,6 +43,11 @@ valid SSL certificate rather than disabling port 443. 4) Rsync everything in custom/ (this will only exist if you have custom modules) 5) Dump and restore DB. +[*] +[b]How do I set the default homepage for logged out viewers?[/b] + +Use the custom_home addon available in the main addons repository. + [/ul] #include doc/macros/main_footer.bb; diff --git a/doc/main.bb b/doc/main.bb index 5502db67d..b7155fa1e 100644 --- a/doc/main.bb +++ b/doc/main.bb @@ -24,7 +24,7 @@ Zot is the great new communicaton protocol invented especially for the Red Matri [zrl=[baseurl]/help/cloud]Cloud Storage[/zrl] [zrl=[baseurl]/help/remove_account]Remove Channel or Account[/zrl] -[size=large][b]Using the Red Matrix[/b][/size] +[size=large][b]Members Help[/b][/size] [zrl=[baseurl]/help/tags_and_mentions]Tags and Mentions[/zrl] [zrl=[baseurl]/help/webpages]Web Pages[/zrl] [zrl=[baseurl]/help/bbcode]BBcode reference for posts and comments[/zrl] @@ -32,20 +32,15 @@ Zot is the great new communicaton protocol invented especially for the Red Matri [zrl=[baseurl]/help/cloud_desktop_clients]Cloud Desktop Clients[/zrl] [zrl=[baseurl]/help/AdvancedSearch]Advanced Directory Search[/zrl] [zrl=[baseurl]/help/addons]Help With Addons[/zrl] -[zrl=[baseurl]/help/nomadic-identity]Got Zot? Nomadic Identity, Channel Cloning And More[/zrl] [zrl=[baseurl]/help/diaspora_compat]Diaspora Communications Compatibility (Diaspora and Friendica)[/zrl] - -[size=large][b]Frequently Asked Questions For Members[/b][/size] [zrl=[baseurl]/help/faq_members]FAQ For Members[/zrl] -[size=large][b]For Hub Administrators[/b][/size] +[size=large][b]Administrators Help[/b][/size] [zrl=[baseurl]/help/install]Install[/zrl] [zrl=[baseurl]/help/debian_install]Easy Install on Debian via script[/zrl] [zrl=[baseurl]/help/red2pi]Installing Red on the Raspberry Pi[/zrl] -[zrl=[baseurl]/help/problems-following-an-update]Problems Following A Software Update[/zrl] [zrl=[baseurl]/help/troubleshooting]Troubleshooting Tips[/zrl] - -[size=large][b]Frequently Asked Questions For Hub Admins[/b][/size] +[zrl=[baseurl]/help/hidden_configs]Tweaking RedMatrix's Hidden Configurations[/zrl] [zrl=[baseurl]/help/faq_admins]FAQ For Admins[/zrl] [size=large][b]Technical Documentation[/b][/size] @@ -69,7 +64,6 @@ Zot is the great new communicaton protocol invented especially for the Red Matri [zrl=[baseurl]/help/to_do_code]To-Do list for Developers[/zrl] [zrl=[baseurl]/help/git_for_non_developers]Git for Non-Developers[/zrl] - [size=large][b]Frequently Asked Questions For Developers[/b][/size] [zrl=[baseurl]/help/faq_developers]FAQ For Developers[/zrl] @@ -79,5 +73,6 @@ Zot is the great new communicaton protocol invented especially for the Red Matri [url=https://github.com/friendica/red-addons]Addon Website[/url] [url=https://zothub.com/channel/one]Development Channel[/url] +[url=[baseurl]/help/credits]RedMatrix Credits[/url] [size=large][b]About This Red Matrix Site[/b][/size] [zrl=[baseurl]/siteinfo] [baseurl]/siteinfo[/zrl] diff --git a/doc/red2pi.bb b/doc/red2pi.bb index d05cc57dd..48b7f6d38 100644 --- a/doc/red2pi.bb +++ b/doc/red2pi.bb @@ -1,9 +1,5 @@ [b]How to install the Red Matrix on a Raspberry Pi[/b] -[zrl=[baseurl]/help/main] Back to the main page[/zrl] -Last update 2014-02-22 -[hr] - You just bought a Raspberry Pi and want to run the RED Matrix with your own domain name? Then this page is for you! You will: diff --git a/doc/troubleshooting.bb b/doc/troubleshooting.bb index d71b5f576..d5e1a29dc 100644 --- a/doc/troubleshooting.bb +++ b/doc/troubleshooting.bb @@ -3,4 +3,6 @@ [li][zrl=[baseurl]/help/technical_faq]Technical FAQ[/zrl][/li] [li][zrl=[baseurl]/help/problems-following-an-update]Problems following an update[/zrl][/li] +#include doc/macros/troubleshooting_footer.bb; #include doc/macros/main_footer.bb; + -- cgit v1.2.3 From d7cb5c0436081214afefbd876a127173ebfa1b74 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 22 Oct 2014 16:41:06 -0700 Subject: you've gotta' be on your toes to catch this bug... though it's been here for about 2 1/2 years and even survived a rewrite. Symptoms are that the archive widget only lists one month (the month when you first posted), and only if your first post was written between the 28th and 31st of whatever month that was. --- include/items.php | 4 ++-- version.inc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/items.php b/include/items.php index 75eaecb20..a0c81f5ae 100755 --- a/include/items.php +++ b/include/items.php @@ -4131,7 +4131,7 @@ function list_post_dates($uid,$wall) { if(intval(substr($dnow,8)) > 28) $dnow = substr($dnow,0,8) . '28'; if(intval(substr($dthen,8)) > 28) - $dnow = substr($dthen,0,8) . '28'; + $dthen = substr($dthen,0,8) . '28'; $ret = array(); // Starting with the current month, get the first and last days of every @@ -4165,7 +4165,7 @@ function posted_dates($uid,$wall) { if(intval(substr($dnow,8)) > 28) $dnow = substr($dnow,0,8) . '28'; if(intval(substr($dthen,8)) > 28) - $dnow = substr($dthen,0,8) . '28'; + $dthen = substr($dthen,0,8) . '28'; $ret = array(); // Starting with the current month, get the first and last days of every diff --git a/version.inc b/version.inc index a9ceeba21..1f7ba0290 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-10-21.835 +2014-10-22.836 -- cgit v1.2.3 From 902b5c52e5ca9359522f33bbecaf7f2f3c1ba90d Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 22 Oct 2014 18:14:21 -0700 Subject: backtrack on attribution for wall-to-wall comments - triggered too often and unnecessarily. --- include/bb2diaspora.php | 18 +++++++++++------- include/reddav.php | 4 ++-- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 5663ce9ef..4f37e5aa8 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -292,14 +292,18 @@ function bb2diaspora_itemwallwall(&$item) { // We have to do something similar for wall-to-wall comments. ITEM_WALL|ITEM_ORIGIN indicates that it was posted on this site. // Regular matrix comments may have one of these bits set, but not both. - if(($item['mid'] != $item['parent_mid']) && ($item['author_xchan'] != $item['owner_xchan']) && (($item['item_flags'] & (ITEM_WALL|ITEM_ORIGIN)) == (ITEM_WALL|ITEM_ORIGIN)) && (is_array($item['author'])) && $item['author']['xchan_url'] && $item['author']['xchan_name'] && $item['author']['xchan_photo_m']) { - logger('bb2diaspora_itemwallwall: wall to wall comment',LOGGER_DEBUG); + // Update: this is getting triggered way too often and unnecessarily. Commenting out until we find a better solution. + // It's not an easy problem. For now we'll live with the mis-attributions, as wall to wall comments are much less frequent + // than wall-to-wall posts. + +// if(($item['mid'] != $item['parent_mid']) && ($item['author_xchan'] != $item['owner_xchan']) && (($item['item_flags'] & (ITEM_WALL|ITEM_ORIGIN)) == (ITEM_WALL|ITEM_ORIGIN)) && (is_array($item['author'])) && $item['author']['xchan_url'] && $item['author']['xchan_name'] && $item['author']['xchan_photo_m']) { +// logger('bb2diaspora_itemwallwall: wall to wall comment',LOGGER_DEBUG); // post will come across with the owner's identity. Throw a preamble onto the post to indicate the true author. - $item['body'] = "\n\n" - . '[img]' . $item['author']['xchan_photo_m'] . '[/img]' - . '[url=' . $item['author']['xchan_url'] . ']' . $item['author']['xchan_name'] . '[/url]' . "\n\n" - . $item['body']; - } +// $item['body'] = "\n\n" +// . '[img]' . $item['author']['xchan_photo_m'] . '[/img]' +// . '[url=' . $item['author']['xchan_url'] . ']' . $item['author']['xchan_name'] . '[/url]' . "\n\n" +// . $item['body']; +// } // $item['author'] might cause a surprise further down the line if it wasn't expected to be here. diff --git a/include/reddav.php b/include/reddav.php index 86b3a00e4..c16e08e27 100644 --- a/include/reddav.php +++ b/include/reddav.php @@ -50,7 +50,7 @@ function RedChannelList(&$auth) { if ($r) { foreach ($r as $rr) { if (perm_is_allowed($rr['channel_id'], $auth->observer, 'view_storage')) { - logger('found channel: /cloud/' . $rr['channel_address'], LOGGER_DEBUG); + logger('found channel: /cloud/' . $rr['channel_address'], LOGGER_DATA); // @todo can't we drop '/cloud'? It gets stripped off anyway in RedDirectory $ret[] = new RedDAV\RedDirectory('/cloud/' . $rr['channel_address'], $auth); } @@ -188,7 +188,7 @@ function RedCollectionData($file, &$auth) { * @throw \Sabre\DAV\Exception\Forbidden */ function RedFileData($file, &$auth, $test = false) { - logger($file . (($test) ? ' (test mode) ' : ''), LOGGER_DEBUG); + logger($file . (($test) ? ' (test mode) ' : ''), LOGGER_DATA); $x = strpos($file, '/cloud'); if ($x === 0) { -- cgit v1.2.3 From 58c692e3897a7807fed23e2633496c4960f022ca Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 22 Oct 2014 20:39:49 -0700 Subject: improved wall-to-wall detection for comments so we can handle Diaspora signing and wall-to-wall attribution correctly. Do it at the point of submission. This also fixes a potential bug in yesterday's wall-to-wall permission setting, if it was a local comment to a remote post. --- include/items.php | 13 +++++++++++-- mod/item.php | 22 ++++++++++++++++------ 2 files changed, 27 insertions(+), 8 deletions(-) diff --git a/include/items.php b/include/items.php index a0c81f5ae..e3526b0a5 100755 --- a/include/items.php +++ b/include/items.php @@ -2517,7 +2517,7 @@ function item_store_update($arr,$allow_exec = false) { return $ret; } -function store_diaspora_comment_sig($datarray, $channel, $parent_item, $post_id) { +function store_diaspora_comment_sig($datarray, $channel, $parent_item, $post_id, $walltowall = false) { // We won't be able to sign Diaspora comments for authenticated visitors // - we don't have their private key @@ -2527,7 +2527,16 @@ function store_diaspora_comment_sig($datarray, $channel, $parent_item, $post_id) require_once('include/bb2diaspora.php'); $signed_body = bb2diaspora_itembody($datarray); - logger('mod_item: storing diaspora comment signature',LOGGER_DEBUG); + if($walltowall) { + logger('wall to wall comment',LOGGER_DEBUG); + // post will come across with the owner's identity. Throw a preamble onto the post to indicate the true author. + $signed_body = "\n\n" + . '[img]' . $datarray['author']['xchan_photo_m'] . '[/img]' + . '[url=' . $datarray['author']['xchan_url'] . ']' . $datarray['author']['xchan_name'] . '[/url]' . "\n\n" + . $signed_body; + } + + logger('storing diaspora comment signature',LOGGER_DEBUG); $diaspora_handle = $channel['channel_address'] . '@' . get_app()->get_hostname(); diff --git a/mod/item.php b/mod/item.php index 589e3beb1..ad567b21f 100644 --- a/mod/item.php +++ b/mod/item.php @@ -258,15 +258,26 @@ function item_post(&$a) { } $walltowall = false; + $walltowall_comment = false; if($observer) { logger('mod_item: post accepted from ' . $observer['xchan_name'] . ' for ' . $owner_xchan['xchan_name'], LOGGER_DEBUG); - if($observer['xchan_name'] != $owner_xchan['xchan_name']) - $walltowall = true; - } - + // wall-to-wall detection. + // For top-level posts, if the author and owner are different it's a wall-to-wall + // For comments, We need to additionally look at the parent and see if it's a wall post that originated locally. + if($observer['xchan_name'] != $owner_xchan['xchan_name']) { + if($parent_item && ($parent_item['item_flags'] & (ITEM_WALL|ITEM_ORIGIN)) == (ITEM_WALL|ITEM_ORIGIN)) { + $walltowall_comment = true; + $walltowall = true; + } + if(! $parent) { + $walltowall = true; + } + } + } + $public_policy = ((x($_REQUEST,'public_policy')) ? escape_tags($_REQUEST['public_policy']) : map_scope($channel['channel_r_stream'],true)); if($webpage) $public_policy = ''; @@ -874,10 +885,9 @@ function item_post(&$a) { if($parent) { // Store the comment signature information in case we need to relay to Diaspora -//FIXME $ditem = $datarray; $ditem['author'] = $observer; - store_diaspora_comment_sig($ditem,$channel,$parent_item, $post_id); + store_diaspora_comment_sig($ditem,$channel,$parent_item, $post_id, (($walltowall_comment) ? 1 : 0)); } update_remote_id($channel,$post_id,$webpage,$pagetitle,$namespace,$remote_id,$mid); -- cgit v1.2.3 From 0ebfee8f87f73111b4de659ee5c97c12ad04b356 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 23 Oct 2014 01:36:01 -0700 Subject: wrong permalink on remote events --- include/event.php | 14 ++++++++++---- version.inc | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/include/event.php b/include/event.php index 1fe6e6f7f..03ecaa0a7 100644 --- a/include/event.php +++ b/include/event.php @@ -400,8 +400,7 @@ function event_store_item($arr,$event) { } else { - $z = q("select * from channel where channel_hash = '%s' and channel_id = %d limit 1", - dbesc($event['event_xchan']), + $z = q("select * from channel where channel_id = %d limit 1", intval($arr['uid']) ); @@ -413,7 +412,7 @@ function event_store_item($arr,$event) { $item_arr['id'] = $item['id']; } else { - $wall = (($z) ? true : false); + $wall = (($z[0]['channel_hash'] == $event['event_xchan']) ? true : false); $item_flags = ITEM_THREAD_TOP; if($wall) { @@ -455,7 +454,14 @@ function event_store_item($arr,$event) { $item_arr['body'] = $prefix . format_event_bbcode($arr); - $item_arr['plink'] = z_root() . '/channel/' . $z[0]['channel_address'] . '/?f=&mid=' . $item_arr['mid']; + // if it's local send the permalink to the channel page. + // otherwise we'll fallback to /display/$message_id + + if($wall) + $item_arr['plink'] = z_root() . '/channel/' . $z[0]['channel_address'] . '/?f=&mid=' . $item_arr['mid']; + else + $item_arr['plink'] = z_root() . '/display/' . $item_arr['mid']; + $x = q("select * from xchan where xchan_hash = '%s' limit 1", dbesc($arr['event_xchan']) diff --git a/version.inc b/version.inc index 1f7ba0290..e93632a42 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-10-22.836 +2014-10-23.837 -- cgit v1.2.3 From 53ee9f664fc97ca313d39ff99ad4a4849f80af61 Mon Sep 17 00:00:00 2001 From: zottel Date: Thu, 23 Oct 2014 13:59:49 +0200 Subject: update to German strings --- view/de/messages.po | 11732 +++++++++++++++++++++++++------------------------- view/de/strings.php | 2872 ++++++------ 2 files changed, 7206 insertions(+), 7398 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 4dc1097ee..ae568d05d 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-10 00:03-0700\n" -"PO-Revision-Date: 2014-10-10 11:45+0000\n" +"POT-Creation-Date: 2014-10-17 14:18+0000\n" +"PO-Revision-Date: 2014-10-23 11:52+0000\n" "Last-Translator: zottel \n" "Language-Team: German (http://www.transifex.com/projects/p/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -34,619 +34,496 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:50 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" +#: ../../view/theme/redbasic/php/config.php:84 +msgid "Light (Red Matrix default)" +msgstr "Hell (RedMatrix-Voreinstellung)" -#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:51 -#: ../../mod/photos.php:91 ../../mod/photos.php:657 ../../mod/photos.php:679 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 -msgid "Profile Photos" -msgstr "Profilfotos" +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../include/ItemObject.php:599 ../../mod/settings.php:519 +#: ../../mod/settings.php:631 ../../mod/settings.php:660 +#: ../../mod/settings.php:684 ../../mod/settings.php:760 +#: ../../mod/settings.php:945 ../../mod/filestorage.php:146 +#: ../../mod/admin.php:414 ../../mod/admin.php:725 ../../mod/admin.php:861 +#: ../../mod/admin.php:994 ../../mod/admin.php:1193 ../../mod/admin.php:1280 +#: ../../mod/photos.php:563 ../../mod/photos.php:672 ../../mod/photos.php:974 +#: ../../mod/photos.php:1014 ../../mod/photos.php:1101 ../../mod/mood.php:135 +#: ../../mod/pdledit.php:58 ../../mod/connedit.php:540 ../../mod/setup.php:307 +#: ../../mod/setup.php:350 ../../mod/invite.php:142 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/connect.php:92 ../../mod/fsuggest.php:108 +#: ../../mod/poke.php:166 ../../mod/group.php:81 ../../mod/appman.php:99 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/import.php:480 ../../mod/mail.php:348 ../../mod/profiles.php:643 +#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/events.php:587 +msgid "Submit" +msgstr "Bestätigen" -#: ../../include/network.php:590 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Theme settings" +msgstr "Theme-Einstellungen" -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set scheme" +msgstr "Schema" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Narrow navbar" +msgstr "Schmale Navigationsleiste" -#: ../../include/items.php:375 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:242 -#: ../../index.php:364 -msgid "Permission denied" -msgstr "Keine Berechtigung" +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Navigation bar background color" +msgstr "Hintergrundfarbe der Navigationsleiste" -#: ../../include/items.php:962 ../../include/items.php:1007 -msgid "(Unknown)" -msgstr "(Unbekannt)" +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Navigation bar gradient top color" +msgstr "Farbverlauf der Navigationsleiste: Farbe oben" -#: ../../include/items.php:1163 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Navigation bar gradient bottom color" +msgstr "Farbverlauf der Navigationsleiste: Farbe unten" -#: ../../include/items.php:1165 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Navigation active button gradient top color" +msgstr "Navigations-Button aktiv: Farbe für Farbverlauf oben" -#: ../../include/items.php:1167 -msgid "Visible to anybody in this network." -msgstr "Für jedes Mitglied der RedMatrix sichtbar." +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Navigation active button gradient bottom color" +msgstr "Navigations-Button aktiv: Farbe für Farbverlauf unten" -#: ../../include/items.php:1169 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Navigation bar border color " +msgstr "Farbe für den Rand der Navigationsleiste" -#: ../../include/items.php:1171 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Navigation bar icon color " +msgstr "Farbe für die Icons der Navigationsleiste" -#: ../../include/items.php:1173 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Navigation bar active icon color " +msgstr "Farbe für aktive Icons der Navigationsleiste" -#: ../../include/items.php:1175 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." +#: ../../view/theme/redbasic/php/config.php:113 +msgid "link color" +msgstr "Farbe für Links" -#: ../../include/items.php:1177 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set font-color for banner" +msgstr "Farbe der Schrift des Banners" -#: ../../include/items.php:3927 ../../mod/display.php:32 -#: ../../mod/filestorage.php:18 ../../mod/admin.php:168 -#: ../../mod/admin.php:898 ../../mod/admin.php:1101 ../../mod/thing.php:76 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Element nicht gefunden." +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set the background color" +msgstr "Hintergrundfarbe" -#: ../../include/items.php:3989 ../../include/photos.php:15 -#: ../../include/attach.php:119 ../../include/attach.php:166 -#: ../../include/attach.php:229 ../../include/attach.php:243 -#: ../../include/attach.php:283 ../../include/attach.php:297 -#: ../../include/attach.php:322 ../../include/attach.php:513 -#: ../../include/attach.php:585 ../../include/chat.php:116 -#: ../../mod/mood.php:112 ../../mod/mitem.php:73 ../../mod/achievements.php:30 -#: ../../mod/settings.php:496 ../../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:29 ../../mod/blocks.php:44 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:560 ../../mod/webpages.php:40 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/register.php:70 ../../mod/regmod.php:17 ../../mod/common.php:35 -#: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:254 ../../mod/delegate.php:6 ../../mod/page.php:30 -#: ../../mod/page.php:80 ../../mod/photos.php:68 ../../mod/photos.php:526 -#: ../../mod/setup.php:203 ../../mod/editblock.php:34 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:48 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 -#: ../../mod/bookmarks.php:46 ../../mod/profile_photo.php:263 -#: ../../mod/profile_photo.php:276 ../../mod/sources.php:66 -#: ../../mod/events.php:200 ../../mod/filestorage.php:10 -#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75 -#: ../../mod/filestorage.php:98 ../../mod/fsuggest.php:78 -#: ../../mod/suggest.php:26 ../../mod/group.php:9 ../../mod/thing.php:247 -#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/item.php:182 ../../mod/item.php:190 -#: ../../mod/item.php:929 ../../mod/layouts.php:27 ../../mod/layouts.php:39 -#: ../../mod/like.php:154 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 -#: ../../mod/mail.php:111 ../../mod/manage.php:6 ../../mod/menu.php:44 -#: ../../mod/message.php:16 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 -#: ../../mod/appman.php:66 ../../mod/service_limits.php:7 ../../index.php:190 -#: ../../index.php:365 -msgid "Permission denied." -msgstr "Zugang verweigert" +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set the background image" +msgstr "Hintergrundbild" -#: ../../include/items.php:4360 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Sammlung nicht gefunden" +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set the background color of items" +msgstr "Hintergrundfarbe für Beiträge" -#: ../../include/items.php:4375 -msgid "Collection is empty." -msgstr "Sammlung ist leer." +#: ../../view/theme/redbasic/php/config.php:118 +msgid "Set the background color of comments" +msgstr "Hintergrundfarbe für Kommentare" -#: ../../include/items.php:4382 -#, php-format -msgid "Collection: %s" -msgstr "Sammlung: %s" +#: ../../view/theme/redbasic/php/config.php:119 +msgid "Set the border color of comments" +msgstr "Farbe des Randes von Kommentaren" -#: ../../include/items.php:4393 -#, php-format -msgid "Connection: %s" -msgstr "Verbindung: %s" +#: ../../view/theme/redbasic/php/config.php:120 +msgid "Set the indent for comments" +msgstr "Einzug für Kommentare" -#: ../../include/items.php:4396 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." +#: ../../view/theme/redbasic/php/config.php:121 +msgid "Set the basic color for item icons" +msgstr "Grundfarbe für Beitrags-Icons" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" +#: ../../view/theme/redbasic/php/config.php:122 +msgid "Set the hover color for item icons" +msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Set font-size for the entire application" +msgstr "Schriftgröße für die ganze Applikation" -#: ../../include/apps.php:126 -msgid "Site Admin" -msgstr "Server-Administrator" +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare" -#: ../../include/apps.php:127 ../../include/conversation.php:1566 -#: ../../include/nav.php:116 -msgid "Bookmarks" -msgstr "Lesezeichen" +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-color for posts and comments" +msgstr "Schriftfarbe für Posts und Kommentare" -#: ../../include/apps.php:128 -msgid "Address Book" -msgstr "Adressbuch" +#: ../../view/theme/redbasic/php/config.php:126 +msgid "Set radius of corners" +msgstr "Ecken-Radius" -#: ../../include/apps.php:129 ../../include/nav.php:124 ../../boot.php:1495 -msgid "Login" -msgstr "Anmelden" +#: ../../view/theme/redbasic/php/config.php:127 +msgid "Set shadow depth of photos" +msgstr "Schattentiefe von Fotos" -#: ../../include/apps.php:130 ../../include/nav.php:217 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanal-Manager" +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Set maximum width of conversation regions" +msgstr "Maximalbreite der Unterhaltungsbereiche" -#: ../../include/apps.php:131 ../../include/nav.php:191 -msgid "Matrix" -msgstr "Matrix" +#: ../../view/theme/redbasic/php/config.php:129 +msgid "Center conversation regions" +msgstr "Konversationsbereich zentrieren" -#: ../../include/apps.php:132 ../../include/widgets.php:521 -#: ../../include/nav.php:219 ../../mod/admin.php:953 ../../mod/admin.php:1158 -msgid "Settings" -msgstr "Einstellungen" +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Set minimum opacity of nav bar - to hide it" +msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)" -#: ../../include/apps.php:133 ../../include/conversation.php:1542 -#: ../../include/nav.php:105 ../../include/RedDAV/RedBrowser.php:238 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Dateien" +#: ../../view/theme/redbasic/php/config.php:131 +msgid "Set size of conversation author photo" +msgstr "Größe der Avatare von Themenstartern" -#: ../../include/apps.php:134 ../../include/conversation.php:1577 -#: ../../include/nav.php:120 ../../mod/webpages.php:86 -msgid "Webpages" -msgstr "Webseiten" +#: ../../view/theme/redbasic/php/config.php:132 +msgid "Set size of followup author photos" +msgstr "Größe der Avatare von Kommentatoren" -#: ../../include/apps.php:135 ../../include/nav.php:194 -msgid "Channel Home" -msgstr "Mein Kanal" +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Sloppy photo albums" +msgstr "Schräge Fotoalben" -#: ../../include/apps.php:136 ../../include/identity.php:1111 -#: ../../include/identity.php:1229 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Are you a clean desk or a messy desk person?" +msgstr "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?" -#: ../../include/apps.php:137 ../../include/conversation.php:1533 -#: ../../include/nav.php:104 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" +#: ../../boot.php:1294 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../include/apps.php:138 ../../include/nav.php:213 -#: ../../mod/events.php:436 -msgid "Events" -msgstr "Veranstaltungen" +#: ../../boot.php:1297 +#, php-format +msgid "Update Error at %s" +msgstr "Aktualisierungsfehler auf %s" -#: ../../include/apps.php:139 ../../include/nav.php:177 -#: ../../mod/directory.php:226 -msgid "Directory" -msgstr "Verzeichnis" +#: ../../boot.php:1471 +msgid "" +"Create an account to access services and applications within the Red Matrix" +msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können." -#: ../../include/apps.php:140 ../../include/nav.php:169 ../../mod/help.php:60 -#: ../../mod/help.php:65 -msgid "Help" -msgstr "Hilfe" +#: ../../boot.php:1472 ../../include/nav.php:163 ../../mod/register.php:220 +msgid "Register" +msgstr "Registrieren" -#: ../../include/apps.php:141 ../../include/nav.php:205 -msgid "Mail" -msgstr "Mail" +#: ../../boot.php:1495 ../../include/nav.php:95 ../../include/nav.php:128 +msgid "Logout" +msgstr "Abmelden" -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Laune" +#: ../../boot.php:1496 ../../include/nav.php:125 ../../include/apps.php:129 +msgid "Login" +msgstr "Anmelden" -#: ../../include/apps.php:143 ../../include/conversation.php:947 -msgid "Poke" -msgstr "Anstupsen" +#: ../../boot.php:1498 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:728 ../../mod/admin.php:737 +msgid "Email" +msgstr "E-Mail" -#: ../../include/apps.php:144 ../../include/nav.php:110 -msgid "Chat" -msgstr "Chat" +#: ../../boot.php:1499 +msgid "Password" +msgstr "Kennwort" -#: ../../include/apps.php:145 ../../include/text.php:822 -#: ../../include/text.php:834 ../../include/nav.php:174 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "Suche" +#: ../../boot.php:1500 +msgid "Remember me" +msgstr "Angaben speichern" -#: ../../include/apps.php:146 -msgid "Probe" -msgstr "Testen" +#: ../../boot.php:1505 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" -#: ../../include/apps.php:147 -msgid "Suggest" -msgstr "Empfehlungen" +#: ../../boot.php:1506 ../../mod/lostpass.php:85 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "Zufälliger Kanal" +#: ../../boot.php:1570 +msgid "permission denied" +msgstr "Zugriff verweigert" -#: ../../include/apps.php:149 -msgid "Invite" -msgstr "Einladen" +#: ../../boot.php:1571 +msgid "Got Zot?" +msgstr "Haste schon Zot?" -#: ../../include/apps.php:150 -msgid "Features" -msgstr "Funktionen" +#: ../../boot.php:2001 +msgid "toggle mobile" +msgstr "auf/von mobile Ansicht wechseln" -#: ../../include/apps.php:151 -msgid "Language" -msgstr "Sprache" +#: ../../include/auth.php:116 +msgid "Logged out." +msgstr "Ausgeloggt." -#: ../../include/apps.php:152 -msgid "Post" -msgstr "Beitrag" +#: ../../include/auth.php:257 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" -#: ../../include/apps.php:153 -msgid "Profile Photo" -msgstr "Profilfoto" +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Login fehlgeschlagen." -#: ../../include/apps.php:242 ../../mod/settings.php:79 -#: ../../mod/settings.php:545 -msgid "Update" -msgstr "Aktualisieren" +#: ../../include/comanche.php:35 +msgid "Default" +msgstr "Standard" -#: ../../include/apps.php:242 -msgid "Install" -msgstr "Installieren" +#: ../../include/RedDAV/RedBrowser.php:106 +#: ../../include/RedDAV/RedBrowser.php:249 +msgid "parent" +msgstr "Übergeordnetes Verzeichnis" -#: ../../include/apps.php:247 -msgid "Purchase" -msgstr "Kaufen" +#: ../../include/RedDAV/RedBrowser.php:130 +msgid "Collection" +msgstr "Sammlung" -#: ../../include/apps.php:249 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:247 -#: ../../include/menu.php:42 ../../include/ItemObject.php:100 -#: ../../mod/settings.php:581 ../../mod/blocks.php:99 -#: ../../mod/webpages.php:133 ../../mod/connections.php:381 -#: ../../mod/connections.php:394 ../../mod/connections.php:413 -#: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 -#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 -#: ../../mod/thing.php:233 ../../mod/layouts.php:121 ../../mod/menu.php:59 -msgid "Edit" -msgstr "Bearbeiten" +#: ../../include/RedDAV/RedBrowser.php:133 +msgid "Principal" +msgstr "Prinzipal" -#: ../../include/apps.php:250 ../../include/conversation.php:638 -#: ../../include/RedDAV/RedBrowser.php:248 ../../include/ItemObject.php:120 -#: ../../mod/settings.php:582 ../../mod/connedit.php:462 -#: ../../mod/photos.php:1064 ../../mod/group.php:176 ../../mod/admin.php:732 -#: ../../mod/admin.php:863 ../../mod/thing.php:234 -msgid "Delete" -msgstr "Löschen" +#: ../../include/RedDAV/RedBrowser.php:136 +msgid "Addressbook" +msgstr "Adressbuch" -#: ../../include/apps.php:331 ../../include/apps.php:382 -#: ../../include/conversation.php:999 ../../include/RedDAV/RedBrowser.php:160 +#: ../../include/RedDAV/RedBrowser.php:139 +msgid "Calendar" +msgstr "Kalender" + +#: ../../include/RedDAV/RedBrowser.php:142 +msgid "Schedule Inbox" +msgstr "Posteingang für überwachte Kalender" + +#: ../../include/RedDAV/RedBrowser.php:145 +msgid "Schedule Outbox" +msgstr "Postausgang für überwachte Kalender" + +#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:331 +#: ../../include/apps.php:382 ../../include/conversation.php:1003 #: ../../mod/connedit.php:498 msgid "Unknown" msgstr "Unbekannt" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" +#: ../../include/RedDAV/RedBrowser.php:223 +#, php-format +msgid "%1$s used" +msgstr "%1$s verwendet" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 -#: ../../mod/webpages.php:136 ../../mod/layouts.php:125 -msgid "View" -msgstr "Ansicht" +#: ../../include/RedDAV/RedBrowser.php:228 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s von %2$s verwendet (%3$s%)" -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1110 -#: ../../include/ItemObject.php:606 ../../mod/webpages.php:137 -#: ../../mod/photos.php:1015 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:174 -msgid "Preview" -msgstr "Vorschau" +#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 +#: ../../include/apps.php:133 ../../include/conversation.php:1546 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Dateien" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:138 -msgid "Actions" -msgstr "Aktionen" +#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:521 +#: ../../mod/settings.php:547 ../../mod/admin.php:868 +msgid "Name" +msgstr "Name" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:139 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../include/RedDAV/RedBrowser.php:246 +msgid "Type" +msgstr "Typ" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:140 -msgid "Title" -msgstr "Titel" +#: ../../include/RedDAV/RedBrowser.php:247 +msgid "Size" +msgstr "Größe" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:141 -msgid "Created" -msgstr "Erstellt" +#: ../../include/RedDAV/RedBrowser.php:248 +msgid "Last Modified" +msgstr "Zuletzt geändert" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:142 -msgid "Edited" -msgstr "Geändert" +#: ../../include/RedDAV/RedBrowser.php:250 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/menu.php:42 +#: ../../include/ItemObject.php:100 ../../include/apps.php:249 +#: ../../mod/settings.php:581 ../../mod/webpages.php:131 +#: ../../mod/connections.php:381 ../../mod/connections.php:394 +#: ../../mod/connections.php:413 ../../mod/menu.php:59 ../../mod/thing.php:233 +#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 +#: ../../mod/blocks.php:99 ../../mod/layouts.php:121 +#: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 +msgid "Edit" +msgstr "Bearbeiten" -#: ../../include/security.php:320 -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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/ItemObject.php:120 +#: ../../include/apps.php:250 ../../include/conversation.php:638 +#: ../../mod/settings.php:582 ../../mod/admin.php:732 ../../mod/admin.php:863 +#: ../../mod/photos.php:1064 ../../mod/connedit.php:462 +#: ../../mod/thing.php:234 ../../mod/group.php:176 +msgid "Delete" +msgstr "Löschen" -#: ../../include/widgets.php:29 ../../include/contact_widgets.php:93 -msgid "Categories" -msgstr "Kategorien" +#: ../../include/RedDAV/RedBrowser.php:252 +msgid "Total" +msgstr "Summe" -#: ../../include/widgets.php:86 ../../include/nav.php:172 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Apps" +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Create new folder" +msgstr "Neuen Ordner anlegen" -#: ../../include/widgets.php:87 -msgid "System" -msgstr "System" +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/new_channel.php:122 +#: ../../mod/mitem.php:142 ../../mod/menu.php:84 +msgid "Create" +msgstr "Erstelle" -#: ../../include/widgets.php:89 ../../include/conversation.php:1445 -msgid "Personal" -msgstr "Persönlich" +#: ../../include/RedDAV/RedBrowser.php:306 +msgid "Upload file" +msgstr "Datei hochladen" -#: ../../include/widgets.php:90 -msgid "Create Personal App" -msgstr "Persönliche App erstellen" +#: ../../include/RedDAV/RedBrowser.php:307 ../../mod/photos.php:745 +#: ../../mod/photos.php:1226 ../../mod/profile_photo.php:361 +msgid "Upload" +msgstr "Hochladen" -#: ../../include/widgets.php:91 -msgid "Edit Personal App" -msgstr "Persönliche App bearbeiten" +#: ../../include/photos.php:15 ../../include/items.php:3994 +#: ../../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:584 ../../include/chat.php:116 +#: ../../mod/settings.php:496 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/webpages.php:40 +#: ../../mod/authtest.php:13 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/connections.php:169 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/photos.php:68 +#: ../../mod/photos.php:526 ../../mod/mitem.php:73 ../../mod/regmod.php:17 +#: ../../mod/mood.php:112 ../../mod/pdledit.php:21 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/menu.php:44 ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/suggest.php:26 ../../mod/connedit.php:254 +#: ../../mod/message.php:16 ../../mod/setup.php:203 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/thing.php:247 ../../mod/thing.php:264 +#: ../../mod/thing.php:299 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/register.php:70 +#: ../../mod/network.php:12 ../../mod/delegate.php:6 ../../mod/fsuggest.php:78 +#: ../../mod/manage.php:6 ../../mod/editpost.php:13 +#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 +#: ../../mod/poke.php:128 ../../mod/blocks.php:29 ../../mod/blocks.php:44 +#: ../../mod/group.php:9 ../../mod/service_limits.php:7 ../../mod/item.php:182 +#: ../../mod/item.php:190 ../../mod/item.php:929 ../../mod/appman.php:66 +#: ../../mod/sources.php:66 ../../mod/page.php:30 ../../mod/page.php:80 +#: ../../mod/mail.php:111 ../../mod/channel.php:89 ../../mod/channel.php:193 +#: ../../mod/channel.php:236 ../../mod/profiles.php:179 +#: ../../mod/profiles.php:560 ../../mod/bookmarks.php:46 +#: ../../mod/common.php:35 ../../mod/like.php:154 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/events.php:200 ../../mod/notifications.php:66 +#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 +#: ../../mod/editblock.php:34 ../../mod/viewsrc.php:14 +#: ../../mod/achievements.php:30 ../../mod/editlayout.php:48 +#: ../../index.php:190 ../../index.php:365 +msgid "Permission denied." +msgstr "Zugang verweigert" -#: ../../include/widgets.php:135 ../../include/widgets.php:175 -#: ../../include/conversation.php:944 ../../include/identity.php:831 -#: ../../include/Contact.php:107 ../../mod/directory.php:183 -#: ../../mod/dirprofile.php:164 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 -msgid "Connect" -msgstr "Verbinden" +#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:680 +#: ../../mod/photos.php:91 ../../mod/photos.php:657 ../../mod/photos.php:679 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:423 +msgid "Profile Photos" +msgstr "Profilfotos" -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" +#: ../../include/photos.php:104 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Vorschläge" +#: ../../include/photos.php:111 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Mehr anzeigen …" +#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 +msgid "Unable to process image" +msgstr "Kann Bild nicht verarbeiten" -#: ../../include/widgets.php:166 +#: ../../include/photos.php:212 +msgid "Photo storage failed." +msgstr "Foto speichern schlug fehl" + +#: ../../include/photos.php:340 ../../include/conversation.php:1540 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/photos.php:344 +msgid "Upload New Photos" +msgstr "Lade neue Fotos hoch" + +#: ../../include/contact_widgets.php:14 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 +msgid "Advanced" +msgstr "Fortgeschritten" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse des Kanals eingeben" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Finde Kanäle" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" -#: ../../include/widgets.php:191 -msgid "Notes" -msgstr "Notizen" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" -#: ../../include/widgets.php:193 ../../include/text.php:823 -#: ../../include/text.php:835 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1341 ../../mod/admin.php:1362 -msgid "Save" -msgstr "Speichern" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" -#: ../../include/widgets.php:263 -msgid "Remove term" -msgstr "Eintrag löschen" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 +#: ../../mod/directory.php:222 ../../mod/directory.php:227 +msgid "Find" +msgstr "Finde" -#: ../../include/widgets.php:272 ../../include/features.php:58 -msgid "Saved Searches" -msgstr "Gesicherte Suchanfragen" +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "Kanal-Vorschläge" -#: ../../include/widgets.php:273 ../../include/group.php:302 -msgid "add" -msgstr "hinzufügen" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Zufallsprofil" -#: ../../include/widgets.php:303 ../../include/contact_widgets.php:58 -#: ../../include/features.php:72 +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Lade Freunde ein" + +#: ../../include/contact_widgets.php:32 +msgid "Exammple: name=fred and country=iceland" +msgstr "Beispiel: name=fred and country=deutschland" + +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" +msgstr "Erweiterte Suche" + +#: ../../include/contact_widgets.php:58 ../../include/features.php:72 +#: ../../include/widgets.php:303 msgid "Saved Folders" -msgstr "Gesicherte Ordner" +msgstr "Gespeicherte Ordner" -#: ../../include/widgets.php:306 ../../include/contact_widgets.php:61 -#: ../../include/contact_widgets.php:96 +#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96 +#: ../../include/widgets.php:306 msgid "Everything" msgstr "Alles" -#: ../../include/widgets.php:342 -msgid "Archives" -msgstr "Archive" - -#: ../../include/widgets.php:404 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:405 ../../mod/connedit.php:492 -msgid "Me" -msgstr "Ich" - -#: ../../include/widgets.php:406 ../../mod/connedit.php:494 -msgid "Best Friends" -msgstr "Beste Freunde" - -#: ../../include/widgets.php:407 ../../include/identity.php:380 -#: ../../include/identity.php:381 ../../include/identity.php:388 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:495 -msgid "Friends" -msgstr "Freunde" - -#: ../../include/widgets.php:408 -msgid "Co-workers" -msgstr "Kollegen" - -#: ../../include/widgets.php:409 ../../mod/connedit.php:496 -msgid "Former Friends" -msgstr "ehem. Freunde" - -#: ../../include/widgets.php:410 ../../mod/connedit.php:497 -msgid "Acquaintances" -msgstr "Bekannte" - -#: ../../include/widgets.php:411 -msgid "Everybody" -msgstr "Jeder" - -#: ../../include/widgets.php:443 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../include/widgets.php:449 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../include/widgets.php:455 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:461 -msgid "Feature settings" -msgstr "Funktions-Einstellungen" - -#: ../../include/widgets.php:467 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" - -#: ../../include/widgets.php:473 -msgid "Connected apps" -msgstr "Verbundene Apps" - -#: ../../include/widgets.php:479 -msgid "Export channel" -msgstr "Kanal exportieren" - -#: ../../include/widgets.php:485 -msgid "Export content" -msgstr "Kanal-Inhalte exportieren" - -#: ../../include/widgets.php:491 -msgid "Automatic Permissions (Advanced)" -msgstr "Automatische Berechtigungen (Erweitert)" - -#: ../../include/widgets.php:501 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../include/widgets.php:510 ../../include/features.php:49 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanal-Quellen" - -#: ../../include/widgets.php:535 ../../mod/mail.php:124 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../include/widgets.php:540 -msgid "Check Mail" -msgstr "E-Mails abrufen" - -#: ../../include/widgets.php:545 ../../include/nav.php:210 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/widgets.php:621 -msgid "Chat Rooms" -msgstr "Chaträume" - -#: ../../include/widgets.php:639 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:657 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/zot.php:654 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" - -#: ../../include/zot.php:670 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" - -#: ../../include/zot.php:1741 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29 +msgid "Categories" +msgstr "Kategorien" -#: ../../include/photos.php:104 +#: ../../include/contact_widgets.php:126 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" - -#: ../../include/photos.php:111 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" - -#: ../../include/photos.php:212 -msgid "Photo storage failed." -msgstr "Foto speichern schlug fehl" - -#: ../../include/photos.php:340 ../../include/conversation.php:1536 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../include/photos.php:344 -msgid "Upload New Photos" -msgstr "Lade neue Fotos hoch" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Zeigen" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Nicht zeigen" - -#: ../../include/acl_selectors.php:248 ../../mod/chat.php:209 -#: ../../mod/photos.php:604 ../../mod/photos.php:970 -#: ../../mod/filestorage.php:128 -msgid "Permissions" -msgstr "Berechtigungen" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:303 -msgid "Close" -msgstr "Schließen" +#: ../../include/contact_widgets.php:131 +msgid "show more" +msgstr "mehr zeigen" #: ../../include/activities.php:39 msgid " and " @@ -671,1234 +548,1108 @@ msgstr "Besuche %1$s's %2$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." -#: ../../include/api.php:1069 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" +#: ../../include/items.php:375 ../../mod/subthread.php:49 +#: ../../mod/profperm.php:23 ../../mod/group.php:68 ../../mod/like.php:242 +#: ../../index.php:364 +msgid "Permission denied" +msgstr "Keine Berechtigung" -#: ../../include/attach.php:224 ../../include/attach.php:278 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." +#: ../../include/items.php:962 ../../include/items.php:1007 +msgid "(Unknown)" +msgstr "(Unbekannt)" -#: ../../include/attach.php:335 -msgid "No source file." -msgstr "Keine Quelldatei." +#: ../../include/items.php:1163 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." -#: ../../include/attach.php:352 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" +#: ../../include/items.php:1165 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." -#: ../../include/attach.php:370 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" +#: ../../include/items.php:1167 +msgid "Visible to anybody in this network." +msgstr "Für jedes Mitglied der RedMatrix sichtbar." -#: ../../include/attach.php:381 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" +#: ../../include/items.php:1169 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/attach.php:393 +#: ../../include/items.php:1171 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." - -#: ../../include/attach.php:475 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." -#: ../../include/attach.php:487 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." +#: ../../include/items.php:1173 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." -#: ../../include/attach.php:528 ../../include/attach.php:545 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." +#: ../../include/items.php:1175 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/attach.php:590 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" +#: ../../include/items.php:1177 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/attach.php:606 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" +#: ../../include/items.php:3927 ../../mod/filestorage.php:26 +#: ../../mod/admin.php:168 ../../mod/admin.php:898 ../../mod/admin.php:1101 +#: ../../mod/thing.php:76 ../../mod/display.php:32 ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Element nicht gefunden." -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "Pfad nicht gefunden." +#: ../../include/items.php:4365 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Sammlung nicht gefunden" -#: ../../include/attach.php:681 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." +#: ../../include/items.php:4380 +msgid "Collection is empty." +msgstr "Sammlung ist leer." -#: ../../include/attach.php:685 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." +#: ../../include/items.php:4387 +#, php-format +msgid "Collection: %s" +msgstr "Sammlung: %s" -#: ../../include/conversation.php:120 ../../include/text.php:1743 -#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:294 -msgid "photo" -msgstr "Foto" +#: ../../include/items.php:4398 +#, php-format +msgid "Connection: %s" +msgstr "Verbindung: %s" -#: ../../include/conversation.php:123 ../../include/text.php:1746 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "Ereignis" +#: ../../include/items.php:4401 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/conversation.php:126 ../../mod/like.php:89 -msgid "channel" -msgstr "Kanal" +#: ../../include/Contact.php:107 ../../include/identity.php:832 +#: ../../include/conversation.php:948 ../../include/widgets.php:135 +#: ../../include/widgets.php:175 ../../mod/dirprofile.php:164 +#: ../../mod/suggest.php:51 ../../mod/directory.php:183 ../../mod/match.php:62 +msgid "Connect" +msgstr "Verbinden" -#: ../../include/conversation.php:148 ../../include/text.php:1749 -#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:294 -msgid "status" -msgstr "Status" +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Neues Fenster" -#: ../../include/conversation.php:150 ../../include/text.php:1751 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "Kommentar" +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1953 -#: ../../mod/like.php:331 +#: ../../include/Contact.php:211 ../../mod/admin.php:649 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" -#: ../../include/conversation.php:167 ../../mod/like.php:333 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s nicht" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" +#: ../../include/datetime.php:152 ../../include/datetime.php:284 +msgid "year" +msgstr "Jahr" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" +#: ../../include/datetime.php:157 ../../include/datetime.php:285 +msgid "month" +msgstr "Monat" -#: ../../include/conversation.php:243 ../../include/text.php:901 -msgid "poked" -msgstr "stupste" +#: ../../include/datetime.php:162 ../../include/datetime.php:287 +msgid "day" +msgstr "Tag" -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" +#: ../../include/datetime.php:275 +msgid "never" +msgstr "Nie" -#: ../../include/conversation.php:637 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "Auswählen" +#: ../../include/datetime.php:281 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" -#: ../../include/conversation.php:645 ../../include/ItemObject.php:89 -#: ../../mod/photos.php:862 -msgid "Private Message" -msgstr "Private Nachricht" +#: ../../include/datetime.php:284 +msgid "years" +msgstr "Jahre" -#: ../../include/conversation.php:652 ../../include/ItemObject.php:194 -msgid "Message is verified" -msgstr "Nachricht überprüft" +#: ../../include/datetime.php:285 +msgid "months" +msgstr "Monate" -#: ../../include/conversation.php:671 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" +#: ../../include/datetime.php:286 +msgid "week" +msgstr "Woche" -#: ../../include/conversation.php:685 -msgid "Categories:" -msgstr "Kategorien:" +#: ../../include/datetime.php:286 +msgid "weeks" +msgstr "Wochen" -#: ../../include/conversation.php:686 -msgid "Filed under:" -msgstr "Gespeichert unter:" +#: ../../include/datetime.php:287 +msgid "days" +msgstr "Tage" + +#: ../../include/datetime.php:288 +msgid "hour" +msgstr "Stunde" + +#: ../../include/datetime.php:288 +msgid "hours" +msgstr "Stunden" + +#: ../../include/datetime.php:289 +msgid "minute" +msgstr "Minute" + +#: ../../include/datetime.php:289 +msgid "minutes" +msgstr "Minuten" + +#: ../../include/datetime.php:290 +msgid "second" +msgstr "Sekunde" + +#: ../../include/datetime.php:290 +msgid "seconds" +msgstr "Sekunden" -#: ../../include/conversation.php:694 ../../include/ItemObject.php:264 +#: ../../include/datetime.php:299 #, php-format -msgid " from %s" -msgstr "von %s" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" -#: ../../include/conversation.php:697 ../../include/ItemObject.php:267 +#: ../../include/datetime.php:504 #, php-format -msgid "last edited: %s" -msgstr "zuletzt bearbeitet: %s" +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" -#: ../../include/conversation.php:698 ../../include/ItemObject.php:268 +#: ../../include/datetime.php:505 #, php-format -msgid "Expires: %s" -msgstr "Verfällt: %s" +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../include/conversation.php:713 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" +#: ../../include/identity.php:31 ../../mod/item.php:1319 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/conversation.php:715 ../../include/conversation.php:1149 -#: ../../include/ItemObject.php:308 ../../mod/photos.php:995 -#: ../../mod/editblock.php:120 ../../mod/editlayout.php:115 -#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 -#: ../../mod/mail.php:234 ../../mod/mail.php:349 -msgid "Please wait" -msgstr "Bitte warten" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Namensfeld leer" -#: ../../include/conversation.php:839 -msgid "remove" -msgstr "lösche" +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "Name ist zu lang" -#: ../../include/conversation.php:843 ../../include/nav.php:258 -msgid "Loading..." -msgstr "Lädt ..." +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Keine Account-Kennung" -#: ../../include/conversation.php:844 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" +#: ../../include/identity.php:181 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." -#: ../../include/conversation.php:938 -msgid "View Source" -msgstr "Quelle anzeigen" +#: ../../include/identity.php:195 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." -#: ../../include/conversation.php:939 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" +#: ../../include/identity.php:200 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." -#: ../../include/conversation.php:940 -msgid "View Status" -msgstr "Status ansehen" +#: ../../include/identity.php:282 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" -#: ../../include/conversation.php:941 ../../include/nav.php:98 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:529 -msgid "View Profile" -msgstr "Profil ansehen" +#: ../../include/identity.php:342 +msgid "Default Profile" +msgstr "Standard-Profil" -#: ../../include/conversation.php:942 -msgid "View Photos" -msgstr "Fotos ansehen" +#: ../../include/identity.php:381 ../../include/identity.php:382 +#: ../../include/identity.php:389 ../../include/profile_selectors.php:80 +#: ../../include/widgets.php:407 ../../mod/connedit.php:495 +msgid "Friends" +msgstr "Freunde" -#: ../../include/conversation.php:943 -msgid "Matrix Activity" -msgstr "Matrix-Aktivität" +#: ../../include/identity.php:635 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../include/conversation.php:945 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" +#: ../../include/identity.php:683 ../../mod/filestorage.php:48 +#: ../../mod/webpages.php:8 ../../mod/profile.php:16 ../../mod/hcard.php:8 +#: ../../mod/connect.php:13 ../../mod/blocks.php:10 ../../mod/layouts.php:8 +#: ../../mod/achievements.php:11 +msgid "Requested profile is not available." +msgstr "Erwünschte Profil ist nicht verfügbar." -#: ../../include/conversation.php:946 -msgid "Send PM" -msgstr "Sende PN" +#: ../../include/identity.php:846 ../../mod/profiles.php:750 +msgid "Change profile photo" +msgstr "Profilfoto ändern" -#: ../../include/conversation.php:1020 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." +#: ../../include/identity.php:852 +msgid "Profiles" +msgstr "Profile" -#: ../../include/conversation.php:1020 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." +#: ../../include/identity.php:852 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/bearbeiten" -#: ../../include/conversation.php:1024 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d Person gefällt das." -msgstr[1] "%2$d Leuten gefällt das." +#: ../../include/identity.php:853 ../../mod/profiles.php:751 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" -#: ../../include/conversation.php:1026 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d Person gefällt das nicht." -msgstr[1] "%2$d Leuten gefällt das nicht." +#: ../../include/identity.php:856 ../../include/nav.php:103 +msgid "Edit Profile" +msgstr "Profile bearbeiten" -#: ../../include/conversation.php:1032 -msgid "and" -msgstr "und" +#: ../../include/identity.php:867 ../../mod/profiles.php:762 +msgid "Profile Image" +msgstr "Profilfoto:" -#: ../../include/conversation.php:1035 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", und %d andere" +#: ../../include/identity.php:870 +msgid "visible to everybody" +msgstr "sichtbar für jeden" -#: ../../include/conversation.php:1036 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." +#: ../../include/identity.php:871 ../../mod/profiles.php:645 +#: ../../mod/profiles.php:766 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" -#: ../../include/conversation.php:1036 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." +#: ../../include/identity.php:883 ../../include/event.php:40 +#: ../../include/bb2diaspora.php:461 ../../mod/dirprofile.php:105 +#: ../../mod/directory.php:156 ../../mod/events.php:579 +msgid "Location:" +msgstr "Ort:" -#: ../../include/conversation.php:1093 -msgid "Visible to everybody" -msgstr "Sichtbar für jeden" +#: ../../include/identity.php:885 ../../include/identity.php:1122 +#: ../../mod/directory.php:158 +msgid "Gender:" +msgstr "Geschlecht:" -#: ../../include/conversation.php:1094 ../../mod/mail.php:170 -#: ../../mod/mail.php:282 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" +#: ../../include/identity.php:886 ../../include/identity.php:1166 +#: ../../mod/directory.php:160 +msgid "Status:" +msgstr "Status:" -#: ../../include/conversation.php:1095 -msgid "Please enter a video link/URL:" -msgstr "Gib einen Video-Link/URL ein:" +#: ../../include/identity.php:887 ../../include/identity.php:1177 +#: ../../mod/directory.php:162 +msgid "Homepage:" +msgstr "Homepage:" -#: ../../include/conversation.php:1096 -msgid "Please enter an audio link/URL:" -msgstr "Gib einen Audio-Link/URL ein:" +#: ../../include/identity.php:888 ../../mod/dirprofile.php:151 +msgid "Online Now" +msgstr "gerade online" -#: ../../include/conversation.php:1097 -msgid "Tag term:" -msgstr "Schlagwort:" +#: ../../include/identity.php:966 ../../include/identity.php:1046 +#: ../../mod/ping.php:298 +msgid "g A l F d" +msgstr "l, d. F G \\\\U\\\\h\\\\r" -#: ../../include/conversation.php:1098 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" +#: ../../include/identity.php:967 ../../include/identity.php:1047 +msgid "F d" +msgstr "d. F" -#: ../../include/conversation.php:1099 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" - -#: ../../include/conversation.php:1100 ../../mod/editpost.php:52 -#: ../../mod/mail.php:171 ../../mod/mail.php:283 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" +#: ../../include/identity.php:1012 ../../include/identity.php:1087 +#: ../../mod/ping.php:320 +msgid "[today]" +msgstr "[Heute]" -#: ../../include/conversation.php:1124 ../../mod/photos.php:994 -#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 -msgid "Share" -msgstr "Teilen" +#: ../../include/identity.php:1024 +msgid "Birthday Reminders" +msgstr "Geburtstags Erinnerungen" -#: ../../include/conversation.php:1126 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "Seitentitel-Link" +#: ../../include/identity.php:1025 +msgid "Birthdays this week:" +msgstr "Geburtstage in dieser Woche:" -#: ../../include/conversation.php:1129 -msgid "Post as" -msgstr "Posten als" +#: ../../include/identity.php:1080 +msgid "[No description]" +msgstr "[Keine Beschreibung]" -#: ../../include/conversation.php:1130 ../../mod/editblock.php:112 -#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Upload photo" -msgstr "Foto hochladen" +#: ../../include/identity.php:1098 +msgid "Event Reminders" +msgstr "Veranstaltungs- Erinnerungen" -#: ../../include/conversation.php:1131 -msgid "upload photo" -msgstr "Foto hochladen" +#: ../../include/identity.php:1099 +msgid "Events this week:" +msgstr "Veranstaltungen in dieser Woche:" -#: ../../include/conversation.php:1132 ../../mod/editblock.php:113 -#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:232 ../../mod/mail.php:346 -msgid "Attach file" -msgstr "Datei anhängen" +#: ../../include/identity.php:1112 ../../include/identity.php:1230 +#: ../../include/apps.php:136 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" -#: ../../include/conversation.php:1133 -msgid "attach file" -msgstr "Datei anfügen" +#: ../../include/identity.php:1120 ../../mod/settings.php:953 +msgid "Full Name:" +msgstr "Voller Name:" -#: ../../include/conversation.php:1134 ../../mod/editblock.php:114 -#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:233 ../../mod/mail.php:347 -msgid "Insert web link" -msgstr "Link einfügen" +#: ../../include/identity.php:1127 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" -#: ../../include/conversation.php:1135 -msgid "web link" -msgstr "Web-Link" +#: ../../include/identity.php:1138 ../../include/taxonomy.php:338 +#: ../../include/ItemObject.php:146 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" -#: ../../include/conversation.php:1136 -msgid "Insert video link" -msgstr "Video-Link einfügen" +#: ../../include/identity.php:1151 +msgid "j F, Y" +msgstr "j. F Y" -#: ../../include/conversation.php:1137 -msgid "video link" -msgstr "Video-Link" +#: ../../include/identity.php:1152 +msgid "j F" +msgstr "j. F" -#: ../../include/conversation.php:1138 -msgid "Insert audio link" -msgstr "Audio-Link einfügen" +#: ../../include/identity.php:1159 +msgid "Birthday:" +msgstr "Geburtstag:" -#: ../../include/conversation.php:1139 -msgid "audio link" -msgstr "Audio-Link" +#: ../../include/identity.php:1163 +msgid "Age:" +msgstr "Alter:" -#: ../../include/conversation.php:1140 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" -msgstr "Standort" +#: ../../include/identity.php:1172 +#, php-format +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" -#: ../../include/conversation.php:1141 -msgid "set location" -msgstr "Standort" +#: ../../include/identity.php:1175 ../../mod/profiles.php:667 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" -#: ../../include/conversation.php:1142 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" -msgstr "Browser-Standort löschen" +#: ../../include/identity.php:1179 ../../mod/profiles.php:669 +msgid "Hometown:" +msgstr "Heimatstadt:" -#: ../../include/conversation.php:1143 -msgid "clear location" -msgstr "Standort löschen" +#: ../../include/identity.php:1181 +msgid "Tags:" +msgstr "Schlagworte:" -#: ../../include/conversation.php:1145 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 -msgid "Set title" -msgstr "Titel" +#: ../../include/identity.php:1183 ../../mod/profiles.php:670 +msgid "Political Views:" +msgstr "Politische Ansichten:" -#: ../../include/conversation.php:1148 ../../mod/editblock.php:135 -#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 ../../mod/events.php:560 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" +#: ../../include/identity.php:1185 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/conversation.php:1150 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" +#: ../../include/identity.php:1187 ../../mod/directory.php:164 +msgid "About:" +msgstr "Über:" -#: ../../include/conversation.php:1151 -msgid "permissions" -msgstr "Berechtigungen" +#: ../../include/identity.php:1189 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" -#: ../../include/conversation.php:1158 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 -msgid "Public post" -msgstr "Öffentlicher Beitrag" +#: ../../include/identity.php:1191 ../../mod/profiles.php:673 +msgid "Likes:" +msgstr "Gefällt:" -#: ../../include/conversation.php:1160 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Beispiel: bob@example.com, mary@example.com" +#: ../../include/identity.php:1193 ../../mod/profiles.php:674 +msgid "Dislikes:" +msgstr "Gefällt nicht:" -#: ../../include/conversation.php:1173 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:179 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Set expiration date" -msgstr "Verfallsdatum" +#: ../../include/identity.php:1196 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/conversation.php:1175 ../../include/ItemObject.php:609 -#: ../../mod/editpost.php:148 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Encrypt text" -msgstr "Text verschlüsseln" +#: ../../include/identity.php:1198 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" -#: ../../include/conversation.php:1177 ../../mod/editpost.php:150 -#: ../../mod/events.php:567 -msgid "OK" -msgstr "Ok" +#: ../../include/identity.php:1200 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" -#: ../../include/conversation.php:1178 ../../mod/settings.php:520 -#: ../../mod/settings.php:546 ../../mod/editpost.php:151 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 -#: ../../mod/events.php:566 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -msgid "Cancel" -msgstr "Abbrechen" +#: ../../include/identity.php:1202 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" -#: ../../include/conversation.php:1422 -msgid "Discover" -msgstr "Entdecken" +#: ../../include/identity.php:1204 +msgid "Television:" +msgstr "Fernsehen:" -#: ../../include/conversation.php:1425 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" +#: ../../include/identity.php:1206 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/conversation.php:1430 -msgid "Commented Order" -msgstr "Neueste Kommentare" +#: ../../include/identity.php:1208 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" -#: ../../include/conversation.php:1433 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" +#: ../../include/identity.php:1210 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" -#: ../../include/conversation.php:1437 -msgid "Posted Order" -msgstr "Neueste Beiträge" +#: ../../include/identity.php:1212 +msgid "School/education:" +msgstr "Schule/Ausbildung:" -#: ../../include/conversation.php:1440 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" +#: ../../include/identity.php:1232 +msgid "Like this thing" +msgstr "Gefällt mir" -#: ../../include/conversation.php:1448 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Neue Seite" -#: ../../include/conversation.php:1454 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 -msgid "New" -msgstr "Neu" +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:134 +#: ../../mod/blocks.php:102 ../../mod/layouts.php:125 +msgid "View" +msgstr "Ansicht" -#: ../../include/conversation.php:1457 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:608 +#: ../../include/conversation.php:1114 ../../mod/webpages.php:135 +#: ../../mod/photos.php:1015 ../../mod/editpost.php:140 +#: ../../mod/editwebpage.php:174 ../../mod/editblock.php:141 +#: ../../mod/editlayout.php:135 +msgid "Preview" +msgstr "Vorschau" -#: ../../include/conversation.php:1463 -msgid "Starred" -msgstr "Markiert" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 +msgid "Actions" +msgstr "Aktionen" -#: ../../include/conversation.php:1466 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../include/conversation.php:1473 -msgid "Spam" -msgstr "Spam" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 +msgid "Title" +msgstr "Titel" -#: ../../include/conversation.php:1476 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 +msgid "Created" +msgstr "Erstellt" -#: ../../include/conversation.php:1512 ../../mod/admin.php:867 -msgid "Channel" -msgstr "Kanal" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 +msgid "Edited" +msgstr "Geändert" -#: ../../include/conversation.php:1515 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" -#: ../../include/conversation.php:1524 -msgid "About" -msgstr "Über" +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[no subject]" -#: ../../include/conversation.php:1527 -msgid "Profile Details" -msgstr "Profil-Details" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." -#: ../../include/conversation.php:1545 -msgid "Files and Storage" -msgstr "Dateien und Speicher" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." -#: ../../include/conversation.php:1554 ../../include/conversation.php:1557 -msgid "Chatrooms" -msgstr "Chaträume" +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Schlagwörter" -#: ../../include/conversation.php:1569 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" +#: ../../include/taxonomy.php:227 +msgid "Keywords" +msgstr "Schlüsselwörter" -#: ../../include/conversation.php:1580 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" +#: ../../include/taxonomy.php:252 +msgid "have" +msgstr "habe" -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "Ausgeloggt." +#: ../../include/taxonomy.php:252 +msgid "has" +msgstr "hat" -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" +#: ../../include/taxonomy.php:253 +msgid "want" +msgstr "will" -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Login fehlgeschlagen." +#: ../../include/taxonomy.php:253 +msgid "wants" +msgstr "will" -#: ../../include/text.php:321 -msgid "prev" -msgstr "vorherige" +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:221 +msgid "like" +msgstr "mag" -#: ../../include/text.php:323 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:352 -msgid "last" -msgstr "letzte" +#: ../../include/taxonomy.php:254 +msgid "likes" +msgstr "gefällt" -#: ../../include/text.php:355 -msgid "next" -msgstr "nächste" +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "verurteile" -#: ../../include/text.php:367 -msgid "older" -msgstr "älter" +#: ../../include/taxonomy.php:255 +msgid "dislikes" +msgstr "missfällt" -#: ../../include/text.php:369 -msgid "newer" -msgstr "neuer" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dieses Element löschen?" -#: ../../include/text.php:736 -msgid "No connections" -msgstr "Keine Verbindungen" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 +#: ../../mod/photos.php:1013 ../../mod/photos.php:1100 +msgid "Comment" +msgstr "Kommentar" -#: ../../include/text.php:749 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Verbindung" -msgstr[1] "%d Verbindungen" +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:332 +msgid "[+] show all" +msgstr "[+] Zeige alle" -#: ../../include/text.php:762 -msgid "View Connections" -msgstr "Verbindungen anzeigen" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] zeige weniger" -#: ../../include/text.php:901 -msgid "poke" -msgstr "anstupsen" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] aufklappen" -#: ../../include/text.php:902 -msgid "ping" -msgstr "anpingen" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] einklappen" -#: ../../include/text.php:902 -msgid "pinged" -msgstr "pingte" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Kennwort zu kurz" -#: ../../include/text.php:903 -msgid "prod" -msgstr "knuffen" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Kennwörter stimmen nicht überein" -#: ../../include/text.php:903 -msgid "prodded" -msgstr "knuffte" +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" +msgstr "alle" -#: ../../include/text.php:904 -msgid "slap" -msgstr "ohrfeigen" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "geheime Passphrase" -#: ../../include/text.php:904 -msgid "slapped" -msgstr "ohrfeigte" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Hinweis zur Passphrase" -#: ../../include/text.php:905 -msgid "finger" -msgstr "befummeln" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." -#: ../../include/text.php:905 -msgid "fingered" -msgstr "befummelte" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alle schließen" -#: ../../include/text.php:906 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nichts Neues hier" -#: ../../include/text.php:906 -msgid "rebuffed" -msgstr "zurückgewiesen" +#: ../../include/js_strings.php:20 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/text.php:915 -msgid "happy" -msgstr "glücklich" +#: ../../include/js_strings.php:21 +msgid "timeago.prefixFromNow" +msgstr " " -#: ../../include/text.php:916 -msgid "sad" -msgstr "traurig" +#: ../../include/js_strings.php:22 +msgid "ago" +msgstr "her" -#: ../../include/text.php:917 -msgid "mellow" -msgstr "sanft" +#: ../../include/js_strings.php:23 +msgid "from now" +msgstr "von jetzt" -#: ../../include/text.php:918 -msgid "tired" -msgstr "müde" +#: ../../include/js_strings.php:24 +msgid "less than a minute" +msgstr "weniger als eine Minute" -#: ../../include/text.php:919 -msgid "perky" -msgstr "frech" +#: ../../include/js_strings.php:25 +msgid "about a minute" +msgstr "ungefähr eine Minute" -#: ../../include/text.php:920 -msgid "angry" -msgstr "sauer" +#: ../../include/js_strings.php:26 +#, php-format +msgid "%d minutes" +msgstr "%d Minuten" -#: ../../include/text.php:921 -msgid "stupified" -msgstr "verblüfft" +#: ../../include/js_strings.php:27 +msgid "about an hour" +msgstr "ungefähr eine Stunde" -#: ../../include/text.php:922 -msgid "puzzled" -msgstr "verwirrt" +#: ../../include/js_strings.php:28 +#, php-format +msgid "about %d hours" +msgstr "ungefähr %d Stunden" -#: ../../include/text.php:923 -msgid "interested" -msgstr "interessiert" +#: ../../include/js_strings.php:29 +msgid "a day" +msgstr "ein Tag" -#: ../../include/text.php:924 -msgid "bitter" -msgstr "verbittert" +#: ../../include/js_strings.php:30 +#, php-format +msgid "%d days" +msgstr "%d Tage" -#: ../../include/text.php:925 -msgid "cheerful" -msgstr "fröhlich" +#: ../../include/js_strings.php:31 +msgid "about a month" +msgstr "ungefähr ein Monat" -#: ../../include/text.php:926 -msgid "alive" -msgstr "lebendig" +#: ../../include/js_strings.php:32 +#, php-format +msgid "%d months" +msgstr "%d Monate" -#: ../../include/text.php:927 -msgid "annoyed" -msgstr "verärgert" +#: ../../include/js_strings.php:33 +msgid "about a year" +msgstr "ungefähr ein Jahr" -#: ../../include/text.php:928 -msgid "anxious" -msgstr "unruhig" +#: ../../include/js_strings.php:34 +#, php-format +msgid "%d years" +msgstr "%d Jahre" -#: ../../include/text.php:929 -msgid "cranky" -msgstr "schrullig" +#: ../../include/js_strings.php:35 +msgid " " +msgstr " " -#: ../../include/text.php:930 -msgid "disturbed" -msgstr "verstört" +#: ../../include/js_strings.php:36 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/text.php:931 -msgid "frustrated" -msgstr "frustriert" +#: ../../include/permissions.php:13 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" -#: ../../include/text.php:932 -msgid "depressed" -msgstr "deprimiert" +#: ../../include/permissions.php:14 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" -#: ../../include/text.php:933 -msgid "motivated" -msgstr "motiviert" +#: ../../include/permissions.php:15 +msgid "Can view my photo albums" +msgstr "Kann meine Fotoalben betrachten" -#: ../../include/text.php:934 -msgid "relaxed" -msgstr "entspannt" +#: ../../include/permissions.php:16 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" -#: ../../include/text.php:935 -msgid "surprised" -msgstr "überrascht" +#: ../../include/permissions.php:17 +msgid "Can view my file storage" +msgstr "Kann meine Dateiordner lesen" -#: ../../include/text.php:1099 -msgid "Monday" -msgstr "Montag" +#: ../../include/permissions.php:18 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" -#: ../../include/text.php:1099 -msgid "Tuesday" -msgstr "Dienstag" +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" -#: ../../include/text.php:1099 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1099 -msgid "Thursday" -msgstr "Donnerstag" +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" -#: ../../include/text.php:1099 -msgid "Friday" -msgstr "Freitag" +#: ../../include/permissions.php:23 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" -#: ../../include/text.php:1099 -msgid "Saturday" -msgstr "Samstag" +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" -#: ../../include/text.php:1099 -msgid "Sunday" -msgstr "Sonntag" +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" +msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" -#: ../../include/text.php:1103 -msgid "January" -msgstr "Januar" +#: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" -#: ../../include/text.php:1103 -msgid "February" -msgstr "Februar" +#: ../../include/permissions.php:26 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" -#: ../../include/text.php:1103 -msgid "March" -msgstr "März" +#: ../../include/permissions.php:28 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" -#: ../../include/text.php:1103 -msgid "April" -msgstr "April" +#: ../../include/permissions.php:28 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" -#: ../../include/text.php:1103 -msgid "May" -msgstr "Mai" +#: ../../include/permissions.php:29 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" -#: ../../include/text.php:1103 -msgid "June" -msgstr "Juni" +#: ../../include/permissions.php:30 +msgid "Can write to my file storage" +msgstr "Kann in meine Dateiordner schreiben" -#: ../../include/text.php:1103 -msgid "July" -msgstr "Juli" +#: ../../include/permissions.php:31 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" -#: ../../include/text.php:1103 -msgid "August" -msgstr "August" +#: ../../include/permissions.php:33 +msgid "Can source my public posts in derived channels" +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" -#: ../../include/text.php:1103 -msgid "September" -msgstr "September" +#: ../../include/permissions.php:33 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" -#: ../../include/text.php:1103 -msgid "October" -msgstr "Oktober" +#: ../../include/permissions.php:35 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" -#: ../../include/text.php:1103 -msgid "November" -msgstr "November" +#: ../../include/permissions.php:35 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" -#: ../../include/text.php:1103 -msgid "December" -msgstr "Dezember" +#: ../../include/permissions.php:738 +msgid "Social Networking" +msgstr "Soziales Netzwerk" -#: ../../include/text.php:1181 -msgid "unknown.???" -msgstr "unbekannt.???" +#: ../../include/permissions.php:739 ../../include/permissions.php:741 +#: ../../include/permissions.php:743 ../../include/permissions.php:745 +msgid "Mostly Public" +msgstr "Weitgehend öffentlich" -#: ../../include/text.php:1182 -msgid "bytes" -msgstr "Bytes" +#: ../../include/permissions.php:739 ../../include/permissions.php:741 +#: ../../include/permissions.php:743 +msgid "Restricted" +msgstr "Beschränkt" -#: ../../include/text.php:1221 -msgid "remove category" -msgstr "Kategorie entfernen" +#: ../../include/permissions.php:739 ../../include/permissions.php:741 +msgid "Private" +msgstr "Privat" -#: ../../include/text.php:1291 -msgid "remove from file" -msgstr "aus der Datei entfernen" +#: ../../include/permissions.php:740 +msgid "Community Forum" +msgstr "Forum" -#: ../../include/text.php:1356 ../../include/text.php:1368 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" +#: ../../include/permissions.php:742 +msgid "Feed Republish" +msgstr "Teilen von Feeds" -#: ../../include/text.php:1523 ../../mod/events.php:414 -msgid "Link to Source" -msgstr "Link zur Quelle" +#: ../../include/permissions.php:744 +msgid "Celebrity/Soapbox" +msgstr "Mitteilungs-Kanal (keine Kommentare)" -#: ../../include/text.php:1542 -msgid "Select a page layout: " -msgstr "Ein Seiten-Layout auswählen:" +#: ../../include/permissions.php:746 ../../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/text.php:1545 ../../include/text.php:1610 -msgid "default" -msgstr "Standard" +#: ../../include/permissions.php:747 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" -#: ../../include/text.php:1581 -msgid "Page content type: " -msgstr "Content-Typ der Seite:" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Häufig" -#: ../../include/text.php:1622 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" -#: ../../include/text.php:1756 -msgid "activity" -msgstr "Aktivität" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" -#: ../../include/text.php:2028 -msgid "Design" -msgstr "Design" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Täglich" -#: ../../include/text.php:2030 -msgid "Blocks" -msgstr "Blöcke" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" -#: ../../include/text.php:2031 -msgid "Menus" -msgstr "Menüs" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" -#: ../../include/text.php:2032 -msgid "Layouts" -msgstr "Layouts" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/text.php:2033 -msgid "Pages" -msgstr "Seiten" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Schlagwörter" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Schlüsselwörter" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "habe" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "hat" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "will" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "will" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:220 -msgid "like" -msgstr "mag" +#: ../../include/event.php:11 ../../include/bb2diaspora.php:439 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\\\, H:i" -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "gefällt" +#: ../../include/event.php:20 ../../include/bb2diaspora.php:445 +msgid "Starts:" +msgstr "Beginnt:" -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:221 -msgid "dislike" -msgstr "verurteile" - -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "missfällt" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:453 +msgid "Finishes:" +msgstr "Endet:" -#: ../../include/taxonomy.php:338 ../../include/identity.php:1137 -#: ../../include/ItemObject.php:146 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" +#: ../../include/event.php:326 +msgid "This event has been added to your calendar." +msgstr "Dieses Ereignis wurde zu Deinem Kalender hinzugefügt" -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" +msgstr "Männlich" -#: ../../include/nav.php:94 ../../include/nav.php:126 ../../boot.php:1494 -msgid "Logout" -msgstr "Abmelden" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" +msgstr "Weiblich" -#: ../../include/nav.php:94 ../../include/nav.php:126 -msgid "End this session" -msgstr "Beende diese Sitzung" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momentan männlich" -#: ../../include/nav.php:97 ../../include/nav.php:160 -msgid "Home" -msgstr "Home" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momentan weiblich" -#: ../../include/nav.php:97 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Größtenteils männlich" -#: ../../include/nav.php:98 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Größtenteils weiblich" -#: ../../include/nav.php:100 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transsexuell" -#: ../../include/nav.php:100 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Zwischengeschlechtlich" -#: ../../include/nav.php:102 ../../include/identity.php:855 -msgid "Edit Profile" -msgstr "Profile bearbeiten" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuell" -#: ../../include/nav.php:102 -msgid "Edit your profile" -msgstr "Profil bearbeiten" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Zwitter" -#: ../../include/nav.php:104 -msgid "Your photos" -msgstr "Deine Bilder" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Geschlechtslos" -#: ../../include/nav.php:105 -msgid "Your files" -msgstr "Deine Dateien" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "unklar" -#: ../../include/nav.php:110 -msgid "Your chatrooms" -msgstr "Deine Chaträume" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Unentschieden" -#: ../../include/nav.php:116 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Männer" -#: ../../include/nav.php:120 -msgid "Your webpages" -msgstr "Deine Webseiten" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Frauen" -#: ../../include/nav.php:124 -msgid "Sign in" -msgstr "Anmelden" +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Schwul" -#: ../../include/nav.php:141 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/nav.php:146 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Keine Bevorzugung" -#: ../../include/nav.php:160 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Bisexuell" -#: ../../include/nav.php:164 ../../mod/register.php:220 ../../boot.php:1471 -msgid "Register" -msgstr "Registrieren" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autosexuell" -#: ../../include/nav.php:164 -msgid "Create an account" -msgstr "Erzeuge ein Konto" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Enthaltsam" -#: ../../include/nav.php:169 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Jungfräulich" -#: ../../include/nav.php:172 -msgid "Applications, utilities, links, games" -msgstr "Applikationen, Zubehör, Links, Spiele" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Abweichend" -#: ../../include/nav.php:174 -msgid "Search site content" -msgstr "Durchsuche Seiten-Inhalt" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetisch" -#: ../../include/nav.php:177 -msgid "Channel Locator" -msgstr "Kanal-Anzeiger" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Unmengen" -#: ../../include/nav.php:191 -msgid "Your matrix" -msgstr "Deine Matrix" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Sexlos" -#: ../../include/nav.php:192 -msgid "Mark all matrix notifications seen" -msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Single" -#: ../../include/nav.php:194 -msgid "Channel home" -msgstr "Mein Kanal" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Einsam" -#: ../../include/nav.php:195 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Verfügbar" -#: ../../include/nav.php:198 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Verbindungen" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Nicht verfügbar" -#: ../../include/nav.php:201 -msgid "Notices" -msgstr "Benachrichtigungen" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Verguckt" -#: ../../include/nav.php:201 -msgid "Notifications" -msgstr "Benachrichtigungen" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Verknallt" -#: ../../include/nav.php:202 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Lerne gerade jemanden kennen" -#: ../../include/nav.php:203 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Treulos" -#: ../../include/nav.php:205 -msgid "Private mail" -msgstr "Persönliche Mail" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Sexabhängig" -#: ../../include/nav.php:206 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Freunde/Begünstigte" -#: ../../include/nav.php:207 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Lose" -#: ../../include/nav.php:208 -msgid "Inbox" -msgstr "Eingang" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Verlobt" -#: ../../include/nav.php:209 -msgid "Outbox" -msgstr "Ausgang" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Verheiratet" -#: ../../include/nav.php:213 -msgid "Event Calendar" -msgstr "Veranstaltungskalender" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Gewissermaßen verheiratet" -#: ../../include/nav.php:214 -msgid "See all events" -msgstr "Alle Ereignisse ansehen" +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partner" -#: ../../include/nav.php:215 -msgid "Mark all events seen" -msgstr "Markiere alle Ereignisse als gesehen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Lebensgemeinschaft" -#: ../../include/nav.php:217 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Informelle Ehe" -#: ../../include/nav.php:219 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Glücklich" -#: ../../include/nav.php:227 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Admin" - -#: ../../include/nav.php:227 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:263 -msgid "Please wait..." -msgstr "Bitte warten..." - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Häufig" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Täglich" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:728 -#: ../../mod/admin.php:737 ../../boot.php:1497 -msgid "Email" -msgstr "E-Mail" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 -msgid "Advanced" -msgstr "Fortgeschritten" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Finde Kanäle" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:222 ../../mod/directory.php:227 -msgid "Find" -msgstr "Finde" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "Kanal-Vorschläge" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Nicht Ausschau haltend" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Zufallsprofil" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Lade Freunde ein" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Betrogen" -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "Beispiel: name=fred and country=deutschland" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Getrennt" -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "Erweiterte Suche" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Labil" -#: ../../include/contact_widgets.php:126 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Geschieden" -#: ../../include/contact_widgets.php:131 -msgid "show more" -msgstr "mehr zeigen" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Gewissermaßen geschieden" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:439 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\\\, H:i" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Verwitwet" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:445 -msgid "Starts:" -msgstr "Beginnt:" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Ungewiss" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:453 -msgid "Finishes:" -msgstr "Endet:" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Es ist kompliziert" -#: ../../include/event.php:40 ../../include/bb2diaspora.php:461 -#: ../../include/identity.php:882 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:579 -msgid "Location:" -msgstr "Ort:" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Interessiert mich nicht" -#: ../../include/event.php:326 -msgid "This event has been added to your calendar." -msgstr "Dieses Ereignis wurde zu Deinem Kalender hinzugefügt" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Frag mich mal" #: ../../include/account.php:23 msgid "Not a valid email address" @@ -1977,636 +1728,695 @@ msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." msgid "This action is not available under your subscription plan." msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" +#: ../../include/oembed.php:171 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "Jahr" +#: ../../include/oembed.php:180 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "Monat" +#: ../../include/zot.php:655 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "Tag" +#: ../../include/zot.php:671 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/datetime.php:275 -msgid "never" -msgstr "Nie" +#: ../../include/zot.php:1757 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" +#: ../../include/network.php:590 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" -#: ../../include/datetime.php:284 -msgid "years" -msgstr "Jahre" +#: ../../include/dba/dba_driver.php:50 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../include/datetime.php:285 -msgid "months" -msgstr "Monate" +#: ../../include/group.php:25 +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 "Ein gelöschte Gruppe mit diesem Namen wurde gefunden. Existierende Zugangsregeln für Elemente könnten für diese Gruppe angewendet werden, sowie für alle zukünftigen Elemente." -#: ../../include/datetime.php:286 -msgid "week" -msgstr "Woche" +#: ../../include/group.php:234 +msgid "Default privacy group for new contacts" +msgstr "Standard-Privatsphärengruppe für neue Kontakte" -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "Wochen" +#: ../../include/group.php:253 ../../mod/admin.php:737 +msgid "All Channels" +msgstr "Alle Kanäle" -#: ../../include/datetime.php:287 -msgid "days" -msgstr "Tage" +#: ../../include/group.php:275 +msgid "edit" +msgstr "Bearbeiten" -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "Stunde" +#: ../../include/group.php:297 +msgid "Collections" +msgstr "Sammlungen" -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "Stunden" +#: ../../include/group.php:298 +msgid "Edit collection" +msgstr "Bearbeite Sammlungen" -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "Minute" +#: ../../include/group.php:299 +msgid "Create a new collection" +msgstr "Neue Sammlung erzeugen" -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "Minuten" +#: ../../include/group.php:300 +msgid "Channels not in any collection" +msgstr "Kanäle, die nicht in einer Sammlung sind" -#: ../../include/datetime.php:290 -msgid "second" -msgstr "Sekunde" +#: ../../include/group.php:302 ../../include/widgets.php:273 +msgid "add" +msgstr "hinzufügen" -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "Sekunden" +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "Keine Quelldatei." -#: ../../include/datetime.php:504 +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:377 #, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" -#: ../../include/datetime.php:505 +#: ../../include/attach.php:389 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." -#: ../../include/dir_fns.php:56 -msgid "Sort Options" -msgstr "Sortieroptionen" +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." -#: ../../include/dir_fns.php:57 -msgid "Alphabetic" -msgstr "alphabetisch" +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." -#: ../../include/dir_fns.php:58 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." -#: ../../include/dir_fns.php:59 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" +#: ../../include/attach.php:589 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" -#: ../../include/dir_fns.php:71 -msgid "Enable Safe Search" -msgstr "Sichere Suche einschalten" +#: ../../include/attach.php:605 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" -#: ../../include/dir_fns.php:73 -msgid "Disable Safe Search" -msgstr "Sichere Suche ausschalten" +#: ../../include/attach.php:629 +msgid "Path not found." +msgstr "Pfad nicht gefunden." -#: ../../include/dir_fns.php:75 -msgid "Safe Mode" -msgstr "Sicherer Modus" +#: ../../include/attach.php:680 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." -#: ../../include/bb2diaspora.php:360 -msgid "Attachments:" -msgstr "Anhänge:" +#: ../../include/attach.php:684 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Red Matrix Benachrichtigung" +#: ../../include/ItemObject.php:89 ../../include/conversation.php:645 +#: ../../mod/photos.php:862 +msgid "Private Message" +msgstr "Private Nachricht" -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" +#: ../../include/ItemObject.php:126 ../../include/conversation.php:637 +msgid "Select" +msgstr "Auswählen" -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Danke." +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In Ordner speichern" -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +msgid "View all" +msgstr "Alles anzeigen" -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../include/ItemObject.php:151 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Gefällt nicht" +msgstr[1] "Gefällt nicht" -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red Notify] Neue Mail auf %s empfangen" +#: ../../include/ItemObject.php:179 +msgid "Add Star" +msgstr "Stern hinzufügen" -#: ../../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 hat Dir eine private Nachricht auf %3$s gesendet." +#: ../../include/ItemObject.php:180 +msgid "Remove Star" +msgstr "Stern entfernen" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" +msgstr "Stern-Status umschalten" -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "eine private Nachricht" +#: ../../include/ItemObject.php:185 +msgid "starred" +msgstr "markiert" -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." +#: ../../include/ItemObject.php:194 ../../include/conversation.php:652 +msgid "Message signature validated" +msgstr "Signatur überprüft" -#: ../../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 hat [zrl=%3$s]a %4$s[/zrl] kommentiert" +#: ../../include/ItemObject.php:195 ../../include/conversation.php:653 +msgid "Message signature incorrect" +msgstr "Signatur nicht korrekt" -#: ../../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 hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" +#: ../../include/ItemObject.php:203 +msgid "Add Tag" +msgstr "Tag hinzufügen" -#: ../../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 hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" +#: ../../include/ItemObject.php:221 ../../mod/photos.php:992 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" +#: ../../include/ItemObject.php:222 ../../mod/photos.php:993 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" -#: ../../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 hat eine Unterhaltung kommentiert, der Du folgst." +#: ../../include/ItemObject.php:226 +msgid "Share This" +msgstr "Teilen" -#: ../../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 "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." +#: ../../include/ItemObject.php:226 +msgid "share" +msgstr "Teilen" -#: ../../include/enotify.php:182 +#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 #, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" +msgid "View %s's profile - %s" +msgstr "Schaue Dir %ss Profil an – %s" -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" +#: ../../include/ItemObject.php:251 +msgid "to" +msgstr "an" -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" +#: ../../include/ItemObject.php:252 +msgid "via" +msgstr "via" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" +#: ../../include/ItemObject.php:253 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" +#: ../../include/ItemObject.php:254 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" -#: ../../include/enotify.php:212 +#: ../../include/ItemObject.php:265 ../../include/conversation.php:698 #, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." +msgid " from %s" +msgstr "von %s" -#: ../../include/enotify.php:225 +#: ../../include/ItemObject.php:268 ../../include/conversation.php:701 #, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red Notify] %1$s hat Dich angestupst" +msgid "last edited: %s" +msgstr "zuletzt bearbeitet: %s" -#: ../../include/enotify.php:226 +#: ../../include/ItemObject.php:269 ../../include/conversation.php:702 #, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" +msgid "Expires: %s" +msgstr "Verfällt: %s" -#: ../../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]hat Dich angestupst[/zrl]." +#: ../../include/ItemObject.php:290 +msgid "Save Bookmarks" +msgstr "Favoriten speichern" -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag getaggt" +#: ../../include/ItemObject.php:291 +msgid "Add to Calendar" +msgstr "Zum Kalender hinzufügen" -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" +#: ../../include/ItemObject.php:299 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notify] Vorstellung erhalten" +#: ../../include/ItemObject.php:300 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../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, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" +#: ../../include/ItemObject.php:305 ../../include/acl_selectors.php:249 +msgid "Close" +msgstr "Schließen" -#: ../../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, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." +#: ../../include/ItemObject.php:310 ../../include/conversation.php:719 +#: ../../include/conversation.php:1153 ../../mod/photos.php:995 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 +#: ../../mod/mail.php:234 ../../mod/mail.php:349 ../../mod/editblock.php:120 +#: ../../mod/editlayout.php:115 +msgid "Please wait" +msgstr "Bitte warten" -#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#: ../../include/ItemObject.php:331 #, php-format -msgid "You may visit their profile at %s" -msgstr "Du kannst Dir das Profil unter %s ansehen" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." +#: ../../include/ItemObject.php:596 ../../mod/photos.php:1011 +#: ../../mod/photos.php:1098 +msgid "This is you" +msgstr "Das bist Du" -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" +#: ../../include/ItemObject.php:600 +msgid "Bold" +msgstr "Fett" -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" +#: ../../include/ItemObject.php:601 +msgid "Italic" +msgstr "Kursiv" -#: ../../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, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." +#: ../../include/ItemObject.php:602 +msgid "Underline" +msgstr "Unterstrichen" -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Name:" +#: ../../include/ItemObject.php:603 +msgid "Quote" +msgstr "Zitat" -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" +#: ../../include/ItemObject.php:604 +msgid "Code" +msgstr "Code" -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." +#: ../../include/ItemObject.php:605 +msgid "Image" +msgstr "Bild" -#: ../../include/enotify.php:477 -msgid "[Red:Notify]" -msgstr "[Red:Benachrichtigung]" +#: ../../include/ItemObject.php:606 +msgid "Link" +msgstr "Link" -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Der Chatraum hat keinen Namen" +#: ../../include/ItemObject.php:607 +msgid "Video" +msgstr "Video" -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Name des Chatraums bereits vergeben" +#: ../../include/ItemObject.php:611 ../../include/conversation.php:1179 +#: ../../mod/editpost.php:148 ../../mod/mail.php:240 ../../mod/mail.php:354 +msgid "Encrypt text" +msgstr "Text verschlüsseln" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ungültiger Raumbezeichner." +#: ../../include/security.php:320 +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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatraum konnte nicht gefunden werden." +#: ../../include/text.php:321 +msgid "prev" +msgstr "vorherige" -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Der Raum ist voll" +#: ../../include/text.php:323 +msgid "first" +msgstr "erste" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Allgemeine Funktionen" +#: ../../include/text.php:352 +msgid "last" +msgstr "letzte" -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "Verfall von Inhalten" +#: ../../include/text.php:355 +msgid "next" +msgstr "nächste" -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum." +#: ../../include/text.php:367 +msgid "older" +msgstr "älter" -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "Mehrfachprofile" +#: ../../include/text.php:369 +msgid "newer" +msgstr "neuer" -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Mehrfachprofile anlegen können" +#: ../../include/text.php:736 +msgid "No connections" +msgstr "Keine Verbindungen" -#: ../../include/features.php:27 -msgid "Advanced Profiles" -msgstr "Erweiterte Profile" +#: ../../include/text.php:749 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d Verbindung" +msgstr[1] "%d Verbindungen" -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" -msgstr "Stellt zusätzliche Felder im Profil zur Verfügung" +#: ../../include/text.php:762 +msgid "View Connections" +msgstr "Verbindungen anzeigen" -#: ../../include/features.php:28 -msgid "Profile Import/Export" -msgstr "Profil-Import/Export" +#: ../../include/text.php:822 ../../include/text.php:834 +#: ../../include/nav.php:173 ../../include/apps.php:145 +#: ../../mod/search.php:30 +msgid "Search" +msgstr "Suche" -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" -msgstr "Speichere Dein Profil, um es in einen anderen Kanal zu importieren" +#: ../../include/text.php:823 ../../include/text.php:835 +#: ../../include/widgets.php:193 ../../mod/admin.php:1341 +#: ../../mod/admin.php:1362 ../../mod/filer.php:50 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "Speichern" -#: ../../include/features.php:29 -msgid "Web Pages" -msgstr "Webseiten" +#: ../../include/text.php:901 +msgid "poke" +msgstr "anstupsen" -#: ../../include/features.php:29 -msgid "Provide managed web pages on your channel" -msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung" +#: ../../include/text.php:901 ../../include/conversation.php:243 +msgid "poked" +msgstr "stupste" -#: ../../include/features.php:30 -msgid "Private Notes" -msgstr "Private Notizen" +#: ../../include/text.php:902 +msgid "ping" +msgstr "anpingen" -#: ../../include/features.php:30 -msgid "Enables a tool to store notes and reminders" -msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren" +#: ../../include/text.php:902 +msgid "pinged" +msgstr "pingte" -#: ../../include/features.php:34 -msgid "Navigation Channel Select" -msgstr "Kanal-Auswahl in der Navigationsleiste" +#: ../../include/text.php:903 +msgid "prod" +msgstr "knuffen" -#: ../../include/features.php:34 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" +#: ../../include/text.php:903 +msgid "prodded" +msgstr "knuffte" -#: ../../include/features.php:38 -msgid "Extended Identity Sharing" -msgstr "Erweitertes Teilen von Identitäten" +#: ../../include/text.php:904 +msgid "slap" +msgstr "ohrfeigen" -#: ../../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 "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt." +#: ../../include/text.php:904 +msgid "slapped" +msgstr "ohrfeigte" -#: ../../include/features.php:39 -msgid "Expert Mode" -msgstr "Expertenmodus" +#: ../../include/text.php:905 +msgid "finger" +msgstr "befummeln" -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" +#: ../../include/text.php:905 +msgid "fingered" +msgstr "befummelte" -#: ../../include/features.php:40 -msgid "Premium Channel" -msgstr "Premium-Kanal" +#: ../../include/text.php:906 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" -#: ../../include/features.php:40 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ermöglicht Einschränkungen und Bedingungen für Kontakte dieses Kanals" +#: ../../include/text.php:906 +msgid "rebuffed" +msgstr "zurückgewiesen" -#: ../../include/features.php:45 -msgid "Post Composition Features" -msgstr "Nachbearbeitungsfunktionen" +#: ../../include/text.php:915 +msgid "happy" +msgstr "glücklich" -#: ../../include/features.php:47 -msgid "Use Markdown" -msgstr "Markdown benutzen" +#: ../../include/text.php:916 +msgid "sad" +msgstr "traurig" -#: ../../include/features.php:47 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Erlaube Markdown zur Formatierung von Beiträgen" +#: ../../include/text.php:917 +msgid "mellow" +msgstr "sanft" -#: ../../include/features.php:48 -msgid "Post Preview" -msgstr "Voransicht" +#: ../../include/text.php:918 +msgid "tired" +msgstr "müde" -#: ../../include/features.php:48 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung" +#: ../../include/text.php:919 +msgid "perky" +msgstr "frech" -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds" +#: ../../include/text.php:920 +msgid "angry" +msgstr "sauer" -#: ../../include/features.php:50 -msgid "Even More Encryption" -msgstr "Noch mehr Verschlüsselung" +#: ../../include/text.php:921 +msgid "stupified" +msgstr "verblüfft" -#: ../../include/features.php:50 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)" +#: ../../include/text.php:922 +msgid "puzzled" +msgstr "verwirrt" -#: ../../include/features.php:55 -msgid "Network and Stream Filtering" -msgstr "Netzwerk- und Stream-Filter" +#: ../../include/text.php:923 +msgid "interested" +msgstr "interessiert" -#: ../../include/features.php:56 -msgid "Search by Date" -msgstr "Suche nach Datum" +#: ../../include/text.php:924 +msgid "bitter" +msgstr "verbittert" -#: ../../include/features.php:56 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" +#: ../../include/text.php:925 +msgid "cheerful" +msgstr "fröhlich" -#: ../../include/features.php:57 -msgid "Collections Filter" -msgstr "Filter für Sammlung" +#: ../../include/text.php:926 +msgid "alive" +msgstr "lebendig" -#: ../../include/features.php:57 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen" +#: ../../include/text.php:927 +msgid "annoyed" +msgstr "verärgert" -#: ../../include/features.php:58 -msgid "Save search terms for re-use" -msgstr "Gesicherte Suchbegriffe zur Wiederverwendung" +#: ../../include/text.php:928 +msgid "anxious" +msgstr "unruhig" -#: ../../include/features.php:59 -msgid "Network Personal Tab" -msgstr "Persönlicher Netzwerkreiter" +#: ../../include/text.php:929 +msgid "cranky" +msgstr "schrullig" -#: ../../include/features.php:59 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast" +#: ../../include/text.php:930 +msgid "disturbed" +msgstr "verstört" -#: ../../include/features.php:60 -msgid "Network New Tab" -msgstr "Netzwerkreiter Neu" +#: ../../include/text.php:931 +msgid "frustrated" +msgstr "frustriert" -#: ../../include/features.php:60 -msgid "Enable tab to display all new Network activity" -msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" +#: ../../include/text.php:932 +msgid "depressed" +msgstr "deprimiert" -#: ../../include/features.php:61 -msgid "Affinity Tool" -msgstr "Beziehungs-Tool" +#: ../../include/text.php:933 +msgid "motivated" +msgstr "motiviert" -#: ../../include/features.php:61 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" +#: ../../include/text.php:934 +msgid "relaxed" +msgstr "entspannt" -#: ../../include/features.php:62 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" +#: ../../include/text.php:935 +msgid "surprised" +msgstr "überrascht" -#: ../../include/features.php:62 -msgid "Show channel suggestions" -msgstr "Kanal-Vorschläge anzeigen" +#: ../../include/text.php:1099 +msgid "Monday" +msgstr "Montag" -#: ../../include/features.php:67 -msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" +#: ../../include/text.php:1099 +msgid "Tuesday" +msgstr "Dienstag" -#: ../../include/features.php:69 -msgid "Edit Sent Posts" -msgstr "Bearbeite gesendete Beiträge" +#: ../../include/text.php:1099 +msgid "Wednesday" +msgstr "Mittwoch" -#: ../../include/features.php:69 -msgid "Edit and correct posts and comments after sending" -msgstr "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden" +#: ../../include/text.php:1099 +msgid "Thursday" +msgstr "Donnerstag" -#: ../../include/features.php:70 -msgid "Tagging" -msgstr "Verschlagworten" +#: ../../include/text.php:1099 +msgid "Friday" +msgstr "Freitag" -#: ../../include/features.php:70 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" +#: ../../include/text.php:1099 +msgid "Saturday" +msgstr "Samstag" -#: ../../include/features.php:71 -msgid "Post Categories" -msgstr "Beitrags-Kategorien" +#: ../../include/text.php:1099 +msgid "Sunday" +msgstr "Sonntag" -#: ../../include/features.php:71 -msgid "Add categories to your posts" -msgstr "Kategorien für Beiträge" +#: ../../include/text.php:1103 +msgid "January" +msgstr "Januar" -#: ../../include/features.php:72 -msgid "Ability to file posts under folders" -msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" +#: ../../include/text.php:1103 +msgid "February" +msgstr "Februar" -#: ../../include/features.php:73 -msgid "Dislike Posts" -msgstr "Gefällt-mir-nicht Beiträge" +#: ../../include/text.php:1103 +msgid "March" +msgstr "März" -#: ../../include/features.php:73 -msgid "Ability to dislike posts/comments" -msgstr "„Gefällt mir nicht“ ermöglichen" +#: ../../include/text.php:1103 +msgid "April" +msgstr "April" -#: ../../include/features.php:74 -msgid "Star Posts" -msgstr "Beiträge mit Sternchen versehen" +#: ../../include/text.php:1103 +msgid "May" +msgstr "Mai" -#: ../../include/features.php:74 -msgid "Ability to mark special posts with a star indicator" -msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren" +#: ../../include/text.php:1103 +msgid "June" +msgstr "Juni" -#: ../../include/features.php:75 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" +#: ../../include/text.php:1103 +msgid "July" +msgstr "Juli" -#: ../../include/features.php:75 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" +#: ../../include/text.php:1103 +msgid "August" +msgstr "August" -#: ../../include/follow.php:26 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " +#: ../../include/text.php:1103 +msgid "September" +msgstr "September" -#: ../../include/follow.php:31 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." +#: ../../include/text.php:1103 +msgid "October" +msgstr "Oktober" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." +#: ../../include/text.php:1103 +msgid "November" +msgstr "November" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." +#: ../../include/text.php:1103 +msgid "December" +msgstr "Dezember" -#: ../../include/follow.php:133 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." +#: ../../include/text.php:1181 +msgid "unknown.???" +msgstr "unbekannt.???" -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" +#: ../../include/text.php:1182 +msgid "bytes" +msgstr "Bytes" -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "Lokales Konto nicht gefunden." +#: ../../include/text.php:1221 +msgid "remove category" +msgstr "Kategorie entfernen" -#: ../../include/follow.php:219 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." +#: ../../include/text.php:1291 +msgid "remove from file" +msgstr "aus der Datei entfernen" -#: ../../include/group.php:25 -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 "Ein gelöschte Gruppe mit diesem Namen wurde gefunden. Existierende Zugangsregeln für Elemente könnten für diese Gruppe angewendet werden, sowie für alle zukünftigen Elemente." +#: ../../include/text.php:1356 ../../include/text.php:1368 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/group.php:234 -msgid "Default privacy group for new contacts" -msgstr "Standard-Privatsphärengruppe für neue Kontakte" +#: ../../include/text.php:1523 ../../mod/events.php:414 +msgid "Link to Source" +msgstr "Link zur Quelle" -#: ../../include/group.php:253 ../../mod/admin.php:737 -msgid "All Channels" -msgstr "Alle Kanäle" +#: ../../include/text.php:1542 +msgid "Select a page layout: " +msgstr "Ein Seiten-Layout auswählen:" -#: ../../include/group.php:275 -msgid "edit" -msgstr "Bearbeiten" +#: ../../include/text.php:1545 ../../include/text.php:1610 +msgid "default" +msgstr "Standard" -#: ../../include/group.php:297 -msgid "Collections" -msgstr "Sammlungen" +#: ../../include/text.php:1581 +msgid "Page content type: " +msgstr "Content-Typ der Seite:" -#: ../../include/group.php:298 -msgid "Edit collection" -msgstr "Bearbeite Sammlungen" +#: ../../include/text.php:1622 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" -#: ../../include/group.php:299 -msgid "Create a new collection" -msgstr "Neue Sammlung erzeugen" +#: ../../include/text.php:1743 ../../include/conversation.php:120 +#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:294 +msgid "photo" +msgstr "Foto" -#: ../../include/group.php:300 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" +#: ../../include/text.php:1746 ../../include/conversation.php:123 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "Ereignis" + +#: ../../include/text.php:1749 ../../include/conversation.php:148 +#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:294 +msgid "status" +msgstr "Status" + +#: ../../include/text.php:1751 ../../include/conversation.php:150 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "Kommentar" + +#: ../../include/text.php:1756 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2028 +msgid "Design" +msgstr "Design" + +#: ../../include/text.php:2030 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../include/text.php:2031 +msgid "Menus" +msgstr "Menüs" + +#: ../../include/text.php:2032 +msgid "Layouts" +msgstr "Layouts" + +#: ../../include/text.php:2033 +msgid "Pages" +msgstr "Seiten" + +#: ../../include/dir_fns.php:56 +msgid "Sort Options" +msgstr "Sortieroptionen" + +#: ../../include/dir_fns.php:57 +msgid "Alphabetic" +msgstr "alphabetisch" + +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "Entgegengesetzt alphabetisch" + +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "Neueste zuerst" + +#: ../../include/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "Sichere Suche einschalten" + +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "Sichere Suche ausschalten" + +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" +msgstr "Sicherer Modus" #: ../../include/bbcode.php:112 ../../include/bbcode.php:653 #: ../../include/bbcode.php:656 ../../include/bbcode.php:661 @@ -2647,1260 +2457,1504 @@ msgstr "$1 Spoiler" msgid "$1 wrote:" msgstr "$1 schrieb:" -#: ../../include/RedDAV/RedBrowser.php:103 -#: ../../include/RedDAV/RedBrowser.php:246 -msgid "parent" -msgstr "Übergeordnetes Verzeichnis" - -#: ../../include/RedDAV/RedBrowser.php:127 -msgid "Collection" -msgstr "Sammlung" +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "Red Matrix Benachrichtigung" -#: ../../include/RedDAV/RedBrowser.php:130 -msgid "Principal" -msgstr "Prinzipal" +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "redmatrix" -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Addressbook" -msgstr "Adressbuch" +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "Danke." -#: ../../include/RedDAV/RedBrowser.php:136 -msgid "Calendar" -msgstr "Kalender" +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" -#: ../../include/RedDAV/RedBrowser.php:139 -msgid "Schedule Inbox" -msgstr "Post-Eingang prüfen" +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../include/RedDAV/RedBrowser.php:142 -msgid "Schedule Outbox" -msgstr "Post-Ausgang prüfen" +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" -#: ../../include/RedDAV/RedBrowser.php:220 +#: ../../include/enotify.php:87 #, php-format -msgid "%1$s used" -msgstr "%1$s verwendet" +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." -#: ../../include/RedDAV/RedBrowser.php:225 +#: ../../include/enotify.php:88 #, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "von %2$s wurden %1$s verwendet (%3$s%)" +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." -#: ../../include/RedDAV/RedBrowser.php:242 ../../mod/settings.php:521 -#: ../../mod/settings.php:547 ../../mod/admin.php:868 -msgid "Name" -msgstr "Name" +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "eine private Nachricht" -#: ../../include/RedDAV/RedBrowser.php:243 -msgid "Type" -msgstr "Typ" +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." -#: ../../include/RedDAV/RedBrowser.php:244 -msgid "Size" -msgstr "Größe" +#: ../../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 hat [zrl=%3$s]a %4$s[/zrl] kommentiert" -#: ../../include/RedDAV/RedBrowser.php:245 -msgid "Last Modified" -msgstr "Zuletzt geändert" +#: ../../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 hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" -#: ../../include/RedDAV/RedBrowser.php:249 -msgid "Total" -msgstr "Summe" +#: ../../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 hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" -#: ../../include/RedDAV/RedBrowser.php:293 -msgid "Create new folder" -msgstr "Neuen Ordner anlegen" +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" -#: ../../include/RedDAV/RedBrowser.php:294 ../../mod/mitem.php:142 -#: ../../mod/menu.php:84 ../../mod/new_channel.php:122 -msgid "Create" -msgstr "Erstelle" +#: ../../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 hat eine Unterhaltung kommentiert, der Du folgst." -#: ../../include/RedDAV/RedBrowser.php:295 -msgid "Upload file" -msgstr "Datei hochladen" +#: ../../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 "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." -#: ../../include/RedDAV/RedBrowser.php:296 ../../mod/photos.php:745 -#: ../../mod/photos.php:1225 ../../mod/profile_photo.php:361 -msgid "Upload" -msgstr "Hochladen" +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" -#: ../../include/identity.php:31 ../../mod/item.php:1319 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Name ist zu lang" +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Keine Account-Kennung" +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" -#: ../../include/identity.php:181 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." +#: ../../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]hat Dich erwähnt[/zrl]." -#: ../../include/identity.php:195 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" -#: ../../include/identity.php:200 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." - -#: ../../include/identity.php:282 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" -#: ../../include/identity.php:341 -msgid "Default Profile" -msgstr "Standard-Profil" +#: ../../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]hat Dich angestupst[/zrl]." -#: ../../include/identity.php:634 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag getaggt" -#: ../../include/identity.php:682 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/webpages.php:8 -#: ../../mod/connect.php:13 ../../mod/filestorage.php:40 -#: ../../mod/layouts.php:8 ../../mod/hcard.php:8 -msgid "Requested profile is not available." -msgstr "Erwünschte Profil ist nicht verfügbar." +#: ../../include/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" -#: ../../include/identity.php:845 ../../mod/profiles.php:750 -msgid "Change profile photo" -msgstr "Profilfoto ändern" +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" -#: ../../include/identity.php:851 -msgid "Profiles" -msgstr "Profile" +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Benachrichtigung] Vorstellung erhalten" -#: ../../include/identity.php:851 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/bearbeiten" +#: ../../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, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" -#: ../../include/identity.php:852 ../../mod/profiles.php:751 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" +#: ../../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, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." -#: ../../include/identity.php:866 ../../mod/profiles.php:762 -msgid "Profile Image" -msgstr "Profilfoto:" +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kannst Dir das Profil unter %s ansehen" -#: ../../include/identity.php:869 -msgid "visible to everybody" -msgstr "sichtbar für jeden" +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." -#: ../../include/identity.php:870 ../../mod/profiles.php:645 -#: ../../mod/profiles.php:766 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" -#: ../../include/identity.php:884 ../../include/identity.php:1121 -#: ../../mod/directory.php:158 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" -#: ../../include/identity.php:885 ../../include/identity.php:1165 -#: ../../mod/directory.php:160 -msgid "Status:" -msgstr "Status:" +#: ../../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, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." -#: ../../include/identity.php:886 ../../include/identity.php:1176 -#: ../../mod/directory.php:162 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "Name:" -#: ../../include/identity.php:887 ../../mod/dirprofile.php:151 -msgid "Online Now" -msgstr "gerade online" +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "Foto:" -#: ../../include/identity.php:965 ../../include/identity.php:1045 -#: ../../mod/ping.php:298 -msgid "g A l F d" -msgstr "l, d. F G \\\\U\\\\h\\\\r" +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." -#: ../../include/identity.php:966 ../../include/identity.php:1046 -msgid "F d" -msgstr "d. F" +#: ../../include/enotify.php:477 +msgid "[Red:Notify]" +msgstr "[Red:Benachrichtigung]" -#: ../../include/identity.php:1011 ../../include/identity.php:1086 -#: ../../mod/ping.php:320 -msgid "[today]" -msgstr "[Heute]" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" -#: ../../include/identity.php:1023 -msgid "Birthday Reminders" -msgstr "Geburtstags Erinnerungen" +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" +msgstr "Beende diese Sitzung" -#: ../../include/identity.php:1024 -msgid "Birthdays this week:" -msgstr "Geburtstage in dieser Woche:" +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" +msgstr "Home" -#: ../../include/identity.php:1079 -msgid "[No description]" -msgstr "[Keine Beschreibung]" +#: ../../include/nav.php:98 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" -#: ../../include/identity.php:1097 -msgid "Event Reminders" -msgstr "Veranstaltungs- Erinnerungen" +#: ../../include/nav.php:99 ../../include/conversation.php:945 +#: ../../mod/connedit.php:415 ../../mod/connedit.php:529 +msgid "View Profile" +msgstr "Profil ansehen" -#: ../../include/identity.php:1098 -msgid "Events this week:" -msgstr "Veranstaltungen in dieser Woche:" +#: ../../include/nav.php:99 +msgid "Your profile page" +msgstr "Deine Profilseite" -#: ../../include/identity.php:1119 ../../mod/settings.php:953 -msgid "Full Name:" -msgstr "Voller Name:" +#: ../../include/nav.php:101 +msgid "Edit Profiles" +msgstr "Profile bearbeiten" -#: ../../include/identity.php:1126 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" -#: ../../include/identity.php:1150 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../include/nav.php:103 +msgid "Edit your profile" +msgstr "Profil bearbeiten" -#: ../../include/identity.php:1151 -msgid "j F" -msgstr "j F" +#: ../../include/nav.php:105 ../../include/apps.php:137 +#: ../../include/conversation.php:1537 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" -#: ../../include/identity.php:1158 -msgid "Birthday:" -msgstr "Geburtstag:" +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "Deine Bilder" -#: ../../include/identity.php:1162 -msgid "Age:" -msgstr "Alter:" +#: ../../include/nav.php:106 +msgid "Your files" +msgstr "Deine Dateien" -#: ../../include/identity.php:1171 -#, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +#: ../../include/nav.php:111 ../../include/apps.php:144 +msgid "Chat" +msgstr "Chat" -#: ../../include/identity.php:1174 ../../mod/profiles.php:667 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/nav.php:111 +msgid "Your chatrooms" +msgstr "Deine Chaträume" -#: ../../include/identity.php:1178 ../../mod/profiles.php:669 -msgid "Hometown:" -msgstr "Heimatstadt:" +#: ../../include/nav.php:117 ../../include/apps.php:127 +#: ../../include/conversation.php:1570 +msgid "Bookmarks" +msgstr "Lesezeichen" -#: ../../include/identity.php:1180 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/nav.php:117 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" -#: ../../include/identity.php:1182 ../../mod/profiles.php:670 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/nav.php:121 ../../include/apps.php:134 +#: ../../include/conversation.php:1581 ../../mod/webpages.php:129 +msgid "Webpages" +msgstr "Webseiten" -#: ../../include/identity.php:1184 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "Deine Webseiten" -#: ../../include/identity.php:1186 ../../mod/directory.php:164 -msgid "About:" -msgstr "Über:" +#: ../../include/nav.php:125 +msgid "Sign in" +msgstr "Anmelden" -#: ../../include/identity.php:1188 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" -#: ../../include/identity.php:1190 ../../mod/profiles.php:673 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../include/nav.php:145 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" -#: ../../include/identity.php:1192 ../../mod/profiles.php:674 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" -#: ../../include/identity.php:1195 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/nav.php:159 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/identity.php:1197 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../include/nav.php:163 +msgid "Create an account" +msgstr "Erzeuge ein Konto" -#: ../../include/identity.php:1199 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:60 +#: ../../mod/help.php:65 +msgid "Help" +msgstr "Hilfe" -#: ../../include/identity.php:1201 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../include/nav.php:168 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" -#: ../../include/identity.php:1203 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../include/nav.php:171 ../../include/widgets.php:86 +#: ../../mod/apps.php:33 +msgid "Apps" +msgstr "Apps" -#: ../../include/identity.php:1205 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" -#: ../../include/identity.php:1207 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "Durchsuche Seiten-Inhalt" -#: ../../include/identity.php:1209 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/nav.php:176 ../../include/apps.php:139 +#: ../../mod/directory.php:226 +msgid "Directory" +msgstr "Verzeichnis" -#: ../../include/identity.php:1211 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/nav.php:176 +msgid "Channel Locator" +msgstr "Kanal-Verzeichnis" -#: ../../include/identity.php:1231 -msgid "Like this thing" -msgstr "Gefällt mir" +#: ../../include/nav.php:190 ../../include/apps.php:131 +msgid "Matrix" +msgstr "Matrix" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" +#: ../../include/nav.php:190 +msgid "Your matrix" +msgstr "Deine Matrix" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[no subject]" +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" +msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." +#: ../../include/nav.php:193 ../../include/apps.php:135 +msgid "Channel Home" +msgstr "Mein Kanal" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." +#: ../../include/nav.php:193 +msgid "Channel home" +msgstr "Mein Kanal" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In Ordner speichern" +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -msgid "View all" -msgstr "Alles anzeigen" +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" +msgstr "Verbindungen" -#: ../../include/ItemObject.php:151 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "Benachrichtigungen" -#: ../../include/ItemObject.php:179 -msgid "Add Star" -msgstr "Stern hinzufügen" +#: ../../include/nav.php:200 +msgid "Notifications" +msgstr "Benachrichtigungen" -#: ../../include/ItemObject.php:180 -msgid "Remove Star" -msgstr "Stern entfernen" +#: ../../include/nav.php:201 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" -msgstr "Stern-Status umschalten" +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" -#: ../../include/ItemObject.php:185 -msgid "starred" -msgstr "markiert" +#: ../../include/nav.php:204 ../../include/apps.php:141 +msgid "Mail" +msgstr "Mail" -#: ../../include/ItemObject.php:202 -msgid "Add Tag" -msgstr "Tag hinzufügen" +#: ../../include/nav.php:204 +msgid "Private mail" +msgstr "Persönliche Mail" -#: ../../include/ItemObject.php:220 ../../mod/photos.php:992 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" +#: ../../include/nav.php:205 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:993 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" -#: ../../include/ItemObject.php:225 -msgid "Share This" -msgstr "Teilen" +#: ../../include/nav.php:207 +msgid "Inbox" +msgstr "Eingang" -#: ../../include/ItemObject.php:225 -msgid "share" -msgstr "Teilen" +#: ../../include/nav.php:208 +msgid "Outbox" +msgstr "Ausgang" -#: ../../include/ItemObject.php:248 ../../include/ItemObject.php:249 -#, php-format -msgid "View %s's profile - %s" -msgstr "Schaue Dir %ss Profil an – %s" +#: ../../include/nav.php:209 ../../include/widgets.php:545 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../include/ItemObject.php:250 -msgid "to" -msgstr "an" +#: ../../include/nav.php:212 ../../include/apps.php:138 +#: ../../mod/events.php:436 +msgid "Events" +msgstr "Veranstaltungen" -#: ../../include/ItemObject.php:251 -msgid "via" -msgstr "via" +#: ../../include/nav.php:212 +msgid "Event Calendar" +msgstr "Veranstaltungskalender" -#: ../../include/ItemObject.php:252 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" +#: ../../include/nav.php:213 +msgid "See all events" +msgstr "Alle Ereignisse ansehen" -#: ../../include/ItemObject.php:253 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" +#: ../../include/nav.php:214 +msgid "Mark all events seen" +msgstr "Markiere alle Ereignisse als gesehen" -#: ../../include/ItemObject.php:288 -msgid "Save Bookmarks" -msgstr "Favoriten speichern" +#: ../../include/nav.php:216 ../../include/apps.php:130 +#: ../../mod/manage.php:148 +msgid "Channel Manager" +msgstr "Kanal-Manager" -#: ../../include/ItemObject.php:289 -msgid "Add to Calendar" -msgstr "Zum Kalender hinzufügen" +#: ../../include/nav.php:216 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" -#: ../../include/ItemObject.php:297 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" +#: ../../include/nav.php:218 ../../include/apps.php:132 +#: ../../include/widgets.php:521 ../../mod/admin.php:953 +#: ../../mod/admin.php:1158 +msgid "Settings" +msgstr "Einstellungen" -#: ../../include/ItemObject.php:298 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" -#: ../../include/ItemObject.php:329 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Administration" -#: ../../include/ItemObject.php:330 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] Zeige alle" +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" -#: ../../include/ItemObject.php:594 ../../mod/photos.php:1011 -#: ../../mod/photos.php:1098 -msgid "This is you" -msgstr "Das bist Du" +#: ../../include/nav.php:257 ../../include/conversation.php:847 +msgid "Loading..." +msgstr "Lädt ..." -#: ../../include/ItemObject.php:596 ../../include/js_strings.php:6 -#: ../../mod/photos.php:1013 ../../mod/photos.php:1100 -msgid "Comment" -msgstr "Kommentar" +#: ../../include/nav.php:262 +msgid "Please wait..." +msgstr "Bitte warten..." -#: ../../include/ItemObject.php:597 ../../mod/mood.php:135 -#: ../../mod/settings.php:519 ../../mod/settings.php:631 -#: ../../mod/settings.php:660 ../../mod/settings.php:684 -#: ../../mod/settings.php:760 ../../mod/settings.php:945 -#: ../../mod/poke.php:166 ../../mod/profiles.php:643 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:540 -#: ../../mod/photos.php:563 ../../mod/photos.php:672 ../../mod/photos.php:974 -#: ../../mod/photos.php:1014 ../../mod/photos.php:1101 ../../mod/setup.php:307 -#: ../../mod/setup.php:350 ../../mod/pdledit.php:58 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/events.php:586 -#: ../../mod/filestorage.php:137 ../../mod/fsuggest.php:108 -#: ../../mod/group.php:81 ../../mod/admin.php:414 ../../mod/admin.php:725 -#: ../../mod/admin.php:861 ../../mod/admin.php:994 ../../mod/admin.php:1193 -#: ../../mod/admin.php:1280 ../../mod/thing.php:284 ../../mod/thing.php:327 -#: ../../mod/import.php:480 ../../mod/invite.php:142 ../../mod/mail.php:348 -#: ../../mod/appman.php:99 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Submit" -msgstr "Bestätigen" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Allgemeine Funktionen" -#: ../../include/ItemObject.php:598 -msgid "Bold" -msgstr "Fett" +#: ../../include/features.php:25 +msgid "Content Expiration" +msgstr "Verfall von Inhalten" -#: ../../include/ItemObject.php:599 -msgid "Italic" -msgstr "Kursiv" +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum." -#: ../../include/ItemObject.php:600 -msgid "Underline" -msgstr "Unterstrichen" +#: ../../include/features.php:26 +msgid "Multiple Profiles" +msgstr "Mehrfachprofile" -#: ../../include/ItemObject.php:601 -msgid "Quote" -msgstr "Zitat" +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" +msgstr "Mehrfachprofile anlegen können" -#: ../../include/ItemObject.php:602 -msgid "Code" -msgstr "Code" +#: ../../include/features.php:27 +msgid "Advanced Profiles" +msgstr "Erweiterte Profile" -#: ../../include/ItemObject.php:603 -msgid "Image" -msgstr "Bild" +#: ../../include/features.php:27 +msgid "Additional profile sections and selections" +msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" -#: ../../include/ItemObject.php:604 -msgid "Link" -msgstr "Link" +#: ../../include/features.php:28 +msgid "Profile Import/Export" +msgstr "Profil-Import/Export" -#: ../../include/ItemObject.php:605 -msgid "Video" -msgstr "Video" +#: ../../include/features.php:28 +msgid "Save and load profile details across sites/channels" +msgstr "Speichere Dein Profil, um es in einen anderen Kanal zu importieren" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dieses Element löschen?" +#: ../../include/features.php:29 +msgid "Web Pages" +msgstr "Webseiten" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] zeige weniger" +#: ../../include/features.php:29 +msgid "Provide managed web pages on your channel" +msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] aufklappen" +#: ../../include/features.php:30 +msgid "Private Notes" +msgstr "Private Notizen" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] einklappen" +#: ../../include/features.php:30 +msgid "Enables a tool to store notes and reminders" +msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Kennwort zu kurz" +#: ../../include/features.php:34 +msgid "Navigation Channel Select" +msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Kennwörter stimmen nicht überein" +#: ../../include/features.php:34 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "alle" +#: ../../include/features.php:38 +msgid "Extended Identity Sharing" +msgstr "Erweitertes Teilen von Identitäten" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "geheime Passphrase" +#: ../../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 "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt." -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hinweis zur Passphrase" +#: ../../include/features.php:39 +msgid "Expert Mode" +msgstr "Expertenmodus" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alle schließen" +#: ../../include/features.php:40 +msgid "Premium Channel" +msgstr "Premium-Kanal" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nichts Neues hier" +#: ../../include/features.php:40 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ermöglicht Einschränkungen und Bedingungen für Kontakte dieses Kanals" -#: ../../include/js_strings.php:20 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/features.php:45 +msgid "Post Composition Features" +msgstr "Nachbearbeitungsfunktionen" -#: ../../include/js_strings.php:21 -msgid "timeago.prefixFromNow" -msgstr " " +#: ../../include/features.php:47 +msgid "Use Markdown" +msgstr "Markdown benutzen" -#: ../../include/js_strings.php:22 -msgid "ago" -msgstr "her" +#: ../../include/features.php:47 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Erlaube Markdown zur Formatierung von Beiträgen" -#: ../../include/js_strings.php:23 -msgid "from now" -msgstr "von jetzt" +#: ../../include/features.php:48 +msgid "Post Preview" +msgstr "Voransicht" -#: ../../include/js_strings.php:24 -msgid "less than a minute" -msgstr "weniger als eine Minute" +#: ../../include/features.php:48 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung" -#: ../../include/js_strings.php:25 -msgid "about a minute" -msgstr "ungefähr eine Minute" +#: ../../include/features.php:49 ../../include/widgets.php:510 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanal-Quellen" -#: ../../include/js_strings.php:26 -#, php-format -msgid "%d minutes" -msgstr "%d Minuten" +#: ../../include/features.php:49 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/js_strings.php:27 -msgid "about an hour" -msgstr "ungefähr eine Stunde" +#: ../../include/features.php:50 +msgid "Even More Encryption" +msgstr "Noch mehr Verschlüsselung" -#: ../../include/js_strings.php:28 -#, php-format -msgid "about %d hours" -msgstr "ungefähr %d Stunden" +#: ../../include/features.php:50 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)" -#: ../../include/js_strings.php:29 -msgid "a day" -msgstr "ein Tag" +#: ../../include/features.php:55 +msgid "Network and Stream Filtering" +msgstr "Netzwerk- und Stream-Filter" -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d days" -msgstr "%d Tage" +#: ../../include/features.php:56 +msgid "Search by Date" +msgstr "Suche nach Datum" -#: ../../include/js_strings.php:31 -msgid "about a month" -msgstr "ungefähr ein Monat" +#: ../../include/features.php:56 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d months" -msgstr "%d Monate" +#: ../../include/features.php:57 +msgid "Collections Filter" +msgstr "Filter für Sammlung" -#: ../../include/js_strings.php:33 -msgid "about a year" -msgstr "ungefähr ein Jahr" +#: ../../include/features.php:57 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen" -#: ../../include/js_strings.php:34 -#, php-format -msgid "%d years" -msgstr "%d Jahre" +#: ../../include/features.php:58 ../../include/widgets.php:272 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" -#: ../../include/js_strings.php:35 -msgid " " -msgstr " " +#: ../../include/features.php:58 +msgid "Save search terms for re-use" +msgstr "Suchbegriffe zur Wiederverwendung abspeichern" -#: ../../include/js_strings.php:36 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/features.php:59 +msgid "Network Personal Tab" +msgstr "Persönlicher Netzwerkreiter" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Neues Fenster" +#: ../../include/features.php:59 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" +#: ../../include/features.php:60 +msgid "Network New Tab" +msgstr "Netzwerkreiter Neu" -#: ../../include/Contact.php:211 ../../mod/admin.php:649 -#, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" +#: ../../include/features.php:60 +msgid "Enable tab to display all new Network activity" +msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" -msgstr "Männlich" +#: ../../include/features.php:61 +msgid "Affinity Tool" +msgstr "Beziehungs-Tool" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" -msgstr "Weiblich" +#: ../../include/features.php:61 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momentan männlich" +#: ../../include/features.php:62 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momentan weiblich" +#: ../../include/features.php:62 +msgid "Show channel suggestions" +msgstr "Kanal-Vorschläge anzeigen" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Größtenteils männlich" +#: ../../include/features.php:67 +msgid "Post/Comment Tools" +msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Größtenteils weiblich" +#: ../../include/features.php:69 +msgid "Edit Sent Posts" +msgstr "Bearbeite gesendete Beiträge" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transsexuell" +#: ../../include/features.php:69 +msgid "Edit and correct posts and comments after sending" +msgstr "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Zwischengeschlechtlich" +#: ../../include/features.php:70 +msgid "Tagging" +msgstr "Verschlagworten" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuell" +#: ../../include/features.php:70 +msgid "Ability to tag existing posts" +msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Zwitter" +#: ../../include/features.php:71 +msgid "Post Categories" +msgstr "Beitrags-Kategorien" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Geschlechtslos" +#: ../../include/features.php:71 +msgid "Add categories to your posts" +msgstr "Kategorien für Beiträge" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "unklar" +#: ../../include/features.php:72 +msgid "Ability to file posts under folders" +msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:746 -msgid "Other" -msgstr "Anders" +#: ../../include/features.php:73 +msgid "Dislike Posts" +msgstr "Gefällt-mir-nicht Beiträge" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Unentschieden" +#: ../../include/features.php:73 +msgid "Ability to dislike posts/comments" +msgstr "„Gefällt mir nicht“ ermöglichen" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Männer" +#: ../../include/features.php:74 +msgid "Star Posts" +msgstr "Beiträge mit Sternchen versehen" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Frauen" +#: ../../include/features.php:74 +msgid "Ability to mark special posts with a star indicator" +msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren" -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Schwul" +#: ../../include/features.php:75 +msgid "Tag Cloud" +msgstr "Schlagwort-Wolke" -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/features.php:75 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Keine Bevorzugung" +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "Neuer Beitrag wurde erzeugt" -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisexuell" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosexuell" +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "hat %s's Beitrag kommentiert" -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Enthaltsam" +#: ../../include/apps.php:126 +msgid "Site Admin" +msgstr "Hub-Administration" -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Jungfräulich" +#: ../../include/apps.php:128 +msgid "Address Book" +msgstr "Adressbuch" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Abweichend" +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Laune" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisch" +#: ../../include/apps.php:143 ../../include/conversation.php:951 +msgid "Poke" +msgstr "Anstupsen" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Unmengen" +#: ../../include/apps.php:146 +msgid "Probe" +msgstr "Testen" -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Sexlos" +#: ../../include/apps.php:147 +msgid "Suggest" +msgstr "Empfehlungen" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Single" +#: ../../include/apps.php:148 +msgid "Random Channel" +msgstr "Zufälliger Kanal" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Einsam" +#: ../../include/apps.php:149 +msgid "Invite" +msgstr "Einladen" -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Verfügbar" +#: ../../include/apps.php:150 +msgid "Features" +msgstr "Funktionen" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Nicht verfügbar" +#: ../../include/apps.php:151 +msgid "Language" +msgstr "Sprache" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Verguckt" +#: ../../include/apps.php:152 +msgid "Post" +msgstr "Beitrag" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Verknallt" +#: ../../include/apps.php:153 +msgid "Profile Photo" +msgstr "Profilfoto" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Lerne gerade jemanden kennen" +#: ../../include/apps.php:242 ../../mod/settings.php:79 +#: ../../mod/settings.php:545 +msgid "Update" +msgstr "Aktualisieren" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Treulos" +#: ../../include/apps.php:242 +msgid "Install" +msgstr "Installieren" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Sexabhängig" +#: ../../include/apps.php:247 +msgid "Purchase" +msgstr "Kaufen" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Freunde/Begünstigte" +#: ../../include/api.php:1072 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Lose" +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Der Chatraum hat keinen Namen" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Verlobt" +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Name des Chatraums bereits vergeben" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Verheiratet" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ungültiger Raumbezeichner." -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Gewissermaßen verheiratet" +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chatraum konnte nicht gefunden werden." -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partner" +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Der Raum ist voll" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Lebensgemeinschaft" +#: ../../include/conversation.php:126 ../../mod/like.php:89 +msgid "channel" +msgstr "Kanal" -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Informelle Ehe" +#: ../../include/conversation.php:164 ../../include/diaspora.php:1953 +#: ../../mod/like.php:331 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s" -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Glücklich" +#: ../../include/conversation.php:167 ../../mod/like.php:333 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s nicht" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Nicht Ausschau haltend" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ist jetzt mit %2$s verbunden" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Betrogen" +#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Getrennt" +#: ../../include/conversation.php:674 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Labil" +#: ../../include/conversation.php:689 +msgid "Categories:" +msgstr "Kategorien:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Geschieden" +#: ../../include/conversation.php:690 +msgid "Filed under:" +msgstr "Gespeichert unter:" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Gewissermaßen geschieden" +#: ../../include/conversation.php:717 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Verwitwet" +#: ../../include/conversation.php:843 +msgid "remove" +msgstr "lösche" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Ungewiss" +#: ../../include/conversation.php:848 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Es ist kompliziert" +#: ../../include/conversation.php:942 +msgid "View Source" +msgstr "Quelle anzeigen" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Interessiert mich nicht" +#: ../../include/conversation.php:943 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Frag mich mal" +#: ../../include/conversation.php:944 +msgid "View Status" +msgstr "Status ansehen" -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" +#: ../../include/conversation.php:946 +msgid "View Photos" +msgstr "Fotos ansehen" -#: ../../include/permissions.php:14 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" +#: ../../include/conversation.php:947 +msgid "Matrix Activity" +msgstr "Matrix-Aktivität" -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" -msgstr "Kann meine Fotoalben betrachten" +#: ../../include/conversation.php:949 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" -#: ../../include/permissions.php:16 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" +#: ../../include/conversation.php:950 +msgid "Send PM" +msgstr "Sende PN" -#: ../../include/permissions.php:17 -msgid "Can view my file storage" -msgstr "Kann meine Dateiordner lesen" +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." -#: ../../include/permissions.php:18 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" +#: ../../include/conversation.php:1028 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d Person gefällt das." +msgstr[1] "%2$d Leuten gefällt das." -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" +#: ../../include/conversation.php:1030 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d Person gefällt das nicht." +msgstr[1] "%2$d Leuten gefällt das nicht." -#: ../../include/permissions.php:23 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" +#: ../../include/conversation.php:1036 +msgid "and" +msgstr "und" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" +#: ../../include/conversation.php:1039 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] ", und %d andere" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" +#: ../../include/conversation.php:1040 +#, php-format +msgid "%s like this." +msgstr "%s gefällt das." -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" +#: ../../include/conversation.php:1040 +#, php-format +msgid "%s don't like this." +msgstr "%s gefällt das nicht." -#: ../../include/permissions.php:26 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" +#: ../../include/conversation.php:1097 +msgid "Visible to everybody" +msgstr "Sichtbar für jeden" -#: ../../include/permissions.php:28 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" +#: ../../include/conversation.php:1098 ../../mod/mail.php:170 +#: ../../mod/mail.php:282 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" -#: ../../include/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" +#: ../../include/conversation.php:1099 +msgid "Please enter a video link/URL:" +msgstr "Gib einen Video-Link/URL ein:" -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" +#: ../../include/conversation.php:1100 +msgid "Please enter an audio link/URL:" +msgstr "Gib einen Audio-Link/URL ein:" -#: ../../include/permissions.php:30 -msgid "Can write to my file storage" -msgstr "Kann in meine Dateiordner schreiben" +#: ../../include/conversation.php:1101 +msgid "Tag term:" +msgstr "Schlagwort:" -#: ../../include/permissions.php:31 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" +#: ../../include/conversation.php:1102 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" -#: ../../include/permissions.php:33 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" +#: ../../include/conversation.php:1103 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" -#: ../../include/permissions.php:33 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" +#: ../../include/conversation.php:1104 ../../mod/editpost.php:52 +#: ../../mod/mail.php:171 ../../mod/mail.php:283 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verfällt YYYY-MM-DD HH;MM" -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" +#: ../../include/conversation.php:1128 ../../mod/photos.php:994 +#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 +#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 +msgid "Share" +msgstr "Teilen" -#: ../../include/permissions.php:35 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" +#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:139 +msgid "Page link title" +msgstr "Seitentitel-Link" -#: ../../include/permissions.php:738 -msgid "Social Networking" -msgstr "Soziales Netzwerk" +#: ../../include/conversation.php:1133 +msgid "Post as" +msgstr "Posten als" -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -#: ../../include/permissions.php:743 ../../include/permissions.php:745 -msgid "Mostly Public" -msgstr "Weitgehend öffentlich" +#: ../../include/conversation.php:1134 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:231 ../../mod/mail.php:345 +#: ../../mod/editblock.php:112 ../../mod/editlayout.php:107 +msgid "Upload photo" +msgstr "Foto hochladen" -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -#: ../../include/permissions.php:743 -msgid "Restricted" -msgstr "Beschränkt" +#: ../../include/conversation.php:1135 +msgid "upload photo" +msgstr "Foto hochladen" -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -msgid "Private" -msgstr "Privat" +#: ../../include/conversation.php:1136 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:232 ../../mod/mail.php:346 +#: ../../mod/editblock.php:113 ../../mod/editlayout.php:108 +msgid "Attach file" +msgstr "Datei anhängen" -#: ../../include/permissions.php:740 -msgid "Community Forum" -msgstr "Forum" +#: ../../include/conversation.php:1137 +msgid "attach file" +msgstr "Datei anfügen" -#: ../../include/permissions.php:742 -msgid "Feed Republish" -msgstr "Teilen von Feeds" +#: ../../include/conversation.php:1138 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:233 ../../mod/mail.php:347 +#: ../../mod/editblock.php:114 ../../mod/editlayout.php:109 +msgid "Insert web link" +msgstr "Link einfügen" -#: ../../include/permissions.php:744 -msgid "Celebrity/Soapbox" -msgstr "Mitteilungs-Kanal (keine Kommentare)" +#: ../../include/conversation.php:1139 +msgid "web link" +msgstr "Web-Link" -#: ../../include/permissions.php:747 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" +#: ../../include/conversation.php:1140 +msgid "Insert video link" +msgstr "Video-Link einfügen" -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" +#: ../../include/conversation.php:1141 +msgid "video link" +msgstr "Video-Link" -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." -msgstr "Menü nicht gefunden" +#: ../../include/conversation.php:1142 +msgid "Insert audio link" +msgstr "Audio-Link einfügen" -#: ../../mod/mitem.php:47 -msgid "Menu element updated." -msgstr "Menü-Element aktualisiert." +#: ../../include/conversation.php:1143 +msgid "audio link" +msgstr "Audio-Link" -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." +#: ../../include/conversation.php:1144 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:118 +#: ../../mod/editlayout.php:113 +msgid "Set your location" +msgstr "Standort" -#: ../../mod/mitem.php:57 -msgid "Menu element added." -msgstr "Menü-Bestandteil hinzugefügt." +#: ../../include/conversation.php:1145 +msgid "set location" +msgstr "Standort" -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." +#: ../../include/conversation.php:1146 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:151 ../../mod/editblock.php:119 +#: ../../mod/editlayout.php:114 +msgid "Clear browser location" +msgstr "Browser-Standort löschen" -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:38 -msgid "Not found." -msgstr "Nicht gefunden." +#: ../../include/conversation.php:1147 +msgid "clear location" +msgstr "Standort löschen" -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" -msgstr "Menü-Bestandteile verwalten" +#: ../../include/conversation.php:1149 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:167 ../../mod/editblock.php:132 +#: ../../mod/editlayout.php:126 +msgid "Set title" +msgstr "Titel" -#: ../../mod/mitem.php:99 -msgid "Edit menu" -msgstr "Menü bearbeiten" +#: ../../include/conversation.php:1152 ../../mod/editpost.php:134 +#: ../../mod/editwebpage.php:169 ../../mod/events.php:560 +#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../mod/mitem.php:102 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" +#: ../../include/conversation.php:1154 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:121 +#: ../../mod/editlayout.php:116 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" -#: ../../mod/mitem.php:103 -msgid "Drop element" -msgstr "Bestandteil löschen" +#: ../../include/conversation.php:1155 +msgid "permissions" +msgstr "Berechtigungen" -#: ../../mod/mitem.php:104 -msgid "New element" -msgstr "Neues Bestandteil" +#: ../../include/conversation.php:1162 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:162 ../../mod/editblock.php:129 +#: ../../mod/editlayout.php:123 +msgid "Public post" +msgstr "Öffentlicher Beitrag" -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" +#: ../../include/conversation.php:1164 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:170 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:130 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Beispiel: bob@example.com, mary@example.com" -#: ../../mod/mitem.php:106 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" +#: ../../include/conversation.php:1177 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:179 ../../mod/mail.php:238 ../../mod/mail.php:352 +#: ../../mod/editblock.php:146 ../../mod/editlayout.php:140 +msgid "Set expiration date" +msgstr "Verfallsdatum" -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" +#: ../../include/conversation.php:1181 ../../mod/editpost.php:150 +#: ../../mod/events.php:567 +msgid "OK" +msgstr "Ok" -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" +#: ../../include/conversation.php:1182 ../../mod/settings.php:520 +#: ../../mod/settings.php:546 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:151 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/events.php:566 +msgid "Cancel" +msgstr "Abbrechen" -#: ../../mod/mitem.php:131 -msgid "New Menu Element" -msgstr "Neues Menü-Bestandteil" +#: ../../include/conversation.php:1426 +msgid "Discover" +msgstr "Entdecken" -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" +#: ../../include/conversation.php:1429 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:980 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" +#: ../../include/conversation.php:1434 +msgid "Commented Order" +msgstr "Neueste Kommentare" -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" -msgstr "Link Text" +#: ../../include/conversation.php:1437 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" -msgstr "URL des Links" +#: ../../include/conversation.php:1441 +msgid "Posted Order" +msgstr "Neueste Beiträge" -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" -msgstr "Verwende Red Magic-Auth wenn verfügbar" +#: ../../include/conversation.php:1444 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" +#: ../../include/conversation.php:1449 ../../include/widgets.php:89 +msgid "Personal" +msgstr "Persönlich" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" +#: ../../include/conversation.php:1452 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" +#: ../../include/conversation.php:1458 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" +msgstr "Neu" -#: ../../mod/mitem.php:154 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." +#: ../../include/conversation.php:1461 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." +#: ../../include/conversation.php:1467 +msgid "Starred" +msgstr "Markiert" -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." +#: ../../include/conversation.php:1470 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" +#: ../../include/conversation.php:1477 +msgid "Spam" +msgstr "Spam" -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" -msgstr "Ändern" +#: ../../include/conversation.php:1480 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" +#: ../../include/conversation.php:1516 ../../mod/admin.php:867 +msgid "Channel" +msgstr "Kanal" -#: ../../mod/ping.php:237 -msgid "sent you a private message" -msgstr "eine private Nachricht schicken" +#: ../../include/conversation.php:1519 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" -#: ../../mod/ping.php:288 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" +#: ../../include/conversation.php:1528 +msgid "About" +msgstr "Über" -#: ../../mod/ping.php:329 -msgid "posted an event" -msgstr "hat eine Veranstaltung veröffentlicht" +#: ../../include/conversation.php:1531 +msgid "Profile Details" +msgstr "Profil-Details" -#: ../../mod/acl.php:244 -msgid "network" -msgstr "Netzwerk" +#: ../../include/conversation.php:1549 +msgid "Files and Storage" +msgstr "Dateien und Speicher" -#: ../../mod/settings.php:71 -msgid "Name is required" -msgstr "Name ist erforderlich" +#: ../../include/conversation.php:1558 ../../include/conversation.php:1561 +msgid "Chatrooms" +msgstr "Chaträume" -#: ../../mod/settings.php:75 -msgid "Key and Secret are required" -msgstr "Schlüssel und Geheimnis werden benötigt" +#: ../../include/conversation.php:1573 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" -#: ../../mod/settings.php:198 -msgid "Passwords do not match. Password unchanged." -msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." +#: ../../include/conversation.php:1584 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" -#: ../../mod/settings.php:202 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." +#: ../../include/bb2diaspora.php:360 +msgid "Attachments:" +msgstr "Anhänge:" -#: ../../mod/settings.php:216 -msgid "Password changed." -msgstr "Kennwort geändert." +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit" -#: ../../mod/settings.php:218 -msgid "Password update failed. Please try again." -msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Zeigen" -#: ../../mod/settings.php:232 -msgid "Not valid email." -msgstr "Keine gültige E-Mail Adresse." +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Nicht zeigen" -#: ../../mod/settings.php:235 -msgid "Protected email address. Cannot change to that email." -msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." +#: ../../include/acl_selectors.php:248 ../../mod/filestorage.php:137 +#: ../../mod/photos.php:604 ../../mod/photos.php:970 ../../mod/chat.php:209 +#: ../../mod/events.php:585 +msgid "Permissions" +msgstr "Berechtigungen" -#: ../../mod/settings.php:244 -msgid "System failure storing new email. Please try again." -msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." +#: ../../include/widgets.php:87 +msgid "System" +msgstr "System" -#: ../../mod/settings.php:447 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." +#: ../../include/widgets.php:90 +msgid "Create Personal App" +msgstr "Persönliche App erstellen" -#: ../../mod/settings.php:518 ../../mod/settings.php:544 -#: ../../mod/settings.php:580 -msgid "Add application" -msgstr "Anwendung hinzufügen" +#: ../../include/widgets.php:91 +msgid "Edit Personal App" +msgstr "Persönliche App bearbeiten" -#: ../../mod/settings.php:521 -msgid "Name of application" -msgstr "Name der Anwendung" +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" -#: ../../mod/settings.php:522 ../../mod/settings.php:548 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../mod/settings.php:522 ../../mod/settings.php:523 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Mehr anzeigen …" -#: ../../mod/settings.php:523 ../../mod/settings.php:549 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." -#: ../../mod/settings.php:524 ../../mod/settings.php:550 -msgid "Redirect" -msgstr "Umleitung" +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" -#: ../../mod/settings.php:524 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Adresse des Kanals eingeben" -#: ../../mod/settings.php:525 ../../mod/settings.php:551 -msgid "Icon url" -msgstr "Symbol-URL" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" -#: ../../mod/settings.php:525 -msgid "Optional" -msgstr "Optional" +#: ../../include/widgets.php:191 +msgid "Notes" +msgstr "Notizen" -#: ../../mod/settings.php:536 -msgid "You can't edit this application." -msgstr "Diese Anwendung kann nicht bearbeitet werden." +#: ../../include/widgets.php:263 +msgid "Remove term" +msgstr "Eintrag löschen" -#: ../../mod/settings.php:579 -msgid "Connected Apps" -msgstr "Verbundene Apps" +#: ../../include/widgets.php:342 +msgid "Archives" +msgstr "Archive" -#: ../../mod/settings.php:583 -msgid "Client key starts with" -msgstr "Client Key beginnt mit" +#: ../../include/widgets.php:404 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../mod/settings.php:584 -msgid "No name" -msgstr "Kein Name" +#: ../../include/widgets.php:405 ../../mod/connedit.php:492 +msgid "Me" +msgstr "Ich" -#: ../../mod/settings.php:585 -msgid "Remove authorization" -msgstr "Authorisierung aufheben" +#: ../../include/widgets.php:406 ../../mod/connedit.php:494 +msgid "Best Friends" +msgstr "Beste Freunde" -#: ../../mod/settings.php:596 -msgid "No feature settings configured" -msgstr "Keine Funktions-Einstellungen konfiguriert" +#: ../../include/widgets.php:408 +msgid "Co-workers" +msgstr "Kollegen" -#: ../../mod/settings.php:604 -msgid "Feature Settings" -msgstr "Funktions-Einstellungen" +#: ../../include/widgets.php:409 ../../mod/connedit.php:496 +msgid "Former Friends" +msgstr "ehem. Freunde" -#: ../../mod/settings.php:627 -msgid "Account Settings" -msgstr "Konto-Einstellungen" +#: ../../include/widgets.php:410 ../../mod/connedit.php:497 +msgid "Acquaintances" +msgstr "Bekannte" -#: ../../mod/settings.php:628 -msgid "Password Settings" -msgstr "Kennwort-Einstellungen" +#: ../../include/widgets.php:411 +msgid "Everybody" +msgstr "Jeder" -#: ../../mod/settings.php:629 -msgid "New Password:" -msgstr "Neues Passwort:" +#: ../../include/widgets.php:443 +msgid "Account settings" +msgstr "Konto-Einstellungen" + +#: ../../include/widgets.php:449 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" + +#: ../../include/widgets.php:455 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" + +#: ../../include/widgets.php:461 +msgid "Feature settings" +msgstr "Funktions-Einstellungen" + +#: ../../include/widgets.php:467 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" + +#: ../../include/widgets.php:473 +msgid "Connected apps" +msgstr "Verbundene Apps" + +#: ../../include/widgets.php:479 +msgid "Export channel" +msgstr "Kanal exportieren" + +#: ../../include/widgets.php:485 +msgid "Export content" +msgstr "Kanal-Inhalte exportieren" + +#: ../../include/widgets.php:491 +msgid "Automatic Permissions (Advanced)" +msgstr "Automatische Berechtigungen (Erweitert)" + +#: ../../include/widgets.php:501 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" + +#: ../../include/widgets.php:535 ../../mod/message.php:31 +#: ../../mod/mail.php:124 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../include/widgets.php:540 +msgid "Check Mail" +msgstr "E-Mails abrufen" + +#: ../../include/widgets.php:621 +msgid "Chat Rooms" +msgstr "Chaträume" + +#: ../../include/widgets.php:639 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" + +#: ../../include/widgets.php:657 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" + +#: ../../include/follow.php:26 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " + +#: ../../include/follow.php:31 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." + +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." + +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." + +#: ../../include/follow.php:133 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." + +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" + +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "Lokales Konto nicht gefunden." + +#: ../../include/follow.php:219 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." + +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." + +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." + +#: ../../mod/settings.php:71 +msgid "Name is required" +msgstr "Name ist erforderlich" + +#: ../../mod/settings.php:75 +msgid "Key and Secret are required" +msgstr "Schlüssel und Geheimnis werden benötigt" + +#: ../../mod/settings.php:198 +msgid "Passwords do not match. Password unchanged." +msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." + +#: ../../mod/settings.php:202 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." + +#: ../../mod/settings.php:216 +msgid "Password changed." +msgstr "Kennwort geändert." + +#: ../../mod/settings.php:218 +msgid "Password update failed. Please try again." +msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." + +#: ../../mod/settings.php:232 +msgid "Not valid email." +msgstr "Keine gültige E-Mail Adresse." + +#: ../../mod/settings.php:235 +msgid "Protected email address. Cannot change to that email." +msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." + +#: ../../mod/settings.php:244 +msgid "System failure storing new email. Please try again." +msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." + +#: ../../mod/settings.php:447 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: ../../mod/settings.php:518 ../../mod/settings.php:544 +#: ../../mod/settings.php:580 +msgid "Add application" +msgstr "Anwendung hinzufügen" + +#: ../../mod/settings.php:521 +msgid "Name of application" +msgstr "Name der Anwendung" + +#: ../../mod/settings.php:522 ../../mod/settings.php:548 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:522 ../../mod/settings.php:523 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" + +#: ../../mod/settings.php:523 ../../mod/settings.php:549 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../mod/settings.php:524 ../../mod/settings.php:550 +msgid "Redirect" +msgstr "Umleitung" + +#: ../../mod/settings.php:524 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert" + +#: ../../mod/settings.php:525 ../../mod/settings.php:551 +msgid "Icon url" +msgstr "Symbol-URL" + +#: ../../mod/settings.php:525 +msgid "Optional" +msgstr "Optional" + +#: ../../mod/settings.php:536 +msgid "You can't edit this application." +msgstr "Diese Anwendung kann nicht bearbeitet werden." + +#: ../../mod/settings.php:579 +msgid "Connected Apps" +msgstr "Verbundene Apps" + +#: ../../mod/settings.php:583 +msgid "Client key starts with" +msgstr "Client Key beginnt mit" + +#: ../../mod/settings.php:584 +msgid "No name" +msgstr "Kein Name" + +#: ../../mod/settings.php:585 +msgid "Remove authorization" +msgstr "Authorisierung aufheben" + +#: ../../mod/settings.php:596 +msgid "No feature settings configured" +msgstr "Keine Funktions-Einstellungen konfiguriert" + +#: ../../mod/settings.php:604 +msgid "Feature Settings" +msgstr "Funktions-Einstellungen" + +#: ../../mod/settings.php:627 +msgid "Account Settings" +msgstr "Konto-Einstellungen" + +#: ../../mod/settings.php:628 +msgid "Password Settings" +msgstr "Kennwort-Einstellungen" + +#: ../../mod/settings.php:629 +msgid "New Password:" +msgstr "Neues Passwort:" #: ../../mod/settings.php:630 msgid "Confirm:" @@ -4032,14 +4086,14 @@ msgid "Publish your default profile in the network directory" msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" #: ../../mod/settings.php:891 ../../mod/settings.php:896 -#: ../../mod/settings.php:973 ../../mod/api.php:106 ../../mod/profiles.php:602 -#: ../../mod/admin.php:392 +#: ../../mod/settings.php:973 ../../mod/admin.php:392 +#: ../../mod/profiles.php:602 ../../mod/api.php:106 msgid "No" msgstr "Nein" #: ../../mod/settings.php:891 ../../mod/settings.php:896 -#: ../../mod/settings.php:973 ../../mod/api.php:105 ../../mod/profiles.php:601 -#: ../../mod/admin.php:394 +#: ../../mod/settings.php:973 ../../mod/admin.php:394 +#: ../../mod/profiles.php:601 ../../mod/api.php:105 msgid "Yes" msgstr "Ja" @@ -4161,6 +4215,10 @@ msgstr "Kann die Spam-Aktivität verringern" msgid "Default Post Permissions" msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" +#: ../../mod/settings.php:980 ../../mod/mitem.php:134 ../../mod/mitem.php:177 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" + #: ../../mod/settings.php:991 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" @@ -4251,734 +4309,793 @@ msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" msgid "Remove this channel" msgstr "Diesen Kanal löschen" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" +#: ../../mod/filestorage.php:76 +msgid "Permission Denied." +msgstr "Zugriff verweigert." -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" +#: ../../mod/filestorage.php:92 +msgid "File not found." +msgstr "Datei nicht gefunden." -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Empfänger" +#: ../../mod/filestorage.php:131 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" +#: ../../mod/filestorage.php:140 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" +#: ../../mod/filestorage.php:141 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" +#: ../../mod/filestorage.php:142 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." +#: ../../mod/filestorage.php:144 +msgid "Copy/paste this code to attach file to a post" +msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" -#: ../../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 "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" +#: ../../mod/filestorage.php:145 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." +#: ../../mod/home.php:46 +msgid "Red Matrix - "The Network"" +msgstr "RedMatrix – "Das Netzwerk"" -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#: ../../mod/home.php:101 #, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Element nicht verfügbar." +msgid "Welcome to %s" +msgstr "Willkommen auf %s" #: ../../mod/probe.php:23 ../../mod/probe.php:29 #, php-format msgid "Fetching URL returns error: %1$s" msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." -msgstr "Ungültiges Element." - -#: ../../mod/block.php:39 ../../mod/page.php:47 ../../mod/wall_upload.php:28 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." +#: ../../mod/update_network.php:23 ../../mod/update_display.php:25 +#: ../../mod/update_search.php:46 ../../mod/update_channel.php:43 +msgid "[Embedded content - reload page to view]" +msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" -#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:102 -#: ../../mod/help.php:72 ../../index.php:240 -msgid "Page not found." -msgstr "Seite nicht gefunden." +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Kanal hinzufügen" -#: ../../mod/siteinfo.php:90 -#, php-format -msgid "Version %s" -msgstr "Version %s" +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt." -#: ../../mod/siteinfo.php:109 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" +#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Name des Kanals" -#: ../../mod/siteinfo.php:122 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " -#: ../../mod/siteinfo.php:130 -msgid "Red" -msgstr "Red" +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" -#: ../../mod/siteinfo.php:131 +#: ../../mod/new_channel.php:115 msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst." -#: ../../mod/siteinfo.php:134 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Oder importiere einen bestehenden Kanal von einem anderen Server" -#: ../../mod/siteinfo.php:135 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "Besuche GetZot.com, um mehr über die Red-Matrix zu erfahren." +#: ../../mod/new_channel.php:118 +msgid "Channel Type" +msgstr "Kanaltyp" -#: ../../mod/siteinfo.php:136 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../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 "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können" -#: ../../mod/siteinfo.php:139 +#: ../../mod/rmagic.php:38 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." -#: ../../mod/siteinfo.php:141 -msgid "Site Administrators" -msgstr "Administratoren" +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" -#: ../../mod/blocks.php:62 -msgid "Block Name" -msgstr "Block-Name" +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:575 -msgid "Profile not found." -msgstr "Profil nicht gefunden." +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil gelöscht." +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Authentifizieren" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Neues Profil erstellt." +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Theme-Einstellungen aktualisiert." -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profil kann nicht geklont werden." +#: ../../mod/admin.php:97 ../../mod/admin.php:413 +msgid "Site" +msgstr "Seite" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Dieses Profil kann nicht exportiert werden." +#: ../../mod/admin.php:98 +msgid "Accounts" +msgstr "Konten" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "Profil-Name erforderlich." +#: ../../mod/admin.php:99 ../../mod/admin.php:860 +msgid "Channels" +msgstr "Kanäle" -#: ../../mod/profiles.php:390 -msgid "Marital Status" -msgstr "Familienstand" +#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 +msgid "Plugins" +msgstr "Plug-Ins" -#: ../../mod/profiles.php:394 -msgid "Romantic Partner" -msgstr "Romantische Partner" +#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 +msgid "Themes" +msgstr "Themes" -#: ../../mod/profiles.php:398 -msgid "Likes" -msgstr "Gefällt" +#: ../../mod/admin.php:102 ../../mod/admin.php:515 +msgid "Server" +msgstr "Server" -#: ../../mod/profiles.php:402 -msgid "Dislikes" -msgstr "Gefällt nicht" +#: ../../mod/admin.php:103 +msgid "Profile Config" +msgstr "Profilkonfiguration" -#: ../../mod/profiles.php:406 -msgid "Work/Employment" -msgstr "Arbeit/Anstellung" +#: ../../mod/admin.php:104 +msgid "DB updates" +msgstr "DB-Aktualisierungen" -#: ../../mod/profiles.php:409 -msgid "Religion" -msgstr "Religion" +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 +msgid "Logs" +msgstr "Protokolle" -#: ../../mod/profiles.php:413 -msgid "Political Views" -msgstr "Politische Ansichten" +#: ../../mod/admin.php:124 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" -#: ../../mod/profiles.php:417 -msgid "Gender" -msgstr "Geschlecht" +#: ../../mod/admin.php:126 +msgid "User registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" -#: ../../mod/profiles.php:421 -msgid "Sexual Preference" -msgstr "Sexuelle Orientierung" +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" -#: ../../mod/profiles.php:425 -msgid "Homepage" -msgstr "Webseite" +#: ../../mod/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 +#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:950 +#: ../../mod/admin.php:992 ../../mod/admin.php:1155 ../../mod/admin.php:1191 +#: ../../mod/admin.php:1278 +msgid "Administration" +msgstr "Administration" -#: ../../mod/profiles.php:429 -msgid "Interests" -msgstr "Hobbys/Interessen" +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Zusammenfassung" -#: ../../mod/profiles.php:433 ../../mod/admin.php:868 -msgid "Address" -msgstr "Adresse" +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Registrierte Benutzer" -#: ../../mod/profiles.php:440 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Ort" +#: ../../mod/admin.php:216 ../../mod/admin.php:518 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" -#: ../../mod/profiles.php:523 -msgid "Profile updated." -msgstr "Profil aktualisiert." +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Version" -#: ../../mod/profiles.php:600 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" +#: ../../mod/admin.php:219 ../../mod/admin.php:519 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" -#: ../../mod/profiles.php:642 -msgid "Edit Profile Details" -msgstr "Bearbeite Profil-Details" +#: ../../mod/admin.php:333 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." -#: ../../mod/profiles.php:644 -msgid "View this profile" -msgstr "Dieses Profil ansehen" +#: ../../mod/admin.php:364 +msgid "No special theme for accessibility" +msgstr "Kein spezielles Accessibility-Theme vorhanden" -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" -msgstr "Profilfoto ändern" +#: ../../mod/admin.php:393 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" -#: ../../mod/profiles.php:647 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" +#: ../../mod/admin.php:399 +msgid "My site is not a public server" +msgstr "Meine Server ist kein öffentlicher Server" -#: ../../mod/profiles.php:648 -msgid "Clone this profile" -msgstr "Dieses Profil klonen" +#: ../../mod/admin.php:400 +msgid "My site has paid access only" +msgstr "Mein Server erlaubt nur bezahlten Zugang" -#: ../../mod/profiles.php:649 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" +#: ../../mod/admin.php:401 +msgid "My site has free access only" +msgstr "Mein Server erlaubt ausschließlich freien Zugang" -#: ../../mod/profiles.php:651 -msgid "Import profile from file" -msgstr "Profil aus einer Datei importieren" +#: ../../mod/admin.php:402 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../mod/profiles.php:652 -msgid "Export profile to file" -msgstr "Profil in eine Datei exportieren" +#: ../../mod/admin.php:415 ../../mod/register.php:203 +msgid "Registration" +msgstr "Registrierung" -#: ../../mod/profiles.php:653 -msgid "Profile Name:" -msgstr "Profilname:" +#: ../../mod/admin.php:416 +msgid "File upload" +msgstr "Dateiupload" -#: ../../mod/profiles.php:654 -msgid "Your Full Name:" -msgstr "Dein voller Name:" +#: ../../mod/admin.php:417 +msgid "Policies" +msgstr "Richtlinien" -#: ../../mod/profiles.php:655 -msgid "Title/Description:" -msgstr "Titel/Stellenbeschreibung:" +#: ../../mod/admin.php:422 +msgid "Site name" +msgstr "Seitenname" -#: ../../mod/profiles.php:656 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" +#: ../../mod/admin.php:423 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../mod/profiles.php:657 -#, php-format -msgid "Birthday (%s):" -msgstr "Geburtstag (%s):" +#: ../../mod/admin.php:424 +msgid "Administrator Information" +msgstr "Administrator-Informationen" -#: ../../mod/profiles.php:658 -msgid "Street Address:" -msgstr "Straße und Hausnummer:" +#: ../../mod/admin.php:424 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." -#: ../../mod/profiles.php:659 -msgid "Locality/City:" -msgstr "Wohnort:" +#: ../../mod/admin.php:425 +msgid "System language" +msgstr "System-Sprache" -#: ../../mod/profiles.php:660 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" +#: ../../mod/admin.php:426 +msgid "System theme" +msgstr "System-Theme" -#: ../../mod/profiles.php:661 -msgid "Country:" -msgstr "Land:" +#: ../../mod/admin.php:426 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" -#: ../../mod/profiles.php:662 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" +#: ../../mod/admin.php:427 +msgid "Mobile system theme" +msgstr "Mobile System-Theme:" -#: ../../mod/profiles.php:663 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" +#: ../../mod/admin.php:427 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" -#: ../../mod/profiles.php:664 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" +#: ../../mod/admin.php:428 +msgid "Accessibility system theme" +msgstr "Accessibility-System-Theme" -#: ../../mod/profiles.php:665 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/admin.php:428 +msgid "Accessibility theme" +msgstr "Accessibility-Theme" -#: ../../mod/profiles.php:666 -msgid "Since [date]:" -msgstr "Seit [Datum]:" +#: ../../mod/admin.php:430 +msgid "Enable Diaspora Protocol" +msgstr "Diaspora-Protokoll aktivieren" -#: ../../mod/profiles.php:668 -msgid "Homepage URL:" -msgstr "Homepage URL:" +#: ../../mod/admin.php:430 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "Kommunikation mit Diaspora und Friendica – experimentell" -#: ../../mod/profiles.php:671 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" +#: ../../mod/admin.php:431 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" -#: ../../mod/profiles.php:672 -msgid "Keywords:" -msgstr "Schlüsselwörter:" +#: ../../mod/admin.php:431 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" -#: ../../mod/profiles.php:675 -msgid "Example: fishing photography software" -msgstr "Beispiel: Angeln Fotografie Software" +#: ../../mod/admin.php:432 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" -#: ../../mod/profiles.php:676 -msgid "Used in directory listings" -msgstr "Wird in Verzeichnis-Auflistungen verwendet" +#: ../../mod/admin.php:432 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." -#: ../../mod/profiles.php:677 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein wenig von Dir …" +#: ../../mod/admin.php:433 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../mod/profiles.php:678 -msgid "Hobbies/Interests" -msgstr "Hobbys/Interessen" +#: ../../mod/admin.php:434 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../mod/profiles.php:679 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformation und soziale Netzwerke" +#: ../../mod/admin.php:435 +msgid "Register text" +msgstr "Registrierungstext" -#: ../../mod/profiles.php:680 -msgid "My other channels" -msgstr "Meine anderen Kanäle" +#: ../../mod/admin.php:435 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../mod/profiles.php:681 -msgid "Musical interests" -msgstr "Musikalische Interessen" +#: ../../mod/admin.php:436 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../mod/profiles.php:682 -msgid "Books, literature" -msgstr "Bücher, Literatur" +#: ../../mod/admin.php:436 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." -#: ../../mod/profiles.php:683 -msgid "Television" -msgstr "Fernsehen" +#: ../../mod/admin.php:437 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" -#: ../../mod/profiles.php:684 -msgid "Film/dance/culture/entertainment" -msgstr "Film/Tanz/Kultur/Unterhaltung" +#: ../../mod/admin.php:437 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/profiles.php:685 -msgid "Love/romance" -msgstr "Liebe/Romantik" +#: ../../mod/admin.php:438 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" -#: ../../mod/profiles.php:686 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" +#: ../../mod/admin.php:438 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/profiles.php:687 -msgid "School/education" -msgstr "Schule/Ausbildung" +#: ../../mod/admin.php:439 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" -#: ../../mod/profiles.php:693 -msgid "This is your default profile." -msgstr "Das ist Dein Standardprofil" +#: ../../mod/admin.php:439 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist." -#: ../../mod/profiles.php:704 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "Alter:" +#: ../../mod/admin.php:440 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" -#: ../../mod/profiles.php:747 -msgid "Edit/Manage Profiles" -msgstr "Profile bearbeiten/verwalten" +#: ../../mod/admin.php:440 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." -#: ../../mod/profiles.php:748 -msgid "Add profile things" -msgstr "Sachen zum Profil hinzufügen" - -#: ../../mod/profiles.php:749 -msgid "Include desirable objects in your profile" -msgstr "Binde begehrenswerte Dinge in Dein Profil ein" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Sichtbar für" +#: ../../mod/admin.php:441 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "Alle Verbindungen" +#: ../../mod/admin.php:441 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Öffentliche Server" +#: ../../mod/admin.php:442 +msgid "Disable discovery tab" +msgstr "Den „Entdecken“-Reiter ausblenden" -#: ../../mod/pubsites.php:19 +#: ../../mod/admin.php:442 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 "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen." +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte von anderen RedMatrix-Hubs angezeigt werden können." -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "Server-URL" +#: ../../mod/admin.php:443 +msgid "No login on Homepage" +msgstr "Kein Login auf der Homepage" -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Zugangstyp" +#: ../../mod/admin.php:443 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)." -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" +#: ../../mod/admin.php:445 +msgid "Proxy user" +msgstr "Proxy Benutzer" -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." +#: ../../mod/admin.php:446 +msgid "Proxy URL" +msgstr "Proxy URL" -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." +#: ../../mod/admin.php:447 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" +#: ../../mod/admin.php:447 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" +#: ../../mod/admin.php:448 +msgid "Delivery interval" +msgstr "Auslieferung Intervall" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" +#: ../../mod/admin.php:448 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Beschreibung" +#: ../../mod/admin.php:449 +msgid "Poll interval" +msgstr "Abfrageintervall" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" +#: ../../mod/admin.php:449 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" +#: ../../mod/admin.php:450 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Raum verlassen" +#: ../../mod/admin.php:450 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Diesen Raum löschen" +#: ../../mod/admin.php:506 +msgid "No server found" +msgstr "Kein Server gefunden" -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" +#: ../../mod/admin.php:513 ../../mod/admin.php:737 +msgid "ID" +msgstr "ID" -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ich bin online" +#: ../../mod/admin.php:513 +msgid "for channel" +msgstr "für Kanal" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" +#: ../../mod/admin.php:513 +msgid "on server" +msgstr "auf Server" -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Neuer Chatraum" +#: ../../mod/admin.php:513 +msgid "Status" +msgstr "Status" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Name des Chatraums" +#: ../../mod/admin.php:534 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" -#: ../../mod/chat.php:225 +#: ../../mod/admin.php:544 #, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" +msgid "Executing %s failed. Check system logs." +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." -#: ../../mod/register.php:42 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." +#: ../../mod/admin.php:547 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s wurde erfolgreich ausgeführt." -#: ../../mod/register.php:48 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." +#: ../../mod/admin.php:551 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." -#: ../../mod/register.php:82 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." +#: ../../mod/admin.php:554 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-Funktion %s konnte nicht gefunden werden." -#: ../../mod/register.php:115 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." +#: ../../mod/admin.php:569 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." -#: ../../mod/register.php:121 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." +#: ../../mod/admin.php:573 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Aktualisierungen" -#: ../../mod/register.php:124 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." +#: ../../mod/admin.php:575 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" -#: ../../mod/register.php:161 -msgid "Registration on this site/hub is by approval only." -msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" +#: ../../mod/admin.php:576 +msgid "Attempt to execute this update step automatically" +msgstr "Versuche, diesen Updateschritt automatisch auszuführen" -#: ../../mod/register.php:162 -msgid "Register at another affiliated site/hub" -msgstr "Registrierung auf einem anderen, angeschlossenen Server" +#: ../../mod/admin.php:602 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s Nutzer blockiert/freigegeben" +msgstr[1] "%s Nutzer blockiert/freigegeben" -#: ../../mod/register.php:170 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." +#: ../../mod/admin.php:609 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s Nutzer gelöscht" +msgstr[1] "%s Nutzer gelöscht" -#: ../../mod/register.php:181 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" +#: ../../mod/admin.php:638 +msgid "Account not found" +msgstr "Konto nicht gefunden" -#: ../../mod/register.php:187 +#: ../../mod/admin.php:658 #, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" +msgid "User '%s' unblocked" +msgstr "Benutzer '%s' freigegeben" -#: ../../mod/register.php:189 +#: ../../mod/admin.php:658 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" - -#: ../../mod/register.php:203 ../../mod/admin.php:415 -msgid "Registration" -msgstr "Registrierung" - -#: ../../mod/register.php:208 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." +msgid "User '%s' blocked" +msgstr "Benutzer '%s' blockiert" -#: ../../mod/register.php:209 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" +#: ../../mod/admin.php:724 ../../mod/admin.php:736 +msgid "Users" +msgstr "Benutzer" -#: ../../mod/register.php:212 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" +#: ../../mod/admin.php:726 ../../mod/admin.php:862 +msgid "select all" +msgstr "Alle auswählen" -#: ../../mod/register.php:213 -msgid "Choose a password" -msgstr "Passwort" +#: ../../mod/admin.php:727 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" -#: ../../mod/register.php:214 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" +#: ../../mod/admin.php:728 +msgid "Request date" +msgstr "Antragsdatum" -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Abwesend" +#: ../../mod/admin.php:729 +msgid "No registrations." +msgstr "Keine Registrierungen." -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" +#: ../../mod/admin.php:730 +msgid "Approve" +msgstr "Genehmigen" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Bitte melde dich an." +#: ../../mod/admin.php:731 +msgid "Deny" +msgstr "Verweigern" -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" +#: ../../mod/admin.php:733 ../../mod/connedit.php:436 +#: ../../mod/connedit.php:579 +msgid "Block" +msgstr "Blockieren" -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." +#: ../../mod/admin.php:734 ../../mod/connedit.php:436 +#: ../../mod/connedit.php:579 +msgid "Unblock" +msgstr "Freigeben" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Diesen Kanal löschen" +#: ../../mod/admin.php:737 +msgid "Register date" +msgstr "Registrierungs-Datum" -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet kann dieser Prozess nicht rückgängig gemacht werden." +#: ../../mod/admin.php:737 +msgid "Last login" +msgstr "Letzte Anmeldung" -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" +#: ../../mod/admin.php:737 +msgid "Expires" +msgstr "Verfällt" -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" +#: ../../mod/admin.php:737 +msgid "Service Class" +msgstr "Service-Klasse" -#: ../../mod/removeme.php:60 +#: ../../mod/admin.php:739 msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" - -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanal löschen" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Kein Kanal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?" -#: ../../mod/rmagic.php:38 +#: ../../mod/admin.php:740 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" +#: ../../mod/admin.php:773 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s Kanal gesperrt/freigegeben" +msgstr[1] "%s Kanäle gesperrt/freigegeben" -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." +#: ../../mod/admin.php:780 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s Kanal gelöscht" +msgstr[1] "%s Kanäle gelöscht" -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" +#: ../../mod/admin.php:799 +msgid "Channel not found" +msgstr "Kanal nicht gefunden" -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" +#: ../../mod/admin.php:810 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanal '%s' gelöscht" -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authentifizieren" +#: ../../mod/admin.php:821 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Fortfahren" +#: ../../mod/admin.php:821 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' gesperrt" -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" +#: ../../mod/admin.php:864 +msgid "Censor" +msgstr "Sperren" -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" +#: ../../mod/admin.php:865 +msgid "Uncensor" +msgstr "Freigeben" -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." +#: ../../mod/admin.php:868 +msgid "UID" +msgstr "UID" -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." +#: ../../mod/admin.php:868 ../../mod/profiles.php:433 +msgid "Address" +msgstr "Adresse" -#: ../../mod/connect.php:90 +#: ../../mod/admin.php:870 msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" -#: ../../mod/connect.php:91 ../../mod/connect.php:112 +#: ../../mod/admin.php:871 msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite." +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" +#: ../../mod/admin.php:910 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-In %s deaktiviert." -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" +#: ../../mod/admin.php:914 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-In %s aktiviert." -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Gruppe existiert nicht" +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +msgid "Disable" +msgstr "Deaktivieren" -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../mod/admin.php:926 ../../mod/admin.php:1128 +msgid "Enable" +msgstr "Aktivieren" -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "Sammlung ist leer" +#: ../../mod/admin.php:952 ../../mod/admin.php:1157 +msgid "Toggle" +msgstr "Umschalten" -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "Sammlung:" +#: ../../mod/admin.php:960 ../../mod/admin.php:1167 +msgid "Author: " +msgstr "Autor: " -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "Verbindung:" +#: ../../mod/admin.php:961 ../../mod/admin.php:1168 +msgid "Maintainer: " +msgstr "Betreuer:" -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." +#: ../../mod/admin.php:1090 +msgid "No themes found." +msgstr "Keine Theme gefunden." + +#: ../../mod/admin.php:1149 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: ../../mod/admin.php:1197 +msgid "[Experimental]" +msgstr "[Experimentell]" + +#: ../../mod/admin.php:1198 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" + +#: ../../mod/admin.php:1225 +msgid "Log settings updated." +msgstr "Protokoll-Einstellungen aktualisiert." + +#: ../../mod/admin.php:1281 +msgid "Clear" +msgstr "Leeren" + +#: ../../mod/admin.php:1287 +msgid "Debugging" +msgstr "Debugging" + +#: ../../mod/admin.php:1288 +msgid "Log file" +msgstr "Protokolldatei" + +#: ../../mod/admin.php:1288 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis." + +#: ../../mod/admin.php:1289 +msgid "Log level" +msgstr "Protokollstufe" + +#: ../../mod/admin.php:1336 +msgid "New Profile Field" +msgstr "Neues Profilfeld" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Field nickname" +msgstr "Kurzname für das Feld" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "System name of field" +msgstr "Systemname des Feldes" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Input type" +msgstr "Art des Inhalts" + +#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Field Name" +msgstr "Feldname" + +#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Label on profile pages" +msgstr "Bezeichnung auf Profilseiten" + +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +msgid "Help text" +msgstr "Hilfetext" + +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +msgid "Additional info (optional)" +msgstr "Zusätzliche Informationen (optional)" + +#: ../../mod/admin.php:1351 +msgid "Field definition not found" +msgstr "Feld-Definition nicht gefunden" + +#: ../../mod/admin.php:1357 +msgid "Edit Profile Field" +msgstr "Profilfeld bearbeiten" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "– auswählen –" #: ../../mod/connections.php:37 ../../mod/connedit.php:64 msgid "Could not access contact record." @@ -5028,6 +5145,10 @@ msgstr "Neue Verbindungen" msgid "Show pending (new) connections" msgstr "Zeige ausstehende (neue) Verbindungsanfragen" +#: ../../mod/connections.php:279 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle Verbindungen" + #: ../../mod/connections.php:282 msgid "Show all connections" msgstr "Zeige alle Verbindungen" @@ -5073,963 +5194,351 @@ msgstr "Verbindungen durchsuchen" msgid "Finding: " msgstr "Ergebnisse:" -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../mod/dirprofile.php:9 ../../mod/photos.php:443 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:15 +#: ../../mod/display.php:9 ../../mod/search.php:13 +msgid "Public access denied." +msgstr "Öffentlicher Zugang verweigert." -#: ../../mod/connedit.php:181 -msgid "is now connected to" -msgstr "ist jetzt verbunden mit" +#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 +#: ../../mod/profiles.php:704 +msgid "Age: " +msgstr "Alter:" -#: ../../mod/connedit.php:296 -msgid "Could not access address book record." -msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." +#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 +msgid "Gender: " +msgstr "Geschlecht:" -#: ../../mod/connedit.php:310 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." +#: ../../mod/dirprofile.php:108 +msgid "Status: " +msgstr "Status:" -#: ../../mod/connedit.php:317 -msgid "Channel has been unblocked" -msgstr "Kanal nicht mehr blockiert" +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " +msgstr "Sexuelle Ausrichtung:" -#: ../../mod/connedit.php:318 -msgid "Channel has been blocked" -msgstr "Kanal blockiert" +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " +msgstr "Webseite:" -#: ../../mod/connedit.php:322 ../../mod/connedit.php:334 -#: ../../mod/connedit.php:346 ../../mod/connedit.php:358 -#: ../../mod/connedit.php:374 -msgid "Unable to set address book parameters." -msgstr "Konnte die Adressbuch-Parameter nicht setzen." +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " +msgstr "Wohnort:" -#: ../../mod/connedit.php:329 -msgid "Channel has been unignored" -msgstr "Kanal wird nicht mehr ignoriert" +#: ../../mod/dirprofile.php:114 +msgid "About: " +msgstr "Über:" -#: ../../mod/connedit.php:330 -msgid "Channel has been ignored" -msgstr "Kanal wird ignoriert" +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " +msgstr "Schlüsselwörter:" -#: ../../mod/connedit.php:341 -msgid "Channel has been unarchived" -msgstr "Kanal wurde aus dem Archiv zurück geholt" +#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:38 +#: ../../mod/menu.php:120 +msgid "Not found." +msgstr "Nicht gefunden." -#: ../../mod/connedit.php:342 -msgid "Channel has been archived" -msgstr "Kanal wurde archiviert" +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." -#: ../../mod/connedit.php:353 -msgid "Channel has been unhidden" -msgstr "Kanal wird nicht mehr versteckt" +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Album nicht gefunden." -#: ../../mod/connedit.php:354 -msgid "Channel has been hidden" -msgstr "Kanal wurde versteckt" +#: ../../mod/photos.php:119 ../../mod/photos.php:673 +msgid "Delete Album" +msgstr "Album löschen" -#: ../../mod/connedit.php:369 -msgid "Channel has been approved" -msgstr "Kanal wurde zugelassen" +#: ../../mod/photos.php:159 ../../mod/photos.php:975 +msgid "Delete Photo" +msgstr "Foto löschen" -#: ../../mod/connedit.php:370 -msgid "Channel has been unapproved" -msgstr "Zulassung des Kanals entfernt" +#: ../../mod/photos.php:453 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" -#: ../../mod/connedit.php:398 -msgid "Connection has been removed." -msgstr "Verbindung wurde gelöscht." +#: ../../mod/photos.php:500 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." -#: ../../mod/connedit.php:418 +#: ../../mod/photos.php:574 #, php-format -msgid "View %s's profile" -msgstr "%ss Profil ansehen" +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Du benutzt %1$.2f MBytes Deines %2$.2f MBytes großen Bilder-Speichers." -#: ../../mod/connedit.php:422 -msgid "Refresh Permissions" -msgstr "Zugriffsrechte neu laden" +#: ../../mod/photos.php:577 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." +msgstr "Du verwendest %1$.2f MBytes Deines Foto-Speichers." -#: ../../mod/connedit.php:425 -msgid "Fetch updated permissions" -msgstr "Aktualisierte Zugriffsrechte abfragen" +#: ../../mod/photos.php:596 +msgid "Upload Photos" +msgstr "Fotos hochladen" -#: ../../mod/connedit.php:429 -msgid "Recent Activity" -msgstr "Kürzliche Aktivitäten" +#: ../../mod/photos.php:600 ../../mod/photos.php:668 +msgid "New album name: " +msgstr "Name des neuen Albums:" -#: ../../mod/connedit.php:432 -msgid "View recent posts and comments" -msgstr "Betrachte die neuesten Beiträge und Kommentare" +#: ../../mod/photos.php:601 +msgid "or existing album name: " +msgstr "Oder bestehender Album-Name:" -#: ../../mod/connedit.php:436 ../../mod/connedit.php:579 -#: ../../mod/admin.php:734 -msgid "Unblock" -msgstr "Freigeben" +#: ../../mod/photos.php:602 +msgid "Do not show a status post for this upload" +msgstr "Keine Statusnachricht für diesen Upload senden" -#: ../../mod/connedit.php:436 ../../mod/connedit.php:579 -#: ../../mod/admin.php:733 -msgid "Block" -msgstr "Blockieren" +#: ../../mod/photos.php:622 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" -#: ../../mod/connedit.php:439 -msgid "Block or Unblock this connection" -msgstr "Verbindung blockieren oder freigeben" +#: ../../mod/photos.php:657 ../../mod/photos.php:679 ../../mod/photos.php:1148 +#: ../../mod/photos.php:1163 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 -msgid "Unignore" -msgstr "Nicht ignorieren" +#: ../../mod/photos.php:681 +msgid "Edit Album" +msgstr "Album bearbeiten" -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorieren" +#: ../../mod/photos.php:687 +msgid "Show Newest First" +msgstr "Zeige Neueste zuerst" -#: ../../mod/connedit.php:446 -msgid "Ignore or Unignore this connection" -msgstr "Verbindung ignorieren oder wieder beachten" +#: ../../mod/photos.php:689 +msgid "Show Oldest First" +msgstr "Zeige Älteste zuerst" -#: ../../mod/connedit.php:449 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" +#: ../../mod/photos.php:716 ../../mod/photos.php:1195 +msgid "View Photo" +msgstr "Foto ansehen" -#: ../../mod/connedit.php:449 -msgid "Archive" -msgstr "Archivieren" +#: ../../mod/photos.php:794 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." -#: ../../mod/connedit.php:452 -msgid "Archive or Unarchive this connection" -msgstr "Verbindung archivieren oder aus dem Archiv zurückholen" +#: ../../mod/photos.php:796 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" -#: ../../mod/connedit.php:455 -msgid "Unhide" -msgstr "Wieder sichtbar machen" +#: ../../mod/photos.php:856 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" -#: ../../mod/connedit.php:455 -msgid "Hide" -msgstr "Verstecken" +#: ../../mod/photos.php:880 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" -#: ../../mod/connedit.php:458 -msgid "Hide or Unhide this connection" -msgstr "Diese Verbindung verstecken oder wieder sichtbar machen" +#: ../../mod/photos.php:924 ../../mod/delegate.php:130 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Entferne" -#: ../../mod/connedit.php:465 -msgid "Delete this connection" -msgstr "Verbindung löschen" +#: ../../mod/photos.php:958 +msgid "Edit photo" +msgstr "Foto bearbeiten" -#: ../../mod/connedit.php:508 ../../mod/connedit.php:537 -msgid "Approve this connection" -msgstr "Verbindung genehmigen" +#: ../../mod/photos.php:960 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" -#: ../../mod/connedit.php:508 -msgid "Accept connection to allow communication" -msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" +#: ../../mod/photos.php:961 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" -#: ../../mod/connedit.php:524 -msgid "Automatic Permissions Settings" -msgstr "Automatische Berechtigungs-Einstellungen" +#: ../../mod/photos.php:964 +msgid "New album name" +msgstr "Name des neuen Albums:" -#: ../../mod/connedit.php:524 -#, php-format -msgid "Connections: settings for %s" -msgstr "Verbindungseinstellungen für %s" +#: ../../mod/photos.php:967 +msgid "Caption" +msgstr "Bildunterschrift" -#: ../../mod/connedit.php:528 -msgid "" -"When receiving a channel introduction, any permissions provided here will be" -" applied to the new connection automatically and the introduction approved. " -"Leave this page if you do not wish to use this feature." -msgstr "Wenn eine Verbindungsanfrage empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt, und die Anfrage wird genehmigt. Verlasse diese Seite, wenn Du diese Funktion nicht verwenden möchtest." +#: ../../mod/photos.php:969 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" -#: ../../mod/connedit.php:530 -msgid "Slide to adjust your degree of friendship" -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" +#: ../../mod/photos.php:972 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/connedit.php:536 -msgid "inherited" -msgstr "geerbt" +#: ../../mod/photos.php:1125 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" -#: ../../mod/connedit.php:538 -msgid "Connection has no individual permissions!" -msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" +#: ../../mod/photos.php:1201 +msgid "View Album" +msgstr "Album ansehen" -#: ../../mod/connedit.php:539 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen." +#: ../../mod/photos.php:1224 +msgid "Recent Photos" +msgstr "Neueste Fotos" -#: ../../mod/connedit.php:541 -msgid "Profile Visibility" -msgstr "Sichtbarkeit des Profils" +#: ../../mod/mitem.php:14 ../../mod/menu.php:92 +msgid "Menu not found." +msgstr "Menü nicht gefunden" -#: ../../mod/connedit.php:542 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." +#: ../../mod/mitem.php:47 +msgid "Menu element updated." +msgstr "Menü-Element aktualisiert." -#: ../../mod/connedit.php:543 -msgid "Contact Information / Notes" -msgstr "Kontaktinformationen / Notizen" +#: ../../mod/mitem.php:51 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." -#: ../../mod/connedit.php:544 -msgid "Edit contact notes" -msgstr "Kontaktnotizen bearbeiten" +#: ../../mod/mitem.php:57 +msgid "Menu element added." +msgstr "Menü-Bestandteil hinzugefügt." -#: ../../mod/connedit.php:546 -msgid "Their Settings" -msgstr "Deren Einstellungen" +#: ../../mod/mitem.php:61 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." -#: ../../mod/connedit.php:547 -msgid "My Settings" -msgstr "Meine Einstellungen" +#: ../../mod/mitem.php:96 +msgid "Manage Menu Elements" +msgstr "Menü-Bestandteile verwalten" -#: ../../mod/connedit.php:549 -msgid "Clear/Disable Automatic Permissions" -msgstr "Automatische Berechtigungen abschalten/entfernen" +#: ../../mod/mitem.php:99 +msgid "Edit menu" +msgstr "Menü bearbeiten" -#: ../../mod/connedit.php:550 -msgid "Forum Members" -msgstr "Forum Mitglieder" +#: ../../mod/mitem.php:102 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" -#: ../../mod/connedit.php:551 -msgid "Soapbox" -msgstr "Marktschreier" +#: ../../mod/mitem.php:103 +msgid "Drop element" +msgstr "Bestandteil löschen" -#: ../../mod/connedit.php:552 -msgid "Full Sharing (typical social network permissions)" -msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" +#: ../../mod/mitem.php:104 +msgid "New element" +msgstr "Neues Bestandteil" -#: ../../mod/connedit.php:553 -msgid "Cautious Sharing " -msgstr "Vorsichtiges Teilen" +#: ../../mod/mitem.php:105 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" -#: ../../mod/connedit.php:554 -msgid "Follow Only" -msgstr "Nur folgen" +#: ../../mod/mitem.php:106 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" -#: ../../mod/connedit.php:555 -msgid "Individual Permissions" -msgstr "Individuelle Zugriffsrechte" +#: ../../mod/mitem.php:107 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" -#: ../../mod/connedit.php:556 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Einige Berechtigungen werden von den Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen." +#: ../../mod/mitem.php:108 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" -#: ../../mod/connedit.php:557 -msgid "Advanced Permissions" -msgstr "Zugriffsrechte für Fortgeschrittene" +#: ../../mod/mitem.php:131 +msgid "New Menu Element" +msgstr "Neues Menü-Bestandteil" -#: ../../mod/connedit.php:558 -msgid "Simple Permissions (select one and submit)" -msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" +#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" -#: ../../mod/connedit.php:562 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "%ss Profil besuchen - %s" +#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 +msgid "Link text" +msgstr "Link Text" -#: ../../mod/connedit.php:563 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freigeben" +#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 +msgid "URL of link" +msgstr "URL des Links" -#: ../../mod/connedit.php:564 -msgid "Ignore contact" -msgstr "Kontakt ignorieren" +#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 +msgid "Use Red magic-auth if available" +msgstr "Verwende Red Magic-Auth wenn verfügbar" -#: ../../mod/connedit.php:565 -msgid "Repair URL settings" -msgstr "URL-Einstellungen reparieren" +#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" -#: ../../mod/connedit.php:566 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" -#: ../../mod/connedit.php:568 -msgid "Delete contact" -msgstr "Kontakt löschen" +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" -#: ../../mod/connedit.php:571 -msgid "Last update:" -msgstr "Letzte Aktualisierung:" +#: ../../mod/mitem.php:154 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." -#: ../../mod/connedit.php:573 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" +#: ../../mod/mitem.php:163 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." -#: ../../mod/connedit.php:575 -msgid "Update now" -msgstr "Jetzt aktualisieren" +#: ../../mod/mitem.php:165 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." -#: ../../mod/connedit.php:581 -msgid "Currently blocked" -msgstr "Derzeit blockiert" +#: ../../mod/mitem.php:174 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" -#: ../../mod/connedit.php:582 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" +#: ../../mod/mitem.php:186 ../../mod/menu.php:114 +msgid "Modify" +msgstr "Ändern" -#: ../../mod/connedit.php:583 -msgid "Currently archived" -msgstr "Derzeit archiviert" - -#: ../../mod/connedit.php:584 -msgid "Currently pending" -msgstr "Derzeit anstehend" - -#: ../../mod/connedit.php:585 -msgid "Hide this contact from others" -msgstr "Diese Verbindung vor den anderen verbergen." - -#: ../../mod/connedit.php:585 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antworten/Likes auf deine öffentlichen Beiträge können immer noch sichtbar sein" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für diese Seite" - -#: ../../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 "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" - -#: ../../mod/delegate.php:130 ../../mod/photos.php:924 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Entferne" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Hinzufügen" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Keine Einträge." - -#: ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/photos.php:443 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Öffentlicher Zugang verweigert." - -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "Geschlecht:" - -#: ../../mod/directory.php:223 -msgid "Finding:" -msgstr "Ergebnisse:" - -#: ../../mod/directory.php:228 -msgid "next page" -msgstr "nächste Seite" - -#: ../../mod/directory.php:228 -msgid "previous page" -msgstr "vorherige Seite" - -#: ../../mod/directory.php:245 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." - -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "Status:" - -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "Sexuelle Ausrichtung:" - -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "Webseite:" - -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "Wohnort:" - -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "Über:" - -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "Schlüsselwörter:" - -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Diese Website ist kein Verzeichnis-Server" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../mod/photos.php:119 ../../mod/photos.php:673 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../mod/photos.php:159 ../../mod/photos.php:975 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../mod/photos.php:453 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" - -#: ../../mod/photos.php:500 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." - -#: ../../mod/photos.php:574 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du benutzt %1$.2f MBytes Deines %2$.2f MBytes großen Bilder-Speichers." - -#: ../../mod/photos.php:577 -#, php-format -msgid "You have used %1$.2f Mbytes of photo storage." -msgstr "Du verwendest %1$.2f MBytes Deines Foto-Speichers." - -#: ../../mod/photos.php:596 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: ../../mod/photos.php:600 ../../mod/photos.php:668 -msgid "New album name: " -msgstr "Name des neuen Albums:" - -#: ../../mod/photos.php:601 -msgid "or existing album name: " -msgstr "Oder bestehender Album-Name:" - -#: ../../mod/photos.php:602 -msgid "Do not show a status post for this upload" -msgstr "Keine Statusnachricht für diesen Upload senden" - -#: ../../mod/photos.php:622 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../mod/photos.php:657 ../../mod/photos.php:679 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1162 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../mod/photos.php:681 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../mod/photos.php:687 -msgid "Show Newest First" -msgstr "Zeige Neueste zuerst" - -#: ../../mod/photos.php:689 -msgid "Show Oldest First" -msgstr "Zeige Älteste zuerst" - -#: ../../mod/photos.php:716 ../../mod/photos.php:1194 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../mod/photos.php:794 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." - -#: ../../mod/photos.php:796 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../mod/photos.php:856 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../mod/photos.php:880 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../mod/photos.php:958 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../mod/photos.php:960 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../mod/photos.php:961 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../mod/photos.php:964 -msgid "New album name" -msgstr "Name des neuen Albums:" - -#: ../../mod/photos.php:967 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../mod/photos.php:969 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../mod/photos.php:972 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1125 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../mod/photos.php:1200 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../mod/photos.php:1223 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../mod/setup.php:162 -msgid "Red Matrix Server - Setup" -msgstr "Red Matrix Server - Installation" - -#: ../../mod/setup.php:168 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." - -#: ../../mod/setup.php:172 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." - -#: ../../mod/setup.php:179 -msgid "Could not create table." -msgstr "Kann Tabelle nicht erstellen." - -#: ../../mod/setup.php:185 -msgid "Your site database has been installed." -msgstr "Die Datenbank Deines Servers wurde installiert." - -#: ../../mod/setup.php:190 -msgid "" -"You may need to import the file \"install/database.sql\" manually using " -"phpmyadmin or mysql." -msgstr "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren." - -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Lies die Datei \"install/INSTALL.txt\"." - -#: ../../mod/setup.php:257 -msgid "System check" -msgstr "Systemprüfung" - -#: ../../mod/setup.php:261 ../../mod/events.php:439 -msgid "Next" -msgstr "Nächste" - -#: ../../mod/setup.php:262 -msgid "Check again" -msgstr "Bitte nochmal prüfen" - -#: ../../mod/setup.php:284 -msgid "Database connection" -msgstr "Datenbank Verbindung" - -#: ../../mod/setup.php:285 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." -msgstr "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." - -#: ../../mod/setup.php:286 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." - -#: ../../mod/setup.php:287 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." - -#: ../../mod/setup.php:291 -msgid "Database Server Name" -msgstr "Datenbank-Servername" - -#: ../../mod/setup.php:291 -msgid "Default is localhost" -msgstr "Standard ist localhost" - -#: ../../mod/setup.php:292 -msgid "Database Port" -msgstr "Datenbank-Port" - -#: ../../mod/setup.php:292 -msgid "Communication port number - use 0 for default" -msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" - -#: ../../mod/setup.php:293 -msgid "Database Login Name" -msgstr "Datenbank-Benutzername" - -#: ../../mod/setup.php:294 -msgid "Database Login Password" -msgstr "Datenbank-Kennwort" - -#: ../../mod/setup.php:295 -msgid "Database Name" -msgstr "Datenbank-Name" - -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "Site administrator email address" -msgstr "E-Mail Adresse des Seiten-Administrators" - -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." - -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Website URL" -msgstr "Server-URL" - -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Please use SSL (https) URL if available." -msgstr "Nutze wenn möglich eine SSL-URL (https)." - -#: ../../mod/setup.php:301 ../../mod/setup.php:344 -msgid "Please select a default timezone for your website" -msgstr "Standard-Zeitzone für Deinen Server" - -#: ../../mod/setup.php:328 -msgid "Site settings" -msgstr "Seiteneinstellungen" - -#: ../../mod/setup.php:387 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." - -#: ../../mod/setup.php:388 -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 "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." - -#: ../../mod/setup.php:392 -msgid "PHP executable path" -msgstr "PHP Pfad zu ausführbarer Datei" - -#: ../../mod/setup.php:392 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." - -#: ../../mod/setup.php:397 -msgid "Command line PHP" -msgstr "PHP Befehlszeile" - -#: ../../mod/setup.php:406 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." - -#: ../../mod/setup.php:407 -msgid "This is required for message delivery to work." -msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." - -#: ../../mod/setup.php:409 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:430 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." - -#: ../../mod/setup.php:431 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." - -#: ../../mod/setup.php:433 -msgid "Generate encryption keys" -msgstr "Verschlüsselungsschlüssel generieren" - -#: ../../mod/setup.php:440 -msgid "libCurl PHP module" -msgstr "libCurl-PHP-Modul" - -#: ../../mod/setup.php:441 -msgid "GD graphics PHP module" -msgstr "GD-Grafik-PHP-Modul" - -#: ../../mod/setup.php:442 -msgid "OpenSSL PHP module" -msgstr "OpenSSL-PHP-Modul" - -#: ../../mod/setup.php:443 -msgid "mysqli PHP module" -msgstr "mysqli-PHP-Modul" - -#: ../../mod/setup.php:444 -msgid "mb_string PHP module" -msgstr "mb_string-PHP-Modul" - -#: ../../mod/setup.php:445 -msgid "mcrypt PHP module" -msgstr "mcrypt-PHP-Modul" - -#: ../../mod/setup.php:450 ../../mod/setup.php:452 -msgid "Apache mod_rewrite module" -msgstr "Apache-mod_rewrite-Modul" - -#: ../../mod/setup.php:450 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:456 ../../mod/setup.php:459 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:456 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" - -#: ../../mod/setup.php:464 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:468 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:472 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:476 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:480 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:484 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:500 -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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." - -#: ../../mod/setup.php:501 -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 "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Rechte Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." - -#: ../../mod/setup.php:502 -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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst." - -#: ../../mod/setup.php:503 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." - -#: ../../mod/setup.php:506 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php ist beschreibbar" - -#: ../../mod/setup.php:516 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." - -#: ../../mod/setup.php:517 -#, 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 "Um diese kompilierten Vorlagen speichern zu können braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." - -#: ../../mod/setup.php:518 ../../mod/setup.php:536 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." - -#: ../../mod/setup.php:519 -#, 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 " Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht in der restlichen Red-Installation." - -#: ../../mod/setup.php:522 +#: ../../mod/subthread.php:103 #, php-format -msgid "%s is writable" -msgstr "%s ist beschreibbar" - -#: ../../mod/setup.php:535 -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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" - -#: ../../mod/setup.php:539 -msgid "store is writable" -msgstr "store ist schreibbar" - -#: ../../mod/setup.php:569 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." - -#: ../../mod/setup.php:570 -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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." - -#: ../../mod/setup.php:571 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." - -#: ../../mod/setup.php:572 -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 "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikate ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." - -#: ../../mod/setup.php:573 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen.. " - -#: ../../mod/setup.php:574 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." - -#: ../../mod/setup.php:576 -msgid "SSL certificate validation" -msgstr "SSL Zertifikatverifizierung" +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt nun %2$ss %3$s" -#: ../../mod/setup.php:582 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "URL rewrite via .htaccess funktioniert nicht. Überprüfe Deine Server-Konfiguration." +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Bitte melde dich an." -#: ../../mod/setup.php:584 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" -#: ../../mod/setup.php:594 -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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "Webseite" -#: ../../mod/setup.php:618 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." +#: ../../mod/impel.php:38 +msgid "block" +msgstr "Block" -#: ../../mod/setup.php:653 -msgid "

    What next

    " -msgstr "

    Was als Nächstes

    " +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "Layout" -#: ../../mod/setup.php:654 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "Element nicht gefunden" +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "Block bearbeiten" +#: ../../mod/lockview.php:52 +msgid "Visible to:" +msgstr "Sichtbar für:" -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Block löschen?" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Lesezeichenordner wählen" -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "YouTube-Video einfügen" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Lesezeichen speichern" -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis [.ogg]-Video einfügen" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL des Lesezeichens" -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis [.ogg]-Audio einfügen" +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Beschreibung" -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "Block löschen" +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" #: ../../mod/pdledit.php:13 msgid "Layout updated." @@ -6051,50 +5560,6 @@ msgstr "Modulname:" msgid "Layout Help" msgstr "Layout-Hilfe" -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "Layout bearbeiten" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "Layout löschen?" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "Layout löschen" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eintrag löschen?" - -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "Webseite löschen?" - -#: ../../mod/editwebpage.php:186 -msgid "Delete Webpage" -msgstr "Webseite löschen" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" - #: ../../mod/profile_photo.php:108 msgid "Image uploaded but image cropping failed." msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." @@ -6122,1184 +5587,1477 @@ msgstr "Kann Bild nicht verarbeiten." msgid "Photo not available." msgstr "Foto nicht verfügbar." -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" -msgstr "Datei hochladen:" +#: ../../mod/profile_photo.php:358 +msgid "Upload File:" +msgstr "Datei hochladen:" + +#: ../../mod/profile_photo.php:359 +msgid "Select a profile:" +msgstr "Wähle ein Profil:" + +#: ../../mod/profile_photo.php:360 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" + +#: ../../mod/profile_photo.php:365 +msgid "skip this step" +msgstr "diesen Schritt überspringen" + +#: ../../mod/profile_photo.php:365 +msgid "select a photo from your photo albums" +msgstr "ein Foto aus meinen Fotoalben" + +#: ../../mod/profile_photo.php:381 +msgid "Crop Image" +msgstr "Bild zuschneiden" + +#: ../../mod/profile_photo.php:382 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." + +#: ../../mod/profile_photo.php:384 +msgid "Done Editing" +msgstr "Bearbeitung fertigstellen" + +#: ../../mod/profile_photo.php:427 +msgid "Image uploaded successfully." +msgstr "Bild erfolgreich hochgeladen." + +#: ../../mod/profile_photo.php:429 +msgid "Image upload failed." +msgstr "Hochladen des Bilds fehlgeschlagen." + +#: ../../mod/profile_photo.php:438 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." + +#: ../../mod/acl.php:244 +msgid "network" +msgstr "Netzwerk" + +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "Menü aktualisiert." + +#: ../../mod/menu.php:25 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." + +#: ../../mod/menu.php:30 +msgid "Menu created." +msgstr "Menü erstellt." + +#: ../../mod/menu.php:34 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." + +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "Menüs verwalten" + +#: ../../mod/menu.php:60 +msgid "Drop" +msgstr "Löschen" + +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "Neues Menü erstellen" + +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "Neues Menü" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "Menü Name" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" +msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" + +#: ../../mod/menu.php:98 +msgid "Menu deleted." +msgstr "Menü gelöscht." + +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." + +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "Menü bearbeiten" + +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" + +#: ../../mod/block.php:27 ../../mod/page.php:35 +msgid "Invalid item." +msgstr "Ungültiges Element." + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:47 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." + +#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/display.php:102 +#: ../../mod/page.php:83 ../../index.php:240 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" + +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "Wall Fotos" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." + +#: ../../mod/connedit.php:181 +msgid "is now connected to" +msgstr "ist jetzt verbunden mit" + +#: ../../mod/connedit.php:296 +msgid "Could not access address book record." +msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." + +#: ../../mod/connedit.php:310 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." + +#: ../../mod/connedit.php:317 +msgid "Channel has been unblocked" +msgstr "Kanal nicht mehr blockiert" + +#: ../../mod/connedit.php:318 +msgid "Channel has been blocked" +msgstr "Kanal blockiert" + +#: ../../mod/connedit.php:322 ../../mod/connedit.php:334 +#: ../../mod/connedit.php:346 ../../mod/connedit.php:358 +#: ../../mod/connedit.php:374 +msgid "Unable to set address book parameters." +msgstr "Konnte die Adressbuch-Parameter nicht setzen." + +#: ../../mod/connedit.php:329 +msgid "Channel has been unignored" +msgstr "Kanal wird nicht mehr ignoriert" + +#: ../../mod/connedit.php:330 +msgid "Channel has been ignored" +msgstr "Kanal wird ignoriert" + +#: ../../mod/connedit.php:341 +msgid "Channel has been unarchived" +msgstr "Kanal wurde aus dem Archiv zurück geholt" + +#: ../../mod/connedit.php:342 +msgid "Channel has been archived" +msgstr "Kanal wurde archiviert" + +#: ../../mod/connedit.php:353 +msgid "Channel has been unhidden" +msgstr "Kanal wird nicht mehr versteckt" + +#: ../../mod/connedit.php:354 +msgid "Channel has been hidden" +msgstr "Kanal wurde versteckt" -#: ../../mod/profile_photo.php:359 -msgid "Select a profile:" -msgstr "Wähle ein Profil:" +#: ../../mod/connedit.php:369 +msgid "Channel has been approved" +msgstr "Kanal wurde zugelassen" -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" +#: ../../mod/connedit.php:370 +msgid "Channel has been unapproved" +msgstr "Zulassung des Kanals entfernt" -#: ../../mod/profile_photo.php:365 -msgid "skip this step" -msgstr "diesen Schritt überspringen" +#: ../../mod/connedit.php:398 +msgid "Connection has been removed." +msgstr "Verbindung wurde gelöscht." -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "ein Foto aus meinen Fotoalben" +#: ../../mod/connedit.php:418 +#, php-format +msgid "View %s's profile" +msgstr "%ss Profil ansehen" -#: ../../mod/profile_photo.php:381 -msgid "Crop Image" -msgstr "Bild zuschneiden" +#: ../../mod/connedit.php:422 +msgid "Refresh Permissions" +msgstr "Zugriffsrechte neu laden" -#: ../../mod/profile_photo.php:382 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." +#: ../../mod/connedit.php:425 +msgid "Fetch updated permissions" +msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../mod/profile_photo.php:384 -msgid "Done Editing" -msgstr "Bearbeitung fertigstellen" +#: ../../mod/connedit.php:429 +msgid "Recent Activity" +msgstr "Kürzliche Aktivitäten" -#: ../../mod/profile_photo.php:427 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." +#: ../../mod/connedit.php:432 +msgid "View recent posts and comments" +msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../mod/profile_photo.php:429 -msgid "Image upload failed." -msgstr "Hochladen des Bilds fehlgeschlagen." +#: ../../mod/connedit.php:439 +msgid "Block or Unblock this connection" +msgstr "Verbindung blockieren oder freigeben" -#: ../../mod/profile_photo.php:438 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." +#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 +msgid "Unignore" +msgstr "Nicht ignorieren" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." +#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorieren" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Quelle erstellt." +#: ../../mod/connedit.php:446 +msgid "Ignore or Unignore this connection" +msgstr "Verbindung ignorieren oder wieder beachten" -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Quelle aktualisiert." +#: ../../mod/connedit.php:449 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../mod/connedit.php:449 +msgid "Archive" +msgstr "Archivieren" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Quellen von Inhalten Deines Kanals verwalten." +#: ../../mod/connedit.php:452 +msgid "Archive or Unarchive this connection" +msgstr "Verbindung archivieren oder aus dem Archiv zurückholen" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Neue Quelle" +#: ../../mod/connedit.php:455 +msgid "Unhide" +msgstr "Wieder sichtbar machen" -#: ../../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 "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." +#: ../../mod/connedit.php:455 +msgid "Hide" +msgstr "Verstecken" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" +#: ../../mod/connedit.php:458 +msgid "Hide or Unhide this connection" +msgstr "Diese Verbindung verstecken oder wieder sichtbar machen" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" +#: ../../mod/connedit.php:465 +msgid "Delete this connection" +msgstr "Verbindung löschen" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Name des Kanals" +#: ../../mod/connedit.php:508 ../../mod/connedit.php:537 +msgid "Approve this connection" +msgstr "Verbindung genehmigen" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Quelle nicht gefunden." +#: ../../mod/connedit.php:508 +msgid "Accept connection to allow communication" +msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Quelle bearbeiten" +#: ../../mod/connedit.php:524 +msgid "Automatic Permissions Settings" +msgstr "Automatische Berechtigungs-Einstellungen" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Quelle löschen" +#: ../../mod/connedit.php:524 +#, php-format +msgid "Connections: settings for %s" +msgstr "Verbindungseinstellungen für %s" -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Quelle gelöscht" +#: ../../mod/connedit.php:528 +msgid "" +"When receiving a channel introduction, any permissions provided here will be" +" applied to the new connection automatically and the introduction approved. " +"Leave this page if you do not wish to use this feature." +msgstr "Wenn eine Verbindungsanfrage empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt, und die Anfrage wird genehmigt. Verlasse diese Seite, wenn Du diese Funktion nicht verwenden möchtest." -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." +#: ../../mod/connedit.php:530 +msgid "Slide to adjust your degree of friendship" +msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "– auswählen –" +#: ../../mod/connedit.php:536 +msgid "inherited" +msgstr "geerbt" -#: ../../mod/events.php:91 -msgid "Event title and start time are required." -msgstr "Veranstaltungs- Titel und Startzeit sind erforderlich." +#: ../../mod/connedit.php:538 +msgid "Connection has no individual permissions!" +msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" -#: ../../mod/events.php:105 -msgid "Event not found." -msgstr "Termin nicht gefunden." +#: ../../mod/connedit.php:539 +msgid "" +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen." -#: ../../mod/events.php:369 -msgid "l, F j" -msgstr "l, F j" +#: ../../mod/connedit.php:541 +msgid "Profile Visibility" +msgstr "Sichtbarkeit des Profils" -#: ../../mod/events.php:391 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" +#: ../../mod/connedit.php:542 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../mod/events.php:437 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" +#: ../../mod/connedit.php:543 +msgid "Contact Information / Notes" +msgstr "Kontaktinformationen / Notizen" -#: ../../mod/events.php:438 -msgid "Previous" -msgstr "Voriges" +#: ../../mod/connedit.php:544 +msgid "Edit contact notes" +msgstr "Kontaktnotizen bearbeiten" -#: ../../mod/events.php:536 -msgid "hour:minute" -msgstr "Stunde:Minute" +#: ../../mod/connedit.php:546 +msgid "Their Settings" +msgstr "Deren Einstellungen" -#: ../../mod/events.php:556 -msgid "Event details" -msgstr "Veranstaltungs-Details" +#: ../../mod/connedit.php:547 +msgid "My Settings" +msgstr "Meine Einstellungen" -#: ../../mod/events.php:557 -#, php-format -msgid "Format is %s %s." -msgstr "Format ist %s %s." +#: ../../mod/connedit.php:549 +msgid "Clear/Disable Automatic Permissions" +msgstr "Automatische Berechtigungen abschalten/entfernen" -#: ../../mod/events.php:558 -msgid "Starting date and Title are required." -msgstr "Startdatum und Titel sind erforderlich." +#: ../../mod/connedit.php:550 +msgid "Forum Members" +msgstr "Forum Mitglieder" -#: ../../mod/events.php:562 -msgid "Event Starts:" -msgstr "Veranstaltung startet:" +#: ../../mod/connedit.php:551 +msgid "Soapbox" +msgstr "Marktschreier" -#: ../../mod/events.php:562 ../../mod/events.php:581 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "Benötigt" +#: ../../mod/connedit.php:552 +msgid "Full Sharing (typical social network permissions)" +msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" -#: ../../mod/events.php:570 -msgid "Finish date/time is not known or not relevant" -msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" +#: ../../mod/connedit.php:553 +msgid "Cautious Sharing " +msgstr "Vorsichtiges Teilen" -#: ../../mod/events.php:572 -msgid "Event Finishes:" -msgstr "Veranstaltung endet:" +#: ../../mod/connedit.php:554 +msgid "Follow Only" +msgstr "Nur folgen" -#: ../../mod/events.php:575 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" +#: ../../mod/connedit.php:555 +msgid "Individual Permissions" +msgstr "Individuelle Zugriffsrechte" -#: ../../mod/events.php:577 -msgid "Description:" -msgstr "Beschreibung:" +#: ../../mod/connedit.php:556 +msgid "" +"Some permissions may be inherited from your channel privacy settings, which have higher priority than " +"individual settings. Changing those inherited settings on this page will " +"have no effect." +msgstr "Einige Berechtigungen werden von den Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen." -#: ../../mod/events.php:581 -msgid "Title:" -msgstr "Titel:" +#: ../../mod/connedit.php:557 +msgid "Advanced Permissions" +msgstr "Zugriffsrechte für Fortgeschrittene" -#: ../../mod/events.php:583 -msgid "Share this event" -msgstr "Die Veranstaltung teilen" +#: ../../mod/connedit.php:558 +msgid "Simple Permissions (select one and submit)" +msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" -#: ../../mod/filestorage.php:68 -msgid "Permission Denied." -msgstr "Zugriff verweigert." +#: ../../mod/connedit.php:562 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "%ss Profil besuchen - %s" -#: ../../mod/filestorage.php:85 -msgid "File not found." -msgstr "Datei nicht gefunden." +#: ../../mod/connedit.php:563 +msgid "Block/Unblock contact" +msgstr "Kontakt blockieren/freigeben" -#: ../../mod/filestorage.php:122 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" +#: ../../mod/connedit.php:564 +msgid "Ignore contact" +msgstr "Kontakt ignorieren" -#: ../../mod/filestorage.php:131 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" +#: ../../mod/connedit.php:565 +msgid "Repair URL settings" +msgstr "URL-Einstellungen reparieren" -#: ../../mod/filestorage.php:132 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" +#: ../../mod/connedit.php:566 +msgid "View conversations" +msgstr "Unterhaltungen anzeigen" -#: ../../mod/filestorage.php:133 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" +#: ../../mod/connedit.php:568 +msgid "Delete contact" +msgstr "Kontakt löschen" -#: ../../mod/filestorage.php:135 -msgid "Copy/paste this code to attach file to a post" -msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" +#: ../../mod/connedit.php:571 +msgid "Last update:" +msgstr "Letzte Aktualisierung:" -#: ../../mod/filestorage.php:136 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" +#: ../../mod/connedit.php:573 +msgid "Update public posts" +msgstr "Öffentliche Beiträge aktualisieren" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal hinzugefügt." +#: ../../mod/connedit.php:575 +msgid "Update now" +msgstr "Jetzt aktualisieren" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt nun %2$ss %3$s" +#: ../../mod/connedit.php:581 +msgid "Currently blocked" +msgstr "Derzeit blockiert" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden" +#: ../../mod/connedit.php:582 +msgid "Currently ignored" +msgstr "Derzeit ignoriert" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Freundschaftsempfehlung senden." +#: ../../mod/connedit.php:583 +msgid "Currently archived" +msgstr "Derzeit archiviert" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" +#: ../../mod/connedit.php:584 +msgid "Currently pending" +msgstr "Derzeit anstehend" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" +#: ../../mod/connedit.php:585 +msgid "Hide this contact from others" +msgstr "Diese Verbindung vor den anderen verbergen." -#: ../../mod/suggest.php:35 +#: ../../mod/connedit.php:585 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." +"Replies/likes to your public posts may still be visible" +msgstr "Antworten/Likes auf deine öffentlichen Beiträge können immer noch sichtbar sein" -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Sammlung erstellt." +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Sammlung kann nicht erstellt werden." +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "Keine Nachrichten." -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Sammlung aktualisiert." +#: ../../mod/message.php:72 ../../mod/mail.php:329 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Erstelle eine Sammlung von Kanälen." +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - G:i" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Name der Sammlung:" +#: ../../mod/ping.php:237 +msgid "sent you a private message" +msgstr "eine private Nachricht schicken" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Mitglieder sind sichtbar für andere Kanäle" +#: ../../mod/ping.php:288 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Sammlung gelöscht." +#: ../../mod/ping.php:329 +msgid "posted an event" +msgstr "hat eine Veranstaltung veröffentlicht" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Löschen der Sammlung nicht möglich." +#: ../../mod/setup.php:162 +msgid "Red Matrix Server - Setup" +msgstr "Red Matrix Server - Installation" -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Sammlung-Editor" +#: ../../mod/setup.php:168 +msgid "Could not connect to database." +msgstr "Kann nicht mit der Datenbank verbinden." -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Mitglieder" +#: ../../mod/setup.php:172 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alle verbundenen Kanäle" +#: ../../mod/setup.php:179 +msgid "Could not create table." +msgstr "Kann Tabelle nicht erstellen." -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." +#: ../../mod/setup.php:185 +msgid "Your site database has been installed." +msgstr "Die Datenbank Deines Servers wurde installiert." -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" +#: ../../mod/setup.php:190 +msgid "" +"You may need to import the file \"install/database.sql\" manually using " +"phpmyadmin or mysql." +msgstr "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren." -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Hilfe:" +#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Lies die Datei \"install/INSTALL.txt\"." -#: ../../mod/help.php:69 ../../index.php:237 -msgid "Not Found" -msgstr "Nicht gefunden" +#: ../../mod/setup.php:257 +msgid "System check" +msgstr "Systemprüfung" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Schlagwort entfernt" +#: ../../mod/setup.php:261 ../../mod/events.php:439 +msgid "Next" +msgstr "Nächste" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" +#: ../../mod/setup.php:262 +msgid "Check again" +msgstr "Bitte nochmal prüfen" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" +#: ../../mod/setup.php:284 +msgid "Database connection" +msgstr "Datenbank Verbindung" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." +#: ../../mod/setup.php:285 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." +msgstr "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." -#: ../../mod/admin.php:97 ../../mod/admin.php:413 -msgid "Site" -msgstr "Seite" +#: ../../mod/setup.php:286 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Konten" +#: ../../mod/setup.php:287 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." -#: ../../mod/admin.php:99 ../../mod/admin.php:860 -msgid "Channels" -msgstr "Kanäle" +#: ../../mod/setup.php:291 +msgid "Database Server Name" +msgstr "Datenbank-Servername" -#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 -msgid "Plugins" -msgstr "Plug-Ins" +#: ../../mod/setup.php:291 +msgid "Default is localhost" +msgstr "Standard ist localhost" -#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 -msgid "Themes" -msgstr "Themes" +#: ../../mod/setup.php:292 +msgid "Database Port" +msgstr "Datenbank-Port" -#: ../../mod/admin.php:102 ../../mod/admin.php:515 -msgid "Server" -msgstr "Server" +#: ../../mod/setup.php:292 +msgid "Communication port number - use 0 for default" +msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Profilkonfiguration" +#: ../../mod/setup.php:293 +msgid "Database Login Name" +msgstr "Datenbank-Benutzername" -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "DB-Aktualisierungen" +#: ../../mod/setup.php:294 +msgid "Database Login Password" +msgstr "Datenbank-Kennwort" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 -msgid "Logs" -msgstr "Protokolle" +#: ../../mod/setup.php:295 +msgid "Database Name" +msgstr "Datenbank-Name" -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" +#: ../../mod/setup.php:297 ../../mod/setup.php:339 +msgid "Site administrator email address" +msgstr "E-Mail Adresse des Seiten-Administrators" -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" +#: ../../mod/setup.php:297 ../../mod/setup.php:339 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" +#: ../../mod/setup.php:298 ../../mod/setup.php:341 +msgid "Website URL" +msgstr "Server-URL" -#: ../../mod/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 -#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:950 -#: ../../mod/admin.php:992 ../../mod/admin.php:1155 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 -msgid "Administration" -msgstr "Administration" +#: ../../mod/setup.php:298 ../../mod/setup.php:341 +msgid "Please use SSL (https) URL if available." +msgstr "Nutze wenn möglich eine SSL-URL (https)." -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "Zusammenfassung" +#: ../../mod/setup.php:301 ../../mod/setup.php:344 +msgid "Please select a default timezone for your website" +msgstr "Standard-Zeitzone für Deinen Server" -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Registrierte Benutzer" +#: ../../mod/setup.php:328 +msgid "Site settings" +msgstr "Seiteneinstellungen" -#: ../../mod/admin.php:216 ../../mod/admin.php:518 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" +#: ../../mod/setup.php:387 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Version" +#: ../../mod/setup.php:388 +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 "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." -#: ../../mod/admin.php:219 ../../mod/admin.php:519 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" +#: ../../mod/setup.php:392 +msgid "PHP executable path" +msgstr "PHP Pfad zu ausführbarer Datei" -#: ../../mod/admin.php:333 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." +#: ../../mod/setup.php:392 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." -#: ../../mod/admin.php:364 -msgid "No special theme for accessibility" -msgstr "Kein spezielles Accessibility-Theme vorhanden" +#: ../../mod/setup.php:397 +msgid "Command line PHP" +msgstr "PHP Befehlszeile" -#: ../../mod/admin.php:393 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" +#: ../../mod/setup.php:406 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." -#: ../../mod/admin.php:399 -msgid "My site is not a public server" -msgstr "Meine Server ist kein öffentlicher Server" +#: ../../mod/setup.php:407 +msgid "This is required for message delivery to work." +msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." -#: ../../mod/admin.php:400 -msgid "My site has paid access only" -msgstr "Mein Server erlaubt nur bezahlten Zugang" +#: ../../mod/setup.php:409 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/admin.php:401 -msgid "My site has free access only" -msgstr "Mein Server erlaubt ausschließlich freien Zugang" +#: ../../mod/setup.php:430 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." -#: ../../mod/admin.php:402 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" +#: ../../mod/setup.php:431 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." -#: ../../mod/admin.php:416 -msgid "File upload" -msgstr "Dateiupload" +#: ../../mod/setup.php:433 +msgid "Generate encryption keys" +msgstr "Verschlüsselungsschlüssel generieren" -#: ../../mod/admin.php:417 -msgid "Policies" -msgstr "Richtlinien" +#: ../../mod/setup.php:440 +msgid "libCurl PHP module" +msgstr "libCurl-PHP-Modul" -#: ../../mod/admin.php:422 -msgid "Site name" -msgstr "Seitenname" +#: ../../mod/setup.php:441 +msgid "GD graphics PHP module" +msgstr "GD-Grafik-PHP-Modul" -#: ../../mod/admin.php:423 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../mod/setup.php:442 +msgid "OpenSSL PHP module" +msgstr "OpenSSL-PHP-Modul" -#: ../../mod/admin.php:424 -msgid "Administrator Information" -msgstr "Administrator-Informationen" +#: ../../mod/setup.php:443 +msgid "mysqli PHP module" +msgstr "mysqli-PHP-Modul" -#: ../../mod/admin.php:424 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." +#: ../../mod/setup.php:444 +msgid "mb_string PHP module" +msgstr "mb_string-PHP-Modul" -#: ../../mod/admin.php:425 -msgid "System language" -msgstr "System-Sprache" +#: ../../mod/setup.php:445 +msgid "mcrypt PHP module" +msgstr "mcrypt-PHP-Modul" -#: ../../mod/admin.php:426 -msgid "System theme" -msgstr "System-Theme" +#: ../../mod/setup.php:450 ../../mod/setup.php:452 +msgid "Apache mod_rewrite module" +msgstr "Apache-mod_rewrite-Modul" -#: ../../mod/admin.php:426 +#: ../../mod/setup.php:450 msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../mod/admin.php:427 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" +#: ../../mod/setup.php:456 ../../mod/setup.php:459 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/admin.php:427 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" +#: ../../mod/setup.php:456 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../mod/admin.php:428 -msgid "Accessibility system theme" -msgstr "Accessibility-System-Theme" +#: ../../mod/setup.php:464 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." -#: ../../mod/admin.php:428 -msgid "Accessibility theme" -msgstr "Accessibility-Theme" +#: ../../mod/setup.php:468 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." -#: ../../mod/admin.php:430 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-Protokoll aktivieren" +#: ../../mod/setup.php:472 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." -#: ../../mod/admin.php:430 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Kommunikation mit Diaspora und Friendica – experimentell" +#: ../../mod/setup.php:476 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert." -#: ../../mod/admin.php:431 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" +#: ../../mod/setup.php:480 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." + +#: ../../mod/setup.php:484 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." -#: ../../mod/admin.php:431 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" +#: ../../mod/setup.php:500 +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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../mod/admin.php:432 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" +#: ../../mod/setup.php:501 +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 "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Rechte Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." -#: ../../mod/admin.php:432 +#: ../../mod/setup.php:502 msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." +"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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst." -#: ../../mod/admin.php:433 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" +#: ../../mod/setup.php:503 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../mod/admin.php:434 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" +#: ../../mod/setup.php:506 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php ist beschreibbar" -#: ../../mod/admin.php:435 -msgid "Register text" -msgstr "Registrierungstext" +#: ../../mod/setup.php:516 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../mod/admin.php:435 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." +#: ../../mod/setup.php:517 +#, 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 "Um diese kompilierten Vorlagen speichern zu können braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." -#: ../../mod/admin.php:436 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" +#: ../../mod/setup.php:518 ../../mod/setup.php:536 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../mod/admin.php:436 +#: ../../mod/setup.php:519 +#, php-format msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." +"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 " Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht in der restlichen Red-Installation." -#: ../../mod/admin.php:437 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" +#: ../../mod/setup.php:522 +#, php-format +msgid "%s is writable" +msgstr "%s ist beschreibbar" -#: ../../mod/admin.php:437 +#: ../../mod/setup.php:535 msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +"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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" -#: ../../mod/admin.php:438 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" +#: ../../mod/setup.php:539 +msgid "store is writable" +msgstr "store ist schreibbar" -#: ../../mod/admin.php:438 +#: ../../mod/setup.php:569 msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../mod/admin.php:439 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" +#: ../../mod/setup.php:570 +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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." -#: ../../mod/admin.php:439 +#: ../../mod/setup.php:571 msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist." +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../mod/admin.php:440 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" +#: ../../mod/setup.php:572 +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 "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikate ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." -#: ../../mod/admin.php:440 +#: ../../mod/setup.php:573 msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen.. " -#: ../../mod/admin.php:441 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" +#: ../../mod/setup.php:574 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." -#: ../../mod/admin.php:441 +#: ../../mod/setup.php:576 +msgid "SSL certificate validation" +msgstr "SSL Zertifikatverifizierung" + +#: ../../mod/setup.php:582 msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "URL rewrite via .htaccess funktioniert nicht. Überprüfe Deine Server-Konfiguration." -#: ../../mod/admin.php:442 -msgid "Disable discovery tab" -msgstr "Den „Entdecken“-Reiter ausblenden" +#: ../../mod/setup.php:584 +msgid "Url rewrite is working" +msgstr "Url rewrite funktioniert" -#: ../../mod/admin.php:442 +#: ../../mod/setup.php:594 msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte von anderen RedMatrix-Hubs angezeigt werden können." +"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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." -#: ../../mod/admin.php:443 -msgid "No login on Homepage" -msgstr "Kein Login auf der Homepage" +#: ../../mod/setup.php:618 +msgid "Errors encountered creating database tables." +msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../mod/admin.php:443 +#: ../../mod/setup.php:653 +msgid "

    What next

    " +msgstr "

    Was als Nächstes

    " + +#: ../../mod/setup.php:654 msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)." +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." -#: ../../mod/admin.php:445 -msgid "Proxy user" -msgstr "Proxy Benutzer" +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Server nicht gefunden." -#: ../../mod/admin.php:446 -msgid "Proxy URL" -msgstr "Proxy URL" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." -#: ../../mod/admin.php:447 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." -#: ../../mod/admin.php:447 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Schließe Dich uns an und werde Teil der Red-Matrix" -#: ../../mod/admin.php:448 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." -#: ../../mod/admin.php:448 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." -#: ../../mod/admin.php:449 -msgid "Poll interval" -msgstr "Abfrageintervall" +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." -#: ../../mod/admin.php:449 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" -#: ../../mod/admin.php:450 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" +#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Your message:" +msgstr "Deine Nachricht:" -#: ../../mod/admin.php:450 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." +msgstr "Schließe Dich uns in der RedMatrix an!" -#: ../../mod/admin.php:506 -msgid "No server found" -msgstr "Kein Server gefunden" +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Gib diesen Invite-Code ein:" -#: ../../mod/admin.php:513 ../../mod/admin.php:737 -msgid "ID" -msgstr "ID" +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" +msgstr "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)" -#: ../../mod/admin.php:513 -msgid "for channel" -msgstr "für Kanal" +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." +msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein." -#: ../../mod/admin.php:513 -msgid "on server" -msgstr "auf Server" +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "oder besuche" -#: ../../mod/admin.php:513 -msgid "Status" -msgstr "Status" +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" -#: ../../mod/admin.php:534 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../mod/admin.php:544 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../mod/admin.php:547 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Sache hinzugefügt" -#: ../../mod/admin.php:551 +#: ../../mod/thing.php:180 #, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/admin.php:554 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Sache anzeigen" -#: ../../mod/admin.php:569 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "Eintrag nicht gefunden" -#: ../../mod/admin.php:573 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Sache bearbeiten" -#: ../../mod/admin.php:575 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Wähle ein Profil" -#: ../../mod/admin.php:576 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" -#: ../../mod/admin.php:602 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s Nutzer blockiert/freigegeben" -msgstr[1] "%s Nutzer blockiert/freigegeben" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" -#: ../../mod/admin.php:609 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s Nutzer gelöscht" -msgstr[1] "%s Nutzer gelöscht" +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" -#: ../../mod/admin.php:638 -msgid "Account not found" -msgstr "Konto nicht gefunden" +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' unblocked" -msgstr "Benutzer '%s' freigegeben" +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' blocked" -msgstr "Benutzer '%s' blockiert" +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" -#: ../../mod/admin.php:724 ../../mod/admin.php:736 -msgid "Users" -msgstr "Benutzer" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." -#: ../../mod/admin.php:726 ../../mod/admin.php:862 -msgid "select all" -msgstr "Alle auswählen" +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." -#: ../../mod/admin.php:727 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" +#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 +msgid "Help:" +msgstr "Hilfe:" -#: ../../mod/admin.php:728 -msgid "Request date" -msgstr "Antragsdatum" +#: ../../mod/help.php:69 ../../index.php:237 +msgid "Not Found" +msgstr "Nicht gefunden" -#: ../../mod/admin.php:729 -msgid "No registrations." -msgstr "Keine Registrierungen." +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Keine Verbindungen." -#: ../../mod/admin.php:730 -msgid "Approve" -msgstr "Genehmigen" +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "%ss Profil [%s] besuchen" -#: ../../mod/admin.php:731 -msgid "Deny" -msgstr "Verweigern" +#: ../../mod/viewconnections.php:86 +msgid "View Connnections" +msgstr "Zeige Verbindungen" -#: ../../mod/admin.php:737 -msgid "Register date" -msgstr "Registrierungs-Datum" +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." -#: ../../mod/admin.php:737 -msgid "Last login" -msgstr "Letzte Anmeldung" +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Dieses Konto löschen" -#: ../../mod/admin.php:737 -msgid "Expires" -msgstr "Verfällt" +#: ../../mod/removeaccount.php:58 +msgid "" +"This will completely remove this account including all its channels from the" +" network. Once this has been done it is not recoverable." +msgstr "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden." -#: ../../mod/admin.php:737 -msgid "Service Class" -msgstr "Service-Klasse" +#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 +msgid "Please enter your password for verification:" +msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" -#: ../../mod/admin.php:739 +#: ../../mod/removeaccount.php:60 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" -#: ../../mod/admin.php:740 +#: ../../mod/removeaccount.php:60 msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt" -#: ../../mod/admin.php:773 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s Kanal gesperrt/freigegeben" -msgstr[1] "%s Kanäle gesperrt/freigegeben" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../mod/admin.php:780 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s Kanal gelöscht" -msgstr[1] "%s Kanäle gelöscht" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../mod/admin.php:799 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." + +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Sichtbar für" + +#: ../../mod/register.php:42 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." -#: ../../mod/admin.php:810 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" +#: ../../mod/register.php:48 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" +#: ../../mod/register.php:82 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" +#: ../../mod/register.php:115 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." -#: ../../mod/admin.php:864 -msgid "Censor" -msgstr "Sperren" +#: ../../mod/register.php:121 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../mod/admin.php:865 -msgid "Uncensor" -msgstr "Freigeben" +#: ../../mod/register.php:124 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: ../../mod/admin.php:868 -msgid "UID" -msgstr "UID" +#: ../../mod/register.php:161 +msgid "Registration on this site/hub is by approval only." +msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" -#: ../../mod/admin.php:870 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" +#: ../../mod/register.php:162 +msgid "Register at another affiliated site/hub" +msgstr "Registrierung auf einem anderen, angeschlossenen Server" -#: ../../mod/admin.php:871 +#: ../../mod/register.php:170 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." -#: ../../mod/admin.php:910 +#: ../../mod/register.php:181 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" + +#: ../../mod/register.php:187 #, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" -#: ../../mod/admin.php:914 +#: ../../mod/register.php:189 #, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 -msgid "Disable" -msgstr "Deaktivieren" +#: ../../mod/register.php:208 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../mod/admin.php:926 ../../mod/admin.php:1128 -msgid "Enable" -msgstr "Aktivieren" +#: ../../mod/register.php:209 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" -#: ../../mod/admin.php:952 ../../mod/admin.php:1157 -msgid "Toggle" -msgstr "Umschalten" +#: ../../mod/register.php:212 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" -#: ../../mod/admin.php:960 ../../mod/admin.php:1167 -msgid "Author: " -msgstr "Autor: " +#: ../../mod/register.php:213 +msgid "Choose a password" +msgstr "Passwort" -#: ../../mod/admin.php:961 ../../mod/admin.php:1168 -msgid "Maintainer: " -msgstr "Betreuer:" +#: ../../mod/register.php:214 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" -#: ../../mod/admin.php:1090 -msgid "No themes found." -msgstr "Keine Theme gefunden." +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Gruppe existiert nicht" -#: ../../mod/admin.php:1149 -msgid "Screenshot" -msgstr "Bildschirmfoto" +#: ../../mod/network.php:118 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" -#: ../../mod/admin.php:1197 -msgid "[Experimental]" -msgstr "[Experimentell]" +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "Sammlung ist leer" -#: ../../mod/admin.php:1198 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" +#: ../../mod/network.php:180 +msgid "Collection: " +msgstr "Sammlung:" -#: ../../mod/admin.php:1225 -msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "Verbindung:" -#: ../../mod/admin.php:1281 -msgid "Clear" -msgstr "Leeren" +#: ../../mod/network.php:196 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." -#: ../../mod/admin.php:1287 -msgid "Debugging" -msgstr "Debugging" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." -#: ../../mod/admin.php:1288 -msgid "Log file" -msgstr "Protokolldatei" +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für diese Seite" -#: ../../mod/admin.php:1288 +#: ../../mod/delegate.php:123 msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis." +"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 "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" -#: ../../mod/admin.php:1289 -msgid "Log level" -msgstr "Protokollstufe" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Vorhandene Seitenmanager" -#: ../../mod/admin.php:1336 -msgid "New Profile Field" -msgstr "Neues Profilfeld" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "Field nickname" -msgstr "Kurzname für das Feld" +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "System name of field" -msgstr "Systemname des Feldes" +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Hinzufügen" -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 -msgid "Input type" -msgstr "Art des Inhalts" +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Keine Einträge." -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Field Name" -msgstr "Feldname" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "Fortfahren" -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Label on profile pages" -msgstr "Bezeichnung auf Profilseiten" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Help text" -msgstr "Hilfetext" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Additional info (optional)" -msgstr "Zusätzliche Informationen (optional)" +#: ../../mod/connect.php:87 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." -#: ../../mod/admin.php:1351 -msgid "Field definition not found" -msgstr "Feld-Definition nicht gefunden" +#: ../../mod/connect.php:89 ../../mod/connect.php:109 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." -#: ../../mod/admin.php:1357 -msgid "Edit Profile Field" -msgstr "Profilfeld bearbeiten" +#: ../../mod/connect.php:90 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Sache aktualisiert" +#: ../../mod/connect.php:91 ../../mod/connect.php:112 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite." -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" + +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Freundschaftsempfehlung senden." -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Sache hinzugefügt" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" -#: ../../mod/thing.php:180 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Sache anzeigen" +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Eintrag nicht gefunden" +#: ../../mod/manage.php:144 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Sache bearbeiten" +#: ../../mod/manage.php:149 +msgid "Current Channel" +msgstr "Aktueller Kanal" -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Wähle ein Profil" +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." +msgstr "Wähle einen Deiner Kanäle aus, um ihn zu verwenden." -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" +#: ../../mod/manage.php:152 +msgid "Default Channel" +msgstr "Standard Kanal" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" +#: ../../mod/manage.php:153 +msgid "Make Default" +msgstr "Zum Standard machen" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Diesen Kanal löschen" -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" +#: ../../mod/removeme.php:58 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet kann dieser Prozess nicht rückgängig gemacht werden." -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Dein Vertrag erlaubt nur %d Kanäle." +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Nichts zu importieren." +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Kanal löschen" -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Daten können vom alten Server nicht heruntergeladen werden" +#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 +msgid "Item not found" +msgstr "Element nicht gefunden" -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." -#: ../../mod/import.php:105 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." +#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../mod/import.php:123 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Eintrag löschen?" -#: ../../mod/import.php:133 -msgid "Cloned channel not found. Import failed." -msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 +#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 +msgid "Insert YouTube video" +msgstr "YouTube-Video einfügen" -#: ../../mod/import.php:451 -msgid "Import completed." -msgstr "Import abgeschlossen." +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 +#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis [.ogg]-Video einfügen" -#: ../../mod/import.php:463 -msgid "You must be logged in to use this feature." -msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 +#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis [.ogg]-Audio einfügen" -#: ../../mod/import.php:468 -msgid "Import Channel" -msgstr "Kanal importieren" +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" +msgstr "Webseite bearbeiten" -#: ../../mod/import.php:469 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich." +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" +msgstr "Webseite löschen?" -#: ../../mod/import.php:470 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" +#: ../../mod/editwebpage.php:186 +msgid "Delete Webpage" +msgstr "Webseite löschen" -#: ../../mod/import.php:471 -msgid "Or provide the old server/hub details" -msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" -#: ../../mod/import.php:472 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" -#: ../../mod/import.php:473 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Empfänger" -#: ../../mod/import.php:474 -msgid "Your old login password" -msgstr "Dein altes Passwort" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" -#: ../../mod/import.php:475 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Egal welche Option Du wählst, bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" -#: ../../mod/import.php:476 -msgid "Make this hub my primary location" -msgstr "Dieser Red-Server ist mein primärer Server." +#: ../../mod/blocks.php:62 +msgid "Block Name" +msgstr "Block-Name" -#: ../../mod/import.php:477 -msgid "Import existing posts if possible" -msgstr "Existierende Beiträge importieren, falls möglich" +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Sammlung erstellt." -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Sammlung kann nicht erstellt werden." -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Sammlung aktualisiert." -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Schließe Dich uns an und werde Teil der Red-Matrix" +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Erstelle eine Sammlung von Kanälen." -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Name der Sammlung:" -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "Mitglieder sind sichtbar für andere Kanäle" -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Sammlung gelöscht." -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Löschen der Sammlung nicht möglich." -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Einladungen senden" +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Sammlung-Editor" -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Mitglieder" -#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Your message:" -msgstr "Deine Nachricht:" +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alle verbundenen Kanäle" -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Schließe Dich uns in der RedMatrix an!" +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Gib diesen Invite-Code ein:" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Schlagwort entfernt" -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein." +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "oder besuche" +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Element nicht verfügbar." -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Keine Dienstklassenbeschränkungen gefunden." #: ../../mod/item.php:150 msgid "Unable to locate original post." @@ -7327,162 +7085,330 @@ msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." msgid "You have reached your limit of %1$.0f webpages." msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "Hilfe zu dieser Funktion" +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Abwesend" -#: ../../mod/layouts.php:85 -msgid "Layout Name" -msgstr "Layout-Name" +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" +#: ../../mod/directory.php:223 +msgid "Finding:" +msgstr "Ergebnisse:" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." +#: ../../mod/directory.php:228 +msgid "next page" +msgstr "nächste Seite" -#: ../../mod/like.php:21 +#: ../../mod/directory.php:228 +msgid "previous page" +msgstr "vorherige Seite" + +#: ../../mod/directory.php:245 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "interessiert sich für:" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Diese Website ist kein Verzeichnis-Server" + +#: ../../mod/siteinfo.php:90 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" + +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" + +#: ../../mod/siteinfo.php:132 +msgid "Red" +msgstr "Red" + +#: ../../mod/siteinfo.php:133 msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren." +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ungültige Anfrage." +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" -#: ../../mod/like.php:119 -msgid "thing" -msgstr "Sache" +#: ../../mod/siteinfo.php:138 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "Besuche GetZot.com, um mehr über die Red-Matrix zu erfahren." -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." +#: ../../mod/siteinfo.php:142 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" + +#: ../../mod/siteinfo.php:144 +msgid "Site Administrators" +msgstr "Administratoren" + +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installiert." + +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Fehlerhafte App." + +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Code einbetten" + +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bearbeiten" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App erstellen" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Name der App" + +#: ../../mod/appman.php:91 ../../mod/appman.php:92 ../../mod/events.php:562 +#: ../../mod/events.php:581 +msgid "Required" +msgstr "Benötigt" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" + +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL zum Icon" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versions-ID" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Preis der App" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Quelle erstellt." + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Quelle aktualisiert." + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Quellen von Inhalten Deines Kanals verwalten." + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Neue Quelle" + +#: ../../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 "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Quelle nicht gefunden." + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Quelle bearbeiten" -#: ../../mod/like.php:417 -msgid "Action completed." -msgstr "Aktion durchgeführt." +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Quelle löschen" -#: ../../mod/like.php:418 -msgid "Thank you." -msgstr "Vielen Dank." +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Quelle gelöscht" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Öffentliche Server" -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Keine Verbindungen." +#: ../../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 "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen." -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%ss Profil [%s] besuchen" +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "Server-URL" -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" -msgstr "Zeige Verbindungen" +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Zugangstyp" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." +#: ../../mod/pubsites.php:25 ../../mod/profiles.php:440 +msgid "Location" +msgstr "Ort" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#: ../../mod/import.php:25 #, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" +msgid "Your service plan only allows %d channels." +msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" +#: ../../mod/import.php:51 +msgid "Nothing to import." +msgstr "Nichts zu importieren." -#: ../../mod/lostpass.php:63 +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" +msgstr "Daten können vom alten Server nicht heruntergeladen werden" + +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "Die importierte Datei ist leer." + +#: ../../mod/import.php:105 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." -#: ../../mod/lostpass.php:85 ../../boot.php:1505 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" +#: ../../mod/import.php:123 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." +#: ../../mod/import.php:133 +msgid "Cloned channel not found. Import failed." +msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" +#: ../../mod/import.php:451 +msgid "Import completed." +msgstr "Import abgeschlossen." -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" +#: ../../mod/import.php:463 +msgid "You must be logged in to use this feature." +msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" +#: ../../mod/import.php:468 +msgid "Import Channel" +msgstr "Kanal importieren" -#: ../../mod/lostpass.php:90 +#: ../../mod/import.php:469 msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." +"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 "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich." -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" +#: ../../mod/import.php:470 +msgid "File to Upload" +msgstr "Hochzuladende Datei:" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" +#: ../../mod/import.php:471 +msgid "Or provide the old server/hub details" +msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." +#: ../../mod/import.php:472 +msgid "Your old identity address (xyz@example.com)" +msgstr "Bisherige Kanal-Adresse (xyz@example.com)" -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-Mail Adresse" +#: ../../mod/import.php:473 +msgid "Your old login email address" +msgstr "Deine alte Login-E-Mail-Adresse" -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Zurücksetzen" +#: ../../mod/import.php:474 +msgid "Your old login password" +msgstr "Dein altes Passwort" -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Server nicht gefunden." +#: ../../mod/import.php:475 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Egal welche Option Du wählst, bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." + +#: ../../mod/import.php:476 +msgid "Make this hub my primary location" +msgstr "Dieser Red-Server ist mein primärer Server." -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Gesamtstimmen" +#: ../../mod/import.php:477 +msgid "Import existing posts if possible" +msgstr "Existierende Beiträge importieren, falls möglich" -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Durchschnittliche Bewertung" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" #: ../../mod/mail.php:33 msgid "Unable to lookup recipient." @@ -7534,681 +7460,599 @@ msgstr "Nachricht löschen" #: ../../mod/mail.php:306 msgid "Recall message" -msgstr "Nachricht widerrufen" - -#: ../../mod/mail.php:308 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." - -#: ../../mod/mail.php:325 -msgid "Private Conversation" -msgstr "Private Unterhaltung" - -#: ../../mod/mail.php:329 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../mod/mail.php:331 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." - -#: ../../mod/mail.php:335 -msgid "Send Reply" -msgstr "Antwort senden" - -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "Aktueller Kanal" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "Wähle einen Deiner Kanäle aus, um ihn zu verwenden." - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Standard Kanal" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "Zum Standard machen" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "Wall Fotos" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "interessiert sich für:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "Menü aktualisiert." - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." +msgstr "Nachricht widerrufen" -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "Menü erstellt." +#: ../../mod/mail.php:308 +msgid "Message has been recalled." +msgstr "Die Nachricht wurde widerrufen." -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." +#: ../../mod/mail.php:325 +msgid "Private Conversation" +msgstr "Private Unterhaltung" -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "Menüs verwalten" +#: ../../mod/mail.php:331 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "Löschen" +#: ../../mod/mail.php:335 +msgid "Send Reply" +msgstr "Antwort senden" -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "Neues Menü erstellen" +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:575 +msgid "Profile not found." +msgstr "Profil nicht gefunden." -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profil gelöscht." -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "Neues Menü" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "Menü Name" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Neues Profil erstellt." -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profil kann nicht geklont werden." -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "Menü Titel" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Dieses Profil kann nicht exportiert werden." -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "Profil-Name erforderlich." -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" +#: ../../mod/profiles.php:390 +msgid "Marital Status" +msgstr "Familienstand" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" +#: ../../mod/profiles.php:394 +msgid "Romantic Partner" +msgstr "Romantische Partner" -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "Menü gelöscht." +#: ../../mod/profiles.php:398 +msgid "Likes" +msgstr "Gefällt" -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." +#: ../../mod/profiles.php:402 +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "Menü bearbeiten" +#: ../../mod/profiles.php:406 +msgid "Work/Employment" +msgstr "Arbeit/Anstellung" -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" +#: ../../mod/profiles.php:409 +msgid "Religion" +msgstr "Religion" -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." +#: ../../mod/profiles.php:413 +msgid "Political Views" +msgstr "Politische Ansichten" -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Keine Nachrichten." +#: ../../mod/profiles.php:417 +msgid "Gender" +msgstr "Geschlecht" -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" +#: ../../mod/profiles.php:421 +msgid "Sexual Preference" +msgstr "Sexuelle Orientierung" -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Kanal hinzufügen" +#: ../../mod/profiles.php:425 +msgid "Homepage" +msgstr "Webseite" -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt." +#: ../../mod/profiles.php:429 +msgid "Interests" +msgstr "Hobbys/Interessen" -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " +#: ../../mod/profiles.php:523 +msgid "Profile updated." +msgstr "Profil aktualisiert." -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" +#: ../../mod/profiles.php:600 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst." +#: ../../mod/profiles.php:642 +msgid "Edit Profile Details" +msgstr "Bearbeite Profil-Details" -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Oder importiere einen bestehenden Kanal von einem anderen Server" +#: ../../mod/profiles.php:644 +msgid "View this profile" +msgstr "Dieses Profil ansehen" -#: ../../mod/new_channel.php:118 -msgid "Channel Type" -msgstr "Kanaltyp" +#: ../../mod/profiles.php:646 +msgid "Change Profile Photo" +msgstr "Profilfoto ändern" -#: ../../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 "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können" +#: ../../mod/profiles.php:647 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" -#: ../../mod/home.php:46 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix – "Das Netzwerk"" +#: ../../mod/profiles.php:648 +msgid "Clone this profile" +msgstr "Dieses Profil klonen" -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +#: ../../mod/profiles.php:649 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." +#: ../../mod/profiles.php:651 +msgid "Import profile from file" +msgstr "Profil aus einer Datei importieren" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Verwerfen" +#: ../../mod/profiles.php:652 +msgid "Export profile to file" +msgstr "Profil in eine Datei exportieren" -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." +#: ../../mod/profiles.php:653 +msgid "Profile Name:" +msgstr "Profilname:" -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" +#: ../../mod/profiles.php:654 +msgid "Your Full Name:" +msgstr "Dein voller Name:" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." +#: ../../mod/profiles.php:655 +msgid "Title/Description:" +msgstr "Titel/Stellenbeschreibung:" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." +#: ../../mod/profiles.php:656 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" +#: ../../mod/profiles.php:657 +#, php-format +msgid "Birthday (%s):" +msgstr "Geburtstag (%s):" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: ../../mod/profiles.php:658 +msgid "Street Address:" +msgstr "Straße und Hausnummer:" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installiert." +#: ../../mod/profiles.php:659 +msgid "Locality/City:" +msgstr "Wohnort:" -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Fehlerhafte App." +#: ../../mod/profiles.php:660 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Code einbetten" +#: ../../mod/profiles.php:661 +msgid "Country:" +msgstr "Land:" -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bearbeiten" +#: ../../mod/profiles.php:662 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App erstellen" +#: ../../mod/profiles.php:663 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Name der App" +#: ../../mod/profiles.php:664 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" +#: ../../mod/profiles.php:665 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL zum Icon" +#: ../../mod/profiles.php:666 +msgid "Since [date]:" +msgstr "Seit [Datum]:" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" +#: ../../mod/profiles.php:668 +msgid "Homepage URL:" +msgstr "Homepage URL:" -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versions-ID" +#: ../../mod/profiles.php:671 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Preis der App" +#: ../../mod/profiles.php:672 +msgid "Keywords:" +msgstr "Schlüsselwörter:" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" +#: ../../mod/profiles.php:675 +msgid "Example: fishing photography software" +msgstr "Beispiel: Angeln Fotografie Software" -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Umfrage" +#: ../../mod/profiles.php:676 +msgid "Used in directory listings" +msgstr "Wird in Verzeichnis-Auflistungen verwendet" -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Ergebnisse ansehen" +#: ../../mod/profiles.php:677 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein wenig von Dir …" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." +#: ../../mod/profiles.php:678 +msgid "Hobbies/Interests" +msgstr "Hobbys/Interessen" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Dieses Konto löschen" +#: ../../mod/profiles.php:679 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformation und soziale Netzwerke" -#: ../../mod/removeaccount.php:58 -msgid "" -"This will completely remove this account including all its channels from the" -" network. Once this has been done it is not recoverable." -msgstr "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden." +#: ../../mod/profiles.php:680 +msgid "My other channels" +msgstr "Meine anderen Kanäle" -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" +#: ../../mod/profiles.php:681 +msgid "Musical interests" +msgstr "Musikalische Interessen" -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt" +#: ../../mod/profiles.php:682 +msgid "Books, literature" +msgstr "Bücher, Literatur" -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Keine Dienstklassenbeschränkungen gefunden." +#: ../../mod/profiles.php:683 +msgid "Television" +msgstr "Fernsehen" -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webseite" +#: ../../mod/profiles.php:684 +msgid "Film/dance/culture/entertainment" +msgstr "Film/Tanz/Kultur/Unterhaltung" -#: ../../mod/impel.php:38 -msgid "block" -msgstr "Block" +#: ../../mod/profiles.php:685 +msgid "Love/romance" +msgstr "Liebe/Romantik" -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "Layout" +#: ../../mod/profiles.php:686 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" +#: ../../mod/profiles.php:687 +msgid "School/education" +msgstr "Schule/Ausbildung" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Schema-Standard" +#: ../../mod/profiles.php:693 +msgid "This is your default profile." +msgstr "Das ist Dein Standardprofil" -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" +#: ../../mod/profiles.php:747 +msgid "Edit/Manage Profiles" +msgstr "Profile bearbeiten/verwalten" -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" +#: ../../mod/profiles.php:748 +msgid "Add profile things" +msgstr "Sachen zum Profil hinzufügen" -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Theme settings" -msgstr "Theme-Einstellungen" +#: ../../mod/profiles.php:749 +msgid "Include desirable objects in your profile" +msgstr "Binde begehrenswerte Dinge in Dein Profil ein" -#: ../../view/theme/apw/php/config.php:260 -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set scheme" -msgstr "Schema" +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare" +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Schriftart" +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Kein Kanal." -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Icon-Set" +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Größe der großen Schatten, Standard 15px 15px 15px" +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Größe der kleinen Schatten, Standard 5px 5px 5px" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Schattenfarbe, Standard #000" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Radius, Standard 5px" +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren." -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Zeilenhöhe für Beiträge und Kommentare" +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ungültige Anfrage." -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Hintergrundbild" +#: ../../mod/like.php:119 +msgid "thing" +msgstr "Sache" -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Hintergrund-Attachment" +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Hintergrundfarbe" +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Hintergrundbild für Section" +#: ../../mod/like.php:417 +msgid "Action completed." +msgstr "Aktion durchgeführt." -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Hintergrundfarbe für Section" +#: ../../mod/like.php:418 +msgid "Thank you." +msgstr "Vielen Dank." -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Farbe der Beiträge – Hex benutzen" +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Farbe der Links – Hex benutzen" +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Maximalbreite für Beiträge, Standard 400px" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Minimalbreite für Beiträge, Standard 240px" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Breite des generic content wrapper, Standard 48%" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Schriftfarbe – Hex benutzen" +#: ../../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 "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Größe des Hintergrund-Elements" +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Deckkraft der Beiträge" +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Raum verlassen" -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Nur Beitragsvorschauen anzeigen" +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Diesen Raum löschen" -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Seitenleiste auf der Kanalseite anzeigen" +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Farbe der Navigationsleiste" +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Ich bin online" -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Float für Beiträge" +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Linker Offset für das Section-Element" +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Neuer Chatraum" -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Rechter Offset für das Section-Element" +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Name des Chatraums" -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Breite der Section" +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Linker Offset für das Aside-Element" +#: ../../mod/events.php:91 +msgid "Event title and start time are required." +msgstr "Veranstaltungs- Titel und Startzeit sind erforderlich." -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Rechter Offset für das Aside-Element" +#: ../../mod/events.php:105 +msgid "Event not found." +msgstr "Termin nicht gefunden." -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "Kein" +#: ../../mod/events.php:369 +msgid "l, F j" +msgstr "l, j. F" -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "Header-Bild" +#: ../../mod/events.php:391 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "Header-Bild nur auf Profilseiten" +#: ../../mod/events.php:437 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" -#: ../../view/theme/redbasic/php/config.php:86 -msgid "Light (Red Matrix default)" -msgstr "Hell (RedMatrix-Voreinstellung)" +#: ../../mod/events.php:438 +msgid "Previous" +msgstr "Voriges" -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Narrow navbar" -msgstr "Schmale Navigationsleiste" +#: ../../mod/events.php:536 +msgid "hour:minute" +msgstr "Stunde:Minute" -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar background color" -msgstr "Hintergrundfarbe der Navigationsleiste" +#: ../../mod/events.php:556 +msgid "Event details" +msgstr "Veranstaltungs-Details" -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation bar gradient top color" -msgstr "Farbverlauf der Navigationsleiste: Farbe oben" +#: ../../mod/events.php:557 +#, php-format +msgid "Format is %s %s." +msgstr "Format ist %s %s." -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation bar gradient bottom color" -msgstr "Farbverlauf der Navigationsleiste: Farbe unten" +#: ../../mod/events.php:558 +msgid "Starting date and Title are required." +msgstr "Startdatum und Titel sind erforderlich." -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation active button gradient top color" -msgstr "Navigations-Button aktiv: Farbe für Farbverlauf oben" +#: ../../mod/events.php:562 +msgid "Event Starts:" +msgstr "Veranstaltung startet:" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation active button gradient bottom color" -msgstr "Navigations-Button aktiv: Farbe für Farbverlauf unten" +#: ../../mod/events.php:570 +msgid "Finish date/time is not known or not relevant" +msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar border color " -msgstr "Farbe für den Rand der Navigationsleiste" +#: ../../mod/events.php:572 +msgid "Event Finishes:" +msgstr "Veranstaltung endet:" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Navigation bar icon color " -msgstr "Farbe für die Icons der Navigationsleiste" +#: ../../mod/events.php:575 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Navigation bar active icon color " -msgstr "Farbe für aktive Icons der Navigationsleiste" +#: ../../mod/events.php:577 +msgid "Description:" +msgstr "Beschreibung:" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "link color" -msgstr "Farbe für Links" +#: ../../mod/events.php:581 +msgid "Title:" +msgstr "Titel:" -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set font-color for banner" -msgstr "Farbe der Schrift des Banners" +#: ../../mod/events.php:583 +msgid "Share this event" +msgstr "Die Veranstaltung teilen" -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color" -msgstr "Hintergrundfarbe" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background image" -msgstr "Hintergrundbild" +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Verwerfen" -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the background color of items" -msgstr "Hintergrundfarbe für Beiträge" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the background color of comments" -msgstr "Hintergrundfarbe für Kommentare" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the border color of comments" -msgstr "Farbe des Randes von Kommentaren" +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the indent for comments" -msgstr "Einzug für Kommentare" +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set the basic color for item icons" -msgstr "Grundfarbe für Beitrags-Icons" +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set the hover color for item icons" -msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set the background color of other content" -msgstr "Hintergrundfarbe für sonstigen Inhalt" +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set font-size for the entire application" -msgstr "Schriftgröße für die ganze Applikation" +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set font-color for posts and comments" -msgstr "Schriftfarbe für Posts und Kommentare" +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Set radius of corners" -msgstr "Ecken-Radius" +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set shadow depth of photos" -msgstr "Schattentiefe von Fotos" +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set maximum width of conversation regions" -msgstr "Maximalbreite der Unterhaltungsbereiche" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Center conversation regions" -msgstr "Konversationsbereich zentrieren" +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)" +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-Mail Adresse" -#: ../../view/theme/redbasic/php/config.php:134 -msgid "Set size of conversation author photo" -msgstr "Größe der Avatare von Themenstartern" +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Zurücksetzen" -#: ../../view/theme/redbasic/php/config.php:135 -msgid "Set size of followup author photos" -msgstr "Größe der Avatare von Kommentatoren" +#: ../../mod/layouts.php:62 +msgid "Help with this feature" +msgstr "Hilfe zu dieser Funktion" -#: ../../view/theme/redbasic/php/config.php:136 -msgid "Sloppy photo albums" -msgstr "Schräge Fotoalben" +#: ../../mod/layouts.php:85 +msgid "Layout Name" +msgstr "Layout-Name" -#: ../../view/theme/redbasic/php/config.php:136 -msgid "Are you a clean desk or a messy desk person?" -msgstr "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?" +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "Block bearbeiten" -#: ../../boot.php:1293 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "Block löschen?" -#: ../../boot.php:1296 -#, php-format -msgid "Update Error at %s" -msgstr "Aktualisierungsfehler auf %s" +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "Block löschen" -#: ../../boot.php:1470 -msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können." +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" -#: ../../boot.php:1498 -msgid "Password" -msgstr "Kennwort" +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" +msgstr "Layout bearbeiten" -#: ../../boot.php:1499 -msgid "Remember me" -msgstr "Angaben speichern" +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" +msgstr "Layout löschen?" -#: ../../boot.php:1504 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" +msgstr "Layout löschen" -#: ../../boot.php:1569 -msgid "permission denied" -msgstr "Zugriff verweigert" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal hinzugefügt." -#: ../../boot.php:1570 -msgid "Got Zot?" -msgstr "Haste schon Zot?" +#: ../../mod/locs.php:47 ../../mod/locs.php:74 +msgid "Location not found." +msgstr "Klon nicht gefunden." -#: ../../boot.php:2000 -msgid "toggle mobile" -msgstr "auf/von mobile Ansicht wechseln" +#: ../../mod/locs.php:78 +msgid "Primary location cannot be removed." +msgstr "Der primäre Klon kann nicht gelöscht werden." diff --git a/view/de/strings.php b/view/de/strings.php index b837aa636..13834e85f 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,11 +5,117 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; +$a->strings["Light (Red Matrix default)"] = "Hell (RedMatrix-Voreinstellung)"; +$a->strings["Submit"] = "Bestätigen"; +$a->strings["Theme settings"] = "Theme-Einstellungen"; +$a->strings["Set scheme"] = "Schema"; +$a->strings["Narrow navbar"] = "Schmale Navigationsleiste"; +$a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; +$a->strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben"; +$a->strings["Navigation bar gradient bottom color"] = "Farbverlauf der Navigationsleiste: Farbe unten"; +$a->strings["Navigation active button gradient top color"] = "Navigations-Button aktiv: Farbe für Farbverlauf oben"; +$a->strings["Navigation active button gradient bottom color"] = "Navigations-Button aktiv: Farbe für Farbverlauf unten"; +$a->strings["Navigation bar border color "] = "Farbe für den Rand der Navigationsleiste"; +$a->strings["Navigation bar icon color "] = "Farbe für die Icons der Navigationsleiste"; +$a->strings["Navigation bar active icon color "] = "Farbe für aktive Icons der Navigationsleiste"; +$a->strings["link color"] = "Farbe für Links"; +$a->strings["Set font-color for banner"] = "Farbe der Schrift des Banners"; +$a->strings["Set the background color"] = "Hintergrundfarbe"; +$a->strings["Set the background image"] = "Hintergrundbild"; +$a->strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge"; +$a->strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare"; +$a->strings["Set the border color of comments"] = "Farbe des Randes von Kommentaren"; +$a->strings["Set the indent for comments"] = "Einzug für Kommentare"; +$a->strings["Set the basic color for item icons"] = "Grundfarbe für Beitrags-Icons"; +$a->strings["Set the hover color for item icons"] = "Farbe für Beitrags-Icons unter dem Mauszeiger"; +$a->strings["Set font-size for the entire application"] = "Schriftgröße für die ganze Applikation"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare"; +$a->strings["Set font-color for posts and comments"] = "Schriftfarbe für Posts und Kommentare"; +$a->strings["Set radius of corners"] = "Ecken-Radius"; +$a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos"; +$a->strings["Set maximum width of conversation regions"] = "Maximalbreite der Unterhaltungsbereiche"; +$a->strings["Center conversation regions"] = "Konversationsbereich zentrieren"; +$a->strings["Set minimum opacity of nav bar - to hide it"] = "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)"; +$a->strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern"; +$a->strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren"; +$a->strings["Sloppy photo albums"] = "Schräge Fotoalben"; +$a->strings["Are you a clean desk or a messy desk person?"] = "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"; +$a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; +$a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; +$a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."; +$a->strings["Register"] = "Registrieren"; +$a->strings["Logout"] = "Abmelden"; +$a->strings["Login"] = "Anmelden"; +$a->strings["Email"] = "E-Mail"; +$a->strings["Password"] = "Kennwort"; +$a->strings["Remember me"] = "Angaben speichern"; +$a->strings["Forgot your password?"] = "Passwort vergessen?"; +$a->strings["Password Reset"] = "Zurücksetzen des Kennworts"; +$a->strings["permission denied"] = "Zugriff verweigert"; +$a->strings["Got Zot?"] = "Haste schon Zot?"; +$a->strings["toggle mobile"] = "auf/von mobile Ansicht wechseln"; +$a->strings["Logged out."] = "Ausgeloggt."; +$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +$a->strings["Login failed."] = "Login fehlgeschlagen."; +$a->strings["Default"] = "Standard"; +$a->strings["parent"] = "Übergeordnetes Verzeichnis"; +$a->strings["Collection"] = "Sammlung"; +$a->strings["Principal"] = "Prinzipal"; +$a->strings["Addressbook"] = "Adressbuch"; +$a->strings["Calendar"] = "Kalender"; +$a->strings["Schedule Inbox"] = "Posteingang für überwachte Kalender"; +$a->strings["Schedule Outbox"] = "Postausgang für überwachte Kalender"; +$a->strings["Unknown"] = "Unbekannt"; +$a->strings["%1\$s used"] = "%1\$s verwendet"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s von %2\$s verwendet (%3\$s%)"; +$a->strings["Files"] = "Dateien"; +$a->strings["Name"] = "Name"; +$a->strings["Type"] = "Typ"; +$a->strings["Size"] = "Größe"; +$a->strings["Last Modified"] = "Zuletzt geändert"; +$a->strings["Edit"] = "Bearbeiten"; +$a->strings["Delete"] = "Löschen"; +$a->strings["Total"] = "Summe"; +$a->strings["Create new folder"] = "Neuen Ordner anlegen"; +$a->strings["Create"] = "Erstelle"; +$a->strings["Upload file"] = "Datei hochladen"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["Permission denied."] = "Zugang verweigert"; $a->strings["Profile Photos"] = "Profilfotos"; -$a->strings["view full size"] = "In Vollbildansicht anschauen"; -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes"; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; +$a->strings["Photo storage failed."] = "Foto speichern schlug fehl"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Upload New Photos"] = "Lade neue Fotos hoch"; +$a->strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +$a->strings["Advanced"] = "Fortgeschritten"; +$a->strings["Find Channels"] = "Finde Kanäle"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; +$a->strings["Find"] = "Finde"; +$a->strings["Channel Suggestions"] = "Kanal-Vorschläge"; +$a->strings["Random Profile"] = "Zufallsprofil"; +$a->strings["Invite Friends"] = "Lade Freunde ein"; +$a->strings["Exammple: name=fred and country=iceland"] = "Beispiel: name=fred and country=deutschland"; +$a->strings["Advanced Find"] = "Erweiterte Suche"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemeinsame Verbindung", + 1 => "%d gemeinsame Verbindungen", +); +$a->strings["show more"] = "mehr zeigen"; +$a->strings[" and "] = "und"; +$a->strings["public profile"] = "öffentliches Profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; +$a->strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; $a->strings["Permission denied"] = "Keine Berechtigung"; $a->strings["(Unknown)"] = "(Unbekannt)"; $a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; @@ -21,48 +127,99 @@ $a->strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; $a->strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; $a->strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; $a->strings["Item not found."] = "Element nicht gefunden."; -$a->strings["Permission denied."] = "Zugang verweigert"; $a->strings["Collection not found."] = "Sammlung nicht gefunden"; $a->strings["Collection is empty."] = "Sammlung ist leer."; $a->strings["Collection: %s"] = "Sammlung: %s"; $a->strings["Connection: %s"] = "Verbindung: %s"; $a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; -$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; -$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; -$a->strings["Site Admin"] = "Server-Administrator"; -$a->strings["Bookmarks"] = "Lesezeichen"; -$a->strings["Address Book"] = "Adressbuch"; -$a->strings["Login"] = "Anmelden"; -$a->strings["Channel Manager"] = "Kanal-Manager"; -$a->strings["Matrix"] = "Matrix"; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Files"] = "Dateien"; -$a->strings["Webpages"] = "Webseiten"; -$a->strings["Channel Home"] = "Mein Kanal"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["New window"] = "Neues Fenster"; +$a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"; +$a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; +$a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["year"] = "Jahr"; +$a->strings["month"] = "Monat"; +$a->strings["day"] = "Tag"; +$a->strings["never"] = "Nie"; +$a->strings["less than a second ago"] = "Vor weniger als einer Sekunde"; +$a->strings["years"] = "Jahre"; +$a->strings["months"] = "Monate"; +$a->strings["week"] = "Woche"; +$a->strings["weeks"] = "Wochen"; +$a->strings["days"] = "Tage"; +$a->strings["hour"] = "Stunde"; +$a->strings["hours"] = "Stunden"; +$a->strings["minute"] = "Minute"; +$a->strings["minutes"] = "Minuten"; +$a->strings["second"] = "Sekunde"; +$a->strings["seconds"] = "Sekunden"; +$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +$a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; +$a->strings["Empty name"] = "Namensfeld leer"; +$a->strings["Name too long"] = "Name ist zu lang"; +$a->strings["No account identifier"] = "Keine Account-Kennung"; +$a->strings["Nickname is required."] = "Spitzname ist erforderlich."; +$a->strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +$a->strings["Default Profile"] = "Standard-Profil"; +$a->strings["Friends"] = "Freunde"; +$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; +$a->strings["Change profile photo"] = "Profilfoto ändern"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/bearbeiten"; +$a->strings["Create New Profile"] = "Neues Profil erstellen"; +$a->strings["Edit Profile"] = "Profile bearbeiten"; +$a->strings["Profile Image"] = "Profilfoto:"; +$a->strings["visible to everybody"] = "sichtbar für jeden"; +$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +$a->strings["Location:"] = "Ort:"; +$a->strings["Gender:"] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Online Now"] = "gerade online"; +$a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[Heute]"; +$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:"; +$a->strings["[No description]"] = "[Keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungs- Erinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen in dieser Woche:"; $a->strings["Profile"] = "Profil"; -$a->strings["Photos"] = "Fotos"; -$a->strings["Events"] = "Veranstaltungen"; -$a->strings["Directory"] = "Verzeichnis"; -$a->strings["Help"] = "Hilfe"; -$a->strings["Mail"] = "Mail"; -$a->strings["Mood"] = "Laune"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["Chat"] = "Chat"; -$a->strings["Search"] = "Suche"; -$a->strings["Probe"] = "Testen"; -$a->strings["Suggest"] = "Empfehlungen"; -$a->strings["Random Channel"] = "Zufälliger Kanal"; -$a->strings["Invite"] = "Einladen"; -$a->strings["Features"] = "Funktionen"; -$a->strings["Language"] = "Sprache"; -$a->strings["Post"] = "Beitrag"; -$a->strings["Profile Photo"] = "Profilfoto"; -$a->strings["Update"] = "Aktualisieren"; -$a->strings["Install"] = "Installieren"; -$a->strings["Purchase"] = "Kaufen"; -$a->strings["Edit"] = "Bearbeiten"; -$a->strings["Delete"] = "Löschen"; -$a->strings["Unknown"] = "Unbekannt"; +$a->strings["Full Name:"] = "Voller Name:"; +$a->strings["Like this channel"] = "Dieser Kanal gefällt mir"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "Gefällt mir", + 1 => "Gefällt mir", +); +$a->strings["j F, Y"] = "j. F Y"; +$a->strings["j F"] = "j. F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +$a->strings["Hometown:"] = "Heimatstadt:"; +$a->strings["Tags:"] = "Schlagworte:"; +$a->strings["Political Views:"] = "Politische Ansichten:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["About:"] = "Über:"; +$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; +$a->strings["Likes:"] = "Gefällt:"; +$a->strings["Dislikes:"] = "Gefällt nicht:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; +$a->strings["My other channels:"] = "Meine anderen Kanäle:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Bücher, Literatur:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebe/Romantik:"; +$a->strings["Work/employment:"] = "Arbeit/Anstellung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Like this thing"] = "Gefällt mir"; $a->strings["New Page"] = "Neue Seite"; $a->strings["View"] = "Ansicht"; $a->strings["Preview"] = "Vorschau"; @@ -71,74 +228,191 @@ $a->strings["Page Link"] = "Seiten-Link"; $a->strings["Title"] = "Titel"; $a->strings["Created"] = "Erstellt"; $a->strings["Edited"] = "Geändert"; -$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."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; -$a->strings["Categories"] = "Kategorien"; -$a->strings["Apps"] = "Apps"; -$a->strings["System"] = "System"; -$a->strings["Personal"] = "Persönlich"; -$a->strings["Create Personal App"] = "Persönliche App erstellen"; -$a->strings["Edit Personal App"] = "Persönliche App bearbeiten"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken"; -$a->strings["Suggestions"] = "Vorschläge"; -$a->strings["See more..."] = "Mehr anzeigen …"; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"; -$a->strings["Notes"] = "Notizen"; -$a->strings["Save"] = "Speichern"; -$a->strings["Remove term"] = "Eintrag löschen"; -$a->strings["Saved Searches"] = "Gesicherte Suchanfragen"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Saved Folders"] = "Gesicherte Ordner"; -$a->strings["Everything"] = "Alles"; -$a->strings["Archives"] = "Archive"; -$a->strings["Refresh"] = "Aktualisieren"; -$a->strings["Me"] = "Ich"; -$a->strings["Best Friends"] = "Beste Freunde"; -$a->strings["Friends"] = "Freunde"; -$a->strings["Co-workers"] = "Kollegen"; -$a->strings["Former Friends"] = "ehem. Freunde"; -$a->strings["Acquaintances"] = "Bekannte"; -$a->strings["Everybody"] = "Jeder"; -$a->strings["Account settings"] = "Konto-Einstellungen"; -$a->strings["Channel settings"] = "Kanal-Einstellungen"; -$a->strings["Additional features"] = "Zusätzliche Funktionen"; -$a->strings["Feature settings"] = "Funktions-Einstellungen"; -$a->strings["Display settings"] = "Anzeige-Einstellungen"; -$a->strings["Connected apps"] = "Verbundene Apps"; -$a->strings["Export channel"] = "Kanal exportieren"; -$a->strings["Export content"] = "Kanal-Inhalte exportieren"; -$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)"; -$a->strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -$a->strings["Channel Sources"] = "Kanal-Quellen"; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Check Mail"] = "E-Mails abrufen"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["Chat Rooms"] = "Chaträume"; -$a->strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -$a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +$a->strings["No recipient provided."] = "Kein Empfänger angegeben"; +$a->strings["[no subject]"] = "[no subject]"; +$a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; +$a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +$a->strings["Tags"] = "Schlagwörter"; +$a->strings["Keywords"] = "Schlüsselwörter"; +$a->strings["have"] = "habe"; +$a->strings["has"] = "hat"; +$a->strings["want"] = "will"; +$a->strings["wants"] = "will"; +$a->strings["like"] = "mag"; +$a->strings["likes"] = "gefällt"; +$a->strings["dislike"] = "verurteile"; +$a->strings["dislikes"] = "missfällt"; +$a->strings["Delete this item?"] = "Dieses Element löschen?"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["[+] show all"] = "[+] Zeige alle"; +$a->strings["[-] show less"] = "[-] zeige weniger"; +$a->strings["[+] expand"] = "[+] aufklappen"; +$a->strings["[-] collapse"] = "[-] einklappen"; +$a->strings["Password too short"] = "Kennwort zu kurz"; +$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; +$a->strings["everybody"] = "alle"; +$a->strings["Secret Passphrase"] = "geheime Passphrase"; +$a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; +$a->strings["close all"] = "Alle schließen"; +$a->strings["Nothing new here"] = "Nichts Neues hier"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = " "; +$a->strings["ago"] = "her"; +$a->strings["from now"] = "von jetzt"; +$a->strings["less than a minute"] = "weniger als eine Minute"; +$a->strings["about a minute"] = "ungefähr eine Minute"; +$a->strings["%d minutes"] = "%d Minuten"; +$a->strings["about an hour"] = "ungefähr eine Stunde"; +$a->strings["about %d hours"] = "ungefähr %d Stunden"; +$a->strings["a day"] = "ein Tag"; +$a->strings["%d days"] = "%d Tage"; +$a->strings["about a month"] = "ungefähr ein Monat"; +$a->strings["%d months"] = "%d Monate"; +$a->strings["about a year"] = "ungefähr ein Jahr"; +$a->strings["%d years"] = "%d Jahre"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; +$a->strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; +$a->strings["Can view my photo albums"] = "Kann meine Fotoalben betrachten"; +$a->strings["Can view my connections"] = "Kann meine Verbindungen sehen"; +$a->strings["Can view my file storage"] = "Kann meine Dateiordner lesen"; +$a->strings["Can view my webpages"] = "Kann meine Webseiten sehen"; +$a->strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +$a->strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; +$a->strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; +$a->strings["Can post photos to my photo albums"] = "Kann Fotos in meinen Fotoalben veröffentlichen"; +$a->strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; +$a->strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; +$a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; +$a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; +$a->strings["Can write to my file storage"] = "Kann in meine Dateiordner schreiben"; +$a->strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; +$a->strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; +$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; +$a->strings["Social Networking"] = "Soziales Netzwerk"; +$a->strings["Mostly Public"] = "Weitgehend öffentlich"; +$a->strings["Restricted"] = "Beschränkt"; +$a->strings["Private"] = "Privat"; +$a->strings["Community Forum"] = "Forum"; +$a->strings["Feed Republish"] = "Teilen von Feeds"; +$a->strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; +$a->strings["Other"] = "Anders"; +$a->strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +$a->strings["Frequently"] = "Häufig"; +$a->strings["Hourly"] = "Stündlich"; +$a->strings["Twice daily"] = "Zwei Mal am Tag"; +$a->strings["Daily"] = "Täglich"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\\\, H:i"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["This event has been added to your calendar."] = "Dieses Ereignis wurde zu Deinem Kalender hinzugefügt"; +$a->strings["Male"] = "Männlich"; +$a->strings["Female"] = "Weiblich"; +$a->strings["Currently Male"] = "Momentan männlich"; +$a->strings["Currently Female"] = "Momentan weiblich"; +$a->strings["Mostly Male"] = "Größtenteils männlich"; +$a->strings["Mostly Female"] = "Größtenteils weiblich"; +$a->strings["Transgender"] = "Transsexuell"; +$a->strings["Intersex"] = "Zwischengeschlechtlich"; +$a->strings["Transsexual"] = "Transsexuell"; +$a->strings["Hermaphrodite"] = "Zwitter"; +$a->strings["Neuter"] = "Geschlechtslos"; +$a->strings["Non-specific"] = "unklar"; +$a->strings["Undecided"] = "Unentschieden"; +$a->strings["Males"] = "Männer"; +$a->strings["Females"] = "Frauen"; +$a->strings["Gay"] = "Schwul"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Keine Bevorzugung"; +$a->strings["Bisexual"] = "Bisexuell"; +$a->strings["Autosexual"] = "Autosexuell"; +$a->strings["Abstinent"] = "Enthaltsam"; +$a->strings["Virgin"] = "Jungfräulich"; +$a->strings["Deviant"] = "Abweichend"; +$a->strings["Fetish"] = "Fetisch"; +$a->strings["Oodles"] = "Unmengen"; +$a->strings["Nonsexual"] = "Sexlos"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Einsam"; +$a->strings["Available"] = "Verfügbar"; +$a->strings["Unavailable"] = "Nicht verfügbar"; +$a->strings["Has crush"] = "Verguckt"; +$a->strings["Infatuated"] = "Verknallt"; +$a->strings["Dating"] = "Lerne gerade jemanden kennen"; +$a->strings["Unfaithful"] = "Treulos"; +$a->strings["Sex Addict"] = "Sexabhängig"; +$a->strings["Friends/Benefits"] = "Freunde/Begünstigte"; +$a->strings["Casual"] = "Lose"; +$a->strings["Engaged"] = "Verlobt"; +$a->strings["Married"] = "Verheiratet"; +$a->strings["Imaginarily married"] = "Gewissermaßen verheiratet"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "Lebensgemeinschaft"; +$a->strings["Common law"] = "Informelle Ehe"; +$a->strings["Happy"] = "Glücklich"; +$a->strings["Not looking"] = "Nicht Ausschau haltend"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrogen"; +$a->strings["Separated"] = "Getrennt"; +$a->strings["Unstable"] = "Labil"; +$a->strings["Divorced"] = "Geschieden"; +$a->strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; +$a->strings["Widowed"] = "Verwitwet"; +$a->strings["Uncertain"] = "Ungewiss"; +$a->strings["It's complicated"] = "Es ist kompliziert"; +$a->strings["Don't care"] = "Interessiert mich nicht"; +$a->strings["Ask me"] = "Frag mich mal"; +$a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; +$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt"; +$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; +$a->strings["An invitation is required."] = "Eine Einladung wird benötigt"; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden"; +$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; +$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen"; +$a->strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; +$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +$a->strings["Administrator"] = "Administrator"; +$a->strings["your registration password"] = "Dein Registrierungspasswort"; +$a->strings["Registration details for %s"] = "Registrierungsdetails für %s"; +$a->strings["Account approved."] = "Account bestätigt."; +$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen"; +$a->strings["Account verified. Please login."] = "Konto geprüft. Bitte melde Dich an!"; +$a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; +$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +$a->strings["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; $a->strings["Invalid data packet"] = "Ungültiges Datenpaket"; $a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; $a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; -$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes"; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; -$a->strings["Photo storage failed."] = "Foto speichern schlug fehl"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Upload New Photos"] = "Lade neue Fotos hoch"; -$a->strings["Visible to your default audience"] = "Standard-Sichtbarkeit"; -$a->strings["Show"] = "Zeigen"; -$a->strings["Don't show"] = "Nicht zeigen"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Close"] = "Schließen"; -$a->strings[" and "] = "und"; -$a->strings["public profile"] = "öffentliches Profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; -$a->strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -$a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; +$a->strings["view full size"] = "In Vollbildansicht anschauen"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; +$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."] = "Ein gelöschte Gruppe mit diesem Namen wurde gefunden. Existierende Zugangsregeln für Elemente könnten für diese Gruppe angewendet werden, sowie für alle zukünftigen Elemente."; +$a->strings["Default privacy group for new contacts"] = "Standard-Privatsphärengruppe für neue Kontakte"; +$a->strings["All Channels"] = "Alle Kanäle"; +$a->strings["edit"] = "Bearbeiten"; +$a->strings["Collections"] = "Sammlungen"; +$a->strings["Edit collection"] = "Bearbeite Sammlungen"; +$a->strings["Create a new collection"] = "Neue Sammlung erzeugen"; +$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; +$a->strings["add"] = "hinzufügen"; $a->strings["Item was not found."] = "Beitrag wurde nicht gefunden."; $a->strings["No source file."] = "Keine Quelldatei."; $a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; @@ -153,115 +427,54 @@ $a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; $a->strings["Path not found."] = "Pfad nicht gefunden."; $a->strings["mkdir failed."] = "mkdir fehlgeschlagen."; $a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -$a->strings["photo"] = "Foto"; -$a->strings["event"] = "Ereignis"; -$a->strings["channel"] = "Kanal"; -$a->strings["status"] = "Status"; -$a->strings["comment"] = "Kommentar"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; -$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; -$a->strings["poked"] = "stupste"; -$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; -$a->strings["Select"] = "Auswählen"; $a->strings["Private Message"] = "Private Nachricht"; -$a->strings["Message is verified"] = "Nachricht überprüft"; -$a->strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Gespeichert unter:"; +$a->strings["Select"] = "Auswählen"; +$a->strings["Save to Folder"] = "In Ordner speichern"; +$a->strings["View all"] = "Alles anzeigen"; +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "Gefällt nicht", + 1 => "Gefällt nicht", +); +$a->strings["Add Star"] = "Stern hinzufügen"; +$a->strings["Remove Star"] = "Stern entfernen"; +$a->strings["Toggle Star Status"] = "Stern-Status umschalten"; +$a->strings["starred"] = "markiert"; +$a->strings["Message signature validated"] = "Signatur überprüft"; +$a->strings["Message signature incorrect"] = "Signatur nicht korrekt"; +$a->strings["Add Tag"] = "Tag hinzufügen"; +$a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; +$a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; +$a->strings["Share This"] = "Teilen"; +$a->strings["share"] = "Teilen"; +$a->strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s"; +$a->strings["to"] = "an"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; $a->strings[" from %s"] = "von %s"; $a->strings["last edited: %s"] = "zuletzt bearbeitet: %s"; $a->strings["Expires: %s"] = "Verfällt: %s"; -$a->strings["View in context"] = "Im Zusammenhang anschauen"; +$a->strings["Save Bookmarks"] = "Favoriten speichern"; +$a->strings["Add to Calendar"] = "Zum Kalender hinzufügen"; +$a->strings["__ctx:noun__ Likes"] = "Gefällt mir"; +$a->strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; +$a->strings["Close"] = "Schließen"; $a->strings["Please wait"] = "Bitte warten"; -$a->strings["remove"] = "lösche"; -$a->strings["Loading..."] = "Lädt ..."; -$a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; -$a->strings["View Source"] = "Quelle anzeigen"; -$a->strings["Follow Thread"] = "Unterhaltung folgen"; -$a->strings["View Status"] = "Status ansehen"; -$a->strings["View Profile"] = "Profil ansehen"; -$a->strings["View Photos"] = "Fotos ansehen"; -$a->strings["Matrix Activity"] = "Matrix-Aktivität"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Send PM"] = "Sende PN"; -$a->strings["%s likes this."] = "%s gefällt das."; -$a->strings["%s doesn't like this."] = "%s gefällt das nicht."; -$a->strings["%2\$d people like this."] = array( - 0 => "%2\$d Person gefällt das.", - 1 => "%2\$d Leuten gefällt das.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "%2\$d Person gefällt das nicht.", - 1 => "%2\$d Leuten gefällt das nicht.", -); -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = array( - 0 => "", - 1 => ", und %d andere", +$a->strings["%d comment"] = array( + 0 => "%d Kommentar", + 1 => "%d Kommentare", ); -$a->strings["%s like this."] = "%s gefällt das."; -$a->strings["%s don't like this."] = "%s gefällt das nicht."; -$a->strings["Visible to everybody"] = "Sichtbar für jeden"; -$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; -$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; -$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; -$a->strings["Tag term:"] = "Schlagwort:"; -$a->strings["Save to Folder:"] = "Speichern in Ordner:"; -$a->strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -$a->strings["Share"] = "Teilen"; -$a->strings["Page link title"] = "Seitentitel-Link"; -$a->strings["Post as"] = "Posten als"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["upload photo"] = "Foto hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anfügen"; -$a->strings["Insert web link"] = "Link einfügen"; -$a->strings["web link"] = "Web-Link"; -$a->strings["Insert video link"] = "Video-Link einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Link einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Standort"; -$a->strings["set location"] = "Standort"; -$a->strings["Clear browser location"] = "Browser-Standort löschen"; -$a->strings["clear location"] = "Standort löschen"; -$a->strings["Set title"] = "Titel"; -$a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; -$a->strings["Permission settings"] = "Berechtigungs-Einstellungen"; -$a->strings["permissions"] = "Berechtigungen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com"; -$a->strings["Set expiration date"] = "Verfallsdatum"; +$a->strings["This is you"] = "Das bist Du"; +$a->strings["Bold"] = "Fett"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Unterstrichen"; +$a->strings["Quote"] = "Zitat"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Bild"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; $a->strings["Encrypt text"] = "Text verschlüsseln"; -$a->strings["OK"] = "Ok"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["Discover"] = "Entdecken"; -$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; -$a->strings["Commented Order"] = "Neueste Kommentare"; -$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; -$a->strings["Posted Order"] = "Neueste Beiträge"; -$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; -$a->strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; -$a->strings["New"] = "Neu"; -$a->strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; -$a->strings["Starred"] = "Markiert"; -$a->strings["Favourite Posts"] = "Markierte Beiträge"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; -$a->strings["Channel"] = "Kanal"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["About"] = "Über"; -$a->strings["Profile Details"] = "Profil-Details"; -$a->strings["Files and Storage"] = "Dateien und Speicher"; -$a->strings["Chatrooms"] = "Chaträume"; -$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -$a->strings["Manage Webpages"] = "Webseiten verwalten"; -$a->strings["Logged out."] = "Ausgeloggt."; -$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -$a->strings["Login failed."] = "Login fehlgeschlagen."; +$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."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; $a->strings["prev"] = "vorherige"; $a->strings["first"] = "erste"; $a->strings["last"] = "letzte"; @@ -274,7 +487,10 @@ $a->strings["%d Connection"] = array( 1 => "%d Verbindungen", ); $a->strings["View Connections"] = "Verbindungen anzeigen"; +$a->strings["Search"] = "Suche"; +$a->strings["Save"] = "Speichern"; $a->strings["poke"] = "anstupsen"; +$a->strings["poked"] = "stupste"; $a->strings["ping"] = "anpingen"; $a->strings["pinged"] = "pingte"; $a->strings["prod"] = "knuffen"; @@ -335,54 +551,106 @@ $a->strings["Select a page layout: "] = "Ein Seiten-Layout auswählen:"; $a->strings["default"] = "Standard"; $a->strings["Page content type: "] = "Content-Typ der Seite:"; $a->strings["Select an alternate language"] = "Wähle eine alternative Sprache"; +$a->strings["photo"] = "Foto"; +$a->strings["event"] = "Ereignis"; +$a->strings["status"] = "Status"; +$a->strings["comment"] = "Kommentar"; $a->strings["activity"] = "Aktivität"; $a->strings["Design"] = "Design"; $a->strings["Blocks"] = "Blöcke"; $a->strings["Menus"] = "Menüs"; $a->strings["Layouts"] = "Layouts"; $a->strings["Pages"] = "Seiten"; +$a->strings["Sort Options"] = "Sortieroptionen"; +$a->strings["Alphabetic"] = "alphabetisch"; +$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; +$a->strings["Newest to Oldest"] = "Neueste zuerst"; +$a->strings["Enable Safe Search"] = "Sichere Suche einschalten"; +$a->strings["Disable Safe Search"] = "Sichere Suche ausschalten"; +$a->strings["Safe Mode"] = "Sicherer Modus"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["Install design element: "] = "Design-Element installieren:"; +$a->strings["QR code"] = "QR-Code"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +$a->strings["post"] = "Beitrag"; +$a->strings["$1 spoiler"] = "$1 Spoiler"; +$a->strings["$1 wrote:"] = "$1 schrieb:"; +$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung"; +$a->strings["redmatrix"] = "redmatrix"; +$a->strings["Thank You,"] = "Danke."; +$a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Benachrichtigung] Neue Mail auf %s empfangen"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; +$a->strings["a private message"] = "eine private Nachricht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]a %4\$s[/zrl] kommentiert"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf Deine Pinnwand auf %3\$s geschrieben"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]Deine Pinnwand[/zrl] geschrieben"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Benachrichtigung] %s hat Dich erwähnt"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Benachrichtigung] %1\$s hat Dich angestupst"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Benachrichtigung] %s hat Deinen Beitrag getaggt"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Benachrichtigung] Vorstellung erhalten"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, Du hast eine neue Verbindungsanfrage von '%2\$s' auf %3\$s erhalten"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, Du hast [zrl=%2\$s]eine neue Verbindungsanfrage[/zrl] von %3\$s erhalten."; +$a->strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten."; +$a->strings["Name:"] = "Name:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; +$a->strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; $a->strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -$a->strings["Tags"] = "Schlagwörter"; -$a->strings["Keywords"] = "Schlüsselwörter"; -$a->strings["have"] = "habe"; -$a->strings["has"] = "hat"; -$a->strings["want"] = "will"; -$a->strings["wants"] = "will"; -$a->strings["like"] = "mag"; -$a->strings["likes"] = "gefällt"; -$a->strings["dislike"] = "verurteile"; -$a->strings["dislikes"] = "missfällt"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "Gefällt mir", - 1 => "Gefällt mir", -); -$a->strings["Default"] = "Standard"; -$a->strings["Logout"] = "Abmelden"; $a->strings["End this session"] = "Beende diese Sitzung"; $a->strings["Home"] = "Home"; $a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["View Profile"] = "Profil ansehen"; $a->strings["Your profile page"] = "Deine Profilseite"; $a->strings["Edit Profiles"] = "Profile bearbeiten"; $a->strings["Manage/Edit profiles"] = "Profile verwalten"; -$a->strings["Edit Profile"] = "Profile bearbeiten"; $a->strings["Edit your profile"] = "Profil bearbeiten"; +$a->strings["Photos"] = "Fotos"; $a->strings["Your photos"] = "Deine Bilder"; $a->strings["Your files"] = "Deine Dateien"; +$a->strings["Chat"] = "Chat"; $a->strings["Your chatrooms"] = "Deine Chaträume"; +$a->strings["Bookmarks"] = "Lesezeichen"; $a->strings["Your bookmarks"] = "Deine Lesezeichen"; +$a->strings["Webpages"] = "Webseiten"; $a->strings["Your webpages"] = "Deine Webseiten"; $a->strings["Sign in"] = "Anmelden"; $a->strings["%s - click to logout"] = "%s - Klick zum Abmelden"; +$a->strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; $a->strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; $a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registrieren"; $a->strings["Create an account"] = "Erzeuge ein Konto"; +$a->strings["Help"] = "Hilfe"; $a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Applications, utilities, links, games"] = "Applikationen, Zubehör, Links, Spiele"; +$a->strings["Apps"] = "Apps"; +$a->strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; $a->strings["Search site content"] = "Durchsuche Seiten-Inhalt"; -$a->strings["Channel Locator"] = "Kanal-Anzeiger"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["Channel Locator"] = "Kanal-Verzeichnis"; +$a->strings["Matrix"] = "Matrix"; $a->strings["Your matrix"] = "Deine Matrix"; $a->strings["Mark all matrix notifications seen"] = "Markiere alle Matrix-Benachrichtigungen als angesehen"; +$a->strings["Channel Home"] = "Mein Kanal"; $a->strings["Channel home"] = "Mein Kanal"; $a->strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; $a->strings["Connections"] = "Verbindungen"; @@ -390,158 +658,32 @@ $a->strings["Notices"] = "Benachrichtigungen"; $a->strings["Notifications"] = "Benachrichtigungen"; $a->strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; $a->strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; +$a->strings["Mail"] = "Mail"; $a->strings["Private mail"] = "Persönliche Mail"; $a->strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; $a->strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; $a->strings["Inbox"] = "Eingang"; $a->strings["Outbox"] = "Ausgang"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["Events"] = "Veranstaltungen"; $a->strings["Event Calendar"] = "Veranstaltungskalender"; $a->strings["See all events"] = "Alle Ereignisse ansehen"; $a->strings["Mark all events seen"] = "Markiere alle Ereignisse als gesehen"; +$a->strings["Channel Manager"] = "Kanal-Manager"; $a->strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; +$a->strings["Settings"] = "Einstellungen"; $a->strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -$a->strings["Admin"] = "Admin"; +$a->strings["Admin"] = "Administration"; $a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +$a->strings["Loading..."] = "Lädt ..."; $a->strings["Please wait..."] = "Bitte warten..."; -$a->strings["Frequently"] = "Häufig"; -$a->strings["Hourly"] = "Stündlich"; -$a->strings["Twice daily"] = "Zwei Mal am Tag"; -$a->strings["Daily"] = "Täglich"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-Mail"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -$a->strings["Advanced"] = "Fortgeschritten"; -$a->strings["Find Channels"] = "Finde Kanäle"; -$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; -$a->strings["Find"] = "Finde"; -$a->strings["Channel Suggestions"] = "Kanal-Vorschläge"; -$a->strings["Random Profile"] = "Zufallsprofil"; -$a->strings["Invite Friends"] = "Lade Freunde ein"; -$a->strings["Exammple: name=fred and country=iceland"] = "Beispiel: name=fred and country=deutschland"; -$a->strings["Advanced Find"] = "Erweiterte Suche"; -$a->strings["%d connection in common"] = array( - 0 => "%d gemeinsame Verbindung", - 1 => "%d gemeinsame Verbindungen", -); -$a->strings["show more"] = "mehr zeigen"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\\\, H:i"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["Location:"] = "Ort:"; -$a->strings["This event has been added to your calendar."] = "Dieses Ereignis wurde zu Deinem Kalender hinzugefügt"; -$a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; -$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt"; -$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; -$a->strings["An invitation is required."] = "Eine Einladung wird benötigt"; -$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden"; -$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; -$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen"; -$a->strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; -$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -$a->strings["Administrator"] = "Administrator"; -$a->strings["your registration password"] = "Dein Registrierungspasswort"; -$a->strings["Registration details for %s"] = "Registrierungsdetails für %s"; -$a->strings["Account approved."] = "Account bestätigt."; -$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen"; -$a->strings["Account verified. Please login."] = "Konto geprüft. Bitte melde Dich an!"; -$a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["year"] = "Jahr"; -$a->strings["month"] = "Monat"; -$a->strings["day"] = "Tag"; -$a->strings["never"] = "Nie"; -$a->strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -$a->strings["years"] = "Jahre"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$a->strings["days"] = "Tage"; -$a->strings["hour"] = "Stunde"; -$a->strings["hours"] = "Stunden"; -$a->strings["minute"] = "Minute"; -$a->strings["minutes"] = "Minuten"; -$a->strings["second"] = "Sekunde"; -$a->strings["seconds"] = "Sekunden"; -$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -$a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; -$a->strings["Sort Options"] = "Sortieroptionen"; -$a->strings["Alphabetic"] = "alphabetisch"; -$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; -$a->strings["Newest to Oldest"] = "Neueste zuerst"; -$a->strings["Enable Safe Search"] = "Sichere Suche einschalten"; -$a->strings["Disable Safe Search"] = "Sichere Suche ausschalten"; -$a->strings["Safe Mode"] = "Sicherer Modus"; -$a->strings["Attachments:"] = "Anhänge:"; -$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung"; -$a->strings["redmatrix"] = "redmatrix"; -$a->strings["Thank You,"] = "Danke."; -$a->strings["%s Administrator"] = "der Administrator von %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red Notify] Neue Mail auf %s empfangen"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; -$a->strings["a private message"] = "eine private Nachricht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]a %4\$s[/zrl] kommentiert"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf Deine Pinnwand auf %3\$s geschrieben"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]Deine Pinnwand[/zrl] geschrieben"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Benachrichtigung] %s hat Dich erwähnt"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red Notify] %1\$s hat Dich angestupst"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Benachrichtigung] %s hat Deinen Beitrag getaggt"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Notify] Vorstellung erhalten"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, Du hast eine neue Verbindungsanfrage von '%2\$s' auf %3\$s erhalten"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, Du hast [zrl=%2\$s]eine neue Verbindungsanfrage[/zrl] von %3\$s erhalten."; -$a->strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten."; -$a->strings["Name:"] = "Name:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; -$a->strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; -$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen"; -$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; -$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; -$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; -$a->strings["Room is full"] = "Der Raum ist voll"; $a->strings["General Features"] = "Allgemeine Funktionen"; $a->strings["Content Expiration"] = "Verfall von Inhalten"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."; $a->strings["Multiple Profiles"] = "Mehrfachprofile"; $a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können"; $a->strings["Advanced Profiles"] = "Erweiterte Profile"; -$a->strings["Additional profile sections and selections"] = "Stellt zusätzliche Felder im Profil zur Verfügung"; +$a->strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; $a->strings["Profile Import/Export"] = "Profil-Import/Export"; $a->strings["Save and load profile details across sites/channels"] = "Speichere Dein Profil, um es in einen anderen Kanal zu importieren"; $a->strings["Web Pages"] = "Webseiten"; @@ -561,6 +703,7 @@ $a->strings["Use Markdown"] = "Markdown benutzen"; $a->strings["Allow use of \"Markdown\" to format posts"] = "Erlaube Markdown zur Formatierung von Beiträgen"; $a->strings["Post Preview"] = "Voransicht"; $a->strings["Allow previewing posts and comments before publishing them"] = "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"; +$a->strings["Channel Sources"] = "Kanal-Quellen"; $a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"; $a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)"; @@ -569,7 +712,8 @@ $a->strings["Search by Date"] = "Suche nach Datum"; $a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; $a->strings["Collections Filter"] = "Filter für Sammlung"; $a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"; -$a->strings["Save search terms for re-use"] = "Gesicherte Suchbegriffe zur Wiederverwendung"; +$a->strings["Saved Searches"] = "Gespeicherte Suchanfragen"; +$a->strings["Save search terms for re-use"] = "Suchbegriffe zur Wiederverwendung abspeichern"; $a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; $a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast"; $a->strings["Network New Tab"] = "Netzwerkreiter Neu"; @@ -592,6 +736,161 @@ $a->strings["Star Posts"] = "Beiträge mit Sternchen versehen"; $a->strings["Ability to mark special posts with a star indicator"] = "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"; $a->strings["Tag Cloud"] = "Schlagwort-Wolke"; $a->strings["Provide a personal tag cloud on your channel page"] = "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen"; +$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; +$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +$a->strings["Site Admin"] = "Hub-Administration"; +$a->strings["Address Book"] = "Adressbuch"; +$a->strings["Mood"] = "Laune"; +$a->strings["Poke"] = "Anstupsen"; +$a->strings["Probe"] = "Testen"; +$a->strings["Suggest"] = "Empfehlungen"; +$a->strings["Random Channel"] = "Zufälliger Kanal"; +$a->strings["Invite"] = "Einladen"; +$a->strings["Features"] = "Funktionen"; +$a->strings["Language"] = "Sprache"; +$a->strings["Post"] = "Beitrag"; +$a->strings["Profile Photo"] = "Profilfoto"; +$a->strings["Update"] = "Aktualisieren"; +$a->strings["Install"] = "Installieren"; +$a->strings["Purchase"] = "Kaufen"; +$a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; +$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen"; +$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; +$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; +$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; +$a->strings["Room is full"] = "Der Raum ist voll"; +$a->strings["channel"] = "Kanal"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; +$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; +$a->strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Gespeichert unter:"; +$a->strings["View in context"] = "Im Zusammenhang anschauen"; +$a->strings["remove"] = "lösche"; +$a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; +$a->strings["View Source"] = "Quelle anzeigen"; +$a->strings["Follow Thread"] = "Unterhaltung folgen"; +$a->strings["View Status"] = "Status ansehen"; +$a->strings["View Photos"] = "Fotos ansehen"; +$a->strings["Matrix Activity"] = "Matrix-Aktivität"; +$a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Send PM"] = "Sende PN"; +$a->strings["%s likes this."] = "%s gefällt das."; +$a->strings["%s doesn't like this."] = "%s gefällt das nicht."; +$a->strings["%2\$d people like this."] = array( + 0 => "%2\$d Person gefällt das.", + 1 => "%2\$d Leuten gefällt das.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "%2\$d Person gefällt das nicht.", + 1 => "%2\$d Leuten gefällt das nicht.", +); +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => ", und %d andere", +); +$a->strings["%s like this."] = "%s gefällt das."; +$a->strings["%s don't like this."] = "%s gefällt das nicht."; +$a->strings["Visible to everybody"] = "Sichtbar für jeden"; +$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; +$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; +$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; +$a->strings["Tag term:"] = "Schlagwort:"; +$a->strings["Save to Folder:"] = "Speichern in Ordner:"; +$a->strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; +$a->strings["Share"] = "Teilen"; +$a->strings["Page link title"] = "Seitentitel-Link"; +$a->strings["Post as"] = "Posten als"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["upload photo"] = "Foto hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anfügen"; +$a->strings["Insert web link"] = "Link einfügen"; +$a->strings["web link"] = "Web-Link"; +$a->strings["Insert video link"] = "Video-Link einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Link einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Standort"; +$a->strings["set location"] = "Standort"; +$a->strings["Clear browser location"] = "Browser-Standort löschen"; +$a->strings["clear location"] = "Standort löschen"; +$a->strings["Set title"] = "Titel"; +$a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; +$a->strings["Permission settings"] = "Berechtigungs-Einstellungen"; +$a->strings["permissions"] = "Berechtigungen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com"; +$a->strings["Set expiration date"] = "Verfallsdatum"; +$a->strings["OK"] = "Ok"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["Discover"] = "Entdecken"; +$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; +$a->strings["Commented Order"] = "Neueste Kommentare"; +$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; +$a->strings["Posted Order"] = "Neueste Beiträge"; +$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; +$a->strings["Personal"] = "Persönlich"; +$a->strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; +$a->strings["New"] = "Neu"; +$a->strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; +$a->strings["Starred"] = "Markiert"; +$a->strings["Favourite Posts"] = "Markierte Beiträge"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; +$a->strings["Channel"] = "Kanal"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["About"] = "Über"; +$a->strings["Profile Details"] = "Profil-Details"; +$a->strings["Files and Storage"] = "Dateien und Speicher"; +$a->strings["Chatrooms"] = "Chaträume"; +$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +$a->strings["Manage Webpages"] = "Webseiten verwalten"; +$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["Visible to your default audience"] = "Standard-Sichtbarkeit"; +$a->strings["Show"] = "Zeigen"; +$a->strings["Don't show"] = "Nicht zeigen"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["System"] = "System"; +$a->strings["Create Personal App"] = "Persönliche App erstellen"; +$a->strings["Edit Personal App"] = "Persönliche App bearbeiten"; +$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken"; +$a->strings["Suggestions"] = "Vorschläge"; +$a->strings["See more..."] = "Mehr anzeigen …"; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"; +$a->strings["Notes"] = "Notizen"; +$a->strings["Remove term"] = "Eintrag löschen"; +$a->strings["Archives"] = "Archive"; +$a->strings["Refresh"] = "Aktualisieren"; +$a->strings["Me"] = "Ich"; +$a->strings["Best Friends"] = "Beste Freunde"; +$a->strings["Co-workers"] = "Kollegen"; +$a->strings["Former Friends"] = "ehem. Freunde"; +$a->strings["Acquaintances"] = "Bekannte"; +$a->strings["Everybody"] = "Jeder"; +$a->strings["Account settings"] = "Konto-Einstellungen"; +$a->strings["Channel settings"] = "Kanal-Einstellungen"; +$a->strings["Additional features"] = "Zusätzliche Funktionen"; +$a->strings["Feature settings"] = "Funktions-Einstellungen"; +$a->strings["Display settings"] = "Anzeige-Einstellungen"; +$a->strings["Connected apps"] = "Verbundene Apps"; +$a->strings["Export channel"] = "Kanal exportieren"; +$a->strings["Export content"] = "Kanal-Inhalte exportieren"; +$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)"; +$a->strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Check Mail"] = "E-Mails abrufen"; +$a->strings["Chat Rooms"] = "Chaträume"; +$a->strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +$a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; $a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; $a->strings["Channel location missing."] = "Adresse des Kanals fehlt."; $a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; @@ -600,294 +899,8 @@ $a->strings["Protocol disabled."] = "Protokoll deaktiviert."; $a->strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; $a->strings["local account not found."] = "Lokales Konto nicht gefunden."; $a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -$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."] = "Ein gelöschte Gruppe mit diesem Namen wurde gefunden. Existierende Zugangsregeln für Elemente könnten für diese Gruppe angewendet werden, sowie für alle zukünftigen Elemente."; -$a->strings["Default privacy group for new contacts"] = "Standard-Privatsphärengruppe für neue Kontakte"; -$a->strings["All Channels"] = "Alle Kanäle"; -$a->strings["edit"] = "Bearbeiten"; -$a->strings["Collections"] = "Sammlungen"; -$a->strings["Edit collection"] = "Bearbeite Sammlungen"; -$a->strings["Create a new collection"] = "Neue Sammlung erzeugen"; -$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["Install design element: "] = "Design-Element installieren:"; -$a->strings["QR code"] = "QR-Code"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -$a->strings["post"] = "Beitrag"; -$a->strings["$1 spoiler"] = "$1 Spoiler"; -$a->strings["$1 wrote:"] = "$1 schrieb:"; -$a->strings["parent"] = "Übergeordnetes Verzeichnis"; -$a->strings["Collection"] = "Sammlung"; -$a->strings["Principal"] = "Prinzipal"; -$a->strings["Addressbook"] = "Adressbuch"; -$a->strings["Calendar"] = "Kalender"; -$a->strings["Schedule Inbox"] = "Post-Eingang prüfen"; -$a->strings["Schedule Outbox"] = "Post-Ausgang prüfen"; -$a->strings["%1\$s used"] = "%1\$s verwendet"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "von %2\$s wurden %1\$s verwendet (%3\$s%)"; -$a->strings["Name"] = "Name"; -$a->strings["Type"] = "Typ"; -$a->strings["Size"] = "Größe"; -$a->strings["Last Modified"] = "Zuletzt geändert"; -$a->strings["Total"] = "Summe"; -$a->strings["Create new folder"] = "Neuen Ordner anlegen"; -$a->strings["Create"] = "Erstelle"; -$a->strings["Upload file"] = "Datei hochladen"; -$a->strings["Upload"] = "Hochladen"; -$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; -$a->strings["Empty name"] = "Namensfeld leer"; -$a->strings["Name too long"] = "Name ist zu lang"; -$a->strings["No account identifier"] = "Keine Account-Kennung"; -$a->strings["Nickname is required."] = "Spitzname ist erforderlich."; -$a->strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; -$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -$a->strings["Default Profile"] = "Standard-Profil"; -$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; -$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; -$a->strings["Change profile photo"] = "Profilfoto ändern"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/bearbeiten"; -$a->strings["Create New Profile"] = "Neues Profil erstellen"; -$a->strings["Profile Image"] = "Profilfoto:"; -$a->strings["visible to everybody"] = "sichtbar für jeden"; -$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["Gender:"] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Online Now"] = "gerade online"; -$a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[Heute]"; -$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:"; -$a->strings["[No description]"] = "[Keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungs- Erinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen in dieser Woche:"; -$a->strings["Full Name:"] = "Voller Name:"; -$a->strings["Like this channel"] = "Dieser Kanal gefällt mir"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -$a->strings["Hometown:"] = "Heimatstadt:"; -$a->strings["Tags:"] = "Schlagworte:"; -$a->strings["Political Views:"] = "Politische Ansichten:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["About:"] = "Über:"; -$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; -$a->strings["Likes:"] = "Gefällt:"; -$a->strings["Dislikes:"] = "Gefällt nicht:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; -$a->strings["My other channels:"] = "Meine anderen Kanäle:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Bücher, Literatur:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebe/Romantik:"; -$a->strings["Work/employment:"] = "Arbeit/Anstellung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Like this thing"] = "Gefällt mir"; -$a->strings["No recipient provided."] = "Kein Empfänger angegeben"; -$a->strings["[no subject]"] = "[no subject]"; -$a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; -$a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; -$a->strings["Save to Folder"] = "In Ordner speichern"; -$a->strings["View all"] = "Alles anzeigen"; -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "Gefällt nicht", - 1 => "Gefällt nicht", -); -$a->strings["Add Star"] = "Stern hinzufügen"; -$a->strings["Remove Star"] = "Stern entfernen"; -$a->strings["Toggle Star Status"] = "Stern-Status umschalten"; -$a->strings["starred"] = "markiert"; -$a->strings["Add Tag"] = "Tag hinzufügen"; -$a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; -$a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; -$a->strings["Share This"] = "Teilen"; -$a->strings["share"] = "Teilen"; -$a->strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s"; -$a->strings["to"] = "an"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["Save Bookmarks"] = "Favoriten speichern"; -$a->strings["Add to Calendar"] = "Zum Kalender hinzufügen"; -$a->strings["__ctx:noun__ Likes"] = "Gefällt mir"; -$a->strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; -$a->strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", -); -$a->strings["[+] show all"] = "[+] Zeige alle"; -$a->strings["This is you"] = "Das bist Du"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["Submit"] = "Bestätigen"; -$a->strings["Bold"] = "Fett"; -$a->strings["Italic"] = "Kursiv"; -$a->strings["Underline"] = "Unterstrichen"; -$a->strings["Quote"] = "Zitat"; -$a->strings["Code"] = "Code"; -$a->strings["Image"] = "Bild"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Delete this item?"] = "Dieses Element löschen?"; -$a->strings["[-] show less"] = "[-] zeige weniger"; -$a->strings["[+] expand"] = "[+] aufklappen"; -$a->strings["[-] collapse"] = "[-] einklappen"; -$a->strings["Password too short"] = "Kennwort zu kurz"; -$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; -$a->strings["everybody"] = "alle"; -$a->strings["Secret Passphrase"] = "geheime Passphrase"; -$a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; -$a->strings["close all"] = "Alle schließen"; -$a->strings["Nothing new here"] = "Nichts Neues hier"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = " "; -$a->strings["ago"] = "her"; -$a->strings["from now"] = "von jetzt"; -$a->strings["less than a minute"] = "weniger als eine Minute"; -$a->strings["about a minute"] = "ungefähr eine Minute"; -$a->strings["%d minutes"] = "%d Minuten"; -$a->strings["about an hour"] = "ungefähr eine Stunde"; -$a->strings["about %d hours"] = "ungefähr %d Stunden"; -$a->strings["a day"] = "ein Tag"; -$a->strings["%d days"] = "%d Tage"; -$a->strings["about a month"] = "ungefähr ein Monat"; -$a->strings["%d months"] = "%d Monate"; -$a->strings["about a year"] = "ungefähr ein Jahr"; -$a->strings["%d years"] = "%d Jahre"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; -$a->strings["New window"] = "Neues Fenster"; -$a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"; -$a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; -$a->strings["Male"] = "Männlich"; -$a->strings["Female"] = "Weiblich"; -$a->strings["Currently Male"] = "Momentan männlich"; -$a->strings["Currently Female"] = "Momentan weiblich"; -$a->strings["Mostly Male"] = "Größtenteils männlich"; -$a->strings["Mostly Female"] = "Größtenteils weiblich"; -$a->strings["Transgender"] = "Transsexuell"; -$a->strings["Intersex"] = "Zwischengeschlechtlich"; -$a->strings["Transsexual"] = "Transsexuell"; -$a->strings["Hermaphrodite"] = "Zwitter"; -$a->strings["Neuter"] = "Geschlechtslos"; -$a->strings["Non-specific"] = "unklar"; -$a->strings["Other"] = "Anders"; -$a->strings["Undecided"] = "Unentschieden"; -$a->strings["Males"] = "Männer"; -$a->strings["Females"] = "Frauen"; -$a->strings["Gay"] = "Schwul"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Keine Bevorzugung"; -$a->strings["Bisexual"] = "Bisexuell"; -$a->strings["Autosexual"] = "Autosexuell"; -$a->strings["Abstinent"] = "Enthaltsam"; -$a->strings["Virgin"] = "Jungfräulich"; -$a->strings["Deviant"] = "Abweichend"; -$a->strings["Fetish"] = "Fetisch"; -$a->strings["Oodles"] = "Unmengen"; -$a->strings["Nonsexual"] = "Sexlos"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Einsam"; -$a->strings["Available"] = "Verfügbar"; -$a->strings["Unavailable"] = "Nicht verfügbar"; -$a->strings["Has crush"] = "Verguckt"; -$a->strings["Infatuated"] = "Verknallt"; -$a->strings["Dating"] = "Lerne gerade jemanden kennen"; -$a->strings["Unfaithful"] = "Treulos"; -$a->strings["Sex Addict"] = "Sexabhängig"; -$a->strings["Friends/Benefits"] = "Freunde/Begünstigte"; -$a->strings["Casual"] = "Lose"; -$a->strings["Engaged"] = "Verlobt"; -$a->strings["Married"] = "Verheiratet"; -$a->strings["Imaginarily married"] = "Gewissermaßen verheiratet"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "Lebensgemeinschaft"; -$a->strings["Common law"] = "Informelle Ehe"; -$a->strings["Happy"] = "Glücklich"; -$a->strings["Not looking"] = "Nicht Ausschau haltend"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Betrogen"; -$a->strings["Separated"] = "Getrennt"; -$a->strings["Unstable"] = "Labil"; -$a->strings["Divorced"] = "Geschieden"; -$a->strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; -$a->strings["Widowed"] = "Verwitwet"; -$a->strings["Uncertain"] = "Ungewiss"; -$a->strings["It's complicated"] = "Es ist kompliziert"; -$a->strings["Don't care"] = "Interessiert mich nicht"; -$a->strings["Ask me"] = "Frag mich mal"; -$a->strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; -$a->strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; -$a->strings["Can view my photo albums"] = "Kann meine Fotoalben betrachten"; -$a->strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -$a->strings["Can view my file storage"] = "Kann meine Dateiordner lesen"; -$a->strings["Can view my webpages"] = "Kann meine Webseiten sehen"; -$a->strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -$a->strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; -$a->strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; -$a->strings["Can post photos to my photo albums"] = "Kann Fotos in meinen Fotoalben veröffentlichen"; -$a->strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; -$a->strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; -$a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; -$a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; -$a->strings["Can write to my file storage"] = "Kann in meine Dateiordner schreiben"; -$a->strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; -$a->strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; -$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; -$a->strings["Social Networking"] = "Soziales Netzwerk"; -$a->strings["Mostly Public"] = "Weitgehend öffentlich"; -$a->strings["Restricted"] = "Beschränkt"; -$a->strings["Private"] = "Privat"; -$a->strings["Community Forum"] = "Forum"; -$a->strings["Feed Republish"] = "Teilen von Feeds"; -$a->strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; -$a->strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; -$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -$a->strings["Menu not found."] = "Menü nicht gefunden"; -$a->strings["Menu element updated."] = "Menü-Element aktualisiert."; -$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; -$a->strings["Menu element added."] = "Menü-Bestandteil hinzugefügt."; -$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; -$a->strings["Not found."] = "Nicht gefunden."; -$a->strings["Manage Menu Elements"] = "Menü-Bestandteile verwalten"; -$a->strings["Edit menu"] = "Menü bearbeiten"; -$a->strings["Edit element"] = "Bestandteil bearbeiten"; -$a->strings["Drop element"] = "Bestandteil löschen"; -$a->strings["New element"] = "Neues Bestandteil"; -$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; -$a->strings["Add menu element"] = "Menüelement hinzufügen"; -$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; -$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; -$a->strings["New Menu Element"] = "Neues Menü-Bestandteil"; -$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; -$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; -$a->strings["Link text"] = "Link Text"; -$a->strings["URL of link"] = "URL des Links"; -$a->strings["Use Red magic-auth if available"] = "Verwende Red Magic-Auth wenn verfügbar"; -$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; -$a->strings["Order in list"] = "Reihenfolge in der Liste"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; -$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; -$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; -$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; -$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; -$a->strings["Modify"] = "Ändern"; -$a->strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; -$a->strings["sent you a private message"] = "eine private Nachricht schicken"; -$a->strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -$a->strings["posted an event"] = "hat eine Veranstaltung veröffentlicht"; -$a->strings["network"] = "Netzwerk"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; +$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; $a->strings["Name is required"] = "Name ist erforderlich"; $a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; $a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; @@ -979,6 +992,7 @@ $a->strings["0 or blank prevents expiration"] = "0 oder kein Inhalt verhindern d $a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; $a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; $a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte"; +$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; $a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; $a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; $a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen"; @@ -1001,296 +1015,229 @@ $a->strings["Please enable expert mode (in Setting $a->strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; $a->strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals"; $a->strings["Remove this channel"] = "Diesen Kanal löschen"; -$a->strings["Poke/Prod"] = "Anstupsen/Knuffen"; -$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; -$a->strings["Recipient"] = "Empfänger"; -$a->strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; -$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; -$a->strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; -$a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; -$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -$a->strings["Item not available."] = "Element nicht verfügbar."; +$a->strings["Permission Denied."] = "Zugriff verweigert."; +$a->strings["File not found."] = "Datei nicht gefunden."; +$a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; +$a->strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; +$a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; +$a->strings["Return to file list"] = "Zurück zur Dateiliste"; +$a->strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; +$a->strings["Red Matrix - "The Network""] = "RedMatrix – "Das Netzwerk""; +$a->strings["Welcome to %s"] = "Willkommen auf %s"; $a->strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -$a->strings["Invalid item."] = "Ungültiges Element."; -$a->strings["Channel not found."] = "Kanal nicht gefunden."; -$a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["Version %s"] = "Version %s"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; -$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Besuche GetZot.com, um mehr über die Red-Matrix zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; -$a->strings["Site Administrators"] = "Administratoren"; -$a->strings["Block Name"] = "Block-Name"; -$a->strings["Profile not found."] = "Profil nicht gefunden."; -$a->strings["Profile deleted."] = "Profil gelöscht."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Neues Profil erstellt."; -$a->strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; -$a->strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; -$a->strings["Profile Name is required."] = "Profil-Name erforderlich."; -$a->strings["Marital Status"] = "Familienstand"; -$a->strings["Romantic Partner"] = "Romantische Partner"; -$a->strings["Likes"] = "Gefällt"; -$a->strings["Dislikes"] = "Gefällt nicht"; -$a->strings["Work/Employment"] = "Arbeit/Anstellung"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Politische Ansichten"; -$a->strings["Gender"] = "Geschlecht"; -$a->strings["Sexual Preference"] = "Sexuelle Orientierung"; -$a->strings["Homepage"] = "Webseite"; -$a->strings["Interests"] = "Hobbys/Interessen"; -$a->strings["Address"] = "Adresse"; -$a->strings["Location"] = "Ort"; -$a->strings["Profile updated."] = "Profil aktualisiert."; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"; -$a->strings["Edit Profile Details"] = "Bearbeite Profil-Details"; -$a->strings["View this profile"] = "Dieses Profil ansehen"; -$a->strings["Change Profile Photo"] = "Profilfoto ändern"; -$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; -$a->strings["Clone this profile"] = "Dieses Profil klonen"; -$a->strings["Delete this profile"] = "Dieses Profil löschen"; -$a->strings["Import profile from file"] = "Profil aus einer Datei importieren"; -$a->strings["Export profile to file"] = "Profil in eine Datei exportieren"; -$a->strings["Profile Name:"] = "Profilname:"; -$a->strings["Your Full Name:"] = "Dein voller Name:"; -$a->strings["Title/Description:"] = "Titel/Stellenbeschreibung:"; -$a->strings["Your Gender:"] = "Dein Geschlecht:"; -$a->strings["Birthday (%s):"] = "Geburtstag (%s):"; -$a->strings["Street Address:"] = "Straße und Hausnummer:"; -$a->strings["Locality/City:"] = "Wohnort:"; -$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Region/Bundesstaat:"; -$a->strings[" Marital Status:"] = " Beziehungsstatus:"; -$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Seit [Datum]:"; -$a->strings["Homepage URL:"] = "Homepage URL:"; -$a->strings["Religious Views:"] = "Religiöse Ansichten:"; -$a->strings["Keywords:"] = "Schlüsselwörter:"; -$a->strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; -$a->strings["Used in directory listings"] = "Wird in Verzeichnis-Auflistungen verwendet"; -$a->strings["Tell us about yourself..."] = "Erzähle uns ein wenig von Dir …"; -$a->strings["Hobbies/Interests"] = "Hobbys/Interessen"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformation und soziale Netzwerke"; -$a->strings["My other channels"] = "Meine anderen Kanäle"; -$a->strings["Musical interests"] = "Musikalische Interessen"; -$a->strings["Books, literature"] = "Bücher, Literatur"; -$a->strings["Television"] = "Fernsehen"; -$a->strings["Film/dance/culture/entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; -$a->strings["Love/romance"] = "Liebe/Romantik"; -$a->strings["Work/employment"] = "Arbeit/Anstellung"; -$a->strings["School/education"] = "Schule/Ausbildung"; -$a->strings["This is your default profile."] = "Das ist Dein Standardprofil"; -$a->strings["Age: "] = "Alter:"; -$a->strings["Edit/Manage Profiles"] = "Profile bearbeiten/verwalten"; -$a->strings["Add profile things"] = "Sachen zum Profil hinzufügen"; -$a->strings["Include desirable objects in your profile"] = "Binde begehrenswerte Dinge in Dein Profil ein"; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -$a->strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["All Connections"] = "Alle Verbindungen"; -$a->strings["Public Sites"] = "Öffentliche Server"; -$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen."; -$a->strings["Site URL"] = "Server-URL"; -$a->strings["Access Type"] = "Zugangstyp"; -$a->strings["Registration Policy"] = "Registrierungsrichtlinien"; -$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -$a->strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; -$a->strings["Save Bookmark"] = "Lesezeichen speichern"; -$a->strings["URL of bookmark"] = "URL des Lesezeichens"; -$a->strings["Description"] = "Beschreibung"; -$a->strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; -$a->strings["Room not found"] = "Chatraum nicht gefunden"; -$a->strings["Leave Room"] = "Raum verlassen"; -$a->strings["Delete This Room"] = "Diesen Raum löschen"; -$a->strings["I am away right now"] = "Ich bin gerade nicht da"; -$a->strings["I am online"] = "Ich bin online"; -$a->strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; -$a->strings["New Chatroom"] = "Neuer Chatraum"; -$a->strings["Chatroom Name"] = "Name des Chatraums"; -$a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; -$a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; -$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["Terms of Service"] = "Nutzungsbedingungen"; -$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; -$a->strings["Registration"] = "Registrierung"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; -$a->strings["Your email address"] = "Ihre E-Mail Adresse"; -$a->strings["Choose a password"] = "Passwort"; -$a->strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; -$a->strings["Away"] = "Abwesend"; -$a->strings["Online"] = "Online"; -$a->strings["Please login."] = "Bitte melde dich an."; -$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++"; -$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; -$a->strings["Remove This Channel"] = "Diesen Kanal löschen"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet kann dieser Prozess nicht rückgängig gemacht werden."; -$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; -$a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; -$a->strings["Remove Channel"] = "Kanal löschen"; -$a->strings["No channel."] = "Kein Kanal."; -$a->strings["Common connections"] = "Gemeinsame Verbindungen"; -$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; +$a->strings["Add a Channel"] = "Kanal hinzufügen"; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt."; +$a->strings["Channel Name"] = "Name des Kanals"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; +$a->strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."; +$a->strings["Or import an existing channel from another location"] = "Oder importiere einen bestehenden Kanal von einem anderen Server"; +$a->strings["Channel Type"] = "Kanaltyp"; +$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"] = "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können"; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; $a->strings["The error message was:"] = "Die Fehlermeldung war:"; $a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; $a->strings["Remote Authentication"] = "Entfernte Authentifizierung"; $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; $a->strings["Authenticate"] = "Authentifizieren"; -$a->strings["Continue"] = "Fortfahren"; -$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; -$a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; -$a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; -$a->strings["No such group"] = "Gruppe existiert nicht"; -$a->strings["Search Results For:"] = "Suchergebnisse für:"; -$a->strings["Collection is empty"] = "Sammlung ist leer"; -$a->strings["Collection: "] = "Sammlung:"; -$a->strings["Connection: "] = "Verbindung:"; -$a->strings["Invalid connection."] = "Ungültige Verbindung."; -$a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; -$a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; -$a->strings["Connection updated."] = "Verbindung aktualisiert."; -$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; -$a->strings["Blocked"] = "Blockiert"; -$a->strings["Ignored"] = "Ignoriert"; -$a->strings["Hidden"] = "Versteckt"; -$a->strings["Archived"] = "Archiviert"; -$a->strings["All"] = "Alle"; -$a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen"; -$a->strings["New Connections"] = "Neue Verbindungen"; -$a->strings["Show pending (new) connections"] = "Zeige ausstehende (neue) Verbindungsanfragen"; -$a->strings["Show all connections"] = "Zeige alle Verbindungen"; -$a->strings["Unblocked"] = "Freigegeben"; -$a->strings["Only show unblocked connections"] = "Zeige nur freigegebene Verbindungen"; -$a->strings["Only show blocked connections"] = "Zeige nur blockierte Verbindungen"; -$a->strings["Only show ignored connections"] = "Zeige nur ignorierte Verbindungen"; -$a->strings["Only show archived connections"] = "Zeige nur archivierte Verbindungen"; -$a->strings["Only show hidden connections"] = "Zeige nur versteckte Verbindungen"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit connection"] = "Verbindung bearbeiten"; -$a->strings["Search your connections"] = "Verbindungen durchsuchen"; -$a->strings["Finding: "] = "Ergebnisse:"; -$a->strings["Edit post"] = "Bearbeite Beitrag"; -$a->strings["is now connected to"] = "ist jetzt verbunden mit"; -$a->strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; -$a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert"; -$a->strings["Channel has been blocked"] = "Kanal blockiert"; -$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; -$a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert"; -$a->strings["Channel has been ignored"] = "Kanal wird ignoriert"; -$a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt"; -$a->strings["Channel has been archived"] = "Kanal wurde archiviert"; -$a->strings["Channel has been unhidden"] = "Kanal wird nicht mehr versteckt"; -$a->strings["Channel has been hidden"] = "Kanal wurde versteckt"; -$a->strings["Channel has been approved"] = "Kanal wurde zugelassen"; -$a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt"; -$a->strings["Connection has been removed."] = "Verbindung wurde gelöscht."; -$a->strings["View %s's profile"] = "%ss Profil ansehen"; -$a->strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; -$a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; -$a->strings["Recent Activity"] = "Kürzliche Aktivitäten"; -$a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; -$a->strings["Unblock"] = "Freigeben"; -$a->strings["Block"] = "Blockieren"; -$a->strings["Block or Unblock this connection"] = "Verbindung blockieren oder freigeben"; -$a->strings["Unignore"] = "Nicht ignorieren"; -$a->strings["Ignore"] = "Ignorieren"; -$a->strings["Ignore or Unignore this connection"] = "Verbindung ignorieren oder wieder beachten"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Archive or Unarchive this connection"] = "Verbindung archivieren oder aus dem Archiv zurückholen"; -$a->strings["Unhide"] = "Wieder sichtbar machen"; -$a->strings["Hide"] = "Verstecken"; -$a->strings["Hide or Unhide this connection"] = "Diese Verbindung verstecken oder wieder sichtbar machen"; -$a->strings["Delete this connection"] = "Verbindung löschen"; -$a->strings["Approve this connection"] = "Verbindung genehmigen"; -$a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; -$a->strings["Automatic Permissions Settings"] = "Automatische Berechtigungs-Einstellungen"; -$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s"; -$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wenn eine Verbindungsanfrage empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt, und die Anfrage wird genehmigt. Verlasse diese Seite, wenn Du diese Funktion nicht verwenden möchtest."; -$a->strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; -$a->strings["inherited"] = "geerbt"; -$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffsrechte!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen."; -$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; -$a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen"; -$a->strings["Edit contact notes"] = "Kontaktnotizen bearbeiten"; -$a->strings["Their Settings"] = "Deren Einstellungen"; -$a->strings["My Settings"] = "Meine Einstellungen"; -$a->strings["Clear/Disable Automatic Permissions"] = "Automatische Berechtigungen abschalten/entfernen"; -$a->strings["Forum Members"] = "Forum Mitglieder"; -$a->strings["Soapbox"] = "Marktschreier"; -$a->strings["Full Sharing (typical social network permissions)"] = "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)"; -$a->strings["Cautious Sharing "] = "Vorsichtiges Teilen"; -$a->strings["Follow Only"] = "Nur folgen"; -$a->strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; -$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Einige Berechtigungen werden von den Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen."; -$a->strings["Advanced Permissions"] = "Zugriffsrechte für Fortgeschrittene"; -$a->strings["Simple Permissions (select one and submit)"] = "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)"; -$a->strings["Visit %s's profile - %s"] = "%ss Profil besuchen - %s"; -$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freigeben"; -$a->strings["Ignore contact"] = "Kontakt ignorieren"; -$a->strings["Repair URL settings"] = "URL-Einstellungen reparieren"; -$a->strings["View conversations"] = "Unterhaltungen anzeigen"; -$a->strings["Delete contact"] = "Kontakt löschen"; -$a->strings["Last update:"] = "Letzte Aktualisierung:"; -$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; -$a->strings["Update now"] = "Jetzt aktualisieren"; -$a->strings["Currently blocked"] = "Derzeit blockiert"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Derzeit archiviert"; -$a->strings["Currently pending"] = "Derzeit anstehend"; -$a->strings["Hide this contact from others"] = "Diese Verbindung vor den anderen verbergen."; -$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge können immer noch sichtbar sein"; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$a->strings["Delegate Page Management"] = "Delegiere das Management für diese Seite"; -$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; -$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; -$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; -$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; -$a->strings["Remove"] = "Entferne"; -$a->strings["Add"] = "Hinzufügen"; -$a->strings["No entries."] = "Keine Einträge."; +$a->strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; +$a->strings["Site"] = "Seite"; +$a->strings["Accounts"] = "Konten"; +$a->strings["Channels"] = "Kanäle"; +$a->strings["Plugins"] = "Plug-Ins"; +$a->strings["Themes"] = "Themes"; +$a->strings["Server"] = "Server"; +$a->strings["Profile Config"] = "Profilkonfiguration"; +$a->strings["DB updates"] = "DB-Aktualisierungen"; +$a->strings["Logs"] = "Protokolle"; +$a->strings["Plugin Features"] = "Plug-In Funktionen"; +$a->strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +$a->strings["Message queues"] = "Nachrichten-Warteschlangen"; +$a->strings["Administration"] = "Administration"; +$a->strings["Summary"] = "Zusammenfassung"; +$a->strings["Registered users"] = "Registrierte Benutzer"; +$a->strings["Pending registrations"] = "Ausstehende Registrierungen"; +$a->strings["Version"] = "Version"; +$a->strings["Active plugins"] = "Aktive Plug-Ins"; +$a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; +$a->strings["No special theme for accessibility"] = "Kein spezielles Accessibility-Theme vorhanden"; +$a->strings["Yes - with approval"] = "Ja - mit Zustimmung"; +$a->strings["My site is not a public server"] = "Meine Server ist kein öffentlicher Server"; +$a->strings["My site has paid access only"] = "Mein Server erlaubt nur bezahlten Zugang"; +$a->strings["My site has free access only"] = "Mein Server erlaubt ausschließlich freien Zugang"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; +$a->strings["Registration"] = "Registrierung"; +$a->strings["File upload"] = "Dateiupload"; +$a->strings["Policies"] = "Richtlinien"; +$a->strings["Site name"] = "Seitenname"; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Administrator Information"] = "Administrator-Informationen"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; +$a->strings["System language"] = "System-Sprache"; +$a->strings["System theme"] = "System-Theme"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; +$a->strings["Mobile system theme"] = "Mobile System-Theme:"; +$a->strings["Theme for mobile devices"] = "Theme für mobile Geräte"; +$a->strings["Accessibility system theme"] = "Accessibility-System-Theme"; +$a->strings["Accessibility theme"] = "Accessibility-Theme"; +$a->strings["Enable Diaspora Protocol"] = "Diaspora-Protokoll aktivieren"; +$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Kommunikation mit Diaspora und Friendica – experimentell"; +$a->strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; +$a->strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; +$a->strings["Maximum image size"] = "Maximale Bildgröße"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; +$a->strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; +$a->strings["Register text"] = "Registrierungstext"; +$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; +$a->strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; +$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +$a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."; +$a->strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; +$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; +$a->strings["Force publish"] = "Veröffentlichung erzwingen"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; +$a->strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden"; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte von anderen RedMatrix-Hubs angezeigt werden können."; +$a->strings["No login on Homepage"] = "Kein Login auf der Homepage"; +$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)."; +$a->strings["Proxy user"] = "Proxy Benutzer"; +$a->strings["Proxy URL"] = "Proxy URL"; +$a->strings["Network timeout"] = "Netzwerk-Timeout"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; +$a->strings["Delivery interval"] = "Auslieferung Intervall"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; +$a->strings["Poll interval"] = "Abfrageintervall"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; +$a->strings["Maximum Load Average"] = "Maximales Load Average"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; +$a->strings["No server found"] = "Kein Server gefunden"; +$a->strings["ID"] = "ID"; +$a->strings["for channel"] = "für Kanal"; +$a->strings["on server"] = "auf Server"; +$a->strings["Status"] = "Status"; +$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; +$a->strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; +$a->strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; +$a->strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; +$a->strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; +$a->strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; +$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; +$a->strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s Nutzer blockiert/freigegeben", + 1 => "%s Nutzer blockiert/freigegeben", +); +$a->strings["%s user deleted"] = array( + 0 => "%s Nutzer gelöscht", + 1 => "%s Nutzer gelöscht", +); +$a->strings["Account not found"] = "Konto nicht gefunden"; +$a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben"; +$a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert"; +$a->strings["Users"] = "Benutzer"; +$a->strings["select all"] = "Alle auswählen"; +$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; +$a->strings["Request date"] = "Antragsdatum"; +$a->strings["No registrations."] = "Keine Registrierungen."; +$a->strings["Approve"] = "Genehmigen"; +$a->strings["Deny"] = "Verweigern"; +$a->strings["Block"] = "Blockieren"; +$a->strings["Unblock"] = "Freigeben"; +$a->strings["Register date"] = "Registrierungs-Datum"; +$a->strings["Last login"] = "Letzte Anmeldung"; +$a->strings["Expires"] = "Verfällt"; +$a->strings["Service Class"] = "Service-Klasse"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "%s Kanal gesperrt/freigegeben", + 1 => "%s Kanäle gesperrt/freigegeben", +); +$a->strings["%s channel deleted"] = array( + 0 => "%s Kanal gelöscht", + 1 => "%s Kanäle gelöscht", +); +$a->strings["Channel not found"] = "Kanal nicht gefunden"; +$a->strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; +$a->strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; +$a->strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; +$a->strings["Censor"] = "Sperren"; +$a->strings["Uncensor"] = "Freigeben"; +$a->strings["UID"] = "UID"; +$a->strings["Address"] = "Adresse"; +$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; +$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; +$a->strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; +$a->strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; +$a->strings["Disable"] = "Deaktivieren"; +$a->strings["Enable"] = "Aktivieren"; +$a->strings["Toggle"] = "Umschalten"; +$a->strings["Author: "] = "Autor: "; +$a->strings["Maintainer: "] = "Betreuer:"; +$a->strings["No themes found."] = "Keine Theme gefunden."; +$a->strings["Screenshot"] = "Bildschirmfoto"; +$a->strings["[Experimental]"] = "[Experimentell]"; +$a->strings["[Unsupported]"] = "[Nicht unterstützt]"; +$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; +$a->strings["Clear"] = "Leeren"; +$a->strings["Debugging"] = "Debugging"; +$a->strings["Log file"] = "Protokolldatei"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."; +$a->strings["Log level"] = "Protokollstufe"; +$a->strings["New Profile Field"] = "Neues Profilfeld"; +$a->strings["Field nickname"] = "Kurzname für das Feld"; +$a->strings["System name of field"] = "Systemname des Feldes"; +$a->strings["Input type"] = "Art des Inhalts"; +$a->strings["Field Name"] = "Feldname"; +$a->strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; +$a->strings["Help text"] = "Hilfetext"; +$a->strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; +$a->strings["Field definition not found"] = "Feld-Definition nicht gefunden"; +$a->strings["Edit Profile Field"] = "Profilfeld bearbeiten"; +$a->strings["- select -"] = "– auswählen –"; +$a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; +$a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; +$a->strings["Connection updated."] = "Verbindung aktualisiert."; +$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; +$a->strings["Blocked"] = "Blockiert"; +$a->strings["Ignored"] = "Ignoriert"; +$a->strings["Hidden"] = "Versteckt"; +$a->strings["Archived"] = "Archiviert"; +$a->strings["All"] = "Alle"; +$a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen"; +$a->strings["New Connections"] = "Neue Verbindungen"; +$a->strings["Show pending (new) connections"] = "Zeige ausstehende (neue) Verbindungsanfragen"; +$a->strings["All Connections"] = "Alle Verbindungen"; +$a->strings["Show all connections"] = "Zeige alle Verbindungen"; +$a->strings["Unblocked"] = "Freigegeben"; +$a->strings["Only show unblocked connections"] = "Zeige nur freigegebene Verbindungen"; +$a->strings["Only show blocked connections"] = "Zeige nur blockierte Verbindungen"; +$a->strings["Only show ignored connections"] = "Zeige nur ignorierte Verbindungen"; +$a->strings["Only show archived connections"] = "Zeige nur archivierte Verbindungen"; +$a->strings["Only show hidden connections"] = "Zeige nur versteckte Verbindungen"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit connection"] = "Verbindung bearbeiten"; +$a->strings["Search your connections"] = "Verbindungen durchsuchen"; +$a->strings["Finding: "] = "Ergebnisse:"; $a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; +$a->strings["Age: "] = "Alter:"; $a->strings["Gender: "] = "Geschlecht:"; -$a->strings["Finding:"] = "Ergebnisse:"; -$a->strings["next page"] = "nächste Seite"; -$a->strings["previous page"] = "vorherige Seite"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; $a->strings["Status: "] = "Status:"; $a->strings["Sexual Preference: "] = "Sexuelle Ausrichtung:"; $a->strings["Homepage: "] = "Webseite:"; $a->strings["Hometown: "] = "Wohnort:"; $a->strings["About: "] = "Über:"; $a->strings["Keywords: "] = "Schlüsselwörter:"; -$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; +$a->strings["Not found."] = "Nicht gefunden."; $a->strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; $a->strings["Album not found."] = "Album nicht gefunden."; $a->strings["Delete Album"] = "Album löschen"; @@ -1313,6 +1260,7 @@ $a->strings["Permission denied. Access to this item may be restricted."] = "Bere $a->strings["Photo not available"] = "Foto nicht verfügbar"; $a->strings["Use as profile photo"] = "Als Profilfoto verwenden"; $a->strings["View Full Size"] = "In voller Größe anzeigen"; +$a->strings["Remove"] = "Entferne"; $a->strings["Edit photo"] = "Foto bearbeiten"; $a->strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; $a->strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; @@ -1323,36 +1271,206 @@ $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam $a->strings["In This Photo:"] = "Auf diesem Foto:"; $a->strings["View Album"] = "Album ansehen"; $a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation"; -$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; -$a->strings["Could not create table."] = "Kann Tabelle nicht erstellen."; -$a->strings["Your site database has been installed."] = "Die Datenbank Deines Servers wurde installiert."; -$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; -$a->strings["System check"] = "Systemprüfung"; -$a->strings["Next"] = "Nächste"; -$a->strings["Check again"] = "Bitte nochmal prüfen"; -$a->strings["Database connection"] = "Datenbank Verbindung"; -$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; -$a->strings["Database Server Name"] = "Datenbank-Servername"; -$a->strings["Default is localhost"] = "Standard ist localhost"; -$a->strings["Database Port"] = "Datenbank-Port"; -$a->strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; -$a->strings["Database Login Name"] = "Datenbank-Benutzername"; -$a->strings["Database Login Password"] = "Datenbank-Kennwort"; -$a->strings["Database Name"] = "Datenbank-Name"; -$a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; -$a->strings["Website URL"] = "Server-URL"; -$a->strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; -$a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; -$a->strings["Site settings"] = "Seiteneinstellungen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; -$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."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; -$a->strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei"; +$a->strings["Menu not found."] = "Menü nicht gefunden"; +$a->strings["Menu element updated."] = "Menü-Element aktualisiert."; +$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; +$a->strings["Menu element added."] = "Menü-Bestandteil hinzugefügt."; +$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; +$a->strings["Manage Menu Elements"] = "Menü-Bestandteile verwalten"; +$a->strings["Edit menu"] = "Menü bearbeiten"; +$a->strings["Edit element"] = "Bestandteil bearbeiten"; +$a->strings["Drop element"] = "Bestandteil löschen"; +$a->strings["New element"] = "Neues Bestandteil"; +$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; +$a->strings["Add menu element"] = "Menüelement hinzufügen"; +$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; +$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; +$a->strings["New Menu Element"] = "Neues Menü-Bestandteil"; +$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; +$a->strings["Link text"] = "Link Text"; +$a->strings["URL of link"] = "URL des Links"; +$a->strings["Use Red magic-auth if available"] = "Verwende Red Magic-Auth wenn verfügbar"; +$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; +$a->strings["Order in list"] = "Reihenfolge in der Liste"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; +$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; +$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; +$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; +$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; +$a->strings["Modify"] = "Ändern"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; +$a->strings["Please login."] = "Bitte melde dich an."; +$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; +$a->strings["webpage"] = "Webseite"; +$a->strings["block"] = "Block"; +$a->strings["layout"] = "Layout"; +$a->strings["%s element installed"] = "Element für %s installiert"; +$a->strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; +$a->strings["Save Bookmark"] = "Lesezeichen speichern"; +$a->strings["URL of bookmark"] = "URL des Lesezeichens"; +$a->strings["Description"] = "Beschreibung"; +$a->strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; +$a->strings["Layout updated."] = "Layout aktualisiert."; +$a->strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +$a->strings["Layout not found."] = "Layout nicht gefunden."; +$a->strings["Module Name:"] = "Modulname:"; +$a->strings["Layout Help"] = "Layout-Hilfe"; +$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; +$a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; +$a->strings["Image exceeds size limit of %d"] = "Bild ist größer als das Limit von %d"; +$a->strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; +$a->strings["Photo not available."] = "Foto nicht verfügbar."; +$a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Wähle ein Profil:"; +$a->strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +$a->strings["skip this step"] = "diesen Schritt überspringen"; +$a->strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; +$a->strings["Crop Image"] = "Bild zuschneiden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; +$a->strings["Done Editing"] = "Bearbeitung fertigstellen"; +$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; +$a->strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; +$a->strings["Image size reduction [%s] failed."] = "Reduzierung der Bildgröße [%s] fehlgeschlagen."; +$a->strings["network"] = "Netzwerk"; +$a->strings["Menu updated."] = "Menü aktualisiert."; +$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; +$a->strings["Menu created."] = "Menü erstellt."; +$a->strings["Unable to create menu."] = "Kann Menü nicht erstellen."; +$a->strings["Manage Menus"] = "Menüs verwalten"; +$a->strings["Drop"] = "Löschen"; +$a->strings["Create a new menu"] = "Neues Menü erstellen"; +$a->strings["Delete this menu"] = "Lösche dieses Menü"; +$a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; +$a->strings["Edit this menu"] = "Dieses Menü bearbeiten"; +$a->strings["New Menu"] = "Neues Menü"; +$a->strings["Menu name"] = "Menü Name"; +$a->strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; +$a->strings["Menu title"] = "Menü Titel"; +$a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; +$a->strings["Allow bookmarks"] = "Erlaube Lesezeichen"; +$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; +$a->strings["Menu deleted."] = "Menü gelöscht."; +$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; +$a->strings["Edit Menu"] = "Menü bearbeiten"; +$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; +$a->strings["Invalid item."] = "Ungültiges Element."; +$a->strings["Channel not found."] = "Kanal nicht gefunden."; +$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; +$a->strings["Wall Photos"] = "Wall Fotos"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; +$a->strings["is now connected to"] = "ist jetzt verbunden mit"; +$a->strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; +$a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert"; +$a->strings["Channel has been blocked"] = "Kanal blockiert"; +$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; +$a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert"; +$a->strings["Channel has been ignored"] = "Kanal wird ignoriert"; +$a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt"; +$a->strings["Channel has been archived"] = "Kanal wurde archiviert"; +$a->strings["Channel has been unhidden"] = "Kanal wird nicht mehr versteckt"; +$a->strings["Channel has been hidden"] = "Kanal wurde versteckt"; +$a->strings["Channel has been approved"] = "Kanal wurde zugelassen"; +$a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt"; +$a->strings["Connection has been removed."] = "Verbindung wurde gelöscht."; +$a->strings["View %s's profile"] = "%ss Profil ansehen"; +$a->strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; +$a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; +$a->strings["Recent Activity"] = "Kürzliche Aktivitäten"; +$a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; +$a->strings["Block or Unblock this connection"] = "Verbindung blockieren oder freigeben"; +$a->strings["Unignore"] = "Nicht ignorieren"; +$a->strings["Ignore"] = "Ignorieren"; +$a->strings["Ignore or Unignore this connection"] = "Verbindung ignorieren oder wieder beachten"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Archive or Unarchive this connection"] = "Verbindung archivieren oder aus dem Archiv zurückholen"; +$a->strings["Unhide"] = "Wieder sichtbar machen"; +$a->strings["Hide"] = "Verstecken"; +$a->strings["Hide or Unhide this connection"] = "Diese Verbindung verstecken oder wieder sichtbar machen"; +$a->strings["Delete this connection"] = "Verbindung löschen"; +$a->strings["Approve this connection"] = "Verbindung genehmigen"; +$a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; +$a->strings["Automatic Permissions Settings"] = "Automatische Berechtigungs-Einstellungen"; +$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s"; +$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wenn eine Verbindungsanfrage empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt, und die Anfrage wird genehmigt. Verlasse diese Seite, wenn Du diese Funktion nicht verwenden möchtest."; +$a->strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; +$a->strings["inherited"] = "geerbt"; +$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffsrechte!"; +$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen."; +$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; +$a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen"; +$a->strings["Edit contact notes"] = "Kontaktnotizen bearbeiten"; +$a->strings["Their Settings"] = "Deren Einstellungen"; +$a->strings["My Settings"] = "Meine Einstellungen"; +$a->strings["Clear/Disable Automatic Permissions"] = "Automatische Berechtigungen abschalten/entfernen"; +$a->strings["Forum Members"] = "Forum Mitglieder"; +$a->strings["Soapbox"] = "Marktschreier"; +$a->strings["Full Sharing (typical social network permissions)"] = "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)"; +$a->strings["Cautious Sharing "] = "Vorsichtiges Teilen"; +$a->strings["Follow Only"] = "Nur folgen"; +$a->strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; +$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Einige Berechtigungen werden von den Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen."; +$a->strings["Advanced Permissions"] = "Zugriffsrechte für Fortgeschrittene"; +$a->strings["Simple Permissions (select one and submit)"] = "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)"; +$a->strings["Visit %s's profile - %s"] = "%ss Profil besuchen - %s"; +$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freigeben"; +$a->strings["Ignore contact"] = "Kontakt ignorieren"; +$a->strings["Repair URL settings"] = "URL-Einstellungen reparieren"; +$a->strings["View conversations"] = "Unterhaltungen anzeigen"; +$a->strings["Delete contact"] = "Kontakt löschen"; +$a->strings["Last update:"] = "Letzte Aktualisierung:"; +$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; +$a->strings["Update now"] = "Jetzt aktualisieren"; +$a->strings["Currently blocked"] = "Derzeit blockiert"; +$a->strings["Currently ignored"] = "Derzeit ignoriert"; +$a->strings["Currently archived"] = "Derzeit archiviert"; +$a->strings["Currently pending"] = "Derzeit anstehend"; +$a->strings["Hide this contact from others"] = "Diese Verbindung vor den anderen verbergen."; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge können immer noch sichtbar sein"; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - G:i"; +$a->strings["sent you a private message"] = "eine private Nachricht schicken"; +$a->strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +$a->strings["posted an event"] = "hat eine Veranstaltung veröffentlicht"; +$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation"; +$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; +$a->strings["Could not create table."] = "Kann Tabelle nicht erstellen."; +$a->strings["Your site database has been installed."] = "Die Datenbank Deines Servers wurde installiert."; +$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; +$a->strings["System check"] = "Systemprüfung"; +$a->strings["Next"] = "Nächste"; +$a->strings["Check again"] = "Bitte nochmal prüfen"; +$a->strings["Database connection"] = "Datenbank Verbindung"; +$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; +$a->strings["Database Server Name"] = "Datenbank-Servername"; +$a->strings["Default is localhost"] = "Standard ist localhost"; +$a->strings["Database Port"] = "Datenbank-Port"; +$a->strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; +$a->strings["Database Login Name"] = "Datenbank-Benutzername"; +$a->strings["Database Login Password"] = "Datenbank-Kennwort"; +$a->strings["Database Name"] = "Datenbank-Name"; +$a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; +$a->strings["Website URL"] = "Server-URL"; +$a->strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; +$a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; +$a->strings["Site settings"] = "Seiteneinstellungen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; +$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."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; +$a->strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; $a->strings["Command line PHP"] = "PHP Befehlszeile"; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; @@ -1378,294 +1496,50 @@ $a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: D $a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; $a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; $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."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; -$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."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Rechte Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; -$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."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; -$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."] = "Um diese kompilierten Vorlagen speichern zu können braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; -$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."] = " Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht in der restlichen Red-Installation."; -$a->strings["%s is writable"] = "%s ist beschreibbar"; -$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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; -$a->strings["store is writable"] = "store ist schreibbar"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; -$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!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; -$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."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikate ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen.. "; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; -$a->strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite via .htaccess funktioniert nicht. Überprüfe Deine Server-Konfiguration."; -$a->strings["Url rewrite is working"] = "Url rewrite funktioniert"; -$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."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; -$a->strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; -$a->strings["

    What next

    "] = "

    Was als Nächstes

    "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; -$a->strings["Item not found"] = "Element nicht gefunden"; -$a->strings["Edit Block"] = "Block bearbeiten"; -$a->strings["Delete block?"] = "Block löschen?"; -$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; -$a->strings["Delete Block"] = "Block löschen"; -$a->strings["Layout updated."] = "Layout aktualisiert."; -$a->strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -$a->strings["Layout not found."] = "Layout nicht gefunden."; -$a->strings["Module Name:"] = "Modulname:"; -$a->strings["Layout Help"] = "Layout-Hilfe"; -$a->strings["Edit Layout"] = "Layout bearbeiten"; -$a->strings["Delete layout?"] = "Layout löschen?"; -$a->strings["Delete Layout"] = "Layout löschen"; -$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -$a->strings["Delete item?"] = "Eintrag löschen?"; -$a->strings["Edit Webpage"] = "Webseite bearbeiten"; -$a->strings["Delete webpage?"] = "Webseite löschen?"; -$a->strings["Delete Webpage"] = "Webseite löschen"; -$a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -$a->strings["My Bookmarks"] = "Meine Lesezeichen"; -$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; -$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; -$a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; -$a->strings["Image exceeds size limit of %d"] = "Bild ist größer als das Limit von %d"; -$a->strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; -$a->strings["Photo not available."] = "Foto nicht verfügbar."; -$a->strings["Upload File:"] = "Datei hochladen:"; -$a->strings["Select a profile:"] = "Wähle ein Profil:"; -$a->strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -$a->strings["skip this step"] = "diesen Schritt überspringen"; -$a->strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; -$a->strings["Crop Image"] = "Bild zuschneiden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; -$a->strings["Done Editing"] = "Bearbeitung fertigstellen"; -$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -$a->strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; -$a->strings["Image size reduction [%s] failed."] = "Reduzierung der Bildgröße [%s] fehlgeschlagen."; -$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; -$a->strings["Source created."] = "Quelle erstellt."; -$a->strings["Source updated."] = "Quelle aktualisiert."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Quellen von Inhalten Deines Kanals verwalten."; -$a->strings["New Source"] = "Neue Quelle"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; -$a->strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; -$a->strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; -$a->strings["Channel Name"] = "Name des Kanals"; -$a->strings["Source not found."] = "Quelle nicht gefunden."; -$a->strings["Edit Source"] = "Quelle bearbeiten"; -$a->strings["Delete Source"] = "Quelle löschen"; -$a->strings["Source removed"] = "Quelle gelöscht"; -$a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; -$a->strings["- select -"] = "– auswählen –"; -$a->strings["Event title and start time are required."] = "Veranstaltungs- Titel und Startzeit sind erforderlich."; -$a->strings["Event not found."] = "Termin nicht gefunden."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Veranstaltung bearbeiten"; -$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; -$a->strings["Previous"] = "Voriges"; -$a->strings["hour:minute"] = "Stunde:Minute"; -$a->strings["Event details"] = "Veranstaltungs-Details"; -$a->strings["Format is %s %s."] = "Format ist %s %s."; -$a->strings["Starting date and Title are required."] = "Startdatum und Titel sind erforderlich."; -$a->strings["Event Starts:"] = "Veranstaltung startet:"; -$a->strings["Required"] = "Benötigt"; -$a->strings["Finish date/time is not known or not relevant"] = "Ende Datum/Zeit sind unbekannt oder unwichtig"; -$a->strings["Event Finishes:"] = "Veranstaltung endet:"; -$a->strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; -$a->strings["Description:"] = "Beschreibung:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Die Veranstaltung teilen"; -$a->strings["Permission Denied."] = "Zugriff verweigert."; -$a->strings["File not found."] = "Datei nicht gefunden."; -$a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; -$a->strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; -$a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; -$a->strings["Return to file list"] = "Zurück zur Dateiliste"; -$a->strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; -$a->strings["Channel added."] = "Kanal hinzugefügt."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; -$a->strings["Contact not found."] = "Kontakt nicht gefunden"; -$a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden."; -$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; -$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; -$a->strings["Collection created."] = "Sammlung erstellt."; -$a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; -$a->strings["Collection updated."] = "Sammlung aktualisiert."; -$a->strings["Create a collection of channels."] = "Erstelle eine Sammlung von Kanälen."; -$a->strings["Collection Name: "] = "Name der Sammlung:"; -$a->strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; -$a->strings["Collection removed."] = "Sammlung gelöscht."; -$a->strings["Unable to remove collection."] = "Löschen der Sammlung nicht möglich."; -$a->strings["Collection Editor"] = "Sammlung-Editor"; -$a->strings["Members"] = "Mitglieder"; -$a->strings["All Connected Channels"] = "Alle verbundenen Kanäle"; -$a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; -$a->strings["Help:"] = "Hilfe:"; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Tag removed"] = "Schlagwort entfernt"; -$a->strings["Remove Item Tag"] = "Schlagwort entfernen"; -$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -$a->strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; -$a->strings["Site"] = "Seite"; -$a->strings["Accounts"] = "Konten"; -$a->strings["Channels"] = "Kanäle"; -$a->strings["Plugins"] = "Plug-Ins"; -$a->strings["Themes"] = "Themes"; -$a->strings["Server"] = "Server"; -$a->strings["Profile Config"] = "Profilkonfiguration"; -$a->strings["DB updates"] = "DB-Aktualisierungen"; -$a->strings["Logs"] = "Protokolle"; -$a->strings["Plugin Features"] = "Plug-In Funktionen"; -$a->strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; -$a->strings["Message queues"] = "Nachrichten-Warteschlangen"; -$a->strings["Administration"] = "Administration"; -$a->strings["Summary"] = "Zusammenfassung"; -$a->strings["Registered users"] = "Registrierte Benutzer"; -$a->strings["Pending registrations"] = "Ausstehende Registrierungen"; -$a->strings["Version"] = "Version"; -$a->strings["Active plugins"] = "Aktive Plug-Ins"; -$a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; -$a->strings["No special theme for accessibility"] = "Kein spezielles Accessibility-Theme vorhanden"; -$a->strings["Yes - with approval"] = "Ja - mit Zustimmung"; -$a->strings["My site is not a public server"] = "Meine Server ist kein öffentlicher Server"; -$a->strings["My site has paid access only"] = "Mein Server erlaubt nur bezahlten Zugang"; -$a->strings["My site has free access only"] = "Mein Server erlaubt ausschließlich freien Zugang"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; -$a->strings["File upload"] = "Dateiupload"; -$a->strings["Policies"] = "Richtlinien"; -$a->strings["Site name"] = "Seitenname"; -$a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["Administrator Information"] = "Administrator-Informationen"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; -$a->strings["System language"] = "System-Sprache"; -$a->strings["System theme"] = "System-Theme"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; -$a->strings["Mobile system theme"] = "Mobile System-Theme:"; -$a->strings["Theme for mobile devices"] = "Theme für mobile Geräte"; -$a->strings["Accessibility system theme"] = "Accessibility-System-Theme"; -$a->strings["Accessibility theme"] = "Accessibility-Theme"; -$a->strings["Enable Diaspora Protocol"] = "Diaspora-Protokoll aktivieren"; -$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Kommunikation mit Diaspora und Friendica – experimentell"; -$a->strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; -$a->strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; -$a->strings["Maximum image size"] = "Maximale Bildgröße"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; -$a->strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; -$a->strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; -$a->strings["Register text"] = "Registrierungstext"; -$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; -$a->strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; -$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -$a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."; -$a->strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; -$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; -$a->strings["Force publish"] = "Veröffentlichung erzwingen"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; -$a->strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden"; -$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte von anderen RedMatrix-Hubs angezeigt werden können."; -$a->strings["No login on Homepage"] = "Kein Login auf der Homepage"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)."; -$a->strings["Proxy user"] = "Proxy Benutzer"; -$a->strings["Proxy URL"] = "Proxy URL"; -$a->strings["Network timeout"] = "Netzwerk-Timeout"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; -$a->strings["Delivery interval"] = "Auslieferung Intervall"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; -$a->strings["Poll interval"] = "Abfrageintervall"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; -$a->strings["Maximum Load Average"] = "Maximales Load Average"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; -$a->strings["No server found"] = "Kein Server gefunden"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "für Kanal"; -$a->strings["on server"] = "auf Server"; -$a->strings["Status"] = "Status"; -$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; -$a->strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; -$a->strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; -$a->strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; -$a->strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; -$a->strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; -$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; -$a->strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s Nutzer blockiert/freigegeben", - 1 => "%s Nutzer blockiert/freigegeben", -); -$a->strings["%s user deleted"] = array( - 0 => "%s Nutzer gelöscht", - 1 => "%s Nutzer gelöscht", -); -$a->strings["Account not found"] = "Konto nicht gefunden"; -$a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben"; -$a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert"; -$a->strings["Users"] = "Benutzer"; -$a->strings["select all"] = "Alle auswählen"; -$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; -$a->strings["Request date"] = "Antragsdatum"; -$a->strings["No registrations."] = "Keine Registrierungen."; -$a->strings["Approve"] = "Genehmigen"; -$a->strings["Deny"] = "Verweigern"; -$a->strings["Register date"] = "Registrierungs-Datum"; -$a->strings["Last login"] = "Letzte Anmeldung"; -$a->strings["Expires"] = "Verfällt"; -$a->strings["Service Class"] = "Service-Klasse"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; -$a->strings["%s channel censored/uncensored"] = array( - 0 => "%s Kanal gesperrt/freigegeben", - 1 => "%s Kanäle gesperrt/freigegeben", -); -$a->strings["%s channel deleted"] = array( - 0 => "%s Kanal gelöscht", - 1 => "%s Kanäle gelöscht", -); -$a->strings["Channel not found"] = "Kanal nicht gefunden"; -$a->strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; -$a->strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; -$a->strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; -$a->strings["Censor"] = "Sperren"; -$a->strings["Uncensor"] = "Freigeben"; -$a->strings["UID"] = "UID"; -$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; -$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; -$a->strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; -$a->strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; -$a->strings["Disable"] = "Deaktivieren"; -$a->strings["Enable"] = "Aktivieren"; -$a->strings["Toggle"] = "Umschalten"; -$a->strings["Author: "] = "Autor: "; -$a->strings["Maintainer: "] = "Betreuer:"; -$a->strings["No themes found."] = "Keine Theme gefunden."; -$a->strings["Screenshot"] = "Bildschirmfoto"; -$a->strings["[Experimental]"] = "[Experimentell]"; -$a->strings["[Unsupported]"] = "[Nicht unterstützt]"; -$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; -$a->strings["Clear"] = "Leeren"; -$a->strings["Debugging"] = "Debugging"; -$a->strings["Log file"] = "Protokolldatei"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."; -$a->strings["Log level"] = "Protokollstufe"; -$a->strings["New Profile Field"] = "Neues Profilfeld"; -$a->strings["Field nickname"] = "Kurzname für das Feld"; -$a->strings["System name of field"] = "Systemname des Feldes"; -$a->strings["Input type"] = "Art des Inhalts"; -$a->strings["Field Name"] = "Feldname"; -$a->strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; -$a->strings["Help text"] = "Hilfetext"; -$a->strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; -$a->strings["Field definition not found"] = "Feld-Definition nicht gefunden"; -$a->strings["Edit Profile Field"] = "Profilfeld bearbeiten"; +$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."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Rechte Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; +$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."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; +$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."] = "Um diese kompilierten Vorlagen speichern zu können braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; +$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."] = " Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht in der restlichen Red-Installation."; +$a->strings["%s is writable"] = "%s ist beschreibbar"; +$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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; +$a->strings["store is writable"] = "store ist schreibbar"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; +$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!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; +$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."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikate ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen.. "; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; +$a->strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite via .htaccess funktioniert nicht. Überprüfe Deine Server-Konfiguration."; +$a->strings["Url rewrite is working"] = "Url rewrite funktioniert"; +$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."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; +$a->strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; +$a->strings["

    What next

    "] = "

    Was als Nächstes

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; +$a->strings["Hub not found."] = "Server nicht gefunden."; +$a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; +$a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; +$a->strings["Please join us on Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers."; +$a->strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; +$a->strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +$a->strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; +$a->strings["Your message:"] = "Deine Nachricht:"; +$a->strings["Please join my community on RedMatrix."] = "Schließe Dich uns in der RedMatrix an!"; +$a->strings["You will need to supply this invitation code: "] = "Gib diesen Invite-Code ein:"; +$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)"; +$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Gib meine RedMatrix-Adresse im Suchfeld ein."; +$a->strings["or visit "] = "oder besuche"; +$a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; $a->strings["Thing updated"] = "Sache aktualisiert"; $a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; $a->strings["Thing added"] = "Sache hinzugefügt"; @@ -1680,6 +1554,173 @@ $a->strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; $a->strings["URL of thing (optional)"] = "URL der Sache (optional)"; $a->strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; $a->strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +$a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +$a->strings["Post successful."] = "Veröffentlichung erfolgreich."; +$a->strings["Help:"] = "Hilfe:"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["No connections."] = "Keine Verbindungen."; +$a->strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; +$a->strings["View Connnections"] = "Zeige Verbindungen"; +$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; +$a->strings["Remove This Account"] = "Dieses Konto löschen"; +$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden."; +$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; +$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; +$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; +$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; +$a->strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; +$a->strings["Visible To"] = "Sichtbar für"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; +$a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; +$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["Terms of Service"] = "Nutzungsbedingungen"; +$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; +$a->strings["Your email address"] = "Ihre E-Mail Adresse"; +$a->strings["Choose a password"] = "Passwort"; +$a->strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; +$a->strings["No such group"] = "Gruppe existiert nicht"; +$a->strings["Search Results For:"] = "Suchergebnisse für:"; +$a->strings["Collection is empty"] = "Sammlung ist leer"; +$a->strings["Collection: "] = "Sammlung:"; +$a->strings["Connection: "] = "Verbindung:"; +$a->strings["Invalid connection."] = "Ungültige Verbindung."; +$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; +$a->strings["Delegate Page Management"] = "Delegiere das Management für diese Seite"; +$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; +$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; +$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; +$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; +$a->strings["Add"] = "Hinzufügen"; +$a->strings["No entries."] = "Keine Einträge."; +$a->strings["Continue"] = "Fortfahren"; +$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; +$a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; +$a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; +$a->strings["Contact not found."] = "Kontakt nicht gefunden"; +$a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden."; +$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; +$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; +$a->strings["Create a new channel"] = "Neuen Kanal anlegen"; +$a->strings["Current Channel"] = "Aktueller Kanal"; +$a->strings["Attach to one of your channels by selecting it."] = "Wähle einen Deiner Kanäle aus, um ihn zu verwenden."; +$a->strings["Default Channel"] = "Standard Kanal"; +$a->strings["Make Default"] = "Zum Standard machen"; +$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; +$a->strings["Remove This Channel"] = "Diesen Kanal löschen"; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet kann dieser Prozess nicht rückgängig gemacht werden."; +$a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; +$a->strings["Remove Channel"] = "Kanal löschen"; +$a->strings["Item not found"] = "Element nicht gefunden"; +$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +$a->strings["Edit post"] = "Bearbeite Beitrag"; +$a->strings["Delete item?"] = "Eintrag löschen?"; +$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; +$a->strings["Edit Webpage"] = "Webseite bearbeiten"; +$a->strings["Delete webpage?"] = "Webseite löschen?"; +$a->strings["Delete Webpage"] = "Webseite löschen"; +$a->strings["Poke/Prod"] = "Anstupsen/Knuffen"; +$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; +$a->strings["Recipient"] = "Empfänger"; +$a->strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; +$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; +$a->strings["Block Name"] = "Block-Name"; +$a->strings["Collection created."] = "Sammlung erstellt."; +$a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; +$a->strings["Collection updated."] = "Sammlung aktualisiert."; +$a->strings["Create a collection of channels."] = "Erstelle eine Sammlung von Kanälen."; +$a->strings["Collection Name: "] = "Name der Sammlung:"; +$a->strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; +$a->strings["Collection removed."] = "Sammlung gelöscht."; +$a->strings["Unable to remove collection."] = "Löschen der Sammlung nicht möglich."; +$a->strings["Collection Editor"] = "Sammlung-Editor"; +$a->strings["Members"] = "Mitglieder"; +$a->strings["All Connected Channels"] = "Alle verbundenen Kanäle"; +$a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; +$a->strings["Tag removed"] = "Schlagwort entfernt"; +$a->strings["Remove Item Tag"] = "Schlagwort entfernen"; +$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; +$a->strings["Item not available."] = "Element nicht verfügbar."; +$a->strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; +$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; +$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++"; +$a->strings["Away"] = "Abwesend"; +$a->strings["Online"] = "Online"; +$a->strings["Finding:"] = "Ergebnisse:"; +$a->strings["next page"] = "nächste Seite"; +$a->strings["previous page"] = "vorherige Seite"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; +$a->strings["Profile Match"] = "Profil-Übereinstimmungen"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "interessiert sich für:"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; +$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; +$a->strings["Version %s"] = "Version %s"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; +$a->strings["Red"] = "Red"; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; +$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Besuche GetZot.com, um mehr über die Red-Matrix zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; +$a->strings["Site Administrators"] = "Administratoren"; +$a->strings["App installed."] = "App installiert."; +$a->strings["Malformed app."] = "Fehlerhafte App."; +$a->strings["Embed code"] = "Code einbetten"; +$a->strings["Edit App"] = "App bearbeiten"; +$a->strings["Create App"] = "App erstellen"; +$a->strings["Name of app"] = "Name der App"; +$a->strings["Required"] = "Benötigt"; +$a->strings["Location (URL) of app"] = "Ort (URL) der App"; +$a->strings["Photo icon URL"] = "URL zum Icon"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +$a->strings["Version ID"] = "Versions-ID"; +$a->strings["Price of app"] = "Preis der App"; +$a->strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; +$a->strings["Source created."] = "Quelle erstellt."; +$a->strings["Source updated."] = "Quelle aktualisiert."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Quellen von Inhalten Deines Kanals verwalten."; +$a->strings["New Source"] = "Neue Quelle"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; +$a->strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; +$a->strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; +$a->strings["Source not found."] = "Quelle nicht gefunden."; +$a->strings["Edit Source"] = "Quelle bearbeiten"; +$a->strings["Delete Source"] = "Quelle löschen"; +$a->strings["Source removed"] = "Quelle gelöscht"; +$a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; +$a->strings["Public Sites"] = "Öffentliche Server"; +$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen."; +$a->strings["Site URL"] = "Server-URL"; +$a->strings["Access Type"] = "Zugangstyp"; +$a->strings["Registration Policy"] = "Registrierungsrichtlinien"; +$a->strings["Location"] = "Ort"; $a->strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; $a->strings["Nothing to import."] = "Nichts zu importieren."; $a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; @@ -1699,34 +1740,94 @@ $a->strings["Your old login password"] = "Dein altes Passwort"; $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."] = "Egal welche Option Du wählst, bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; $a->strings["Make this hub my primary location"] = "Dieser Red-Server ist mein primärer Server."; $a->strings["Import existing posts if possible"] = "Existierende Beiträge importieren, falls möglich"; -$a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; -$a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; -$a->strings["Please join us on Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers."; -$a->strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; -$a->strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -$a->strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Please join my community on RedMatrix."] = "Schließe Dich uns in der RedMatrix an!"; -$a->strings["You will need to supply this invitation code: "] = "Gib diesen Invite-Code ein:"; -$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)"; -$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Gib meine RedMatrix-Adresse im Suchfeld ein."; -$a->strings["or visit "] = "oder besuche"; -$a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; -$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; -$a->strings["Help with this feature"] = "Hilfe zu dieser Funktion"; -$a->strings["Layout Name"] = "Layout-Name"; +$a->strings["invalid target signature"] = "Ungültige Signatur des Ziels"; +$a->strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; +$a->strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; +$a->strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; +$a->strings["Message deleted."] = "Nachricht gelöscht."; +$a->strings["Message recalled."] = "Nachricht widerrufen."; +$a->strings["Send Private Message"] = "Private Nachricht senden"; +$a->strings["To:"] = "An:"; +$a->strings["Subject:"] = "Betreff:"; +$a->strings["Send"] = "Absenden"; +$a->strings["Message not found."] = "Nachricht nicht gefunden."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["Recall message"] = "Nachricht widerrufen"; +$a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; +$a->strings["Private Conversation"] = "Private Unterhaltung"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; +$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; +$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["Profile deleted."] = "Profil gelöscht."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Neues Profil erstellt."; +$a->strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; +$a->strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; +$a->strings["Profile Name is required."] = "Profil-Name erforderlich."; +$a->strings["Marital Status"] = "Familienstand"; +$a->strings["Romantic Partner"] = "Romantische Partner"; +$a->strings["Likes"] = "Gefällt"; +$a->strings["Dislikes"] = "Gefällt nicht"; +$a->strings["Work/Employment"] = "Arbeit/Anstellung"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Politische Ansichten"; +$a->strings["Gender"] = "Geschlecht"; +$a->strings["Sexual Preference"] = "Sexuelle Orientierung"; +$a->strings["Homepage"] = "Webseite"; +$a->strings["Interests"] = "Hobbys/Interessen"; +$a->strings["Profile updated."] = "Profil aktualisiert."; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"; +$a->strings["Edit Profile Details"] = "Bearbeite Profil-Details"; +$a->strings["View this profile"] = "Dieses Profil ansehen"; +$a->strings["Change Profile Photo"] = "Profilfoto ändern"; +$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; +$a->strings["Clone this profile"] = "Dieses Profil klonen"; +$a->strings["Delete this profile"] = "Dieses Profil löschen"; +$a->strings["Import profile from file"] = "Profil aus einer Datei importieren"; +$a->strings["Export profile to file"] = "Profil in eine Datei exportieren"; +$a->strings["Profile Name:"] = "Profilname:"; +$a->strings["Your Full Name:"] = "Dein voller Name:"; +$a->strings["Title/Description:"] = "Titel/Stellenbeschreibung:"; +$a->strings["Your Gender:"] = "Dein Geschlecht:"; +$a->strings["Birthday (%s):"] = "Geburtstag (%s):"; +$a->strings["Street Address:"] = "Straße und Hausnummer:"; +$a->strings["Locality/City:"] = "Wohnort:"; +$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Region/Bundesstaat:"; +$a->strings[" Marital Status:"] = " Beziehungsstatus:"; +$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Seit [Datum]:"; +$a->strings["Homepage URL:"] = "Homepage URL:"; +$a->strings["Religious Views:"] = "Religiöse Ansichten:"; +$a->strings["Keywords:"] = "Schlüsselwörter:"; +$a->strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; +$a->strings["Used in directory listings"] = "Wird in Verzeichnis-Auflistungen verwendet"; +$a->strings["Tell us about yourself..."] = "Erzähle uns ein wenig von Dir …"; +$a->strings["Hobbies/Interests"] = "Hobbys/Interessen"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformation und soziale Netzwerke"; +$a->strings["My other channels"] = "Meine anderen Kanäle"; +$a->strings["Musical interests"] = "Musikalische Interessen"; +$a->strings["Books, literature"] = "Bücher, Literatur"; +$a->strings["Television"] = "Fernsehen"; +$a->strings["Film/dance/culture/entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; +$a->strings["Love/romance"] = "Liebe/Romantik"; +$a->strings["Work/employment"] = "Arbeit/Anstellung"; +$a->strings["School/education"] = "Schule/Ausbildung"; +$a->strings["This is your default profile."] = "Das ist Dein Standardprofil"; +$a->strings["Edit/Manage Profiles"] = "Profile bearbeiten/verwalten"; +$a->strings["Add profile things"] = "Sachen zum Profil hinzufügen"; +$a->strings["Include desirable objects in your profile"] = "Binde begehrenswerte Dinge in Dein Profil ein"; +$a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +$a->strings["My Bookmarks"] = "Meine Lesezeichen"; +$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +$a->strings["No channel."] = "Kein Kanal."; +$a->strings["Common connections"] = "Gemeinsame Verbindungen"; +$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; $a->strings["Like/Dislike"] = "Mögen/Nicht mögen"; $a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; $a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren."; @@ -1736,17 +1837,45 @@ $a->strings["Channel unavailable."] = "Kanal nicht vorhanden."; $a->strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; $a->strings["Action completed."] = "Aktion durchgeführt."; $a->strings["Thank you."] = "Vielen Dank."; -$a->strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; -$a->strings["No connections."] = "Keine Verbindungen."; -$a->strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; -$a->strings["View Connnections"] = "Zeige Verbindungen"; +$a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; +$a->strings["System Notifications"] = "System-Benachrichtigungen"; +$a->strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; +$a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; +$a->strings["Room not found"] = "Chatraum nicht gefunden"; +$a->strings["Leave Room"] = "Raum verlassen"; +$a->strings["Delete This Room"] = "Diesen Raum löschen"; +$a->strings["I am away right now"] = "Ich bin gerade nicht da"; +$a->strings["I am online"] = "Ich bin online"; +$a->strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; +$a->strings["New Chatroom"] = "Neuer Chatraum"; +$a->strings["Chatroom Name"] = "Name des Chatraums"; +$a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +$a->strings["Event title and start time are required."] = "Veranstaltungs- Titel und Startzeit sind erforderlich."; +$a->strings["Event not found."] = "Termin nicht gefunden."; +$a->strings["l, F j"] = "l, j. F"; +$a->strings["Edit event"] = "Veranstaltung bearbeiten"; +$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; +$a->strings["Previous"] = "Voriges"; +$a->strings["hour:minute"] = "Stunde:Minute"; +$a->strings["Event details"] = "Veranstaltungs-Details"; +$a->strings["Format is %s %s."] = "Format ist %s %s."; +$a->strings["Starting date and Title are required."] = "Startdatum und Titel sind erforderlich."; +$a->strings["Event Starts:"] = "Veranstaltung startet:"; +$a->strings["Finish date/time is not known or not relevant"] = "Ende Datum/Zeit sind unbekannt oder unwichtig"; +$a->strings["Event Finishes:"] = "Veranstaltung endet:"; +$a->strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; +$a->strings["Description:"] = "Beschreibung:"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Die Veranstaltung teilen"; +$a->strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; +$a->strings["Discard"] = "Verwerfen"; $a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; $a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; $a->strings["Site Member (%s)"] = "Nutzer (%s)"; $a->strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; -$a->strings["Password Reset"] = "Zurücksetzen des Kennworts"; $a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; $a->strings["Your new password is"] = "Dein neues Passwort lautet"; $a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; @@ -1757,180 +1886,15 @@ $a->strings["Forgot your Password?"] = "Kennwort vergessen?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; $a->strings["Email Address"] = "E-Mail Adresse"; $a->strings["Reset"] = "Zurücksetzen"; -$a->strings["Hub not found."] = "Server nicht gefunden."; -$a->strings["Total votes"] = "Gesamtstimmen"; -$a->strings["Average Rating"] = "Durchschnittliche Bewertung"; -$a->strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; -$a->strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; -$a->strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; -$a->strings["Message deleted."] = "Nachricht gelöscht."; -$a->strings["Message recalled."] = "Nachricht widerrufen."; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Send"] = "Absenden"; -$a->strings["Message not found."] = "Nachricht nicht gefunden."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["Recall message"] = "Nachricht widerrufen"; -$a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; -$a->strings["Private Conversation"] = "Private Unterhaltung"; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; -$a->strings["Create a new channel"] = "Neuen Kanal anlegen"; -$a->strings["Current Channel"] = "Aktueller Kanal"; -$a->strings["Attach to one of your channels by selecting it."] = "Wähle einen Deiner Kanäle aus, um ihn zu verwenden."; -$a->strings["Default Channel"] = "Standard Kanal"; -$a->strings["Make Default"] = "Zum Standard machen"; -$a->strings["Wall Photos"] = "Wall Fotos"; -$a->strings["Profile Match"] = "Profil-Übereinstimmungen"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "interessiert sich für:"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["Menu updated."] = "Menü aktualisiert."; -$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; -$a->strings["Menu created."] = "Menü erstellt."; -$a->strings["Unable to create menu."] = "Kann Menü nicht erstellen."; -$a->strings["Manage Menus"] = "Menüs verwalten"; -$a->strings["Drop"] = "Löschen"; -$a->strings["Create a new menu"] = "Neues Menü erstellen"; -$a->strings["Delete this menu"] = "Lösche dieses Menü"; -$a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; -$a->strings["Edit this menu"] = "Dieses Menü bearbeiten"; -$a->strings["New Menu"] = "Neues Menü"; -$a->strings["Menu name"] = "Menü Name"; -$a->strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; -$a->strings["Menu title"] = "Menü Titel"; -$a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; -$a->strings["Allow bookmarks"] = "Erlaube Lesezeichen"; -$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; -$a->strings["Menu deleted."] = "Menü gelöscht."; -$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; -$a->strings["Edit Menu"] = "Menü bearbeiten"; -$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; -$a->strings["Add a Channel"] = "Kanal hinzufügen"; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; -$a->strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."; -$a->strings["Or import an existing channel from another location"] = "Oder importiere einen bestehenden Kanal von einem anderen Server"; -$a->strings["Channel Type"] = "Kanaltyp"; -$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"] = "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können"; -$a->strings["Red Matrix - "The Network""] = "RedMatrix – "Das Netzwerk""; -$a->strings["Welcome to %s"] = "Willkommen auf %s"; -$a->strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; -$a->strings["Discard"] = "Verwerfen"; -$a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -$a->strings["System Notifications"] = "System-Benachrichtigungen"; -$a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -$a->strings["Post successful."] = "Veröffentlichung erfolgreich."; -$a->strings["invalid target signature"] = "Ungültige Signatur des Ziels"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["App installed."] = "App installiert."; -$a->strings["Malformed app."] = "Fehlerhafte App."; -$a->strings["Embed code"] = "Code einbetten"; -$a->strings["Edit App"] = "App bearbeiten"; -$a->strings["Create App"] = "App erstellen"; -$a->strings["Name of app"] = "Name der App"; -$a->strings["Location (URL) of app"] = "Ort (URL) der App"; -$a->strings["Photo icon URL"] = "URL zum Icon"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -$a->strings["Version ID"] = "Versions-ID"; -$a->strings["Price of app"] = "Preis der App"; -$a->strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; -$a->strings["Poll"] = "Umfrage"; -$a->strings["View Results"] = "Ergebnisse ansehen"; -$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; -$a->strings["Remove This Account"] = "Dieses Konto löschen"; -$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden."; -$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; -$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; -$a->strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; -$a->strings["webpage"] = "Webseite"; -$a->strings["block"] = "Block"; -$a->strings["layout"] = "Layout"; -$a->strings["%s element installed"] = "Element für %s installiert"; -$a->strings["Schema Default"] = "Schema-Standard"; -$a->strings["Sans-Serif"] = "Sans-Serif"; -$a->strings["Monospace"] = "Monospace"; -$a->strings["Theme settings"] = "Theme-Einstellungen"; -$a->strings["Set scheme"] = "Schema"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare"; -$a->strings["Set font face"] = "Schriftart"; -$a->strings["Set iconset"] = "Icon-Set"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Größe der großen Schatten, Standard 15px 15px 15px"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Größe der kleinen Schatten, Standard 5px 5px 5px"; -$a->strings["Set shadow color, default #000"] = "Schattenfarbe, Standard #000"; -$a->strings["Set radius size, default 5px"] = "Radius, Standard 5px"; -$a->strings["Set line-height for posts and comments"] = "Zeilenhöhe für Beiträge und Kommentare"; -$a->strings["Set background image"] = "Hintergrundbild"; -$a->strings["Set background attachment"] = "Hintergrund-Attachment"; -$a->strings["Set background color"] = "Hintergrundfarbe"; -$a->strings["Set section background image"] = "Hintergrundbild für Section"; -$a->strings["Set section background color"] = "Hintergrundfarbe für Section"; -$a->strings["Set color of items - use hex"] = "Farbe der Beiträge – Hex benutzen"; -$a->strings["Set color of links - use hex"] = "Farbe der Links – Hex benutzen"; -$a->strings["Set max-width for items. Default 400px"] = "Maximalbreite für Beiträge, Standard 400px"; -$a->strings["Set min-width for items. Default 240px"] = "Minimalbreite für Beiträge, Standard 240px"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Breite des generic content wrapper, Standard 48%"; -$a->strings["Set color of fonts - use hex"] = "Schriftfarbe – Hex benutzen"; -$a->strings["Set background-size element"] = "Größe des Hintergrund-Elements"; -$a->strings["Item opacity"] = "Deckkraft der Beiträge"; -$a->strings["Display post previews only"] = "Nur Beitragsvorschauen anzeigen"; -$a->strings["Display side bar on channel page"] = "Seitenleiste auf der Kanalseite anzeigen"; -$a->strings["Colour of the navigation bar"] = "Farbe der Navigationsleiste"; -$a->strings["Item float"] = "Float für Beiträge"; -$a->strings["Left offset of the section element"] = "Linker Offset für das Section-Element"; -$a->strings["Right offset of the section element"] = "Rechter Offset für das Section-Element"; -$a->strings["Section width"] = "Breite der Section"; -$a->strings["Left offset of the aside"] = "Linker Offset für das Aside-Element"; -$a->strings["Right offset of the aside element"] = "Rechter Offset für das Aside-Element"; -$a->strings["None"] = "Kein"; -$a->strings["Header image"] = "Header-Bild"; -$a->strings["Header image only on profile pages"] = "Header-Bild nur auf Profilseiten"; -$a->strings["Light (Red Matrix default)"] = "Hell (RedMatrix-Voreinstellung)"; -$a->strings["Narrow navbar"] = "Schmale Navigationsleiste"; -$a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; -$a->strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben"; -$a->strings["Navigation bar gradient bottom color"] = "Farbverlauf der Navigationsleiste: Farbe unten"; -$a->strings["Navigation active button gradient top color"] = "Navigations-Button aktiv: Farbe für Farbverlauf oben"; -$a->strings["Navigation active button gradient bottom color"] = "Navigations-Button aktiv: Farbe für Farbverlauf unten"; -$a->strings["Navigation bar border color "] = "Farbe für den Rand der Navigationsleiste"; -$a->strings["Navigation bar icon color "] = "Farbe für die Icons der Navigationsleiste"; -$a->strings["Navigation bar active icon color "] = "Farbe für aktive Icons der Navigationsleiste"; -$a->strings["link color"] = "Farbe für Links"; -$a->strings["Set font-color for banner"] = "Farbe der Schrift des Banners"; -$a->strings["Set the background color"] = "Hintergrundfarbe"; -$a->strings["Set the background image"] = "Hintergrundbild"; -$a->strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge"; -$a->strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare"; -$a->strings["Set the border color of comments"] = "Farbe des Randes von Kommentaren"; -$a->strings["Set the indent for comments"] = "Einzug für Kommentare"; -$a->strings["Set the basic color for item icons"] = "Grundfarbe für Beitrags-Icons"; -$a->strings["Set the hover color for item icons"] = "Farbe für Beitrags-Icons unter dem Mauszeiger"; -$a->strings["Set the background color of other content"] = "Hintergrundfarbe für sonstigen Inhalt"; -$a->strings["Set font-size for the entire application"] = "Schriftgröße für die ganze Applikation"; -$a->strings["Set font-color for posts and comments"] = "Schriftfarbe für Posts und Kommentare"; -$a->strings["Set radius of corners"] = "Ecken-Radius"; -$a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos"; -$a->strings["Set maximum width of conversation regions"] = "Maximalbreite der Unterhaltungsbereiche"; -$a->strings["Center conversation regions"] = "Konversationsbereich zentrieren"; -$a->strings["Set minimum opacity of nav bar - to hide it"] = "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)"; -$a->strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern"; -$a->strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren"; -$a->strings["Sloppy photo albums"] = "Schräge Fotoalben"; -$a->strings["Are you a clean desk or a messy desk person?"] = "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"; -$a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; -$a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; -$a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."; -$a->strings["Password"] = "Kennwort"; -$a->strings["Remember me"] = "Angaben speichern"; -$a->strings["Forgot your password?"] = "Passwort vergessen?"; -$a->strings["permission denied"] = "Zugriff verweigert"; -$a->strings["Got Zot?"] = "Haste schon Zot?"; -$a->strings["toggle mobile"] = "auf/von mobile Ansicht wechseln"; +$a->strings["Help with this feature"] = "Hilfe zu dieser Funktion"; +$a->strings["Layout Name"] = "Layout-Name"; +$a->strings["Edit Block"] = "Block bearbeiten"; +$a->strings["Delete block?"] = "Block löschen?"; +$a->strings["Delete Block"] = "Block löschen"; +$a->strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; +$a->strings["Edit Layout"] = "Layout bearbeiten"; +$a->strings["Delete layout?"] = "Layout löschen?"; +$a->strings["Delete Layout"] = "Layout löschen"; +$a->strings["Channel added."] = "Kanal hinzugefügt."; +$a->strings["Location not found."] = "Klon nicht gefunden."; +$a->strings["Primary location cannot be removed."] = "Der primäre Klon kann nicht gelöscht werden."; -- cgit v1.2.3 From da98c7c5348838b26e42016d2a023e9ec406aeea Mon Sep 17 00:00:00 2001 From: Jeroen Date: Thu, 23 Oct 2014 14:06:46 +0000 Subject: upd nl --- view/nl/messages.po | 11544 +++++++++++++++++++++++++------------------------- view/nl/strings.php | 2680 ++++++------ 2 files changed, 7038 insertions(+), 7186 deletions(-) diff --git a/view/nl/messages.po b/view/nl/messages.po index b6dd92f9f..33e62778a 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-19 00:03-0700\n" -"PO-Revision-Date: 2014-09-19 20:33+0000\n" +"POT-Creation-Date: 2014-10-17 14:18+0000\n" +"PO-Revision-Date: 2014-10-23 13:58+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" @@ -19,298 +19,395 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:50 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" +#: ../../view/theme/redbasic/php/config.php:84 +msgid "Light (Red Matrix default)" +msgstr "Light (RedMatrix-standaard)" -#: ../../include/photo/photo_driver.php:653 ../../include/photos.php:51 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 -#: ../../mod/photos.php:659 ../../mod/photos.php:681 -msgid "Profile Photos" -msgstr "Profielfoto's" +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../include/ItemObject.php:599 ../../mod/settings.php:519 +#: ../../mod/settings.php:631 ../../mod/settings.php:660 +#: ../../mod/settings.php:684 ../../mod/settings.php:760 +#: ../../mod/settings.php:945 ../../mod/filestorage.php:146 +#: ../../mod/admin.php:414 ../../mod/admin.php:725 ../../mod/admin.php:861 +#: ../../mod/admin.php:994 ../../mod/admin.php:1193 ../../mod/admin.php:1280 +#: ../../mod/photos.php:563 ../../mod/photos.php:672 ../../mod/photos.php:974 +#: ../../mod/photos.php:1014 ../../mod/photos.php:1101 ../../mod/mood.php:135 +#: ../../mod/pdledit.php:58 ../../mod/connedit.php:540 ../../mod/setup.php:307 +#: ../../mod/setup.php:350 ../../mod/invite.php:142 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/connect.php:92 ../../mod/fsuggest.php:108 +#: ../../mod/poke.php:166 ../../mod/group.php:81 ../../mod/appman.php:99 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/import.php:480 ../../mod/mail.php:348 ../../mod/profiles.php:643 +#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/events.php:587 +msgid "Submit" +msgstr "Opslaan" -#: ../../include/network.php:590 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Theme settings" +msgstr "Thema-instellingen" -#: ../../include/oembed.php:163 -msgid "Embedded content" -msgstr "Ingesloten inhoud" +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set scheme" +msgstr "Schema van thema instellen" -#: ../../include/oembed.php:172 -msgid "Embedding disabled" -msgstr "Insluiten uitgeschakeld" +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Narrow navbar" +msgstr "Smalle navigatiebalk" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "maakte een nieuw bericht aan" +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Navigation bar background color" +msgstr "Achtergrondkleur navigatiebalk" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "gaf een reactie op een bericht van %s" +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Navigation bar gradient top color" +msgstr "Bovenste gradiëntkleur navigatiebalk" -#: ../../include/apps.php:123 -msgid "Site Admin" -msgstr "Hubbeheerder" +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Navigation bar gradient bottom color" +msgstr "Onderste gradiëntkleur navigatiebalk" -#: ../../include/apps.php:124 ../../include/nav.php:113 -#: ../../include/conversation.php:1561 -msgid "Bookmarks" -msgstr "Bladwijzers" +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Navigation active button gradient top color" +msgstr "Bovenste gradiëntkleur actieve knop navigatiebalk" -#: ../../include/apps.php:125 -msgid "Address Book" -msgstr "Connecties" +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Navigation active button gradient bottom color" +msgstr "Onderste gradiëntkleur actieve knop op navigatiebalk" -#: ../../include/apps.php:126 ../../include/nav.php:119 ../../boot.php:1496 -msgid "Login" -msgstr "Inloggen" +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Navigation bar border color " +msgstr "Randkleur navigatiebalk " -#: ../../include/apps.php:127 ../../include/nav.php:209 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanaalbeheer" +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Navigation bar icon color " +msgstr "Pictogramkleur navigatiebalk" -#: ../../include/apps.php:128 ../../include/nav.php:183 -msgid "Matrix" -msgstr "Matrix" +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Navigation bar active icon color " +msgstr "Actieve pictogramkleur navigatiebalk" -#: ../../include/apps.php:129 ../../include/nav.php:211 -#: ../../include/widgets.php:521 ../../mod/admin.php:951 -#: ../../mod/admin.php:1156 -msgid "Settings" -msgstr "Instellingen" +#: ../../view/theme/redbasic/php/config.php:113 +msgid "link color" +msgstr "Linkkleur instellen" -#: ../../include/apps.php:130 ../../include/nav.php:105 -#: ../../include/reddav.php:1280 ../../include/conversation.php:1539 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Bestanden" +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set font-color for banner" +msgstr "Tekstkleur van banner instellen" -#: ../../include/apps.php:131 ../../include/nav.php:115 -#: ../../include/conversation.php:1572 ../../mod/webpages.php:84 -msgid "Webpages" -msgstr "Webpagina's" +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set the background color" +msgstr "Achtergrondkleur instellen" -#: ../../include/apps.php:132 ../../include/nav.php:186 -msgid "Channel Home" -msgstr "Tijdlijn kanaal" +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set the background image" +msgstr "Achtergrondafbeelding instellen" -#: ../../include/apps.php:133 ../../include/identity.php:1063 -#: ../../include/identity.php:1181 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profiel" +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set the background color of items" +msgstr "Achtergrondkleur items instellen" -#: ../../include/apps.php:134 ../../include/nav.php:104 -#: ../../include/conversation.php:1530 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" +#: ../../view/theme/redbasic/php/config.php:118 +msgid "Set the background color of comments" +msgstr "Achtergrondkleur reacties instellen" -#: ../../include/apps.php:135 ../../include/nav.php:205 -#: ../../mod/events.php:436 -msgid "Events" -msgstr "Gebeurtenissen" +#: ../../view/theme/redbasic/php/config.php:119 +msgid "Set the border color of comments" +msgstr "Randkleur reacties instellen" -#: ../../include/apps.php:136 ../../include/nav.php:172 -#: ../../mod/directory.php:226 -msgid "Directory" -msgstr "Gids" +#: ../../view/theme/redbasic/php/config.php:120 +msgid "Set the indent for comments" +msgstr "Inspringen reacties instellen" -#: ../../include/apps.php:137 ../../include/nav.php:164 ../../mod/help.php:60 -#: ../../mod/help.php:65 -msgid "Help" -msgstr "Hulp" +#: ../../view/theme/redbasic/php/config.php:121 +msgid "Set the basic color for item icons" +msgstr "Basiskleur itempictogrammen instellen" -#: ../../include/apps.php:138 ../../include/nav.php:197 -msgid "Mail" -msgstr "Privéberichten" +#: ../../view/theme/redbasic/php/config.php:122 +msgid "Set the hover color for item icons" +msgstr "Hoverkleur itempictogrammen instellen" -#: ../../include/apps.php:139 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Stemming" +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Set font-size for the entire application" +msgstr "Tekstgrootte van de volledige applicatie instellen" -#: ../../include/apps.php:140 ../../include/conversation.php:963 -msgid "Poke" -msgstr "Aanstoten" +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Lettergrootte voor berichten en reacties instellen" -#: ../../include/apps.php:141 ../../include/nav.php:110 -msgid "Chat" -msgstr "Chatten" +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-color for posts and comments" +msgstr "Tekstkleur van berichten en reacties" -#: ../../include/apps.php:142 ../../include/nav.php:169 -#: ../../include/text.php:821 ../../include/text.php:835 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "Zoeken" +#: ../../view/theme/redbasic/php/config.php:126 +msgid "Set radius of corners" +msgstr "Radius van hoeken instellen" -#: ../../include/apps.php:143 -msgid "Probe" -msgstr "Onderzoeken" +#: ../../view/theme/redbasic/php/config.php:127 +msgid "Set shadow depth of photos" +msgstr "Schaduwdiepte van foto's instellen" -#: ../../include/apps.php:144 -msgid "Suggest" -msgstr "Voorstellen" +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Set maximum width of conversation regions" +msgstr "Maximumbreedte conversatieruimte instellen" -#: ../../include/apps.php:145 -msgid "Random Channel" -msgstr "Willekeurig kanaal" +#: ../../view/theme/redbasic/php/config.php:129 +msgid "Center conversation regions" +msgstr "Centreer conversatieruimte" -#: ../../include/apps.php:146 -msgid "Invite" -msgstr "Uitnodigen " +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Set minimum opacity of nav bar - to hide it" +msgstr "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)" -#: ../../include/apps.php:147 -msgid "Features" -msgstr "Extra functies" +#: ../../view/theme/redbasic/php/config.php:131 +msgid "Set size of conversation author photo" +msgstr "Grootte profielfoto's van berichten instellen" -#: ../../include/apps.php:148 -msgid "Language" -msgstr "Taal" +#: ../../view/theme/redbasic/php/config.php:132 +msgid "Set size of followup author photos" +msgstr "Grootte profielfoto's van reacties instellen" -#: ../../include/apps.php:149 -msgid "Post" -msgstr "Bericht" +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Sloppy photo albums" +msgstr "Rommelig vormgegeven fotoalbums" -#: ../../include/apps.php:150 -msgid "Profile Photo" -msgstr "Profielfoto" +#: ../../view/theme/redbasic/php/config.php:133 +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?" -#: ../../include/apps.php:239 ../../mod/settings.php:79 -#: ../../mod/settings.php:545 -msgid "Update" -msgstr "Bijwerken" +#: ../../boot.php:1294 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../include/apps.php:239 -msgid "Install" -msgstr "Installeren" +#: ../../boot.php:1297 +#, php-format +msgid "Update Error at %s" +msgstr "Update-fout op %s" -#: ../../include/apps.php:244 -msgid "Purchase" -msgstr "Aanschaffen" +#: ../../boot.php:1471 +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" -#: ../../include/apps.php:246 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/reddav.php:1289 -#: ../../include/menu.php:42 ../../include/ItemObject.php:100 -#: ../../mod/settings.php:581 ../../mod/blocks.php:99 -#: ../../mod/connections.php:381 ../../mod/connections.php:394 -#: ../../mod/connections.php:413 ../../mod/editblock.php:111 -#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:143 ../../mod/thing.php:235 -#: ../../mod/layouts.php:121 ../../mod/menu.php:59 ../../mod/webpages.php:132 -msgid "Edit" -msgstr "Bewerken" +#: ../../boot.php:1472 ../../include/nav.php:163 ../../mod/register.php:220 +msgid "Register" +msgstr "Registreren " -#: ../../include/apps.php:247 ../../include/reddav.php:1290 -#: ../../include/conversation.php:648 ../../include/ItemObject.php:112 -#: ../../mod/settings.php:582 ../../mod/connedit.php:462 -#: ../../mod/photos.php:1082 ../../mod/group.php:176 ../../mod/admin.php:730 -#: ../../mod/admin.php:861 ../../mod/thing.php:236 -msgid "Delete" -msgstr "Verwijderen" +#: ../../boot.php:1495 ../../include/nav.php:95 ../../include/nav.php:128 +msgid "Logout" +msgstr "Uitloggen" -#: ../../include/apps.php:328 ../../include/apps.php:379 -#: ../../include/reddav.php:1202 ../../mod/connedit.php:498 -msgid "Unknown" -msgstr "Onbekend" +#: ../../boot.php:1496 ../../include/nav.php:125 ../../include/apps.php:129 +msgid "Login" +msgstr "Inloggen" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" +#: ../../boot.php:1498 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:728 ../../mod/admin.php:737 +msgid "Email" +msgstr "E-mail" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 -#: ../../mod/layouts.php:125 ../../mod/webpages.php:135 -msgid "View" -msgstr "Weergeven" +#: ../../boot.php:1499 +msgid "Password" +msgstr "Wachtwoord" -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1109 -#: ../../include/ItemObject.php:598 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:174 ../../mod/photos.php:1033 -#: ../../mod/webpages.php:136 -msgid "Preview" -msgstr "Voorvertoning" +#: ../../boot.php:1500 +msgid "Remember me" +msgstr "Aangemeld blijven" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:137 -msgid "Actions" -msgstr "Acties" +#: ../../boot.php:1505 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:138 -msgid "Page Link" -msgstr "Paginalink" +#: ../../boot.php:1506 ../../mod/lostpass.php:85 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:139 -msgid "Title" -msgstr "Titel" +#: ../../boot.php:1570 +msgid "permission denied" +msgstr "toegang geweigerd" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:140 -msgid "Created" -msgstr "Aangemaakt" +#: ../../boot.php:1571 +msgid "Got Zot?" +msgstr "Heb je Zot?" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:141 -msgid "Edited" -msgstr "Bewerkt" +#: ../../boot.php:2001 +msgid "toggle mobile" +msgstr "mobiele weergave omschakelen" -#: ../../include/security.php:320 -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/auth.php:116 +msgid "Logged out." +msgstr "Uitgelogd." -#: ../../include/zot.php:654 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" +#: ../../include/auth.php:257 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" -#: ../../include/zot.php:670 -msgid "Unable to verify channel signature" -msgstr "Kanaal-kenmerk (channel signature) kon niet worden geverifieerd. " +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Inloggen mislukt." + +#: ../../include/comanche.php:35 +msgid "Default" +msgstr "Standaard" + +#: ../../include/RedDAV/RedBrowser.php:106 +#: ../../include/RedDAV/RedBrowser.php:249 +msgid "parent" +msgstr "omhoog" + +#: ../../include/RedDAV/RedBrowser.php:130 +msgid "Collection" +msgstr "map" + +#: ../../include/RedDAV/RedBrowser.php:133 +msgid "Principal" +msgstr "principal" + +#: ../../include/RedDAV/RedBrowser.php:136 +msgid "Addressbook" +msgstr "Adresboek" + +#: ../../include/RedDAV/RedBrowser.php:139 +msgid "Calendar" +msgstr "Agenda" + +#: ../../include/RedDAV/RedBrowser.php:142 +msgid "Schedule Inbox" +msgstr "Planning-postvak IN" + +#: ../../include/RedDAV/RedBrowser.php:145 +msgid "Schedule Outbox" +msgstr "Planning-postvak UIT" + +#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:331 +#: ../../include/apps.php:382 ../../include/conversation.php:1003 +#: ../../mod/connedit.php:498 +msgid "Unknown" +msgstr "Onbekend" -#: ../../include/zot.php:1703 +#: ../../include/RedDAV/RedBrowser.php:223 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hub-kenmerk (site signature) voor %s kon niet worden geverifieerd" - -#: ../../include/photos.php:15 ../../include/attach.php:119 -#: ../../include/attach.php:166 ../../include/attach.php:229 -#: ../../include/attach.php:243 ../../include/attach.php:283 -#: ../../include/attach.php:297 ../../include/attach.php:322 -#: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:116 ../../include/items.php:3950 -#: ../../mod/mood.php:112 ../../mod/mitem.php:73 ../../mod/achievements.php:30 -#: ../../mod/settings.php:496 ../../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 +msgid "%1$s used" +msgstr "%1$s gebruikt" + +#: ../../include/RedDAV/RedBrowser.php:228 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s van %2$s gebruikt (%3$s%)" + +#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 +#: ../../include/apps.php:133 ../../include/conversation.php:1546 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Bestanden" + +#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:521 +#: ../../mod/settings.php:547 ../../mod/admin.php:868 +msgid "Name" +msgstr "Naam" + +#: ../../include/RedDAV/RedBrowser.php:246 +msgid "Type" +msgstr "Type" + +#: ../../include/RedDAV/RedBrowser.php:247 +msgid "Size" +msgstr "Grootte" + +#: ../../include/RedDAV/RedBrowser.php:248 +msgid "Last Modified" +msgstr "Laatst gewijzigd" + +#: ../../include/RedDAV/RedBrowser.php:250 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/menu.php:42 +#: ../../include/ItemObject.php:100 ../../include/apps.php:249 +#: ../../mod/settings.php:581 ../../mod/webpages.php:131 +#: ../../mod/connections.php:381 ../../mod/connections.php:394 +#: ../../mod/connections.php:413 ../../mod/menu.php:59 ../../mod/thing.php:233 +#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 +#: ../../mod/blocks.php:99 ../../mod/layouts.php:121 +#: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 +msgid "Edit" +msgstr "Bewerken" + +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/ItemObject.php:120 +#: ../../include/apps.php:250 ../../include/conversation.php:638 +#: ../../mod/settings.php:582 ../../mod/admin.php:732 ../../mod/admin.php:863 +#: ../../mod/photos.php:1064 ../../mod/connedit.php:462 +#: ../../mod/thing.php:234 ../../mod/group.php:176 +msgid "Delete" +msgstr "Verwijderen" + +#: ../../include/RedDAV/RedBrowser.php:252 +msgid "Total" +msgstr "Totaal" + +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Create new folder" +msgstr "Nieuwe map aanmaken" + +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/new_channel.php:122 +#: ../../mod/mitem.php:142 ../../mod/menu.php:84 +msgid "Create" +msgstr "Aanmaken" + +#: ../../include/RedDAV/RedBrowser.php:306 +msgid "Upload file" +msgstr "Bestand uploaden" + +#: ../../include/RedDAV/RedBrowser.php:307 ../../mod/photos.php:745 +#: ../../mod/photos.php:1226 ../../mod/profile_photo.php:361 +msgid "Upload" +msgstr "Uploaden" + +#: ../../include/photos.php:15 ../../include/items.php:3994 +#: ../../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:584 ../../include/chat.php:116 +#: ../../mod/settings.php:496 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/webpages.php:40 +#: ../../mod/authtest.php:13 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/connections.php:169 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/photos.php:68 +#: ../../mod/photos.php:526 ../../mod/mitem.php:73 ../../mod/regmod.php:17 +#: ../../mod/mood.php:112 ../../mod/pdledit.php:21 #: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:179 +#: ../../mod/menu.php:44 ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/suggest.php:26 ../../mod/connedit.php:254 +#: ../../mod/message.php:16 ../../mod/setup.php:203 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/thing.php:247 ../../mod/thing.php:264 +#: ../../mod/thing.php:299 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/register.php:70 +#: ../../mod/network.php:12 ../../mod/delegate.php:6 ../../mod/fsuggest.php:78 +#: ../../mod/manage.php:6 ../../mod/editpost.php:13 +#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 +#: ../../mod/poke.php:128 ../../mod/blocks.php:29 ../../mod/blocks.php:44 +#: ../../mod/group.php:9 ../../mod/service_limits.php:7 ../../mod/item.php:182 +#: ../../mod/item.php:190 ../../mod/item.php:929 ../../mod/appman.php:66 +#: ../../mod/sources.php:66 ../../mod/page.php:30 ../../mod/page.php:80 +#: ../../mod/mail.php:111 ../../mod/channel.php:89 ../../mod/channel.php:193 +#: ../../mod/channel.php:236 ../../mod/profiles.php:179 #: ../../mod/profiles.php:560 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/register.php:70 ../../mod/regmod.php:17 ../../mod/common.php:35 -#: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:254 ../../mod/delegate.php:6 ../../mod/page.php:30 -#: ../../mod/page.php:80 ../../mod/setup.php:203 ../../mod/editblock.php:34 -#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:48 -#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:44 -#: ../../mod/editwebpage.php:83 ../../mod/photos.php:68 -#: ../../mod/photos.php:526 ../../mod/sources.php:66 ../../mod/events.php:200 -#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 -#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 -#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 -#: ../../mod/thing.php:249 ../../mod/thing.php:266 ../../mod/thing.php:301 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:178 -#: ../../mod/item.php:186 ../../mod/item.php:920 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/like.php:154 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:12 ../../mod/mail.php:108 ../../mod/manage.php:6 -#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/message.php:16 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/notifications.php:66 ../../mod/appman.php:66 -#: ../../mod/service_limits.php:7 ../../index.php:186 ../../index.php:361 +#: ../../mod/common.php:35 ../../mod/like.php:154 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/events.php:200 ../../mod/notifications.php:66 +#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 +#: ../../mod/editblock.php:34 ../../mod/viewsrc.php:14 +#: ../../mod/achievements.php:30 ../../mod/editlayout.php:48 +#: ../../index.php:190 ../../index.php:365 msgid "Permission denied." msgstr "Toegang geweigerd" +#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:680 +#: ../../mod/photos.php:91 ../../mod/photos.php:657 ../../mod/photos.php:679 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:423 +msgid "Profile Photos" +msgstr "Profielfoto's" + #: ../../include/photos.php:104 #, php-format msgid "Image exceeds website size limit of %lu bytes" @@ -328,36 +425,90 @@ msgstr "Afbeelding kan niet verwerkt worden" msgid "Photo storage failed." msgstr "Foto kan niet worden opgeslagen" -#: ../../include/photos.php:340 ../../include/conversation.php:1533 +#: ../../include/photos.php:340 ../../include/conversation.php:1540 msgid "Photo Albums" msgstr "Fotoalbums" -#: ../../include/photos.php:344 ../../mod/photos.php:697 -#: ../../mod/photos.php:1244 +#: ../../include/photos.php:344 msgid "Upload New Photos" msgstr "Nieuwe foto's uploaden" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" +#: ../../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/acl_selectors.php:241 -msgid "Show" -msgstr "Tonen" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 +msgid "Advanced" +msgstr "Geavanceerd" -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Niet tonen" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Kanalen vinden" -#: ../../include/acl_selectors.php:248 ../../mod/chat.php:209 -#: ../../mod/photos.php:604 ../../mod/photos.php:988 -#: ../../mod/filestorage.php:128 -msgid "Permissions" -msgstr "Permissies" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:295 -msgid "Close" -msgstr "Sluiten" +#: ../../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:222 ../../mod/directory.php:227 +msgid "Find" +msgstr "Vinden" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +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 "Exammple: name=fred and country=iceland" +msgstr "Voorbeeld: (voor naam) name=herman en (voor land) country=nederland" + +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" +msgstr "Geavanceerd zoeken" + +#: ../../include/contact_widgets.php:58 ../../include/features.php:72 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "Bewaarde mappen" + +#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96 +#: ../../include/widgets.php:306 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29 +msgid "Categories" +msgstr "Categorieën" + +#: ../../include/contact_widgets.php:126 +#, 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:131 +msgid "show more" +msgstr "meer connecties weergeven" #: ../../include/activities.php:39 msgid " and " @@ -382,697 +533,826 @@ msgstr "Bezoek het %2$s van %1$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." -#: ../../include/api.php:1069 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" +#: ../../include/items.php:375 ../../mod/subthread.php:49 +#: ../../mod/profperm.php:23 ../../mod/group.php:68 ../../mod/like.php:242 +#: ../../index.php:364 +msgid "Permission denied" +msgstr "Toegang geweigerd" -#: ../../include/attach.php:224 ../../include/attach.php:278 -msgid "Item was not found." -msgstr "Item niet gevonden" +#: ../../include/items.php:962 ../../include/items.php:1007 +msgid "(Unknown)" +msgstr "(Onbekend)" -#: ../../include/attach.php:335 -msgid "No source file." -msgstr "Geen bronbestand." +#: ../../include/items.php:1163 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." -#: ../../include/attach.php:352 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" +#: ../../include/items.php:1165 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." -#: ../../include/attach.php:370 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" +#: ../../include/items.php:1167 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." -#: ../../include/attach.php:381 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" +#: ../../include/items.php:1169 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../include/attach.php:393 +#: ../../include/items.php:1171 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." -#: ../../include/attach.php:475 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." +#: ../../include/items.php:1173 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." -#: ../../include/attach.php:487 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." +#: ../../include/items.php:1175 +msgid "Visible to approved connections." +msgstr "Voor alle goedgekeurde connecties zichtbaar." -#: ../../include/attach.php:528 ../../include/attach.php:545 -msgid "Path not available." -msgstr "Pad niet beschikbaar." +#: ../../include/items.php:1177 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." -#: ../../include/attach.php:590 -msgid "Empty pathname" -msgstr "Padnaam leeg" +#: ../../include/items.php:3927 ../../mod/filestorage.php:26 +#: ../../mod/admin.php:168 ../../mod/admin.php:898 ../../mod/admin.php:1101 +#: ../../mod/thing.php:76 ../../mod/display.php:32 ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Item niet gevonden." -#: ../../include/attach.php:606 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" +#: ../../include/items.php:4365 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Collectie niet gevonden." -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "Pad niet gevonden" +#: ../../include/items.php:4380 +msgid "Collection is empty." +msgstr "Collectie is leeg" -#: ../../include/attach.php:681 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." +#: ../../include/items.php:4387 +#, php-format +msgid "Collection: %s" +msgstr "Collectie: %s" -#: ../../include/attach.php:685 -msgid "database storage failed." -msgstr "opslag in database mislukt." +#: ../../include/items.php:4398 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" -#: ../../include/nav.php:94 ../../include/nav.php:121 ../../boot.php:1495 -msgid "Logout" -msgstr "Uitloggen" +#: ../../include/items.php:4401 +msgid "Connection not found." +msgstr "Connectie niet gevonden." -#: ../../include/nav.php:94 ../../include/nav.php:121 -msgid "End this session" -msgstr "Beëindig deze sessie" +#: ../../include/Contact.php:107 ../../include/identity.php:832 +#: ../../include/conversation.php:948 ../../include/widgets.php:135 +#: ../../include/widgets.php:175 ../../mod/dirprofile.php:164 +#: ../../mod/suggest.php:51 ../../mod/directory.php:183 ../../mod/match.php:62 +msgid "Connect" +msgstr "Verbinden" -#: ../../include/nav.php:97 ../../include/nav.php:155 -msgid "Home" -msgstr "Home" +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Nieuw venster" -#: ../../include/nav.php:97 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" +#: ../../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/nav.php:98 ../../include/conversation.php:957 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:529 -msgid "View Profile" -msgstr "Profiel weergeven" +#: ../../include/Contact.php:211 ../../mod/admin.php:649 +#, php-format +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../include/nav.php:98 -msgid "Your profile page" -msgstr "Jouw profielpagina" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diversen" -#: ../../include/nav.php:100 -msgid "Edit Profiles" -msgstr "Bewerk profielen" +#: ../../include/datetime.php:152 ../../include/datetime.php:284 +msgid "year" +msgstr "jaar" -#: ../../include/nav.php:100 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" +#: ../../include/datetime.php:157 ../../include/datetime.php:285 +msgid "month" +msgstr "maand" -#: ../../include/nav.php:102 ../../include/identity.php:807 -msgid "Edit Profile" -msgstr "Profiel bewerken" +#: ../../include/datetime.php:162 ../../include/datetime.php:287 +msgid "day" +msgstr "dag" -#: ../../include/nav.php:102 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" +#: ../../include/datetime.php:275 +msgid "never" +msgstr "nooit" -#: ../../include/nav.php:104 -msgid "Your photos" -msgstr "Jouw foto's" +#: ../../include/datetime.php:281 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" -#: ../../include/nav.php:105 -msgid "Your files" -msgstr "Jouw bestanden" +#: ../../include/datetime.php:284 +msgid "years" +msgstr "jaren" -#: ../../include/nav.php:110 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" +#: ../../include/datetime.php:285 +msgid "months" +msgstr "maanden" -#: ../../include/nav.php:113 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" +#: ../../include/datetime.php:286 +msgid "week" +msgstr "week" -#: ../../include/nav.php:115 -msgid "Your webpages" -msgstr "Jouw webpagina's" +#: ../../include/datetime.php:286 +msgid "weeks" +msgstr "weken" -#: ../../include/nav.php:119 -msgid "Sign in" -msgstr "Inloggen" +#: ../../include/datetime.php:287 +msgid "days" +msgstr "dagen" -#: ../../include/nav.php:136 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" +#: ../../include/datetime.php:288 +msgid "hour" +msgstr "uur" -#: ../../include/nav.php:141 -msgid "Click to authenticate to your home hub" -msgstr "Klik om jezelf te authenticeren via jouw eigen RedMatrix-hub" +#: ../../include/datetime.php:288 +msgid "hours" +msgstr "uren" -#: ../../include/nav.php:155 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/datetime.php:289 +msgid "minute" +msgstr "minuut" -#: ../../include/nav.php:159 ../../mod/register.php:220 ../../boot.php:1472 -msgid "Register" -msgstr "Registreren " +#: ../../include/datetime.php:289 +msgid "minutes" +msgstr "minuten" -#: ../../include/nav.php:159 -msgid "Create an account" -msgstr "Maak een account aan" +#: ../../include/datetime.php:290 +msgid "second" +msgstr "seconde" -#: ../../include/nav.php:164 -msgid "Help and documentation" -msgstr "Hulp en documentatie" +#: ../../include/datetime.php:290 +msgid "seconds" +msgstr "seconden" -#: ../../include/nav.php:167 ../../include/widgets.php:86 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Apps" +#: ../../include/datetime.php:299 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" -#: ../../include/nav.php:167 -msgid "Applications, utilities, links, games" -msgstr "Apps" +#: ../../include/datetime.php:504 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" -#: ../../include/nav.php:169 -msgid "Search site content" -msgstr "Inhoud van deze RedMatrix-hub doorzoeken" +#: ../../include/datetime.php:505 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" -#: ../../include/nav.php:172 -msgid "Channel Locator" -msgstr "Kanalengids" +#: ../../include/identity.php:31 ../../mod/item.php:1319 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" -#: ../../include/nav.php:183 -msgid "Your matrix" -msgstr "Jouw matrix" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../include/nav.php:184 -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:186 -msgid "Channel home" -msgstr "Tijdlijn kanaal" +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Geen account-identificator" -#: ../../include/nav.php:187 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" +#: ../../include/identity.php:181 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" -#: ../../include/nav.php:190 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Connecties" +#: ../../include/identity.php:195 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." -#: ../../include/nav.php:193 -msgid "Notices" -msgstr "Notificaties" +#: ../../include/identity.php:200 +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:193 -msgid "Notifications" -msgstr "Notificaties" +#: ../../include/identity.php:282 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" -#: ../../include/nav.php:194 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" +#: ../../include/identity.php:342 +msgid "Default Profile" +msgstr "Standaardprofiel" -#: ../../include/nav.php:195 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" +#: ../../include/identity.php:381 ../../include/identity.php:382 +#: ../../include/identity.php:389 ../../include/profile_selectors.php:80 +#: ../../include/widgets.php:407 ../../mod/connedit.php:495 +msgid "Friends" +msgstr "Vrienden" -#: ../../include/nav.php:197 -msgid "Private mail" -msgstr "Privéberichten" +#: ../../include/identity.php:635 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../include/nav.php:198 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" +#: ../../include/identity.php:683 ../../mod/filestorage.php:48 +#: ../../mod/webpages.php:8 ../../mod/profile.php:16 ../../mod/hcard.php:8 +#: ../../mod/connect.php:13 ../../mod/blocks.php:10 ../../mod/layouts.php:8 +#: ../../mod/achievements.php:11 +msgid "Requested profile is not available." +msgstr "Opgevraagd profiel is niet beschikbaar" -#: ../../include/nav.php:199 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" +#: ../../include/identity.php:846 ../../mod/profiles.php:750 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" -#: ../../include/nav.php:200 -msgid "Inbox" -msgstr "Postvak IN" +#: ../../include/identity.php:852 +msgid "Profiles" +msgstr "Profielen" -#: ../../include/nav.php:201 -msgid "Outbox" -msgstr "Postvak UIT" +#: ../../include/identity.php:852 +msgid "Manage/edit profiles" +msgstr "Profielen beheren/bewerken" -#: ../../include/nav.php:202 ../../include/widgets.php:543 -msgid "New Message" -msgstr "Nieuw bericht" +#: ../../include/identity.php:853 ../../mod/profiles.php:751 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" -#: ../../include/nav.php:205 -msgid "Event Calendar" -msgstr "Agenda" +#: ../../include/identity.php:856 ../../include/nav.php:103 +msgid "Edit Profile" +msgstr "Profiel bewerken" -#: ../../include/nav.php:206 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" +#: ../../include/identity.php:867 ../../mod/profiles.php:762 +msgid "Profile Image" +msgstr "Profielfoto" -#: ../../include/nav.php:207 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" +#: ../../include/identity.php:870 +msgid "visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/nav.php:209 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" +#: ../../include/identity.php:871 ../../mod/profiles.php:645 +#: ../../mod/profiles.php:766 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" -#: ../../include/nav.php:211 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" +#: ../../include/identity.php:883 ../../include/event.php:40 +#: ../../include/bb2diaspora.php:461 ../../mod/dirprofile.php:105 +#: ../../mod/directory.php:156 ../../mod/events.php:579 +msgid "Location:" +msgstr "Plaats:" -#: ../../include/nav.php:219 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Beheer" +#: ../../include/identity.php:885 ../../include/identity.php:1122 +#: ../../mod/directory.php:158 +msgid "Gender:" +msgstr "Geslacht:" -#: ../../include/nav.php:219 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" +#: ../../include/identity.php:886 ../../include/identity.php:1166 +#: ../../mod/directory.php:160 +msgid "Status:" +msgstr "Status:" -#: ../../include/nav.php:244 -msgid "Nothing new here" -msgstr "Niets nieuw hier" +#: ../../include/identity.php:887 ../../include/identity.php:1177 +#: ../../mod/directory.php:162 +msgid "Homepage:" +msgstr "Homepagina:" -#: ../../include/nav.php:248 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../include/identity.php:888 ../../mod/dirprofile.php:151 +msgid "Online Now" +msgstr "Nu online" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" +#: ../../include/identity.php:966 ../../include/identity.php:1046 +#: ../../mod/ping.php:298 +msgid "g A l F d" +msgstr "G:i, l d F" -#: ../../include/text.php:321 -msgid "prev" -msgstr "vorige" +#: ../../include/identity.php:967 ../../include/identity.php:1047 +msgid "F d" +msgstr "d F" -#: ../../include/text.php:323 -msgid "first" -msgstr "eerste" +#: ../../include/identity.php:1012 ../../include/identity.php:1087 +#: ../../mod/ping.php:320 +msgid "[today]" +msgstr "[vandaag]" -#: ../../include/text.php:352 -msgid "last" -msgstr "laatste" +#: ../../include/identity.php:1024 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" -#: ../../include/text.php:355 -msgid "next" -msgstr "volgende" +#: ../../include/identity.php:1025 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" -#: ../../include/text.php:367 -msgid "older" -msgstr "ouder" +#: ../../include/identity.php:1080 +msgid "[No description]" +msgstr "[Geen omschrijving]" -#: ../../include/text.php:369 -msgid "newer" -msgstr "nieuwer" +#: ../../include/identity.php:1098 +msgid "Event Reminders" +msgstr "Herinneringen" -#: ../../include/text.php:736 -msgid "No connections" -msgstr "Geen connecties" +#: ../../include/identity.php:1099 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" -#: ../../include/text.php:749 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d connectie" -msgstr[1] "%d connecties" +#: ../../include/identity.php:1112 ../../include/identity.php:1230 +#: ../../include/apps.php:136 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profiel" -#: ../../include/text.php:762 -msgid "View Connections" -msgstr "Connecties weergeven" +#: ../../include/identity.php:1120 ../../mod/settings.php:953 +msgid "Full Name:" +msgstr "Volledige naam:" -#: ../../include/text.php:823 ../../include/text.php:837 -#: ../../include/widgets.php:193 ../../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:1127 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" -#: ../../include/text.php:903 -msgid "poke" -msgstr "aanstoten" +#: ../../include/identity.php:1138 ../../include/taxonomy.php:338 +#: ../../include/ItemObject.php:146 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" -#: ../../include/text.php:903 ../../include/conversation.php:243 -msgid "poked" -msgstr "aangestoten" +#: ../../include/identity.php:1151 +msgid "j F, Y" +msgstr "F j Y" -#: ../../include/text.php:904 -msgid "ping" -msgstr "ping" +#: ../../include/identity.php:1152 +msgid "j F" +msgstr "F j" -#: ../../include/text.php:904 -msgid "pinged" -msgstr "gepingd" +#: ../../include/identity.php:1159 +msgid "Birthday:" +msgstr "Geboortedatum:" -#: ../../include/text.php:905 -msgid "prod" -msgstr "por" +#: ../../include/identity.php:1163 +msgid "Age:" +msgstr "Leeftijd:" -#: ../../include/text.php:905 -msgid "prodded" -msgstr "gepord" +#: ../../include/identity.php:1172 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" -#: ../../include/text.php:906 -msgid "slap" -msgstr "slaan" +#: ../../include/identity.php:1175 ../../mod/profiles.php:667 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" -#: ../../include/text.php:906 -msgid "slapped" -msgstr "sloeg" +#: ../../include/identity.php:1179 ../../mod/profiles.php:669 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" -#: ../../include/text.php:907 -msgid "finger" -msgstr "finger" +#: ../../include/identity.php:1181 +msgid "Tags:" +msgstr "Trefwoorden:" -#: ../../include/text.php:907 -msgid "fingered" -msgstr "gefingerd" +#: ../../include/identity.php:1183 ../../mod/profiles.php:670 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" -#: ../../include/text.php:908 -msgid "rebuff" -msgstr "afpoeieren" +#: ../../include/identity.php:1185 +msgid "Religion:" +msgstr "Religie:" -#: ../../include/text.php:908 -msgid "rebuffed" -msgstr "afgepoeierd" +#: ../../include/identity.php:1187 ../../mod/directory.php:164 +msgid "About:" +msgstr "Over:" -#: ../../include/text.php:917 -msgid "happy" -msgstr "gelukkig" +#: ../../include/identity.php:1189 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" -#: ../../include/text.php:918 -msgid "sad" -msgstr "bedroefd" +#: ../../include/identity.php:1191 ../../mod/profiles.php:673 +msgid "Likes:" +msgstr "Houdt van:" -#: ../../include/text.php:919 -msgid "mellow" -msgstr "mellow" +#: ../../include/identity.php:1193 ../../mod/profiles.php:674 +msgid "Dislikes:" +msgstr "Houdt niet van:" -#: ../../include/text.php:920 -msgid "tired" -msgstr "moe" +#: ../../include/identity.php:1196 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/text.php:921 -msgid "perky" -msgstr "parmantig" +#: ../../include/identity.php:1198 +msgid "My other channels:" +msgstr "Mijn andere kanalen" -#: ../../include/text.php:922 -msgid "angry" -msgstr "boos" +#: ../../include/identity.php:1200 +msgid "Musical interests:" +msgstr "Muzikale interesses:" -#: ../../include/text.php:923 -msgid "stupified" -msgstr "beteuterd" +#: ../../include/identity.php:1202 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" -#: ../../include/text.php:924 -msgid "puzzled" -msgstr "verward" +#: ../../include/identity.php:1204 +msgid "Television:" +msgstr "Televisie:" -#: ../../include/text.php:925 -msgid "interested" -msgstr "geïnteresseerd" +#: ../../include/identity.php:1206 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/text.php:926 -msgid "bitter" -msgstr "verbitterd" +#: ../../include/identity.php:1208 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" -#: ../../include/text.php:927 -msgid "cheerful" -msgstr "vrolijk" +#: ../../include/identity.php:1210 +msgid "Work/employment:" +msgstr "Werk/beroep:" -#: ../../include/text.php:928 -msgid "alive" -msgstr "levendig" +#: ../../include/identity.php:1212 +msgid "School/education:" +msgstr "School/opleiding:" -#: ../../include/text.php:929 -msgid "annoyed" -msgstr "geërgerd" +#: ../../include/identity.php:1232 +msgid "Like this thing" +msgstr "Vind dit ding leuk" -#: ../../include/text.php:930 -msgid "anxious" -msgstr "bezorgd" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nieuwe pagina" -#: ../../include/text.php:931 -msgid "cranky" -msgstr "humeurig" +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:134 +#: ../../mod/blocks.php:102 ../../mod/layouts.php:125 +msgid "View" +msgstr "Weergeven" -#: ../../include/text.php:932 -msgid "disturbed" -msgstr "verontrust" +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:608 +#: ../../include/conversation.php:1114 ../../mod/webpages.php:135 +#: ../../mod/photos.php:1015 ../../mod/editpost.php:140 +#: ../../mod/editwebpage.php:174 ../../mod/editblock.php:141 +#: ../../mod/editlayout.php:135 +msgid "Preview" +msgstr "Voorvertoning" -#: ../../include/text.php:933 -msgid "frustrated" -msgstr "gefrustreerd " +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 +msgid "Actions" +msgstr "Acties" -#: ../../include/text.php:934 -msgid "depressed" -msgstr "gedeprimeerd" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 +msgid "Page Link" +msgstr "Paginalink" -#: ../../include/text.php:935 -msgid "motivated" -msgstr "gemotiveerd" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 +msgid "Title" +msgstr "Titel" -#: ../../include/text.php:936 -msgid "relaxed" -msgstr "ontspannen" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 +msgid "Created" +msgstr "Aangemaakt" -#: ../../include/text.php:937 -msgid "surprised" -msgstr "verrast" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 +msgid "Edited" +msgstr "Bewerkt" -#: ../../include/text.php:1101 -msgid "Monday" -msgstr "maandag" +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." -#: ../../include/text.php:1101 -msgid "Tuesday" -msgstr "dinsdag" +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../include/text.php:1101 -msgid "Wednesday" -msgstr "woensdag" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." -#: ../../include/text.php:1101 -msgid "Thursday" -msgstr "donderdag" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/text.php:1101 -msgid "Friday" -msgstr "vrijdag" +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Labels" -#: ../../include/text.php:1101 -msgid "Saturday" -msgstr "zaterdag" +#: ../../include/taxonomy.php:227 +msgid "Keywords" +msgstr "Trefwoorden" -#: ../../include/text.php:1101 -msgid "Sunday" -msgstr "zondag" +#: ../../include/taxonomy.php:252 +msgid "have" +msgstr "heb" -#: ../../include/text.php:1105 -msgid "January" -msgstr "januari" +#: ../../include/taxonomy.php:252 +msgid "has" +msgstr "heeft" -#: ../../include/text.php:1105 -msgid "February" -msgstr "februari" +#: ../../include/taxonomy.php:253 +msgid "want" +msgstr "wil" -#: ../../include/text.php:1105 -msgid "March" -msgstr "maart" +#: ../../include/taxonomy.php:253 +msgid "wants" +msgstr "wil" -#: ../../include/text.php:1105 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1105 -msgid "May" -msgstr "mei" +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:221 +msgid "like" +msgstr "vind dit leuk" -#: ../../include/text.php:1105 -msgid "June" -msgstr "juni" +#: ../../include/taxonomy.php:254 +msgid "likes" +msgstr "vindt dit leuk" -#: ../../include/text.php:1105 -msgid "July" -msgstr "juli" +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "vind dit niet leuk" -#: ../../include/text.php:1105 -msgid "August" -msgstr "augustus" +#: ../../include/taxonomy.php:255 +msgid "dislikes" +msgstr "vindt dit niet leuk" -#: ../../include/text.php:1105 -msgid "September" -msgstr "september" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" -#: ../../include/text.php:1105 -msgid "October" -msgstr "oktober" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 +#: ../../mod/photos.php:1013 ../../mod/photos.php:1100 +msgid "Comment" +msgstr "Reactie" -#: ../../include/text.php:1105 -msgid "November" -msgstr "november" +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:332 +msgid "[+] show all" +msgstr "[+] alle" -#: ../../include/text.php:1105 -msgid "December" -msgstr "december" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] minder reacties weergeven" -#: ../../include/text.php:1183 -msgid "unknown.???" -msgstr "onbekend.???" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] uitklappen" -#: ../../include/text.php:1184 -msgid "bytes" -msgstr "bytes" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] inklappen" -#: ../../include/text.php:1219 -msgid "remove category" -msgstr "categorie verwijderen" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Wachtwoord te kort" -#: ../../include/text.php:1289 -msgid "remove from file" -msgstr "uit map verwijderen" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen" -#: ../../include/text.php:1354 ../../include/text.php:1366 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" +msgstr "iedereen" -#: ../../include/text.php:1521 ../../mod/events.php:414 -msgid "Link to Source" -msgstr "Originele locatie" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Geheim wachtwoord" -#: ../../include/text.php:1540 -msgid "Select a page layout: " -msgstr "Kies een paginalayout: " +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Wachtwoordhint" -#: ../../include/text.php:1543 ../../include/text.php:1608 -msgid "default" -msgstr "standaard" +#: ../../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/text.php:1579 -msgid "Page content type: " -msgstr "Opmaakcode pagina" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alles sluiten" -#: ../../include/text.php:1620 -msgid "Select an alternate language" -msgstr "Kies een andere taal" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niets nieuw hier" -#: ../../include/text.php:1741 ../../include/diaspora.php:1888 -#: ../../include/conversation.php:120 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:294 -msgid "photo" -msgstr "foto" +#: ../../include/js_strings.php:20 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/text.php:1744 ../../include/conversation.php:123 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "gebeurtenis" +#: ../../include/js_strings.php:21 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/text.php:1747 ../../include/diaspora.php:1888 -#: ../../include/conversation.php:148 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:294 -msgid "status" -msgstr "bericht" +#: ../../include/js_strings.php:22 +msgid "ago" +msgstr "geleden" -#: ../../include/text.php:1749 ../../include/conversation.php:150 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "reactie" +#: ../../include/js_strings.php:23 +msgid "from now" +msgstr "vanaf nu" -#: ../../include/text.php:1754 -msgid "activity" -msgstr "activiteit" +#: ../../include/js_strings.php:24 +msgid "less than a minute" +msgstr "minder dan een minuut" -#: ../../include/text.php:2018 -msgid "Design" -msgstr "Ontwerp" +#: ../../include/js_strings.php:25 +msgid "about a minute" +msgstr "ongeveer een minuut" -#: ../../include/text.php:2020 -msgid "Blocks" -msgstr "Blokken" +#: ../../include/js_strings.php:26 +#, php-format +msgid "%d minutes" +msgstr "%d minuten" -#: ../../include/text.php:2021 -msgid "Menus" -msgstr "Menu's" +#: ../../include/js_strings.php:27 +msgid "about an hour" +msgstr "ongeveer een uur" -#: ../../include/text.php:2022 -msgid "Layouts" -msgstr "Layouts" +#: ../../include/js_strings.php:28 +#, php-format +msgid "about %d hours" +msgstr "ongeveer %d uren" -#: ../../include/text.php:2023 -msgid "Pages" -msgstr "Pagina's" +#: ../../include/js_strings.php:29 +msgid "a day" +msgstr "een dag" -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Labels" +#: ../../include/js_strings.php:30 +#, php-format +msgid "%d days" +msgstr "%d dagen" -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Trefwoorden" +#: ../../include/js_strings.php:31 +msgid "about a month" +msgstr "ongeveer een maand" -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "heb" +#: ../../include/js_strings.php:32 +#, php-format +msgid "%d months" +msgstr "%d maanden" -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "heeft" +#: ../../include/js_strings.php:33 +msgid "about a year" +msgstr "ongeveer een jaar" -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "wil" +#: ../../include/js_strings.php:34 +#, php-format +msgid "%d years" +msgstr "%d jaren" -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "wil" +#: ../../include/js_strings.php:35 +msgid " " +msgstr " " -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:212 -msgid "like" -msgstr "vind dit leuk" +#: ../../include/js_strings.php:36 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "vindt dit leuk" +#: ../../include/permissions.php:13 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:213 -msgid "dislike" -msgstr "vind dit niet leuk" +#: ../../include/permissions.php:14 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "vindt dit niet leuk" +#: ../../include/permissions.php:15 +msgid "Can view my photo albums" +msgstr "Kan mijn fotoalbums bekijken" -#: ../../include/taxonomy.php:338 ../../include/identity.php:1089 -#: ../../include/ItemObject.php:138 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "vindt dit leuk" -msgstr[1] "vinden dit leuk" +#: ../../include/permissions.php:16 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standaard" +#: ../../include/permissions.php:17 +msgid "Can view my file storage" +msgstr "Kan mijn bestanden bekijken" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Regelmatig" +#: ../../include/permissions.php:18 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Elk uur" +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Dagelijks" +#: ../../include/permissions.php:23 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wekelijks" +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Maandelijks" +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" +msgstr "Kan foto's aan mijn fotoalbums toevoegen" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" -#: ../../include/contact_selectors.php:77 +#: ../../include/permissions.php:26 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" + +#: ../../include/permissions.php:28 +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:28 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor kanalen met een groep- cq. forumfunctie" + +#: ../../include/permissions.php:29 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" + +#: ../../include/permissions.php:30 +msgid "Can write to my file storage" +msgstr "Kan bestanden aan mijn bestandsopslag toevoegen" + +#: ../../include/permissions.php:31 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" + +#: ../../include/permissions.php:33 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" + +#: ../../include/permissions.php:33 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" + +#: ../../include/permissions.php:35 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" + +#: ../../include/permissions.php:35 +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:738 +msgid "Social Networking" +msgstr "Sociaal netwerk" + +#: ../../include/permissions.php:739 ../../include/permissions.php:741 +#: ../../include/permissions.php:743 ../../include/permissions.php:745 +msgid "Mostly Public" +msgstr "Vrijwel alles openbaar" + +#: ../../include/permissions.php:739 ../../include/permissions.php:741 +#: ../../include/permissions.php:743 +msgid "Restricted" +msgstr "Beperkt zichtbaar" + +#: ../../include/permissions.php:739 ../../include/permissions.php:741 +msgid "Private" +msgstr "Verborgen kanaal" + +#: ../../include/permissions.php:740 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../include/permissions.php:742 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../include/permissions.php:744 +msgid "Celebrity/Soapbox" +msgstr "Beroemdheid/alleen volgen" + +#: ../../include/permissions.php:746 ../../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:747 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Regelmatig" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Elk uur" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" + +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Dagelijks" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wekelijks" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Maandelijks" + +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/contact_selectors.php:77 msgid "OStatus" msgstr "OStatus" @@ -1080,11 +1360,6 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 -#: ../../mod/admin.php:735 ../../boot.php:1498 -msgid "Email" -msgstr "E-mail" - #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" @@ -1109,2694 +1384,2488 @@ msgstr "XMPP/IM" msgid "MySpace" msgstr "MySpace" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 -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:222 ../../mod/directory.php:227 -msgid "Find" -msgstr "Vinden" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -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 "Exammple: name=fred and country=iceland" -msgstr "Voorbeeld: (voor naam) name=herman en (voor land) country=nederland" - -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "Geavanceerd zoeken" - -#: ../../include/contact_widgets.php:58 ../../include/features.php:72 -#: ../../include/widgets.php:303 -msgid "Saved Folders" -msgstr "Bewaarde mappen" - -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96 -#: ../../include/widgets.php:306 -msgid "Everything" -msgstr "Alles" - -#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29 -msgid "Categories" -msgstr "Categorieën" - -#: ../../include/contact_widgets.php:126 -#, 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:131 -msgid "show more" -msgstr "meer connecties weergeven" - -#: ../../include/event.php:11 ../../include/bb2diaspora.php:425 +#: ../../include/event.php:11 ../../include/bb2diaspora.php:439 msgid "l F d, Y \\@ g:i A" msgstr "l d F Y \\@ G:i" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:431 +#: ../../include/event.php:20 ../../include/bb2diaspora.php:445 msgid "Starts:" msgstr "Start:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:439 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:453 msgid "Finishes:" msgstr "Einde:" -#: ../../include/event.php:40 ../../include/bb2diaspora.php:447 -#: ../../include/identity.php:834 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:579 -msgid "Location:" -msgstr "Plaats:" - #: ../../include/event.php:326 msgid "This event has been added to your calendar." msgstr "Dit evenement is aan jouw agenda toegevoegd." -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" +msgstr "Man" -#: ../../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/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" +msgstr "Vrouw" -#: ../../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/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momenteel man" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momenteel vrouw" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Voornamelijk man" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Voornamelijk vrouw" -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Interseksueel" -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registratieverzoek op %s" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksueel" -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Beheerder" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Genderneutraal" -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiedetails voor %s" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Niet gespecificeerd" -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account goedgekeurd" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Nog niet beslist" -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Mannen" -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Vrouwen" -#: ../../include/account.php:647 ../../include/account.php:649 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Homoseksueel" -#: ../../include/account.php:655 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/account.php:660 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Geen voorkeur" -#: ../../include/diaspora.php:1917 ../../include/conversation.php:164 -#: ../../mod/like.php:331 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Biseksueel" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autoseksueel" -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "jaar" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Seksuele onthouding" -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "maand" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Maagd" -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "dag" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Afwijkend" -#: ../../include/datetime.php:275 -msgid "never" -msgstr "nooit" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetisj" -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Veel" -#: ../../include/datetime.php:284 -msgid "years" -msgstr "jaren" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Aseksueel" -#: ../../include/datetime.php:285 -msgid "months" -msgstr "maanden" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Alleen" -#: ../../include/datetime.php:286 -msgid "week" -msgstr "week" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Eenzaam" -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "weken" +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Beschikbaar" -#: ../../include/datetime.php:287 -msgid "days" -msgstr "dagen" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Niet beschikbaar" -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "uur" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Heeft een oogje op iemand" -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "uren" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Smoorverliefd" -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "minuut" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Aan het daten" -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "minuten" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Ontrouw" -#: ../../include/datetime.php:290 -msgid "second" -msgstr "seconde" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Seksverslaafd" -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "seconden" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Ongebonden/vluchtig" -#: ../../include/datetime.php:504 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Verloofd" -#: ../../include/datetime.php:505 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Getrouwd" -#: ../../include/dir_fns.php:56 -msgid "Sort Options" -msgstr "Sorteeropties" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" -#: ../../include/dir_fns.php:57 -msgid "Alphabetic" -msgstr "Alfabetisch" +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partners" -#: ../../include/dir_fns.php:58 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Samenwonend" -#: ../../include/dir_fns.php:59 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Common-law-huwelijk" -#: ../../include/dir_fns.php:71 -msgid "Enable Safe Search" -msgstr "Veilig zoeken inschakelen" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Gelukkig" -#: ../../include/dir_fns.php:73 -msgid "Disable Safe Search" -msgstr "Veilig zoeken uitschakelen" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Niet op zoek" -#: ../../include/dir_fns.php:75 -msgid "Safe Mode" -msgstr "Veilig zoeken" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/bb2diaspora.php:346 -msgid "Attachments:" -msgstr "Bijlagen:" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Verraden" -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "RedMatrix-notificatie" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Uit elkaar" -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "RedMatrix" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Onstabiel" -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Bedankt," +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Gescheiden" -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "Beheerder %s" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notificatie] Nieuw privébericht ontvangen op %s" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" -#: ../../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/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Onzeker" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s zond jou %2$s." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Het is ingewikkeld" -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "een privébericht" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Maakt mij niks uit" -#: ../../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/profile_selectors.php:80 +msgid "Ask me" +msgstr "Vraag het me" -#: ../../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/account.php:23 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" -#: ../../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/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/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/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/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/account.php:64 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" -#: ../../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/account.php:68 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" -#: ../../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/account.php:119 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." -#: ../../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/account.php:187 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." -#: ../../include/enotify.php:184 +#: ../../include/account.php:245 #, 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" +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" -#: ../../include/enotify.php:186 +#: ../../include/account.php:313 #, 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" +msgid "Registration request at %s" +msgstr "Registratieverzoek op %s" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notificatie] %s heeft je genoemd" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Beheerder" -#: ../../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/account.php:337 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" -#: ../../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]." -msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." +msgid "Registration details for %s" +msgstr "Registratiedetails voor %s" -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notificatie] %1$s heeft je aangestoten" +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Account goedgekeurd" -#: ../../include/enotify.php:226 +#: ../../include/account.php:440 #, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s heeft je aangestoten op %3$s" +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" -#: ../../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/account.php:486 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notificatie] %s heeft jouw bericht gelabeld" +#: ../../include/account.php:647 ../../include/account.php:649 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." -#: ../../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/account.php:655 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." -#: ../../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/account.php:660 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notificatie] Connectieverzoek ontvangen" +#: ../../include/oembed.php:171 +msgid "Embedded content" +msgstr "Ingesloten inhoud" -#: ../../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/oembed.php:180 +msgid "Embedding disabled" +msgstr "Insluiten uitgeschakeld" -#: ../../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/zot.php:655 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" -#: ../../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/zot.php:671 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../include/enotify.php:265 +#: ../../include/zot.php:1757 #, 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 "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notificatie] Kanaalvoorstel ontvangen" +#: ../../include/network.php:590 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../include/enotify.php:273 +#: ../../include/dba/dba_driver.php:50 #, 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 "Cannot locate DNS info for database server '%s'" +msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" -#: ../../include/enotify.php:274 -#, php-format +#: ../../include/group.php:25 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:" +"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/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" +#: ../../include/group.php:234 +msgid "Default privacy group for new contacts" +msgstr "Standaard privacy-collectie voor nieuwe kanalen" -#: ../../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/group.php:253 ../../mod/admin.php:737 +msgid "All Channels" +msgstr "Alle kanalen" -#: ../../include/enotify.php:477 -msgid "[Red:Notify]" -msgstr "[Red:Notificatie]" +#: ../../include/group.php:275 +msgid "edit" +msgstr "bewerken" -#: ../../include/reddav.php:1145 ../../include/reddav.php:1288 -msgid "parent" -msgstr "omhoog" +#: ../../include/group.php:297 +msgid "Collections" +msgstr "Collecties" -#: ../../include/reddav.php:1169 -msgid "Collection" -msgstr "map" +#: ../../include/group.php:298 +msgid "Edit collection" +msgstr "Collectie bewerken" -#: ../../include/reddav.php:1172 -msgid "Principal" -msgstr "principal" +#: ../../include/group.php:299 +msgid "Create a new collection" +msgstr "Nieuwe collectie aanmaken" -#: ../../include/reddav.php:1175 -msgid "Addressbook" -msgstr "Adresboek" +#: ../../include/group.php:300 +msgid "Channels not in any collection" +msgstr "Kanalen die zich in geen enkele collectie bevinden" -#: ../../include/reddav.php:1178 -msgid "Calendar" -msgstr "Agenda" +#: ../../include/group.php:302 ../../include/widgets.php:273 +msgid "add" +msgstr "toevoegen" -#: ../../include/reddav.php:1181 -msgid "Schedule Inbox" -msgstr "Planning-postvak IN" +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "Item niet gevonden" -#: ../../include/reddav.php:1184 -msgid "Schedule Outbox" -msgstr "Planning-postvak UIT" +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "Geen bronbestand." + +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" + +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" -#: ../../include/reddav.php:1262 +#: ../../include/attach.php:377 #, php-format -msgid "%1$s used" -msgstr "%1$s gebruikt" +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" -#: ../../include/reddav.php:1267 +#: ../../include/attach.php:389 #, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s van %2$s gebruikt (%3$s%)" +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." -#: ../../include/reddav.php:1284 ../../mod/settings.php:521 -#: ../../mod/settings.php:547 ../../mod/admin.php:866 -msgid "Name" -msgstr "Naam" +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." -#: ../../include/reddav.php:1285 -msgid "Type" -msgstr "Type" +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." -#: ../../include/reddav.php:1286 -msgid "Size" -msgstr "Grootte" +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "Pad niet beschikbaar." -#: ../../include/reddav.php:1287 -msgid "Last Modified" -msgstr "Laatst gewijzigd" +#: ../../include/attach.php:589 +msgid "Empty pathname" +msgstr "Padnaam leeg" -#: ../../include/reddav.php:1291 -msgid "Total" -msgstr "Totaal" +#: ../../include/attach.php:605 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" -#: ../../include/reddav.php:1344 -msgid "Create new folder" -msgstr "Nieuwe map aanmaken" +#: ../../include/attach.php:629 +msgid "Path not found." +msgstr "Pad niet gevonden" -#: ../../include/reddav.php:1345 ../../mod/mitem.php:142 ../../mod/menu.php:84 -#: ../../mod/new_channel.php:122 -msgid "Create" -msgstr "Aanmaken" +#: ../../include/attach.php:680 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." -#: ../../include/reddav.php:1346 -msgid "Upload file" -msgstr "Bestand uploaden" +#: ../../include/attach.php:684 +msgid "database storage failed." +msgstr "opslag in database mislukt." -#: ../../include/reddav.php:1347 ../../mod/profile_photo.php:361 -msgid "Upload" -msgstr "Uploaden" +#: ../../include/ItemObject.php:89 ../../include/conversation.php:645 +#: ../../mod/photos.php:862 +msgid "Private Message" +msgstr "Privébericht" -#: ../../include/conversation.php:126 ../../mod/like.php:89 -msgid "channel" -msgstr "kanaal" +#: ../../include/ItemObject.php:126 ../../include/conversation.php:637 +msgid "Select" +msgstr "Kies" -#: ../../include/conversation.php:167 ../../mod/like.php:333 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In map opslaan" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s is nu met %2$s verbonden" +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +msgid "View all" +msgstr "Toon alles" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s heeft %2$s aangestoten" +#: ../../include/ItemObject.php:151 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" -#: ../../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/ItemObject.php:179 +msgid "Add Star" +msgstr "Ster toevoegen" -#: ../../include/conversation.php:647 ../../include/ItemObject.php:118 -msgid "Select" -msgstr "Kies" +#: ../../include/ItemObject.php:180 +msgid "Remove Star" +msgstr "Ster verwijderen" -#: ../../include/conversation.php:655 ../../include/ItemObject.php:89 -#: ../../mod/photos.php:880 -msgid "Private Message" -msgstr "Privébericht" +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" + +#: ../../include/ItemObject.php:185 +msgid "starred" +msgstr "met ster" + +#: ../../include/ItemObject.php:194 ../../include/conversation.php:652 +msgid "Message signature validated" +msgstr "Berichtkenmerk gevalideerd" + +#: ../../include/ItemObject.php:195 ../../include/conversation.php:653 +msgid "Message signature incorrect" +msgstr "Berichtkenmerk onjuist" + +#: ../../include/ItemObject.php:203 +msgid "Add Tag" +msgstr "Label toevoegen" -#: ../../include/conversation.php:662 ../../include/ItemObject.php:186 -msgid "Message is verified" -msgstr "Bericht is geverifieerd" +#: ../../include/ItemObject.php:221 ../../mod/photos.php:992 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: ../../include/ItemObject.php:222 ../../mod/photos.php:993 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: ../../include/ItemObject.php:226 +msgid "Share This" +msgstr "Delen" -#: ../../include/conversation.php:682 +#: ../../include/ItemObject.php:226 +msgid "share" +msgstr "delen" + +#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 #, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" -#: ../../include/conversation.php:696 -msgid "Categories:" -msgstr "Categorieën:" +#: ../../include/ItemObject.php:251 +msgid "to" +msgstr "aan" -#: ../../include/conversation.php:697 -msgid "Filed under:" -msgstr "Bewaard onder:" +#: ../../include/ItemObject.php:252 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:253 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" + +#: ../../include/ItemObject.php:254 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" -#: ../../include/conversation.php:706 ../../include/ItemObject.php:256 +#: ../../include/ItemObject.php:265 ../../include/conversation.php:698 #, php-format msgid " from %s" msgstr " van %s" -#: ../../include/conversation.php:709 ../../include/ItemObject.php:259 +#: ../../include/ItemObject.php:268 ../../include/conversation.php:701 #, php-format msgid "last edited: %s" msgstr "laatst bewerkt: %s" -#: ../../include/conversation.php:710 ../../include/ItemObject.php:260 +#: ../../include/ItemObject.php:269 ../../include/conversation.php:702 #, php-format msgid "Expires: %s" msgstr "Verloopt: %s" -#: ../../include/conversation.php:725 -msgid "View in context" -msgstr "In context bekijken" +#: ../../include/ItemObject.php:290 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" -#: ../../include/conversation.php:727 ../../include/conversation.php:1148 -#: ../../include/ItemObject.php:300 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/photos.php:1013 -#: ../../mod/mail.php:231 ../../mod/mail.php:346 -msgid "Please wait" -msgstr "Even wachten" +#: ../../include/ItemObject.php:291 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" -#: ../../include/conversation.php:854 -msgid "remove" -msgstr "verwijderen" +#: ../../include/ItemObject.php:299 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../include/conversation.php:858 -msgid "Loading..." -msgstr "Aan het laden..." +#: ../../include/ItemObject.php:300 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../include/conversation.php:859 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" +#: ../../include/ItemObject.php:305 ../../include/acl_selectors.php:249 +msgid "Close" +msgstr "Sluiten" -#: ../../include/conversation.php:954 -msgid "View Source" -msgstr "Bron weergeven" +#: ../../include/ItemObject.php:310 ../../include/conversation.php:719 +#: ../../include/conversation.php:1153 ../../mod/photos.php:995 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 +#: ../../mod/mail.php:234 ../../mod/mail.php:349 ../../mod/editblock.php:120 +#: ../../mod/editlayout.php:115 +msgid "Please wait" +msgstr "Even wachten" -#: ../../include/conversation.php:955 -msgid "Follow Thread" -msgstr "Conversatie volgen" +#: ../../include/ItemObject.php:331 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" -#: ../../include/conversation.php:956 -msgid "View Status" -msgstr "Status weergeven" +#: ../../include/ItemObject.php:596 ../../mod/photos.php:1011 +#: ../../mod/photos.php:1098 +msgid "This is you" +msgstr "Dit ben jij" -#: ../../include/conversation.php:958 -msgid "View Photos" -msgstr "Foto's weergeven" +#: ../../include/ItemObject.php:600 +msgid "Bold" +msgstr "Vet" -#: ../../include/conversation.php:959 -msgid "Matrix Activity" -msgstr "Activiteit in de RedMatrix" +#: ../../include/ItemObject.php:601 +msgid "Italic" +msgstr "Cursief" -#: ../../include/conversation.php:960 ../../include/identity.php:783 -#: ../../include/widgets.php:135 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../mod/directory.php:183 -#: ../../mod/dirprofile.php:164 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 -msgid "Connect" -msgstr "Verbinden" +#: ../../include/ItemObject.php:602 +msgid "Underline" +msgstr "Onderstrepen" -#: ../../include/conversation.php:961 -msgid "Edit Contact" -msgstr "Contact bewerken" +#: ../../include/ItemObject.php:603 +msgid "Quote" +msgstr "Citeren" -#: ../../include/conversation.php:962 -msgid "Send PM" -msgstr "Privébericht verzenden" +#: ../../include/ItemObject.php:604 +msgid "Code" +msgstr "Broncode" -#: ../../include/conversation.php:1019 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." +#: ../../include/ItemObject.php:605 +msgid "Image" +msgstr "Afbeelding" -#: ../../include/conversation.php:1019 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." +#: ../../include/ItemObject.php:606 +msgid "Link" +msgstr "Link" -#: ../../include/conversation.php:1023 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d persoon vindt dit leuk." -msgstr[1] "%2$d personen vinden dit leuk." +#: ../../include/ItemObject.php:607 +msgid "Video" +msgstr "Video" -#: ../../include/conversation.php:1025 -#, 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/ItemObject.php:611 ../../include/conversation.php:1179 +#: ../../mod/editpost.php:148 ../../mod/mail.php:240 ../../mod/mail.php:354 +msgid "Encrypt text" +msgstr "Tekst versleutelen" -#: ../../include/conversation.php:1031 -msgid "and" -msgstr "en" +#: ../../include/security.php:320 +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/conversation.php:1034 -#, 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/text.php:321 +msgid "prev" +msgstr "vorige" -#: ../../include/conversation.php:1035 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." +#: ../../include/text.php:323 +msgid "first" +msgstr "eerste" -#: ../../include/conversation.php:1035 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." +#: ../../include/text.php:352 +msgid "last" +msgstr "laatste" -#: ../../include/conversation.php:1092 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../include/text.php:355 +msgid "next" +msgstr "volgende" -#: ../../include/conversation.php:1093 ../../mod/mail.php:167 -#: ../../mod/mail.php:279 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: ../../include/conversation.php:1094 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" +#: ../../include/text.php:367 +msgid "older" +msgstr "ouder" -#: ../../include/conversation.php:1095 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" +#: ../../include/text.php:369 +msgid "newer" +msgstr "nieuwer" -#: ../../include/conversation.php:1096 -msgid "Tag term:" -msgstr "Label:" +#: ../../include/text.php:736 +msgid "No connections" +msgstr "Geen connecties" -#: ../../include/conversation.php:1097 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Bewaar in map: " +#: ../../include/text.php:749 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d connectie" +msgstr[1] "%d connecties" -#: ../../include/conversation.php:1098 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" +#: ../../include/text.php:762 +msgid "View Connections" +msgstr "Connecties weergeven" -#: ../../include/conversation.php:1099 ../../mod/editpost.php:52 -#: ../../mod/mail.php:168 ../../mod/mail.php:280 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" +#: ../../include/text.php:822 ../../include/text.php:834 +#: ../../include/nav.php:173 ../../include/apps.php:145 +#: ../../mod/search.php:30 +msgid "Search" +msgstr "Zoeken" -#: ../../include/conversation.php:1123 ../../mod/photos.php:1012 -#: ../../mod/layouts.php:122 -msgid "Share" -msgstr "Delen" +#: ../../include/text.php:823 ../../include/text.php:835 +#: ../../include/widgets.php:193 ../../mod/admin.php:1341 +#: ../../mod/admin.php:1362 ../../mod/filer.php:50 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "Opslaan" -#: ../../include/conversation.php:1125 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "Titel van paginalink" +#: ../../include/text.php:901 +msgid "poke" +msgstr "aanstoten" -#: ../../include/conversation.php:1128 -msgid "Post as" -msgstr "Bericht plaatsen als" +#: ../../include/text.php:901 ../../include/conversation.php:243 +msgid "poked" +msgstr "aangestoten" -#: ../../include/conversation.php:1129 ../../mod/editblock.php:112 -#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:228 ../../mod/mail.php:342 -msgid "Upload photo" -msgstr "Foto uploaden" +#: ../../include/text.php:902 +msgid "ping" +msgstr "ping" -#: ../../include/conversation.php:1130 -msgid "upload photo" -msgstr "foto uploaden" +#: ../../include/text.php:902 +msgid "pinged" +msgstr "gepingd" -#: ../../include/conversation.php:1131 ../../mod/editblock.php:113 -#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:229 ../../mod/mail.php:343 -msgid "Attach file" -msgstr "Bestand toevoegen" +#: ../../include/text.php:903 +msgid "prod" +msgstr "por" -#: ../../include/conversation.php:1132 -msgid "attach file" -msgstr "bestand toevoegen" +#: ../../include/text.php:903 +msgid "prodded" +msgstr "gepord" -#: ../../include/conversation.php:1133 ../../mod/editblock.php:114 -#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:230 ../../mod/mail.php:344 -msgid "Insert web link" -msgstr "Weblink invoegen" +#: ../../include/text.php:904 +msgid "slap" +msgstr "slaan" -#: ../../include/conversation.php:1134 -msgid "web link" -msgstr "Weblink" +#: ../../include/text.php:904 +msgid "slapped" +msgstr "sloeg" -#: ../../include/conversation.php:1135 -msgid "Insert video link" -msgstr "Videolink invoegen" +#: ../../include/text.php:905 +msgid "finger" +msgstr "finger" -#: ../../include/conversation.php:1136 -msgid "video link" -msgstr "videolink" +#: ../../include/text.php:905 +msgid "fingered" +msgstr "gefingerd" -#: ../../include/conversation.php:1137 -msgid "Insert audio link" -msgstr "Audiolink invoegen" +#: ../../include/text.php:906 +msgid "rebuff" +msgstr "afpoeieren" -#: ../../include/conversation.php:1138 -msgid "audio link" -msgstr "audiolink" +#: ../../include/text.php:906 +msgid "rebuffed" +msgstr "afgepoeierd" -#: ../../include/conversation.php:1139 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" -msgstr "Locatie instellen" +#: ../../include/text.php:915 +msgid "happy" +msgstr "gelukkig" -#: ../../include/conversation.php:1140 -msgid "set location" -msgstr "locatie instellen" +#: ../../include/text.php:916 +msgid "sad" +msgstr "bedroefd" -#: ../../include/conversation.php:1141 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" -msgstr "Locatie van webbrowser wissen" +#: ../../include/text.php:917 +msgid "mellow" +msgstr "mellow" -#: ../../include/conversation.php:1142 -msgid "clear location" -msgstr "locatie wissen" +#: ../../include/text.php:918 +msgid "tired" +msgstr "moe" -#: ../../include/conversation.php:1144 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 -msgid "Set title" -msgstr "Titel instellen" +#: ../../include/text.php:919 +msgid "perky" +msgstr "parmantig" -#: ../../include/conversation.php:1147 ../../mod/editblock.php:135 -#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 ../../mod/events.php:560 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" +#: ../../include/text.php:920 +msgid "angry" +msgstr "boos" -#: ../../include/conversation.php:1149 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" -msgstr "Permissies" +#: ../../include/text.php:921 +msgid "stupified" +msgstr "beteuterd" -#: ../../include/conversation.php:1150 -msgid "permissions" -msgstr "permissies" +#: ../../include/text.php:922 +msgid "puzzled" +msgstr "verward" -#: ../../include/conversation.php:1157 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 -msgid "Public post" -msgstr "Openbaar bericht" +#: ../../include/text.php:923 +msgid "interested" +msgstr "geïnteresseerd" -#: ../../include/conversation.php:1159 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" +#: ../../include/text.php:924 +msgid "bitter" +msgstr "verbitterd" -#: ../../include/conversation.php:1172 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:179 ../../mod/mail.php:235 ../../mod/mail.php:349 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" +#: ../../include/text.php:925 +msgid "cheerful" +msgstr "vrolijk" -#: ../../include/conversation.php:1174 ../../include/ItemObject.php:601 -#: ../../mod/editpost.php:148 ../../mod/mail.php:237 ../../mod/mail.php:351 -msgid "Encrypt text" -msgstr "Tekst versleutelen" +#: ../../include/text.php:926 +msgid "alive" +msgstr "levendig" -#: ../../include/conversation.php:1176 ../../mod/editpost.php:150 -#: ../../mod/events.php:567 -msgid "OK" -msgstr "OK" +#: ../../include/text.php:927 +msgid "annoyed" +msgstr "geërgerd" -#: ../../include/conversation.php:1177 ../../mod/settings.php:520 -#: ../../mod/settings.php:546 ../../mod/editpost.php:151 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 -#: ../../mod/events.php:566 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -msgid "Cancel" -msgstr "Annuleren" +#: ../../include/text.php:928 +msgid "anxious" +msgstr "bezorgd" -#: ../../include/conversation.php:1419 -msgid "Discover" -msgstr "Ontdekken" +#: ../../include/text.php:929 +msgid "cranky" +msgstr "humeurig" -#: ../../include/conversation.php:1422 -msgid "Imported public streams" -msgstr "Openbare streams importeren" +#: ../../include/text.php:930 +msgid "disturbed" +msgstr "verontrust" -#: ../../include/conversation.php:1427 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" +#: ../../include/text.php:931 +msgid "frustrated" +msgstr "gefrustreerd " -#: ../../include/conversation.php:1430 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" +#: ../../include/text.php:932 +msgid "depressed" +msgstr "gedeprimeerd" -#: ../../include/conversation.php:1434 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" +#: ../../include/text.php:933 +msgid "motivated" +msgstr "gemotiveerd" -#: ../../include/conversation.php:1437 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" +#: ../../include/text.php:934 +msgid "relaxed" +msgstr "ontspannen" -#: ../../include/conversation.php:1442 ../../include/widgets.php:89 -msgid "Personal" -msgstr "Persoonlijk" +#: ../../include/text.php:935 +msgid "surprised" +msgstr "verrast" -#: ../../include/conversation.php:1445 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" +#: ../../include/text.php:1099 +msgid "Monday" +msgstr "maandag" -#: ../../include/conversation.php:1451 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 -msgid "New" -msgstr "Nieuw" +#: ../../include/text.php:1099 +msgid "Tuesday" +msgstr "dinsdag" -#: ../../include/conversation.php:1454 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" +#: ../../include/text.php:1099 +msgid "Wednesday" +msgstr "woensdag" -#: ../../include/conversation.php:1460 -msgid "Starred" -msgstr "Met ster" +#: ../../include/text.php:1099 +msgid "Thursday" +msgstr "donderdag" -#: ../../include/conversation.php:1463 -msgid "Favourite Posts" -msgstr "Favoriete berichten" +#: ../../include/text.php:1099 +msgid "Friday" +msgstr "vrijdag" -#: ../../include/conversation.php:1470 -msgid "Spam" -msgstr "Spam" +#: ../../include/text.php:1099 +msgid "Saturday" +msgstr "zaterdag" -#: ../../include/conversation.php:1473 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" +#: ../../include/text.php:1099 +msgid "Sunday" +msgstr "zondag" -#: ../../include/conversation.php:1509 ../../mod/admin.php:865 -msgid "Channel" -msgstr "Kanaal" +#: ../../include/text.php:1103 +msgid "January" +msgstr "januari" -#: ../../include/conversation.php:1512 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" +#: ../../include/text.php:1103 +msgid "February" +msgstr "februari" -#: ../../include/conversation.php:1521 -msgid "About" -msgstr "Over" +#: ../../include/text.php:1103 +msgid "March" +msgstr "maart" -#: ../../include/conversation.php:1524 -msgid "Profile Details" -msgstr "Profiel" +#: ../../include/text.php:1103 +msgid "April" +msgstr "april" -#: ../../include/conversation.php:1542 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" +#: ../../include/text.php:1103 +msgid "May" +msgstr "mei" -#: ../../include/conversation.php:1551 ../../include/conversation.php:1554 -msgid "Chatrooms" -msgstr "Chatkanalen" - -#: ../../include/conversation.php:1564 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" +#: ../../include/text.php:1103 +msgid "June" +msgstr "juni" -#: ../../include/conversation.php:1575 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" +#: ../../include/text.php:1103 +msgid "July" +msgstr "juli" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Algemene functies" +#: ../../include/text.php:1103 +msgid "August" +msgstr "augustus" -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "Inhoud laten verlopen" +#: ../../include/text.php:1103 +msgid "September" +msgstr "september" -#: ../../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/text.php:1103 +msgid "October" +msgstr "oktober" -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" +#: ../../include/text.php:1103 +msgid "November" +msgstr "november" -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" +#: ../../include/text.php:1103 +msgid "December" +msgstr "december" -#: ../../include/features.php:27 -msgid "Advanced Profiles" -msgstr "Geavanceerde profielen" +#: ../../include/text.php:1181 +msgid "unknown.???" +msgstr "onbekend.???" -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" -msgstr "Extra onderdelen en keuzes voor je profiel" +#: ../../include/text.php:1182 +msgid "bytes" +msgstr "bytes" -#: ../../include/features.php:28 -msgid "Profile Import/Export" -msgstr "Profiel importen/exporteren" +#: ../../include/text.php:1221 +msgid "remove category" +msgstr "categorie verwijderen" -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" -msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." +#: ../../include/text.php:1291 +msgid "remove from file" +msgstr "uit map verwijderen" -#: ../../include/features.php:29 -msgid "Web Pages" -msgstr "Webpagina's" +#: ../../include/text.php:1356 ../../include/text.php:1368 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" -#: ../../include/features.php:29 -msgid "Provide managed web pages on your channel" -msgstr "Sta beheerde webpagina's op jouw kanaal toe" +#: ../../include/text.php:1523 ../../mod/events.php:414 +msgid "Link to Source" +msgstr "Originele locatie" -#: ../../include/features.php:30 -msgid "Private Notes" -msgstr "Privé-aantekeningen" +#: ../../include/text.php:1542 +msgid "Select a page layout: " +msgstr "Kies een paginalay-out: " -#: ../../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/text.php:1545 ../../include/text.php:1610 +msgid "default" +msgstr "standaard" -#: ../../include/features.php:34 -msgid "Navigation Channel Select" -msgstr "Kanaal kiezen in navigatiemenu" +#: ../../include/text.php:1581 +msgid "Page content type: " +msgstr "Opmaakcode pagina" -#: ../../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/text.php:1622 +msgid "Select an alternate language" +msgstr "Kies een andere taal" -#: ../../include/features.php:38 -msgid "Extended Identity Sharing" -msgstr "Uitgebreid identiteit delen" +#: ../../include/text.php:1743 ../../include/conversation.php:120 +#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:294 +msgid "photo" +msgstr "foto" -#: ../../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/text.php:1746 ../../include/conversation.php:123 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "gebeurtenis" -#: ../../include/features.php:39 -msgid "Expert Mode" -msgstr "Expertmodus" +#: ../../include/text.php:1749 ../../include/conversation.php:148 +#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:294 +msgid "status" +msgstr "bericht" -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Schakel de expertmodus in voor geavanceerde instellingen" +#: ../../include/text.php:1751 ../../include/conversation.php:150 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "reactie" -#: ../../include/features.php:40 -msgid "Premium Channel" -msgstr "Premiumkanaal" +#: ../../include/text.php:1756 +msgid "activity" +msgstr "activiteit" -#: ../../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/text.php:2028 +msgid "Design" +msgstr "Ontwerp" -#: ../../include/features.php:45 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" +#: ../../include/text.php:2030 +msgid "Blocks" +msgstr "Blokken" -#: ../../include/features.php:47 -msgid "Use Markdown" -msgstr "Markdown gebruiken" +#: ../../include/text.php:2031 +msgid "Menus" +msgstr "Menu's" -#: ../../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/text.php:2032 +msgid "Layouts" +msgstr "Lay-outs" -#: ../../include/features.php:48 -msgid "Post Preview" -msgstr "Voorvertoning" +#: ../../include/text.php:2033 +msgid "Pages" +msgstr "Pagina's" -#: ../../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/dir_fns.php:56 +msgid "Sort Options" +msgstr "Sorteeropties" -#: ../../include/features.php:49 ../../include/widgets.php:510 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanaalbronnen" +#: ../../include/dir_fns.php:57 +msgid "Alphabetic" +msgstr "Alfabetisch" -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" -#: ../../include/features.php:50 -msgid "Even More Encryption" -msgstr "Extra encryptie" +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" -#: ../../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/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "Veilig zoeken inschakelen" -#: ../../include/features.php:55 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "Veilig zoeken uitschakelen" -#: ../../include/features.php:56 -msgid "Search by Date" -msgstr "Zoek op datum" +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" +msgstr "Veilig zoeken" -#: ../../include/features.php:56 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " +#: ../../include/bbcode.php:112 ../../include/bbcode.php:653 +#: ../../include/bbcode.php:656 ../../include/bbcode.php:661 +#: ../../include/bbcode.php:664 ../../include/bbcode.php:667 +#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 +#: ../../include/bbcode.php:678 ../../include/bbcode.php:683 +#: ../../include/bbcode.php:686 ../../include/bbcode.php:689 +#: ../../include/bbcode.php:692 +msgid "Image/photo" +msgstr "Afbeelding/foto" -#: ../../include/features.php:57 -msgid "Collections Filter" -msgstr "Filter op collecties" +#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" -#: ../../include/features.php:57 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "Installeer ontwerp-onderdeel" -#: ../../include/features.php:58 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "QR-code" -#: ../../include/features.php:58 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" +#: ../../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/features.php:59 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" +#: ../../include/bbcode.php:222 +msgid "post" +msgstr "bericht" -#: ../../include/features.php:59 -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/bbcode.php:621 +msgid "$1 spoiler" +msgstr "$1 spoiler" -#: ../../include/features.php:60 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" +#: ../../include/bbcode.php:641 +msgid "$1 wrote:" +msgstr "$1 schreef:" -#: ../../include/features.php:60 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "RedMatrix-notificatie" -#: ../../include/features.php:61 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "RedMatrix" -#: ../../include/features.php:61 -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/enotify.php:44 +msgid "Thank You," +msgstr "Bedankt," -#: ../../include/features.php:62 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "Beheerder %s" -#: ../../include/features.php:62 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../include/features.php:67 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Notificatie] Nieuw privébericht ontvangen op %s" -#: ../../include/features.php:69 -msgid "Edit Sent Posts" -msgstr "Bewerk verzonden berichten" +#: ../../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/features.php:69 -msgid "Edit and correct posts and comments after sending" -msgstr "Bewerk en corrigeer berichten en reacties nadat deze zijn verzonden" +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s zond jou %2$s." -#: ../../include/features.php:70 -msgid "Tagging" -msgstr "Labelen" +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "een privébericht" -#: ../../include/features.php:70 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te labelen" +#: ../../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/features.php:71 -msgid "Post Categories" -msgstr "Categorieën berichten" +#: ../../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/features.php:71 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" +#: ../../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/features.php:72 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" +#: ../../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/features.php:73 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" +#: ../../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/features.php:73 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" +#: ../../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/features.php:74 -msgid "Star Posts" -msgstr "Geef berichten een ster" +#: ../../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/features.php:74 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mogelijkheid om speciale berichten met een ster te markeren" +#: ../../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/features.php:75 -msgid "Tag Cloud" -msgstr "Wolk met trefwoorden/labels" +#: ../../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/features.php:75 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Zorgt voor een persoonlijke wolk met trefwoorden of labels op jouw kanaalpagina" +#: ../../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/follow.php:23 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Notificatie] %s heeft je genoemd" -#: ../../include/follow.php:28 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." +#: ../../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/follow.php:77 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." +#: ../../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/follow.php:94 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Notificatie] %1$s heeft je aangestoten" -#: ../../include/follow.php:130 ../../include/follow.php:199 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../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/follow.php:173 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../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/follow.php:189 -msgid "local account not found." -msgstr "lokale account niet gevonden." +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Notificatie] %s heeft jouw bericht gelabeld" -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" +#: ../../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/chat.php:10 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" +#: ../../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/chat.php:19 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Notificatie] Connectieverzoek ontvangen" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" +#: ../../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/chat.php:105 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" +#: ../../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/chat.php:126 -msgid "Room is full" -msgstr "Chatkanaal is vol" +#: ../../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/items.php:375 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:242 -#: ../../index.php:360 -msgid "Permission denied" -msgstr "Toegang geweigerd" +#: ../../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/items.php:940 ../../include/items.php:985 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Notificatie] Kanaalvoorstel ontvangen" -#: ../../include/items.php:1139 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../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/items.php:1141 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../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/items.php:1143 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "Naam:" -#: ../../include/items.php:1145 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "Foto:" -#: ../../include/items.php:1147 +#: ../../include/enotify.php:284 #, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." -#: ../../include/items.php:1149 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../include/enotify.php:477 +msgid "[Red:Notify]" +msgstr "[Red:Notificatie]" -#: ../../include/items.php:1151 -msgid "Visible to approved connections." -msgstr "Voor alle goedgekeurde connecties zichtbaar." +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" -#: ../../include/items.php:1153 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" +msgstr "Beëindig deze sessie" -#: ../../include/items.php:3888 ../../mod/display.php:32 -#: ../../mod/filestorage.php:18 ../../mod/admin.php:168 -#: ../../mod/admin.php:896 ../../mod/admin.php:1099 ../../mod/thing.php:78 -#: ../../mod/viewsrc.php:18 -msgid "Item not found." -msgstr "Item niet gevonden." +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" +msgstr "Home" -#: ../../include/items.php:4321 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Collectie niet gevonden." +#: ../../include/nav.php:98 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" -#: ../../include/items.php:4336 -msgid "Collection is empty." -msgstr "Collectie is leeg" +#: ../../include/nav.php:99 ../../include/conversation.php:945 +#: ../../mod/connedit.php:415 ../../mod/connedit.php:529 +msgid "View Profile" +msgstr "Profiel weergeven" -#: ../../include/items.php:4343 -#, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" +#: ../../include/nav.php:99 +msgid "Your profile page" +msgstr "Jouw profielpagina" -#: ../../include/items.php:4354 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" +#: ../../include/nav.php:101 +msgid "Edit Profiles" +msgstr "Bewerk profielen" -#: ../../include/items.php:4357 -msgid "Connection not found." -msgstr "Connectie niet gevonden." +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" -#: ../../include/group.php:25 -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/nav.php:103 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" -#: ../../include/group.php:234 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy-collectie voor nieuwe kanalen" +#: ../../include/nav.php:105 ../../include/apps.php:137 +#: ../../include/conversation.php:1537 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto's" -#: ../../include/group.php:253 ../../mod/admin.php:735 -msgid "All Channels" -msgstr "Alle kanalen" +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "Jouw foto's" -#: ../../include/group.php:275 -msgid "edit" -msgstr "bewerken" +#: ../../include/nav.php:106 +msgid "Your files" +msgstr "Jouw bestanden" -#: ../../include/group.php:297 -msgid "Collections" -msgstr "Collecties" +#: ../../include/nav.php:111 ../../include/apps.php:144 +msgid "Chat" +msgstr "Chatten" -#: ../../include/group.php:298 -msgid "Edit collection" -msgstr "Collectie bewerken" +#: ../../include/nav.php:111 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" -#: ../../include/group.php:299 -msgid "Create a new collection" -msgstr "Nieuwe collectie aanmaken" +#: ../../include/nav.php:117 ../../include/apps.php:127 +#: ../../include/conversation.php:1570 +msgid "Bookmarks" +msgstr "Bladwijzers" -#: ../../include/group.php:300 -msgid "Channels not in any collection" -msgstr "Kanalen die zich in geen enkele collectie bevinden" +#: ../../include/nav.php:117 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" -#: ../../include/group.php:302 ../../include/widgets.php:273 -msgid "add" -msgstr "toevoegen" +#: ../../include/nav.php:121 ../../include/apps.php:134 +#: ../../include/conversation.php:1581 ../../mod/webpages.php:129 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../include/identity.php:30 ../../mod/item.php:1310 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "Jouw webpagina's" -#: ../../include/identity.php:63 -msgid "Empty name" -msgstr "Ontbrekende naam" +#: ../../include/nav.php:125 +msgid "Sign in" +msgstr "Inloggen" -#: ../../include/identity.php:65 -msgid "Name too long" -msgstr "Naam te lang" +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" -#: ../../include/identity.php:166 -msgid "No account identifier" -msgstr "Geen account-identificator" +#: ../../include/nav.php:145 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" -#: ../../include/identity.php:176 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" -#: ../../include/identity.php:190 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." +#: ../../include/nav.php:159 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/identity.php:195 -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:163 +msgid "Create an account" +msgstr "Maak een account aan" -#: ../../include/identity.php:276 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" +#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:60 +#: ../../mod/help.php:65 +msgid "Help" +msgstr "Hulp" -#: ../../include/identity.php:335 -msgid "Default Profile" -msgstr "Standaardprofiel" +#: ../../include/nav.php:168 +msgid "Help and documentation" +msgstr "Hulp en documentatie" -#: ../../include/identity.php:374 ../../include/identity.php:375 -#: ../../include/identity.php:382 ../../include/widgets.php:407 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:495 -msgid "Friends" -msgstr "Vrienden" +#: ../../include/nav.php:171 ../../include/widgets.php:86 +#: ../../mod/apps.php:33 +msgid "Apps" +msgstr "Apps" -#: ../../include/identity.php:586 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" +msgstr "Apps" -#: ../../include/identity.php:634 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8 -#: ../../mod/webpages.php:8 ../../mod/hcard.php:8 -msgid "Requested profile is not available." -msgstr "Opgevraagd profiel is niet beschikbaar" +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "Inhoud van deze RedMatrix-hub doorzoeken" -#: ../../include/identity.php:797 ../../mod/profiles.php:750 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" +#: ../../include/nav.php:176 ../../include/apps.php:139 +#: ../../mod/directory.php:226 +msgid "Directory" +msgstr "Gids" -#: ../../include/identity.php:803 -msgid "Profiles" -msgstr "Profielen" +#: ../../include/nav.php:176 +msgid "Channel Locator" +msgstr "Kanalengids" -#: ../../include/identity.php:803 -msgid "Manage/edit profiles" -msgstr "Profielen beheren/bewerken" +#: ../../include/nav.php:190 ../../include/apps.php:131 +msgid "Matrix" +msgstr "Matrix" -#: ../../include/identity.php:804 ../../mod/profiles.php:751 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" +#: ../../include/nav.php:190 +msgid "Your matrix" +msgstr "Jouw matrix" -#: ../../include/identity.php:818 ../../mod/profiles.php:762 -msgid "Profile Image" -msgstr "Profielfoto" +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" +msgstr "Markeer alle matrixnotificaties als bekeken" -#: ../../include/identity.php:821 -msgid "visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../include/nav.php:193 ../../include/apps.php:135 +msgid "Channel Home" +msgstr "Tijdlijn kanaal" -#: ../../include/identity.php:822 ../../mod/profiles.php:645 -#: ../../mod/profiles.php:766 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" +#: ../../include/nav.php:193 +msgid "Channel home" +msgstr "Tijdlijn kanaal" -#: ../../include/identity.php:836 ../../include/identity.php:1073 -#: ../../mod/directory.php:158 -msgid "Gender:" -msgstr "Geslacht:" +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" -#: ../../include/identity.php:837 ../../include/identity.php:1117 -#: ../../mod/directory.php:160 -msgid "Status:" -msgstr "Status:" +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" +msgstr "Connecties" -#: ../../include/identity.php:838 ../../include/identity.php:1128 -#: ../../mod/directory.php:162 -msgid "Homepage:" -msgstr "Homepagina:" +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "Notificaties" -#: ../../include/identity.php:839 ../../mod/dirprofile.php:151 -msgid "Online Now" -msgstr "Nu online" +#: ../../include/nav.php:200 +msgid "Notifications" +msgstr "Notificaties" -#: ../../include/identity.php:917 ../../include/identity.php:997 -#: ../../mod/ping.php:298 -msgid "g A l F d" -msgstr "G:i, l d F" +#: ../../include/nav.php:201 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../include/identity.php:918 ../../include/identity.php:998 -msgid "F d" -msgstr "d F" +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../include/identity.php:963 ../../include/identity.php:1038 -#: ../../mod/ping.php:320 -msgid "[today]" -msgstr "[vandaag]" +#: ../../include/nav.php:204 ../../include/apps.php:141 +msgid "Mail" +msgstr "Privéberichten" -#: ../../include/identity.php:975 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" +#: ../../include/nav.php:204 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../include/identity.php:976 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" +#: ../../include/nav.php:205 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../include/identity.php:1031 -msgid "[No description]" -msgstr "[Geen omschrijving]" +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../include/identity.php:1049 -msgid "Event Reminders" -msgstr "Herinneringen voor gebeurtenissen" +#: ../../include/nav.php:207 +msgid "Inbox" +msgstr "Postvak IN" -#: ../../include/identity.php:1050 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" +#: ../../include/nav.php:208 +msgid "Outbox" +msgstr "Postvak UIT" -#: ../../include/identity.php:1071 ../../mod/settings.php:953 -msgid "Full Name:" -msgstr "Volledige naam:" +#: ../../include/nav.php:209 ../../include/widgets.php:545 +msgid "New Message" +msgstr "Nieuw bericht" -#: ../../include/identity.php:1078 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" +#: ../../include/nav.php:212 ../../include/apps.php:138 +#: ../../mod/events.php:436 +msgid "Events" +msgstr "Agenda" -#: ../../include/identity.php:1102 -msgid "j F, Y" -msgstr "F j Y" +#: ../../include/nav.php:212 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../include/identity.php:1103 -msgid "j F" -msgstr "F j" +#: ../../include/nav.php:213 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../include/identity.php:1110 -msgid "Birthday:" -msgstr "Geboortedatum:" +#: ../../include/nav.php:214 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../include/identity.php:1114 -msgid "Age:" -msgstr "Leeftijd:" +#: ../../include/nav.php:216 ../../include/apps.php:130 +#: ../../mod/manage.php:148 +msgid "Channel Manager" +msgstr "Kanaalbeheer" -#: ../../include/identity.php:1123 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" +#: ../../include/nav.php:216 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../include/identity.php:1126 ../../mod/profiles.php:667 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" +#: ../../include/nav.php:218 ../../include/apps.php:132 +#: ../../include/widgets.php:521 ../../mod/admin.php:953 +#: ../../mod/admin.php:1158 +msgid "Settings" +msgstr "Instellingen" -#: ../../include/identity.php:1130 ../../mod/profiles.php:669 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../include/identity.php:1132 -msgid "Tags:" -msgstr "Trefwoorden:" +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Beheer" -#: ../../include/identity.php:1134 ../../mod/profiles.php:670 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../include/identity.php:1136 -msgid "Religion:" -msgstr "Religie:" +#: ../../include/nav.php:257 ../../include/conversation.php:847 +msgid "Loading..." +msgstr "Aan het laden..." -#: ../../include/identity.php:1138 ../../mod/directory.php:164 -msgid "About:" -msgstr "Over:" +#: ../../include/nav.php:262 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../include/identity.php:1140 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Algemene functies" -#: ../../include/identity.php:1142 ../../mod/profiles.php:673 -msgid "Likes:" -msgstr "Houdt van:" +#: ../../include/features.php:25 +msgid "Content Expiration" +msgstr "Inhoud laten verlopen" -#: ../../include/identity.php:1144 ../../mod/profiles.php:674 -msgid "Dislikes:" -msgstr "Houdt niet van:" +#: ../../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/identity.php:1147 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" +#: ../../include/features.php:26 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" -#: ../../include/identity.php:1149 -msgid "My other channels:" -msgstr "Mijn andere kanalen" +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" -#: ../../include/identity.php:1151 -msgid "Musical interests:" -msgstr "Muzikale interesses:" +#: ../../include/features.php:27 +msgid "Advanced Profiles" +msgstr "Geavanceerde profielen" -#: ../../include/identity.php:1153 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" +#: ../../include/features.php:27 +msgid "Additional profile sections and selections" +msgstr "Extra onderdelen en keuzes voor je profiel" -#: ../../include/identity.php:1155 -msgid "Television:" -msgstr "Televisie:" +#: ../../include/features.php:28 +msgid "Profile Import/Export" +msgstr "Profiel importen/exporteren" -#: ../../include/identity.php:1157 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" +#: ../../include/features.php:28 +msgid "Save and load profile details across sites/channels" +msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." -#: ../../include/identity.php:1159 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" +#: ../../include/features.php:29 +msgid "Web Pages" +msgstr "Webpagina's" -#: ../../include/identity.php:1161 -msgid "Work/employment:" -msgstr "Werk/beroep:" +#: ../../include/features.php:29 +msgid "Provide managed web pages on your channel" +msgstr "Sta beheerde webpagina's op jouw kanaal toe" -#: ../../include/identity.php:1163 -msgid "School/education:" -msgstr "School/opleiding:" +#: ../../include/features.php:30 +msgid "Private Notes" +msgstr "Privé-aantekeningen" -#: ../../include/identity.php:1183 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +#: ../../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/bbcode.php:112 ../../include/bbcode.php:645 -#: ../../include/bbcode.php:648 ../../include/bbcode.php:653 -#: ../../include/bbcode.php:656 ../../include/bbcode.php:659 -#: ../../include/bbcode.php:662 ../../include/bbcode.php:667 -#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 -#: ../../include/bbcode.php:678 ../../include/bbcode.php:681 -#: ../../include/bbcode.php:684 -msgid "Image/photo" -msgstr "Afbeelding/foto" +#: ../../include/features.php:34 +msgid "Navigation Channel Select" +msgstr "Kanaal kiezen in navigatiemenu" -#: ../../include/bbcode.php:147 ../../include/bbcode.php:695 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" +#: ../../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/bbcode.php:163 -msgid "QR code" -msgstr "QR-code" +#: ../../include/features.php:38 +msgid "Extended Identity Sharing" +msgstr "Uitgebreid identiteit delen" -#: ../../include/bbcode.php:212 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" +#: ../../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/bbcode.php:214 -msgid "post" -msgstr "bericht" +#: ../../include/features.php:39 +msgid "Expert Mode" +msgstr "Expertmodus" -#: ../../include/bbcode.php:613 ../../include/bbcode.php:633 -msgid "$1 wrote:" -msgstr "$1 schreef:" +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Schakel de expertmodus in voor geavanceerde instellingen" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." +#: ../../include/features.php:40 +msgid "Premium Channel" +msgstr "Premiumkanaal" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[geen onderwerp]" +#: ../../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/message.php:42 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." +#: ../../include/features.php:45 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" -#: ../../include/message.php:143 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." +#: ../../include/features.php:47 +msgid "Use Markdown" +msgstr "Markdown gebruiken" -#: ../../include/widgets.php:87 -msgid "System" -msgstr "Systeem" +#: ../../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/widgets.php:90 -msgid "Create Personal App" -msgstr "Persoonlijke app maken" +#: ../../include/features.php:48 +msgid "Post Preview" +msgstr "Voorvertoning" -#: ../../include/widgets.php:91 -msgid "Edit Personal App" -msgstr "Persoonlijke app bewerken" +#: ../../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/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" +#: ../../include/features.php:49 ../../include/widgets.php:510 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanaalbronnen" -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../include/features.php:49 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Meer..." +#: ../../include/features.php:50 +msgid "Even More Encryption" +msgstr "Extra encryptie" -#: ../../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: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/widgets.php:172 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" +#: ../../include/features.php:55 +msgid "Network and Stream Filtering" +msgstr "Netwerk- en streamfilter" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Vul het adres van het nieuwe kanaal in" +#: ../../include/features.php:56 +msgid "Search by Date" +msgstr "Zoek op datum" -#: ../../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:56 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/widgets.php:191 -msgid "Notes" -msgstr "Aantekeningen" +#: ../../include/features.php:57 +msgid "Collections Filter" +msgstr "Filter op collecties" -#: ../../include/widgets.php:263 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: ../../include/features.php:57 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" -#: ../../include/widgets.php:342 -msgid "Archives" -msgstr "Archieven" +#: ../../include/features.php:58 ../../include/widgets.php:272 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" -#: ../../include/widgets.php:404 -msgid "Refresh" -msgstr "Vernieuwen" +#: ../../include/features.php:58 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/widgets.php:405 ../../mod/connedit.php:492 -msgid "Me" -msgstr "Ik" +#: ../../include/features.php:59 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" -#: ../../include/widgets.php:406 ../../mod/connedit.php:494 -msgid "Best Friends" -msgstr "Goede vrienden" +#: ../../include/features.php:59 +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/widgets.php:408 -msgid "Co-workers" -msgstr "Collega's" +#: ../../include/features.php:60 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" -#: ../../include/widgets.php:409 ../../mod/connedit.php:496 -msgid "Former Friends" -msgstr "Oude vrienden" +#: ../../include/features.php:60 +msgid "Enable tab to display all new Network activity" +msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/widgets.php:410 ../../mod/connedit.php:497 -msgid "Acquaintances" -msgstr "Kennissen" +#: ../../include/features.php:61 +msgid "Affinity Tool" +msgstr "Verwantschapsfilter" -#: ../../include/widgets.php:411 -msgid "Everybody" -msgstr "Iedereen" +#: ../../include/features.php:61 +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/widgets.php:443 -msgid "Account settings" -msgstr "Account" +#: ../../include/features.php:62 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" -#: ../../include/widgets.php:449 -msgid "Channel settings" -msgstr "Kanaal" +#: ../../include/features.php:62 +msgid "Show channel suggestions" +msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/widgets.php:455 -msgid "Additional features" -msgstr "Extra functies" +#: ../../include/features.php:67 +msgid "Post/Comment Tools" +msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/widgets.php:461 -msgid "Feature settings" -msgstr "Plug-ins" +#: ../../include/features.php:69 +msgid "Edit Sent Posts" +msgstr "Bewerk verzonden berichten" -#: ../../include/widgets.php:467 -msgid "Display settings" -msgstr "Weergave" +#: ../../include/features.php:69 +msgid "Edit and correct posts and comments after sending" +msgstr "Bewerk en corrigeer berichten en reacties nadat deze zijn verzonden" -#: ../../include/widgets.php:473 -msgid "Connected apps" -msgstr "Verbonden applicaties" +#: ../../include/features.php:70 +msgid "Tagging" +msgstr "Labelen" -#: ../../include/widgets.php:479 -msgid "Export channel" -msgstr "Kanaal exporteren" +#: ../../include/features.php:70 +msgid "Ability to tag existing posts" +msgstr "Mogelijkheid om bestaande berichten te labelen" -#: ../../include/widgets.php:485 -msgid "Export content" -msgstr "Inhoud exporteren" +#: ../../include/features.php:71 +msgid "Post Categories" +msgstr "Categorieën berichten" -#: ../../include/widgets.php:491 -msgid "Automatic Permissions (Advanced)" -msgstr "Automatische permissies (geavanceerd)" +#: ../../include/features.php:71 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/widgets.php:501 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" +#: ../../include/features.php:72 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/widgets.php:538 -msgid "Check Mail" -msgstr "Controleer op nieuwe berichten" +#: ../../include/features.php:73 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" -#: ../../include/widgets.php:619 -msgid "Chat Rooms" -msgstr "Chatkanalen" +#: ../../include/features.php:73 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/widgets.php:637 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" +#: ../../include/features.php:74 +msgid "Star Posts" +msgstr "Geef berichten een ster" -#: ../../include/widgets.php:655 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" +#: ../../include/features.php:74 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/ItemObject.php:122 -msgid "Save to Folder" -msgstr "In map opslaan" +#: ../../include/features.php:75 +msgid "Tag Cloud" +msgstr "Wolk met trefwoorden/labels" -#: ../../include/ItemObject.php:134 ../../include/ItemObject.php:146 -msgid "View all" -msgstr "Toon alles" +#: ../../include/features.php:75 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Zorgt voor een persoonlijke wolk met trefwoorden of labels op jouw kanaalpagina" -#: ../../include/ItemObject.php:143 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "maakte een nieuw bericht aan" -#: ../../include/ItemObject.php:171 -msgid "Add Star" -msgstr "Ster toevoegen" +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "gaf een reactie op een bericht van %s" -#: ../../include/ItemObject.php:172 -msgid "Remove Star" -msgstr "Ster verwijderen" +#: ../../include/apps.php:126 +msgid "Site Admin" +msgstr "Hubbeheerder" -#: ../../include/ItemObject.php:173 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" +#: ../../include/apps.php:128 +msgid "Address Book" +msgstr "Connecties" -#: ../../include/ItemObject.php:177 -msgid "starred" -msgstr "met ster" +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Stemming" -#: ../../include/ItemObject.php:194 -msgid "Add Tag" -msgstr "Label toevoegen" +#: ../../include/apps.php:143 ../../include/conversation.php:951 +msgid "Poke" +msgstr "Aanstoten" -#: ../../include/ItemObject.php:212 ../../mod/photos.php:1010 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" +#: ../../include/apps.php:146 +msgid "Probe" +msgstr "Onderzoeken" -#: ../../include/ItemObject.php:213 ../../mod/photos.php:1011 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" +#: ../../include/apps.php:147 +msgid "Suggest" +msgstr "Voorstellen" -#: ../../include/ItemObject.php:217 -msgid "Share This" -msgstr "Delen" +#: ../../include/apps.php:148 +msgid "Random Channel" +msgstr "Willekeurig kanaal" -#: ../../include/ItemObject.php:217 -msgid "share" -msgstr "delen" +#: ../../include/apps.php:149 +msgid "Invite" +msgstr "Uitnodigen " -#: ../../include/ItemObject.php:240 ../../include/ItemObject.php:241 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" +#: ../../include/apps.php:150 +msgid "Features" +msgstr "Extra functies" -#: ../../include/ItemObject.php:242 -msgid "to" -msgstr "aan" +#: ../../include/apps.php:151 +msgid "Language" +msgstr "Taal" -#: ../../include/ItemObject.php:243 -msgid "via" -msgstr "via" +#: ../../include/apps.php:152 +msgid "Post" +msgstr "Bericht" -#: ../../include/ItemObject.php:244 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" +#: ../../include/apps.php:153 +msgid "Profile Photo" +msgstr "Profielfoto" -#: ../../include/ItemObject.php:245 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" +#: ../../include/apps.php:242 ../../mod/settings.php:79 +#: ../../mod/settings.php:545 +msgid "Update" +msgstr "Bijwerken" -#: ../../include/ItemObject.php:280 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" +#: ../../include/apps.php:242 +msgid "Install" +msgstr "Installeren" -#: ../../include/ItemObject.php:281 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" +#: ../../include/apps.php:247 +msgid "Purchase" +msgstr "Aanschaffen" -#: ../../include/ItemObject.php:289 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" +#: ../../include/api.php:1072 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" -#: ../../include/ItemObject.php:290 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" -#: ../../include/ItemObject.php:321 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" -#: ../../include/ItemObject.php:322 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] alle" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" -#: ../../include/ItemObject.php:586 ../../mod/photos.php:1029 -#: ../../mod/photos.php:1116 -msgid "This is you" -msgstr "Dit ben jij" +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" -#: ../../include/ItemObject.php:588 ../../include/js_strings.php:6 -#: ../../mod/photos.php:1031 ../../mod/photos.php:1118 -msgid "Comment" -msgstr "Reactie" +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Chatkanaal is vol" -#: ../../include/ItemObject.php:589 ../../mod/mood.php:135 -#: ../../mod/settings.php:519 ../../mod/settings.php:631 -#: ../../mod/settings.php:660 ../../mod/settings.php:684 -#: ../../mod/settings.php:760 ../../mod/settings.php:945 -#: ../../mod/poke.php:166 ../../mod/profiles.php:643 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:540 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/photos.php:563 ../../mod/photos.php:674 ../../mod/photos.php:992 -#: ../../mod/photos.php:1032 ../../mod/photos.php:1119 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/events.php:586 ../../mod/filestorage.php:137 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:414 -#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:992 -#: ../../mod/admin.php:1191 ../../mod/admin.php:1278 ../../mod/thing.php:286 -#: ../../mod/thing.php:329 ../../mod/import.php:422 ../../mod/invite.php:142 -#: ../../mod/mail.php:345 ../../mod/appman.php:99 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Opslaan" +#: ../../include/conversation.php:126 ../../mod/like.php:89 +msgid "channel" +msgstr "kanaal" -#: ../../include/ItemObject.php:590 -msgid "Bold" -msgstr "Vet" +#: ../../include/conversation.php:164 ../../include/diaspora.php:1953 +#: ../../mod/like.php:331 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../include/ItemObject.php:591 -msgid "Italic" -msgstr "Cursief" +#: ../../include/conversation.php:167 ../../mod/like.php:333 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" -#: ../../include/ItemObject.php:592 -msgid "Underline" -msgstr "Onderstrepen" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s is nu met %2$s verbonden" -#: ../../include/ItemObject.php:593 -msgid "Quote" -msgstr "Citeren" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/ItemObject.php:594 -msgid "Code" -msgstr "Broncode" +#: ../../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/ItemObject.php:595 -msgid "Image" -msgstr "Afbeelding" +#: ../../include/conversation.php:674 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/ItemObject.php:596 -msgid "Link" -msgstr "Link" +#: ../../include/conversation.php:689 +msgid "Categories:" +msgstr "Categorieën:" -#: ../../include/ItemObject.php:597 -msgid "Video" -msgstr "Video" +#: ../../include/conversation.php:690 +msgid "Filed under:" +msgstr "Bewaard onder:" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" +#: ../../include/conversation.php:717 +msgid "View in context" +msgstr "In context bekijken" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] minder reacties weergeven" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] uitklappen" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] inklappen" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Wachtwoord te kort" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "iedereen" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Geheim wachtwoord" +#: ../../include/conversation.php:843 +msgid "remove" +msgstr "verwijderen" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Wachtwoordhint" +#: ../../include/conversation.php:848 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" -#: ../../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:942 +msgid "View Source" +msgstr "Bron weergeven" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alles sluiten" +#: ../../include/conversation.php:943 +msgid "Follow Thread" +msgstr "Conversatie volgen" -#: ../../include/js_strings.php:19 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/conversation.php:944 +msgid "View Status" +msgstr "Status weergeven" -#: ../../include/js_strings.php:20 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/conversation.php:946 +msgid "View Photos" +msgstr "Foto's weergeven" -#: ../../include/js_strings.php:21 -msgid "ago" -msgstr "geleden" +#: ../../include/conversation.php:947 +msgid "Matrix Activity" +msgstr "Activiteit in de RedMatrix" -#: ../../include/js_strings.php:22 -msgid "from now" -msgstr "vanaf nu" +#: ../../include/conversation.php:949 +msgid "Edit Contact" +msgstr "Contact bewerken" -#: ../../include/js_strings.php:23 -msgid "less than a minute" -msgstr "minder dan een minuut" +#: ../../include/conversation.php:950 +msgid "Send PM" +msgstr "Privébericht verzenden" -#: ../../include/js_strings.php:24 -msgid "about a minute" -msgstr "ongeveer een minuut" +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." -#: ../../include/js_strings.php:25 +#: ../../include/conversation.php:1024 #, php-format -msgid "%d minutes" -msgstr "%d minuten" +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." -#: ../../include/js_strings.php:26 -msgid "about an hour" -msgstr "ongeveer een uur" +#: ../../include/conversation.php:1028 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d persoon vindt dit leuk." +msgstr[1] "%2$d personen vinden dit leuk." -#: ../../include/js_strings.php:27 +#: ../../include/conversation.php:1030 #, php-format -msgid "about %d hours" -msgstr "ongeveer %d uren" +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/js_strings.php:28 -msgid "a day" -msgstr "een dag" +#: ../../include/conversation.php:1036 +msgid "and" +msgstr "en" -#: ../../include/js_strings.php:29 +#: ../../include/conversation.php:1039 #, php-format -msgid "%d days" -msgstr "%d dagen" +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", en %d ander persoon" +msgstr[1] ", en %d andere personen" -#: ../../include/js_strings.php:30 -msgid "about a month" -msgstr "ongeveer een maand" +#: ../../include/conversation.php:1040 +#, php-format +msgid "%s like this." +msgstr "%s vinden dit leuk." -#: ../../include/js_strings.php:31 +#: ../../include/conversation.php:1040 #, php-format -msgid "%d months" -msgstr "%d maanden" +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." -#: ../../include/js_strings.php:32 -msgid "about a year" -msgstr "ongeveer een jaar" +#: ../../include/conversation.php:1097 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d years" -msgstr "%d jaren" +#: ../../include/conversation.php:1098 ../../mod/mail.php:170 +#: ../../mod/mail.php:282 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" -#: ../../include/js_strings.php:34 -msgid " " -msgstr " " +#: ../../include/conversation.php:1099 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" -#: ../../include/js_strings.php:35 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/conversation.php:1100 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nieuw venster" +#: ../../include/conversation.php:1101 +msgid "Tag term:" +msgstr "Label:" -#: ../../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:1102 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Bewaar in map: " -#: ../../include/Contact.php:211 ../../mod/admin.php:649 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" +#: ../../include/conversation.php:1103 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" -msgstr "Man" +#: ../../include/conversation.php:1104 ../../mod/editpost.php:52 +#: ../../mod/mail.php:171 ../../mod/mail.php:283 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" -msgstr "Vrouw" +#: ../../include/conversation.php:1128 ../../mod/photos.php:994 +#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 +#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 +msgid "Share" +msgstr "Delen" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momenteel man" +#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:139 +msgid "Page link title" +msgstr "Titel van paginalink" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momenteel vrouw" +#: ../../include/conversation.php:1133 +msgid "Post as" +msgstr "Bericht plaatsen als" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Voornamelijk man" +#: ../../include/conversation.php:1134 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:231 ../../mod/mail.php:345 +#: ../../mod/editblock.php:112 ../../mod/editlayout.php:107 +msgid "Upload photo" +msgstr "Foto uploaden" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Voornamelijk vrouw" +#: ../../include/conversation.php:1135 +msgid "upload photo" +msgstr "foto uploaden" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" +#: ../../include/conversation.php:1136 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:232 ../../mod/mail.php:346 +#: ../../mod/editblock.php:113 ../../mod/editlayout.php:108 +msgid "Attach file" +msgstr "Bestand toevoegen" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Interseksueel" +#: ../../include/conversation.php:1137 +msgid "attach file" +msgstr "bestand toevoegen" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksueel" +#: ../../include/conversation.php:1138 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:233 ../../mod/mail.php:347 +#: ../../mod/editblock.php:114 ../../mod/editlayout.php:109 +msgid "Insert web link" +msgstr "Weblink invoegen" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" +#: ../../include/conversation.php:1139 +msgid "web link" +msgstr "Weblink" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Genderneutraal" +#: ../../include/conversation.php:1140 +msgid "Insert video link" +msgstr "Videolink invoegen" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Niet gespecificeerd" +#: ../../include/conversation.php:1141 +msgid "video link" +msgstr "videolink" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:741 -msgid "Other" -msgstr "Anders" +#: ../../include/conversation.php:1142 +msgid "Insert audio link" +msgstr "Audiolink invoegen" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Nog niet beslist" +#: ../../include/conversation.php:1143 +msgid "audio link" +msgstr "audiolink" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Mannen" +#: ../../include/conversation.php:1144 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:118 +#: ../../mod/editlayout.php:113 +msgid "Set your location" +msgstr "Locatie instellen" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Vrouwen" +#: ../../include/conversation.php:1145 +msgid "set location" +msgstr "locatie instellen" -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Homoseksueel" +#: ../../include/conversation.php:1146 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:151 ../../mod/editblock.php:119 +#: ../../mod/editlayout.php:114 +msgid "Clear browser location" +msgstr "Locatie van webbrowser wissen" -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/conversation.php:1147 +msgid "clear location" +msgstr "locatie wissen" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Geen voorkeur" +#: ../../include/conversation.php:1149 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:167 ../../mod/editblock.php:132 +#: ../../mod/editlayout.php:126 +msgid "Set title" +msgstr "Titel instellen" -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Biseksueel" +#: ../../include/conversation.php:1152 ../../mod/editpost.php:134 +#: ../../mod/editwebpage.php:169 ../../mod/events.php:560 +#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autoseksueel" +#: ../../include/conversation.php:1154 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:121 +#: ../../mod/editlayout.php:116 +msgid "Permission settings" +msgstr "Permissies" -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Seksuele onthouding" +#: ../../include/conversation.php:1155 +msgid "permissions" +msgstr "permissies" -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Maagd" +#: ../../include/conversation.php:1162 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:162 ../../mod/editblock.php:129 +#: ../../mod/editlayout.php:123 +msgid "Public post" +msgstr "Openbaar bericht" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Afwijkend" +#: ../../include/conversation.php:1164 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:170 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:130 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisj" +#: ../../include/conversation.php:1177 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:179 ../../mod/mail.php:238 ../../mod/mail.php:352 +#: ../../mod/editblock.php:146 ../../mod/editlayout.php:140 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Veel" +#: ../../include/conversation.php:1181 ../../mod/editpost.php:150 +#: ../../mod/events.php:567 +msgid "OK" +msgstr "OK" -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Aseksueel" +#: ../../include/conversation.php:1182 ../../mod/settings.php:520 +#: ../../mod/settings.php:546 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:151 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/events.php:566 +msgid "Cancel" +msgstr "Annuleren" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Alleen" +#: ../../include/conversation.php:1426 +msgid "Discover" +msgstr "Ontdekken" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Eenzaam" +#: ../../include/conversation.php:1429 +msgid "Imported public streams" +msgstr "Openbare streams importeren" -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Beschikbaar" +#: ../../include/conversation.php:1434 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Niet beschikbaar" +#: ../../include/conversation.php:1437 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Heeft een oogje op iemand" +#: ../../include/conversation.php:1441 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Smoorverliefd" +#: ../../include/conversation.php:1444 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Aan het daten" +#: ../../include/conversation.php:1449 ../../include/widgets.php:89 +msgid "Personal" +msgstr "Persoonlijk" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Ontrouw" +#: ../../include/conversation.php:1452 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Seksverslaafd" +#: ../../include/conversation.php:1458 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" +msgstr "Nieuw" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" +#: ../../include/conversation.php:1461 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Ongebonden/vluchtig" +#: ../../include/conversation.php:1467 +msgid "Starred" +msgstr "Met ster" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Verloofd" +#: ../../include/conversation.php:1470 +msgid "Favourite Posts" +msgstr "Favoriete berichten" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Getrouwd" +#: ../../include/conversation.php:1477 +msgid "Spam" +msgstr "Spam" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" +#: ../../include/conversation.php:1480 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partners" +#: ../../include/conversation.php:1516 ../../mod/admin.php:867 +msgid "Channel" +msgstr "Kanaal" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Samenwonend" +#: ../../include/conversation.php:1519 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Common-law-huwelijk" +#: ../../include/conversation.php:1528 +msgid "About" +msgstr "Over" -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Gelukkig" +#: ../../include/conversation.php:1531 +msgid "Profile Details" +msgstr "Profiel" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Niet op zoek" +#: ../../include/conversation.php:1549 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" +#: ../../include/conversation.php:1558 ../../include/conversation.php:1561 +msgid "Chatrooms" +msgstr "Chatkanalen" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Verraden" +#: ../../include/conversation.php:1573 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Uit elkaar" +#: ../../include/conversation.php:1584 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Onstabiel" +#: ../../include/bb2diaspora.php:360 +msgid "Attachments:" +msgstr "Bijlagen:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Gescheiden" +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Tonen" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Niet tonen" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Onzeker" +#: ../../include/acl_selectors.php:248 ../../mod/filestorage.php:137 +#: ../../mod/photos.php:604 ../../mod/photos.php:970 ../../mod/chat.php:209 +#: ../../mod/events.php:585 +msgid "Permissions" +msgstr "Permissies" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Het is ingewikkeld" +#: ../../include/widgets.php:87 +msgid "System" +msgstr "Systeem" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Maakt mij niks uit" +#: ../../include/widgets.php:90 +msgid "Create Personal App" +msgstr "Persoonlijke app maken" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Vraag het me" +#: ../../include/widgets.php:91 +msgid "Edit Personal App" +msgstr "Persoonlijke app bewerken" -#: ../../include/auth.php:103 -msgid "Logged out." -msgstr "Uitgelogd." +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" -#: ../../include/auth.php:249 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../include/auth.php:264 ../../mod/openid.php:188 -msgid "Login failed." -msgstr "Inloggen mislukt." +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Meer..." -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../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/permissions.php:14 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" -msgstr "Kan mijn fotoalbums bekijken" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Vul het adres van het nieuwe kanaal in" -#: ../../include/permissions.php:16 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" -#: ../../include/permissions.php:17 -msgid "Can view my file storage" -msgstr "Kan mijn bestanden bekijken" +#: ../../include/widgets.php:191 +msgid "Notes" +msgstr "Aantekeningen" -#: ../../include/permissions.php:18 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../include/widgets.php:263 +msgid "Remove term" +msgstr "Verwijder zoekterm" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" +#: ../../include/widgets.php:342 +msgid "Archives" +msgstr "Archieven" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../include/widgets.php:404 +msgid "Refresh" +msgstr "Vernieuwen" -#: ../../include/permissions.php:23 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" +#: ../../include/widgets.php:405 ../../mod/connedit.php:492 +msgid "Me" +msgstr "Ik" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" +#: ../../include/widgets.php:406 ../../mod/connedit.php:494 +msgid "Best Friends" +msgstr "Goede vrienden" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Kan foto's aan mijn fotoalbums toevoegen" +#: ../../include/widgets.php:408 +msgid "Co-workers" +msgstr "Collega's" -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../include/widgets.php:409 ../../mod/connedit.php:496 +msgid "Former Friends" +msgstr "Oude vrienden" -#: ../../include/permissions.php:26 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" +#: ../../include/widgets.php:410 ../../mod/connedit.php:497 +msgid "Acquaintances" +msgstr "Kennissen" -#: ../../include/permissions.php:28 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" +#: ../../include/widgets.php:411 +msgid "Everybody" +msgstr "Iedereen" -#: ../../include/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor kanalen met een groep- cq. forumfunctie" +#: ../../include/widgets.php:443 +msgid "Account settings" +msgstr "Account" -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" +#: ../../include/widgets.php:449 +msgid "Channel settings" +msgstr "Kanaal" -#: ../../include/permissions.php:30 -msgid "Can write to my file storage" -msgstr "Kan bestanden aan mijn bestandsopslag toevoegen" +#: ../../include/widgets.php:455 +msgid "Additional features" +msgstr "Extra functies" -#: ../../include/permissions.php:31 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" +#: ../../include/widgets.php:461 +msgid "Feature settings" +msgstr "Plug-ins" -#: ../../include/permissions.php:33 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" +#: ../../include/widgets.php:467 +msgid "Display settings" +msgstr "Weergave" -#: ../../include/permissions.php:33 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" +#: ../../include/widgets.php:473 +msgid "Connected apps" +msgstr "Verbonden applicaties" -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" +#: ../../include/widgets.php:479 +msgid "Export channel" +msgstr "Kanaal exporteren" -#: ../../include/permissions.php:35 -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/widgets.php:485 +msgid "Export content" +msgstr "Inhoud exporteren" -#: ../../include/permissions.php:733 -msgid "Social Networking" -msgstr "Sociaal netwerk" +#: ../../include/widgets.php:491 +msgid "Automatic Permissions (Advanced)" +msgstr "Automatische permissies (geavanceerd)" -#: ../../include/permissions.php:734 ../../include/permissions.php:736 -#: ../../include/permissions.php:738 ../../include/permissions.php:740 -msgid "Mostly Public" -msgstr "Vrijwel alles openbaar" +#: ../../include/widgets.php:501 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" -#: ../../include/permissions.php:734 ../../include/permissions.php:736 -#: ../../include/permissions.php:738 -msgid "Restricted" -msgstr "Beperkt zichtbaar" +#: ../../include/widgets.php:535 ../../mod/message.php:31 +#: ../../mod/mail.php:124 +msgid "Messages" +msgstr "Berichten" -#: ../../include/permissions.php:734 ../../include/permissions.php:736 -msgid "Private" -msgstr "Verborgen kanaal" +#: ../../include/widgets.php:540 +msgid "Check Mail" +msgstr "Controleer op nieuwe berichten" -#: ../../include/permissions.php:735 -msgid "Community Forum" -msgstr "Groepsforum" +#: ../../include/widgets.php:621 +msgid "Chat Rooms" +msgstr "Chatkanalen" -#: ../../include/permissions.php:737 -msgid "Feed Republish" -msgstr "Feed herpubliceren" +#: ../../include/widgets.php:639 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" -#: ../../include/permissions.php:739 -msgid "Celebrity/Soapbox" -msgstr "Beroemdheid/alleen volgen" +#: ../../include/widgets.php:657 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" -#: ../../include/permissions.php:742 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" +#: ../../include/follow.php:26 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." -#: ../../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/follow.php:31 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." -msgstr "Menu niet gevonden." +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." -#: ../../mod/mitem.php:47 -msgid "Menu element updated." -msgstr "Menu-onderdeel geüpdatet." +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." +#: ../../include/follow.php:133 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." -#: ../../mod/mitem.php:57 -msgid "Menu element added." -msgstr "Menu-onderdeel toegevoegd" +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "lokale account niet gevonden." -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:38 -msgid "Not found." -msgstr "Niet gevonden." +#: ../../include/follow.php:219 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" -msgstr "Menu-onderdelen beheren" +#: ../../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/mitem.php:99 -msgid "Edit menu" -msgstr "Menu bewerken" +#: ../../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/mitem.php:102 -msgid "Edit element" -msgstr "Onderdeel bewerken" +#: ../../mod/settings.php:71 +msgid "Name is required" +msgstr "Naam is vereist" -#: ../../mod/mitem.php:103 -msgid "Drop element" -msgstr "Onderdeel verwijderen" +#: ../../mod/settings.php:75 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" -#: ../../mod/mitem.php:104 -msgid "New element" -msgstr "Nieuw element" +#: ../../mod/settings.php:198 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" +#: ../../mod/settings.php:202 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../mod/mitem.php:106 -msgid "Add menu element" -msgstr "Menu-element toevoegen" +#: ../../mod/settings.php:216 +msgid "Password changed." +msgstr "Wachtwoord veranderd." -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" +#: ../../mod/settings.php:218 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" +#: ../../mod/settings.php:232 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." -#: ../../mod/mitem.php:131 -msgid "New Menu Element" -msgstr "Nieuw menu-element" +#: ../../mod/settings.php:235 +msgid "Protected email address. Cannot change to that email." +msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" +#: ../../mod/settings.php:244 +msgid "System failure storing new email. Please try again." +msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:980 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" +#: ../../mod/settings.php:447 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" -msgstr "Linktekst" - -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" -msgstr "URL of link" - -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" -msgstr "Gebruik Reds magische authenticatie wanneer aanwezig" - -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" -msgstr "Volgorde in lijst" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" - -#: ../../mod/mitem.php:154 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." - -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." - -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." - -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" - -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" -msgstr "Wijzigen" - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)." - -#: ../../mod/ping.php:237 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" - -#: ../../mod/ping.php:288 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" - -#: ../../mod/ping.php:329 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" - -#: ../../mod/acl.php:244 -msgid "network" -msgstr "netwerk" - -#: ../../mod/settings.php:71 -msgid "Name is required" -msgstr "Naam is vereist" - -#: ../../mod/settings.php:75 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" - -#: ../../mod/settings.php:198 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." - -#: ../../mod/settings.php:202 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." - -#: ../../mod/settings.php:216 -msgid "Password changed." -msgstr "Wachtwoord veranderd." - -#: ../../mod/settings.php:218 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." - -#: ../../mod/settings.php:232 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." - -#: ../../mod/settings.php:235 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." - -#: ../../mod/settings.php:244 -msgid "System failure storing new email. Please try again." -msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." - -#: ../../mod/settings.php:447 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." - -#: ../../mod/settings.php:518 ../../mod/settings.php:544 -#: ../../mod/settings.php:580 -msgid "Add application" -msgstr "Applicatie toevoegen" +#: ../../mod/settings.php:518 ../../mod/settings.php:544 +#: ../../mod/settings.php:580 +msgid "Add application" +msgstr "Applicatie toevoegen" #: ../../mod/settings.php:521 msgid "Name of application" @@ -4002,14 +4071,14 @@ msgid "Publish your default profile in the network directory" msgstr "Publiceer je standaardprofiel in de kanalengids" #: ../../mod/settings.php:891 ../../mod/settings.php:896 -#: ../../mod/settings.php:973 ../../mod/api.php:106 ../../mod/profiles.php:602 -#: ../../mod/admin.php:392 +#: ../../mod/settings.php:973 ../../mod/admin.php:392 +#: ../../mod/profiles.php:602 ../../mod/api.php:106 msgid "No" msgstr "Nee" #: ../../mod/settings.php:891 ../../mod/settings.php:896 -#: ../../mod/settings.php:973 ../../mod/api.php:105 ../../mod/profiles.php:601 -#: ../../mod/admin.php:394 +#: ../../mod/settings.php:973 ../../mod/admin.php:394 +#: ../../mod/profiles.php:601 ../../mod/api.php:105 msgid "Yes" msgstr "Ja" @@ -4131,6 +4200,10 @@ msgstr "Kan eventuele spam verminderen" msgid "Default Post Permissions" msgstr "Standaard permissies voor nieuwe berichten" +#: ../../mod/settings.php:980 ../../mod/mitem.php:134 ../../mod/mitem.php:177 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + #: ../../mod/settings.php:991 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" @@ -4221,771 +4294,793 @@ msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" msgid "Remove this channel" msgstr "Verwijder dit kanaal" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" +#: ../../mod/filestorage.php:76 +msgid "Permission Denied." +msgstr "Toegang geweigerd" -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Ontvanger" +#: ../../mod/filestorage.php:92 +msgid "File not found." +msgstr "Bestand niet gevonden." -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" +#: ../../mod/filestorage.php:131 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Maak dit bericht privé" +#: ../../mod/filestorage.php:140 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../mod/filestorage.php:141 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" -#: ../../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/filestorage.php:142 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../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/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/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/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/home.php:46 +msgid "Red Matrix - "The Network"" +msgstr "RedMatrix - "The Network"" -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:178 +#: ../../mod/home.php:101 #, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Welkom %s. Authenticatie op afstand geslaagd." - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Item is niet aanwezig." +msgid "Welcome to %s" +msgstr "Welkom op %s" #: ../../mod/probe.php:23 ../../mod/probe.php:29 #, php-format msgid "Fetching URL returns error: %1$s" msgstr "Ophalen URL gaf een foutmelding terug: %1$s" -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." -msgstr "Ongeldig item." +#: ../../mod/update_network.php:23 ../../mod/update_display.php:25 +#: ../../mod/update_search.php:46 ../../mod/update_channel.php:43 +msgid "[Embedded content - reload page to view]" +msgstr "[Ingesloten inhoud - ververs pagina om te bekijken] " -#: ../../mod/block.php:39 ../../mod/page.php:47 ../../mod/wall_upload.php:28 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Kanaal toevoegen" -#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:102 -#: ../../mod/help.php:72 ../../index.php:236 -msgid "Page not found." -msgstr "Pagina niet gevonden." +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat." -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " +#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Kanaalnaam" -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." -msgstr "Afbeelding kon niet van grootte veranderd worden." +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\"" -#: ../../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/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Kies een korte bijnaam" -#: ../../mod/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" +#: ../../mod/new_channel.php:115 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Jouw bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) aan te maken, die je dan kan delen met anderen." -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." -msgstr "Niet in staat om afbeelding te verwerken." +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie." -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." -msgstr "Foto niet beschikbaar." +#: ../../mod/new_channel.php:118 +msgid "Channel Type" +msgstr "Kanaaltype" -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" -msgstr "Bestand uploaden:" +#: ../../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/profile_photo.php:359 -msgid "Select a profile:" -msgstr "Kies een profiel:" +#: ../../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/profile_photo.php:360 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Het foutbericht was:" -#: ../../mod/profile_photo.php:365 -msgid "skip this step" -msgstr "sla deze stap over" +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit jouw fotoalbums" +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" -#: ../../mod/profile_photo.php:379 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" -#: ../../mod/profile_photo.php:380 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Authenticeren" -#: ../../mod/profile_photo.php:382 -msgid "Done Editing" -msgstr "Klaar met bewerken" +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Thema-instellingen bijgewerkt." -#: ../../mod/profile_photo.php:425 -msgid "Image uploaded successfully." -msgstr "Uploaden afbeelding geslaagd" +#: ../../mod/admin.php:97 ../../mod/admin.php:413 +msgid "Site" +msgstr "Hub-instellingen" -#: ../../mod/profile_photo.php:427 -msgid "Image upload failed." -msgstr "Uploaden afbeelding mislukt" +#: ../../mod/admin.php:98 +msgid "Accounts" +msgstr "Accounts" -#: ../../mod/profile_photo.php:436 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinen [%s] van afbeelding mislukt." +#: ../../mod/admin.php:99 ../../mod/admin.php:860 +msgid "Channels" +msgstr "Kanalen" -#: ../../mod/blocks.php:62 -msgid "Block Name" -msgstr "Bloknaam" +#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 +msgid "Plugins" +msgstr "Plug-ins" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:575 -msgid "Profile not found." -msgstr "Profiel niet gevonden." +#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 +msgid "Themes" +msgstr "Thema's" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profiel verwijderd." +#: ../../mod/admin.php:102 ../../mod/admin.php:515 +msgid "Server" +msgstr "Hubbeheer" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profiel-" +#: ../../mod/admin.php:103 +msgid "Profile Config" +msgstr "Profielconfiguratie" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." +#: ../../mod/admin.php:104 +msgid "DB updates" +msgstr "Database-updates" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 +msgid "Logs" +msgstr "Logboeken" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" +#: ../../mod/admin.php:124 +msgid "Plugin Features" +msgstr "Plug-in-opties" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" +#: ../../mod/admin.php:126 +msgid "User registrations waiting for confirmation" +msgstr "Accountregistraties die op goedkeuring wachten" -#: ../../mod/profiles.php:390 -msgid "Marital Status" -msgstr "Huwelijke status" +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Berichtenwachtrij" -#: ../../mod/profiles.php:394 -msgid "Romantic Partner" -msgstr "Romantische partner" +#: ../../mod/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 +#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:950 +#: ../../mod/admin.php:992 ../../mod/admin.php:1155 ../../mod/admin.php:1191 +#: ../../mod/admin.php:1278 +msgid "Administration" +msgstr "Beheer" -#: ../../mod/profiles.php:398 -msgid "Likes" -msgstr "Houdt van" +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Samenvatting" -#: ../../mod/profiles.php:402 -msgid "Dislikes" -msgstr "Houdt niet van" +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Geregistreerde gebruikers" -#: ../../mod/profiles.php:406 -msgid "Work/Employment" -msgstr "Werk/arbeid" +#: ../../mod/admin.php:216 ../../mod/admin.php:518 +msgid "Pending registrations" +msgstr "Accounts die op goedkeuring wachten" -#: ../../mod/profiles.php:409 -msgid "Religion" -msgstr "Religie" +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Versie" -#: ../../mod/profiles.php:413 -msgid "Political Views" -msgstr "Politieke overtuigingen" +#: ../../mod/admin.php:219 ../../mod/admin.php:519 +msgid "Active plugins" +msgstr "Ingeschakelde plug-ins" -#: ../../mod/profiles.php:417 -msgid "Gender" -msgstr "Geslacht" +#: ../../mod/admin.php:333 +msgid "Site settings updated." +msgstr "Hub-instellingen bijgewerkt." -#: ../../mod/profiles.php:421 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" +#: ../../mod/admin.php:364 +msgid "No special theme for accessibility" +msgstr "Geen speciaal thema voor universele toegang" -#: ../../mod/profiles.php:425 -msgid "Homepage" -msgstr "Homepage" +#: ../../mod/admin.php:393 +msgid "Yes - with approval" +msgstr "Ja - met goedkeuring" -#: ../../mod/profiles.php:429 -msgid "Interests" -msgstr "Interesses" +#: ../../mod/admin.php:399 +msgid "My site is not a public server" +msgstr "Mijn RedMatrix-hub is niet openbaar" -#: ../../mod/profiles.php:433 ../../mod/admin.php:866 -msgid "Address" -msgstr "Kanaaladres" +#: ../../mod/admin.php:400 +msgid "My site has paid access only" +msgstr "Mijn RedMatrix-hub kent alleen betaalde toegang" -#: ../../mod/profiles.php:440 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Locatie" +#: ../../mod/admin.php:401 +msgid "My site has free access only" +msgstr "Mijn RedMatrix-hub kent alleen gratis toegang" -#: ../../mod/profiles.php:523 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" +#: ../../mod/admin.php:402 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" -#: ../../mod/profiles.php:600 -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/admin.php:415 ../../mod/register.php:203 +msgid "Registration" +msgstr "Registratie" -#: ../../mod/profiles.php:642 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" +#: ../../mod/admin.php:416 +msgid "File upload" +msgstr "Bestand uploaden" -#: ../../mod/profiles.php:644 -msgid "View this profile" -msgstr "Profiel weergeven" +#: ../../mod/admin.php:417 +msgid "Policies" +msgstr "Beleid" -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" +#: ../../mod/admin.php:422 +msgid "Site name" +msgstr "Naam van deze RedMatrix-hub" -#: ../../mod/profiles.php:647 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" +#: ../../mod/admin.php:423 +msgid "Banner/Logo" +msgstr "Banner/logo" -#: ../../mod/profiles.php:648 -msgid "Clone this profile" -msgstr "Dit profiel klonen" +#: ../../mod/admin.php:424 +msgid "Administrator Information" +msgstr "Informatie over de beheerder van deze hub" -#: ../../mod/profiles.php:649 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" +#: ../../mod/admin.php:424 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." -#: ../../mod/profiles.php:651 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" +#: ../../mod/admin.php:425 +msgid "System language" +msgstr "Standaardtaal" -#: ../../mod/profiles.php:652 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" +#: ../../mod/admin.php:426 +msgid "System theme" +msgstr "Standaardthema" -#: ../../mod/profiles.php:653 -msgid "Profile Name:" -msgstr "Profielnaam:" +#: ../../mod/admin.php:426 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standaardthema voor RedMatrix-hub (kan door gebruiker veranderd worden) - verander thema-instellingen" -#: ../../mod/profiles.php:654 -msgid "Your Full Name:" -msgstr "Jouw volledige naam:" +#: ../../mod/admin.php:427 +msgid "Mobile system theme" +msgstr "Standaardthema voor mobiel" -#: ../../mod/profiles.php:655 -msgid "Title/Description:" -msgstr "Titel/omschrijving:" +#: ../../mod/admin.php:427 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" -#: ../../mod/profiles.php:656 -msgid "Your Gender:" -msgstr "Jouw geslacht" +#: ../../mod/admin.php:428 +msgid "Accessibility system theme" +msgstr "Standaardthema voor universele toegang" -#: ../../mod/profiles.php:657 -#, php-format -msgid "Birthday (%s):" -msgstr "Geboortedag (%s)" +#: ../../mod/admin.php:428 +msgid "Accessibility theme" +msgstr "Thema voor universele toegang" -#: ../../mod/profiles.php:658 -msgid "Street Address:" -msgstr "Straat en huisnummer:" +#: ../../mod/admin.php:430 +msgid "Enable Diaspora Protocol" +msgstr "Diaspora-protocol inschakelen" -#: ../../mod/profiles.php:659 -msgid "Locality/City:" -msgstr "Woonplaats:" +#: ../../mod/admin.php:430 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "Communiceer met Diaspora en Friendica (experimenteel)" -#: ../../mod/profiles.php:660 -msgid "Postal/Zip Code:" -msgstr "Postcode:" +#: ../../mod/admin.php:431 +msgid "Allow Feeds as Connections" +msgstr "Sta feeds toe als connecties" -#: ../../mod/profiles.php:661 -msgid "Country:" -msgstr "Land:" +#: ../../mod/admin.php:431 +msgid "(Heavy system resource usage)" +msgstr "(sterk negatieve invloed op systeembronnen hub)" -#: ../../mod/profiles.php:662 -msgid "Region/State:" -msgstr "Provincie/gewest/deelstaat:" +#: ../../mod/admin.php:432 +msgid "Maximum image size" +msgstr "Maximale grootte van afbeeldingen" -#: ../../mod/profiles.php:663 -msgid " Marital Status:" -msgstr " Huwelijkse staat:" +#: ../../mod/admin.php:432 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." -#: ../../mod/profiles.php:664 -msgid "Who: (if applicable)" -msgstr "Wie (wanneer toepasselijk):" +#: ../../mod/admin.php:433 +msgid "Does this site allow new member registration?" +msgstr "Staat deze hub registratie van nieuwe accounts toe?" -#: ../../mod/profiles.php:665 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" +#: ../../mod/admin.php:434 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest in de buurt komt." -#: ../../mod/profiles.php:666 -msgid "Since [date]:" -msgstr "Sinds [datum]:" +#: ../../mod/admin.php:435 +msgid "Register text" +msgstr "Registratietekst" -#: ../../mod/profiles.php:668 -msgid "Homepage URL:" -msgstr "Adres homepage:" +#: ../../mod/admin.php:435 +msgid "Will be displayed prominently on the registration page." +msgstr "Wordt prominent op de registratiepagina getoond." -#: ../../mod/profiles.php:671 -msgid "Religious Views:" -msgstr "Religieuze overtuigingen" +#: ../../mod/admin.php:436 +msgid "Accounts abandoned after x days" +msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" -#: ../../mod/profiles.php:672 -msgid "Keywords:" -msgstr "Trefwoorden" +#: ../../mod/admin.php:436 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." -#: ../../mod/profiles.php:675 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" +#: ../../mod/admin.php:437 +msgid "Allowed friend domains" +msgstr "Toegestane domeinen" -#: ../../mod/profiles.php:676 -msgid "Used in directory listings" -msgstr "Wordt in de kanalengids gebruikt" +#: ../../mod/admin.php:437 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze RedMatrix-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." -#: ../../mod/profiles.php:677 -msgid "Tell us about yourself..." -msgstr "Vertel ons iets over jezelf..." +#: ../../mod/admin.php:438 +msgid "Allowed email domains" +msgstr "Toegestane e-maildomeinen" -#: ../../mod/profiles.php:678 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" +#: ../../mod/admin.php:438 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze hub mogen registeren. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." -#: ../../mod/profiles.php:679 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" +#: ../../mod/admin.php:439 +msgid "Block public" +msgstr "Openbare toegang blokkeren" -#: ../../mod/profiles.php:680 -msgid "My other channels" -msgstr "Mijn andere kanalen" +#: ../../mod/admin.php:439 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde gebruikers." -#: ../../mod/profiles.php:681 -msgid "Musical interests" -msgstr "Muzikale interesses" +#: ../../mod/admin.php:440 +msgid "Verify Email Addresses" +msgstr "E-mailadres verifieren" -#: ../../mod/profiles.php:682 -msgid "Books, literature" -msgstr "Boeken/literatuur" +#: ../../mod/admin.php:440 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." -#: ../../mod/profiles.php:683 -msgid "Television" -msgstr "Televisie" +#: ../../mod/admin.php:441 +msgid "Force publish" +msgstr "Dwing kanaalvermelding af" -#: ../../mod/profiles.php:684 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/entertainment" +#: ../../mod/admin.php:441 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." -#: ../../mod/profiles.php:685 -msgid "Love/romance" -msgstr "Liefde/romantiek" +#: ../../mod/admin.php:442 +msgid "Disable discovery tab" +msgstr "Ontdekkingstab" -#: ../../mod/profiles.php:686 -msgid "Work/employment" -msgstr "Werk/arbeid" +#: ../../mod/admin.php:442 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen." -#: ../../mod/profiles.php:687 -msgid "School/education" -msgstr "School/onderwijs" +#: ../../mod/admin.php:443 +msgid "No login on Homepage" +msgstr "Geen inlogformulier op de homepage" -#: ../../mod/profiles.php:693 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" +#: ../../mod/admin.php:443 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde gebruikers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)" -#: ../../mod/profiles.php:704 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "Leeftijd:" +#: ../../mod/admin.php:445 +msgid "Proxy user" +msgstr "Proxy-gebruiker" -#: ../../mod/profiles.php:747 -msgid "Edit/Manage Profiles" -msgstr "Profielen bewerken/beheren" +#: ../../mod/admin.php:446 +msgid "Proxy URL" +msgstr "Proxy-URL" -#: ../../mod/profiles.php:748 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" +#: ../../mod/admin.php:447 +msgid "Network timeout" +msgstr "Netwerktimeout" -#: ../../mod/profiles.php:749 -msgid "Include desirable objects in your profile" -msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" +#: ../../mod/admin.php:447 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" +#: ../../mod/admin.php:448 +msgid "Delivery interval" +msgstr "Afleveringsinterval" -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" +#: ../../mod/admin.php:448 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." -#: ../../mod/bookmarks.php:69 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" +#: ../../mod/admin.php:449 +msgid "Poll interval" +msgstr "Poll-interval" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" +#: ../../mod/admin.php:449 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " +#: ../../mod/admin.php:450 +msgid "Maximum Load Average" +msgstr "Maximaal gemiddelde systeembelasting" -#: ../../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/admin.php:450 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Zichtbaar voor" +#: ../../mod/admin.php:506 +msgid "No server found" +msgstr "Geen hub gevonden" -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "Alle connecties" +#: ../../mod/admin.php:513 ../../mod/admin.php:737 +msgid "ID" +msgstr "ID" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Openbare hubs" +#: ../../mod/admin.php:513 +msgid "for channel" +msgstr "voor kanaal" -#: ../../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/admin.php:513 +msgid "on server" +msgstr "op hub" -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL hub" +#: ../../mod/admin.php:513 +msgid "Status" +msgstr "Status" -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Toegangstype" +#: ../../mod/admin.php:534 +msgid "Update has been marked successful" +msgstr "Update is als succesvol gemarkeerd" -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Registratiebeleid" +#: ../../mod/admin.php:544 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." -#: ../../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/admin.php:547 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s was geslaagd." -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." +#: ../../mod/admin.php:551 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" +#: ../../mod/admin.php:554 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-functie %s kon niet gevonden worden." -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" +#: ../../mod/admin.php:569 +msgid "No failed updates." +msgstr "Geen mislukte updates." -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" +#: ../../mod/admin.php:573 +msgid "Failed Updates" +msgstr "Mislukte updates" -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Omschrijving" +#: ../../mod/admin.php:575 +msgid "Mark success (if update was manually applied)" +msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" +#: ../../mod/admin.php:576 +msgid "Attempt to execute this update step automatically" +msgstr "Poging om deze stap van de update automatisch uit te voeren." -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../mod/admin.php:602 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s account geblokkeerd/gedeblokkeerd" +msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../mod/admin.php:609 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s account verwijderd" +msgstr[1] "%s accounts verwijderd" -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Chatkanaal verwijderen" +#: ../../mod/admin.php:638 +msgid "Account not found" +msgstr "Account niet gevonden" -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" +#: ../../mod/admin.php:658 +#, php-format +msgid "User '%s' unblocked" +msgstr "Account '%s' gedeblokkeerd" -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ik ben online" +#: ../../mod/admin.php:658 +#, php-format +msgid "User '%s' blocked" +msgstr "Gebruiker '%s' geblokkeerd" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" +#: ../../mod/admin.php:724 ../../mod/admin.php:736 +msgid "Users" +msgstr "Accounts" -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" +#: ../../mod/admin.php:726 ../../mod/admin.php:862 +msgid "select all" +msgstr "alles selecteren" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Naam chatkanaal" +#: ../../mod/admin.php:727 +msgid "User registrations waiting for confirm" +msgstr "Accounts die op goedkeuring wachten" -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" +#: ../../mod/admin.php:728 +msgid "Request date" +msgstr "Tijd/datum verzoek" -#: ../../mod/register.php:42 -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/admin.php:729 +msgid "No registrations." +msgstr "Geen verzoeken." -#: ../../mod/register.php:48 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." +#: ../../mod/admin.php:730 +msgid "Approve" +msgstr "Goedkeuren" -#: ../../mod/register.php:82 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." +#: ../../mod/admin.php:731 +msgid "Deny" +msgstr "Afkeuren" -#: ../../mod/register.php:115 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." +#: ../../mod/admin.php:733 ../../mod/connedit.php:436 +#: ../../mod/connedit.php:579 +msgid "Block" +msgstr "Blokkeren" -#: ../../mod/register.php:121 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub." +#: ../../mod/admin.php:734 ../../mod/connedit.php:436 +#: ../../mod/connedit.php:579 +msgid "Unblock" +msgstr "Deblokkeren" -#: ../../mod/register.php:124 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." +#: ../../mod/admin.php:737 +msgid "Register date" +msgstr "Geregistreerd" -#: ../../mod/register.php:161 -msgid "Registration on this site/hub is by approval only." -msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." +#: ../../mod/admin.php:737 +msgid "Last login" +msgstr "Laatste keer ingelogd" -#: ../../mod/register.php:162 -msgid "Register at another affiliated site/hub" -msgstr "Registreer op een andere RedMatrix-hub" +#: ../../mod/admin.php:737 +msgid "Expires" +msgstr "Verloopt" -#: ../../mod/register.php:170 +#: ../../mod/admin.php:737 +msgid "Service Class" +msgstr "Abonnementen" + +#: ../../mod/admin.php:739 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." +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" -#: ../../mod/register.php:181 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" +#: ../../mod/admin.php:740 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../mod/register.php:187 +#: ../../mod/admin.php:773 #, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze RedMatrix-hub" +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s kanaal gecensureerd/ongecensureerd" +msgstr[1] "%s kanalen gecensureerd/ongecensureerd" -#: ../../mod/register.php:189 +#: ../../mod/admin.php:780 #, 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" +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanaal verwijderd" +msgstr[1] "%s kanalen verwijderd" -#: ../../mod/register.php:203 ../../mod/admin.php:415 -msgid "Registration" -msgstr "Registratie" +#: ../../mod/admin.php:799 +msgid "Channel not found" +msgstr "Kanaal niet gevonden" -#: ../../mod/register.php:208 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." +#: ../../mod/admin.php:810 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanaal '%s' verwijderd" -#: ../../mod/register.php:209 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" +#: ../../mod/admin.php:821 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanaal '%s' ongecensureerd" -#: ../../mod/register.php:212 -msgid "Your email address" -msgstr "Jouw e-mailadres" +#: ../../mod/admin.php:821 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanaal '%s' gecensureerd" -#: ../../mod/register.php:213 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" +#: ../../mod/admin.php:864 +msgid "Censor" +msgstr "Censureren" -#: ../../mod/register.php:214 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" +#: ../../mod/admin.php:865 +msgid "Uncensor" +msgstr "Niet censureren" -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Afwezig" +#: ../../mod/admin.php:868 +msgid "UID" +msgstr "UID" -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" +#: ../../mod/admin.php:868 ../../mod/profiles.php:433 +msgid "Address" +msgstr "Kanaaladres" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Inloggen." - -#: ../../mod/cloud.php:126 -msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix - gasten: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++" - -#: ../../mod/removeme.php:29 +#: ../../mod/admin.php:870 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../mod/removeme.php:58 +#: ../../mod/admin.php:871 msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden." - -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../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/admin.php:910 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-in %s uitgeschakeld." -#: ../../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/admin.php:914 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-in %s ingeschakeld" -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +msgid "Disable" +msgstr "Uitschakelen" -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Geen kanaal." +#: ../../mod/admin.php:926 ../../mod/admin.php:1128 +msgid "Enable" +msgstr "Inschakelen" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Veel voorkomende connecties" +#: ../../mod/admin.php:952 ../../mod/admin.php:1157 +msgid "Toggle" +msgstr "Omschakelen" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../mod/admin.php:960 ../../mod/admin.php:1167 +msgid "Author: " +msgstr "Auteur: " -#: ../../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/admin.php:961 ../../mod/admin.php:1168 +msgid "Maintainer: " +msgstr "Beheerder: " -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Het foutbericht was:" +#: ../../mod/admin.php:1090 +msgid "No themes found." +msgstr "Geen thema's gevonden" -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." +#: ../../mod/admin.php:1149 +msgid "Screenshot" +msgstr "Schermafdruk" -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" +#: ../../mod/admin.php:1197 +msgid "[Experimental]" +msgstr "[Experimenteel]" -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" +#: ../../mod/admin.php:1198 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authenticeren" +#: ../../mod/admin.php:1225 +msgid "Log settings updated." +msgstr "Logboek-instellingen bijgewerkt." -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Ga verder" +#: ../../mod/admin.php:1281 +msgid "Clear" +msgstr "Leegmaken" -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " +#: ../../mod/admin.php:1287 +msgid "Debugging" +msgstr "Debuggen" -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" +#: ../../mod/admin.php:1288 +msgid "Log file" +msgstr "Logbestand" -#: ../../mod/connect.php:87 +#: ../../mod/admin.php:1288 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, gebruikersvoorschriften, enz." +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je RedMatrix-installatie." -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -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/admin.php:1289 +msgid "Log level" +msgstr "Logniveau" -#: ../../mod/connect.php:90 -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/admin.php:1336 +msgid "New Profile Field" +msgstr "Nieuw profielveld" -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -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/admin.php:1337 ../../mod/admin.php:1358 +msgid "Field nickname" +msgstr "Bijnaam voor veld" -#: ../../mod/connect.php:100 -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/admin.php:1337 ../../mod/admin.php:1358 +msgid "System name of field" +msgstr "Systeemnaam voor veld" -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Input type" +msgstr "Invoertype" -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Collectie niet gevonden" +#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Field Name" +msgstr "Veldnaam" -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" +#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Label on profile pages" +msgstr "Tekstlabel voor op profielpagina's" -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "Collectie is leeg" +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +msgid "Help text" +msgstr "Helptekst" -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "Collectie: " +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +msgid "Additional info (optional)" +msgstr "Extra informatie (optioneel)" -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "Connectie: " +#: ../../mod/admin.php:1351 +msgid "Field definition not found" +msgstr "Velddefinitie niet gevonden" -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "Ongeldige connectie." +#: ../../mod/admin.php:1357 +msgid "Edit Profile Field" +msgstr "Profielveld bewerken" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- kies map -" #: ../../mod/connections.php:37 ../../mod/connedit.php:64 msgid "Could not access contact record." @@ -5035,6 +5130,10 @@ msgstr "Nieuwe connecties" msgid "Show pending (new) connections" msgstr "Nog te accepteren (nieuwe) connecties weergeven" +#: ../../mod/connections.php:279 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle connecties" + #: ../../mod/connections.php:282 msgid "Show all connections" msgstr "Toon alle connecties" @@ -5080,2375 +5179,2221 @@ msgstr "Doorzoek jouw connecties" msgid "Finding: " msgstr "Zoeken naar: " -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Bericht bewerken" +#: ../../mod/dirprofile.php:9 ../../mod/photos.php:443 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:15 +#: ../../mod/display.php:9 ../../mod/search.php:13 +msgid "Public access denied." +msgstr "Openbare toegang geweigerd." -#: ../../mod/connedit.php:181 -msgid "is now connected to" -msgstr "is nu verbonden met" +#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 +#: ../../mod/profiles.php:704 +msgid "Age: " +msgstr "Leeftijd:" -#: ../../mod/connedit.php:296 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." +#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 +msgid "Gender: " +msgstr "Geslacht:" -#: ../../mod/connedit.php:310 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" +#: ../../mod/dirprofile.php:108 +msgid "Status: " +msgstr "Status: " -#: ../../mod/connedit.php:317 -msgid "Channel has been unblocked" -msgstr "Kanaal is gedeblokkeerd" +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " +msgstr "Seksuele voorkeur: " -#: ../../mod/connedit.php:318 -msgid "Channel has been blocked" -msgstr "Kanaal is geblokkeerd" +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " +msgstr "Homepage: " -#: ../../mod/connedit.php:322 ../../mod/connedit.php:334 -#: ../../mod/connedit.php:346 ../../mod/connedit.php:358 -#: ../../mod/connedit.php:374 -msgid "Unable to set address book parameters." -msgstr "Niet in staat om de parameters van connecties in te stellen." +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " +msgstr "Oorspronkelijk uit: " -#: ../../mod/connedit.php:329 -msgid "Channel has been unignored" -msgstr "Kanaal wordt niet meer genegeerd" +#: ../../mod/dirprofile.php:114 +msgid "About: " +msgstr "Over: " -#: ../../mod/connedit.php:330 -msgid "Channel has been ignored" -msgstr "Kanaal wordt genegeerd" +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " +msgstr "Trefwoorden: " -#: ../../mod/connedit.php:341 -msgid "Channel has been unarchived" -msgstr "Kanaal is niet meer gearchiveerd" +#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:38 +#: ../../mod/menu.php:120 +msgid "Not found." +msgstr "Niet gevonden." -#: ../../mod/connedit.php:342 -msgid "Channel has been archived" -msgstr "Kanaal is gearchiveerd" +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." -#: ../../mod/connedit.php:353 -msgid "Channel has been unhidden" -msgstr "Kanaal is niet meer verborgen" +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Album niet gevonden." -#: ../../mod/connedit.php:354 -msgid "Channel has been hidden" -msgstr "Kanaal is verborgen" +#: ../../mod/photos.php:119 ../../mod/photos.php:673 +msgid "Delete Album" +msgstr "Verwijder album" -#: ../../mod/connedit.php:369 -msgid "Channel has been approved" -msgstr "Connectie/kanaal is geaccepteerd" +#: ../../mod/photos.php:159 ../../mod/photos.php:975 +msgid "Delete Photo" +msgstr "Verwijder foto" -#: ../../mod/connedit.php:370 -msgid "Channel has been unapproved" -msgstr "Connectie/kanaal is afgewezen" +#: ../../mod/photos.php:453 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" -#: ../../mod/connedit.php:398 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" +#: ../../mod/photos.php:500 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." -#: ../../mod/connedit.php:418 +#: ../../mod/photos.php:574 #, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Je gebruiker %1$.2f MB van totaal %2$.2f MB foto-opslagruimte." -#: ../../mod/connedit.php:422 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" +#: ../../mod/photos.php:577 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." +msgstr "Je gebruikt %1$.2f MB aan foto-opslagruimte." -#: ../../mod/connedit.php:425 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" +#: ../../mod/photos.php:596 +msgid "Upload Photos" +msgstr "Foto's uploaden" -#: ../../mod/connedit.php:429 -msgid "Recent Activity" -msgstr "Recente activiteit" +#: ../../mod/photos.php:600 ../../mod/photos.php:668 +msgid "New album name: " +msgstr "Nieuwe albumnaam: " -#: ../../mod/connedit.php:432 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" +#: ../../mod/photos.php:601 +msgid "or existing album name: " +msgstr "of een bestaande albumnaam: " -#: ../../mod/connedit.php:436 ../../mod/connedit.php:579 -#: ../../mod/admin.php:732 -msgid "Unblock" -msgstr "Deblokkeren" +#: ../../mod/photos.php:602 +msgid "Do not show a status post for this upload" +msgstr "Plaats geen bericht voor deze upload." -#: ../../mod/connedit.php:436 ../../mod/connedit.php:579 -#: ../../mod/admin.php:731 -msgid "Block" -msgstr "Blokkeren" +#: ../../mod/photos.php:622 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" -#: ../../mod/connedit.php:439 -msgid "Block or Unblock this connection" -msgstr "Deze connectie blokkeren of deblokkeren" +#: ../../mod/photos.php:657 ../../mod/photos.php:679 ../../mod/photos.php:1148 +#: ../../mod/photos.php:1163 +msgid "Contact Photos" +msgstr "Connectiefoto's" -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 -msgid "Unignore" -msgstr "Niet meer negeren" +#: ../../mod/photos.php:681 +msgid "Edit Album" +msgstr "Album bewerken" -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Negeren" +#: ../../mod/photos.php:687 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" -#: ../../mod/connedit.php:446 -msgid "Ignore or Unignore this connection" -msgstr "Deze connectie negeren of niet meer negeren" +#: ../../mod/photos.php:689 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" -#: ../../mod/connedit.php:449 -msgid "Unarchive" -msgstr "Niet meer archiveren" +#: ../../mod/photos.php:716 ../../mod/photos.php:1195 +msgid "View Photo" +msgstr "Foto weergeven" -#: ../../mod/connedit.php:449 -msgid "Archive" -msgstr "Archiveren" +#: ../../mod/photos.php:794 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." -#: ../../mod/connedit.php:452 -msgid "Archive or Unarchive this connection" -msgstr "Deze connectie archiveren of niet meer archiveren" +#: ../../mod/photos.php:796 +msgid "Photo not available" +msgstr "Foto niet aanwezig" -#: ../../mod/connedit.php:455 -msgid "Unhide" -msgstr "Niet meer verbergen" +#: ../../mod/photos.php:856 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" -#: ../../mod/connedit.php:455 -msgid "Hide" -msgstr "Verbergen" +#: ../../mod/photos.php:880 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" -#: ../../mod/connedit.php:458 -msgid "Hide or Unhide this connection" -msgstr "Deze connectie verbergen of niet meer verbergen" +#: ../../mod/photos.php:924 ../../mod/delegate.php:130 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Verwijderen" -#: ../../mod/connedit.php:465 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" +#: ../../mod/photos.php:958 +msgid "Edit photo" +msgstr "Foto bewerken" -#: ../../mod/connedit.php:508 ../../mod/connedit.php:537 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" +#: ../../mod/photos.php:960 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" -#: ../../mod/connedit.php:508 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" +#: ../../mod/photos.php:961 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" -#: ../../mod/connedit.php:524 -msgid "Automatic Permissions Settings" -msgstr "Automatische permissies" +#: ../../mod/photos.php:964 +msgid "New album name" +msgstr "Nieuwe albumnaam" -#: ../../mod/connedit.php:524 -#, php-format -msgid "Connections: settings for %s" -msgstr "Connecties: instellingen voor %s" +#: ../../mod/photos.php:967 +msgid "Caption" +msgstr "Bijschrift" -#: ../../mod/connedit.php:528 +#: ../../mod/photos.php:969 +msgid "Add a Tag" +msgstr "Label toevoegen" + +#: ../../mod/photos.php:972 msgid "" -"When receiving a channel introduction, any permissions provided here will be" -" applied to the new connection automatically and the introduction approved. " -"Leave this page if you do not wish to use this feature." -msgstr "Wanneer je een connectieverzoek voor een kanaal ontvangt, zullen alle permissies hier automatisch op de nieuwe connectie worden toegepast en het connectieverzoek worden geaccepteerd. Verlaat deze pagina wanneer je geen gebruik wil maken van deze functie." +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@example.com, #Friesland, #camping" -#: ../../mod/connedit.php:530 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" +#: ../../mod/photos.php:1125 +msgid "In This Photo:" +msgstr "Op deze foto:" -#: ../../mod/connedit.php:536 -msgid "inherited" -msgstr "geërfd" +#: ../../mod/photos.php:1201 +msgid "View Album" +msgstr "Album weergeven" -#: ../../mod/connedit.php:538 -msgid "Connection has no individual permissions!" -msgstr "Connectie heeft geen individuele permissies!" +#: ../../mod/photos.php:1224 +msgid "Recent Photos" +msgstr "Recente foto's" -#: ../../mod/connedit.php:539 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." +#: ../../mod/mitem.php:14 ../../mod/menu.php:92 +msgid "Menu not found." +msgstr "Menu niet gevonden." -#: ../../mod/connedit.php:541 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" +#: ../../mod/mitem.php:47 +msgid "Menu element updated." +msgstr "Menu-onderdeel geüpdatet." -#: ../../mod/connedit.php:542 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." +#: ../../mod/mitem.php:51 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." -#: ../../mod/connedit.php:543 -msgid "Contact Information / Notes" -msgstr "Informatie/aantekeningen over connectie" +#: ../../mod/mitem.php:57 +msgid "Menu element added." +msgstr "Menu-onderdeel toegevoegd" -#: ../../mod/connedit.php:544 -msgid "Edit contact notes" -msgstr "Bewerk aantekeningen over contact" +#: ../../mod/mitem.php:61 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." -#: ../../mod/connedit.php:546 -msgid "Their Settings" -msgstr "Hun instellingen" +#: ../../mod/mitem.php:96 +msgid "Manage Menu Elements" +msgstr "Menu-onderdelen beheren" -#: ../../mod/connedit.php:547 -msgid "My Settings" -msgstr "Mijn instellingen" +#: ../../mod/mitem.php:99 +msgid "Edit menu" +msgstr "Menu bewerken" -#: ../../mod/connedit.php:549 -msgid "Clear/Disable Automatic Permissions" -msgstr "Verwijderen/uitschakelen automatische permissies" +#: ../../mod/mitem.php:102 +msgid "Edit element" +msgstr "Onderdeel bewerken" -#: ../../mod/connedit.php:550 -msgid "Forum Members" -msgstr "Forum/groepsleden" +#: ../../mod/mitem.php:103 +msgid "Drop element" +msgstr "Onderdeel verwijderen" -#: ../../mod/connedit.php:551 -msgid "Soapbox" -msgstr "Zeepkist" +#: ../../mod/mitem.php:104 +msgid "New element" +msgstr "Nieuw element" -#: ../../mod/connedit.php:552 -msgid "Full Sharing (typical social network permissions)" -msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" +#: ../../mod/mitem.php:105 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" -#: ../../mod/connedit.php:553 -msgid "Cautious Sharing " -msgstr "Voorzichtig delen" +#: ../../mod/mitem.php:106 +msgid "Add menu element" +msgstr "Menu-element toevoegen" -#: ../../mod/connedit.php:554 -msgid "Follow Only" -msgstr "Alleen volgen" +#: ../../mod/mitem.php:107 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" -#: ../../mod/connedit.php:555 -msgid "Individual Permissions" -msgstr "Individuele permissies" +#: ../../mod/mitem.php:108 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" -#: ../../mod/connedit.php:556 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." +#: ../../mod/mitem.php:131 +msgid "New Menu Element" +msgstr "Nieuw menu-element" -#: ../../mod/connedit.php:557 -msgid "Advanced Permissions" -msgstr "Geavanceerde permissies" +#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" -#: ../../mod/connedit.php:558 -msgid "Simple Permissions (select one and submit)" -msgstr "Eenvoudige permissies (selecteer er één en opslaan)" +#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 +msgid "Link text" +msgstr "Linktekst" -#: ../../mod/connedit.php:562 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Profiel van %s bezoeken - %s" +#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 +msgid "URL of link" +msgstr "URL of link" -#: ../../mod/connedit.php:563 -msgid "Block/Unblock contact" -msgstr "Connectie blokkeren/deblokkeren" +#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 +msgid "Use Red magic-auth if available" +msgstr "Gebruik Reds magische authenticatie wanneer aanwezig" -#: ../../mod/connedit.php:564 -msgid "Ignore contact" -msgstr "Connectie negeren" +#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" -#: ../../mod/connedit.php:565 -msgid "Repair URL settings" -msgstr "URL-instellingen repareren" +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Order in list" +msgstr "Volgorde in lijst" -#: ../../mod/connedit.php:566 -msgid "View conversations" -msgstr "Conversaties weergeven" +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" -#: ../../mod/connedit.php:568 -msgid "Delete contact" -msgstr "Connectie verwijderen" +#: ../../mod/mitem.php:154 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." -#: ../../mod/connedit.php:571 -msgid "Last update:" -msgstr "Laatste wijziging:" +#: ../../mod/mitem.php:163 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." -#: ../../mod/connedit.php:573 -msgid "Update public posts" -msgstr "Openbare berichten updaten" +#: ../../mod/mitem.php:165 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." -#: ../../mod/connedit.php:575 -msgid "Update now" -msgstr "Nu updaten" +#: ../../mod/mitem.php:174 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" -#: ../../mod/connedit.php:581 -msgid "Currently blocked" -msgstr "Momenteel geblokkeerd" +#: ../../mod/mitem.php:186 ../../mod/menu.php:114 +msgid "Modify" +msgstr "Wijzigen" -#: ../../mod/connedit.php:582 -msgid "Currently ignored" -msgstr "Momenteel genegeerd" +#: ../../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/connedit.php:583 -msgid "Currently archived" -msgstr "Momenteel gearchiveerd" +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Inloggen." -#: ../../mod/connedit.php:584 -msgid "Currently pending" -msgstr "Moeten nog geaccepteerd of afgewezen worden" +#: ../../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/connedit.php:585 -msgid "Hide this contact from others" -msgstr "Verberg deze connectie voor anderen" +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "Webpagina" -#: ../../mod/connedit.php:585 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven" +#: ../../mod/impel.php:38 +msgid "block" +msgstr "blok" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "lay-out" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Accountbeheer uitbesteden" +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd." +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Bestaande accountbeheerders" +#: ../../mod/lockview.php:52 +msgid "Visible to:" +msgstr "Zichtbaar voor:" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Bestaande gevolmachtigde accountbeheerders" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" -#: ../../mod/delegate.php:130 ../../mod/photos.php:942 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Verwijderen" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Toevoegen" +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Omschrijving" -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Geen" +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" -#: ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 ../../mod/photos.php:443 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Openbare toegang geweigerd." +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "Geslacht:" +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" -#: ../../mod/directory.php:223 -msgid "Finding:" -msgstr "Gezocht naar:" +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." -#: ../../mod/directory.php:228 -msgid "next page" -msgstr "volgende pagina" +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulenaam:" -#: ../../mod/directory.php:228 -msgid "previous page" -msgstr "vorige pagina" +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +msgid "Layout Help" +msgstr "Lay-out-hulp" -#: ../../mod/directory.php:245 -msgid "No entries (some entries may be hidden)." -msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "Status: " +#: ../../mod/profile_photo.php:161 +msgid "Image resize failed." +msgstr "Afbeelding kon niet van grootte veranderd worden." -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "Seksuele voorkeur: " +#: ../../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/dirprofile.php:111 -msgid "Homepage: " -msgstr "Homepage: " +#: ../../mod/profile_photo.php:232 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Afbeeldingsgrootte overschrijdt het limiet van %d" -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "Oorspronkelijk uit: " +#: ../../mod/profile_photo.php:241 +msgid "Unable to process image." +msgstr "Niet in staat om afbeelding te verwerken." -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "Over: " +#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 +msgid "Photo not available." +msgstr "Foto niet beschikbaar." -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "Trefwoorden: " +#: ../../mod/profile_photo.php:358 +msgid "Upload File:" +msgstr "Bestand uploaden:" -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" +#: ../../mod/profile_photo.php:359 +msgid "Select a profile:" +msgstr "Kies een profiel:" -#: ../../mod/setup.php:162 -msgid "Red Matrix Server - Setup" -msgstr "RedMatrix Server - Setup" +#: ../../mod/profile_photo.php:360 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../mod/setup.php:168 -msgid "Could not connect to database." -msgstr "Could not connect to database." +#: ../../mod/profile_photo.php:365 +msgid "skip this step" +msgstr "sla deze stap over" -#: ../../mod/setup.php:172 -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/profile_photo.php:365 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit jouw fotoalbums" -#: ../../mod/setup.php:179 -msgid "Could not create table." -msgstr "Could not create table." +#: ../../mod/profile_photo.php:381 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" -#: ../../mod/setup.php:185 -msgid "Your site database has been installed." -msgstr "Your hub database has been installed." +#: ../../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/setup.php:190 -msgid "" -"You may need to import the file \"install/database.sql\" manually using " -"phpmyadmin or mysql." -msgstr "You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql." +#: ../../mod/profile_photo.php:384 +msgid "Done Editing" +msgstr "Klaar met bewerken" -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Please see the file \"install/INSTALL.txt\"." +#: ../../mod/profile_photo.php:427 +msgid "Image uploaded successfully." +msgstr "Uploaden afbeelding geslaagd" -#: ../../mod/setup.php:257 -msgid "System check" -msgstr "System check" +#: ../../mod/profile_photo.php:429 +msgid "Image upload failed." +msgstr "Uploaden afbeelding mislukt" -#: ../../mod/setup.php:261 ../../mod/events.php:439 -msgid "Next" -msgstr "Volgende" +#: ../../mod/profile_photo.php:438 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleinen [%s] van afbeelding mislukt." -#: ../../mod/setup.php:262 -msgid "Check again" -msgstr "Check again" +#: ../../mod/acl.php:244 +msgid "network" +msgstr "netwerk" -#: ../../mod/setup.php:284 -msgid "Database connection" -msgstr "Database connection" +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "Menu aangepast. " -#: ../../mod/setup.php:285 -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/menu.php:25 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" -#: ../../mod/setup.php:286 -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/menu.php:30 +msgid "Menu created." +msgstr "Menu aangemaakt." -#: ../../mod/setup.php:287 -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/menu.php:34 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." -#: ../../mod/setup.php:291 -msgid "Database Server Name" -msgstr "Database Server Name" +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "Menu's beheren" -#: ../../mod/setup.php:291 -msgid "Default is localhost" -msgstr "Default is localhost" +#: ../../mod/menu.php:60 +msgid "Drop" +msgstr "Verwijderen" -#: ../../mod/setup.php:292 -msgid "Database Port" -msgstr "Database Port" +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "Een nieuwe menu aanmaken" -#: ../../mod/setup.php:292 -msgid "Communication port number - use 0 for default" -msgstr "Communication port number - use 0 for default" +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "Menu verwijderen" -#: ../../mod/setup.php:293 -msgid "Database Login Name" -msgstr "Database Login Name" +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" -#: ../../mod/setup.php:294 -msgid "Database Login Password" -msgstr "Database Login Password" +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "Dit menu bewerken" -#: ../../mod/setup.php:295 -msgid "Database Name" -msgstr "Database Name" +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "Nieuw menu" -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "Site administrator email address" -msgstr "Hub administrator email address" +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "Naam van menu" -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -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/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Website URL" -msgstr "Hub URL" +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "Titel van menu" -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Please use SSL (https) URL if available." -msgstr "Please use SSL (https) URL if available." +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." -#: ../../mod/setup.php:301 ../../mod/setup.php:344 -msgid "Please select a default timezone for your website" -msgstr "Please select a default timezone for your hub" +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../mod/setup.php:328 -msgid "Site settings" -msgstr "Hub settings" +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" -#: ../../mod/setup.php:387 -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/menu.php:98 +msgid "Menu deleted." +msgstr "Menu verwijderd." -#: ../../mod/setup.php:388 -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/menu.php:100 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." -#: ../../mod/setup.php:392 -msgid "PHP executable path" -msgstr "PHP executable path" +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "Menu bewerken" -#: ../../mod/setup.php:392 -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/menu.php:108 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" -#: ../../mod/setup.php:397 -msgid "Command line PHP" -msgstr "Command line PHP" +#: ../../mod/block.php:27 ../../mod/page.php:35 +msgid "Invalid item." +msgstr "Ongeldig item." -#: ../../mod/setup.php:406 -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/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:47 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." -#: ../../mod/setup.php:407 -msgid "This is required for message delivery to work." -msgstr "This is required for message delivery to work." +#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/display.php:102 +#: ../../mod/page.php:83 ../../index.php:240 +msgid "Page not found." +msgstr "Pagina niet gevonden." -#: ../../mod/setup.php:409 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../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:430 -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/wall_upload.php:34 +msgid "Wall Photos" +msgstr "Kanaalfoto's" -#: ../../mod/setup.php:431 -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/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." -#: ../../mod/setup.php:433 -msgid "Generate encryption keys" -msgstr "Generate encryption keys" +#: ../../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/setup.php:440 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" +#: ../../mod/connedit.php:181 +msgid "is now connected to" +msgstr "is nu verbonden met" -#: ../../mod/setup.php:441 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" +#: ../../mod/connedit.php:296 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." -#: ../../mod/setup.php:442 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" +#: ../../mod/connedit.php:310 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../mod/setup.php:443 -msgid "mysqli PHP module" -msgstr "mysqli PHP module" +#: ../../mod/connedit.php:317 +msgid "Channel has been unblocked" +msgstr "Kanaal is gedeblokkeerd" -#: ../../mod/setup.php:444 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" +#: ../../mod/connedit.php:318 +msgid "Channel has been blocked" +msgstr "Kanaal is geblokkeerd" -#: ../../mod/setup.php:445 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP module" - -#: ../../mod/setup.php:450 ../../mod/setup.php:452 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: ../../mod/setup.php:450 -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:456 ../../mod/setup.php:459 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:456 -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/setup.php:464 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: libCURL PHP module required but not installed." - -#: ../../mod/setup.php:468 -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/setup.php:472 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: openssl PHP module required but not installed." - -#: ../../mod/setup.php:476 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Error: mysqli PHP module required but not installed." - -#: ../../mod/setup.php:480 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mb_string PHP module required but not installed." - -#: ../../mod/setup.php:484 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: mcrypt PHP module required but not installed." +#: ../../mod/connedit.php:322 ../../mod/connedit.php:334 +#: ../../mod/connedit.php:346 ../../mod/connedit.php:358 +#: ../../mod/connedit.php:374 +msgid "Unable to set address book parameters." +msgstr "Niet in staat om de parameters van connecties in te stellen." -#: ../../mod/setup.php:500 -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/connedit.php:329 +msgid "Channel has been unignored" +msgstr "Kanaal wordt niet meer genegeerd" -#: ../../mod/setup.php:501 -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/connedit.php:330 +msgid "Channel has been ignored" +msgstr "Kanaal wordt genegeerd" -#: ../../mod/setup.php:502 -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/connedit.php:341 +msgid "Channel has been unarchived" +msgstr "Kanaal is niet meer gearchiveerd" -#: ../../mod/setup.php:503 -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/connedit.php:342 +msgid "Channel has been archived" +msgstr "Kanaal is gearchiveerd" -#: ../../mod/setup.php:506 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" +#: ../../mod/connedit.php:353 +msgid "Channel has been unhidden" +msgstr "Kanaal is niet meer verborgen" -#: ../../mod/setup.php:516 -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/connedit.php:354 +msgid "Channel has been hidden" +msgstr "Kanaal is verborgen" -#: ../../mod/setup.php:517 -#, 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 "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/connedit.php:369 +msgid "Channel has been approved" +msgstr "Connectie/kanaal is geaccepteerd" -#: ../../mod/setup.php:518 ../../mod/setup.php:536 -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/connedit.php:370 +msgid "Channel has been unapproved" +msgstr "Connectie/kanaal is afgewezen" -#: ../../mod/setup.php:519 -#, 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/connedit.php:398 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" -#: ../../mod/setup.php:522 +#: ../../mod/connedit.php:418 #, php-format -msgid "%s is writable" -msgstr "%s is writable" - -#: ../../mod/setup.php:535 -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" - -#: ../../mod/setup.php:539 -msgid "store is writable" -msgstr "store is writable" - -#: ../../mod/setup.php:569 -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/setup.php:570 -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/setup.php:571 -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/setup.php:572 -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/setup.php:573 -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/setup.php:574 -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/setup.php:576 -msgid "SSL certificate validation" -msgstr "SSL certificate validation" - -#: ../../mod/setup.php:582 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Url rewrite in .htaccess is not working. Check your server configuration." - -#: ../../mod/setup.php:584 -msgid "Url rewrite is working" -msgstr "Url rewrite is working" - -#: ../../mod/setup.php:594 -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/setup.php:618 -msgid "Errors encountered creating database tables." -msgstr "Errors encountered creating database tables." - -#: ../../mod/setup.php:653 -msgid "

    What next

    " -msgstr "

    Wat nu

    " - -#: ../../mod/setup.php:654 -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/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "Item niet gevonden" - -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "Blok bewerken" +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Blok verwijderen" +#: ../../mod/connedit.php:422 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "YouTube-video invoegen" +#: ../../mod/connedit.php:425 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis-video [.ogg] invoegen" +#: ../../mod/connedit.php:429 +msgid "Recent Activity" +msgstr "Recente activiteit" -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis-audio [.ogg] invoegen" +#: ../../mod/connedit.php:432 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "Blok verwijderen" +#: ../../mod/connedit.php:439 +msgid "Block or Unblock this connection" +msgstr "Deze connectie blokkeren of deblokkeren" -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout bijgewerkt." +#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 +msgid "Unignore" +msgstr "Niet meer negeren" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" +#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Negeren" -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." +#: ../../mod/connedit.php:446 +msgid "Ignore or Unignore this connection" +msgstr "Deze connectie negeren of niet meer negeren" -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulenaam:" +#: ../../mod/connedit.php:449 +msgid "Unarchive" +msgstr "Niet meer archiveren" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "Lay-out-hulp" +#: ../../mod/connedit.php:449 +msgid "Archive" +msgstr "Archiveren" -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "Lay-out bewerken" +#: ../../mod/connedit.php:452 +msgid "Archive or Unarchive this connection" +msgstr "Deze connectie archiveren of niet meer archiveren" -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "Lay-out verwijderen?" +#: ../../mod/connedit.php:455 +msgid "Unhide" +msgstr "Niet meer verbergen" -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "Lay-out verwijderen" +#: ../../mod/connedit.php:455 +msgid "Hide" +msgstr "Verbergen" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" +#: ../../mod/connedit.php:458 +msgid "Hide or Unhide this connection" +msgstr "Deze connectie verbergen of niet meer verbergen" -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Item verwijderen?" +#: ../../mod/connedit.php:465 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "Webpagina bewerken" +#: ../../mod/connedit.php:508 ../../mod/connedit.php:537 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "Webpagina verwijderen?" +#: ../../mod/connedit.php:508 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../mod/editwebpage.php:186 -msgid "Delete Webpage" -msgstr "Webpagina verwijderen" +#: ../../mod/connedit.php:524 +msgid "Automatic Permissions Settings" +msgstr "Automatische permissies" -#: ../../mod/siteinfo.php:76 +#: ../../mod/connedit.php:524 #, php-format -msgid "Version %s" -msgstr "Versie %s" - -#: ../../mod/siteinfo.php:95 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plug-ins/add-ons/apps:" - -#: ../../mod/siteinfo.php:108 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plug-ins/add-ons/apps" - -#: ../../mod/siteinfo.php:116 -msgid "Red" -msgstr "Red" +msgid "Connections: settings for %s" +msgstr "Connecties: instellingen voor %s" -#: ../../mod/siteinfo.php:117 +#: ../../mod/connedit.php:528 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." +"When receiving a channel introduction, any permissions provided here will be" +" applied to the new connection automatically and the introduction approved. " +"Leave this page if you do not wish to use this feature." +msgstr "Wanneer je een connectieverzoek voor een kanaal ontvangt, zullen alle permissies hier automatisch op de nieuwe connectie worden toegepast en het connectieverzoek worden geaccepteerd. Verlaat deze pagina wanneer je geen gebruik wil maken van deze functie." -#: ../../mod/siteinfo.php:120 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" +#: ../../mod/connedit.php:530 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../mod/siteinfo.php:121 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." +#: ../../mod/connedit.php:536 +msgid "inherited" +msgstr "geërfd" -#: ../../mod/siteinfo.php:122 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" +#: ../../mod/connedit.php:538 +msgid "Connection has no individual permissions!" +msgstr "Connectie heeft geen individuele permissies!" -#: ../../mod/siteinfo.php:125 +#: ../../mod/connedit.php:539 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" - -#: ../../mod/siteinfo.php:127 -msgid "Site Administrators" -msgstr "Hubbeheerders" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album niet gevonden." - -#: ../../mod/photos.php:119 ../../mod/photos.php:675 -msgid "Delete Album" -msgstr "Verwijder album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:993 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: ../../mod/photos.php:453 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: ../../mod/photos.php:500 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." -#: ../../mod/photos.php:574 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Je gebruiker %1$.2f MB van totaal %2$.2f MB foto-opslagruimte." +#: ../../mod/connedit.php:541 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" -#: ../../mod/photos.php:577 +#: ../../mod/connedit.php:542 #, php-format -msgid "You have used %1$.2f Mbytes of photo storage." -msgstr "Je gebruikt %1$.2f MB aan foto-opslagruimte." +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." -#: ../../mod/photos.php:596 -msgid "Upload Photos" -msgstr "Foto's uploaden" +#: ../../mod/connedit.php:543 +msgid "Contact Information / Notes" +msgstr "Informatie/aantekeningen over connectie" -#: ../../mod/photos.php:600 ../../mod/photos.php:670 -msgid "New album name: " -msgstr "Nieuwe albumnaam: " +#: ../../mod/connedit.php:544 +msgid "Edit contact notes" +msgstr "Bewerk aantekeningen over contact" -#: ../../mod/photos.php:601 -msgid "or existing album name: " -msgstr "of een bestaande albumnaam: " +#: ../../mod/connedit.php:546 +msgid "Their Settings" +msgstr "Hun instellingen" -#: ../../mod/photos.php:602 -msgid "Do not show a status post for this upload" -msgstr "Plaats geen bericht voor deze upload." +#: ../../mod/connedit.php:547 +msgid "My Settings" +msgstr "Mijn instellingen" -#: ../../mod/photos.php:622 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" +#: ../../mod/connedit.php:549 +msgid "Clear/Disable Automatic Permissions" +msgstr "Verwijderen/uitschakelen automatische permissies" -#: ../../mod/photos.php:659 ../../mod/photos.php:681 ../../mod/photos.php:1165 -#: ../../mod/photos.php:1180 -msgid "Contact Photos" -msgstr "Connectiefoto's" +#: ../../mod/connedit.php:550 +msgid "Forum Members" +msgstr "Forum/groepsleden" -#: ../../mod/photos.php:685 -msgid "Edit Album" -msgstr "Album bewerken" +#: ../../mod/connedit.php:551 +msgid "Soapbox" +msgstr "Zeepkist" -#: ../../mod/photos.php:691 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" +#: ../../mod/connedit.php:552 +msgid "Full Sharing (typical social network permissions)" +msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" -#: ../../mod/photos.php:693 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" +#: ../../mod/connedit.php:553 +msgid "Cautious Sharing " +msgstr "Voorzichtig delen" -#: ../../mod/photos.php:742 ../../mod/photos.php:1212 -msgid "View Photo" -msgstr "Foto weergeven" +#: ../../mod/connedit.php:554 +msgid "Follow Only" +msgstr "Alleen volgen" -#: ../../mod/photos.php:812 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." +#: ../../mod/connedit.php:555 +msgid "Individual Permissions" +msgstr "Individuele permissies" -#: ../../mod/photos.php:814 -msgid "Photo not available" -msgstr "Foto niet aanwezig" +#: ../../mod/connedit.php:556 +msgid "" +"Some permissions may be inherited from your channel privacy settings, which have higher priority than " +"individual settings. Changing those inherited settings on this page will " +"have no effect." +msgstr "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." -#: ../../mod/photos.php:874 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" +#: ../../mod/connedit.php:557 +msgid "Advanced Permissions" +msgstr "Geavanceerde permissies" -#: ../../mod/photos.php:898 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" +#: ../../mod/connedit.php:558 +msgid "Simple Permissions (select one and submit)" +msgstr "Eenvoudige permissies (selecteer er één en opslaan)" -#: ../../mod/photos.php:976 -msgid "Edit photo" -msgstr "Foto bewerken" +#: ../../mod/connedit.php:562 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "Profiel van %s bezoeken - %s" -#: ../../mod/photos.php:978 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" +#: ../../mod/connedit.php:563 +msgid "Block/Unblock contact" +msgstr "Connectie blokkeren/deblokkeren" -#: ../../mod/photos.php:979 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" +#: ../../mod/connedit.php:564 +msgid "Ignore contact" +msgstr "Connectie negeren" -#: ../../mod/photos.php:982 -msgid "New album name" -msgstr "Nieuwe albumnaam" +#: ../../mod/connedit.php:565 +msgid "Repair URL settings" +msgstr "URL-instellingen repareren" -#: ../../mod/photos.php:985 -msgid "Caption" -msgstr "Bijschrift" +#: ../../mod/connedit.php:566 +msgid "View conversations" +msgstr "Conversaties weergeven" -#: ../../mod/photos.php:987 -msgid "Add a Tag" -msgstr "Label toevoegen" +#: ../../mod/connedit.php:568 +msgid "Delete contact" +msgstr "Connectie verwijderen" -#: ../../mod/photos.php:990 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@example.com, #Friesland, #camping" +#: ../../mod/connedit.php:571 +msgid "Last update:" +msgstr "Laatste wijziging:" -#: ../../mod/photos.php:1143 -msgid "In This Photo:" -msgstr "Op deze foto:" +#: ../../mod/connedit.php:573 +msgid "Update public posts" +msgstr "Openbare berichten updaten" -#: ../../mod/photos.php:1218 -msgid "View Album" -msgstr "Album weergeven" +#: ../../mod/connedit.php:575 +msgid "Update now" +msgstr "Nu updaten" -#: ../../mod/photos.php:1242 -msgid "Recent Photos" -msgstr "Recente foto's" +#: ../../mod/connedit.php:581 +msgid "Currently blocked" +msgstr "Momenteel geblokkeerd" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." +#: ../../mod/connedit.php:582 +msgid "Currently ignored" +msgstr "Momenteel genegeerd" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Bron aangemaakt." +#: ../../mod/connedit.php:583 +msgid "Currently archived" +msgstr "Momenteel gearchiveerd" -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Bron aangemaakt." +#: ../../mod/connedit.php:584 +msgid "Currently pending" +msgstr "Moeten nog geaccepteerd of afgewezen worden" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../mod/connedit.php:585 +msgid "Hide this contact from others" +msgstr "Verberg deze connectie voor anderen" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" +#: ../../mod/connedit.php:585 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nieuwe bron" +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" -#: ../../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/message.php:56 +msgid "No messages." +msgstr "Geen berichten" -#: ../../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/message.php:72 ../../mod/mail.php:329 +msgid "Delete conversation" +msgstr "Verwijder conversatie" -#: ../../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/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D, j M Y - G:i" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Kanaalnaam" +#: ../../mod/ping.php:237 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Bron niet gevonden" +#: ../../mod/ping.php:288 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Bron bewerken" +#: ../../mod/ping.php:329 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Bron verwijderen" +#: ../../mod/setup.php:162 +msgid "Red Matrix Server - Setup" +msgstr "RedMatrix Server - Setup" -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Bron verwijderd" +#: ../../mod/setup.php:168 +msgid "Could not connect to database." +msgstr "Could not connect to database." -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Verwijderen bron mislukt." +#: ../../mod/setup.php:172 +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/filer.php:49 -msgid "- select -" -msgstr "- kies map -" +#: ../../mod/setup.php:179 +msgid "Could not create table." +msgstr "Could not create table." -#: ../../mod/events.php:91 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." +#: ../../mod/setup.php:185 +msgid "Your site database has been installed." +msgstr "Your hub database has been installed." -#: ../../mod/events.php:105 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" +#: ../../mod/setup.php:190 +msgid "" +"You may need to import the file \"install/database.sql\" manually using " +"phpmyadmin or mysql." +msgstr "You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql." -#: ../../mod/events.php:369 -msgid "l, F j" -msgstr "l j F" +#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Please see the file \"install/INSTALL.txt\"." -#: ../../mod/events.php:391 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" +#: ../../mod/setup.php:257 +msgid "System check" +msgstr "System check" -#: ../../mod/events.php:437 -msgid "Create New Event" -msgstr "Nieuwe gebeurtenis aanmaken" +#: ../../mod/setup.php:261 ../../mod/events.php:439 +msgid "Next" +msgstr "Volgende" -#: ../../mod/events.php:438 -msgid "Previous" -msgstr "Vorige" +#: ../../mod/setup.php:262 +msgid "Check again" +msgstr "Check again" -#: ../../mod/events.php:536 -msgid "hour:minute" -msgstr "uur:minuut" +#: ../../mod/setup.php:284 +msgid "Database connection" +msgstr "Database connection" -#: ../../mod/events.php:556 -msgid "Event details" -msgstr "Details van gebeurtenis" +#: ../../mod/setup.php:285 +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/events.php:557 -#, php-format -msgid "Format is %s %s." -msgstr "Volgorde is %s %s." +#: ../../mod/setup.php:286 +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/events.php:558 -msgid "Starting date and Title are required." -msgstr "Begintijd en titel zijn vereist." +#: ../../mod/setup.php:287 +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/events.php:562 -msgid "Event Starts:" -msgstr "Begin gebeurtenis:" +#: ../../mod/setup.php:291 +msgid "Database Server Name" +msgstr "Database Server Name" -#: ../../mod/events.php:562 ../../mod/events.php:581 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "Vereist" +#: ../../mod/setup.php:291 +msgid "Default is localhost" +msgstr "Default is localhost" -#: ../../mod/events.php:570 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/-tijd is niet bekend of niet relevant" +#: ../../mod/setup.php:292 +msgid "Database Port" +msgstr "Database Port" -#: ../../mod/events.php:572 -msgid "Event Finishes:" -msgstr "Einde gebeurtenis:" +#: ../../mod/setup.php:292 +msgid "Communication port number - use 0 for default" +msgstr "Communication port number - use 0 for default" -#: ../../mod/events.php:575 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" +#: ../../mod/setup.php:293 +msgid "Database Login Name" +msgstr "Database Login Name" -#: ../../mod/events.php:577 -msgid "Description:" -msgstr "Omschrijving:" +#: ../../mod/setup.php:294 +msgid "Database Login Password" +msgstr "Database Login Password" -#: ../../mod/events.php:581 -msgid "Title:" -msgstr "Titel:" +#: ../../mod/setup.php:295 +msgid "Database Name" +msgstr "Database Name" -#: ../../mod/events.php:583 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" +#: ../../mod/setup.php:297 ../../mod/setup.php:339 +msgid "Site administrator email address" +msgstr "Hub administrator email address" -#: ../../mod/filestorage.php:68 -msgid "Permission Denied." -msgstr "Toegang geweigerd" +#: ../../mod/setup.php:297 ../../mod/setup.php:339 +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/filestorage.php:85 -msgid "File not found." -msgstr "Bestand niet gevonden." +#: ../../mod/setup.php:298 ../../mod/setup.php:341 +msgid "Website URL" +msgstr "Hub URL" -#: ../../mod/filestorage.php:122 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" +#: ../../mod/setup.php:298 ../../mod/setup.php:341 +msgid "Please use SSL (https) URL if available." +msgstr "Please use SSL (https) URL if available." -#: ../../mod/filestorage.php:131 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" +#: ../../mod/setup.php:301 ../../mod/setup.php:344 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your hub" -#: ../../mod/filestorage.php:132 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" +#: ../../mod/setup.php:328 +msgid "Site settings" +msgstr "Hub settings" -#: ../../mod/filestorage.php:133 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " +#: ../../mod/setup.php:387 +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/filestorage.php:135 -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:388 +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/filestorage.php:136 -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:392 +msgid "PHP executable path" +msgstr "PHP executable path" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanaal toegevoegd." +#: ../../mod/setup.php:392 +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/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/setup.php:397 +msgid "Command line PHP" +msgstr "Command line PHP" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contact niet gevonden" +#: ../../mod/setup.php:406 +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/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kanaalvoorstel verzonden." +#: ../../mod/setup.php:407 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kanalen voorstellen" +#: ../../mod/setup.php:409 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een kanaal voor aan %s" +#: ../../mod/setup.php:430 +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/suggest.php:35 +#: ../../mod/setup.php:431 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." +"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/group.php:20 -msgid "Collection created." -msgstr "Collectie aangemaakt" +#: ../../mod/setup.php:433 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Collectie kon niet aangemaakt worden" +#: ../../mod/setup.php:440 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Collectie bijgewerkt." +#: ../../mod/setup.php:441 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Kanaalcollectie aanmaken" +#: ../../mod/setup.php:442 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Naam collectie:" +#: ../../mod/setup.php:443 +msgid "mysqli PHP module" +msgstr "mysqli PHP module" -#: ../../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:444 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Collectie verwijderd" +#: ../../mod/setup.php:445 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP module" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Verwijderen collectie mislukt" +#: ../../mod/setup.php:450 ../../mod/setup.php:452 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Collectiebewerker" +#: ../../mod/setup.php:450 +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:196 -msgid "Members" -msgstr "Kanalen" +#: ../../mod/setup.php:456 ../../mod/setup.php:459 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alle kanaalconnecties" +#: ../../mod/setup.php:456 +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: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:464 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." -#: ../../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:468 +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/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Hulp:" +#: ../../mod/setup.php:472 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." -#: ../../mod/help.php:69 ../../index.php:233 -msgid "Not Found" -msgstr "Niet gevonden" +#: ../../mod/setup.php:476 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Error: mysqli PHP module required but not installed." -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Label verwijderd" +#: ../../mod/setup.php:480 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." + +#: ../../mod/setup.php:484 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: mcrypt PHP module required but not installed." -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Verwijder itemlabel" +#: ../../mod/setup.php:500 +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/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Kies een label om te verwijderen" +#: ../../mod/setup.php:501 +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/admin.php:52 -msgid "Theme settings updated." -msgstr "Thema-instellingen bijgewerkt." +#: ../../mod/setup.php:502 +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/admin.php:97 ../../mod/admin.php:413 -msgid "Site" -msgstr "Hub-instellingen" +#: ../../mod/setup.php:503 +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/admin.php:98 -msgid "Accounts" -msgstr "Accounts" +#: ../../mod/setup.php:506 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" -#: ../../mod/admin.php:99 ../../mod/admin.php:858 -msgid "Channels" -msgstr "Kanalen" +#: ../../mod/setup.php:516 +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/admin.php:100 ../../mod/admin.php:949 ../../mod/admin.php:991 -msgid "Plugins" -msgstr "Plug-ins" +#: ../../mod/setup.php:517 +#, 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 "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/admin.php:101 ../../mod/admin.php:1154 ../../mod/admin.php:1190 -msgid "Themes" -msgstr "Thema's" +#: ../../mod/setup.php:518 ../../mod/setup.php:536 +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/admin.php:102 ../../mod/admin.php:515 -msgid "Server" -msgstr "Hubbeheer" +#: ../../mod/setup.php:519 +#, 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/admin.php:103 -msgid "Profile Config" -msgstr "Profielconfiguratie" +#: ../../mod/setup.php:522 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "Database-updates" +#: ../../mod/setup.php:535 +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" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1277 -msgid "Logs" -msgstr "Logboeken" +#: ../../mod/setup.php:539 +msgid "store is writable" +msgstr "store is writable" -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Plug-in-opties" +#: ../../mod/setup.php:569 +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/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Accountregistraties die op goedkeuring wachten" +#: ../../mod/setup.php:570 +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/admin.php:206 -msgid "Message queues" -msgstr "Berichtenwachtrij" +#: ../../mod/setup.php:571 +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/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 -#: ../../mod/admin.php:721 ../../mod/admin.php:857 ../../mod/admin.php:948 -#: ../../mod/admin.php:990 ../../mod/admin.php:1153 ../../mod/admin.php:1189 -#: ../../mod/admin.php:1276 -msgid "Administration" -msgstr "Beheer" +#: ../../mod/setup.php:572 +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/admin.php:212 -msgid "Summary" -msgstr "Samenvatting" +#: ../../mod/setup.php:573 +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/admin.php:214 -msgid "Registered users" -msgstr "Geregistreerde gebruikers" +#: ../../mod/setup.php:574 +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/admin.php:216 ../../mod/admin.php:518 -msgid "Pending registrations" -msgstr "Accounts die op goedkeuring wachten" +#: ../../mod/setup.php:576 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Versie" +#: ../../mod/setup.php:582 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Url rewrite in .htaccess is not working. Check your server configuration." -#: ../../mod/admin.php:219 ../../mod/admin.php:519 -msgid "Active plugins" -msgstr "Ingeschakelde plug-ins" +#: ../../mod/setup.php:584 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" -#: ../../mod/admin.php:333 -msgid "Site settings updated." -msgstr "Hub-instellingen bijgewerkt." +#: ../../mod/setup.php:594 +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/admin.php:364 -msgid "No special theme for accessibility" -msgstr "Geen speciaal thema voor universele toegang" +#: ../../mod/setup.php:618 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." -#: ../../mod/admin.php:393 -msgid "Yes - with approval" -msgstr "Ja - met goedkeuring" +#: ../../mod/setup.php:653 +msgid "

    What next

    " +msgstr "

    Wat nu

    " -#: ../../mod/admin.php:399 -msgid "My site is not a public server" -msgstr "Mijn RedMatrix-hub is niet openbaar" +#: ../../mod/setup.php:654 +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/admin.php:400 -msgid "My site has paid access only" -msgstr "Mijn RedMatrix-hub kent alleen betaalde toegang" +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Hub niet gevonden." -#: ../../mod/admin.php:401 -msgid "My site has free access only" -msgstr "Mijn RedMatrix-hub kent alleen gratis toegang" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." -#: ../../mod/admin.php:402 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." -#: ../../mod/admin.php:416 -msgid "File upload" -msgstr "Bestand uploaden" +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Uitnodiging voor de RedMatrix" -#: ../../mod/admin.php:417 -msgid "Policies" -msgstr "Beleid" +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." -#: ../../mod/admin.php:422 -msgid "Site name" -msgstr "Naam van deze RedMatrix-hub" +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." -#: ../../mod/admin.php:423 -msgid "Banner/Logo" -msgstr "Banner/logo" +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." -#: ../../mod/admin.php:424 -msgid "Administrator Information" -msgstr "Informatie over de beheerder van deze hub" +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" -#: ../../mod/admin.php:424 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" -#: ../../mod/admin.php:425 -msgid "System language" -msgstr "Standaardtaal" +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" + +#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Your message:" +msgstr "Jouw bericht:" -#: ../../mod/admin.php:426 -msgid "System theme" -msgstr "Standaardthema" +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me." -#: ../../mod/admin.php:426 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standaardthema voor RedMatrix-hub (kan door gebruiker veranderd worden) - verander thema-instellingen" +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Je moet deze uitnodigingscode opgeven:" -#: ../../mod/admin.php:427 -msgid "Mobile system theme" -msgstr "Standaardthema voor mobiel" +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):" -#: ../../mod/admin.php:427 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:" -#: ../../mod/admin.php:428 -msgid "Accessibility system theme" -msgstr "Standaardthema voor universele toegang" +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "of bezoek " -#: ../../mod/admin.php:428 -msgid "Accessibility theme" -msgstr "Thema voor universele toegang" +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" -#: ../../mod/admin.php:430 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-protocol inschakelen" +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Ding bijgewerkt" -#: ../../mod/admin.php:430 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Communiceer met Diaspora en Friendica (experimenteel)" +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" -#: ../../mod/admin.php:431 -msgid "Allow Feeds as Connections" -msgstr "Sta feeds toe als connecties" +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Ding toegevoegd" -#: ../../mod/admin.php:431 -msgid "(Heavy system resource usage)" -msgstr "(sterk negatieve invloed op systeembronnen hub)" +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/admin.php:432 -msgid "Maximum image size" -msgstr "Maximale grootte van afbeeldingen" +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../mod/admin.php:432 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../mod/admin.php:433 -msgid "Does this site allow new member registration?" -msgstr "Staat deze hub registratie van nieuwe accounts toe?" +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../mod/admin.php:434 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest in de buurt komt." +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Kies een profiel" -#: ../../mod/admin.php:435 -msgid "Register text" -msgstr "Registratietekst" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Plaats een bericht" -#: ../../mod/admin.php:435 -msgid "Will be displayed prominently on the registration page." -msgstr "Wordt prominent op de registratiepagina getoond." +#: ../../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/admin.php:436 -msgid "Accounts abandoned after x days" -msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" -#: ../../mod/admin.php:436 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" -#: ../../mod/admin.php:437 -msgid "Allowed friend domains" -msgstr "Toegestane domeinen" +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL van foto van ding (optioneel)" -#: ../../mod/admin.php:437 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze RedMatrix-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" -#: ../../mod/admin.php:438 -msgid "Allowed email domains" -msgstr "Toegestane e-maildomeinen" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" -#: ../../mod/admin.php:438 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze hub mogen registeren. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." -#: ../../mod/admin.php:439 -msgid "Block public" -msgstr "Openbare toegang blokkeren" +#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 +msgid "Help:" +msgstr "Hulp:" -#: ../../mod/admin.php:439 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde gebruikers." +#: ../../mod/help.php:69 ../../index.php:237 +msgid "Not Found" +msgstr "Niet gevonden" -#: ../../mod/admin.php:440 -msgid "Verify Email Addresses" -msgstr "E-mailadres verifieren" +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Geen connecties." -#: ../../mod/admin.php:440 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bezoek het profiel van %s [%s]" -#: ../../mod/admin.php:441 -msgid "Force publish" -msgstr "Dwing kanaalvermelding af" +#: ../../mod/viewconnections.php:86 +msgid "View Connnections" +msgstr "Connecties weergeven" -#: ../../mod/admin.php:441 +#: ../../mod/removeaccount.php:30 msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." -#: ../../mod/admin.php:442 -msgid "Disable discovery tab" -msgstr "Ontdekkingstab" +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Verwijder dit account" -#: ../../mod/admin.php:442 +#: ../../mod/removeaccount.php:58 msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen." +"This will completely remove this account including all its channels from the" +" network. Once this has been done it is not recoverable." +msgstr "Deze actie verwijderd dit account volledig, inclusief al zijn kanalen. Dit kan hierna op geen enkele manier ongedaan gemaakt worden." -#: ../../mod/admin.php:443 -msgid "No login on Homepage" -msgstr "Geen inlogformulier op de homepage" +#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" -#: ../../mod/admin.php:443 +#: ../../mod/removeaccount.php:60 msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde gebruikers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)" - -#: ../../mod/admin.php:445 -msgid "Proxy user" -msgstr "Proxy-gebruiker" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen" -#: ../../mod/admin.php:446 -msgid "Proxy URL" -msgstr "Proxy-URL" +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd." -#: ../../mod/admin.php:447 -msgid "Network timeout" -msgstr "Netwerktimeout" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../mod/admin.php:447 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../mod/admin.php:448 -msgid "Delivery interval" -msgstr "Afleveringsinterval" +#: ../../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/admin.php:448 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Zichtbaar voor" -#: ../../mod/admin.php:449 -msgid "Poll interval" -msgstr "Poll-interval" +#: ../../mod/register.php:42 +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/admin.php:449 +#: ../../mod/register.php:48 msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." - -#: ../../mod/admin.php:450 -msgid "Maximum Load Average" -msgstr "Maximaal gemiddelde systeembelasting" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." -#: ../../mod/admin.php:450 +#: ../../mod/register.php:82 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." + +#: ../../mod/register.php:115 msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." -#: ../../mod/admin.php:506 -msgid "No server found" -msgstr "Geen hub gevonden" +#: ../../mod/register.php:121 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub." -#: ../../mod/admin.php:513 ../../mod/admin.php:735 -msgid "ID" -msgstr "ID" +#: ../../mod/register.php:124 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." -#: ../../mod/admin.php:513 -msgid "for channel" -msgstr "voor kanaal" +#: ../../mod/register.php:161 +msgid "Registration on this site/hub is by approval only." +msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." -#: ../../mod/admin.php:513 -msgid "on server" -msgstr "op hub" +#: ../../mod/register.php:162 +msgid "Register at another affiliated site/hub" +msgstr "Registreer op een andere RedMatrix-hub" -#: ../../mod/admin.php:513 -msgid "Status" -msgstr "Status" +#: ../../mod/register.php:170 +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/admin.php:534 -msgid "Update has been marked successful" -msgstr "Update is als succesvol gemarkeerd" +#: ../../mod/register.php:181 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" -#: ../../mod/admin.php:544 +#: ../../mod/register.php:187 #, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze RedMatrix-hub" -#: ../../mod/admin.php:547 +#: ../../mod/register.php:189 #, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s was geslaagd." +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/admin.php:551 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." +#: ../../mod/register.php:208 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." -#: ../../mod/admin.php:554 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-functie %s kon niet gevonden worden." +#: ../../mod/register.php:209 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" -#: ../../mod/admin.php:569 -msgid "No failed updates." -msgstr "Geen mislukte updates." +#: ../../mod/register.php:212 +msgid "Your email address" +msgstr "Jouw e-mailadres" -#: ../../mod/admin.php:573 -msgid "Failed Updates" -msgstr "Mislukte updates" +#: ../../mod/register.php:213 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" -#: ../../mod/admin.php:575 -msgid "Mark success (if update was manually applied)" -msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" +#: ../../mod/register.php:214 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" -#: ../../mod/admin.php:576 -msgid "Attempt to execute this update step automatically" -msgstr "Poging om deze stap van de update automatisch uit te voeren." +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Collectie niet gevonden" -#: ../../mod/admin.php:602 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s account geblokkeerd/gedeblokkeerd" -msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" +#: ../../mod/network.php:118 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" -#: ../../mod/admin.php:609 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s account verwijderd" -msgstr[1] "%s accounts verwijderd" +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "Collectie is leeg" -#: ../../mod/admin.php:638 -msgid "Account not found" -msgstr "Account niet gevonden" +#: ../../mod/network.php:180 +msgid "Collection: " +msgstr "Collectie: " -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' unblocked" -msgstr "Account '%s' gedeblokkeerd" +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "Connectie: " -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' blocked" -msgstr "Gebruiker '%s' geblokkeerd" +#: ../../mod/network.php:196 +msgid "Invalid connection." +msgstr "Ongeldige connectie." -#: ../../mod/admin.php:722 ../../mod/admin.php:734 -msgid "Users" -msgstr "Accounts" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." -#: ../../mod/admin.php:724 ../../mod/admin.php:860 -msgid "select all" -msgstr "alles selecteren" +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Accountbeheer uitbesteden" -#: ../../mod/admin.php:725 -msgid "User registrations waiting for confirm" -msgstr "Accounts die op goedkeuring wachten" +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd." -#: ../../mod/admin.php:726 -msgid "Request date" -msgstr "Tijd/datum verzoek" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Bestaande accountbeheerders" -#: ../../mod/admin.php:727 -msgid "No registrations." -msgstr "Geen verzoeken." +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Bestaande gevolmachtigde accountbeheerders" -#: ../../mod/admin.php:728 -msgid "Approve" -msgstr "Goedkeuren" +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." -#: ../../mod/admin.php:729 -msgid "Deny" -msgstr "Afkeuren" +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Toevoegen" -#: ../../mod/admin.php:735 -msgid "Register date" -msgstr "Geregistreerd" +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Geen" -#: ../../mod/admin.php:735 -msgid "Last login" -msgstr "Laatste keer ingelogd" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "Ga verder" -#: ../../mod/admin.php:735 -msgid "Expires" -msgstr "Verloopt" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " -#: ../../mod/admin.php:735 -msgid "Service Class" -msgstr "Abonnementen" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" -#: ../../mod/admin.php:737 +#: ../../mod/connect.php:87 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, gebruikersvoorschriften, enz." -#: ../../mod/admin.php:738 +#: ../../mod/connect.php:89 ../../mod/connect.php:109 msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" +"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/admin.php:771 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanaal gecensureerd/ongecensureerd" -msgstr[1] "%s kanalen gecensureerd/ongecensureerd" +#: ../../mod/connect.php:90 +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/admin.php:778 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanaal verwijderd" -msgstr[1] "%s kanalen verwijderd" +#: ../../mod/connect.php:91 ../../mod/connect.php:112 +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/admin.php:797 -msgid "Channel not found" -msgstr "Kanaal niet gevonden" +#: ../../mod/connect.php:100 +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/admin.php:808 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanaal '%s' verwijderd" +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contact niet gevonden" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kanaalvoorstel verzonden." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kanalen voorstellen" -#: ../../mod/admin.php:819 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanaal '%s' ongecensureerd" +msgid "Suggest a friend for %s" +msgstr "Stel een kanaal voor aan %s" -#: ../../mod/admin.php:819 +#: ../../mod/manage.php:136 #, php-format -msgid "Channel '%s' censored" -msgstr "Kanaal '%s' gecensureerd" - -#: ../../mod/admin.php:862 -msgid "Censor" -msgstr "Censureren" - -#: ../../mod/admin.php:863 -msgid "Uncensor" -msgstr "Niet censureren" - -#: ../../mod/admin.php:866 -msgid "UID" -msgstr "UID" +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." -#: ../../mod/admin.php:868 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" +#: ../../mod/manage.php:144 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" -#: ../../mod/admin.php:869 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" +#: ../../mod/manage.php:149 +msgid "Current Channel" +msgstr "Huidig kanaal" -#: ../../mod/admin.php:908 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-in %s uitgeschakeld." +#: ../../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/admin.php:912 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-in %s ingeschakeld" +#: ../../mod/manage.php:152 +msgid "Default Channel" +msgstr "Standaardkanaal" -#: ../../mod/admin.php:922 ../../mod/admin.php:1124 -msgid "Disable" -msgstr "Uitschakelen" +#: ../../mod/manage.php:153 +msgid "Make Default" +msgstr "Als standaard instellen" -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 -msgid "Enable" -msgstr "Inschakelen" +#: ../../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/admin.php:950 ../../mod/admin.php:1155 -msgid "Toggle" -msgstr "Omschakelen" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" -#: ../../mod/admin.php:958 ../../mod/admin.php:1165 -msgid "Author: " -msgstr "Auteur: " +#: ../../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/admin.php:959 ../../mod/admin.php:1166 -msgid "Maintainer: " -msgstr "Beheerder: " +#: ../../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/admin.php:1088 -msgid "No themes found." -msgstr "Geen thema's gevonden" +#: ../../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/admin.php:1147 -msgid "Screenshot" -msgstr "Schermafdruk" +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" -#: ../../mod/admin.php:1195 -msgid "[Experimental]" -msgstr "[Experimenteel]" +#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 +msgid "Item not found" +msgstr "Item niet gevonden" -#: ../../mod/admin.php:1196 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" -#: ../../mod/admin.php:1223 -msgid "Log settings updated." -msgstr "Logboek-instellingen bijgewerkt." +#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../mod/admin.php:1279 -msgid "Clear" -msgstr "Leegmaken" +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Item verwijderen?" -#: ../../mod/admin.php:1285 -msgid "Debugging" -msgstr "Debuggen" +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 +#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 +msgid "Insert YouTube video" +msgstr "YouTube-video invoegen" -#: ../../mod/admin.php:1286 -msgid "Log file" -msgstr "Logbestand" +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 +#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis-video [.ogg] invoegen" -#: ../../mod/admin.php:1286 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je RedMatrix-installatie." +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 +#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis-audio [.ogg] invoegen" -#: ../../mod/admin.php:1287 -msgid "Log level" -msgstr "Logniveau" +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" +msgstr "Webpagina bewerken" -#: ../../mod/admin.php:1334 -msgid "New Profile Field" -msgstr "Nieuw profielveld" +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" +msgstr "Webpagina verwijderen?" -#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 -msgid "Field nickname" -msgstr "Bijnaam voor veld" +#: ../../mod/editwebpage.php:186 +msgid "Delete Webpage" +msgstr "Webpagina verwijderen" -#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 -msgid "System name of field" -msgstr "Systeemnaam voor veld" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" -#: ../../mod/admin.php:1336 ../../mod/admin.php:1357 -msgid "Input type" -msgstr "Invoertype" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "Field Name" -msgstr "Veldnaam" +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Ontvanger" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "Label on profile pages" -msgstr "Tekstlabel voor op profielpagina's" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 -msgid "Help text" -msgstr "Helptekst" +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Maak dit bericht privé" -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 -msgid "Additional info (optional)" -msgstr "Extra informatie (optioneel)" +#: ../../mod/blocks.php:62 +msgid "Block Name" +msgstr "Bloknaam" -#: ../../mod/admin.php:1349 -msgid "Field definition not found" -msgstr "Velddefinitie niet gevonden" +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Collectie aangemaakt" -#: ../../mod/admin.php:1355 -msgid "Edit Profile Field" -msgstr "Profielveld bewerken" +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Collectie kon niet aangemaakt worden" -#: ../../mod/thing.php:98 -msgid "Thing updated" -msgstr "Ding bijgewerkt" +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Collectie bijgewerkt." -#: ../../mod/thing.php:158 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Kanaalcollectie aanmaken" -#: ../../mod/thing.php:162 -msgid "Thing added" -msgstr "Ding toegevoegd" +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Naam collectie:" -#: ../../mod/thing.php:182 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../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/thing.php:234 -msgid "Show Thing" -msgstr "Ding weergeven" +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Collectie verwijderd" -#: ../../mod/thing.php:241 -msgid "item not found." -msgstr "Item niet gevonden" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Verwijderen collectie mislukt" -#: ../../mod/thing.php:272 -msgid "Edit Thing" -msgstr "Ding bewerken" +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Collectiebewerker" -#: ../../mod/thing.php:274 ../../mod/thing.php:321 -msgid "Select a profile" -msgstr "Kies een profiel" +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Kanalen" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Post an activity" -msgstr "Plaats een bericht" +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alle kanaalconnecties" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." +#: ../../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/thing.php:280 ../../mod/thing.php:326 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Label verwijderd" -#: ../../mod/thing.php:282 ../../mod/thing.php:327 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Verwijder itemlabel" -#: ../../mod/thing.php:284 ../../mod/thing.php:328 -msgid "URL for photo of thing (optional)" -msgstr "URL van foto van ding (optioneel)" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Kies een label om te verwijderen" -#: ../../mod/thing.php:319 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Item is niet aanwezig." -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Geen abonnementsbeperkingen gevonden." -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" +#: ../../mod/item.php:150 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " -#: ../../mod/import.php:73 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" +#: ../../mod/item.php:383 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" -#: ../../mod/import.php:79 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" +#: ../../mod/item.php:425 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../mod/import.php:103 -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/item.php:855 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../mod/import.php:121 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +#: ../../mod/item.php:1324 +#, 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/import.php:131 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." +#: ../../mod/item.php:1330 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." -#: ../../mod/import.php:394 -msgid "Import completed." -msgstr "Import voltooid." +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix - gasttoegang: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++" -#: ../../mod/import.php:406 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Afwezig" -#: ../../mod/import.php:411 -msgid "Import Channel" -msgstr "Kanaal importeren" +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" -#: ../../mod/import.php:412 -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/directory.php:223 +msgid "Finding:" +msgstr "Gezocht naar:" -#: ../../mod/import.php:413 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../mod/directory.php:228 +msgid "next page" +msgstr "volgende pagina" -#: ../../mod/import.php:414 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" +#: ../../mod/directory.php:228 +msgid "previous page" +msgstr "vorige pagina" -#: ../../mod/import.php:415 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" +#: ../../mod/directory.php:245 +msgid "No entries (some entries may be hidden)." +msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../mod/import.php:416 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profielovereenkomst" -#: ../../mod/import.php:417 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." -#: ../../mod/import.php:418 -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/match.php:61 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" -#: ../../mod/import.php:419 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Geen overeenkomsten" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" -#: ../../mod/invite.php:49 +#: ../../mod/siteinfo.php:90 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." +msgid "Version %s" +msgstr "Versie %s" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Uitnodiging voor de RedMatrix" +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plug-ins/add-ons/apps:" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plug-ins/add-ons/apps" -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." +#: ../../mod/siteinfo.php:132 +msgid "Red" +msgstr "Red" -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." +#: ../../mod/siteinfo.php:133 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een hub van de RedMatrix - een wereldwijd coöperatief netwerk van gedecentraliseerde websites met verbeterde privacy." -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" +#: ../../mod/siteinfo.php:138 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "Bezoek RedMatrix.me om meer te leren over de RedMatrix." -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" -#: ../../mod/invite.php:131 ../../mod/mail.php:225 ../../mod/mail.php:338 -msgid "Your message:" -msgstr "Jouw bericht:" +#: ../../mod/siteinfo.php:142 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me." +#: ../../mod/siteinfo.php:144 +msgid "Site Administrators" +msgstr "Hubbeheerders" -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Je moet deze uitnodigingscode opgeven:" +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):" +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:" +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "of bezoek " +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bewerken" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App maken" -#: ../../mod/item.php:146 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Naam van app" -#: ../../mod/item.php:379 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" +#: ../../mod/appman.php:91 ../../mod/appman.php:92 ../../mod/events.php:562 +#: ../../mod/events.php:581 +msgid "Required" +msgstr "Vereist" -#: ../../mod/item.php:421 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" -#: ../../mod/item.php:849 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL van pictogram" -#: ../../mod/item.php:1315 -#, 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/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" -#: ../../mod/item.php:1321 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versie-ID" -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "[Ingesloten inhoud - ververs pagina om te bekijken] " +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Prijs van de app" -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "Hulp voor dit onderdeel" +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" -#: ../../mod/layouts.php:85 -msgid "Layout Name" -msgstr "Naam layout" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Bron aangemaakt." + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Bron aangemaakt." + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" -#: ../../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/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" -#: ../../mod/like.php:21 +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Nieuwe bron" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 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." +"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/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ongeldig verzoek" +#: ../../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/like.php:119 -msgid "thing" -msgstr "ding" +#: ../../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/like.php:165 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Bron niet gevonden" -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Bron bewerken" -#: ../../mod/like.php:417 -msgid "Action completed." -msgstr "Actie voltooid" +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Bron verwijderen" -#: ../../mod/like.php:418 -msgid "Thank you." -msgstr "Bedankt" +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Bron verwijderd" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Verwijderen bron mislukt." -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Zichtbaar voor:" +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Openbare hubs" -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Geen 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/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bezoek het profiel van %s [%s]" +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "URL hub" -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" -msgstr "Connecties weergeven" +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Toegangstype" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Registratiebeleid" -#: ../../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/pubsites.php:25 ../../mod/profiles.php:440 +msgid "Location" +msgstr "Locatie" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#: ../../mod/import.php:25 #, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../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/import.php:51 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../mod/lostpass.php:63 +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" + +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" + +#: ../../mod/import.php:105 msgid "" -"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." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." -#: ../../mod/lostpass.php:85 ../../boot.php:1506 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" +#: ../../mod/import.php:123 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." +#: ../../mod/import.php:133 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" +#: ../../mod/import.php:451 +msgid "Import completed." +msgstr "Import voltooid." -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" +#: ../../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/lostpass.php:89 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" +#: ../../mod/import.php:468 +msgid "Import Channel" +msgstr "Kanaal importeren" -#: ../../mod/lostpass.php:90 +#: ../../mod/import.php:469 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." +"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/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" +#: ../../mod/import.php:470 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" +#: ../../mod/import.php:471 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." +#: ../../mod/import.php:472 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-mailadres" +#: ../../mod/import.php:473 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Opnieuw instellen" +#: ../../mod/import.php:474 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Hub niet gevonden." +#: ../../mod/import.php:475 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." + +#: ../../mod/import.php:476 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totaal aantal stemmen" +#: ../../mod/import.php:477 +msgid "Import existing posts if possible" +msgstr "Importeer bestaande berichten (wanneer mogelijk)" -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Gemiddeld cijfer" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" #: ../../mod/mail.php:33 msgid "Unable to lookup recipient." @@ -7466,698 +7411,633 @@ msgstr "Kan opgevraagd kanaal niet verifieren" msgid "Selected channel has private message restrictions. Send failed." msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." -#: ../../mod/mail.php:121 ../../mod/message.php:31 -msgid "Messages" -msgstr "Berichten" - -#: ../../mod/mail.php:132 +#: ../../mod/mail.php:135 msgid "Message deleted." msgstr "Bericht verwijderd." -#: ../../mod/mail.php:149 +#: ../../mod/mail.php:152 msgid "Message recalled." msgstr "Bericht ingetrokken." -#: ../../mod/mail.php:215 +#: ../../mod/mail.php:218 msgid "Send Private Message" msgstr "Privébericht versturen" -#: ../../mod/mail.php:216 ../../mod/mail.php:333 +#: ../../mod/mail.php:219 ../../mod/mail.php:336 msgid "To:" msgstr "Aan:" -#: ../../mod/mail.php:221 ../../mod/mail.php:335 +#: ../../mod/mail.php:224 ../../mod/mail.php:338 msgid "Subject:" msgstr "Onderwerp:" -#: ../../mod/mail.php:232 +#: ../../mod/mail.php:235 msgid "Send" msgstr "Verzenden" -#: ../../mod/mail.php:259 +#: ../../mod/mail.php:262 msgid "Message not found." msgstr "Bericht niet gevonden" -#: ../../mod/mail.php:302 ../../mod/message.php:72 +#: ../../mod/mail.php:305 msgid "Delete message" msgstr "Bericht verwijderen" -#: ../../mod/mail.php:303 +#: ../../mod/mail.php:306 msgid "Recall message" msgstr "Bericht intrekken" -#: ../../mod/mail.php:305 +#: ../../mod/mail.php:308 msgid "Message has been recalled." msgstr "Bericht is ingetrokken." -#: ../../mod/mail.php:322 +#: ../../mod/mail.php:325 msgid "Private Conversation" -msgstr "Privéconversatie" - -#: ../../mod/mail.php:326 -msgid "Delete conversation" -msgstr "Verwijder conversatie" - -#: ../../mod/mail.php:328 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." - -#: ../../mod/mail.php:332 -msgid "Send Reply" -msgstr "Antwoord versturen" - -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "Huidig kanaal" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "Gebruik een van jouw kanalen door op een te klikken." - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Standaardkanaal" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "Als standaard instellen" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "Kanaalfoto's" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profielovereenkomst" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." +msgstr "Privéconversatie" -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" +#: ../../mod/mail.php:331 +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/match.php:69 -msgid "No matches" -msgstr "Geen overeenkomsten" +#: ../../mod/mail.php:335 +msgid "Send Reply" +msgstr "Antwoord versturen" -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "Menu aangepast. " +#: ../../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/menu.php:25 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "Menu aangemaakt." +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:575 +msgid "Profile not found." +msgstr "Profiel niet gevonden." -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profiel verwijderd." -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "Menu's beheren" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profiel-" -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "Verwijderen" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "Een nieuwe menu aanmaken" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "Menu verwijderen" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "Dit menu bewerken" +#: ../../mod/profiles.php:390 +msgid "Marital Status" +msgstr "Huwelijke status" -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "Nieuw menu" +#: ../../mod/profiles.php:394 +msgid "Romantic Partner" +msgstr "Romantische partner" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "Naam van menu" +#: ../../mod/profiles.php:398 +msgid "Likes" +msgstr "Houdt van" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." +#: ../../mod/profiles.php:402 +msgid "Dislikes" +msgstr "Houdt niet van" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "Titel van menu" +#: ../../mod/profiles.php:406 +msgid "Work/Employment" +msgstr "Werk/arbeid" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." +#: ../../mod/profiles.php:409 +msgid "Religion" +msgstr "Religie" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../mod/profiles.php:413 +msgid "Political Views" +msgstr "Politieke overtuigingen" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" +#: ../../mod/profiles.php:417 +msgid "Gender" +msgstr "Geslacht" -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "Menu verwijderd." +#: ../../mod/profiles.php:421 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." +#: ../../mod/profiles.php:425 +msgid "Homepage" +msgstr "Homepage" -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "Menu bewerken" +#: ../../mod/profiles.php:429 +msgid "Interests" +msgstr "Interesses" -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" +#: ../../mod/profiles.php:523 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" +#: ../../mod/profiles.php:600 +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/message.php:56 -msgid "No messages." -msgstr "Geen berichten" +#: ../../mod/profiles.php:642 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, j M Y - G:i" +#: ../../mod/profiles.php:644 +msgid "View this profile" +msgstr "Profiel weergeven" -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Kanaal toevoegen" +#: ../../mod/profiles.php:646 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat." +#: ../../mod/profiles.php:647 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\"" +#: ../../mod/profiles.php:648 +msgid "Clone this profile" +msgstr "Dit profiel klonen" -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Kies een korte bijnaam" +#: ../../mod/profiles.php:649 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Jouw bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres (zoals een e-mailadres) aan te maken, die je dan kan delen met anderen." +#: ../../mod/profiles.php:651 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie." +#: ../../mod/profiles.php:652 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" -#: ../../mod/new_channel.php:118 -msgid "Channel Type" -msgstr "Kanaaltype" +#: ../../mod/profiles.php:653 +msgid "Profile Name:" +msgstr "Profielnaam:" -#: ../../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/profiles.php:654 +msgid "Your Full Name:" +msgstr "Jouw volledige naam:" -#: ../../mod/home.php:46 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix - "The Network"" +#: ../../mod/profiles.php:655 +msgid "Title/Description:" +msgstr "Titel/omschrijving:" -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +#: ../../mod/profiles.php:656 +msgid "Your Gender:" +msgstr "Jouw geslacht" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" +#: ../../mod/profiles.php:657 +#, php-format +msgid "Birthday (%s):" +msgstr "Geboortedag (%s)" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Annuleren" +#: ../../mod/profiles.php:658 +msgid "Street Address:" +msgstr "Straat en huisnummer:" -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." +#: ../../mod/profiles.php:659 +msgid "Locality/City:" +msgstr "Woonplaats:" -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Systeemnotificaties" +#: ../../mod/profiles.php:660 +msgid "Postal/Zip Code:" +msgstr "Postcode:" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" +#: ../../mod/profiles.php:661 +msgid "Country:" +msgstr "Land:" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." +#: ../../mod/profiles.php:662 +msgid "Region/State:" +msgstr "Provincie/gewest/deelstaat:" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "ongeldig doel-kenmerk (target signature)" +#: ../../mod/profiles.php:663 +msgid " Marital Status:" +msgstr " Huwelijkse staat:" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." +#: ../../mod/profiles.php:664 +msgid "Who: (if applicable)" +msgstr "Wie (wanneer toepasselijk):" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App geïnstalleerd" +#: ../../mod/profiles.php:665 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Misvormde app." +#: ../../mod/profiles.php:666 +msgid "Since [date]:" +msgstr "Sinds [datum]:" -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Insluitcode" +#: ../../mod/profiles.php:668 +msgid "Homepage URL:" +msgstr "Adres homepage:" -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bewerken" +#: ../../mod/profiles.php:671 +msgid "Religious Views:" +msgstr "Religieuze overtuigingen" -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App maken" +#: ../../mod/profiles.php:672 +msgid "Keywords:" +msgstr "Trefwoorden" -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Naam van app" +#: ../../mod/profiles.php:675 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" +#: ../../mod/profiles.php:676 +msgid "Used in directory listings" +msgstr "Wordt in de kanalengids gebruikt" -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL van pictogram" +#: ../../mod/profiles.php:677 +msgid "Tell us about yourself..." +msgstr "Vertel ons iets over jezelf..." -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" +#: ../../mod/profiles.php:678 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versie-ID" +#: ../../mod/profiles.php:679 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Prijs van de app" +#: ../../mod/profiles.php:680 +msgid "My other channels" +msgstr "Mijn andere kanalen" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" +#: ../../mod/profiles.php:681 +msgid "Musical interests" +msgstr "Muzikale interesses" -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Poll" +#: ../../mod/profiles.php:682 +msgid "Books, literature" +msgstr "Boeken/literatuur" -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Bekijk resultaten" +#: ../../mod/profiles.php:683 +msgid "Television" +msgstr "Televisie" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." +#: ../../mod/profiles.php:684 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/entertainment" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Verwijder dit account" +#: ../../mod/profiles.php:685 +msgid "Love/romance" +msgstr "Liefde/romantiek" -#: ../../mod/removeaccount.php:58 -msgid "" -"This will completely remove this account including all its channels from the" -" network. Once this has been done it is not recoverable." -msgstr "Deze actie verwijderd dit account volledig, inclusief al zijn kanalen. Dit kan hierna op geen enkele manier ongedaan gemaakt worden." +#: ../../mod/profiles.php:686 +msgid "Work/employment" +msgstr "Werk/arbeid" -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen" +#: ../../mod/profiles.php:687 +msgid "School/education" +msgstr "School/onderwijs" -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd." +#: ../../mod/profiles.php:693 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Geen abonnementsbeperkingen gevonden." +#: ../../mod/profiles.php:747 +msgid "Edit/Manage Profiles" +msgstr "Profielen bewerken/beheren" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Standaardschema" +#: ../../mod/profiles.php:748 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Schreefloos" +#: ../../mod/profiles.php:749 +msgid "Include desirable objects in your profile" +msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Thema-instellingen" +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" -#: ../../view/theme/apw/php/config.php:260 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" -msgstr "Schema van thema instellen" +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Lettergrootte voor berichten en reacties instellen" +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Geen kanaal." -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Lettertypefamilie instellen" +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Veel voorkomende connecties" -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Pictogrammenset instellen" +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Een grote schaduwgrootte instellen (standaard 15px 15px 15px)" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Een kleine schaduwgrootte instellen (standaard 5px 5px 5px)" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd." -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Schaduwkleur instellen (standaard #000)" +#: ../../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." -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Radius instellen, standaard 5px" +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ongeldig verzoek" -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Lijnhoogte voor berichten en reacties instellen" +#: ../../mod/like.php:119 +msgid "thing" +msgstr "ding" -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Achtergrondafbeelding instellen" +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Gedrag achtergrondafbeelding instellen" +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Achtergrondkleur instellen" +#: ../../mod/like.php:417 +msgid "Action completed." +msgstr "Actie voltooid" -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Achtergrondafbeelding van sectie instellen" +#: ../../mod/like.php:418 +msgid "Thank you." +msgstr "Bedankt" -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Achtergrondkleur van sectie instellen" +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Tekstkleur van items instellen (gebruik hexadecimaal)" +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" +msgstr "Systeemnotificaties" -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Kleur van links instellen (gebruik hexadecimaal)" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Maximale breedte van items instellen (standaard 400px)" +#: ../../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:" -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Minimale breedte van items instellen (standaard 240px)" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Breedte van de generieke content-wrapper instellen (standaard 48%)" +#: ../../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?" -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Tekstkleur instellen (gebruik hexadecimaal)" +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Grootte achtergrondafbeelding instellen" +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Ondoorzichtigheid item" +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Chatkanaal verwijderen" -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Alleen voorvertoning berichten weergeven" +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Zijbalk op kanaalpagina weergeven" +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Ik ben online" -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Kleur van de navigatiebalk" +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Item float" +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Linker offset van het sectie-element" +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Naam chatkanaal" -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Rechter offset van het sectie-element" +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Breedte van sectie" +#: ../../mod/events.php:91 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Rechter offset van aside (zijbalk)" +#: ../../mod/events.php:105 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Rechter offset van het aside-element" +#: ../../mod/events.php:369 +msgid "l, F j" +msgstr "l j F" -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "Geen" +#: ../../mod/events.php:391 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "Header-afbeelding" +#: ../../mod/events.php:437 +msgid "Create New Event" +msgstr "Nieuwe gebeurtenis aanmaken" -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "Header-afbeelding alleen op profielpagina's weergeven" +#: ../../mod/events.php:438 +msgid "Previous" +msgstr "Vorige" -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Light (Red Matrix default)" -msgstr "Light (RedMatrix-standaard)" +#: ../../mod/events.php:536 +msgid "hour:minute" +msgstr "uur:minuut" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Smalle navigatiebalk" +#: ../../mod/events.php:556 +msgid "Event details" +msgstr "Details van gebeurtenis" -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Achtergrondkleur navigatiebalk" +#: ../../mod/events.php:557 +#, php-format +msgid "Format is %s %s." +msgstr "Volgorde is %s %s." -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Bovenste gradiëntkleur navigatiebalk" +#: ../../mod/events.php:558 +msgid "Starting date and Title are required." +msgstr "Begintijd en titel zijn vereist." -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Onderste gradiëntkleur navigatiebalk" +#: ../../mod/events.php:562 +msgid "Event Starts:" +msgstr "Begin gebeurtenis:" -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Bovenste gradiëntkleur actieve knop navigatiebalk" +#: ../../mod/events.php:570 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/-tijd is niet bekend of niet relevant" -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Onderste gradiëntkleur actieve knop op navigatiebalk" +#: ../../mod/events.php:572 +msgid "Event Finishes:" +msgstr "Einde gebeurtenis:" -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Randkleur navigatiebalk " +#: ../../mod/events.php:575 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Pictogramkleur navigatiebalk" +#: ../../mod/events.php:577 +msgid "Description:" +msgstr "Omschrijving:" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Actieve pictogramkleur navigatiebalk" +#: ../../mod/events.php:581 +msgid "Title:" +msgstr "Titel:" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "Linkkleur instellen" +#: ../../mod/events.php:583 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Tekstkleur van banner instellen" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Achtergrondkleur instellen" +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Annuleren" -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Achtergrondafbeelding instellen" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Achtergrondkleur items instellen" +#: ../../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." -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Achtergrondkleur reacties instellen" +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Randkleur reacties instellen" +#: ../../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" -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Inspringen reacties instellen" +#: ../../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." -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Basiskleur itempictogrammen instellen" +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Hoverkleur itempictogrammen instellen" +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Tekstgrootte van de volledige applicatie instellen" +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Tekstkleur van berichten en reacties" +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Radius van hoeken instellen" +#: ../../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." -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Schaduwdiepte van foto's instellen" +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" -msgstr "Maximumbreedte conversatieruimte instellen" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" -msgstr "Centreer conversatieruimte" +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)" +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-mailadres" -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Grootte profielfoto's van berichten instellen" +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Opnieuw instellen" -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Grootte profielfoto's van reacties instellen" +#: ../../mod/layouts.php:62 +msgid "Help with this feature" +msgstr "Hulp voor dit onderdeel" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" -msgstr "Rommelig vormgegeven fotoalbums" +#: ../../mod/layouts.php:85 +msgid "Layout Name" +msgstr "Naam lay-out" -#: ../../view/theme/redbasic/php/config.php:133 -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?" +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../boot.php:1294 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s mislukt. Zie foutenlogboek." +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "Blok verwijderen" -#: ../../boot.php:1297 -#, php-format -msgid "Update Error at %s" -msgstr "Update-fout op %s" +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "Blok verwijderen" -#: ../../boot.php:1471 -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" +#: ../../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)." -#: ../../boot.php:1499 -msgid "Password" -msgstr "Wachtwoord" +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" +msgstr "Lay-out bewerken" -#: ../../boot.php:1500 -msgid "Remember me" -msgstr "Aangemeld blijven" +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" +msgstr "Lay-out verwijderen?" -#: ../../boot.php:1505 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" +msgstr "Lay-out verwijderen" -#: ../../boot.php:1570 -msgid "permission denied" -msgstr "toegang geweigerd" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanaal toegevoegd." -#: ../../boot.php:1571 -msgid "Got Zot?" -msgstr "Heb je Zot?" +#: ../../mod/locs.php:47 ../../mod/locs.php:74 +msgid "Location not found." +msgstr "Locatie niet gevonden." -#: ../../boot.php:2001 -msgid "toggle mobile" -msgstr "mobiele weergave omschakelen" +#: ../../mod/locs.php:78 +msgid "Primary location cannot be removed." +msgstr "Primaire locatie kan niet worden verwijderd." diff --git a/view/nl/strings.php b/view/nl/strings.php index 83eadca77..b4a0d111c 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -5,227 +5,233 @@ function string_plural_select_nl($n){ return ($n != 1);; }} ; -$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["view full size"] = "volledige grootte tonen"; -$a->strings["Embedded content"] = "Ingesloten inhoud"; -$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; -$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["Site Admin"] = "Hubbeheerder"; -$a->strings["Bookmarks"] = "Bladwijzers"; -$a->strings["Address Book"] = "Connecties"; +$a->strings["Light (Red Matrix default)"] = "Light (RedMatrix-standaard)"; +$a->strings["Submit"] = "Opslaan"; +$a->strings["Theme settings"] = "Thema-instellingen"; +$a->strings["Set scheme"] = "Schema van thema instellen"; +$a->strings["Narrow navbar"] = "Smalle navigatiebalk"; +$a->strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk"; +$a->strings["Navigation bar gradient top color"] = "Bovenste gradiëntkleur navigatiebalk"; +$a->strings["Navigation bar gradient bottom color"] = "Onderste gradiëntkleur navigatiebalk"; +$a->strings["Navigation active button gradient top color"] = "Bovenste gradiëntkleur actieve knop navigatiebalk"; +$a->strings["Navigation active button gradient bottom color"] = "Onderste gradiëntkleur actieve knop op navigatiebalk"; +$a->strings["Navigation bar border color "] = "Randkleur navigatiebalk "; +$a->strings["Navigation bar icon color "] = "Pictogramkleur navigatiebalk"; +$a->strings["Navigation bar active icon color "] = "Actieve pictogramkleur navigatiebalk"; +$a->strings["link color"] = "Linkkleur instellen"; +$a->strings["Set font-color for banner"] = "Tekstkleur van banner instellen"; +$a->strings["Set the background color"] = "Achtergrondkleur instellen"; +$a->strings["Set the background image"] = "Achtergrondafbeelding instellen"; +$a->strings["Set the background color of items"] = "Achtergrondkleur items instellen"; +$a->strings["Set the background color of comments"] = "Achtergrondkleur reacties instellen"; +$a->strings["Set the border color of comments"] = "Randkleur reacties instellen"; +$a->strings["Set the indent for comments"] = "Inspringen reacties instellen"; +$a->strings["Set the basic color for item icons"] = "Basiskleur itempictogrammen instellen"; +$a->strings["Set the hover color for item icons"] = "Hoverkleur itempictogrammen instellen"; +$a->strings["Set font-size for the entire application"] = "Tekstgrootte van de volledige applicatie instellen"; +$a->strings["Set font-size for posts and comments"] = "Lettergrootte voor berichten en reacties instellen"; +$a->strings["Set font-color for posts and comments"] = "Tekstkleur van berichten en reacties"; +$a->strings["Set radius of corners"] = "Radius van hoeken instellen"; +$a->strings["Set shadow depth of photos"] = "Schaduwdiepte van foto's instellen"; +$a->strings["Set maximum width of conversation regions"] = "Maximumbreedte conversatieruimte instellen"; +$a->strings["Center conversation regions"] = "Centreer conversatieruimte"; +$a->strings["Set minimum opacity of nav bar - to hide it"] = "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)"; +$a->strings["Set size of conversation author photo"] = "Grootte profielfoto's van berichten instellen"; +$a->strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen"; +$a->strings["Sloppy photo albums"] = "Rommelig vormgegeven fotoalbums"; +$a->strings["Are you a clean desk or a messy desk person?"] = "Ben je iemand die van een opgeruimd bureau houdt of van een rommelig bureau?"; +$a->strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; +$a->strings["Update Error at %s"] = "Update-fout op %s"; +$a->strings["Create an account to access services and applications within the Red Matrix"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix"; +$a->strings["Register"] = "Registreren "; +$a->strings["Logout"] = "Uitloggen"; $a->strings["Login"] = "Inloggen"; -$a->strings["Channel Manager"] = "Kanaalbeheer"; -$a->strings["Matrix"] = "Matrix"; -$a->strings["Settings"] = "Instellingen"; +$a->strings["Email"] = "E-mail"; +$a->strings["Password"] = "Wachtwoord"; +$a->strings["Remember me"] = "Aangemeld blijven"; +$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; +$a->strings["Password Reset"] = "Wachtwoord vergeten?"; +$a->strings["permission denied"] = "toegang geweigerd"; +$a->strings["Got Zot?"] = "Heb je Zot?"; +$a->strings["toggle mobile"] = "mobiele weergave omschakelen"; +$a->strings["Logged out."] = "Uitgelogd."; +$a->strings["Failed authentication"] = "Mislukte authenticatie"; +$a->strings["Login failed."] = "Inloggen mislukt."; +$a->strings["Default"] = "Standaard"; +$a->strings["parent"] = "omhoog"; +$a->strings["Collection"] = "map"; +$a->strings["Principal"] = "principal"; +$a->strings["Addressbook"] = "Adresboek"; +$a->strings["Calendar"] = "Agenda"; +$a->strings["Schedule Inbox"] = "Planning-postvak IN"; +$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; +$a->strings["Unknown"] = "Onbekend"; +$a->strings["%1\$s used"] = "%1\$s gebruikt"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s van %2\$s gebruikt (%3\$s%)"; $a->strings["Files"] = "Bestanden"; -$a->strings["Webpages"] = "Webpagina's"; -$a->strings["Channel Home"] = "Tijdlijn kanaal"; -$a->strings["Profile"] = "Profiel"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Events"] = "Gebeurtenissen"; -$a->strings["Directory"] = "Gids"; -$a->strings["Help"] = "Hulp"; -$a->strings["Mail"] = "Privéberichten"; -$a->strings["Mood"] = "Stemming"; -$a->strings["Poke"] = "Aanstoten"; -$a->strings["Chat"] = "Chatten"; -$a->strings["Search"] = "Zoeken"; -$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["Name"] = "Naam"; +$a->strings["Type"] = "Type"; +$a->strings["Size"] = "Grootte"; +$a->strings["Last Modified"] = "Laatst gewijzigd"; $a->strings["Edit"] = "Bewerken"; $a->strings["Delete"] = "Verwijderen"; -$a->strings["Unknown"] = "Onbekend"; -$a->strings["New Page"] = "Nieuwe pagina"; -$a->strings["View"] = "Weergeven"; -$a->strings["Preview"] = "Voorvertoning"; -$a->strings["Actions"] = "Acties"; -$a->strings["Page Link"] = "Paginalink"; -$a->strings["Title"] = "Titel"; -$a->strings["Created"] = "Aangemaakt"; -$a->strings["Edited"] = "Bewerkt"; -$a->strings["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["Invalid data packet"] = "Datapakket ongeldig"; -$a->strings["Unable to verify channel signature"] = "Kanaal-kenmerk (channel signature) kon niet worden geverifieerd. "; -$a->strings["Unable to verify site signature for %s"] = "Hub-kenmerk (site signature) voor %s kon niet worden geverifieerd"; +$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["Permission denied."] = "Toegang geweigerd"; +$a->strings["Profile Photos"] = "Profielfoto's"; $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["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["%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["Exammple: name=fred and country=iceland"] = "Voorbeeld: (voor naam) name=herman en (voor land) country=nederland"; +$a->strings["Advanced Find"] = "Geavanceerd zoeken"; +$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[" 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["Public Timeline"] = "Openbare tijdlijn"; -$a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["No source file."] = "Geen bronbestand."; -$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -$a->strings["Path not available."] = "Pad niet beschikbaar."; -$a->strings["Empty pathname"] = "Padnaam leeg"; -$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -$a->strings["Path not found."] = "Pad niet gevonden"; -$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -$a->strings["database storage failed."] = "opslag in database mislukt."; -$a->strings["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["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["Connect"] = "Verbinden"; +$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["Miscellaneous"] = "Diversen"; +$a->strings["year"] = "jaar"; +$a->strings["month"] = "maand"; +$a->strings["day"] = "dag"; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["years"] = "jaren"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$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["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; +$a->strings["Empty name"] = "Ontbrekende naam"; +$a->strings["Name too long"] = "Naam te lang"; +$a->strings["No account identifier"] = "Geen account-identificator"; +$a->strings["Nickname is required."] = "Bijnaam is verplicht"; +$a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; +$a->strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; +$a->strings["Default Profile"] = "Standaardprofiel"; +$a->strings["Friends"] = "Vrienden"; +$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; +$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; +$a->strings["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["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["Click to authenticate to your home hub"] = "Klik om jezelf te authenticeren via jouw eigen 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["Apps"] = "Apps"; -$a->strings["Applications, utilities, links, games"] = "Apps"; -$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; -$a->strings["Channel Locator"] = "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["New Message"] = "Nieuw bericht"; -$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["Nothing new here"] = "Niets nieuw hier"; -$a->strings["Please wait..."] = "Wachten aub..."; -$a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -$a->strings["prev"] = "vorige"; -$a->strings["first"] = "eerste"; -$a->strings["last"] = "laatste"; -$a->strings["next"] = "volgende"; -$a->strings["older"] = "ouder"; -$a->strings["newer"] = "nieuwer"; -$a->strings["No connections"] = "Geen connecties"; -$a->strings["%d Connection"] = array( - 0 => "%d connectie", - 1 => "%d connecties", +$a->strings["Profile Image"] = "Profielfoto"; +$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; +$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; +$a->strings["Location:"] = "Plaats:"; +$a->strings["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepagina:"; +$a->strings["Online Now"] = "Nu online"; +$a->strings["g A l F d"] = "G:i, l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[vandaag]"; +$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; +$a->strings["[No description]"] = "[Geen omschrijving]"; +$a->strings["Event Reminders"] = "Herinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["Profile"] = "Profiel"; +$a->strings["Full Name:"] = "Volledige naam:"; +$a->strings["Like this channel"] = "Vind dit kanaal leuk"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", ); -$a->strings["View Connections"] = "Connecties weergeven"; -$a->strings["Save"] = "Opslaan"; -$a->strings["poke"] = "aanstoten"; -$a->strings["poked"] = "aangestoten"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = "gepingd"; -$a->strings["prod"] = "por"; -$a->strings["prodded"] = "gepord"; -$a->strings["slap"] = "slaan"; -$a->strings["slapped"] = "sloeg"; -$a->strings["finger"] = "finger"; -$a->strings["fingered"] = "gefingerd"; -$a->strings["rebuff"] = "afpoeieren"; -$a->strings["rebuffed"] = "afgepoeierd"; -$a->strings["happy"] = "gelukkig"; -$a->strings["sad"] = "bedroefd"; -$a->strings["mellow"] = "mellow"; -$a->strings["tired"] = "moe"; -$a->strings["perky"] = "parmantig"; -$a->strings["angry"] = "boos"; -$a->strings["stupified"] = "beteuterd"; -$a->strings["puzzled"] = "verward"; -$a->strings["interested"] = "geïnteresseerd"; -$a->strings["bitter"] = "verbitterd"; -$a->strings["cheerful"] = "vrolijk"; -$a->strings["alive"] = "levendig"; -$a->strings["annoyed"] = "geërgerd"; -$a->strings["anxious"] = "bezorgd"; -$a->strings["cranky"] = "humeurig"; -$a->strings["disturbed"] = "verontrust"; -$a->strings["frustrated"] = "gefrustreerd "; -$a->strings["depressed"] = "gedeprimeerd"; -$a->strings["motivated"] = "gemotiveerd"; -$a->strings["relaxed"] = "ontspannen"; -$a->strings["surprised"] = "verrast"; -$a->strings["Monday"] = "maandag"; -$a->strings["Tuesday"] = "dinsdag"; -$a->strings["Wednesday"] = "woensdag"; -$a->strings["Thursday"] = "donderdag"; -$a->strings["Friday"] = "vrijdag"; -$a->strings["Saturday"] = "zaterdag"; -$a->strings["Sunday"] = "zondag"; -$a->strings["January"] = "januari"; -$a->strings["February"] = "februari"; -$a->strings["March"] = "maart"; -$a->strings["April"] = "april"; -$a->strings["May"] = "mei"; -$a->strings["June"] = "juni"; -$a->strings["July"] = "juli"; -$a->strings["August"] = "augustus"; -$a->strings["September"] = "september"; -$a->strings["October"] = "oktober"; -$a->strings["November"] = "november"; -$a->strings["December"] = "december"; -$a->strings["unknown.???"] = "onbekend.???"; -$a->strings["bytes"] = "bytes"; -$a->strings["remove category"] = "categorie verwijderen"; -$a->strings["remove from file"] = "uit map verwijderen"; -$a->strings["Click to open/close"] = "Klik om te openen of te sluiten"; -$a->strings["Link to Source"] = "Originele locatie"; -$a->strings["Select a page layout: "] = "Kies een paginalayout: "; -$a->strings["default"] = "standaard"; -$a->strings["Page content type: "] = "Opmaakcode pagina"; -$a->strings["Select an alternate language"] = "Kies een andere taal"; -$a->strings["photo"] = "foto"; -$a->strings["event"] = "gebeurtenis"; -$a->strings["status"] = "bericht"; -$a->strings["comment"] = "reactie"; -$a->strings["activity"] = "activiteit"; -$a->strings["Design"] = "Ontwerp"; -$a->strings["Blocks"] = "Blokken"; -$a->strings["Menus"] = "Menu's"; -$a->strings["Layouts"] = "Layouts"; -$a->strings["Pages"] = "Pagina's"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Geboortedatum:"; +$a->strings["Age:"] = "Leeftijd:"; +$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; +$a->strings["Hometown:"] = "Oorspronkelijk uit:"; +$a->strings["Tags:"] = "Trefwoorden:"; +$a->strings["Political Views:"] = "Politieke overtuigingen:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["About:"] = "Over:"; +$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; +$a->strings["Likes:"] = "Houdt van:"; +$a->strings["Dislikes:"] = "Houdt niet van:"; +$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +$a->strings["My other channels:"] = "Mijn andere kanalen"; +$a->strings["Musical interests:"] = "Muzikale interesses:"; +$a->strings["Books, literature:"] = "Boeken, literatuur:"; +$a->strings["Television:"] = "Televisie:"; +$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; +$a->strings["Love/Romance:"] = "Liefde/romantiek:"; +$a->strings["Work/employment:"] = "Werk/beroep:"; +$a->strings["School/education:"] = "School/opleiding:"; +$a->strings["Like this thing"] = "Vind dit ding leuk"; +$a->strings["New Page"] = "Nieuwe pagina"; +$a->strings["View"] = "Weergeven"; +$a->strings["Preview"] = "Voorvertoning"; +$a->strings["Actions"] = "Acties"; +$a->strings["Page Link"] = "Paginalink"; +$a->strings["Title"] = "Titel"; +$a->strings["Created"] = "Aangemaakt"; +$a->strings["Edited"] = "Bewerkt"; +$a->strings["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["Tags"] = "Labels"; $a->strings["Keywords"] = "Trefwoorden"; $a->strings["have"] = "heb"; @@ -236,11 +242,68 @@ $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["Default"] = "Standaard"; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; +$a->strings["Comment"] = "Reactie"; +$a->strings["[+] show all"] = "[+] alle"; +$a->strings["[-] show less"] = "[-] minder reacties weergeven"; +$a->strings["[+] expand"] = "[+] uitklappen"; +$a->strings["[-] collapse"] = "[-] inklappen"; +$a->strings["Password too short"] = "Wachtwoord te kort"; +$a->strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; +$a->strings["everybody"] = "iedereen"; +$a->strings["Secret Passphrase"] = "Geheim wachtwoord"; +$a->strings["Passphrase hint"] = "Wachtwoordhint"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen."; +$a->strings["close all"] = "Alles sluiten"; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +$a->strings["ago"] = "geleden"; +$a->strings["from now"] = "vanaf nu"; +$a->strings["less than a minute"] = "minder dan een minuut"; +$a->strings["about a minute"] = "ongeveer een minuut"; +$a->strings["%d minutes"] = "%d minuten"; +$a->strings["about an hour"] = "ongeveer een uur"; +$a->strings["about %d hours"] = "ongeveer %d uren"; +$a->strings["a day"] = "een dag"; +$a->strings["%d days"] = "%d dagen"; +$a->strings["about a month"] = "ongeveer een maand"; +$a->strings["%d months"] = "%d maanden"; +$a->strings["about a year"] = "ongeveer een jaar"; +$a->strings["%d years"] = "%d jaren"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; +$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 kanalen met een groep- cq. forumfunctie"; +$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["Celebrity/Soapbox"] = "Beroemdheid/alleen volgen"; +$a->strings["Other"] = "Anders"; +$a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; $a->strings["Frequently"] = "Regelmatig"; $a->strings["Hourly"] = "Elk uur"; $a->strings["Twice daily"] = "Twee keer per dag"; @@ -250,80 +313,254 @@ $a->strings["Monthly"] = "Maandelijks"; $a->strings["Friendica"] = "Friendica"; $a->strings["OStatus"] = "OStatus"; $a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-mail"; $a->strings["Diaspora"] = "Diaspora"; $a->strings["Facebook"] = "Facebook"; $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["MySpace"] = "MySpace"; -$a->strings["%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["Exammple: name=fred and country=iceland"] = "Voorbeeld: (voor naam) name=herman en (voor land) country=nederland"; -$a->strings["Advanced Find"] = "Geavanceerd zoeken"; -$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["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Starts:"] = "Start:"; $a->strings["Finishes:"] = "Einde:"; -$a->strings["Location:"] = "Plaats:"; $a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -$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"] = "Registratieverzoek op %s"; -$a->strings["Administrator"] = "Beheerder"; -$a->strings["your registration password"] = "jouw registratiewachtwoord"; -$a->strings["Registration details for %s"] = "Registratiedetails 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["Male"] = "Man"; +$a->strings["Female"] = "Vrouw"; +$a->strings["Currently Male"] = "Momenteel man"; +$a->strings["Currently Female"] = "Momenteel vrouw"; +$a->strings["Mostly Male"] = "Voornamelijk man"; +$a->strings["Mostly Female"] = "Voornamelijk vrouw"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Interseksueel"; +$a->strings["Transsexual"] = "Transseksueel"; +$a->strings["Hermaphrodite"] = "Hermafrodiet"; +$a->strings["Neuter"] = "Genderneutraal"; +$a->strings["Non-specific"] = "Niet gespecificeerd"; +$a->strings["Undecided"] = "Nog niet beslist"; +$a->strings["Males"] = "Mannen"; +$a->strings["Females"] = "Vrouwen"; +$a->strings["Gay"] = "Homoseksueel"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Geen voorkeur"; +$a->strings["Bisexual"] = "Biseksueel"; +$a->strings["Autosexual"] = "Autoseksueel"; +$a->strings["Abstinent"] = "Seksuele onthouding"; +$a->strings["Virgin"] = "Maagd"; +$a->strings["Deviant"] = "Afwijkend"; +$a->strings["Fetish"] = "Fetisj"; +$a->strings["Oodles"] = "Veel"; +$a->strings["Nonsexual"] = "Aseksueel"; +$a->strings["Single"] = "Alleen"; +$a->strings["Lonely"] = "Eenzaam"; +$a->strings["Available"] = "Beschikbaar"; +$a->strings["Unavailable"] = "Niet beschikbaar"; +$a->strings["Has crush"] = "Heeft een oogje op iemand"; +$a->strings["Infatuated"] = "Smoorverliefd"; +$a->strings["Dating"] = "Aan het daten"; +$a->strings["Unfaithful"] = "Ontrouw"; +$a->strings["Sex Addict"] = "Seksverslaafd"; +$a->strings["Friends/Benefits"] = "Vriendschap plus"; +$a->strings["Casual"] = "Ongebonden/vluchtig"; +$a->strings["Engaged"] = "Verloofd"; +$a->strings["Married"] = "Getrouwd"; +$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Samenwonend"; +$a->strings["Common law"] = "Common-law-huwelijk"; +$a->strings["Happy"] = "Gelukkig"; +$a->strings["Not looking"] = "Niet op zoek"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Verraden"; +$a->strings["Separated"] = "Uit elkaar"; +$a->strings["Unstable"] = "Onstabiel"; +$a->strings["Divorced"] = "Gescheiden"; +$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +$a->strings["Widowed"] = "Weduwnaar/weduwe"; +$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["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"] = "Registratieverzoek op %s"; +$a->strings["Administrator"] = "Beheerder"; +$a->strings["your registration password"] = "jouw registratiewachtwoord"; +$a->strings["Registration details for %s"] = "Registratiedetails 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["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; -$a->strings["Miscellaneous"] = "Diversen"; -$a->strings["year"] = "jaar"; -$a->strings["month"] = "maand"; -$a->strings["day"] = "dag"; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["years"] = "jaren"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$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["Embedded content"] = "Ingesloten inhoud"; +$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; +$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["view full size"] = "volledige grootte tonen"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; +$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; +$a->strings["All Channels"] = "Alle kanalen"; +$a->strings["edit"] = "bewerken"; +$a->strings["Collections"] = "Collecties"; +$a->strings["Edit collection"] = "Collectie bewerken"; +$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken"; +$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; +$a->strings["add"] = "toevoegen"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["No source file."] = "Geen bronbestand."; +$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +$a->strings["Path not available."] = "Pad niet beschikbaar."; +$a->strings["Empty pathname"] = "Padnaam leeg"; +$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; +$a->strings["Path not found."] = "Pad niet gevonden"; +$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +$a->strings["database storage failed."] = "opslag in database mislukt."; +$a->strings["Private Message"] = "Privébericht"; +$a->strings["Select"] = "Kies"; +$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["Message signature validated"] = "Berichtkenmerk gevalideerd"; +$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; +$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["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[" from %s"] = " van %s"; +$a->strings["last edited: %s"] = "laatst bewerkt: %s"; +$a->strings["Expires: %s"] = "Verloopt: %s"; +$a->strings["Save Bookmarks"] = "Bladwijzers opslaan"; +$a->strings["Add to Calendar"] = "Aan agenda toevoegen"; +$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk"; +$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +$a->strings["Close"] = "Sluiten"; +$a->strings["Please wait"] = "Even wachten"; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties weergeven", +); +$a->strings["This is you"] = "Dit ben jij"; +$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["Encrypt text"] = "Tekst versleutelen"; +$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["prev"] = "vorige"; +$a->strings["first"] = "eerste"; +$a->strings["last"] = "laatste"; +$a->strings["next"] = "volgende"; +$a->strings["older"] = "ouder"; +$a->strings["newer"] = "nieuwer"; +$a->strings["No connections"] = "Geen connecties"; +$a->strings["%d Connection"] = array( + 0 => "%d connectie", + 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"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "gepingd"; +$a->strings["prod"] = "por"; +$a->strings["prodded"] = "gepord"; +$a->strings["slap"] = "slaan"; +$a->strings["slapped"] = "sloeg"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "gefingerd"; +$a->strings["rebuff"] = "afpoeieren"; +$a->strings["rebuffed"] = "afgepoeierd"; +$a->strings["happy"] = "gelukkig"; +$a->strings["sad"] = "bedroefd"; +$a->strings["mellow"] = "mellow"; +$a->strings["tired"] = "moe"; +$a->strings["perky"] = "parmantig"; +$a->strings["angry"] = "boos"; +$a->strings["stupified"] = "beteuterd"; +$a->strings["puzzled"] = "verward"; +$a->strings["interested"] = "geïnteresseerd"; +$a->strings["bitter"] = "verbitterd"; +$a->strings["cheerful"] = "vrolijk"; +$a->strings["alive"] = "levendig"; +$a->strings["annoyed"] = "geërgerd"; +$a->strings["anxious"] = "bezorgd"; +$a->strings["cranky"] = "humeurig"; +$a->strings["disturbed"] = "verontrust"; +$a->strings["frustrated"] = "gefrustreerd "; +$a->strings["depressed"] = "gedeprimeerd"; +$a->strings["motivated"] = "gemotiveerd"; +$a->strings["relaxed"] = "ontspannen"; +$a->strings["surprised"] = "verrast"; +$a->strings["Monday"] = "maandag"; +$a->strings["Tuesday"] = "dinsdag"; +$a->strings["Wednesday"] = "woensdag"; +$a->strings["Thursday"] = "donderdag"; +$a->strings["Friday"] = "vrijdag"; +$a->strings["Saturday"] = "zaterdag"; +$a->strings["Sunday"] = "zondag"; +$a->strings["January"] = "januari"; +$a->strings["February"] = "februari"; +$a->strings["March"] = "maart"; +$a->strings["April"] = "april"; +$a->strings["May"] = "mei"; +$a->strings["June"] = "juni"; +$a->strings["July"] = "juli"; +$a->strings["August"] = "augustus"; +$a->strings["September"] = "september"; +$a->strings["October"] = "oktober"; +$a->strings["November"] = "november"; +$a->strings["December"] = "december"; +$a->strings["unknown.???"] = "onbekend.???"; +$a->strings["bytes"] = "bytes"; +$a->strings["remove category"] = "categorie verwijderen"; +$a->strings["remove from file"] = "uit map verwijderen"; +$a->strings["Click to open/close"] = "Klik om te openen of te sluiten"; +$a->strings["Link to Source"] = "Originele locatie"; +$a->strings["Select a page layout: "] = "Kies een paginalay-out: "; +$a->strings["default"] = "standaard"; +$a->strings["Page content type: "] = "Opmaakcode pagina"; +$a->strings["Select an alternate language"] = "Kies een andere taal"; +$a->strings["photo"] = "foto"; +$a->strings["event"] = "gebeurtenis"; +$a->strings["status"] = "bericht"; +$a->strings["comment"] = "reactie"; +$a->strings["activity"] = "activiteit"; +$a->strings["Design"] = "Ontwerp"; +$a->strings["Blocks"] = "Blokken"; +$a->strings["Menus"] = "Menu's"; +$a->strings["Layouts"] = "Lay-outs"; +$a->strings["Pages"] = "Pagina's"; $a->strings["Sort Options"] = "Sorteeropties"; $a->strings["Alphabetic"] = "Alfabetisch"; $a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; @@ -331,12 +568,19 @@ $a->strings["Newest to Oldest"] = "Nieuw naar oud"; $a->strings["Enable Safe Search"] = "Veilig zoeken inschakelen"; $a->strings["Disable Safe Search"] = "Veilig zoeken uitschakelen"; $a->strings["Safe Mode"] = "Veilig zoeken"; -$a->strings["Attachments:"] = "Bijlagen:"; -$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["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."; @@ -372,49 +616,166 @@ $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["parent"] = "omhoog"; -$a->strings["Collection"] = "map"; -$a->strings["Principal"] = "principal"; -$a->strings["Addressbook"] = "Adresboek"; -$a->strings["Calendar"] = "Agenda"; -$a->strings["Schedule Inbox"] = "Planning-postvak IN"; -$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; -$a->strings["%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["Name"] = "Naam"; -$a->strings["Type"] = "Type"; -$a->strings["Size"] = "Grootte"; -$a->strings["Last Modified"] = "Laatst gewijzigd"; -$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["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 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["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["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 site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; +$a->strings["Directory"] = "Gids"; +$a->strings["Channel Locator"] = "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["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["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["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["Site Admin"] = "Hubbeheerder"; +$a->strings["Address Book"] = "Connecties"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Poke"] = "Aanstoten"; +$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["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"] = "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"; $a->strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; $a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; $a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; -$a->strings["Select"] = "Kies"; -$a->strings["Private Message"] = "Privébericht"; -$a->strings["Message is verified"] = "Bericht is geverifieerd"; $a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; $a->strings["Categories:"] = "Categorieën:"; $a->strings["Filed under:"] = "Bewaard onder:"; -$a->strings[" from %s"] = " van %s"; -$a->strings["last edited: %s"] = "laatst bewerkt: %s"; -$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 Photos"] = "Foto's weergeven"; $a->strings["Matrix Activity"] = "Activiteit in de RedMatrix"; -$a->strings["Connect"] = "Verbinden"; $a->strings["Edit Contact"] = "Contact bewerken"; $a->strings["Send PM"] = "Privébericht verzenden"; $a->strings["%s likes this."] = "%s vindt dit leuk."; @@ -466,7 +827,6 @@ $a->strings["permissions"] = "permissies"; $a->strings["Public post"] = "Openbaar bericht"; $a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be"; $a->strings["Set expiration date"] = "Verloopdatum instellen"; -$a->strings["Encrypt text"] = "Tekst versleutelen"; $a->strings["OK"] = "OK"; $a->strings["Cancel"] = "Annuleren"; $a->strings["Discover"] = "Ontdekken"; @@ -491,170 +851,11 @@ $a->strings["Files and Storage"] = "Bestanden en opslagruimte"; $a->strings["Chatrooms"] = "Chatkanalen"; $a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; $a->strings["Manage Webpages"] = "Webpagina's beheren"; -$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["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["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["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["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["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; -$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; -$a->strings["All Channels"] = "Alle kanalen"; -$a->strings["edit"] = "bewerken"; -$a->strings["Collections"] = "Collecties"; -$a->strings["Edit collection"] = "Collectie bewerken"; -$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken"; -$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; -$a->strings["add"] = "toevoegen"; -$a->strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; -$a->strings["Empty name"] = "Ontbrekende naam"; -$a->strings["Name too long"] = "Naam te lang"; -$a->strings["No account identifier"] = "Geen account-identificator"; -$a->strings["Nickname is required."] = "Bijnaam is verplicht"; -$a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; -$a->strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; -$a->strings["Default Profile"] = "Standaardprofiel"; -$a->strings["Friends"] = "Vrienden"; -$a->strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; -$a->strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; -$a->strings["Change profile photo"] = "Profielfoto veranderen"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Profielen beheren/bewerken"; -$a->strings["Create New Profile"] = "Nieuw profiel aanmaken"; -$a->strings["Profile Image"] = "Profielfoto"; -$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; -$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; -$a->strings["Gender:"] = "Geslacht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepagina:"; -$a->strings["Online Now"] = "Nu online"; -$a->strings["g A l F d"] = "G:i, l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[vandaag]"; -$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; -$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; -$a->strings["[No description]"] = "[Geen omschrijving]"; -$a->strings["Event Reminders"] = "Herinneringen voor gebeurtenissen"; -$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["Full Name:"] = "Volledige naam:"; -$a->strings["Like this channel"] = "Vind dit kanaal leuk"; -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Geboortedatum:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; -$a->strings["Hometown:"] = "Oorspronkelijk uit:"; -$a->strings["Tags:"] = "Trefwoorden:"; -$a->strings["Political Views:"] = "Politieke overtuigingen:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["About:"] = "Over:"; -$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -$a->strings["Likes:"] = "Houdt van:"; -$a->strings["Dislikes:"] = "Houdt niet van:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["My other channels:"] = "Mijn andere kanalen"; -$a->strings["Musical interests:"] = "Muzikale interesses:"; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie:"; -$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -$a->strings["Love/Romance:"] = "Liefde/romantiek:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Like this thing"] = "Vind dit ding leuk"; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["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 wrote:"] = "$1 schreef:"; -$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["Attachments:"] = "Bijlagen:"; +$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["System"] = "Systeem"; $a->strings["Create Personal App"] = "Persoonlijke app maken"; $a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; @@ -685,206 +886,21 @@ $a->strings["Export channel"] = "Kanaal exporteren"; $a->strings["Export content"] = "Inhoud exporteren"; $a->strings["Automatic Permissions (Advanced)"] = "Automatische permissies (geavanceerd)"; $a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +$a->strings["Messages"] = "Berichten"; $a->strings["Check Mail"] = "Controleer op nieuwe berichten"; $a->strings["Chat Rooms"] = "Chatkanalen"; $a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; $a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -$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["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["__ctx:noun__ Likes"] = "vinden dit leuk"; -$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -$a->strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties weergeven", -); -$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["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["[-] show less"] = "[-] minder reacties weergeven"; -$a->strings["[+] expand"] = "[+] uitklappen"; -$a->strings["[-] collapse"] = "[-] inklappen"; -$a->strings["Password too short"] = "Wachtwoord te kort"; -$a->strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; -$a->strings["everybody"] = "iedereen"; -$a->strings["Secret Passphrase"] = "Geheim wachtwoord"; -$a->strings["Passphrase hint"] = "Wachtwoordhint"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen."; -$a->strings["close all"] = "Alles sluiten"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -$a->strings["ago"] = "geleden"; -$a->strings["from now"] = "vanaf nu"; -$a->strings["less than a minute"] = "minder dan een minuut"; -$a->strings["about a minute"] = "ongeveer een minuut"; -$a->strings["%d minutes"] = "%d minuten"; -$a->strings["about an hour"] = "ongeveer een uur"; -$a->strings["about %d hours"] = "ongeveer %d uren"; -$a->strings["a day"] = "een dag"; -$a->strings["%d days"] = "%d dagen"; -$a->strings["about a month"] = "ongeveer een maand"; -$a->strings["%d months"] = "%d maanden"; -$a->strings["about a year"] = "ongeveer een jaar"; -$a->strings["%d years"] = "%d jaren"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; -$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["Male"] = "Man"; -$a->strings["Female"] = "Vrouw"; -$a->strings["Currently Male"] = "Momenteel man"; -$a->strings["Currently Female"] = "Momenteel vrouw"; -$a->strings["Mostly Male"] = "Voornamelijk man"; -$a->strings["Mostly Female"] = "Voornamelijk vrouw"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Interseksueel"; -$a->strings["Transsexual"] = "Transseksueel"; -$a->strings["Hermaphrodite"] = "Hermafrodiet"; -$a->strings["Neuter"] = "Genderneutraal"; -$a->strings["Non-specific"] = "Niet gespecificeerd"; -$a->strings["Other"] = "Anders"; -$a->strings["Undecided"] = "Nog niet beslist"; -$a->strings["Males"] = "Mannen"; -$a->strings["Females"] = "Vrouwen"; -$a->strings["Gay"] = "Homoseksueel"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Geen voorkeur"; -$a->strings["Bisexual"] = "Biseksueel"; -$a->strings["Autosexual"] = "Autoseksueel"; -$a->strings["Abstinent"] = "Seksuele onthouding"; -$a->strings["Virgin"] = "Maagd"; -$a->strings["Deviant"] = "Afwijkend"; -$a->strings["Fetish"] = "Fetisj"; -$a->strings["Oodles"] = "Veel"; -$a->strings["Nonsexual"] = "Aseksueel"; -$a->strings["Single"] = "Alleen"; -$a->strings["Lonely"] = "Eenzaam"; -$a->strings["Available"] = "Beschikbaar"; -$a->strings["Unavailable"] = "Niet beschikbaar"; -$a->strings["Has crush"] = "Heeft een oogje op iemand"; -$a->strings["Infatuated"] = "Smoorverliefd"; -$a->strings["Dating"] = "Aan het daten"; -$a->strings["Unfaithful"] = "Ontrouw"; -$a->strings["Sex Addict"] = "Seksverslaafd"; -$a->strings["Friends/Benefits"] = "Vriendschap plus"; -$a->strings["Casual"] = "Ongebonden/vluchtig"; -$a->strings["Engaged"] = "Verloofd"; -$a->strings["Married"] = "Getrouwd"; -$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Samenwonend"; -$a->strings["Common law"] = "Common-law-huwelijk"; -$a->strings["Happy"] = "Gelukkig"; -$a->strings["Not looking"] = "Niet op zoek"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Verraden"; -$a->strings["Separated"] = "Uit elkaar"; -$a->strings["Unstable"] = "Onstabiel"; -$a->strings["Divorced"] = "Gescheiden"; -$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -$a->strings["Widowed"] = "Weduwnaar/weduwe"; -$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["Logged out."] = "Uitgelogd."; -$a->strings["Failed authentication"] = "Mislukte authenticatie"; -$a->strings["Login failed."] = "Inloggen mislukt."; -$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 kanalen met een groep- cq. forumfunctie"; -$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["Celebrity/Soapbox"] = "Beroemdheid/alleen volgen"; -$a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; -$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["Edit element"] = "Onderdeel bewerken"; -$a->strings["Drop element"] = "Onderdeel verwijderen"; -$a->strings["New element"] = "Nieuw element"; -$a->strings["Edit this menu container"] = "Deze menu-container bewerken"; -$a->strings["Add menu element"] = "Menu-element toevoegen"; -$a->strings["Delete this menu item"] = "Dit menu-item verwijderen"; -$a->strings["Edit this menu item"] = "Dit menu-item bewerken"; -$a->strings["New Menu Element"] = "Nieuw menu-element"; -$a->strings["Menu Item Permissions"] = "Permissies menu-item"; -$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -$a->strings["Link text"] = "Linktekst"; -$a->strings["URL of link"] = "URL of link"; -$a->strings["Use Red magic-auth if available"] = "Gebruik Reds magische authenticatie wanneer aanwezig"; -$a->strings["Open link in new window"] = "Open link in nieuw venster"; -$a->strings["Order in list"] = "Volgorde in lijst"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -$a->strings["Menu item not found."] = "Menu-item niet gevonden."; -$a->strings["Menu item deleted."] = "Menu-item verwijderd."; -$a->strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; -$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["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["network"] = "netwerk"; +$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["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["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."; @@ -976,6 +992,7 @@ $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["(click to open/close)"] = "(klik om te openen/sluiten)"; $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"; @@ -998,187 +1015,195 @@ $a->strings["Please enable expert mode (in Setting $a->strings["Miscellaneous Settings"] = "Diverse instellingen"; $a->strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; $a->strings["Remove this channel"] = "Verwijder dit kanaal"; -$a->strings["Poke/Prod"] = "Aanstoten/porren"; -$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; -$a->strings["Recipient"] = "Ontvanger"; -$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -$a->strings["Make this post private"] = "Maak dit bericht privé"; -$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -$a->strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -$a->strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; -$a->strings["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["Item not available."] = "Item is niet aanwezig."; +$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["Red Matrix - "The Network""] = "RedMatrix - "The Network""; +$a->strings["Welcome to %s"] = "Welkom op %s"; $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["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; -$a->strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; -$a->strings["Image exceeds size limit of %d"] = "Afbeeldingsgrootte overschrijdt het limiet van %d"; -$a->strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken."; -$a->strings["Photo not available."] = "Foto niet beschikbaar."; -$a->strings["Upload File:"] = "Bestand uploaden:"; -$a->strings["Select a profile:"] = "Kies een profiel:"; -$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; -$a->strings["skip this step"] = "sla deze stap over"; -$a->strings["select a photo from your photo albums"] = "Kies een foto uit jouw fotoalbums"; -$a->strings["Crop Image"] = "Afbeelding bijsnijden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; -$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["Block Name"] = "Bloknaam"; -$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 (%s):"] = "Geboortedag (%s)"; -$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["Bookmark added"] = "Bladwijzer toegevoegd"; -$a->strings["My Bookmarks"] = "Mijn bladwijzers"; -$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -$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["Public Sites"] = "Openbare hubs"; -$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -$a->strings["Site URL"] = "URL hub"; -$a->strings["Access Type"] = "Toegangstype"; -$a->strings["Registration Policy"] = "Registratiebeleid"; -$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; -$a->strings["Select a bookmark folder"] = "Kies een bladwijzermap"; -$a->strings["Save Bookmark"] = "Bladwijzer opslaan"; -$a->strings["URL of bookmark"] = "URL van bladwijzer"; -$a->strings["Description"] = "Omschrijving"; -$a->strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; -$a->strings["Room not found"] = "Chatkanaal niet gevonden"; -$a->strings["Leave Room"] = "Chatkanaal verlaten"; -$a->strings["Delete This Room"] = "Chatkanaal verwijderen"; -$a->strings["I am away right now"] = "Ik ben momenteel afwezig"; -$a->strings["I am online"] = "Ik ben online"; -$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -$a->strings["New Chatroom"] = "Nieuw chatkanaal"; -$a->strings["Chatroom Name"] = "Naam chatkanaal"; -$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -$a->strings["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["Away"] = "Afwezig"; -$a->strings["Online"] = "Online"; -$a->strings["Please login."] = "Inloggen."; -$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasten: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++"; -$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; -$a->strings["Remove This Channel"] = "Verwijder dit kanaal"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden."; -$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; -$a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd."; -$a->strings["Remove Channel"] = "Kanaal verwijderen"; -$a->strings["No channel."] = "Geen kanaal."; -$a->strings["Common connections"] = "Veel voorkomende connecties"; -$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +$a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; +$a->strings["Add a Channel"] = "Kanaal toevoegen"; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat."; +$a->strings["Channel Name"] = "Kanaalnaam"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\""; +$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["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; $a->strings["The error message was:"] = "Het foutbericht was:"; $a->strings["Authentication failed."] = "Authenticatie mislukt."; $a->strings["Remote Authentication"] = "Authenticatie op afstand"; $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; $a->strings["Authenticate"] = "Authenticeren"; -$a->strings["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, gebruikersvoorschriften, 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["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["Theme settings updated."] = "Thema-instellingen bijgewerkt."; +$a->strings["Site"] = "Hub-instellingen"; +$a->strings["Accounts"] = "Accounts"; +$a->strings["Channels"] = "Kanalen"; +$a->strings["Plugins"] = "Plug-ins"; +$a->strings["Themes"] = "Thema's"; +$a->strings["Server"] = "Hubbeheer"; +$a->strings["Profile Config"] = "Profielconfiguratie"; +$a->strings["DB updates"] = "Database-updates"; +$a->strings["Logs"] = "Logboeken"; +$a->strings["Plugin Features"] = "Plug-in-opties"; +$a->strings["User registrations waiting for confirmation"] = "Accountregistraties die op goedkeuring wachten"; +$a->strings["Message queues"] = "Berichtenwachtrij"; +$a->strings["Administration"] = "Beheer"; +$a->strings["Summary"] = "Samenvatting"; +$a->strings["Registered users"] = "Geregistreerde gebruikers"; +$a->strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; +$a->strings["Version"] = "Versie"; +$a->strings["Active plugins"] = "Ingeschakelde plug-ins"; +$a->strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; +$a->strings["No special theme for accessibility"] = "Geen speciaal thema voor universele toegang"; +$a->strings["Yes - with approval"] = "Ja - met goedkeuring"; +$a->strings["My site is not a public server"] = "Mijn RedMatrix-hub is niet openbaar"; +$a->strings["My site has paid access only"] = "Mijn RedMatrix-hub kent alleen betaalde toegang"; +$a->strings["My site has free access only"] = "Mijn RedMatrix-hub kent alleen gratis toegang"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; +$a->strings["Registration"] = "Registratie"; +$a->strings["File upload"] = "Bestand uploaden"; +$a->strings["Policies"] = "Beleid"; +$a->strings["Site name"] = "Naam van deze RedMatrix-hub"; +$a->strings["Banner/Logo"] = "Banner/logo"; +$a->strings["Administrator Information"] = "Informatie over de beheerder van deze hub"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; +$a->strings["System language"] = "Standaardtaal"; +$a->strings["System theme"] = "Standaardthema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor RedMatrix-hub (kan door gebruiker veranderd worden) - verander thema-instellingen"; +$a->strings["Mobile system theme"] = "Standaardthema voor mobiel"; +$a->strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; +$a->strings["Accessibility system theme"] = "Standaardthema voor universele toegang"; +$a->strings["Accessibility theme"] = "Thema voor universele toegang"; +$a->strings["Enable Diaspora Protocol"] = "Diaspora-protocol inschakelen"; +$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Communiceer met Diaspora en Friendica (experimenteel)"; +$a->strings["Allow Feeds as Connections"] = "Sta feeds toe als connecties"; +$a->strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op systeembronnen hub)"; +$a->strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; +$a->strings["Does this site allow new member registration?"] = "Staat deze hub registratie van nieuwe accounts toe?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest in de buurt komt."; +$a->strings["Register text"] = "Registratietekst"; +$a->strings["Will be displayed prominently on the registration page."] = "Wordt prominent op de registratiepagina getoond."; +$a->strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; +$a->strings["Allowed friend domains"] = "Toegestane domeinen"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze RedMatrix-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; +$a->strings["Allowed email domains"] = "Toegestane e-maildomeinen"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen die op deze hub mogen registeren. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; +$a->strings["Block public"] = "Openbare toegang blokkeren"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde gebruikers."; +$a->strings["Verify Email Addresses"] = "E-mailadres verifieren"; +$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)."; +$a->strings["Force publish"] = "Dwing kanaalvermelding af"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; +$a->strings["Disable discovery tab"] = "Ontdekkingstab"; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen."; +$a->strings["No login on Homepage"] = "Geen inlogformulier op de homepage"; +$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde gebruikers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)"; +$a->strings["Proxy user"] = "Proxy-gebruiker"; +$a->strings["Proxy URL"] = "Proxy-URL"; +$a->strings["Network timeout"] = "Netwerktimeout"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)"; +$a->strings["Delivery interval"] = "Afleveringsinterval"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers."; +$a->strings["Poll interval"] = "Poll-interval"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; +$a->strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; +$a->strings["No server found"] = "Geen hub gevonden"; +$a->strings["ID"] = "ID"; +$a->strings["for channel"] = "voor kanaal"; +$a->strings["on server"] = "op hub"; +$a->strings["Status"] = "Status"; +$a->strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; +$a->strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; +$a->strings["Update %s was successfully applied."] = "Update %s was geslaagd."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; +$a->strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; +$a->strings["No failed updates."] = "Geen mislukte updates."; +$a->strings["Failed Updates"] = "Mislukte updates"; +$a->strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; +$a->strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s account geblokkeerd/gedeblokkeerd", + 1 => "%s accounts geblokkeerd/gedeblokkeerd", +); +$a->strings["%s user deleted"] = array( + 0 => "%s account verwijderd", + 1 => "%s accounts verwijderd", +); +$a->strings["Account not found"] = "Account niet gevonden"; +$a->strings["User '%s' unblocked"] = "Account '%s' gedeblokkeerd"; +$a->strings["User '%s' blocked"] = "Gebruiker '%s' geblokkeerd"; +$a->strings["Users"] = "Accounts"; +$a->strings["select all"] = "alles selecteren"; +$a->strings["User registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; +$a->strings["Request date"] = "Tijd/datum verzoek"; +$a->strings["No registrations."] = "Geen verzoeken."; +$a->strings["Approve"] = "Goedkeuren"; +$a->strings["Deny"] = "Afkeuren"; +$a->strings["Block"] = "Blokkeren"; +$a->strings["Unblock"] = "Deblokkeren"; +$a->strings["Register date"] = "Geregistreerd"; +$a->strings["Last login"] = "Laatste keer ingelogd"; +$a->strings["Expires"] = "Verloopt"; +$a->strings["Service Class"] = "Abonnementen"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "%s kanaal gecensureerd/ongecensureerd", + 1 => "%s kanalen gecensureerd/ongecensureerd", +); +$a->strings["%s channel deleted"] = array( + 0 => "%s kanaal verwijderd", + 1 => "%s kanalen verwijderd", +); +$a->strings["Channel not found"] = "Kanaal niet gevonden"; +$a->strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; +$a->strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; +$a->strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; +$a->strings["Censor"] = "Censureren"; +$a->strings["Uncensor"] = "Niet censureren"; +$a->strings["UID"] = "UID"; +$a->strings["Address"] = "Kanaaladres"; +$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +$a->strings["Plugin %s disabled."] = "Plug-in %s uitgeschakeld."; +$a->strings["Plugin %s enabled."] = "Plug-in %s ingeschakeld"; +$a->strings["Disable"] = "Uitschakelen"; +$a->strings["Enable"] = "Inschakelen"; +$a->strings["Toggle"] = "Omschakelen"; +$a->strings["Author: "] = "Auteur: "; +$a->strings["Maintainer: "] = "Beheerder: "; +$a->strings["No themes found."] = "Geen thema's gevonden"; +$a->strings["Screenshot"] = "Schermafdruk"; +$a->strings["[Experimental]"] = "[Experimenteel]"; +$a->strings["[Unsupported]"] = "[Niet ondersteund]"; +$a->strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; +$a->strings["Clear"] = "Leegmaken"; +$a->strings["Debugging"] = "Debuggen"; +$a->strings["Log file"] = "Logbestand"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je RedMatrix-installatie."; +$a->strings["Log level"] = "Logniveau"; +$a->strings["New Profile Field"] = "Nieuw profielveld"; +$a->strings["Field nickname"] = "Bijnaam voor veld"; +$a->strings["System name of field"] = "Systeemnaam voor veld"; +$a->strings["Input type"] = "Invoertype"; +$a->strings["Field Name"] = "Veldnaam"; +$a->strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's"; +$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["- select -"] = "- kies map -"; $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."; @@ -1191,6 +1216,7 @@ $a->strings["All"] = "Alles"; $a->strings["Suggest new connections"] = "Nieuwe kanalen voorstellen"; $a->strings["New Connections"] = "Nieuwe connecties"; $a->strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; +$a->strings["All Connections"] = "Alle connecties"; $a->strings["Show all connections"] = "Toon alle connecties"; $a->strings["Unblocked"] = "Niet geblokkeerd"; $a->strings["Only show unblocked connections"] = "Toon alleen niet geblokkeerde connecties"; @@ -1202,7 +1228,141 @@ $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["Edit post"] = "Bericht bewerken"; +$a->strings["Public access denied."] = "Openbare toegang geweigerd."; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["Gender: "] = "Geslacht:"; +$a->strings["Status: "] = "Status: "; +$a->strings["Sexual Preference: "] = "Seksuele voorkeur: "; +$a->strings["Homepage: "] = "Homepage: "; +$a->strings["Hometown: "] = "Oorspronkelijk uit: "; +$a->strings["About: "] = "Over: "; +$a->strings["Keywords: "] = "Trefwoorden: "; +$a->strings["Not found."] = "Niet gevonden."; +$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"; +$a->strings["Delete Photo"] = "Verwijder foto"; +$a->strings["No photos selected"] = "Geen foto's geselecteerd"; +$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je gebruiker %1$.2f MB van totaal %2$.2f MB foto-opslagruimte."; +$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Je gebruikt %1$.2f MB aan foto-opslagruimte."; +$a->strings["Upload Photos"] = "Foto's uploaden"; +$a->strings["New album name: "] = "Nieuwe albumnaam: "; +$a->strings["or existing album name: "] = "of een bestaande albumnaam: "; +$a->strings["Do not show a status post for this upload"] = "Plaats geen bericht voor deze upload."; +$a->strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; +$a->strings["Contact Photos"] = "Connectiefoto's"; +$a->strings["Edit Album"] = "Album bewerken"; +$a->strings["Show Newest First"] = "Nieuwste eerst weergeven"; +$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; +$a->strings["View Photo"] = "Foto weergeven"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; +$a->strings["Photo not available"] = "Foto niet aanwezig"; +$a->strings["Use as profile photo"] = "Als profielfoto gebruiken"; +$a->strings["View Full Size"] = "Volledige grootte weergeven"; +$a->strings["Remove"] = "Verwijderen"; +$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["New album name"] = "Nieuwe albumnaam"; +$a->strings["Caption"] = "Bijschrift"; +$a->strings["Add a Tag"] = "Label toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@example.com, #Friesland, #camping"; +$a->strings["In This Photo:"] = "Op deze foto:"; +$a->strings["View Album"] = "Album weergeven"; +$a->strings["Recent Photos"] = "Recente foto's"; +$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["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"; +$a->strings["Edit this menu container"] = "Deze menu-container bewerken"; +$a->strings["Add menu element"] = "Menu-element toevoegen"; +$a->strings["Delete this menu item"] = "Dit menu-item verwijderen"; +$a->strings["Edit this menu item"] = "Dit menu-item bewerken"; +$a->strings["New Menu Element"] = "Nieuw menu-element"; +$a->strings["Menu Item Permissions"] = "Permissies menu-item"; +$a->strings["Link text"] = "Linktekst"; +$a->strings["URL of link"] = "URL of link"; +$a->strings["Use Red magic-auth if available"] = "Gebruik Reds magische authenticatie wanneer aanwezig"; +$a->strings["Open link in new window"] = "Open link in nieuw venster"; +$a->strings["Order in list"] = "Volgorde in lijst"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +$a->strings["Menu item not found."] = "Menu-item niet gevonden."; +$a->strings["Menu item deleted."] = "Menu-item verwijderd."; +$a->strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; +$a->strings["Edit Menu Element"] = "Menu-element bewerken"; +$a->strings["Modify"] = "Wijzigen"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; +$a->strings["Please login."] = "Inloggen."; +$a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +$a->strings["webpage"] = "Webpagina"; +$a->strings["block"] = "blok"; +$a->strings["layout"] = "lay-out"; +$a->strings["%s element installed"] = "%s onderdeel geïnstalleerd"; +$a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; +$a->strings["Select a bookmark folder"] = "Kies een bladwijzermap"; +$a->strings["Save Bookmark"] = "Bladwijzer opslaan"; +$a->strings["URL of bookmark"] = "URL van bladwijzer"; +$a->strings["Description"] = "Omschrijving"; +$a->strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; +$a->strings["Layout updated."] = "Lay-out bijgewerkt."; +$a->strings["Edit System Page Description"] = "Systeempagina's bewerken"; +$a->strings["Layout not found."] = "Lay-out niet gevonden."; +$a->strings["Module Name:"] = "Modulenaam:"; +$a->strings["Layout Help"] = "Lay-out-hulp"; +$a->strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; +$a->strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; +$a->strings["Image exceeds size limit of %d"] = "Afbeeldingsgrootte overschrijdt het limiet van %d"; +$a->strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken."; +$a->strings["Photo not available."] = "Foto niet beschikbaar."; +$a->strings["Upload File:"] = "Bestand uploaden:"; +$a->strings["Select a profile:"] = "Kies een profiel:"; +$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; +$a->strings["skip this step"] = "sla deze stap over"; +$a->strings["select a photo from your photo albums"] = "Kies een foto uit jouw fotoalbums"; +$a->strings["Crop Image"] = "Afbeelding bijsnijden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; +$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["network"] = "netwerk"; +$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["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["Invalid item."] = "Ongeldig item."; +$a->strings["Channel not found."] = "Kanaal niet gevonden."; +$a->strings["Page not found."] = "Pagina niet gevonden."; +$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["Wall Photos"] = "Kanaalfoto's"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +$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["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"; @@ -1223,8 +1383,6 @@ $a->strings["Refresh Permissions"] = "Permissies vernieuwen"; $a->strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; $a->strings["Recent Activity"] = "Recente activiteit"; $a->strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; -$a->strings["Unblock"] = "Deblokkeren"; -$a->strings["Block"] = "Blokkeren"; $a->strings["Block or Unblock this connection"] = "Deze connectie blokkeren of deblokkeren"; $a->strings["Unignore"] = "Niet meer negeren"; $a->strings["Ignore"] = "Negeren"; @@ -1276,28 +1434,13 @@ $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["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["Public access denied."] = "Openbare toegang geweigerd."; -$a->strings["Gender: "] = "Geslacht:"; -$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["Status: "] = "Status: "; -$a->strings["Sexual Preference: "] = "Seksuele voorkeur: "; -$a->strings["Homepage: "] = "Homepage: "; -$a->strings["Hometown: "] = "Oorspronkelijk uit: "; -$a->strings["About: "] = "Over: "; -$a->strings["Keywords: "] = "Trefwoorden: "; -$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; +$a->strings["Conversation removed."] = "Conversatie verwijderd"; +$a->strings["No messages."] = "Geen berichten"; +$a->strings["Delete conversation"] = "Verwijder conversatie"; +$a->strings["D, d M Y - g:i A"] = "D, j M Y - G:i"; +$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["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."; @@ -1377,292 +1520,26 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $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["Item not found"] = "Item niet gevonden"; -$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."] = "Layout bijgewerkt."; -$a->strings["Edit System Page Description"] = "Systeempagina's bewerken"; -$a->strings["Layout not found."] = "Lay-out niet gevonden."; -$a->strings["Module Name:"] = "Modulenaam:"; -$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["Edit Webpage"] = "Webpagina bewerken"; -$a->strings["Delete webpage?"] = "Webpagina verwijderen?"; -$a->strings["Delete Webpage"] = "Webpagina verwijderen"; -$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["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"; -$a->strings["Delete Photo"] = "Verwijder foto"; -$a->strings["No photos selected"] = "Geen foto's geselecteerd"; -$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je gebruiker %1$.2f MB van totaal %2$.2f MB foto-opslagruimte."; -$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Je gebruikt %1$.2f MB aan foto-opslagruimte."; -$a->strings["Upload Photos"] = "Foto's uploaden"; -$a->strings["New album name: "] = "Nieuwe albumnaam: "; -$a->strings["or existing album name: "] = "of een bestaande albumnaam: "; -$a->strings["Do not show a status post for this upload"] = "Plaats geen bericht voor deze upload."; -$a->strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; -$a->strings["Contact Photos"] = "Connectiefoto's"; -$a->strings["Edit Album"] = "Album bewerken"; -$a->strings["Show Newest First"] = "Nieuwste eerst weergeven"; -$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; -$a->strings["View Photo"] = "Foto weergeven"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; -$a->strings["Photo not available"] = "Foto niet aanwezig"; -$a->strings["Use as profile photo"] = "Als profielfoto gebruiken"; -$a->strings["View Full Size"] = "Volledige grootte weergeven"; -$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["New album name"] = "Nieuwe albumnaam"; -$a->strings["Caption"] = "Bijschrift"; -$a->strings["Add a Tag"] = "Label toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@example.com, #Friesland, #camping"; -$a->strings["In This Photo:"] = "Op deze foto:"; -$a->strings["View Album"] = "Album weergeven"; -$a->strings["Recent Photos"] = "Recente foto's"; -$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["- select -"] = "- kies map -"; -$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Gebeurtenis bewerken"; -$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; -$a->strings["Previous"] = "Vorige"; -$a->strings["hour:minute"] = "uur:minuut"; -$a->strings["Event details"] = "Details van gebeurtenis"; -$a->strings["Format is %s %s."] = "Volgorde is %s %s."; -$a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; -$a->strings["Event Starts:"] = "Begin gebeurtenis:"; -$a->strings["Required"] = "Vereist"; -$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant"; -$a->strings["Event Finishes:"] = "Einde gebeurtenis:"; -$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -$a->strings["Description:"] = "Omschrijving:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["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["Channel added."] = "Kanaal toegevoegd."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; -$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["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["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["%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["Help:"] = "Hulp:"; -$a->strings["Not Found"] = "Niet gevonden"; -$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["Theme settings updated."] = "Thema-instellingen bijgewerkt."; -$a->strings["Site"] = "Hub-instellingen"; -$a->strings["Accounts"] = "Accounts"; -$a->strings["Channels"] = "Kanalen"; -$a->strings["Plugins"] = "Plug-ins"; -$a->strings["Themes"] = "Thema's"; -$a->strings["Server"] = "Hubbeheer"; -$a->strings["Profile Config"] = "Profielconfiguratie"; -$a->strings["DB updates"] = "Database-updates"; -$a->strings["Logs"] = "Logboeken"; -$a->strings["Plugin Features"] = "Plug-in-opties"; -$a->strings["User registrations waiting for confirmation"] = "Accountregistraties die op goedkeuring wachten"; -$a->strings["Message queues"] = "Berichtenwachtrij"; -$a->strings["Administration"] = "Beheer"; -$a->strings["Summary"] = "Samenvatting"; -$a->strings["Registered users"] = "Geregistreerde gebruikers"; -$a->strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; -$a->strings["Version"] = "Versie"; -$a->strings["Active plugins"] = "Ingeschakelde plug-ins"; -$a->strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; -$a->strings["No special theme for accessibility"] = "Geen speciaal thema voor universele toegang"; -$a->strings["Yes - with approval"] = "Ja - met goedkeuring"; -$a->strings["My site is not a public server"] = "Mijn RedMatrix-hub is niet openbaar"; -$a->strings["My site has paid access only"] = "Mijn RedMatrix-hub kent alleen betaalde toegang"; -$a->strings["My site has free access only"] = "Mijn RedMatrix-hub kent alleen gratis toegang"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; -$a->strings["File upload"] = "Bestand uploaden"; -$a->strings["Policies"] = "Beleid"; -$a->strings["Site name"] = "Naam van deze RedMatrix-hub"; -$a->strings["Banner/Logo"] = "Banner/logo"; -$a->strings["Administrator Information"] = "Informatie over de beheerder van deze hub"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; -$a->strings["System language"] = "Standaardtaal"; -$a->strings["System theme"] = "Standaardthema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor RedMatrix-hub (kan door gebruiker veranderd worden) - verander thema-instellingen"; -$a->strings["Mobile system theme"] = "Standaardthema voor mobiel"; -$a->strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; -$a->strings["Accessibility system theme"] = "Standaardthema voor universele toegang"; -$a->strings["Accessibility theme"] = "Thema voor universele toegang"; -$a->strings["Enable Diaspora Protocol"] = "Diaspora-protocol inschakelen"; -$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Communiceer met Diaspora en Friendica (experimenteel)"; -$a->strings["Allow Feeds as Connections"] = "Sta feeds toe als connecties"; -$a->strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op systeembronnen hub)"; -$a->strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; -$a->strings["Does this site allow new member registration?"] = "Staat deze hub registratie van nieuwe accounts toe?"; -$a->strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest in de buurt komt."; -$a->strings["Register text"] = "Registratietekst"; -$a->strings["Will be displayed prominently on the registration page."] = "Wordt prominent op de registratiepagina getoond."; -$a->strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; -$a->strings["Allowed friend domains"] = "Toegestane domeinen"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze RedMatrix-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; -$a->strings["Allowed email domains"] = "Toegestane e-maildomeinen"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen die op deze hub mogen registeren. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; -$a->strings["Block public"] = "Openbare toegang blokkeren"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde gebruikers."; -$a->strings["Verify Email Addresses"] = "E-mailadres verifieren"; -$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)."; -$a->strings["Force publish"] = "Dwing kanaalvermelding af"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; -$a->strings["Disable discovery tab"] = "Ontdekkingstab"; -$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen."; -$a->strings["No login on Homepage"] = "Geen inlogformulier op de homepage"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde gebruikers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)"; -$a->strings["Proxy user"] = "Proxy-gebruiker"; -$a->strings["Proxy URL"] = "Proxy-URL"; -$a->strings["Network timeout"] = "Netwerktimeout"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)"; -$a->strings["Delivery interval"] = "Afleveringsinterval"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers."; -$a->strings["Poll interval"] = "Poll-interval"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; -$a->strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; -$a->strings["No server found"] = "Geen hub gevonden"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "voor kanaal"; -$a->strings["on server"] = "op hub"; -$a->strings["Status"] = "Status"; -$a->strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; -$a->strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; -$a->strings["Update %s was successfully applied."] = "Update %s was geslaagd."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; -$a->strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; -$a->strings["No failed updates."] = "Geen mislukte updates."; -$a->strings["Failed Updates"] = "Mislukte updates"; -$a->strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; -$a->strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s account geblokkeerd/gedeblokkeerd", - 1 => "%s accounts geblokkeerd/gedeblokkeerd", -); -$a->strings["%s user deleted"] = array( - 0 => "%s account verwijderd", - 1 => "%s accounts verwijderd", -); -$a->strings["Account not found"] = "Account niet gevonden"; -$a->strings["User '%s' unblocked"] = "Account '%s' gedeblokkeerd"; -$a->strings["User '%s' blocked"] = "Gebruiker '%s' geblokkeerd"; -$a->strings["Users"] = "Accounts"; -$a->strings["select all"] = "alles selecteren"; -$a->strings["User registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; -$a->strings["Request date"] = "Tijd/datum verzoek"; -$a->strings["No registrations."] = "Geen verzoeken."; -$a->strings["Approve"] = "Goedkeuren"; -$a->strings["Deny"] = "Afkeuren"; -$a->strings["Register date"] = "Geregistreerd"; -$a->strings["Last login"] = "Laatste keer ingelogd"; -$a->strings["Expires"] = "Verloopt"; -$a->strings["Service Class"] = "Abonnementen"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -$a->strings["%s channel censored/uncensored"] = array( - 0 => "%s kanaal gecensureerd/ongecensureerd", - 1 => "%s kanalen gecensureerd/ongecensureerd", -); -$a->strings["%s channel deleted"] = array( - 0 => "%s kanaal verwijderd", - 1 => "%s kanalen verwijderd", +$a->strings["Hub not found."] = "Hub niet gevonden."; +$a->strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; +$a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; +$a->strings["Please join us on Red"] = "Uitnodiging voor de RedMatrix"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; +$a->strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; +$a->strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", ); -$a->strings["Channel not found"] = "Kanaal niet gevonden"; -$a->strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; -$a->strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; -$a->strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; -$a->strings["Censor"] = "Censureren"; -$a->strings["Uncensor"] = "Niet censureren"; -$a->strings["UID"] = "UID"; -$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -$a->strings["Plugin %s disabled."] = "Plug-in %s uitgeschakeld."; -$a->strings["Plugin %s enabled."] = "Plug-in %s ingeschakeld"; -$a->strings["Disable"] = "Uitschakelen"; -$a->strings["Enable"] = "Inschakelen"; -$a->strings["Toggle"] = "Omschakelen"; -$a->strings["Author: "] = "Auteur: "; -$a->strings["Maintainer: "] = "Beheerder: "; -$a->strings["No themes found."] = "Geen thema's gevonden"; -$a->strings["Screenshot"] = "Schermafdruk"; -$a->strings["[Experimental]"] = "[Experimenteel]"; -$a->strings["[Unsupported]"] = "[Niet ondersteund]"; -$a->strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; -$a->strings["Clear"] = "Leegmaken"; -$a->strings["Debugging"] = "Debuggen"; -$a->strings["Log file"] = "Logbestand"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je RedMatrix-installatie."; -$a->strings["Log level"] = "Logniveau"; -$a->strings["New Profile Field"] = "Nieuw profielveld"; -$a->strings["Field nickname"] = "Bijnaam voor veld"; -$a->strings["System name of field"] = "Systeemnaam voor veld"; -$a->strings["Input type"] = "Invoertype"; -$a->strings["Field Name"] = "Veldnaam"; -$a->strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's"; -$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["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; +$a->strings["Send invitations"] = "Uitnodigingen verzenden"; +$a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; +$a->strings["Your message:"] = "Jouw bericht:"; +$a->strings["Please join my community on RedMatrix."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me."; +$a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven:"; +$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):"; +$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:"; +$a->strings["or visit "] = "of bezoek "; +$a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; $a->strings["Thing updated"] = "Ding bijgewerkt"; $a->strings["Object store: failed"] = "Opslaan van ding mislukt"; $a->strings["Thing added"] = "Ding toegevoegd"; @@ -1677,6 +1554,173 @@ $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["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +$a->strings["Post successful."] = "Verzenden bericht geslaagd."; +$a->strings["Help:"] = "Hulp:"; +$a->strings["Not Found"] = "Niet gevonden"; +$a->strings["No connections."] = "Geen connecties."; +$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; +$a->strings["View Connnections"] = "Connecties weergeven"; +$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; +$a->strings["Remove This Account"] = "Verwijder dit account"; +$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Deze actie verwijderd dit account volledig, inclusief al zijn kanalen. Dit kan hierna op geen enkele manier ongedaan gemaakt worden."; +$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; +$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen"; +$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd."; +$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["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["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["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["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["Add"] = "Toevoegen"; +$a->strings["No entries."] = "Geen"; +$a->strings["Continue"] = "Ga verder"; +$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, gebruikersvoorschriften, 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["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["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["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; +$a->strings["Remove This Channel"] = "Verwijder dit kanaal"; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden."; +$a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd."; +$a->strings["Remove Channel"] = "Kanaal verwijderen"; +$a->strings["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["Edit Webpage"] = "Webpagina bewerken"; +$a->strings["Delete webpage?"] = "Webpagina verwijderen?"; +$a->strings["Delete Webpage"] = "Webpagina verwijderen"; +$a->strings["Poke/Prod"] = "Aanstoten/porren"; +$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; +$a->strings["Recipient"] = "Ontvanger"; +$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +$a->strings["Make this post private"] = "Maak dit bericht privé"; +$a->strings["Block Name"] = "Bloknaam"; +$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["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["Item not available."] = "Item is niet aanwezig."; +$a->strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; +$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["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++"; +$a->strings["Away"] = "Afwezig"; +$a->strings["Online"] = "Online"; +$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["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["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; +$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["App installed."] = "App geïnstalleerd"; +$a->strings["Malformed app."] = "Misvormde app."; +$a->strings["Embed code"] = "Insluitcode"; +$a->strings["Edit App"] = "App bewerken"; +$a->strings["Create App"] = "App maken"; +$a->strings["Name of app"] = "Naam van app"; +$a->strings["Required"] = "Vereist"; +$a->strings["Location (URL) of app"] = "Locatie (URL) van app"; +$a->strings["Photo icon URL"] = "URL van pictogram"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +$a->strings["Version ID"] = "Versie-ID"; +$a->strings["Price of app"] = "Prijs van de app"; +$a->strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +$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["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["Public Sites"] = "Openbare hubs"; +$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +$a->strings["Site URL"] = "URL hub"; +$a->strings["Access Type"] = "Toegangstype"; +$a->strings["Registration Policy"] = "Registratiebeleid"; +$a->strings["Location"] = "Locatie"; $a->strings["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"; @@ -1695,34 +1739,95 @@ $a->strings["Your old login email address"] = "Het e-mailadres van je oude accou $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["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; -$a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; -$a->strings["Please join us on Red"] = "Uitnodiging voor de RedMatrix"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; -$a->strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; -$a->strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", -); -$a->strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; -$a->strings["Send invitations"] = "Uitnodigingen verzenden"; -$a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; -$a->strings["Your message:"] = "Jouw bericht:"; -$a->strings["Please join my community on RedMatrix."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op de RedMatrix te vergezellen. Lees meer over de RedMatrix op https://redmatrix.me."; -$a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven:"; -$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registreer je op een willekeurige RedMatrix-hub (ze zijn allemaal onderling met elkaar verbonden):"; -$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:"; -$a->strings["or visit "] = "of bezoek "; -$a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -$a->strings["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["[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 layout"; +$a->strings["Import existing posts if possible"] = "Importeer bestaande berichten (wanneer mogelijk)"; +$a->strings["invalid target signature"] = "ongeldig doelkenmerk"; +$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["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["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["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["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["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 (%s):"] = "Geboortedag (%s)"; +$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["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["Bookmark added"] = "Bladwijzer toegevoegd"; +$a->strings["My Bookmarks"] = "Mijn bladwijzers"; +$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +$a->strings["No channel."] = "Geen kanaal."; +$a->strings["Common connections"] = "Veel voorkomende connecties"; +$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; $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."; @@ -1732,17 +1837,45 @@ $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 privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -$a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["No connections."] = "Geen connecties."; -$a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; -$a->strings["View Connnections"] = "Connecties weergeven"; +$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; +$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +$a->strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +$a->strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +$a->strings["Room not found"] = "Chatkanaal niet gevonden"; +$a->strings["Leave Room"] = "Chatkanaal verlaten"; +$a->strings["Delete This Room"] = "Chatkanaal verwijderen"; +$a->strings["I am away right now"] = "Ik ben momenteel afwezig"; +$a->strings["I am online"] = "Ik ben online"; +$a->strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +$a->strings["New Chatroom"] = "Nieuw chatkanaal"; +$a->strings["Chatroom Name"] = "Naam chatkanaal"; +$a->strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; +$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; +$a->strings["Previous"] = "Vorige"; +$a->strings["hour:minute"] = "uur:minuut"; +$a->strings["Event details"] = "Details van gebeurtenis"; +$a->strings["Format is %s %s."] = "Volgorde is %s %s."; +$a->strings["Starting date and Title are required."] = "Begintijd en titel zijn vereist."; +$a->strings["Event Starts:"] = "Begin gebeurtenis:"; +$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/-tijd is niet bekend of niet relevant"; +$a->strings["Event Finishes:"] = "Einde gebeurtenis:"; +$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +$a->strings["Description:"] = "Omschrijving:"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Deel deze gebeurtenis"; +$a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +$a->strings["Discard"] = "Annuleren"; $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"; @@ -1753,176 +1886,15 @@ $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["Hub not found."] = "Hub niet gevonden."; -$a->strings["Total votes"] = "Totaal aantal stemmen"; -$a->strings["Average Rating"] = "Gemiddeld cijfer"; -$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["Messages"] = "Berichten"; -$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["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["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["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["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"; -$a->strings["Add a Channel"] = "Kanaal toevoegen"; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Een kanaal is jouw eigen verzameling gerelateerde webpagina's. Een kanaal kan gebruikt worden voor een sociaal netwerk, weblog, discussiegroep of forum, een pagina over een beroemdheid, en voor veel meer. Je kan net zoveel kanalen aanmaken als dat de eigenaar/beheerder van jouw hub toestaat."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Voorbeelden: \"Bruce Springsteen\", \"Familiefoto's\", \"Voetbal\", \"Astronomie\""; -$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["Red Matrix - "The Network""] = "RedMatrix - "The Network""; -$a->strings["Welcome to %s"] = "Welkom op %s"; -$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["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -$a->strings["Post successful."] = "Verzenden bericht geslaagd."; -$a->strings["invalid target signature"] = "ongeldig doel-kenmerk (target signature)"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -$a->strings["App installed."] = "App geïnstalleerd"; -$a->strings["Malformed app."] = "Misvormde app."; -$a->strings["Embed code"] = "Insluitcode"; -$a->strings["Edit App"] = "App bewerken"; -$a->strings["Create App"] = "App maken"; -$a->strings["Name of app"] = "Naam van app"; -$a->strings["Location (URL) of app"] = "Locatie (URL) van app"; -$a->strings["Photo icon URL"] = "URL van pictogram"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -$a->strings["Version ID"] = "Versie-ID"; -$a->strings["Price of app"] = "Prijs van de app"; -$a->strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; -$a->strings["Poll"] = "Poll"; -$a->strings["View Results"] = "Bekijk resultaten"; -$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; -$a->strings["Remove This Account"] = "Verwijder dit account"; -$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Deze actie verwijderd dit account volledig, inclusief al zijn kanalen. Dit kan hierna op geen enkele manier ongedaan gemaakt worden."; -$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het RedMatrix-netwerk verwijderen"; -$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het RedMatrix-netwerk verwijderd."; -$a->strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; -$a->strings["Schema Default"] = "Standaardschema"; -$a->strings["Sans-Serif"] = "Schreefloos"; -$a->strings["Monospace"] = "Monospace"; -$a->strings["Theme settings"] = "Thema-instellingen"; -$a->strings["Set scheme"] = "Schema van thema instellen"; -$a->strings["Set font-size for posts and comments"] = "Lettergrootte voor berichten en reacties instellen"; -$a->strings["Set font face"] = "Lettertypefamilie instellen"; -$a->strings["Set iconset"] = "Pictogrammenset instellen"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Een grote schaduwgrootte instellen (standaard 15px 15px 15px)"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Een kleine schaduwgrootte instellen (standaard 5px 5px 5px)"; -$a->strings["Set shadow color, default #000"] = "Schaduwkleur instellen (standaard #000)"; -$a->strings["Set radius size, default 5px"] = "Radius instellen, standaard 5px"; -$a->strings["Set line-height for posts and comments"] = "Lijnhoogte voor berichten en reacties instellen"; -$a->strings["Set background image"] = "Achtergrondafbeelding instellen"; -$a->strings["Set background attachment"] = "Gedrag achtergrondafbeelding instellen"; -$a->strings["Set background color"] = "Achtergrondkleur instellen"; -$a->strings["Set section background image"] = "Achtergrondafbeelding van sectie instellen"; -$a->strings["Set section background color"] = "Achtergrondkleur van sectie instellen"; -$a->strings["Set color of items - use hex"] = "Tekstkleur van items instellen (gebruik hexadecimaal)"; -$a->strings["Set color of links - use hex"] = "Kleur van links instellen (gebruik hexadecimaal)"; -$a->strings["Set max-width for items. Default 400px"] = "Maximale breedte van items instellen (standaard 400px)"; -$a->strings["Set min-width for items. Default 240px"] = "Minimale breedte van items instellen (standaard 240px)"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Breedte van de generieke content-wrapper instellen (standaard 48%)"; -$a->strings["Set color of fonts - use hex"] = "Tekstkleur instellen (gebruik hexadecimaal)"; -$a->strings["Set background-size element"] = "Grootte achtergrondafbeelding instellen"; -$a->strings["Item opacity"] = "Ondoorzichtigheid item"; -$a->strings["Display post previews only"] = "Alleen voorvertoning berichten weergeven"; -$a->strings["Display side bar on channel page"] = "Zijbalk op kanaalpagina weergeven"; -$a->strings["Colour of the navigation bar"] = "Kleur van de navigatiebalk"; -$a->strings["Item float"] = "Item float"; -$a->strings["Left offset of the section element"] = "Linker offset van het sectie-element"; -$a->strings["Right offset of the section element"] = "Rechter offset van het sectie-element"; -$a->strings["Section width"] = "Breedte van sectie"; -$a->strings["Left offset of the aside"] = "Rechter offset van aside (zijbalk)"; -$a->strings["Right offset of the aside element"] = "Rechter offset van het aside-element"; -$a->strings["None"] = "Geen"; -$a->strings["Header image"] = "Header-afbeelding"; -$a->strings["Header image only on profile pages"] = "Header-afbeelding alleen op profielpagina's weergeven"; -$a->strings["Light (Red Matrix default)"] = "Light (RedMatrix-standaard)"; -$a->strings["Narrow navbar"] = "Smalle navigatiebalk"; -$a->strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk"; -$a->strings["Navigation bar gradient top color"] = "Bovenste gradiëntkleur navigatiebalk"; -$a->strings["Navigation bar gradient bottom color"] = "Onderste gradiëntkleur navigatiebalk"; -$a->strings["Navigation active button gradient top color"] = "Bovenste gradiëntkleur actieve knop navigatiebalk"; -$a->strings["Navigation active button gradient bottom color"] = "Onderste gradiëntkleur actieve knop op navigatiebalk"; -$a->strings["Navigation bar border color "] = "Randkleur navigatiebalk "; -$a->strings["Navigation bar icon color "] = "Pictogramkleur navigatiebalk"; -$a->strings["Navigation bar active icon color "] = "Actieve pictogramkleur navigatiebalk"; -$a->strings["link color"] = "Linkkleur instellen"; -$a->strings["Set font-color for banner"] = "Tekstkleur van banner instellen"; -$a->strings["Set the background color"] = "Achtergrondkleur instellen"; -$a->strings["Set the background image"] = "Achtergrondafbeelding instellen"; -$a->strings["Set the background color of items"] = "Achtergrondkleur items instellen"; -$a->strings["Set the background color of comments"] = "Achtergrondkleur reacties instellen"; -$a->strings["Set the border color of comments"] = "Randkleur reacties instellen"; -$a->strings["Set the indent for comments"] = "Inspringen reacties instellen"; -$a->strings["Set the basic color for item icons"] = "Basiskleur itempictogrammen instellen"; -$a->strings["Set the hover color for item icons"] = "Hoverkleur itempictogrammen instellen"; -$a->strings["Set font-size for the entire application"] = "Tekstgrootte van de volledige applicatie instellen"; -$a->strings["Set font-color for posts and comments"] = "Tekstkleur van berichten en reacties"; -$a->strings["Set radius of corners"] = "Radius van hoeken instellen"; -$a->strings["Set shadow depth of photos"] = "Schaduwdiepte van foto's instellen"; -$a->strings["Set maximum width of conversation regions"] = "Maximumbreedte conversatieruimte instellen"; -$a->strings["Center conversation regions"] = "Centreer conversatieruimte"; -$a->strings["Set minimum opacity of nav bar - to hide it"] = "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)"; -$a->strings["Set size of conversation author photo"] = "Grootte profielfoto's van berichten instellen"; -$a->strings["Set size of followup author photos"] = "Grootte profielfoto's van reacties instellen"; -$a->strings["Sloppy photo albums"] = "Rommelig vormgegeven fotoalbums"; -$a->strings["Are you a clean desk or a messy desk person?"] = "Ben je iemand die van een opgeruimd bureau houdt of van een rommelig bureau?"; -$a->strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; -$a->strings["Update Error at %s"] = "Update-fout op %s"; -$a->strings["Create an account to access services and applications within the Red Matrix"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix"; -$a->strings["Password"] = "Wachtwoord"; -$a->strings["Remember me"] = "Aangemeld blijven"; -$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; -$a->strings["permission denied"] = "toegang geweigerd"; -$a->strings["Got Zot?"] = "Heb je Zot?"; -$a->strings["toggle mobile"] = "mobiele weergave omschakelen"; +$a->strings["Help with this feature"] = "Hulp voor dit onderdeel"; +$a->strings["Layout Name"] = "Naam lay-out"; +$a->strings["Edit Block"] = "Blok bewerken"; +$a->strings["Delete block?"] = "Blok verwijderen"; +$a->strings["Delete Block"] = "Blok verwijderen"; +$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["Edit Layout"] = "Lay-out bewerken"; +$a->strings["Delete layout?"] = "Lay-out verwijderen?"; +$a->strings["Delete Layout"] = "Lay-out verwijderen"; +$a->strings["Channel added."] = "Kanaal toegevoegd."; +$a->strings["Location not found."] = "Locatie niet gevonden."; +$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; -- cgit v1.2.3 From bfdf5fd15cad5bbb7aa7b44dbc91872309621ec2 Mon Sep 17 00:00:00 2001 From: Jeroen Date: Thu, 23 Oct 2014 15:15:28 +0000 Subject: upd nl 2 --- view/nl/messages.po | 20 ++++++++++---------- view/nl/strings.php | 18 +++++++++--------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/view/nl/messages.po b/view/nl/messages.po index 33e62778a..9ac484059 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-10-17 14:18+0000\n" -"PO-Revision-Date: 2014-10-23 13:58+0000\n" +"PO-Revision-Date: 2014-10-23 15:13+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" @@ -191,7 +191,7 @@ msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen #: ../../boot.php:1472 ../../include/nav.php:163 ../../mod/register.php:220 msgid "Register" -msgstr "Registreren " +msgstr "Registreren" #: ../../boot.php:1495 ../../include/nav.php:95 ../../include/nav.php:128 msgid "Logout" @@ -1646,7 +1646,7 @@ msgstr "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan" #: ../../include/account.php:31 msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd ." +msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd." #: ../../include/account.php:64 msgid "An invitation is required." @@ -1672,7 +1672,7 @@ msgstr "Registratiebevestiging voor %s" #: ../../include/account.php:313 #, php-format msgid "Registration request at %s" -msgstr "Registratieverzoek op %s" +msgstr "Registratiebevestiging voor %s" #: ../../include/account.php:315 ../../include/account.php:342 #: ../../include/account.php:399 @@ -1686,7 +1686,7 @@ msgstr "jouw registratiewachtwoord" #: ../../include/account.php:340 ../../include/account.php:397 #, php-format msgid "Registration details for %s" -msgstr "Registratiedetails voor %s" +msgstr "Registratiegegevens voor %s" #: ../../include/account.php:406 msgid "Account approved." @@ -4462,7 +4462,7 @@ msgstr "Plug-in-opties" #: ../../mod/admin.php:126 msgid "User registrations waiting for confirmation" -msgstr "Accountregistraties die op goedkeuring wachten" +msgstr "Accounts die op goedkeuring wachten" #: ../../mod/admin.php:206 msgid "Message queues" @@ -4481,7 +4481,7 @@ msgstr "Samenvatting" #: ../../mod/admin.php:214 msgid "Registered users" -msgstr "Geregistreerde gebruikers" +msgstr "Geregistreerde accounts" #: ../../mod/admin.php:216 ../../mod/admin.php:518 msgid "Pending registrations" @@ -4611,7 +4611,7 @@ msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standa #: ../../mod/admin.php:433 msgid "Does this site allow new member registration?" -msgstr "Staat deze hub registratie van nieuwe accounts toe?" +msgstr "Staat deze hub nieuwe accounts toe?" #: ../../mod/admin.php:434 msgid "Which best describes the types of account offered by this hub?" @@ -4619,11 +4619,11 @@ msgstr "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest #: ../../mod/admin.php:435 msgid "Register text" -msgstr "Registratietekst" +msgstr "Tekst tijdens registratie" #: ../../mod/admin.php:435 msgid "Will be displayed prominently on the registration page." -msgstr "Wordt prominent op de registratiepagina getoond." +msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." #: ../../mod/admin.php:436 msgid "Accounts abandoned after x days" diff --git a/view/nl/strings.php b/view/nl/strings.php index b4a0d111c..7f98aff1d 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -43,7 +43,7 @@ $a->strings["Are you a clean desk or a messy desk person?"] = "Ben je iemand die $a->strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; $a->strings["Update Error at %s"] = "Update-fout op %s"; $a->strings["Create an account to access services and applications within the Red Matrix"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix"; -$a->strings["Register"] = "Registreren "; +$a->strings["Register"] = "Registreren"; $a->strings["Logout"] = "Uitloggen"; $a->strings["Login"] = "Inloggen"; $a->strings["Email"] = "E-mail"; @@ -381,16 +381,16 @@ $a->strings["Don't care"] = "Maakt mij niks uit"; $a->strings["Ask me"] = "Vraag het me"; $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["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"] = "Registratieverzoek op %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"] = "Registratiedetails voor %s"; +$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."; @@ -1053,11 +1053,11 @@ $a->strings["Profile Config"] = "Profielconfiguratie"; $a->strings["DB updates"] = "Database-updates"; $a->strings["Logs"] = "Logboeken"; $a->strings["Plugin Features"] = "Plug-in-opties"; -$a->strings["User registrations waiting for confirmation"] = "Accountregistraties die op goedkeuring wachten"; +$a->strings["User registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; $a->strings["Message queues"] = "Berichtenwachtrij"; $a->strings["Administration"] = "Beheer"; $a->strings["Summary"] = "Samenvatting"; -$a->strings["Registered users"] = "Geregistreerde gebruikers"; +$a->strings["Registered users"] = "Geregistreerde accounts"; $a->strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; $a->strings["Version"] = "Versie"; $a->strings["Active plugins"] = "Ingeschakelde plug-ins"; @@ -1088,10 +1088,10 @@ $a->strings["Allow Feeds as Connections"] = "Sta feeds toe als connecties"; $a->strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op systeembronnen hub)"; $a->strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; -$a->strings["Does this site allow new member registration?"] = "Staat deze hub registratie van nieuwe accounts toe?"; +$a->strings["Does this site allow new member registration?"] = "Staat deze hub nieuwe accounts toe?"; $a->strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze RedMatrix-hub aan? Kies wat het meest in de buurt komt."; -$a->strings["Register text"] = "Registratietekst"; -$a->strings["Will be displayed prominently on the registration page."] = "Wordt prominent op de registratiepagina getoond."; +$a->strings["Register text"] = "Tekst tijdens registratie"; +$a->strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond."; $a->strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; $a->strings["Allowed friend domains"] = "Toegestane domeinen"; -- cgit v1.2.3 From f29c5a35f14f2a49b7c4a56fed577ebcf1010709 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Thu, 23 Oct 2014 21:50:53 +0100 Subject: Provide comment box for PERMS_AUTHED items. Presently only commentable from owners wall. --- include/items.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/items.php b/include/items.php index e3526b0a5..2805b9b21 100755 --- a/include/items.php +++ b/include/items.php @@ -214,6 +214,7 @@ function can_comment_on_post($observer_xchan,$item) { break; case 'any connections': case 'contacts': + case 'authenticated': case '': if(array_key_exists('owner',$item)) { if(($item['owner']['abook_xchan']) && ($item['owner']['abook_their_perms'] & PERMS_W_COMMENT)) -- cgit v1.2.3 From 1c4bbbd13e35e164c7da96674b3678bb1011b817 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 23 Oct 2014 16:08:29 -0700 Subject: diaspora walltowall comment signature, force update. --- include/items.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 2805b9b21..8d46f64c1 100755 --- a/include/items.php +++ b/include/items.php @@ -2526,7 +2526,7 @@ function store_diaspora_comment_sig($datarray, $channel, $parent_item, $post_id, // since Diaspora doesn't handle edits we can only do this for the original text and not update it. require_once('include/bb2diaspora.php'); - $signed_body = bb2diaspora_itembody($datarray); + $signed_body = bb2diaspora_itembody($datarray,$walltowall); if($walltowall) { logger('wall to wall comment',LOGGER_DEBUG); -- cgit v1.2.3 From 241bb3b94059ac4edfcc3b66e907dbf493dd8b4a Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 23 Oct 2014 19:33:47 -0700 Subject: API: xchan get/create --- include/api.php | 12 ++++++++ include/hubloc.php | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 91 insertions(+), 1 deletion(-) diff --git a/include/api.php b/include/api.php index 8b52253dd..9fe2ef47d 100644 --- a/include/api.php +++ b/include/api.php @@ -621,7 +621,19 @@ require_once('include/items.php'); api_register_func('api/red/group','api_group', true); + function api_red_xchan(&$a,$type) { + if(api_user() === false) + return false; + require_once('include/hubloc.php'); + if($_SERVER['request_method'] === 'POST') { + $r = xchan_store($_REQUEST); + } + $r = xchan_fetch($_REQUEST); + json_return_and_die($r); + }; + api_register_func('api/red/xchan','api_red_xchan',true); + function api_statuses_mediap(&$a, $type) { if (api_user() === false) { diff --git a/include/hubloc.php b/include/hubloc.php index 04c29315a..df817329f 100644 --- a/include/hubloc.php +++ b/include/hubloc.php @@ -170,4 +170,82 @@ function hubloc_change_primary($hubloc) { return true; } - \ No newline at end of file + + +function xchan_store($arr) { + + if(! $arr['hash']) + $arr['hash'] = $arr['guid']; + if(! $arr['hash']) + return false; + + $r = q("select * from xchan where xchan_hash = '%s' limit 1", + dbesc($arr['hash']) + ); + if($r) + return true; + + if(! $arr['network']) + $arr['network'] = 'unknown'; + if(! $arr['name']) + $arr['name'] = 'unknown'; + if(! $arr['url']) + $arr['url'] = z_root(); + if(! $arr['photo']) + $arr['photo'] = get_default_profile_photo(); + + $r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_addr, xchan_url, xchan_connurl, xchan_follow, xchan_connpage, xchan_name, xchan_network, xchan_instance_url, xchan_flags, xchan_name_date ) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s','%s','%s','%s',%d,'%s') ", + dbesc($arr['hash']), + dbesc($arr['guid']), + dbesc($arr['guid_sig']), + dbesc($arr['pubkey']), + dbesc($arr['address']), + dbesc($arr['url']), + dbesc($arr['connurl']), + dbesc($arr['follow']), + dbesc($arr['connpage']), + dbesc($arr['name']), + dbesc($arr['network']), + dbesc($arr['instance_url']), + intval($arr['flags']), + dbesc(datetime_convert()) + ); + if(! $r) + return $r; + + $photos = import_profile_photo($arr['photo'],$arr['hash']); + $r = q("update xchan set xchan_photo_date = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s', xchan_photo_mimetype = '%s' where xchan_hash = '%s' limit 1", + dbesc(datetime_convert()), + dbesc($photos[0]), + dbesc($photos[1]), + dbesc($photos[2]), + dbesc($photos[3]), + dbesc($arr['hash']) + ); + return $r; + +} + + +function xchan_fetch($arr) { + + $key = ''; + if($arr['hash']) { + $key = 'xchan_hash'; + $v = $arr['hash']; + } + elseif($arr['guid']) { + $key = 'xchan_guid'; + $v = $arr['guid']; + } + elseif($arr['address']) { + $key = 'xchan_addr'; + $v = $arr['address']; + } + + if(! $key) + return false; + + $r = q("select * from xchan where $key = '$v'"); + return $r; +} \ No newline at end of file -- cgit v1.2.3 From f524fb1f20ec3edb0cf2c486d41f6bb65a60db6a Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 23 Oct 2014 19:41:42 -0700 Subject: generalise the output format of xchan_fetch so it matches the input format --- include/hubloc.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/include/hubloc.php b/include/hubloc.php index df817329f..0a1b51331 100644 --- a/include/hubloc.php +++ b/include/hubloc.php @@ -247,5 +247,15 @@ function xchan_fetch($arr) { return false; $r = q("select * from xchan where $key = '$v'"); - return $r; + if(! $r) + return false; + + $ret = array(); + foreach($r as $k => $v) { + if($k === 'xchan_addr') + $ret['address'] = $v; + else + $ret[str_replace('xchan_','',$k)] = $v; + } + return $ret; } \ No newline at end of file -- cgit v1.2.3 From 34781433c1fabd7a4992497da5ee475db0ada3a8 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 23 Oct 2014 21:20:12 -0700 Subject: I'm speechless. This is just reckless. Set a context flag in text using a context trigger character which is likely to be present in that text already. Without escaping any previous instances of that character. Grrr. --- include/html2bbcode.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 6d6e6333b..9ffc85a82 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -16,7 +16,7 @@ function node2bbcode(&$doc, $oldnode, $attributes, $startbb, $endbb) function node2bbcodesub(&$doc, $oldnode, $attributes, $startbb, $endbb) { - $savestart = str_replace('$', '%', $startbb); + $savestart = str_replace('$', '\x01', $startbb); $replace = false; $xpath = new DomXPath($doc); @@ -37,7 +37,7 @@ function node2bbcodesub(&$doc, $oldnode, $attributes, $startbb, $endbb) foreach ($attributes as $attribute => $value) { - $startbb = str_replace('%'.++$i, '$1', $startbb); + $startbb = str_replace('\x01'.++$i, '$1', $startbb); if (strpos('*'.$startbb, '$1') > 0) { -- cgit v1.2.3 From 1a9b8d4f0c89436d26f3e2e4aafb81c2e62fc8c2 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 23 Oct 2014 22:00:16 -0700 Subject: don't offer forum (@name+) completion in comments, since it won't do anything. --- mod/acl.php | 4 ++-- view/js/main.js | 2 +- view/tpl/display-head.tpl | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mod/acl.php b/mod/acl.php index 5658a05c5..7eb180cc4 100644 --- a/mod/acl.php +++ b/mod/acl.php @@ -11,7 +11,7 @@ function acl_init(&$a){ $count = (x($_REQUEST,'count')?$_REQUEST['count']:100); $search = (x($_REQUEST,'search')?$_REQUEST['search']:""); $type = (x($_REQUEST,'type')?$_REQUEST['type']:""); - + $noforums = (x($_REQUEST,'n') ? $_REQUEST['n'] : false); // For use with jquery.autocomplete for private mail completion @@ -230,7 +230,7 @@ function acl_init(&$a){ if(strpos($g['hash'],'/')) continue; - if(($g['abook_their_perms'] & PERMS_W_TAGWALL) && $type == 'c') { + if(($g['abook_their_perms'] & PERMS_W_TAGWALL) && $type == 'c' && (! $noforums)) { $contacts[] = array( "type" => "c", "photo" => "images/twopeople.png", diff --git a/view/js/main.js b/view/js/main.js index 32db7ccb7..beedb7f01 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -575,7 +575,7 @@ function updateConvItems(mode,data) { } /* autocomplete @nicknames */ - $(".comment-edit-form textarea").contact_autocomplete(baseurl+"/acl"); + $(".comment-edit-form textarea").contact_autocomplete(baseurl+"/acl?f=&n=1"); var bimgs = $(".wall-item-body img").not(function() { return this.complete; }); var bimgcount = bimgs.length; diff --git a/view/tpl/display-head.tpl b/view/tpl/display-head.tpl index 3d4e7e96a..007d33fe8 100755 --- a/view/tpl/display-head.tpl +++ b/view/tpl/display-head.tpl @@ -1,8 +1,8 @@ -- cgit v1.2.3 From 5ede7bd6542a2d0cac7ee0a42c9c13267d78bb98 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 24 Oct 2014 04:16:45 -0700 Subject: doc updates --- doc/html/apw_2php_2style_8php.html | 2 +- doc/html/bb2diaspora_8php.html | 2 +- doc/html/boot_8php.html | 40 ++- doc/html/boot_8php.js | 1 + doc/html/comanche_8php.html | 4 +- doc/html/crypto_8php.html | 4 +- doc/html/datetime_8php.html | 160 ++++++--- doc/html/datetime_8php.js | 6 +- doc/html/dba__driver_8php.html | 4 +- doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.html | 112 +++++++ doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.js | 4 + doc/html/dir_4acb285a1960a920438b718da0958cf4.html | 112 +++++++ doc/html/dir_4acb285a1960a920438b718da0958cf4.js | 4 + doc/html/dir_65522070e0a83623cefc01ebe26a83e3.html | 114 +++++++ doc/html/dir_65522070e0a83623cefc01ebe26a83e3.js | 5 + doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html | 112 +++++++ doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.js | 4 + doc/html/dir_8543001e5d25368a6edede3e63efb554.html | 6 + doc/html/dir_8543001e5d25368a6edede3e63efb554.js | 5 +- doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.html | 114 +++++++ doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.js | 5 + doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html | 114 +++++++ doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.js | 5 + doc/html/extract_8php.html | 4 +- doc/html/files.html | 50 +-- doc/html/globals_0x61.html | 3 + doc/html/globals_0x64.html | 8 +- doc/html/globals_0x68.html | 3 + doc/html/globals_0x6c.html | 3 + doc/html/globals_0x73.html | 8 +- doc/html/globals_0x74.html | 2 +- doc/html/globals_0x78.html | 6 + doc/html/globals_func_0x61.html | 3 + doc/html/globals_func_0x64.html | 8 +- doc/html/globals_func_0x68.html | 3 + doc/html/globals_func_0x6c.html | 3 + doc/html/globals_func_0x73.html | 8 +- doc/html/globals_func_0x74.html | 2 +- doc/html/globals_func_0x78.html | 6 + doc/html/hivenet_2php_2style_8php.html | 112 +++++++ doc/html/hivenet_2php_2theme_8php.html | 144 ++++++++ doc/html/hivenet_2php_2theme_8php.js | 4 + doc/html/hubloc_8php.html | 40 +++ doc/html/hubloc_8php.js | 4 +- doc/html/identity_8php.html | 2 +- doc/html/include_2api_8php.html | 30 +- doc/html/include_2api_8php.js | 1 + doc/html/include_2config_8php.html | 4 +- doc/html/include_2network_8php.html | 2 +- doc/html/items_8php.html | 14 +- doc/html/items_8php.js | 2 +- doc/html/language_8php.html | 2 +- doc/html/navtree.js | 18 +- doc/html/navtreeindex0.js | 184 +++++------ doc/html/navtreeindex1.js | 362 ++++++++++----------- doc/html/navtreeindex2.js | 4 +- doc/html/navtreeindex3.js | 14 +- doc/html/navtreeindex4.js | 26 +- doc/html/navtreeindex5.js | 74 ++--- doc/html/navtreeindex6.js | 40 +-- doc/html/navtreeindex7.js | 40 +-- doc/html/navtreeindex8.js | 52 +-- doc/html/navtreeindex9.js | 25 +- doc/html/permissions_8php.html | 2 +- doc/html/photo__driver_8php.html | 2 +- doc/html/php2po_8php.html | 2 +- doc/html/php_2theme__init_8php.html | 2 +- doc/html/plugin_8php.html | 2 +- doc/html/search/all_61.js | 3 +- doc/html/search/all_64.js | 4 +- doc/html/search/all_68.js | 1 + doc/html/search/all_6c.js | 1 + doc/html/search/all_73.js | 11 +- doc/html/search/all_74.js | 7 +- doc/html/search/all_78.js | 2 + doc/html/search/files_73.js | 5 +- doc/html/search/files_74.js | 7 +- doc/html/search/functions_61.js | 1 + doc/html/search/functions_64.js | 4 +- doc/html/search/functions_68.js | 1 + doc/html/search/functions_6c.js | 1 + doc/html/search/functions_73.js | 4 +- doc/html/search/functions_74.js | 2 +- doc/html/search/functions_78.js | 2 + doc/html/security_8php.html | 2 +- doc/html/stumble_2php_2style_8php.html | 112 +++++++ doc/html/stumble_2php_2theme_8php.html | 144 ++++++++ doc/html/stumble_2php_2theme_8php.js | 4 + doc/html/suckerberg_2php_2style_8php.html | 112 +++++++ doc/html/suckerberg_2php_2theme_8php.html | 144 ++++++++ doc/html/suckerberg_2php_2theme_8php.js | 4 + doc/html/text_8php.html | 2 +- doc/html/typo_8php.html | 2 +- 93 files changed, 2308 insertions(+), 543 deletions(-) create mode 100644 doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.html create mode 100644 doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.js create mode 100644 doc/html/dir_4acb285a1960a920438b718da0958cf4.html create mode 100644 doc/html/dir_4acb285a1960a920438b718da0958cf4.js create mode 100644 doc/html/dir_65522070e0a83623cefc01ebe26a83e3.html create mode 100644 doc/html/dir_65522070e0a83623cefc01ebe26a83e3.js create mode 100644 doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html create mode 100644 doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.js create mode 100644 doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.html create mode 100644 doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.js create mode 100644 doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html create mode 100644 doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.js create mode 100644 doc/html/hivenet_2php_2style_8php.html create mode 100644 doc/html/hivenet_2php_2theme_8php.html create mode 100644 doc/html/hivenet_2php_2theme_8php.js create mode 100644 doc/html/stumble_2php_2style_8php.html create mode 100644 doc/html/stumble_2php_2theme_8php.html create mode 100644 doc/html/stumble_2php_2theme_8php.js create mode 100644 doc/html/suckerberg_2php_2style_8php.html create mode 100644 doc/html/suckerberg_2php_2theme_8php.html create mode 100644 doc/html/suckerberg_2php_2theme_8php.js diff --git a/doc/html/apw_2php_2style_8php.html b/doc/html/apw_2php_2style_8php.html index 58c81a57b..e66359be6 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(), datesel(), datesel_format(), decode_tags(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_mention_callback(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editwebpage_content(), email_header_encode(), encode_item(), encode_mail(), 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(), 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_content(), parse_app_description(), parse_xml_string(), pdledit_content(), pemtome(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), 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(), timesel(), 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(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editwebpage_content(), email_header_encode(), encode_item(), encode_mail(), 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(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), mark_orphan_hubsxchans(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), netgrowth_content(), network_content(), new_channel_init(), new_contact(), notification(), notifications_off(), notifications_on(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_init(), parse_app_description(), parse_xml_string(), pdledit_content(), pemtome(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), 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/bb2diaspora_8php.html b/doc/html/bb2diaspora_8php.html index f485a3595..b3efd66e6 100644 --- a/doc/html/bb2diaspora_8php.html +++ b/doc/html/bb2diaspora_8php.html @@ -203,7 +203,7 @@ Functions diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index 2ea8e6f27..04a9ad0f6 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -189,6 +189,8 @@ Functions    get_custom_nav (&$a, $navname)   + load_pdl (&$a) +   construct_page (&$a)    appdirpath () @@ -766,7 +768,7 @@ Variables
    -

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

    +

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

    @@ -784,7 +786,7 @@ Variables
    -

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

    +

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

    @@ -1006,7 +1008,7 @@ Variables
    -

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

    +

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

    @@ -1259,6 +1261,24 @@ Variables

    Referenced by api_call(), conversation(), and item_photo_menu().

    + + + +
    +
    + + + + + + + + +
    load_pdl ($a)
    +
    @@ -1326,7 +1346,7 @@ Variables
    -

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

    +

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

    @@ -1494,7 +1514,7 @@ Variables
    -

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

    +

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

    @@ -2463,7 +2483,7 @@ Variables
    -

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

    +

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

    @@ -2803,7 +2823,7 @@ Variables @@ -3022,7 +3042,7 @@ Variables @@ -3094,7 +3114,7 @@ Variables
    -

    Referenced by admin_page_logs(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), deliver_run(), detect_language(), diaspora_decode(), diaspora_dispatch(), diaspora_msg_build(), diaspora_pubmsg_build(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_status(), dir_parse_query(), directory_content(), dirprofile_init(), discover_by_url(), encode_item(), fetch_xrd_links(), find_diaspora_person_by_handle(), fix_private_photos(), get_atom_elements(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), impel_init(), import_xchan(), item_post(), item_store(), item_store_update(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), magic_init(), mail_post(), mail_store(), mini_group_select(), new_contact(), notifier_run(), old_webfinger(), onepoll_run(), openid_content(), parse_xml_string(), photos_post(), ping_init(), poco_load(), post_post(), public_recips(), receive_post(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), sync_directories(), tag_deliver(), tgroup_check(), update_directory_entry(), update_feed_item(), xml2array(), z_fetch_url(), z_post_url(), zot_build_packet(), zot_fetch(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

    +

    Referenced by admin_page_logs(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), deliver_run(), detect_language(), diaspora_decode(), diaspora_dispatch(), diaspora_msg_build(), diaspora_pubmsg_build(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_status(), dir_parse_query(), directory_content(), dirprofile_init(), discover_by_url(), encode_item(), fetch_xrd_links(), find_diaspora_person_by_handle(), fix_private_photos(), get_atom_elements(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), impel_init(), import_xchan(), item_post(), item_store(), item_store_update(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), magic_init(), mail_post(), mail_store(), mini_group_select(), new_contact(), notifier_run(), old_webfinger(), onepoll_run(), openid_content(), parse_xml_string(), photos_post(), ping_init(), poco_load(), post_post(), public_recips(), receive_post(), RedChannelList(), RedFileData(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), sync_directories(), tag_deliver(), tgroup_check(), update_directory_entry(), update_feed_item(), xml2array(), z_fetch_url(), z_post_url(), zot_build_packet(), zot_fetch(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

    @@ -3108,7 +3128,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(), dirprofile_init(), 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(), RedChannelList(), RedFileData(), 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(), dirprofile_init(), 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().

    diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js index 3a93f8eb0..742aa4d99 100644 --- a/doc/html/boot_8php.js +++ b/doc/html/boot_8php.js @@ -30,6 +30,7 @@ var boot_8php = [ "is_windows", "boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08", null ], [ "killme", "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c", null ], [ "load_contact_links", "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6", null ], + [ "load_pdl", "boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501", null ], [ "local_user", "boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44", null ], [ "login", "boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4", null ], [ "notice", "boot_8php.html#a9255af5ae9c887520091ea04763c1a88", null ], diff --git a/doc/html/comanche_8php.html b/doc/html/comanche_8php.html index 5967a7d6a..aec807d58 100644 --- a/doc/html/comanche_8php.html +++ b/doc/html/comanche_8php.html @@ -166,7 +166,7 @@ Functions

    comanche_get_channel_id() Returns the channel_id of the profile owner of the page, or the local_user if there is no profile owner. Otherwise returns 0

    -

    Referenced by comanche_block(), comanche_menu(), and construct_page().

    +

    Referenced by comanche_block(), comanche_menu(), and load_pdl().

    @@ -222,7 +222,7 @@ Functions
    -

    Referenced by construct_page(), and page_content().

    +

    Referenced by load_pdl(), and page_init().

    diff --git a/doc/html/crypto_8php.html b/doc/html/crypto_8php.html index 1e0227a30..e5ed0d591 100644 --- a/doc/html/crypto_8php.html +++ b/doc/html/crypto_8php.html @@ -316,7 +316,7 @@ Functions @@ -738,7 +738,7 @@ Functions diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html index 41dc0f97f..1f6eb1430 100644 --- a/doc/html/datetime_8php.html +++ b/doc/html/datetime_8php.html @@ -122,12 +122,12 @@ Functions    dob ($dob)   - datesel_format ($f) -  - datesel ($f, $pre, $ymin, $ymax, $allow_blank, $y, $m, $d) -  - timesel ($pre, $h, $m) -  + datesel ($format, $min, $max, $default, $id= 'datepicker') +  + timesel ($format, $h, $m, $id='timepicker') +  + datetimesel ($format, $min, $max, $default, $id= 'datetimepicker', $pickdate=true, $picktime=true, $minfrom= '', $maxfrom= '') +   relative_date ($posted_date, $format=null)    age ($dob, $owner_tz= '', $viewer_tz= '') @@ -218,7 +218,7 @@ Functions - +
    @@ -226,49 +226,82 @@ Functions - + - + - + - + - + + + + + + + +
    datesel (  $f, $format,
     $pre, $min,
     $ymin, $max,
     $ymax, $default,
     $allow_blank, $id = 'datepicker' 
    )
    +
    +

    returns a date selector

    +
    Parameters
    + + + + + + +
    $formatformat string, e.g. 'ymd' or 'mdy'. Not currently supported
    $minunix timestamp of minimum date
    $maxunix timestap of maximum date
    $defaultunix timestamp of default date
    $idid and name of datetimepicker (defaults to "datetimepicker")
    +
    +
    + +

    Referenced by dob().

    + +
    +
    + +
    +
    + + + + + + - + - + - + @@ -278,55 +311,67 @@ Functions
    datetime_convert ( $from = 'UTC',
     $y, $to = 'UTC',
     $m, $s = 'now',
     $d $fmt = "Y-m-d H:i:s" 
    -

    Referenced by dob(), and events_content().

    +

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

    - +
    - + - + + + + + + -
    datesel_format datetimesel (  $f)$format,
     $min,
    -
    - -

    Referenced by events_content(), and profiles_content().

    - -
    -
    - -
    -
    - - - + + - + - + - + - + + + + + + + + + + + + + + + + + + + @@ -335,8 +380,23 @@ Functions
    datetime_convert (  $from = 'UTC', $max,
     $to = 'UTC', $default,
     $s = 'now', $id = 'datetimepicker',
     $fmt = "Y-m-d H:i:s" $pickdate = true,
     $picktime = true,
     $minfrom = '',
     $maxfrom = '' 
    - -

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

    +

    returns a datetime selector

    +
    Parameters
    + + + + + + + + + + +
    $formatformat string, e.g. 'ymd' or 'mdy'. Not currently supported
    $minunix timestamp of minimum date
    $maxunix timestap of maximum date
    $defaultunix timestamp of default date
    $idid and name of datetimepicker (defaults to "datetimepicker")
    $pickdatetrue to show date picker (default)
    $picktimetrue to show time picker (default)
    $minfromset minimum date from picker with id $minfrom (none by default)
    $maxfromset maximum date from picker with id $maxfrom (none by default)
    +
    +
    + +

    Referenced by datesel(), events_content(), and timesel().

    @@ -500,7 +560,7 @@ Functions - +
    @@ -508,7 +568,7 @@ Functions - + @@ -520,7 +580,13 @@ Functions - + + + + + + + @@ -529,8 +595,16 @@ Functions
    timesel (  $pre, $format,
     $m $m,
     $id = 'timepicker' 
    - -

    Referenced by events_content().

    +

    returns a date selector

    +
    Parameters
    + + + + + +
    $formatformat string, e.g. 'ymd' or 'mdy'. Not currently supported
    $halready selected hour
    $malready selected minute
    $idid and name of datetimepicker (defaults to "timepicker")
    +
    +
    diff --git a/doc/html/datetime_8php.js b/doc/html/datetime_8php.js index 19d2d7f24..7fdf58cfd 100644 --- a/doc/html/datetime_8php.js +++ b/doc/html/datetime_8php.js @@ -2,16 +2,16 @@ var datetime_8php = [ [ "age", "datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df", null ], [ "cal", "datetime_8php.html#aea356409ba69f9de412298c998595dd2", null ], - [ "datesel", "datetime_8php.html#ac265b86f384ee094ed5479aae02aa5c8", null ], - [ "datesel_format", "datetime_8php.html#a5f29553799005b1fd4e9ce9d98ce05aa", null ], + [ "datesel", "datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766", null ], [ "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 ], [ "relative_date", "datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82", null ], [ "select_timezone", "datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f", null ], - [ "timesel", "datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1", null ], + [ "timesel", "datetime_8php.html#a3f239f94e23335d860b148958d87a093", null ], [ "timezone_cmp", "datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865", null ], [ "update_birthdays", "datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826", null ], [ "z_birthday", "datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f", null ] diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html index 5a9becc31..35a50094e 100644 --- a/doc/html/dba__driver_8php.html +++ b/doc/html/dba__driver_8php.html @@ -202,7 +202,7 @@ Functions
    -

    Referenced by abook_toggle_flag(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_page_profs_post(), admin_page_users(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), app_destroy(), app_installed(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), bb2diaspora_itemwallwall(), bb2dmention_callback(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_upstream_directory(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_mention_callback(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_relay(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_query_build(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editlayout_content(), editpost_content(), editwebpage_content(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), filestorage_content(), filter_insecure(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedMatrix\RedDAV\RedBrowser\findAttachHash(), RedMatrix\RedDAV\RedBrowser\findAttachIdByHash(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), get_things(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_feed(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), is_matrix_url(), item_add_cid(), item_message_id(), item_permissions_sql(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layouts_content(), like_content(), list_public_sites(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), locs_post(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), menu_list_count(), msearch_post(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_content(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco_init(), poco_load(), poll_post(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_permissions_sql(), public_recips(), RedMatrix\RedDAV\RedFile\put(), queue_run(), rconnect_url(), receive_post(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), sitelist_init(), sources_content(), sources_post(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

    +

    Referenced by abook_toggle_flag(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_page_profs_post(), admin_page_users(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), app_destroy(), app_installed(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), bb2diaspora_itemwallwall(), bb2dmention_callback(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_upstream_directory(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_dispatch_public(), diaspora_get_contact_by_handle(), diaspora_handle_from_contact(), diaspora_like(), diaspora_mention_callback(), diaspora_message(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_request(), diaspora_reshare(), diaspora_retraction(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_relay(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_query_build(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editlayout_content(), editpost_content(), editwebpage_content(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), filestorage_content(), filter_insecure(), find_diaspora_person_by_handle(), find_filename_by_hash(), find_folder_hash_by_attach_hash(), RedMatrix\RedDAV\RedBrowser\findAttachHash(), RedMatrix\RedDAV\RedBrowser\findAttachIdByHash(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedMatrix\RedDAV\RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), get_things(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getLastModified(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_feed(), handle_tag(), hcard_init(), home_content(), hubloc_change_primary(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), is_matrix_url(), item_add_cid(), item_message_id(), item_permissions_sql(), item_post(), item_remove_cid(), item_store(), item_store_update(), items_fetch(), layouts_content(), like_content(), list_public_sites(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), locs_post(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), mark_orphan_hubsxchans(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), menu_list_count(), msearch_post(), netgrowth_content(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), onedirsync_run(), onepoll_run(), openid_content(), p_init(), page_init(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), plugin_is_installed(), poco_init(), poco_load(), poll_post(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_permissions_sql(), public_recips(), RedMatrix\RedDAV\RedFile\put(), queue_run(), rconnect_url(), receive_post(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), sitelist_init(), sources_content(), sources_post(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

    @@ -318,7 +318,7 @@ Functions

    This will happen occasionally trying to store the session data after abnormal program termination

    -

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

    +

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

    diff --git a/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.html b/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.html new file mode 100644 index 000000000..e3fe69222 --- /dev/null +++ b/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: view/theme/suckerberg Directory Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    suckerberg Directory Reference
    +
    +
    + + + + +

    +Directories

    directory  php
     
    +
    +
    + diff --git a/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.js b/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.js new file mode 100644 index 000000000..c0919b906 --- /dev/null +++ b/doc/html/dir_0262a6a8df56a167e3761b6e5a54bb1c.js @@ -0,0 +1,4 @@ +var dir_0262a6a8df56a167e3761b6e5a54bb1c = +[ + [ "php", "dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html", "dir_ac4f5165c8d71ebb1a1a0a168a48f3f7" ] +]; \ No newline at end of file diff --git a/doc/html/dir_4acb285a1960a920438b718da0958cf4.html b/doc/html/dir_4acb285a1960a920438b718da0958cf4.html new file mode 100644 index 000000000..b609d2603 --- /dev/null +++ b/doc/html/dir_4acb285a1960a920438b718da0958cf4.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: view/theme/stumble Directory Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    stumble Directory Reference
    +
    +
    + + + + +

    +Directories

    directory  php
     
    +
    +
    + diff --git a/doc/html/dir_4acb285a1960a920438b718da0958cf4.js b/doc/html/dir_4acb285a1960a920438b718da0958cf4.js new file mode 100644 index 000000000..ddf00ba8a --- /dev/null +++ b/doc/html/dir_4acb285a1960a920438b718da0958cf4.js @@ -0,0 +1,4 @@ +var dir_4acb285a1960a920438b718da0958cf4 = +[ + [ "php", "dir_65522070e0a83623cefc01ebe26a83e3.html", "dir_65522070e0a83623cefc01ebe26a83e3" ] +]; \ No newline at end of file diff --git a/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.html b/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.html new file mode 100644 index 000000000..70b82fa1e --- /dev/null +++ b/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.html @@ -0,0 +1,114 @@ + + + + + + +The Red Matrix: view/theme/stumble/php Directory Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    php Directory Reference
    +
    +
    + + + + + + +

    +Files

    file  style.php
     
    file  theme.php
     
    +
    +
    + diff --git a/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.js b/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.js new file mode 100644 index 000000000..f914d9b01 --- /dev/null +++ b/doc/html/dir_65522070e0a83623cefc01ebe26a83e3.js @@ -0,0 +1,5 @@ +var dir_65522070e0a83623cefc01ebe26a83e3 = +[ + [ "style.php", "stumble_2php_2style_8php.html", null ], + [ "theme.php", "stumble_2php_2theme_8php.html", "stumble_2php_2theme_8php" ] +]; \ No newline at end of file diff --git a/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html b/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html new file mode 100644 index 000000000..920784d3d --- /dev/null +++ b/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: view/theme/hivenet Directory Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    hivenet Directory Reference
    +
    +
    + + + + +

    +Directories

    directory  php
     
    +
    +
    + diff --git a/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.js b/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.js new file mode 100644 index 000000000..cc2615730 --- /dev/null +++ b/doc/html/dir_6e52a2a2cd27c08b7df5e5cdb216bd77.js @@ -0,0 +1,4 @@ +var dir_6e52a2a2cd27c08b7df5e5cdb216bd77 = +[ + [ "php", "dir_9ef82eb3846cd201470898c3b6ef38cf.html", "dir_9ef82eb3846cd201470898c3b6ef38cf" ] +]; \ No newline at end of file diff --git a/doc/html/dir_8543001e5d25368a6edede3e63efb554.html b/doc/html/dir_8543001e5d25368a6edede3e63efb554.html index 5c15c9f91..3b9d184f6 100644 --- a/doc/html/dir_8543001e5d25368a6edede3e63efb554.html +++ b/doc/html/dir_8543001e5d25368a6edede3e63efb554.html @@ -108,10 +108,16 @@ Directories   directory  blogga   +directory  hivenet +  directory  mytheme   directory  redbasic   +directory  stumble +  +directory  suckerberg diff --git a/doc/html/dir_8543001e5d25368a6edede3e63efb554.js b/doc/html/dir_8543001e5d25368a6edede3e63efb554.js index 25e3e7cc0..63c07db40 100644 --- a/doc/html/dir_8543001e5d25368a6edede3e63efb554.js +++ b/doc/html/dir_8543001e5d25368a6edede3e63efb554.js @@ -2,6 +2,9 @@ var dir_8543001e5d25368a6edede3e63efb554 = [ [ "apw", "dir_d520c5cf583201d9437764f209363c22.html", "dir_d520c5cf583201d9437764f209363c22" ], [ "blogga", "dir_922c77e958c99a98db92d38a3a349bf2.html", "dir_922c77e958c99a98db92d38a3a349bf2" ], + [ "hivenet", "dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html", "dir_6e52a2a2cd27c08b7df5e5cdb216bd77" ], [ "mytheme", "dir_8e58ba5e98ac07e59ee15ca7486c9950.html", "dir_8e58ba5e98ac07e59ee15ca7486c9950" ], - [ "redbasic", "dir_55dbaf9b7b53c4fc605c9011743a7353.html", "dir_55dbaf9b7b53c4fc605c9011743a7353" ] + [ "redbasic", "dir_55dbaf9b7b53c4fc605c9011743a7353.html", "dir_55dbaf9b7b53c4fc605c9011743a7353" ], + [ "stumble", "dir_4acb285a1960a920438b718da0958cf4.html", "dir_4acb285a1960a920438b718da0958cf4" ], + [ "suckerberg", "dir_0262a6a8df56a167e3761b6e5a54bb1c.html", "dir_0262a6a8df56a167e3761b6e5a54bb1c" ] ]; \ No newline at end of file diff --git a/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.html b/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.html new file mode 100644 index 000000000..91c6ed04b --- /dev/null +++ b/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.html @@ -0,0 +1,114 @@ + + + + + + +The Red Matrix: view/theme/hivenet/php Directory Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    php Directory Reference
    +
    +
    + + + + + + +

    +Files

    file  style.php
     
    file  theme.php
     
    +
    +
    + diff --git a/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.js b/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.js new file mode 100644 index 000000000..576c2c655 --- /dev/null +++ b/doc/html/dir_9ef82eb3846cd201470898c3b6ef38cf.js @@ -0,0 +1,5 @@ +var dir_9ef82eb3846cd201470898c3b6ef38cf = +[ + [ "style.php", "hivenet_2php_2style_8php.html", null ], + [ "theme.php", "hivenet_2php_2theme_8php.html", "hivenet_2php_2theme_8php" ] +]; \ No newline at end of file diff --git a/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html b/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html new file mode 100644 index 000000000..76a464461 --- /dev/null +++ b/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html @@ -0,0 +1,114 @@ + + + + + + +The Red Matrix: view/theme/suckerberg/php Directory Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    php Directory Reference
    +
    +
    + + + + + + +

    +Files

    file  style.php
     
    file  theme.php
     
    +
    +
    + diff --git a/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.js b/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.js new file mode 100644 index 000000000..0e2f340ef --- /dev/null +++ b/doc/html/dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.js @@ -0,0 +1,5 @@ +var dir_ac4f5165c8d71ebb1a1a0a168a48f3f7 = +[ + [ "style.php", "suckerberg_2php_2style_8php.html", null ], + [ "theme.php", "suckerberg_2php_2theme_8php.html", "suckerberg_2php_2theme_8php" ] +]; \ No newline at end of file diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html index 9e08aa0f4..7f383a243 100644 --- a/doc/html/extract_8php.html +++ b/doc/html/extract_8php.html @@ -132,7 +132,7 @@ Variables
    -

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

    +

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

    @@ -160,7 +160,7 @@ Variables
    -

    Referenced by Template\_build_nodes(), Template\_replcb_node(), admin_page_themes(), app_decode(), attribute_contains(), base64url_decode(), base64url_encode(), bb_tag_preg_replace(), bb_translate_video(), bbtoevent(), bbtovcal(), bookmarks_init(), chanlink_hash(), chanlink_url(), comanche_parser(), comanche_region(), comanche_webpage(), construct_page(), datetime_convert(), day_translate(), detect_language(), diaspora2bb(), diaspora_is_blacklisted(), diaspora_ol(), diaspora_ul(), dir_parse_query(), dir_query_build(), event_store_item(), expand_acl(), extra_query_args(), file_tag_decode(), file_tag_encode(), file_tag_file_query(), fix_mce_lf(), fix_private_photos(), format_categories(), format_filer(), format_hashtags(), format_mentions(), format_term_for_display(), get_bb_tag_pos(), get_intltext_template(), get_language_name(), get_markup_template(), get_tags(), html2bb_video(), import_xchan(), info(), is_a_date_arg(), is_foreigner(), is_member(), json_decode_plus(), legal_webbie(), linkify(), magic_link(), mail_content(), network_to_name(), normalise_openid(), notice(), notifier_run(), oembed_iframe(), oembed_replacecb(), oexchange_content(), parse_xml_string(), photos_post(), poco_load(), prepare_body(), print_template(), printable(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), protect_sprintf(), purify_html(), qp(), random_string(), Template\replace(), replace_macros(), FriendicaSmartyEngine\replace_macros(), Template\replace_macros(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), searchbox(), siteinfo_content(), smilies(), sslify(), string_splitter(), strip_zids(), stripdcode_br_cb(), t(), template_escape(), template_unescape(), term_query(), theme_attachments(), unamp(), undo_post_tagging(), unxmlify(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), Template\var_replace(), webfinger_rfc7033(), x(), xchan_content(), z_fetch_url(), z_input_filter(), z_post_url(), zfinger_init(), and zid().

    +

    Referenced by Template\_build_nodes(), Template\_replcb_node(), admin_page_themes(), app_decode(), attribute_contains(), base64url_decode(), base64url_encode(), bb_tag_preg_replace(), bb_translate_video(), bbtoevent(), bbtovcal(), bookmarks_init(), chanlink_hash(), chanlink_url(), comanche_parser(), comanche_region(), comanche_webpage(), datetime_convert(), day_translate(), detect_language(), diaspora2bb(), diaspora_is_blacklisted(), diaspora_ol(), diaspora_ul(), dir_parse_query(), dir_query_build(), event_store_item(), expand_acl(), extra_query_args(), file_tag_decode(), file_tag_encode(), file_tag_file_query(), fix_mce_lf(), fix_private_photos(), format_categories(), format_filer(), format_hashtags(), format_mentions(), format_term_for_display(), get_bb_tag_pos(), get_intltext_template(), get_language_name(), get_markup_template(), get_tags(), html2bb_video(), import_xchan(), info(), is_a_date_arg(), is_foreigner(), is_member(), json_decode_plus(), legal_webbie(), linkify(), load_pdl(), magic_link(), mail_content(), network_to_name(), normalise_openid(), notice(), notifier_run(), oembed_iframe(), oembed_replacecb(), oexchange_content(), parse_xml_string(), photos_post(), poco_load(), prepare_body(), print_template(), printable(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), protect_sprintf(), purify_html(), qp(), random_string(), Template\replace(), replace_macros(), FriendicaSmartyEngine\replace_macros(), Template\replace_macros(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), searchbox(), siteinfo_content(), smilies(), sslify(), string_splitter(), strip_zids(), stripdcode_br_cb(), t(), template_escape(), template_unescape(), term_query(), theme_attachments(), unamp(), undo_post_tagging(), unxmlify(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), Template\var_replace(), webfinger_rfc7033(), x(), xchan_content(), z_fetch_url(), z_input_filter(), z_post_url(), zfinger_init(), and zid().

    diff --git a/doc/html/files.html b/doc/html/files.html index f5a3e5e36..640a7234a 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -408,25 +408,37 @@ $(document).ready(function(){initNavTree('files.html','');}); | |   o*config.php | |   o*default.php | |   \*theme.php -| o+mytheme -| |\+php -| | o*default.php -| | o*style.php -| | \*theme.php -| \+redbasic -|  o+php -|  |o*config.php -|  |o*style.php -|  |o*theme.php -|  |\*theme_init.php -|  \+schema -|   o*boxy.php -|   o*BS-Default.php -|   o*dark.php -|   o*notred.php -|   o*simple_black_on_white.php -|   o*simple_green_on_black.php -|   \*simple_white_on_black.php +| o+hivenet +| |\+php +| | o*style.php +| | \*theme.php +| o+mytheme +| |\+php +| | o*default.php +| | o*style.php +| | \*theme.php +| o+redbasic +| |o+php +| ||o*config.php +| ||o*style.php +| ||o*theme.php +| ||\*theme_init.php +| |\+schema +| | o*boxy.php +| | o*BS-Default.php +| | o*dark.php +| | o*notred.php +| | o*simple_black_on_white.php +| | o*simple_green_on_black.php +| | \*simple_white_on_black.php +| o+stumble +| |\+php +| | o*style.php +| | \*theme.php +| \+suckerberg +|  \+php +|   o*style.php +|   \*theme.php \*boot.php diff --git a/doc/html/globals_0x61.html b/doc/html/globals_0x61.html index f789f92bb..1274fbb03 100644 --- a/doc/html/globals_0x61.html +++ b/doc/html/globals_0x61.html @@ -522,6 +522,9 @@ $(document).ready(function(){initNavTree('globals_0x61.html','');});
  • api_post() : api.php
  • +
  • api_red_xchan() +: api.php +
  • api_register_func() : api.php
  • diff --git a/doc/html/globals_0x64.html b/doc/html/globals_0x64.html index 314b2c265..52b9313da 100644 --- a/doc/html/globals_0x64.html +++ b/doc/html/globals_0x64.html @@ -145,14 +145,14 @@ $(document).ready(function(){initNavTree('globals_0x64.html','');});

    - d -

    • datesel() -: datetime.php -
    • -
    • datesel_format() -: datetime.php +: datetime.php
    • datetime_convert() : datetime.php
    • +
    • datetimesel() +: datetime.php +
    • day_translate() : text.php
    • diff --git a/doc/html/globals_0x68.html b/doc/html/globals_0x68.html index d977abe55..8a464ae94 100644 --- a/doc/html/globals_0x68.html +++ b/doc/html/globals_0x68.html @@ -189,6 +189,9 @@ $(document).ready(function(){initNavTree('globals_0x68.html','');});
    • help_content() : help.php
    • +
    • hivenet_init() +: theme.php +
    • home_content() : home.php
    • diff --git a/doc/html/globals_0x6c.html b/doc/html/globals_0x6c.html index 2d5f282b7..5b3016536 100644 --- a/doc/html/globals_0x6c.html +++ b/doc/html/globals_0x6c.html @@ -204,6 +204,9 @@ $(document).ready(function(){initNavTree('globals_0x6c.html','');});
    • load_pconfig() : config.php
    • +
    • load_pdl() +: boot.php +
    • load_plugin() : plugin.php
    • diff --git a/doc/html/globals_0x73.html b/doc/html/globals_0x73.html index 014205a9e..03522e36b 100644 --- a/doc/html/globals_0x73.html +++ b/doc/html/globals_0x73.html @@ -325,7 +325,7 @@ $(document).ready(function(){initNavTree('globals_0x73.html','');}); : boot.php
    • store_diaspora_comment_sig() -: items.php +: items.php
    • store_item_tag() : taxonomy.php @@ -351,9 +351,15 @@ $(document).ready(function(){initNavTree('globals_0x73.html','');});
    • stripdcode_br_cb() : bb2diaspora.php
    • +
    • stumble_init() +: theme.php +
    • subthread_content() : subthread.php
    • +
    • suckerberg_init() +: theme.php +
    • suggest_content() : suggest.php
    • diff --git a/doc/html/globals_0x74.html b/doc/html/globals_0x74.html index 1013da261..48ce7c771 100644 --- a/doc/html/globals_0x74.html +++ b/doc/html/globals_0x74.html @@ -265,7 +265,7 @@ $(document).ready(function(){initNavTree('globals_0x74.html','');}); : thing.php
    • timesel() -: datetime.php +: datetime.php
    • timezone_cmp() : datetime.php diff --git a/doc/html/globals_0x78.html b/doc/html/globals_0x78.html index 368f1a7a2..dc2845bd9 100644 --- a/doc/html/globals_0x78.html +++ b/doc/html/globals_0x78.html @@ -150,6 +150,9 @@ $(document).ready(function(){initNavTree('globals_0x78.html','');});
    • xchan_content() : xchan.php
    • +
    • xchan_fetch() +: hubloc.php +
    • XCHAN_FLAGS_CENSORED : boot.php
    • @@ -177,6 +180,9 @@ $(document).ready(function(){initNavTree('globals_0x78.html','');});
    • xchan_query() : text.php
    • +
    • xchan_store() +: hubloc.php +
    • xml2array() : network.php
    • diff --git a/doc/html/globals_func_0x61.html b/doc/html/globals_func_0x61.html index ee7ca7aa7..a7712761a 100644 --- a/doc/html/globals_func_0x61.html +++ b/doc/html/globals_func_0x61.html @@ -374,6 +374,9 @@ $(document).ready(function(){initNavTree('globals_func_0x61.html','');});
    • api_post() : api.php
    • +
    • api_red_xchan() +: api.php +
    • api_register_func() : api.php
    • diff --git a/doc/html/globals_func_0x64.html b/doc/html/globals_func_0x64.html index b52048dc5..c788e8a9f 100644 --- a/doc/html/globals_func_0x64.html +++ b/doc/html/globals_func_0x64.html @@ -144,14 +144,14 @@ $(document).ready(function(){initNavTree('globals_func_0x64.html','');});

      - d -

      • datesel() -: datetime.php -
      • -
      • datesel_format() -: datetime.php +: datetime.php
      • datetime_convert() : datetime.php
      • +
      • datetimesel() +: datetime.php +
      • day_translate() : text.php
      • diff --git a/doc/html/globals_func_0x68.html b/doc/html/globals_func_0x68.html index 89ce80d99..7739ffc9b 100644 --- a/doc/html/globals_func_0x68.html +++ b/doc/html/globals_func_0x68.html @@ -188,6 +188,9 @@ $(document).ready(function(){initNavTree('globals_func_0x68.html','');});
      • help_content() : help.php
      • +
      • hivenet_init() +: theme.php +
      • home_content() : home.php
      • diff --git a/doc/html/globals_func_0x6c.html b/doc/html/globals_func_0x6c.html index 3987ba94b..c0e581e73 100644 --- a/doc/html/globals_func_0x6c.html +++ b/doc/html/globals_func_0x6c.html @@ -197,6 +197,9 @@ $(document).ready(function(){initNavTree('globals_func_0x6c.html','');});
      • load_pconfig() : config.php
      • +
      • load_pdl() +: boot.php +
      • load_plugin() : plugin.php
      • diff --git a/doc/html/globals_func_0x73.html b/doc/html/globals_func_0x73.html index e7a91598d..dd80318c2 100644 --- a/doc/html/globals_func_0x73.html +++ b/doc/html/globals_func_0x73.html @@ -312,7 +312,7 @@ $(document).ready(function(){initNavTree('globals_func_0x73.html','');}); : conversation.php
      • store_diaspora_comment_sig() -: items.php +: items.php
      • store_item_tag() : taxonomy.php @@ -338,9 +338,15 @@ $(document).ready(function(){initNavTree('globals_func_0x73.html','');});
      • stripdcode_br_cb() : bb2diaspora.php
      • +
      • stumble_init() +: theme.php +
      • subthread_content() : subthread.php
      • +
      • suckerberg_init() +: theme.php +
      • suggest_content() : suggest.php
      • diff --git a/doc/html/globals_func_0x74.html b/doc/html/globals_func_0x74.html index 948474abe..b7027bb20 100644 --- a/doc/html/globals_func_0x74.html +++ b/doc/html/globals_func_0x74.html @@ -213,7 +213,7 @@ $(document).ready(function(){initNavTree('globals_func_0x74.html','');}); : thing.php
      • timesel() -: datetime.php +: datetime.php
      • timezone_cmp() : datetime.php diff --git a/doc/html/globals_func_0x78.html b/doc/html/globals_func_0x78.html index 211bd1000..d20431ab2 100644 --- a/doc/html/globals_func_0x78.html +++ b/doc/html/globals_func_0x78.html @@ -149,12 +149,18 @@ $(document).ready(function(){initNavTree('globals_func_0x78.html','');});
      • xchan_content() : xchan.php
      • +
      • xchan_fetch() +: hubloc.php +
      • xchan_mail_query() : text.php
      • xchan_query() : text.php
      • +
      • xchan_store() +: hubloc.php +
      • xml2array() : network.php
      • diff --git a/doc/html/hivenet_2php_2style_8php.html b/doc/html/hivenet_2php_2style_8php.html new file mode 100644 index 000000000..b2adc9011 --- /dev/null +++ b/doc/html/hivenet_2php_2style_8php.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: view/theme/hivenet/php/style.php File Reference + + + + + + + + + + + + + +
        +
        + + + + + + + +
        +
        The Red Matrix +
        +
        +
        + + + + + +
        +
        + +
        +
        +
        + +
        + + + + +
        + +
        + +
        +
        +
        style.php File Reference
        +
        +
        +
        +
        + diff --git a/doc/html/hivenet_2php_2theme_8php.html b/doc/html/hivenet_2php_2theme_8php.html new file mode 100644 index 000000000..de9afb019 --- /dev/null +++ b/doc/html/hivenet_2php_2theme_8php.html @@ -0,0 +1,144 @@ + + + + + + +The Red Matrix: view/theme/hivenet/php/theme.php File Reference + + + + + + + + + + + + + +
        +
        + + + + + + + +
        +
        The Red Matrix +
        +
        +
        + + + + + +
        +
        + +
        +
        +
        + +
        + + + + +
        + +
        + +
        + +
        +
        theme.php File Reference
        +
        +
        + + + + +

        +Functions

         hivenet_init (&$a)
         
        +

        Function Documentation

        + +
        +
        + + + + + + + + +
        hivenet_init ($a)
        +
        +
          +
        • Name: Hivenet
        • +
        • Description: An experimental red-colored theme based on redbasic
        • +
        • Version: 1.0
        • +
        • Author: Sean Tilley
        • +
        • Compat: Red [*]
        • +
        + +
        +
        +
        +
        + diff --git a/doc/html/hivenet_2php_2theme_8php.js b/doc/html/hivenet_2php_2theme_8php.js new file mode 100644 index 000000000..f6923b33f --- /dev/null +++ b/doc/html/hivenet_2php_2theme_8php.js @@ -0,0 +1,4 @@ +var hivenet_2php_2theme_8php = +[ + [ "hivenet_init", "hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29", null ] +]; \ No newline at end of file diff --git a/doc/html/hubloc_8php.html b/doc/html/hubloc_8php.html index bdc2eaa03..cd60f6b6a 100644 --- a/doc/html/hubloc_8php.html +++ b/doc/html/hubloc_8php.html @@ -120,6 +120,10 @@ Functions    hubloc_change_primary ($hubloc)   + xchan_store ($arr) +  + xchan_fetch ($arr) + 

        Function Documentation

        @@ -190,6 +194,42 @@ Functions

        Referenced by poller_run().

        + + + +
        +
        + + + + + + + + +
        xchan_fetch ( $arr)
        +
        + +

        Referenced by api_red_xchan().

        + +
        +
        + +
        +
        + + + + + + + + +
        xchan_store ( $arr)
        +
        + +

        Referenced by api_red_xchan().

        +
        diff --git a/doc/html/hubloc_8php.js b/doc/html/hubloc_8php.js index 0c81388d9..d16715d55 100644 --- a/doc/html/hubloc_8php.js +++ b/doc/html/hubloc_8php.js @@ -3,5 +3,7 @@ var hubloc_8php = [ "hubloc_change_primary", "hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d", null ], [ "is_matrix_url", "hubloc_8php.html#aebd244b4616ded022cbbee5e82926951", null ], [ "prune_hub_reinstalls", "hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002", null ], - [ "remove_obsolete_hublocs", "hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea", null ] + [ "remove_obsolete_hublocs", "hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea", null ], + [ "xchan_fetch", "hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea", null ], + [ "xchan_store", "hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b", null ] ]; \ No newline at end of file diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html index f54d372ee..184cb2c1f 100644 --- a/doc/html/identity_8php.html +++ b/doc/html/identity_8php.html @@ -314,7 +314,7 @@ Functions
        Returns
        string
        -

        Referenced by app_render(), app_store(), app_update(), avatar_img(), import_profile_photo(), openid_content(), parse_app_description(), and photo_init().

        +

        Referenced by app_render(), app_store(), app_update(), avatar_img(), import_profile_photo(), openid_content(), parse_app_description(), photo_init(), and xchan_store().

        diff --git a/doc/html/include_2api_8php.html b/doc/html/include_2api_8php.html index 55dc11fad..2347d75af 100644 --- a/doc/html/include_2api_8php.html +++ b/doc/html/include_2api_8php.html @@ -149,6 +149,8 @@ Functions    api_group (&$a, $type)   + api_red_xchan (&$a, $type) +   api_statuses_mediap (&$a, $type)    api_statuses_update (&$a, $type) @@ -1084,6 +1086,32 @@ Variables
        +
        + + +
        +
        + + + + + + + + + + + + + + + + + + +
        api_red_xchan ($a,
         $type 
        )
        +
        +
        @@ -1570,7 +1598,7 @@ Variables diff --git a/doc/html/include_2api_8php.js b/doc/html/include_2api_8php.js index 6ef1f5f68..6e8ba125d 100644 --- a/doc/html/include_2api_8php.js +++ b/doc/html/include_2api_8php.js @@ -32,6 +32,7 @@ var include_2api_8php = [ "api_oauth_access_token", "include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0", null ], [ "api_oauth_request_token", "include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3", null ], [ "api_photos", "include_2api_8php.html#aa6fc3bc8c0fad1d081db0dcc456dd77f", null ], + [ "api_red_xchan", "include_2api_8php.html#a4fe872332ff0bd8d5eae2f0c6819cb60", null ], [ "api_register_func", "include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a", null ], [ "api_rss_extra", "include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f", null ], [ "api_status_show", "include_2api_8php.html#a645397787618b5c548a31e8686e8cca4", null ], diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index b0f3479bb..496ab8186 100644 --- a/doc/html/include_2config_8php.html +++ b/doc/html/include_2config_8php.html @@ -340,7 +340,7 @@ Functions
        Returns
        mixed Return value or false on error or if not set
        -

        Referenced by account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), bb2diaspora_itembody(), bbcode(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), check_upstream_directory(), 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(), dirprofile_init(), dirsearch_content(), display_content(), dlogger(), dob(), downgrade_accounts(), editblock_content(), editpost_content(), editwebpage_content(), encode_item(), encode_mail(), events_content(), expire_run(), externals_run(), feature_enabled(), feed_init(), filter_insecure(), find_upstream_directory(), findpeople_widget(), get_all_perms(), Item\get_comment_box(), get_default_profile_photo(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_max_import_size(), get_online_status(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), group_content(), guess_image_type(), home_content(), home_init(), identity_basic_export(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), is_public_profile(), item_post(), item_store(), item_store_update(), photo_imagick\load(), localize_item(), logger(), login(), lostpass_content(), lostpass_post(), mark_orphan_hubsxchans(), nav(), navbar_complete(), network_content(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_contact(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), openid_content(), parse_url_content(), perm_is_allowed(), photo_factory(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), RedMatrix\RedDAV\RedFile\put(), receive_post(), 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(), theme_admin(), unobscure(), update_modtime(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), verify_email_address(), viewconnections_content(), viewconnections_init(), viewsrc_content(), widget_fullprofile(), widget_profile(), z_fetch_url(), z_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

        +

        Referenced by account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), bb2diaspora_itembody(), bbcode(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), check_upstream_directory(), 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(), dirprofile_init(), dirsearch_content(), display_content(), dlogger(), dob(), downgrade_accounts(), editblock_content(), editpost_content(), editwebpage_content(), encode_item(), encode_mail(), events_content(), expire_run(), externals_run(), feature_enabled(), feed_init(), filter_insecure(), find_upstream_directory(), findpeople_widget(), get_all_perms(), Item\get_comment_box(), get_default_profile_photo(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_max_import_size(), get_online_status(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), group_content(), guess_image_type(), home_content(), home_init(), identity_basic_export(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), is_public_profile(), item_post(), item_store(), item_store_update(), photo_imagick\load(), localize_item(), logger(), login(), lostpass_content(), lostpass_post(), mark_orphan_hubsxchans(), nav(), navbar_complete(), network_content(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_contact(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), openid_content(), parse_url_content(), perm_is_allowed(), photo_factory(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), RedMatrix\RedDAV\RedFile\put(), receive_post(), 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(), theme_admin(), 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().

        @@ -433,7 +433,7 @@ Functions
        Returns
        mixed Stored value or false if it does not exist
        -

        Referenced by Conversation\__construct(), acl_init(), bb2diaspora_itembody(), App\build_pagehead(), change_channel(), channel_content(), connect_content(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_remove(), conversation(), current_theme(), display_content(), editpost_content(), feature_enabled(), findpeople_widget(), fix_attached_file_permissions(), fix_attached_photo_permissions(), Item\get_comment_box(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), home_init(), invite_content(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), FKOAuth1\loginUser(), mail_content(), message_content(), nav(), network_content(), new_contact(), notification(), pdledit_content(), post_post(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), rpost_content(), search_content(), set_pconfig(), smilies(), tag_deliver(), theme_content(), webpages_content(), and widget_notes().

        +

        Referenced by Conversation\__construct(), acl_init(), bb2diaspora_itembody(), App\build_pagehead(), change_channel(), channel_content(), connect_content(), connedit_content(), connedit_post(), contact_block(), contact_remove(), conversation(), current_theme(), display_content(), editpost_content(), feature_enabled(), findpeople_widget(), fix_attached_file_permissions(), fix_attached_photo_permissions(), Item\get_comment_box(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), home_init(), invite_content(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), load_pdl(), FKOAuth1\loginUser(), mail_content(), message_content(), nav(), network_content(), new_contact(), notification(), pdledit_content(), post_post(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), rpost_content(), search_content(), set_pconfig(), smilies(), tag_deliver(), theme_content(), webpages_content(), and widget_notes().

        diff --git a/doc/html/include_2network_8php.html b/doc/html/include_2network_8php.html index 2a5cb1c96..9537e68a6 100644 --- a/doc/html/include_2network_8php.html +++ b/doc/html/include_2network_8php.html @@ -463,7 +463,7 @@ Functions diff --git a/doc/html/items_8php.html b/doc/html/items_8php.html index 693ca815a..ffba36cd4 100644 --- a/doc/html/items_8php.html +++ b/doc/html/items_8php.html @@ -192,8 +192,8 @@ Functions    item_store_update ($arr, $allow_exec=false)   - store_diaspora_comment_sig ($datarray, $channel, $parent_item, $post_id) -  + store_diaspora_comment_sig ($datarray, $channel, $parent_item, $post_id, $walltowall=false) +   send_status_notifications ($post_id, $item)    get_item_contact ($item, $contacts) @@ -1884,7 +1884,7 @@ Functions - +
        @@ -1910,7 +1910,13 @@ Functions - + + + + + + + diff --git a/doc/html/items_8php.js b/doc/html/items_8php.js index 7b326cce6..c0568d1f7 100644 --- a/doc/html/items_8php.js +++ b/doc/html/items_8php.js @@ -64,7 +64,7 @@ var items_8php = [ "retain_item", "items_8php.html#af6237605c60d69abdd959ddbbee3420c", null ], [ "send_status_notifications", "items_8php.html#aab9e0c58247427126de0699c729c3b6c", null ], [ "start_delivery_chain", "items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2", null ], - [ "store_diaspora_comment_sig", "items_8php.html#af0a887050dc8d0f51c89890cdaf3145f", null ], + [ "store_diaspora_comment_sig", "items_8php.html#a25221826fa4621f523c68483e3b6af26", null ], [ "tag_deliver", "items_8php.html#ab1bce4261bcf75ad62753b498a144d17", null ], [ "termtype", "items_8php.html#ad34827ed330898456783fb14c7b46154", null ], [ "tgroup_check", "items_8php.html#a88c6cf7649ac836fbbed82a7a0315110", null ], diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index 0f1fe6ebd..073080f20 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -372,7 +372,7 @@ Functions
        Returns
        translated string if exists, otherwise return $s
        -

        Referenced by account_remove(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), app_render(), app_store(), app_update(), appman_content(), appman_post(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bb2diaspora_itembody(), bbcode(), block_content(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), 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(), datesel_format(), day_translate(), delegate_content(), design_tools(), diaspora_like(), dir_safe_mode(), dir_sort_links(), dir_tagblock(), directory_content(), dirprofile_init(), dirsearch_content(), display_content(), 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_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_content(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), poll_content(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), role_selector(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_scope(), translate_system_apps(), update_birthdays(), update_channel_content(), update_display_content(), update_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_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

        +

        Referenced by account_remove(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), app_render(), app_store(), app_update(), appman_content(), appman_post(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bb2diaspora_itembody(), bbcode(), block_content(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), 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(), dirprofile_init(), dirsearch_content(), display_content(), 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_post(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), marital_selector_min(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_init(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), poll_content(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), role_selector(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_scope(), translate_system_apps(), update_birthdays(), update_channel_content(), update_display_content(), update_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_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

        diff --git a/doc/html/navtree.js b/doc/html/navtree.js index 29bd1cf55..b13e549ed 100644 --- a/doc/html/navtree.js +++ b/doc/html/navtree.js @@ -37,15 +37,15 @@ var NAVTREE = var NAVTREEINDEX = [ "BS-Default_8php.html", -"boot_8php.html#a56fd673eaa7014150297ce1162502db5", -"classApp.html#a557d7b779d8259027f4724ebf7b248dc", -"classdba__driver.html", -"dir_05f4fba29266e8fd7869afcd6cefb5cb.html", -"gprobe_8php.html", -"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487", -"notifier_8php.html", -"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75", -"view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793" +"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209", +"classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be", +"classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6", +"dir_0262a6a8df56a167e3761b6e5a54bb1c.html", +"globals_vars_0x72.html", +"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6", +"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a", +"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb", +"updatetpl_8py.html#ac9d11279fed403a329a719298feafc4f" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index 7e19edb9b..30ad06206 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -1,6 +1,6 @@ var NAVTREEINDEX0 = { -"BS-Default_8php.html":[6,0,3,1,3,1,1], +"BS-Default_8php.html":[6,0,3,1,4,1,1], "BaseObject_8php.html":[6,0,0,10], "Contact_8php.html":[6,0,0,21], "Contact_8php.html#a024919623a830e8703ac4f23496dd66c":[6,0,0,21,2], @@ -152,102 +152,102 @@ var NAVTREEINDEX0 = "blogga_2view_2theme_2blog_2theme_8php.html#aae58cc837fe56473d9f3370abfe533ae":[6,0,3,1,1,1,0,0,2,1], "blogga_2view_2theme_2blog_2theme_8php.html#af634a3f721c5e238530d0636d33230ec":[6,0,3,1,1,1,0,0,2,4], "boot_8php.html":[6,0,4], -"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[6,0,4,145], -"boot_8php.html#a01353c9abebc3544ea080ac161729632":[6,0,4,38], -"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,159], -"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,264], -"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,137], -"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[6,0,4,57], -"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,178], -"boot_8php.html#a0450389f24c632906fbc24347700a543":[6,0,4,48], -"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[6,0,4,110], +"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[6,0,4,146], +"boot_8php.html#a01353c9abebc3544ea080ac161729632":[6,0,4,39], +"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,160], +"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,265], +"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,138], +"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[6,0,4,58], +"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,179], +"boot_8php.html#a0450389f24c632906fbc24347700a543":[6,0,4,49], +"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[6,0,4,111], "boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[6,0,4,1], -"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,221], -"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[6,0,4,72], -"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[6,0,4,182], -"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,284], -"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,280], -"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,283], +"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,222], +"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[6,0,4,73], +"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[6,0,4,183], +"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,285], +"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,281], +"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,284], "boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[6,0,4,22], -"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[6,0,4,64], +"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[6,0,4,65], "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[6,0,4,15], -"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[6,0,4,82], -"boot_8php.html#a107d53f96acf5319905a34b1870db09a":[6,0,4,41], -"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,269], -"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,139], -"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,268], -"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[6,0,4,86], -"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[6,0,4,83], -"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[6,0,4,209], -"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[6,0,4,67], -"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[6,0,4,158], -"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[6,0,4,154], -"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[6,0,4,181], -"boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[6,0,4,148], -"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,292], -"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,258], -"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,294], -"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[6,0,4,185], -"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[6,0,4,81], -"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[6,0,4,236], -"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[6,0,4,112], -"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[6,0,4,165], -"boot_8php.html#a205d013103997adfa72953d2f20c01e1":[6,0,4,230], -"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[6,0,4,202], -"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,260], -"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[6,0,4,42], +"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[6,0,4,83], +"boot_8php.html#a107d53f96acf5319905a34b1870db09a":[6,0,4,42], +"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,270], +"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,140], +"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,269], +"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[6,0,4,87], +"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[6,0,4,84], +"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[6,0,4,210], +"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[6,0,4,68], +"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[6,0,4,159], +"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[6,0,4,155], +"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[6,0,4,182], +"boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[6,0,4,149], +"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,293], +"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,259], +"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,295], +"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[6,0,4,186], +"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[6,0,4,82], +"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[6,0,4,237], +"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[6,0,4,113], +"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[6,0,4,166], +"boot_8php.html#a205d013103997adfa72953d2f20c01e1":[6,0,4,231], +"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[6,0,4,203], +"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,261], +"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[6,0,4,43], "boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[6,0,4,21], -"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[6,0,4,105], -"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[6,0,4,97], -"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,272], -"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,205], -"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[6,0,4,88], -"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[6,0,4,138], -"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[6,0,4,234], -"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[6,0,4,113], -"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,256], -"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,201], -"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,134], -"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[6,0,4,73], -"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[6,0,4,78], +"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[6,0,4,106], +"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[6,0,4,98], +"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,273], +"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,206], +"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[6,0,4,89], +"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[6,0,4,139], +"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[6,0,4,235], +"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[6,0,4,114], +"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,257], +"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,202], +"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,135], +"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[6,0,4,74], +"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[6,0,4,79], "boot_8php.html#a329400dcb29897cdaae3020109272285":[6,0,4,17], -"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[6,0,4,241], -"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[6,0,4,152], -"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[6,0,4,45], -"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[6,0,4,127], -"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[6,0,4,167], -"boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[6,0,4,217], -"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,298], -"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[6,0,4,190], -"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[6,0,4,116], -"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[6,0,4,121], -"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,297], -"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,187], -"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,232], +"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[6,0,4,242], +"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[6,0,4,153], +"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[6,0,4,46], +"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[6,0,4,128], +"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[6,0,4,168], +"boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[6,0,4,218], +"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,299], +"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[6,0,4,191], +"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[6,0,4,117], +"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[6,0,4,122], +"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,298], +"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,188], +"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,233], "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[6,0,4,12], -"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[6,0,4,65], -"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[6,0,4,95], -"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[6,0,4,55], -"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[6,0,4,141], -"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[6,0,4,225], -"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[6,0,4,200], -"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[6,0,4,94], -"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[6,0,4,175], -"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[6,0,4,162], -"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[6,0,4,76], -"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,168], -"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,281], -"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[6,0,4,188], -"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[6,0,4,111], -"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,250], -"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,186], +"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[6,0,4,66], +"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[6,0,4,96], +"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[6,0,4,56], +"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[6,0,4,142], +"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[6,0,4,226], +"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[6,0,4,201], +"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[6,0,4,95], +"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[6,0,4,176], +"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[6,0,4,163], +"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[6,0,4,77], +"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,169], +"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,282], +"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[6,0,4,189], +"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[6,0,4,112], +"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,251], +"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,187], "boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[6,0,4,6], -"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,223], -"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,61], -"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,246], -"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,212], -"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,166], -"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,43], -"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,87], -"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,35] +"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,224], +"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,62], +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,247], +"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,213], +"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,30], +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,167], +"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,44], +"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,88] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index 5784f0f8f..6950ffef0 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,206 +1,207 @@ var NAVTREEINDEX1 = { -"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,204], -"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,245], -"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,295], +"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,36], +"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,205], +"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,246], +"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,296], "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[6,0,4,20], -"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[6,0,4,66], -"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[6,0,4,194], -"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[6,0,4,218], -"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[6,0,4,84], -"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[6,0,4,173], -"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[6,0,4,219], -"boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c":[6,0,4,33], +"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[6,0,4,67], +"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[6,0,4,195], +"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[6,0,4,219], +"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[6,0,4,85], +"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[6,0,4,174], +"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[6,0,4,220], +"boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c":[6,0,4,34], "boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[6,0,4,19], "boot_8php.html#a6252d8eca67c689d9035ec6da544cf46":[6,0,4,25], -"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[6,0,4,80], -"boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,109], -"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,277], -"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[6,0,4,179], -"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[6,0,4,150], -"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[6,0,4,153], -"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[6,0,4,47], -"boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,156], -"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,262], -"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[6,0,4,249], -"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[6,0,4,243], -"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[6,0,4,106], -"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[6,0,4,98], -"boot_8php.html#a6cd1b4081630b2bf7be38836cd9f410c":[6,0,4,213], -"boot_8php.html#a6df1102664f64b274810db85197c2755":[6,0,4,229], -"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[6,0,4,136], -"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[6,0,4,224], -"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[6,0,4,107], -"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,261], -"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,172], +"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[6,0,4,81], +"boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,110], +"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,278], +"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[6,0,4,180], +"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[6,0,4,151], +"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[6,0,4,154], +"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[6,0,4,48], +"boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,157], +"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,263], +"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[6,0,4,250], +"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[6,0,4,244], +"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[6,0,4,107], +"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[6,0,4,99], +"boot_8php.html#a6cd1b4081630b2bf7be38836cd9f410c":[6,0,4,214], +"boot_8php.html#a6df1102664f64b274810db85197c2755":[6,0,4,230], +"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[6,0,4,137], +"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[6,0,4,225], +"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[6,0,4,108], +"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,262], +"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,173], "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[6,0,4,29], -"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[6,0,4,195], -"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[6,0,4,143], -"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[6,0,4,77], +"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[6,0,4,196], +"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[6,0,4,144], +"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[6,0,4,78], "boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[6,0,4,2], -"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,285], +"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,286], "boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[6,0,4,4], -"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[6,0,4,79], -"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[6,0,4,92], -"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,252], -"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,122], -"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[6,0,4,70], -"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[6,0,4,142], -"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[6,0,4,174], -"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[6,0,4,74], -"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,114], -"boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[6,0,4,62], -"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[6,0,4,176], -"boot_8php.html#a7eeb83e15968f7a6cc5937d493815773":[6,0,4,49], -"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[6,0,4,52], -"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[6,0,4,89], -"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[6,0,4,125], -"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[6,0,4,215], -"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[6,0,4,56], -"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[6,0,4,119], -"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[6,0,4,60], -"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[6,0,4,227], -"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[6,0,4,132], -"boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[6,0,4,124], -"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,276], -"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,275], -"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,193], +"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[6,0,4,80], +"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[6,0,4,93], +"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,253], +"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,123], +"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[6,0,4,71], +"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[6,0,4,143], +"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[6,0,4,175], +"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[6,0,4,75], +"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,115], +"boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[6,0,4,63], +"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[6,0,4,177], +"boot_8php.html#a7eeb83e15968f7a6cc5937d493815773":[6,0,4,50], +"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[6,0,4,53], +"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[6,0,4,90], +"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[6,0,4,126], +"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[6,0,4,216], +"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[6,0,4,57], +"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[6,0,4,120], +"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[6,0,4,61], +"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[6,0,4,228], +"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[6,0,4,133], +"boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[6,0,4,125], +"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,277], +"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,276], +"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,194], "boot_8php.html#a899d24fd074594ceebbf72e1feff335f":[6,0,4,16], -"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[6,0,4,103], -"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[6,0,4,247], -"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[6,0,4,135], -"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[6,0,4,129], -"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,254], -"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,293], -"boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[6,0,4,32], +"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[6,0,4,104], +"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[6,0,4,248], +"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[6,0,4,136], +"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[6,0,4,130], +"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,255], +"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,294], +"boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[6,0,4,33], "boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[6,0,4,11], -"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[6,0,4,157], -"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[6,0,4,133], -"boot_8php.html#a949116d9a295b214293006c060ca4848":[6,0,4,131], -"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,288], -"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,259], +"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[6,0,4,158], +"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[6,0,4,134], +"boot_8php.html#a949116d9a295b214293006c060ca4848":[6,0,4,132], +"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,289], +"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,260], "boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[6,0,4,18], -"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[6,0,4,207], -"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[6,0,4,248], -"boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[6,0,4,51], +"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[6,0,4,208], +"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[6,0,4,249], +"boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[6,0,4,52], "boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[6,0,4,5], -"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[6,0,4,239], -"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[6,0,4,208], -"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,291], -"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,278], -"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[6,0,4,238], -"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[6,0,4,196], +"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[6,0,4,240], +"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[6,0,4,209], +"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,292], +"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,279], +"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[6,0,4,239], +"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[6,0,4,197], "boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[6,0,4,26], -"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[6,0,4,216], -"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[6,0,4,46], -"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[6,0,4,164], +"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[6,0,4,217], +"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[6,0,4,47], +"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[6,0,4,165], "boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[6,0,4,9], -"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[6,0,4,161], -"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[6,0,4,118], -"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[6,0,4,91], -"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[6,0,4,100], -"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[6,0,4,244], -"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[6,0,4,147], -"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[6,0,4,226], -"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[6,0,4,71], -"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[6,0,4,199], -"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[6,0,4,123], -"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[6,0,4,228], -"boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[6,0,4,34], -"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,222], -"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,251], -"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[6,0,4,192], -"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[6,0,4,233], -"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[6,0,4,117], -"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[6,0,4,149], -"boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[6,0,4,58], -"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,210], +"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[6,0,4,162], +"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[6,0,4,119], +"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[6,0,4,92], +"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[6,0,4,101], +"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[6,0,4,245], +"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[6,0,4,148], +"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[6,0,4,227], +"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[6,0,4,72], +"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[6,0,4,200], +"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[6,0,4,124], +"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[6,0,4,229], +"boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[6,0,4,35], +"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,223], +"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,252], +"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[6,0,4,193], +"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[6,0,4,234], +"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[6,0,4,118], +"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[6,0,4,150], +"boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[6,0,4,59], +"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,211], "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[6,0,4,7], -"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,102], -"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,287], -"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[6,0,4,39], -"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,255], +"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,103], +"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,288], +"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[6,0,4,40], +"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,256], "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[6,0,4,3], -"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,282], -"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[6,0,4,69], -"boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[6,0,4,120], -"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[6,0,4,101], -"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[6,0,4,130], +"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,283], +"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[6,0,4,70], +"boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[6,0,4,121], +"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[6,0,4,102], +"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[6,0,4,131], "boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[6,0,4,24], -"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,177], -"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,253], -"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,140], -"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[6,0,4,99], +"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,178], +"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,254], +"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,141], +"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[6,0,4,100], "boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08":[6,0,4,27], -"boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[6,0,4,37], -"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[6,0,4,59], -"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[6,0,4,289], -"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[6,0,4,126], -"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[6,0,4,128], -"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[6,0,4,206], -"boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[6,0,4,36], +"boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[6,0,4,38], +"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[6,0,4,60], +"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[6,0,4,290], +"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[6,0,4,127], +"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[6,0,4,129], +"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[6,0,4,207], +"boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[6,0,4,37], "boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[6,0,4,13], "boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[6,0,4,8], -"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[6,0,4,180], -"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,290], -"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,240], -"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,274], -"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,214], -"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[6,0,4,68], -"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[6,0,4,160], -"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[6,0,4,170], +"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[6,0,4,181], +"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,291], +"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,241], +"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,275], +"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,215], +"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[6,0,4,69], +"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[6,0,4,161], +"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[6,0,4,171], "boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13":[6,0,4,10], -"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[6,0,4,75], -"boot_8php.html#ad34c1547020a305915bcc39707744690":[6,0,4,90], -"boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[6,0,4,30], -"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[6,0,4,235], -"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,263], -"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,257], -"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[6,0,4,96], -"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,144], -"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,266], -"boot_8php.html#add517a0958ac684792c62142a3877f81":[6,0,4,40], +"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[6,0,4,76], +"boot_8php.html#ad34c1547020a305915bcc39707744690":[6,0,4,91], +"boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[6,0,4,31], +"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[6,0,4,236], +"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,264], +"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,258], +"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[6,0,4,97], +"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,145], +"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,267], +"boot_8php.html#add517a0958ac684792c62142a3877f81":[6,0,4,41], "boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[6,0,4,23], -"boot_8php.html#ae0d9527117cd87dcba11986047ae336e":[6,0,4,44], -"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,108], -"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,273], -"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[6,0,4,189], -"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[6,0,4,163], -"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[6,0,4,197], -"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,286], +"boot_8php.html#ae0d9527117cd87dcba11986047ae336e":[6,0,4,45], +"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,109], +"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,274], +"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[6,0,4,190], +"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[6,0,4,164], +"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[6,0,4,198], +"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,287], "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[6,0,4,28], -"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,279], -"boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[6,0,4,53], -"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,237], -"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,267], -"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[6,0,4,171], -"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[6,0,4,104], -"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[6,0,4,183], -"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[6,0,4,198], -"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[6,0,4,146], -"boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[6,0,4,115], -"boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[6,0,4,31], -"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,270], -"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,191], -"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[6,0,4,63], -"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[6,0,4,54], -"boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007":[6,0,4,242], -"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[6,0,4,151], -"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[6,0,4,211], -"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[6,0,4,169], -"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[6,0,4,93], -"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,265], -"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[6,0,4,203], -"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[6,0,4,184], -"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,271], -"boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[6,0,4,50], -"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,220], -"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[6,0,4,85], -"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,155], +"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,280], +"boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[6,0,4,54], +"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,238], +"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,268], +"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[6,0,4,172], +"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[6,0,4,105], +"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[6,0,4,184], +"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[6,0,4,199], +"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[6,0,4,147], +"boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[6,0,4,116], +"boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[6,0,4,32], +"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,271], +"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,192], +"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[6,0,4,64], +"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[6,0,4,55], +"boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007":[6,0,4,243], +"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[6,0,4,152], +"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[6,0,4,212], +"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[6,0,4,170], +"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[6,0,4,94], +"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,266], +"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[6,0,4,204], +"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[6,0,4,185], +"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,272], +"boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[6,0,4,51], +"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,221], +"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[6,0,4,86], +"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,156], "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[6,0,4,14], -"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,296], -"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,231], -"boxy_8php.html":[6,0,3,1,3,1,0], +"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,297], +"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,232], +"boxy_8php.html":[6,0,3,1,4,1,0], "cache_8php.html":[6,0,0,14], "chanman_8php.html":[6,0,0,15], "chanman_8php.html#a21ba9a5c961e866ff27aee3ee67bf99b":[6,0,0,15,0], @@ -248,6 +249,5 @@ var NAVTREEINDEX1 = "classApp.html#a4b67935096f66d1f14b657399a8461ac":[5,0,6,68], "classApp.html#a4bdd7bfed62f50515fce652127bf481b":[5,0,6,25], "classApp.html#a4c7cfc62d39508086cf300dc2e39c4df":[5,0,6,59], -"classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f":[5,0,6,67], -"classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be":[5,0,6,9] +"classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f":[5,0,6,67] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 5477cae7b..6e0f047f2 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,5 +1,6 @@ var NAVTREEINDEX2 = { +"classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be":[5,0,6,9], "classApp.html#a557d7b779d8259027f4724ebf7b248dc":[5,0,6,28], "classApp.html#a560189f048d3db2f526841963cc43e97":[5,0,6,26], "classApp.html#a56b1a432c96aef8b1971f779c9d93c8c":[5,0,6,88], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514":[5,0,25,6], "classZotDriver.html#a6776935156accb0f170e2e24577133db":[5,0,25,1], "classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f":[5,0,25,4], -"classZotDriver.html#af65febb26031eb7f39871b9e2a539797":[5,0,25,2], -"classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6":[5,0,25,5] +"classZotDriver.html#af65febb26031eb7f39871b9e2a539797":[5,0,25,2] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index a13c90144..cb37ba352 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6":[5,0,25,5], "classdba__driver.html":[5,0,10], "classdba__driver.html#a1a8bc9dc839a6320a0e07d8047a6b721":[5,0,10,1], "classdba__driver.html#a205f6535e399700b6fca2492f96f2229":[5,0,10,8], @@ -176,24 +177,24 @@ var NAVTREEINDEX3 = "crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec":[6,0,0,27,15], "crypto_8php.html#ae5af17db1cb5d7c91d486e1264079839":[6,0,0,27,7], "crypto_8php.html#af8bbdeaf4abed7b40365d301e6013c85":[6,0,0,27,8], -"dark_8php.html":[6,0,3,1,3,1,2], +"dark_8php.html":[6,0,3,1,4,1,2], "darkness_8php.html":[6,0,3,1,0,2,0], "darknessleftaside_8php.html":[6,0,3,1,0,2,1], "darknessrightaside_8php.html":[6,0,3,1,0,2,2], "datetime_8php.html":[6,0,0,28], "datetime_8php.html#a03900dcf0f9e3c58793a031673a70326":[6,0,0,28,6], -"datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1":[6,0,0,28,11], +"datetime_8php.html#a3f239f94e23335d860b148958d87a093":[6,0,0,28,11], "datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8":[6,0,0,28,5], -"datetime_8php.html#a5f29553799005b1fd4e9ce9d98ce05aa":[6,0,0,28,3], "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#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#ac265b86f384ee094ed5479aae02aa5c8":[6,0,0,28,2], -"datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[6,0,0,28,4], +"datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[6,0,0,28,3], "datetime_8php.html#aea356409ba69f9de412298c998595dd2":[6,0,0,28,1], "datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826":[6,0,0,28,13], "db__update_8php.html":[6,0,2,2], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "diaspora_8php.html#aeb2bb78f620dbf51d9335e6eb7444f2c":[6,0,0,30,23], "diaspora_8php.html#af4698b165766f83d89ec1ea964bc92cc":[6,0,0,30,21], "dimport_8php.html":[6,0,0,31], -"dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1":[6,0,0,31,0], -"dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[6,0,3,1,3,0] +"dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1":[6,0,0,31,0] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index a533b3d46..15d1aed09 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,20 +1,26 @@ var NAVTREEINDEX4 = { +"dir_0262a6a8df56a167e3761b6e5a54bb1c.html":[6,0,3,1,6], +"dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[6,0,3,1,4,0], "dir_05f4fba29266e8fd7869afcd6cefb5cb.html":[6,0,3,1,0,2], "dir_0eaa4a0adae8ba4811e133c6e594aeee.html":[6,0,2,0], "dir_21bc5169ff11430004758be31dcfc6c4.html":[6,0,0,0], "dir_23ec12649285f9fabf3a6b7380226c28.html":[6,0,2], "dir_25f74a9991dbbca1b52a94e358ca73c1.html":[6,0,2,1,0], -"dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html":[6,0,3,1,3,1], -"dir_55dbaf9b7b53c4fc605c9011743a7353.html":[6,0,3,1,3], +"dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html":[6,0,3,1,4,1], +"dir_4acb285a1960a920438b718da0958cf4.html":[6,0,3,1,5], +"dir_55dbaf9b7b53c4fc605c9011743a7353.html":[6,0,3,1,4], +"dir_65522070e0a83623cefc01ebe26a83e3.html":[6,0,3,1,5,0], "dir_6cee3bb9ace89cc4e2f065aa2ca7bc5b.html":[6,0,3,1,1,1,0], +"dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html":[6,0,3,1,2], "dir_720432dea4a717197ae070dbc42b8f20.html":[6,0,2,1], "dir_817f6d302394b98e59575acdb59998bc.html":[6,0,3,0], "dir_8543001e5d25368a6edede3e63efb554.html":[6,0,3,1], -"dir_887fdc94312ba7b057b6bfe7fdd27ea5.html":[6,0,3,1,2,0], -"dir_8e58ba5e98ac07e59ee15ca7486c9950.html":[6,0,3,1,2], +"dir_887fdc94312ba7b057b6bfe7fdd27ea5.html":[6,0,3,1,3,0], +"dir_8e58ba5e98ac07e59ee15ca7486c9950.html":[6,0,3,1,3], "dir_922c77e958c99a98db92d38a3a349bf2.html":[6,0,3,1,1], "dir_92d6b429199666aa3765c8a934db5e14.html":[6,0,3,1,1,1], +"dir_9ef82eb3846cd201470898c3b6ef38cf.html":[6,0,3,1,2,0], "dir__fns_8php.html":[6,0,0,32], "dir__fns_8php.html#a2f7d74bb2aea8bcd2537aee5c6708a16":[6,0,0,32,0], "dir__fns_8php.html#a44062d4b471d1e83f92f6c184585aa13":[6,0,0,32,6], @@ -25,6 +31,7 @@ var NAVTREEINDEX4 = "dir__fns_8php.html#ae56881d69bb6f8e828c9e35454386774":[6,0,0,32,2], "dir_a8a0005c2b8590c535262d232c22afab.html":[6,0,3,1,1,1,0,0], "dir_aae29906d7bfc07d076125f669c8352e.html":[6,0,0,1], +"dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html":[6,0,3,1,6,0], "dir_b2f003339c516cc00c8cadcafbe82f13.html":[6,0,3], "dir_c02447ad39a5307c81c64e880ec9e8d3.html":[6,0,3,1,1,0], "dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html":[6,0,3,1,0,1], @@ -227,8 +234,8 @@ var NAVTREEINDEX4 = "globals_func_0x77.html":[6,1,1,23], "globals_func_0x78.html":[6,1,1,24], "globals_func_0x7a.html":[6,1,1,25], -"globals_vars.html":[6,1,2,0], "globals_vars.html":[6,1,2], +"globals_vars.html":[6,1,2,0], "globals_vars_0x61.html":[6,1,2,1], "globals_vars_0x63.html":[6,1,2,2], "globals_vars_0x64.html":[6,1,2,3], @@ -242,12 +249,5 @@ var NAVTREEINDEX4 = "globals_vars_0x6c.html":[6,1,2,11], "globals_vars_0x6d.html":[6,1,2,12], "globals_vars_0x6e.html":[6,1,2,13], -"globals_vars_0x70.html":[6,1,2,14], -"globals_vars_0x72.html":[6,1,2,15], -"globals_vars_0x73.html":[6,1,2,16], -"globals_vars_0x74.html":[6,1,2,17], -"globals_vars_0x75.html":[6,1,2,18], -"globals_vars_0x77.html":[6,1,2,19], -"globals_vars_0x78.html":[6,1,2,20], -"globals_vars_0x7a.html":[6,1,2,21] +"globals_vars_0x70.html":[6,1,2,14] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index 87a5fb67d..cea8ef638 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,5 +1,12 @@ var NAVTREEINDEX5 = { +"globals_vars_0x72.html":[6,1,2,15], +"globals_vars_0x73.html":[6,1,2,16], +"globals_vars_0x74.html":[6,1,2,17], +"globals_vars_0x75.html":[6,1,2,18], +"globals_vars_0x77.html":[6,1,2,19], +"globals_vars_0x78.html":[6,1,2,20], +"globals_vars_0x7a.html":[6,1,2,21], "gprobe_8php.html":[6,0,0,40], "gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[6,0,0,40,0], "greenthumbnails_8php.html":[6,0,3,1,0,2,3], @@ -10,6 +17,9 @@ var NAVTREEINDEX5 = "help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[6,0,1,40,1], "help_8php.html#af055e15f600ffa6fbca9386fdf715224":[6,0,1,40,0], "hierarchy.html":[5,2], +"hivenet_2php_2style_8php.html":[6,0,3,1,2,0,0], +"hivenet_2php_2theme_8php.html":[6,0,3,1,2,0,1], +"hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29":[6,0,3,1,2,0,1,0], "home_8php.html":[6,0,1,41], "home_8php.html#aa1cf697851a646755baf537f75334c46":[6,0,1,41,0], "home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[6,0,1,41,1], @@ -27,9 +37,11 @@ var NAVTREEINDEX5 = "html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[6,0,0,43,1], "hubloc_8php.html":[6,0,0,44], "hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea":[6,0,0,44,3], +"hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b":[6,0,0,44,5], "hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002":[6,0,0,44,2], "hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d":[6,0,0,44,0], "hubloc_8php.html#aebd244b4616ded022cbbee5e82926951":[6,0,0,44,1], +"hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea":[6,0,0,44,4], "identity_8php.html":[6,0,0,45], "identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[6,0,0,45,3], "identity_8php.html#a224710dfb7465b706c91134247c20afa":[6,0,0,45,11], @@ -76,54 +88,55 @@ var NAVTREEINDEX5 = "include_2api_8php.html#a18cab7c6391df5c421753463f5d2a879":[6,0,0,6,18], "include_2api_8php.html#a2c71b1226ef1283b5370bd1c200fee5f":[6,0,0,6,15], "include_2api_8php.html#a2e94eab9d6c164bfef7a1b2ab87b339b":[6,0,0,6,0], -"include_2api_8php.html#a32f0dda848d0c11c727fe1c3e741c283":[6,0,0,6,46], +"include_2api_8php.html#a32f0dda848d0c11c727fe1c3e741c283":[6,0,0,6,47], "include_2api_8php.html#a36344c80b8e9755da2f2dd3a0e28cce8":[6,0,0,6,16], -"include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e":[6,0,0,6,52], -"include_2api_8php.html#a450d8732b7b608f7ac929aee61572b95":[6,0,0,6,40], +"include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e":[6,0,0,6,53], +"include_2api_8php.html#a450d8732b7b608f7ac929aee61572b95":[6,0,0,6,41], "include_2api_8php.html#a4c6fb9fb5203aa60f4b3afd4521db8ea":[6,0,0,6,19], -"include_2api_8php.html#a528d8070ee74ea800102936ce73cf366":[6,0,0,6,39], +"include_2api_8php.html#a4fe872332ff0bd8d5eae2f0c6819cb60":[6,0,0,6,32], +"include_2api_8php.html#a528d8070ee74ea800102936ce73cf366":[6,0,0,6,40], "include_2api_8php.html#a53b0680b682ae6078f2e1ed18cfb3f74":[6,0,0,6,21], "include_2api_8php.html#a58cf4c02ef435996f5c3bc4283d3968d":[6,0,0,6,13], "include_2api_8php.html#a5990101034e7abf6404feba3cd273629":[6,0,0,6,4], -"include_2api_8php.html#a623793229a7256dd31bcfd5ab90eef08":[6,0,0,6,47], -"include_2api_8php.html#a645397787618b5c548a31e8686e8cca4":[6,0,0,6,34], -"include_2api_8php.html#a6951c690d87775eb37e569c66011988e":[6,0,0,6,37], -"include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f":[6,0,0,6,33], +"include_2api_8php.html#a623793229a7256dd31bcfd5ab90eef08":[6,0,0,6,48], +"include_2api_8php.html#a645397787618b5c548a31e8686e8cca4":[6,0,0,6,35], +"include_2api_8php.html#a6951c690d87775eb37e569c66011988e":[6,0,0,6,38], +"include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f":[6,0,0,6,34], "include_2api_8php.html#a72bfecac1970bc29b853073e816388ff":[6,0,0,6,6], "include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5":[6,0,0,6,9], "include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad":[6,0,0,6,2], -"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d":[6,0,0,6,48], -"include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e":[6,0,0,6,41], +"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d":[6,0,0,6,49], +"include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e":[6,0,0,6,42], "include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3":[6,0,0,6,10], "include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705":[6,0,0,6,8], -"include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410":[6,0,0,6,36], +"include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410":[6,0,0,6,37], "include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3":[6,0,0,6,30], "include_2api_8php.html#aa40bae797bcd9ccacffdce5a3b5a1afa":[6,0,0,6,23], "include_2api_8php.html#aa49741342ad8ba285737eea1209a37e1":[6,0,0,6,27], -"include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d":[6,0,0,6,54], +"include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d":[6,0,0,6,55], "include_2api_8php.html#aa6fc3bc8c0fad1d081db0dcc456dd77f":[6,0,0,6,31], "include_2api_8php.html#aa9dc5350b26d6c7727d6c4b641ecba18":[6,0,0,6,3], -"include_2api_8php.html#aafa82b65a9f879a1a1197cfe8aaf3898":[6,0,0,6,51], +"include_2api_8php.html#aafa82b65a9f879a1a1197cfe8aaf3898":[6,0,0,6,52], "include_2api_8php.html#ab1ecb58954f722444bfe03233345cb1b":[6,0,0,6,17], -"include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76":[6,0,0,6,50], -"include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a":[6,0,0,6,32], +"include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76":[6,0,0,6,51], +"include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a":[6,0,0,6,33], "include_2api_8php.html#ac5a64cc81d70ff3cf866093ea9721d23":[6,0,0,6,26], "include_2api_8php.html#acafd2899309a005fcb725289173dc7fe":[6,0,0,6,22], -"include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22":[6,0,0,6,42], +"include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22":[6,0,0,6,43], "include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2":[6,0,0,6,11], -"include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4":[6,0,0,6,35], -"include_2api_8php.html#ad4d1634df6b35126552324683caaffa2":[6,0,0,6,45], +"include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4":[6,0,0,6,36], +"include_2api_8php.html#ad4d1634df6b35126552324683caaffa2":[6,0,0,6,46], "include_2api_8php.html#ad5fe62d6c25c86999f627b2e6cfde536":[6,0,0,6,24], -"include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e":[6,0,0,6,38], +"include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e":[6,0,0,6,39], "include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53":[6,0,0,6,14], -"include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8":[6,0,0,6,43], +"include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8":[6,0,0,6,44], "include_2api_8php.html#ae46f964e5a9c80b96dc78df61c09ed3a":[6,0,0,6,25], "include_2api_8php.html#ae82608c317421f27446465aa6724733d":[6,0,0,6,20], "include_2api_8php.html#ae8f5863e18d69421005c71441c9d99a5":[6,0,0,6,1], "include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25":[6,0,0,6,7], -"include_2api_8php.html#aeb2e7ad00ea666b4b6dfcf82008194f8":[6,0,0,6,53], -"include_2api_8php.html#af6f1d89cdb0a0621025efbec1597bc63":[6,0,0,6,44], -"include_2api_8php.html#afb99daa6b731bf497b81f2128084852c":[6,0,0,6,49], +"include_2api_8php.html#aeb2e7ad00ea666b4b6dfcf82008194f8":[6,0,0,6,54], +"include_2api_8php.html#af6f1d89cdb0a0621025efbec1597bc63":[6,0,0,6,45], +"include_2api_8php.html#afb99daa6b731bf497b81f2128084852c":[6,0,0,6,50], "include_2api_8php.html#afe534f826e4282b72d66e8cadca7bb73":[6,0,0,6,28], "include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0":[6,0,0,6,29], "include_2apps_8php.html":[6,0,0,7], @@ -236,18 +249,5 @@ var NAVTREEINDEX5 = "include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[6,0,0,53,8], "include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[6,0,0,53,24], "include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b":[6,0,0,53,25], -"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[6,0,0,53,21], -"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[6,0,0,53,22], -"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[6,0,0,53,23], -"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[6,0,0,53,2], -"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[6,0,0,53,0], -"include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070":[6,0,0,53,17], -"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[6,0,0,53,3], -"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[6,0,0,53,15], -"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[6,0,0,53,1], -"include_2notify_8php.html":[6,0,0,55], -"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[6,0,0,55,0], -"include_2oembed_8php.html":[6,0,0,57], -"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[6,0,0,57,5], -"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[6,0,0,57,7] +"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[6,0,0,53,21] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index 7e42a4dcc..e3c3f1ab3 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,5 +1,18 @@ var NAVTREEINDEX6 = { +"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[6,0,0,53,22], +"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[6,0,0,53,23], +"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[6,0,0,53,2], +"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[6,0,0,53,0], +"include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070":[6,0,0,53,17], +"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[6,0,0,53,3], +"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[6,0,0,53,15], +"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[6,0,0,53,1], +"include_2notify_8php.html":[6,0,0,55], +"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[6,0,0,55,0], +"include_2oembed_8php.html":[6,0,0,57], +"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[6,0,0,57,5], +"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[6,0,0,57,7], "include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[6,0,0,57,1], "include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[6,0,0,57,4], "include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[6,0,0,57,3], @@ -50,6 +63,7 @@ var NAVTREEINDEX6 = "items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[6,0,0,48,27], "items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[6,0,0,48,5], "items_8php.html#a251343637ff40a50cca93452cd530c26":[6,0,0,48,34], +"items_8php.html#a25221826fa4621f523c68483e3b6af26":[6,0,0,48,64], "items_8php.html#a2541e6861a56d145c9281877cc501615":[6,0,0,48,47], "items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[6,0,0,48,4], "items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6":[6,0,0,48,71], @@ -109,7 +123,6 @@ var NAVTREEINDEX6 = "items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2":[6,0,0,48,63], "items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[6,0,0,48,25], "items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[6,0,0,48,41], -"items_8php.html#af0a887050dc8d0f51c89890cdaf3145f":[6,0,0,48,64], "items_8php.html#af6237605c60d69abdd959ddbbee3420c":[6,0,0,48,61], "items_8php.html#af94c281016c6c912d06e064113336c5c":[6,0,0,48,50], "items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[6,0,0,48,24], @@ -214,15 +227,15 @@ var NAVTREEINDEX6 = "mood_8php.html#a7ae136dd7476865b4828136175db5022":[6,0,1,62,1], "msearch_8php.html":[6,0,1,63], "msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[6,0,1,63,0], -"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], +"mytheme_2php_2style_8php.html":[6,0,3,1,3,0,1], +"mytheme_2php_2theme_8php.html":[6,0,3,1,3,0,2], +"mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8":[6,0,3,1,3,0,2,0], "namespaceFriendica.html":[5,0,1], +"namespaceFriendica.html":[4,0,1], "namespaceRedMatrix.html":[5,0,3], "namespaceRedMatrix.html":[4,0,3], -"namespaceRedMatrix_1_1RedDAV.html":[5,0,3,0], "namespaceRedMatrix_1_1RedDAV.html":[4,0,3,0], +"namespaceRedMatrix_1_1RedDAV.html":[5,0,3,0], "namespaceacl__selectors.html":[5,0,0], "namespaceacl__selectors.html":[4,0,0], "namespacefriendica-to-smarty-tpl.html":[4,0,2], @@ -236,18 +249,5 @@ var NAVTREEINDEX6 = "namespaceutil.html":[4,0,5], "namespaceutil.html":[5,0,5], "nav_8php.html":[6,0,0,52], -"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[6,0,0,52,0], -"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[6,0,0,52,1], -"netgrowth_8php.html":[6,0,1,64], -"netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919":[6,0,1,64,0], -"new__channel_8php.html":[6,0,1,66], -"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[6,0,1,66,2], -"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[6,0,1,66,1], -"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[6,0,1,66,0], -"none_8php.html":[6,0,3,0,5], -"notes_8php.html":[6,0,1,67], -"notes_8php.html#a4dbd7b1f906440746af48b484d66535a":[6,0,1,67,0], -"notifications_8php.html":[6,0,1,68], -"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[6,0,1,68,1], -"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[6,0,1,68,0] +"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[6,0,0,52,0] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index 2d9e8f269..0ffba9f84 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,8 +1,21 @@ var NAVTREEINDEX7 = { +"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[6,0,0,52,1], +"netgrowth_8php.html":[6,0,1,64], +"netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919":[6,0,1,64,0], +"new__channel_8php.html":[6,0,1,66], +"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[6,0,1,66,2], +"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[6,0,1,66,1], +"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[6,0,1,66,0], +"none_8php.html":[6,0,3,0,5], +"notes_8php.html":[6,0,1,67], +"notes_8php.html#a4dbd7b1f906440746af48b484d66535a":[6,0,1,67,0], +"notifications_8php.html":[6,0,1,68], +"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[6,0,1,68,1], +"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[6,0,1,68,0], "notifier_8php.html":[6,0,0,54], "notifier_8php.html#a568c502f626cff95e344c0748938b85d":[6,0,0,54,0], -"notred_8php.html":[6,0,3,1,3,1,3], +"notred_8php.html":[6,0,3,1,4,1,3], "oauth_8php.html":[6,0,0,56], "oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[6,0,0,56,3], "oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[6,0,0,56,2], @@ -181,11 +194,11 @@ var NAVTREEINDEX7 = "receive_8php.html#a03d8fa26e77844020ba5602deca7d494":[6,0,1,96,0], "redable_8php.html":[6,0,3,0,6], "redable_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,0,6,0], -"redbasic_2php_2style_8php.html":[6,0,3,1,3,0,1], -"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_2php_2style_8php.html":[6,0,3,1,4,0,1], +"redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c":[6,0,3,1,4,0,1,0], +"redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459":[6,0,3,1,4,0,1,1], +"redbasic_2php_2theme_8php.html":[6,0,3,1,4,0,2], +"redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b":[6,0,3,1,4,0,2,0], "redbasic_8php.html":[6,0,3,1,0,2,9], "reddav_8php.html":[6,0,0,70], "reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[6,0,0,70,1], @@ -236,18 +249,5 @@ var NAVTREEINDEX7 = "session_8php.html":[6,0,0,72], "session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[6,0,0,72,4], "session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[6,0,0,72,0], -"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[6,0,0,72,1], -"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[6,0,0,72,8], -"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[6,0,0,72,5], -"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[6,0,0,72,7], -"session_8php.html#ac4461c1984543d3553e73dba2771568f":[6,0,0,72,6], -"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[6,0,0,72,3], -"session_8php.html#af0100a2642a5268594bbd5742a03d885":[6,0,0,72,9], -"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[6,0,0,72,2], -"settings_8php.html":[6,0,1,108], -"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[6,0,1,108,0], -"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[6,0,1,108,1], -"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[6,0,1,108,2], -"setup_8php.html":[6,0,1,109], -"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[6,0,1,109,2] +"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[6,0,0,72,1] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index de2843783..00b662dfe 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,5 +1,18 @@ var NAVTREEINDEX8 = { +"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[6,0,0,72,8], +"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[6,0,0,72,5], +"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[6,0,0,72,7], +"session_8php.html#ac4461c1984543d3553e73dba2771568f":[6,0,0,72,6], +"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[6,0,0,72,3], +"session_8php.html#af0100a2642a5268594bbd5742a03d885":[6,0,0,72,9], +"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[6,0,0,72,2], +"settings_8php.html":[6,0,1,108], +"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[6,0,1,108,0], +"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[6,0,1,108,1], +"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[6,0,1,108,2], +"setup_8php.html":[6,0,1,109], +"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[6,0,1,109,2], "setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[6,0,1,109,14], "setup_8php.html#a14d208682a88632290c895d20da6e7d6":[6,0,1,109,5], "setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[6,0,1,109,13], @@ -18,9 +31,9 @@ var NAVTREEINDEX8 = "setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[6,0,1,109,6], "share_8php.html":[6,0,1,110], "share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[6,0,1,110,0], -"simple__black__on__white_8php.html":[6,0,3,1,3,1,4], -"simple__green__on__black_8php.html":[6,0,3,1,3,1,5], -"simple__white__on__black_8php.html":[6,0,3,1,3,1,6], +"simple__black__on__white_8php.html":[6,0,3,1,4,1,4], +"simple__green__on__black_8php.html":[6,0,3,1,4,1,5], +"simple__white__on__black_8php.html":[6,0,3,1,4,1,6], "siteinfo_8php.html":[6,0,1,111], "siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[6,0,1,111,1], "siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[6,0,1,111,0], @@ -54,8 +67,14 @@ var NAVTREEINDEX8 = "statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[6,0,0,76,0], "statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa":[6,0,0,76,3], "statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe":[6,0,0,76,1], +"stumble_2php_2style_8php.html":[6,0,3,1,5,0,0], +"stumble_2php_2theme_8php.html":[6,0,3,1,5,0,1], +"stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753":[6,0,3,1,5,0,1,0], "subthread_8php.html":[6,0,1,117], "subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[6,0,1,117,0], +"suckerberg_2php_2style_8php.html":[6,0,3,1,6,0,0], +"suckerberg_2php_2theme_8php.html":[6,0,3,1,6,0,1], +"suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8":[6,0,3,1,6,0,1,0], "suggest_8php.html":[6,0,1,118], "suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[6,0,1,118,0], "suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[6,0,1,118,1], @@ -192,9 +211,9 @@ var NAVTREEINDEX8 = "theme_2blogga_2view_2theme_2blog_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[6,0,3,1,1,1,0,0,1,2], "theme_2blogga_2view_2theme_2blog_2default_8php.html#a52d9dd070ed541729088395c22502539":[6,0,3,1,1,1,0,0,1,1], "theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a":[6,0,3,1,1,1,0,0,1,0], -"theme_2mytheme_2php_2default_8php.html":[6,0,3,1,2,0,0], -"theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,1,2,0,0,0], -"theme_2redbasic_2php_2theme__init_8php.html":[6,0,3,1,3,0,3], +"theme_2mytheme_2php_2default_8php.html":[6,0,3,1,3,0,0], +"theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,1,3,0,0,0], +"theme_2redbasic_2php_2theme__init_8php.html":[6,0,3,1,4,0,3], "thing_8php.html":[6,0,1,121], "thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[6,0,1,121,0], "thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[6,0,1,121,1], @@ -230,24 +249,5 @@ var NAVTREEINDEX8 = "updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[6,0,2,11,5], "updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[6,0,2,11,2], "updatetpl_8py.html#a988d937ed5d5c2b592b763036af5cf94":[6,0,2,11,1], -"updatetpl_8py.html#ab42dd79af65ee82201fd6f04715f62f6":[6,0,2,11,3], -"updatetpl_8py.html#ac9d11279fed403a329a719298feafc4f":[6,0,2,11,0], -"updatetpl_8py.html#ae694f5e1f25f8a92a945eb90c432dfe6":[6,0,2,11,4], -"view_2theme_2apw_2php_2config_8php.html":[6,0,3,1,0,1,0], -"view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,0,1,0,1], -"view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,0,1,0,2], -"view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0":[6,0,3,1,0,1,0,0], -"view_2theme_2blogga_2php_2config_8php.html":[6,0,3,1,1,0,0], -"view_2theme_2blogga_2php_2config_8php.html#a09cd81013505f83aea0771243a1e4e53":[6,0,3,1,1,0,0,1], -"view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27":[6,0,3,1,1,0,0,0], -"view_2theme_2blogga_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,1,0,0,3], -"view_2theme_2blogga_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,1,0,0,4], -"view_2theme_2blogga_2php_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b":[6,0,3,1,1,0,0,2], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html":[6,0,3,1,1,1,0,0,0], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a09cd81013505f83aea0771243a1e4e53":[6,0,3,1,1,1,0,0,0,1], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27":[6,0,3,1,1,1,0,0,0,0], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,1,1,0,0,0,3], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,1,1,0,0,0,4], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b":[6,0,3,1,1,1,0,0,0,2], -"view_2theme_2redbasic_2php_2config_8php.html":[6,0,3,1,3,0,0] +"updatetpl_8py.html#ab42dd79af65ee82201fd6f04715f62f6":[6,0,2,11,3] }; diff --git a/doc/html/navtreeindex9.js b/doc/html/navtreeindex9.js index 1e9892a17..26a4d9e31 100644 --- a/doc/html/navtreeindex9.js +++ b/doc/html/navtreeindex9.js @@ -1,8 +1,27 @@ var NAVTREEINDEX9 = { -"view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793":[6,0,3,1,3,0,0,0], -"view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,3,0,0,1], -"view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,3,0,0,2], +"updatetpl_8py.html#ac9d11279fed403a329a719298feafc4f":[6,0,2,11,0], +"updatetpl_8py.html#ae694f5e1f25f8a92a945eb90c432dfe6":[6,0,2,11,4], +"view_2theme_2apw_2php_2config_8php.html":[6,0,3,1,0,1,0], +"view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,0,1,0,1], +"view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,0,1,0,2], +"view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0":[6,0,3,1,0,1,0,0], +"view_2theme_2blogga_2php_2config_8php.html":[6,0,3,1,1,0,0], +"view_2theme_2blogga_2php_2config_8php.html#a09cd81013505f83aea0771243a1e4e53":[6,0,3,1,1,0,0,1], +"view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27":[6,0,3,1,1,0,0,0], +"view_2theme_2blogga_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,1,0,0,3], +"view_2theme_2blogga_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,1,0,0,4], +"view_2theme_2blogga_2php_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b":[6,0,3,1,1,0,0,2], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html":[6,0,3,1,1,1,0,0,0], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a09cd81013505f83aea0771243a1e4e53":[6,0,3,1,1,1,0,0,0,1], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27":[6,0,3,1,1,1,0,0,0,0], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,1,1,0,0,0,3], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,1,1,0,0,0,4], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b":[6,0,3,1,1,1,0,0,0,2], +"view_2theme_2redbasic_2php_2config_8php.html":[6,0,3,1,4,0,0], +"view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793":[6,0,3,1,4,0,0,0], +"view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,4,0,0,1], +"view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,4,0,0,2], "view_8php.html":[6,0,1,129], "view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[6,0,1,129,0], "viewconnections_8php.html":[6,0,1,130], diff --git a/doc/html/permissions_8php.html b/doc/html/permissions_8php.html index 8ae3220ff..d7cdd11e6 100644 --- a/doc/html/permissions_8php.html +++ b/doc/html/permissions_8php.html @@ -201,7 +201,7 @@ Functions
        Returns
        : array of all permissions, key is permission name, value is true or false
        -

        Referenced by achievements_content(), blocks_content(), change_channel(), channel_content(), connedit_content(), editlayout_content(), editwebpage_content(), filestorage_content(), layouts_content(), like_content(), page_content(), webpages_content(), zfinger_init(), and zot_refresh().

        +

        Referenced by achievements_content(), blocks_content(), change_channel(), channel_content(), connedit_content(), editlayout_content(), editwebpage_content(), filestorage_content(), layouts_content(), like_content(), page_init(), webpages_content(), zfinger_init(), and zot_refresh().

        diff --git a/doc/html/photo__driver_8php.html b/doc/html/photo__driver_8php.html index db723d160..204df52dd 100644 --- a/doc/html/photo__driver_8php.html +++ b/doc/html/photo__driver_8php.html @@ -232,7 +232,7 @@ Functions
         $post_id $post_id,
         $walltowall = false 
        diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html index 40001f325..898a5544b 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(), dirprofile_init(), 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(), zfinger_init(), 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(), dirprofile_init(), 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(), and zot_refresh().

        diff --git a/doc/html/php_2theme__init_8php.html b/doc/html/php_2theme__init_8php.html index 814d0a7b5..c045b7ef5 100644 --- a/doc/html/php_2theme__init_8php.html +++ b/doc/html/php_2theme__init_8php.html @@ -127,7 +127,7 @@ Variables

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

        -

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

        +

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

        diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index 39aa7880f..c71c22f19 100644 --- a/doc/html/plugin_8php.html +++ b/doc/html/plugin_8php.html @@ -778,7 +778,7 @@ Functions diff --git a/doc/html/search/all_61.js b/doc/html/search/all_61.js index cae31ee43..3ab5333ef 100644 --- a/doc/html/search/all_61.js +++ b/doc/html/search/all_61.js @@ -138,6 +138,7 @@ var searchData= ['api_5foauth_5frequest_5ftoken',['api_oauth_request_token',['../include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3',1,'api.php']]], ['api_5fphotos',['api_photos',['../include_2api_8php.html#aa6fc3bc8c0fad1d081db0dcc456dd77f',1,'api.php']]], ['api_5fpost',['api_post',['../mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2',1,'api.php']]], + ['api_5fred_5fxchan',['api_red_xchan',['../include_2api_8php.html#a4fe872332ff0bd8d5eae2f0c6819cb60',1,'api.php']]], ['api_5fregister_5ffunc',['api_register_func',['../include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a',1,'api.php']]], ['api_5frss_5fextra',['api_rss_extra',['../include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f',1,'api.php']]], ['api_5fstatus_5fshow',['api_status_show',['../include_2api_8php.html#a645397787618b5c548a31e8686e8cca4',1,'api.php']]], @@ -172,8 +173,8 @@ var searchData= ['appman_2ephp',['appman.php',['../appman_8php.html',1,'']]], ['appman_5fcontent',['appman_content',['../appman_8php.html#af48805ac2f6f123f2681a8ae1c6f123f',1,'appman.php']]], ['appman_5fpost',['appman_post',['../appman_8php.html#a2979acbe47ffaecfa19b9eabfbfbde39',1,'appman.php']]], - ['apps_2ephp',['apps.php',['../include_2apps_8php.html',1,'']]], ['apps_2ephp',['apps.php',['../mod_2apps_8php.html',1,'']]], + ['apps_2ephp',['apps.php',['../include_2apps_8php.html',1,'']]], ['apps_5fcontent',['apps_content',['../mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], ['apw_5fform',['apw_form',['../view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0',1,'config.php']]], ['apw_5finit',['apw_init',['../apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89',1,'theme.php']]], diff --git a/doc/html/search/all_64.js b/doc/html/search/all_64.js index 882c7252e..5805f8a1c 100644 --- a/doc/html/search/all_64.js +++ b/doc/html/search/all_64.js @@ -4,10 +4,10 @@ var searchData= ['darkness_2ephp',['darkness.php',['../darkness_8php.html',1,'']]], ['darknessleftaside_2ephp',['darknessleftaside.php',['../darknessleftaside_8php.html',1,'']]], ['darknessrightaside_2ephp',['darknessrightaside.php',['../darknessrightaside_8php.html',1,'']]], - ['datesel',['datesel',['../datetime_8php.html#ac265b86f384ee094ed5479aae02aa5c8',1,'datetime.php']]], - ['datesel_5fformat',['datesel_format',['../datetime_8php.html#a5f29553799005b1fd4e9ce9d98ce05aa',1,'datetime.php']]], + ['datesel',['datesel',['../datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766',1,'datetime.php']]], ['datetime_2ephp',['datetime.php',['../datetime_8php.html',1,'']]], ['datetime_5fconvert',['datetime_convert',['../datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226',1,'datetime.php']]], + ['datetimesel',['datetimesel',['../datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3',1,'datetime.php']]], ['day_5ftranslate',['day_translate',['../text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63',1,'text.php']]], ['db_5fupdate_2ephp',['db_update.php',['../db__update_8php.html',1,'']]], ['db_5fupdate_5fversion',['DB_UPDATE_VERSION',['../boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03',1,'boot.php']]], diff --git a/doc/html/search/all_68.js b/doc/html/search/all_68.js index d08c52aa0..216dd68d1 100644 --- a/doc/html/search/all_68.js +++ b/doc/html/search/all_68.js @@ -18,6 +18,7 @@ var searchData= ['help',['help',['../namespacefriendica-to-smarty-tpl.html#af6b2c793958aae2aadc294577431f749',1,'friendica-to-smarty-tpl.help()'],['../namespaceupdatetpl.html#ac9d11279fed403a329a719298feafc4f',1,'updatetpl.help()']]], ['help_2ephp',['help.php',['../help_8php.html',1,'']]], ['help_5fcontent',['help_content',['../help_8php.html#af055e15f600ffa6fbca9386fdf715224',1,'help.php']]], + ['hivenet_5finit',['hivenet_init',['../hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29',1,'theme.php']]], ['home_2ephp',['home.php',['../home_8php.html',1,'']]], ['home_5fcontent',['home_content',['../home_8php.html#aa1cf697851a646755baf537f75334c46',1,'home.php']]], ['home_5finit',['home_init',['../home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde',1,'home.php']]], diff --git a/doc/html/search/all_6c.js b/doc/html/search/all_6c.js index 483bab71e..765d4c768 100644 --- a/doc/html/search/all_6c.js +++ b/doc/html/search/all_6c.js @@ -26,6 +26,7 @@ var searchData= ['load_5fdatabase_5frem',['load_database_rem',['../setup_8php.html#a2b375ddc555140236fc500135de99371',1,'setup.php']]], ['load_5fhooks',['load_hooks',['../plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813',1,'plugin.php']]], ['load_5fpconfig',['load_pconfig',['../include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b',1,'config.php']]], + ['load_5fpdl',['load_pdl',['../boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501',1,'boot.php']]], ['load_5fplugin',['load_plugin',['../plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d',1,'plugin.php']]], ['load_5ftranslation_5ftable',['load_translation_table',['../language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05',1,'language.php']]], ['load_5fxconfig',['load_xconfig',['../include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52',1,'config.php']]], diff --git a/doc/html/search/all_73.js b/doc/html/search/all_73.js index 03ae80329..eb2f2fe85 100644 --- a/doc/html/search/all_73.js +++ b/doc/html/search/all_73.js @@ -116,7 +116,7 @@ var searchData= ['status_5feditor',['status_editor',['../conversation_8php.html#a2a7d541854bba755eb8ada59af7dcb1a',1,'conversation.php']]], ['storage_5fdefault_5fpermissions',['STORAGE_DEFAULT_PERMISSIONS',['../boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6',1,'boot.php']]], ['store',['store',['../classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b',1,'photo_driver']]], - ['store_5fdiaspora_5fcomment_5fsig',['store_diaspora_comment_sig',['../items_8php.html#af0a887050dc8d0f51c89890cdaf3145f',1,'items.php']]], + ['store_5fdiaspora_5fcomment_5fsig',['store_diaspora_comment_sig',['../items_8php.html#a25221826fa4621f523c68483e3b6af26',1,'items.php']]], ['store_5fitem_5ftag',['store_item_tag',['../taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd',1,'taxonomy.php']]], ['stream_5fperms_5fapi_5fuids',['stream_perms_api_uids',['../security_8php.html#a6126c77a1267e046ac59cf864613f011',1,'security.php']]], ['stream_5fperms_5fxchans',['stream_perms_xchans',['../security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c',1,'security.php']]], @@ -125,11 +125,16 @@ var searchData= ['stringify_5farray_5felms',['stringify_array_elms',['../text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13',1,'text.php']]], ['strip_5fzids',['strip_zids',['../text_8php.html#a2f2585385530cb935a6325c809d84a4d',1,'text.php']]], ['stripdcode_5fbr_5fcb',['stripdcode_br_cb',['../bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93',1,'bb2diaspora.php']]], - ['style_2ephp',['style.php',['../apw_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../mytheme_2php_2style_8php.html',1,'']]], + ['stumble_5finit',['stumble_init',['../stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753',1,'theme.php']]], + ['style_2ephp',['style.php',['../stumble_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',['../mytheme_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,'']]], ['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']]], ['suggest_2ephp',['suggest.php',['../suggest_8php.html',1,'']]], ['suggest_5fcontent',['suggest_content',['../suggest_8php.html#a58748a8235d4523f8333847f3e42dd91',1,'suggest.php']]], ['suggest_5finit',['suggest_init',['../suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c',1,'suggest.php']]], diff --git a/doc/html/search/all_74.js b/doc/html/search/all_74.js index dd14daf49..a3dd387f4 100644 --- a/doc/html/search/all_74.js +++ b/doc/html/search/all_74.js @@ -41,23 +41,26 @@ var searchData= ['theme_2ephp',['theme.php',['../apw_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../blogga_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../blogga_2view_2theme_2blog_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../hivenet_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../mytheme_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../redbasic_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../stumble_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../suckerberg_2php_2theme_8php.html',1,'']]], ['theme_5fadmin',['theme_admin',['../view_2theme_2blogga_2php_2config_8php.html#a09cd81013505f83aea0771243a1e4e53',1,'theme_admin(&$a): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a09cd81013505f83aea0771243a1e4e53',1,'theme_admin(&$a): config.php']]], ['theme_5fadmin_5fpost',['theme_admin_post',['../view_2theme_2blogga_2php_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b',1,'theme_admin_post(&$a): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b',1,'theme_admin_post(&$a): config.php']]], ['theme_5fattachments',['theme_attachments',['../text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53',1,'text.php']]], ['theme_5fcontent',['theme_content',['../view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2blogga_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php']]], ['theme_5finclude',['theme_include',['../plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2',1,'plugin.php']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme_2blogga_2php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../theme_2blogga_2php_2theme__init_8php.html',1,'']]], ['theme_5fpost',['theme_post',['../view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2blogga_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php']]], ['theme_5fstatus',['theme_status',['../admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4',1,'admin.php']]], ['thing_2ephp',['thing.php',['../thing_8php.html',1,'']]], ['thing_5fcontent',['thing_content',['../thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b',1,'thing.php']]], ['thing_5finit',['thing_init',['../thing_8php.html#a8be23b1d475ec3d9291999221c674c80',1,'thing.php']]], - ['timesel',['timesel',['../datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1',1,'datetime.php']]], + ['timesel',['timesel',['../datetime_8php.html#a3f239f94e23335d860b148958d87a093',1,'datetime.php']]], ['timezone_5fcmp',['timezone_cmp',['../datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865',1,'datetime.php']]], ['title_5fis_5fbody',['title_is_body',['../items_8php.html#aa371905f0a211b307cb3f7188c6cba04',1,'items.php']]], ['todo_20list',['Todo List',['../todo.html',1,'']]], diff --git a/doc/html/search/all_78.js b/doc/html/search/all_78.js index 235ed6555..12730655a 100644 --- a/doc/html/search/all_78.js +++ b/doc/html/search/all_78.js @@ -3,6 +3,7 @@ var searchData= ['x',['x',['../boot_8php.html#a01353c9abebc3544ea080ac161729632',1,'boot.php']]], ['xchan_2ephp',['xchan.php',['../xchan_8php.html',1,'']]], ['xchan_5fcontent',['xchan_content',['../xchan_8php.html#a9853348bf1a35c644460221ba75edc2d',1,'xchan.php']]], + ['xchan_5ffetch',['xchan_fetch',['../hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea',1,'hubloc.php']]], ['xchan_5fflags_5fcensored',['XCHAN_FLAGS_CENSORED',['../boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e',1,'boot.php']]], ['xchan_5fflags_5fdeleted',['XCHAN_FLAGS_DELETED',['../boot_8php.html#a9ea1290e00c6d40684892047f2c778a9',1,'boot.php']]], ['xchan_5fflags_5fhidden',['XCHAN_FLAGS_HIDDEN',['../boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2',1,'boot.php']]], @@ -12,6 +13,7 @@ var searchData= ['xchan_5fflags_5fsystem',['XCHAN_FLAGS_SYSTEM',['../boot_8php.html#afef254290febac854c85fc698d9483a6',1,'boot.php']]], ['xchan_5fmail_5fquery',['xchan_mail_query',['../text_8php.html#a543447c5ed766535221e2d9636b379ee',1,'text.php']]], ['xchan_5fquery',['xchan_query',['../text_8php.html#a905c3895feb6f276df23f07f16f9bb52',1,'text.php']]], + ['xchan_5fstore',['xchan_store',['../hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b',1,'hubloc.php']]], ['xml2array',['xml2array',['../include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff',1,'network.php']]], ['xml_5fstatus',['xml_status',['../include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6',1,'network.php']]], ['xmlify',['xmlify',['../text_8php.html#aaed4413ed8918838b517e3b2fafaea0d',1,'text.php']]], diff --git a/doc/html/search/files_73.js b/doc/html/search/files_73.js index 3e62fcaac..f4c9ba8ba 100644 --- a/doc/html/search/files_73.js +++ b/doc/html/search/files_73.js @@ -21,9 +21,12 @@ var searchData= ['sslify_2ephp',['sslify.php',['../sslify_8php.html',1,'']]], ['starred_2ephp',['starred.php',['../starred_8php.html',1,'']]], ['statistics_5ffns_2ephp',['statistics_fns.php',['../statistics__fns_8php.html',1,'']]], + ['style_2ephp',['style.php',['../stumble_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../mytheme_2php_2style_8php.html',1,'']]], - ['style_2ephp',['style.php',['../redbasic_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../hivenet_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../apw_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,'']]], ['suggest_2ephp',['suggest.php',['../suggest_8php.html',1,'']]], ['system_5funavailable_2ephp',['system_unavailable.php',['../system__unavailable_8php.html',1,'']]] diff --git a/doc/html/search/files_74.js b/doc/html/search/files_74.js index 8a5b0ea9f..ecd4ad809 100644 --- a/doc/html/search/files_74.js +++ b/doc/html/search/files_74.js @@ -5,11 +5,14 @@ var searchData= ['taxonomy_2ephp',['taxonomy.php',['../taxonomy_8php.html',1,'']]], ['template_5fprocessor_2ephp',['template_processor.php',['../template__processor_8php.html',1,'']]], ['text_2ephp',['text.php',['../text_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../mytheme_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../hivenet_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../redbasic_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../apw_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../blogga_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../blogga_2view_2theme_2blog_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../redbasic_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../suckerberg_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../mytheme_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../stumble_2php_2theme_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], diff --git a/doc/html/search/functions_61.js b/doc/html/search/functions_61.js index 98d2f8ec2..4c85f29be 100644 --- a/doc/html/search/functions_61.js +++ b/doc/html/search/functions_61.js @@ -80,6 +80,7 @@ var searchData= ['api_5foauth_5frequest_5ftoken',['api_oauth_request_token',['../include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3',1,'api.php']]], ['api_5fphotos',['api_photos',['../include_2api_8php.html#aa6fc3bc8c0fad1d081db0dcc456dd77f',1,'api.php']]], ['api_5fpost',['api_post',['../mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2',1,'api.php']]], + ['api_5fred_5fxchan',['api_red_xchan',['../include_2api_8php.html#a4fe872332ff0bd8d5eae2f0c6819cb60',1,'api.php']]], ['api_5fregister_5ffunc',['api_register_func',['../include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a',1,'api.php']]], ['api_5frss_5fextra',['api_rss_extra',['../include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f',1,'api.php']]], ['api_5fstatus_5fshow',['api_status_show',['../include_2api_8php.html#a645397787618b5c548a31e8686e8cca4',1,'api.php']]], diff --git a/doc/html/search/functions_64.js b/doc/html/search/functions_64.js index 96a309f6d..1c6e9fc31 100644 --- a/doc/html/search/functions_64.js +++ b/doc/html/search/functions_64.js @@ -1,8 +1,8 @@ var searchData= [ - ['datesel',['datesel',['../datetime_8php.html#ac265b86f384ee094ed5479aae02aa5c8',1,'datetime.php']]], - ['datesel_5fformat',['datesel_format',['../datetime_8php.html#a5f29553799005b1fd4e9ce9d98ce05aa',1,'datetime.php']]], + ['datesel',['datesel',['../datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766',1,'datetime.php']]], ['datetime_5fconvert',['datetime_convert',['../datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226',1,'datetime.php']]], + ['datetimesel',['datetimesel',['../datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3',1,'datetime.php']]], ['day_5ftranslate',['day_translate',['../text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63',1,'text.php']]], ['dba_5ffactory',['dba_factory',['../dba__driver_8php.html#ac10e60f6e5b95bcf67bd82cb88f37947',1,'dba_driver.php']]], ['dba_5ftimer',['dba_timer',['../boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4',1,'boot.php']]], diff --git a/doc/html/search/functions_68.js b/doc/html/search/functions_68.js index c047c0a86..481991cb0 100644 --- a/doc/html/search/functions_68.js +++ b/doc/html/search/functions_68.js @@ -16,6 +16,7 @@ var searchData= ['head_5fset_5ficon',['head_set_icon',['../classApp.html#a8863703a0305eaa45eb970dbd2046291',1,'App\head_set_icon()'],['../boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84',1,'head_set_icon(): boot.php']]], ['help',['help',['../namespacefriendica-to-smarty-tpl.html#af6b2c793958aae2aadc294577431f749',1,'friendica-to-smarty-tpl.help()'],['../namespaceupdatetpl.html#ac9d11279fed403a329a719298feafc4f',1,'updatetpl.help()']]], ['help_5fcontent',['help_content',['../help_8php.html#af055e15f600ffa6fbca9386fdf715224',1,'help.php']]], + ['hivenet_5finit',['hivenet_init',['../hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29',1,'theme.php']]], ['home_5fcontent',['home_content',['../home_8php.html#aa1cf697851a646755baf537f75334c46',1,'home.php']]], ['home_5finit',['home_init',['../home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde',1,'home.php']]], ['hostxrd_5finit',['hostxrd_init',['../hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92',1,'hostxrd.php']]], diff --git a/doc/html/search/functions_6c.js b/doc/html/search/functions_6c.js index a7e715a07..171acad1d 100644 --- a/doc/html/search/functions_6c.js +++ b/doc/html/search/functions_6c.js @@ -19,6 +19,7 @@ var searchData= ['load_5fdatabase_5frem',['load_database_rem',['../setup_8php.html#a2b375ddc555140236fc500135de99371',1,'setup.php']]], ['load_5fhooks',['load_hooks',['../plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813',1,'plugin.php']]], ['load_5fpconfig',['load_pconfig',['../include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b',1,'config.php']]], + ['load_5fpdl',['load_pdl',['../boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501',1,'boot.php']]], ['load_5fplugin',['load_plugin',['../plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d',1,'plugin.php']]], ['load_5ftranslation_5ftable',['load_translation_table',['../language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05',1,'language.php']]], ['load_5fxconfig',['load_xconfig',['../include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52',1,'config.php']]], diff --git a/doc/html/search/functions_73.js b/doc/html/search/functions_73.js index ecbf52d43..1d53a42aa 100644 --- a/doc/html/search/functions_73.js +++ b/doc/html/search/functions_73.js @@ -91,7 +91,7 @@ var searchData= ['startup',['startup',['../boot_8php.html#aca47505b8732177f52bb2d647eb2741c',1,'boot.php']]], ['status_5feditor',['status_editor',['../conversation_8php.html#a2a7d541854bba755eb8ada59af7dcb1a',1,'conversation.php']]], ['store',['store',['../classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b',1,'photo_driver']]], - ['store_5fdiaspora_5fcomment_5fsig',['store_diaspora_comment_sig',['../items_8php.html#af0a887050dc8d0f51c89890cdaf3145f',1,'items.php']]], + ['store_5fdiaspora_5fcomment_5fsig',['store_diaspora_comment_sig',['../items_8php.html#a25221826fa4621f523c68483e3b6af26',1,'items.php']]], ['store_5fitem_5ftag',['store_item_tag',['../taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd',1,'taxonomy.php']]], ['stream_5fperms_5fapi_5fuids',['stream_perms_api_uids',['../security_8php.html#a6126c77a1267e046ac59cf864613f011',1,'security.php']]], ['stream_5fperms_5fxchans',['stream_perms_xchans',['../security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c',1,'security.php']]], @@ -100,7 +100,9 @@ var searchData= ['stringify_5farray_5felms',['stringify_array_elms',['../text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13',1,'text.php']]], ['strip_5fzids',['strip_zids',['../text_8php.html#a2f2585385530cb935a6325c809d84a4d',1,'text.php']]], ['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']]], ['subthread_5fcontent',['subthread_content',['../subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3',1,'subthread.php']]], + ['suckerberg_5finit',['suckerberg_init',['../suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8',1,'theme.php']]], ['suggest_5fcontent',['suggest_content',['../suggest_8php.html#a58748a8235d4523f8333847f3e42dd91',1,'suggest.php']]], ['suggest_5finit',['suggest_init',['../suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c',1,'suggest.php']]], ['suggestion_5fquery',['suggestion_query',['../socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329',1,'socgraph.php']]], diff --git a/doc/html/search/functions_74.js b/doc/html/search/functions_74.js index 4b68ef1d9..412bc29e2 100644 --- a/doc/html/search/functions_74.js +++ b/doc/html/search/functions_74.js @@ -24,7 +24,7 @@ var searchData= ['theme_5fstatus',['theme_status',['../admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4',1,'admin.php']]], ['thing_5fcontent',['thing_content',['../thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b',1,'thing.php']]], ['thing_5finit',['thing_init',['../thing_8php.html#a8be23b1d475ec3d9291999221c674c80',1,'thing.php']]], - ['timesel',['timesel',['../datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1',1,'datetime.php']]], + ['timesel',['timesel',['../datetime_8php.html#a3f239f94e23335d860b148958d87a093',1,'datetime.php']]], ['timezone_5fcmp',['timezone_cmp',['../datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865',1,'datetime.php']]], ['title_5fis_5fbody',['title_is_body',['../items_8php.html#aa371905f0a211b307cb3f7188c6cba04',1,'items.php']]], ['toggle_5fmobile_5finit',['toggle_mobile_init',['../toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254',1,'toggle_mobile.php']]], diff --git a/doc/html/search/functions_78.js b/doc/html/search/functions_78.js index 1112f2127..78d52f21a 100644 --- a/doc/html/search/functions_78.js +++ b/doc/html/search/functions_78.js @@ -2,8 +2,10 @@ var searchData= [ ['x',['x',['../boot_8php.html#a01353c9abebc3544ea080ac161729632',1,'boot.php']]], ['xchan_5fcontent',['xchan_content',['../xchan_8php.html#a9853348bf1a35c644460221ba75edc2d',1,'xchan.php']]], + ['xchan_5ffetch',['xchan_fetch',['../hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea',1,'hubloc.php']]], ['xchan_5fmail_5fquery',['xchan_mail_query',['../text_8php.html#a543447c5ed766535221e2d9636b379ee',1,'text.php']]], ['xchan_5fquery',['xchan_query',['../text_8php.html#a905c3895feb6f276df23f07f16f9bb52',1,'text.php']]], + ['xchan_5fstore',['xchan_store',['../hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b',1,'hubloc.php']]], ['xml2array',['xml2array',['../include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff',1,'network.php']]], ['xml_5fstatus',['xml_status',['../include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6',1,'network.php']]], ['xmlify',['xmlify',['../text_8php.html#aaed4413ed8918838b517e3b2fafaea0d',1,'text.php']]], diff --git a/doc/html/security_8php.html b/doc/html/security_8php.html index 6945f5897..26227d9bd 100644 --- a/doc/html/security_8php.html +++ b/doc/html/security_8php.html @@ -361,7 +361,7 @@ Functions

        Profile owner - everything is visible

        Authenticated visitor. Unless pre-verified, check that the contact belongs to this $owner_id and load the groups the visitor belongs to. If pre-verified, the caller is expected to have already done this and passed the groups into this function.

        -

        Referenced by block_content(), channel_content(), items_fetch(), page_content(), pdl_selector(), share_init(), widget_item(), and zot_feed().

        +

        Referenced by block_content(), channel_content(), items_fetch(), page_init(), pdl_selector(), share_init(), widget_item(), and zot_feed().

        diff --git a/doc/html/stumble_2php_2style_8php.html b/doc/html/stumble_2php_2style_8php.html new file mode 100644 index 000000000..57672ce6a --- /dev/null +++ b/doc/html/stumble_2php_2style_8php.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: view/theme/stumble/php/style.php File Reference + + + + + + + + + + + + + +
        +
        + + + + + + + +
        +
        The Red Matrix +
        +
        +
        + + + + + +
        +
        + +
        +
        +
        + +
        + + + + +
        + +
        + +
        +
        +
        style.php File Reference
        +
        +
        +
        +
        + diff --git a/doc/html/stumble_2php_2theme_8php.html b/doc/html/stumble_2php_2theme_8php.html new file mode 100644 index 000000000..1d04d981d --- /dev/null +++ b/doc/html/stumble_2php_2theme_8php.html @@ -0,0 +1,144 @@ + + + + + + +The Red Matrix: view/theme/stumble/php/theme.php File Reference + + + + + + + + + + + + + +
        +
        + + + + + + + +
        +
        The Red Matrix +
        +
        +
        + + + + + +
        +
        + +
        +
        +
        + +
        + + + + +
        + +
        + +
        + +
        +
        theme.php File Reference
        +
        +
        + + + + +

        +Functions

         stumble_init (&$a)
         
        +

        Function Documentation

        + +
        +
        + + + + + + + + +
        stumble_init ($a)
        +
        +
          +
        • Name: Stumble
        • +
        • Description: A Tumblr-like theme based on redbasic
        • +
        • Version: 1.0
        • +
        • Author: Sean Tilley
        • +
        • Compat: Red [*]
        • +
        + +
        +
        +
        +
        + diff --git a/doc/html/stumble_2php_2theme_8php.js b/doc/html/stumble_2php_2theme_8php.js new file mode 100644 index 000000000..88ddab748 --- /dev/null +++ b/doc/html/stumble_2php_2theme_8php.js @@ -0,0 +1,4 @@ +var stumble_2php_2theme_8php = +[ + [ "stumble_init", "stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753", null ] +]; \ No newline at end of file diff --git a/doc/html/suckerberg_2php_2style_8php.html b/doc/html/suckerberg_2php_2style_8php.html new file mode 100644 index 000000000..97bb9bdec --- /dev/null +++ b/doc/html/suckerberg_2php_2style_8php.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: view/theme/suckerberg/php/style.php File Reference + + + + + + + + + + + + + +
        +
        + + + + + + + +
        +
        The Red Matrix +
        +
        +
        + + + + + +
        +
        + +
        +
        +
        + +
        + + + + +
        + +
        + +
        +
        +
        style.php File Reference
        +
        +
        +
        +
        + diff --git a/doc/html/suckerberg_2php_2theme_8php.html b/doc/html/suckerberg_2php_2theme_8php.html new file mode 100644 index 000000000..bca524b6e --- /dev/null +++ b/doc/html/suckerberg_2php_2theme_8php.html @@ -0,0 +1,144 @@ + + + + + + +The Red Matrix: view/theme/suckerberg/php/theme.php File Reference + + + + + + + + + + + + + +
        +
        + + + + + + + +
        +
        The Red Matrix +
        +
        +
        + + + + + +
        +
        + +
        +
        +
        + +
        + + + + +
        + +
        + +
        + +
        +
        theme.php File Reference
        +
        +
        + + + + +

        +Functions

         suckerberg_init (&$a)
         
        +

        Function Documentation

        + +
        +
        + + + + + + + + +
        suckerberg_init ($a)
        +
        +
          +
        • Name: Suckerberg
        • +
        • Description: A Facebook-like theme based on redbasic
        • +
        • Version: 1.0
        • +
        • Author: Sean Tilley
        • +
        • Compat: Red [*]
        • +
        + +
        +
        +
        +
        + diff --git a/doc/html/suckerberg_2php_2theme_8php.js b/doc/html/suckerberg_2php_2theme_8php.js new file mode 100644 index 000000000..3ab17833a --- /dev/null +++ b/doc/html/suckerberg_2php_2theme_8php.js @@ -0,0 +1,4 @@ +var suckerberg_2php_2theme_8php = +[ + [ "suckerberg_init", "suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8", null ] +]; \ No newline at end of file diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index 7ce8da167..e916c7ac1 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -1339,7 +1339,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(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), 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(), dirprofile_init(), discover_by_url(), discover_by_webbie(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), find_diaspora_person_by_handle(), fix_private_photos(), fix_system_urls(), RedMatrix\RedDAV\RedFile\get(), get_atom_elements(), get_diaspora_key(), get_diaspora_reshare_xml(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), group_content(), guess_image_type(), http_status_exit(), hubloc_change_primary(), impel_init(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), old_webfinger(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), prune_hub_reinstalls(), public_recips(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), rbmark_post(), receive_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), scale_external_images(), scrape_feed(), scrape_vcard(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), 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_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(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), 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(), dirprofile_init(), discover_by_url(), discover_by_webbie(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), find_diaspora_person_by_handle(), fix_private_photos(), fix_system_urls(), RedMatrix\RedDAV\RedFile\get(), get_atom_elements(), get_diaspora_key(), get_diaspora_reshare_xml(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), group_content(), guess_image_type(), http_status_exit(), hubloc_change_primary(), impel_init(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), old_webfinger(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), prune_hub_reinstalls(), public_recips(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), rbmark_post(), receive_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), scale_external_images(), scrape_feed(), scrape_vcard(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), 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_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

        diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index 4c7a43de7..deafea102 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(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), 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(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store_item(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_init(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), 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(), like_content(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_translation_table(), load_xconfig(), locs_post(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), p_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), regver_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), search_ac_init(), search_content(), search_init(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), subthread_content(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_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(), wfinger_init(), what_next(), widget_archive(), 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(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), 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(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store_item(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_init(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), hivenet_init(), home_content(), home_init(), hostxrd_init(), impel_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), like_content(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_pdl(), load_translation_table(), load_xconfig(), locs_post(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), p_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), regver_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), search_ac_init(), search_content(), search_init(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_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(), wfinger_init(), what_next(), widget_archive(), 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().

        -- cgit v1.2.3 From 1d8aa7d817242114001a9d1cc011f4fe38c21d57 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 24 Oct 2014 04:17:35 -0700 Subject: string update --- util/messages.po | 7888 ++++++++++++++++++++++++++++-------------------------- version.inc | 2 +- 2 files changed, 4027 insertions(+), 3863 deletions(-) diff --git a/util/messages.po b/util/messages.po index 87c0a1724..0fa553483 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-10-16.830\n" +"Project-Id-Version: 2014-10-24.838\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-17 14:18+0000\n" +"POT-Creation-Date: 2014-10-24 00:04-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,695 +17,705 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Light (Red Matrix default)" +#: ../../include/dba/dba_driver.php:50 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../view/theme/redbasic/php/config.php:99 -#: ../../include/ItemObject.php:599 ../../mod/settings.php:519 -#: ../../mod/settings.php:631 ../../mod/settings.php:660 -#: ../../mod/settings.php:684 ../../mod/settings.php:760 -#: ../../mod/settings.php:945 ../../mod/filestorage.php:146 -#: ../../mod/admin.php:414 ../../mod/admin.php:725 ../../mod/admin.php:861 -#: ../../mod/admin.php:994 ../../mod/admin.php:1193 ../../mod/admin.php:1280 -#: ../../mod/photos.php:563 ../../mod/photos.php:672 ../../mod/photos.php:974 -#: ../../mod/photos.php:1014 ../../mod/photos.php:1101 ../../mod/mood.php:135 -#: ../../mod/pdledit.php:58 ../../mod/connedit.php:540 ../../mod/setup.php:307 -#: ../../mod/setup.php:350 ../../mod/invite.php:142 ../../mod/thing.php:284 -#: ../../mod/thing.php:327 ../../mod/connect.php:92 ../../mod/fsuggest.php:108 -#: ../../mod/poke.php:166 ../../mod/group.php:81 ../../mod/appman.php:99 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/import.php:480 ../../mod/mail.php:348 ../../mod/profiles.php:643 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/events.php:587 -msgid "Submit" +#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:51 +#: ../../mod/photos.php:91 ../../mod/photos.php:657 ../../mod/photos.php:679 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:423 +msgid "Profile Photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" +#: ../../include/network.php:590 +msgid "view full size" msgstr "" -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" +#: ../../include/oembed.php:171 +msgid "Embedded content" msgstr "" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" +#: ../../include/oembed.php:180 +msgid "Embedding disabled" msgstr "" -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" +#: ../../include/items.php:377 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:242 +#: ../../index.php:388 +msgid "Permission denied" msgstr "" -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" +#: ../../include/items.php:964 ../../include/items.php:1009 +msgid "(Unknown)" msgstr "" -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" +#: ../../include/items.php:1165 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" +#: ../../include/items.php:1167 +msgid "Visible to you only." msgstr "" -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" +#: ../../include/items.php:1169 +msgid "Visible to anybody in this network." msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " +#: ../../include/items.php:1171 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " +#: ../../include/items.php:1173 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " +#: ../../include/items.php:1175 +msgid "Visible to all connections." msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" +#: ../../include/items.php:1177 +msgid "Visible to approved connections." msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" +#: ../../include/items.php:1179 +msgid "Visible to specific connections." msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" +#: ../../include/items.php:3938 ../../mod/display.php:32 +#: ../../mod/filestorage.php:26 ../../mod/admin.php:168 +#: ../../mod/admin.php:898 ../../mod/admin.php:1101 ../../mod/thing.php:76 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" +#: ../../include/items.php:4005 ../../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:584 +#: ../../include/photos.php:15 ../../include/chat.php:116 +#: ../../mod/mood.php:112 ../../mod/photos.php:68 ../../mod/photos.php:526 +#: ../../mod/mitem.php:73 ../../mod/achievements.php:30 +#: ../../mod/settings.php:496 ../../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:29 ../../mod/blocks.php:44 ../../mod/bookmarks.php:46 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:532 +#: ../../mod/events.php:195 ../../mod/channel.php:89 ../../mod/channel.php:193 +#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/register.php:70 ../../mod/regmod.php:17 ../../mod/common.php:35 +#: ../../mod/network.php:12 ../../mod/connections.php:169 +#: ../../mod/connedit.php:254 ../../mod/delegate.php:6 ../../mod/page.php:28 +#: ../../mod/page.php:78 ../../mod/setup.php:203 ../../mod/editblock.php:34 +#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:48 +#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:44 +#: ../../mod/editwebpage.php:83 ../../mod/profile_photo.php:263 +#: ../../mod/profile_photo.php:276 ../../mod/sources.php:66 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:67 +#: ../../mod/filestorage.php:82 ../../mod/filestorage.php:109 +#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 +#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 +#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:182 +#: ../../mod/item.php:190 ../../mod/item.php:954 ../../mod/layouts.php:27 +#: ../../mod/layouts.php:39 ../../mod/like.php:154 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/viewsrc.php:14 ../../mod/mail.php:111 ../../mod/manage.php:6 +#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/message.php:16 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/notifications.php:66 ../../mod/appman.php:66 +#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:389 +msgid "Permission denied." msgstr "" -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" +#: ../../include/items.php:4376 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." msgstr "" -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" +#: ../../include/items.php:4391 +msgid "Collection is empty." msgstr "" -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" +#: ../../include/items.php:4398 +#, php-format +msgid "Collection: %s" msgstr "" -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" +#: ../../include/items.php:4409 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" +#: ../../include/items.php:4412 +msgid "Connection not found." msgstr "" -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" +#: ../../include/notify.php:23 +msgid "created a new post" msgstr "" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" msgstr "" -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" +#: ../../include/apps.php:126 +msgid "Site Admin" msgstr "" -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" +#: ../../include/apps.php:127 ../../include/conversation.php:1570 +#: ../../include/nav.php:117 +msgid "Bookmarks" msgstr "" -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" +#: ../../include/apps.php:128 +msgid "Address Book" msgstr "" -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" +#: ../../include/apps.php:129 ../../include/nav.php:125 ../../boot.php:1496 +msgid "Login" msgstr "" -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" +#: ../../include/apps.php:130 ../../include/nav.php:216 +#: ../../mod/manage.php:148 +msgid "Channel Manager" msgstr "" -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" +#: ../../include/apps.php:131 ../../include/nav.php:190 +msgid "Matrix" msgstr "" -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" +#: ../../include/apps.php:132 ../../include/widgets.php:521 +#: ../../include/nav.php:218 ../../mod/admin.php:953 ../../mod/admin.php:1158 +msgid "Settings" msgstr "" -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" +#: ../../include/apps.php:133 ../../include/conversation.php:1546 +#: ../../include/nav.php:106 ../../include/RedDAV/RedBrowser.php:241 +#: ../../mod/fbrowser.php:114 +msgid "Files" msgstr "" -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" +#: ../../include/apps.php:134 ../../include/conversation.php:1581 +#: ../../include/nav.php:121 ../../mod/webpages.php:129 +msgid "Webpages" msgstr "" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" +#: ../../include/apps.php:135 ../../include/nav.php:193 +msgid "Channel Home" msgstr "" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Are you a clean desk or a messy desk person?" +#: ../../include/apps.php:136 ../../include/identity.php:1113 +#: ../../include/identity.php:1231 ../../mod/profperm.php:112 +msgid "Profile" msgstr "" -#: ../../boot.php:1294 -#, php-format -msgid "Update %s failed. See error logs." +#: ../../include/apps.php:137 ../../include/conversation.php:1537 +#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 +msgid "Photos" msgstr "" -#: ../../boot.php:1297 -#, php-format -msgid "Update Error at %s" +#: ../../include/apps.php:138 ../../include/nav.php:212 +#: ../../mod/events.php:431 +msgid "Events" msgstr "" -#: ../../boot.php:1471 -msgid "" -"Create an account to access services and applications within the Red Matrix" +#: ../../include/apps.php:139 ../../include/nav.php:176 +#: ../../mod/directory.php:226 +msgid "Directory" msgstr "" -#: ../../boot.php:1472 ../../include/nav.php:163 ../../mod/register.php:220 -msgid "Register" +#: ../../include/apps.php:140 ../../include/nav.php:168 ../../mod/help.php:60 +#: ../../mod/help.php:65 +msgid "Help" msgstr "" -#: ../../boot.php:1495 ../../include/nav.php:95 ../../include/nav.php:128 -msgid "Logout" +#: ../../include/apps.php:141 ../../include/nav.php:204 +msgid "Mail" msgstr "" -#: ../../boot.php:1496 ../../include/nav.php:125 ../../include/apps.php:129 -msgid "Login" +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" msgstr "" -#: ../../boot.php:1498 ../../include/contact_selectors.php:79 -#: ../../mod/admin.php:728 ../../mod/admin.php:737 -msgid "Email" +#: ../../include/apps.php:143 ../../include/conversation.php:951 +msgid "Poke" msgstr "" -#: ../../boot.php:1499 -msgid "Password" +#: ../../include/apps.php:144 ../../include/nav.php:111 +msgid "Chat" msgstr "" -#: ../../boot.php:1500 -msgid "Remember me" +#: ../../include/apps.php:145 ../../include/text.php:822 +#: ../../include/text.php:834 ../../include/nav.php:173 +#: ../../mod/search.php:30 +msgid "Search" msgstr "" -#: ../../boot.php:1505 -msgid "Forgot your password?" +#: ../../include/apps.php:146 +msgid "Probe" msgstr "" -#: ../../boot.php:1506 ../../mod/lostpass.php:85 -msgid "Password Reset" +#: ../../include/apps.php:147 +msgid "Suggest" msgstr "" -#: ../../boot.php:1570 -msgid "permission denied" +#: ../../include/apps.php:148 +msgid "Random Channel" msgstr "" -#: ../../boot.php:1571 -msgid "Got Zot?" +#: ../../include/apps.php:149 +msgid "Invite" msgstr "" -#: ../../boot.php:2001 -msgid "toggle mobile" +#: ../../include/apps.php:150 +msgid "Features" msgstr "" -#: ../../include/auth.php:116 -msgid "Logged out." +#: ../../include/apps.php:151 +msgid "Language" msgstr "" -#: ../../include/auth.php:257 -msgid "Failed authentication" +#: ../../include/apps.php:152 +msgid "Post" msgstr "" -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." +#: ../../include/apps.php:153 +msgid "Profile Photo" msgstr "" -#: ../../include/comanche.php:35 -msgid "Default" +#: ../../include/apps.php:242 ../../mod/settings.php:79 +#: ../../mod/settings.php:545 +msgid "Update" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:249 -msgid "parent" +#: ../../include/apps.php:242 +msgid "Install" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:130 -msgid "Collection" +#: ../../include/apps.php:247 +msgid "Purchase" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Principal" +#: ../../include/apps.php:249 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:250 +#: ../../include/menu.php:42 ../../include/ItemObject.php:100 +#: ../../mod/settings.php:581 ../../mod/blocks.php:99 +#: ../../mod/connections.php:381 ../../mod/connections.php:394 +#: ../../mod/connections.php:413 ../../mod/editblock.php:111 +#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 +#: ../../mod/editwebpage.php:143 ../../mod/thing.php:233 +#: ../../mod/layouts.php:121 ../../mod/menu.php:59 ../../mod/webpages.php:131 +msgid "Edit" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:136 -msgid "Addressbook" +#: ../../include/apps.php:250 ../../include/conversation.php:638 +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/ItemObject.php:120 +#: ../../mod/photos.php:1062 ../../mod/settings.php:582 +#: ../../mod/connedit.php:462 ../../mod/group.php:176 ../../mod/admin.php:732 +#: ../../mod/admin.php:863 ../../mod/thing.php:234 +msgid "Delete" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:139 -msgid "Calendar" +#: ../../include/apps.php:331 ../../include/apps.php:382 +#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 +#: ../../mod/photos.php:1124 ../../mod/connedit.php:498 +msgid "Unknown" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:142 -msgid "Schedule Inbox" +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:145 -msgid "Schedule Outbox" +#: ../../include/attach.php:331 +msgid "No source file." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:331 -#: ../../include/apps.php:382 ../../include/conversation.php:1003 -#: ../../mod/connedit.php:498 -msgid "Unknown" +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:223 +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:377 #, php-format -msgid "%1$s used" +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:228 +#: ../../include/attach.php:389 #, php-format -msgid "%1$s used of %2$s (%3$s%)" +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 -#: ../../include/apps.php:133 ../../include/conversation.php:1546 -#: ../../mod/fbrowser.php:114 -msgid "Files" +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:521 -#: ../../mod/settings.php:547 ../../mod/admin.php:868 -msgid "Name" +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:246 -msgid "Type" +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:247 -msgid "Size" +#: ../../include/attach.php:589 +msgid "Empty pathname" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:248 -msgid "Last Modified" +#: ../../include/attach.php:605 +msgid "duplicate filename or path" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:250 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/menu.php:42 -#: ../../include/ItemObject.php:100 ../../include/apps.php:249 -#: ../../mod/settings.php:581 ../../mod/webpages.php:131 -#: ../../mod/connections.php:381 ../../mod/connections.php:394 -#: ../../mod/connections.php:413 ../../mod/menu.php:59 ../../mod/thing.php:233 -#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 -#: ../../mod/blocks.php:99 ../../mod/layouts.php:121 -#: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 -msgid "Edit" +#: ../../include/attach.php:629 +msgid "Path not found." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/ItemObject.php:120 -#: ../../include/apps.php:250 ../../include/conversation.php:638 -#: ../../mod/settings.php:582 ../../mod/admin.php:732 ../../mod/admin.php:863 -#: ../../mod/photos.php:1064 ../../mod/connedit.php:462 -#: ../../mod/thing.php:234 ../../mod/group.php:176 -msgid "Delete" +#: ../../include/attach.php:680 +msgid "mkdir failed." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:252 -msgid "Total" +#: ../../include/attach.php:684 +msgid "database storage failed." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Create new folder" +#: ../../include/page_widgets.php:6 +msgid "New Page" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/new_channel.php:122 -#: ../../mod/mitem.php:142 ../../mod/menu.php:84 -msgid "Create" +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 +#: ../../mod/layouts.php:125 ../../mod/webpages.php:134 +msgid "View" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:306 -msgid "Upload file" +#: ../../include/page_widgets.php:40 ../../include/conversation.php:1114 +#: ../../include/ItemObject.php:608 ../../mod/photos.php:1013 +#: ../../mod/editblock.php:141 ../../mod/editlayout.php:135 +#: ../../mod/editpost.php:140 ../../mod/editwebpage.php:174 +#: ../../mod/webpages.php:135 +msgid "Preview" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:307 ../../mod/photos.php:745 -#: ../../mod/photos.php:1226 ../../mod/profile_photo.php:361 -msgid "Upload" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 +msgid "Actions" msgstr "" -#: ../../include/photos.php:15 ../../include/items.php:3994 -#: ../../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:584 ../../include/chat.php:116 -#: ../../mod/settings.php:496 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 -#: ../../mod/filestorage.php:109 ../../mod/webpages.php:40 -#: ../../mod/authtest.php:13 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/connections.php:169 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/photos.php:68 -#: ../../mod/photos.php:526 ../../mod/mitem.php:73 ../../mod/regmod.php:17 -#: ../../mod/mood.php:112 ../../mod/pdledit.php:21 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/menu.php:44 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/suggest.php:26 ../../mod/connedit.php:254 -#: ../../mod/message.php:16 ../../mod/setup.php:203 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/register.php:70 -#: ../../mod/network.php:12 ../../mod/delegate.php:6 ../../mod/fsuggest.php:78 -#: ../../mod/manage.php:6 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 -#: ../../mod/poke.php:128 ../../mod/blocks.php:29 ../../mod/blocks.php:44 -#: ../../mod/group.php:9 ../../mod/service_limits.php:7 ../../mod/item.php:182 -#: ../../mod/item.php:190 ../../mod/item.php:929 ../../mod/appman.php:66 -#: ../../mod/sources.php:66 ../../mod/page.php:30 ../../mod/page.php:80 -#: ../../mod/mail.php:111 ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:560 ../../mod/bookmarks.php:46 -#: ../../mod/common.php:35 ../../mod/like.php:154 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/events.php:200 ../../mod/notifications.php:66 -#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 -#: ../../mod/editblock.php:34 ../../mod/viewsrc.php:14 -#: ../../mod/achievements.php:30 ../../mod/editlayout.php:48 -#: ../../index.php:190 ../../index.php:365 -msgid "Permission denied." +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 +msgid "Page Link" msgstr "" -#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:680 -#: ../../mod/photos.php:91 ../../mod/photos.php:657 ../../mod/photos.php:679 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 -msgid "Profile Photos" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 +msgid "Title" msgstr "" -#: ../../include/photos.php:104 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 +msgid "Created" msgstr "" -#: ../../include/photos.php:111 -msgid "Image file is empty." +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 +msgid "Edited" msgstr "" -#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 -msgid "Unable to process image" +#: ../../include/security.php:320 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/photos.php:212 -msgid "Photo storage failed." +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:93 +msgid "Categories" msgstr "" -#: ../../include/photos.php:340 ../../include/conversation.php:1540 -msgid "Photo Albums" +#: ../../include/widgets.php:86 ../../include/nav.php:171 +#: ../../mod/apps.php:33 +msgid "Apps" msgstr "" -#: ../../include/photos.php:344 -msgid "Upload New Photos" +#: ../../include/widgets.php:87 +msgid "System" msgstr "" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 -msgid "Advanced" +#: ../../include/widgets.php:89 ../../include/conversation.php:1449 +msgid "Personal" msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" +#: ../../include/widgets.php:90 +msgid "Create Personal App" msgstr "" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" +#: ../../include/widgets.php:91 +msgid "Edit Personal App" msgstr "" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" +#: ../../include/widgets.php:135 ../../include/widgets.php:175 +#: ../../include/identity.php:833 ../../include/conversation.php:948 +#: ../../include/Contact.php:107 ../../mod/directory.php:183 +#: ../../mod/dirprofile.php:164 ../../mod/suggest.php:51 +#: ../../mod/match.php:62 +msgid "Connect" msgstr "" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" msgstr "" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:222 ../../mod/directory.php:227 -msgid "Find" +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" msgstr "" -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" +#: ../../include/widgets.php:144 +msgid "See more..." msgstr "" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" +#: ../../include/widgets.php:172 +msgid "Add New Connection" msgstr "" -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" msgstr "" -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../include/contact_widgets.php:58 ../../include/features.php:72 -#: ../../include/widgets.php:303 -msgid "Saved Folders" +#: ../../include/widgets.php:191 +msgid "Notes" msgstr "" -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96 -#: ../../include/widgets.php:306 -msgid "Everything" +#: ../../include/widgets.php:193 ../../include/text.php:823 +#: ../../include/text.php:835 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 ../../mod/admin.php:1341 ../../mod/admin.php:1362 +msgid "Save" msgstr "" -#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29 -msgid "Categories" +#: ../../include/widgets.php:263 +msgid "Remove term" msgstr "" -#: ../../include/contact_widgets.php:126 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:131 -msgid "show more" +#: ../../include/widgets.php:272 ../../include/features.php:58 +msgid "Saved Searches" msgstr "" -#: ../../include/activities.php:39 -msgid " and " +#: ../../include/widgets.php:273 ../../include/group.php:302 +msgid "add" msgstr "" -#: ../../include/activities.php:47 -msgid "public profile" +#: ../../include/widgets.php:303 ../../include/contact_widgets.php:58 +#: ../../include/features.php:72 +msgid "Saved Folders" msgstr "" -#: ../../include/activities.php:52 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/widgets.php:306 ../../include/contact_widgets.php:61 +#: ../../include/contact_widgets.php:96 +msgid "Everything" msgstr "" -#: ../../include/activities.php:53 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/widgets.php:342 +msgid "Archives" msgstr "" -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/widgets.php:404 +msgid "Refresh" msgstr "" -#: ../../include/items.php:375 ../../mod/subthread.php:49 -#: ../../mod/profperm.php:23 ../../mod/group.php:68 ../../mod/like.php:242 -#: ../../index.php:364 -msgid "Permission denied" +#: ../../include/widgets.php:405 ../../mod/connedit.php:492 +msgid "Me" msgstr "" -#: ../../include/items.php:962 ../../include/items.php:1007 -msgid "(Unknown)" +#: ../../include/widgets.php:406 ../../mod/connedit.php:494 +msgid "Best Friends" msgstr "" -#: ../../include/items.php:1163 -msgid "Visible to anybody on the internet." +#: ../../include/widgets.php:407 ../../include/identity.php:381 +#: ../../include/identity.php:382 ../../include/identity.php:389 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:495 +msgid "Friends" msgstr "" -#: ../../include/items.php:1165 -msgid "Visible to you only." +#: ../../include/widgets.php:408 +msgid "Co-workers" msgstr "" -#: ../../include/items.php:1167 -msgid "Visible to anybody in this network." +#: ../../include/widgets.php:409 ../../mod/connedit.php:496 +msgid "Former Friends" msgstr "" -#: ../../include/items.php:1169 -msgid "Visible to anybody authenticated." +#: ../../include/widgets.php:410 ../../mod/connedit.php:497 +msgid "Acquaintances" msgstr "" -#: ../../include/items.php:1171 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/widgets.php:411 +msgid "Everybody" msgstr "" -#: ../../include/items.php:1173 -msgid "Visible to all connections." +#: ../../include/widgets.php:443 +msgid "Account settings" msgstr "" -#: ../../include/items.php:1175 -msgid "Visible to approved connections." +#: ../../include/widgets.php:449 +msgid "Channel settings" msgstr "" -#: ../../include/items.php:1177 -msgid "Visible to specific connections." +#: ../../include/widgets.php:455 +msgid "Additional features" msgstr "" -#: ../../include/items.php:3927 ../../mod/filestorage.php:26 -#: ../../mod/admin.php:168 ../../mod/admin.php:898 ../../mod/admin.php:1101 -#: ../../mod/thing.php:76 ../../mod/display.php:32 ../../mod/viewsrc.php:20 -msgid "Item not found." +#: ../../include/widgets.php:461 +msgid "Feature settings" msgstr "" -#: ../../include/items.php:4365 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." +#: ../../include/widgets.php:467 +msgid "Display settings" msgstr "" -#: ../../include/items.php:4380 -msgid "Collection is empty." +#: ../../include/widgets.php:473 +msgid "Connected apps" msgstr "" -#: ../../include/items.php:4387 -#, php-format -msgid "Collection: %s" +#: ../../include/widgets.php:479 +msgid "Export channel" msgstr "" -#: ../../include/items.php:4398 -#, php-format -msgid "Connection: %s" +#: ../../include/widgets.php:485 +msgid "Export content" msgstr "" -#: ../../include/items.php:4401 -msgid "Connection not found." +#: ../../include/widgets.php:491 +msgid "Automatic Permissions (Advanced)" msgstr "" -#: ../../include/Contact.php:107 ../../include/identity.php:832 -#: ../../include/conversation.php:948 ../../include/widgets.php:135 -#: ../../include/widgets.php:175 ../../mod/dirprofile.php:164 -#: ../../mod/suggest.php:51 ../../mod/directory.php:183 ../../mod/match.php:62 -msgid "Connect" +#: ../../include/widgets.php:501 +msgid "Premium Channel Settings" msgstr "" -#: ../../include/Contact.php:123 -msgid "New window" +#: ../../include/widgets.php:510 ../../include/features.php:49 +#: ../../mod/sources.php:88 +msgid "Channel Sources" msgstr "" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/widgets.php:535 ../../mod/mail.php:124 +#: ../../mod/message.php:31 +msgid "Messages" msgstr "" -#: ../../include/Contact.php:211 ../../mod/admin.php:649 -#, php-format -msgid "User '%s' deleted" +#: ../../include/widgets.php:540 +msgid "Check Mail" msgstr "" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" +#: ../../include/widgets.php:545 ../../include/nav.php:209 +msgid "New Message" msgstr "" -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" +#: ../../include/widgets.php:621 +msgid "Chat Rooms" msgstr "" -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" +#: ../../include/widgets.php:639 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" +#: ../../include/widgets.php:657 +msgid "Suggested Chatrooms" msgstr "" -#: ../../include/datetime.php:275 -msgid "never" +#: ../../include/zot.php:655 +msgid "Invalid data packet" msgstr "" -#: ../../include/datetime.php:281 -msgid "less than a second ago" +#: ../../include/zot.php:671 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/datetime.php:284 -msgid "years" +#: ../../include/zot.php:1763 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/datetime.php:285 -msgid "months" +#: ../../include/photos.php:104 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/datetime.php:286 -msgid "week" +#: ../../include/photos.php:111 +msgid "Image file is empty." msgstr "" -#: ../../include/datetime.php:286 -msgid "weeks" +#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 +msgid "Unable to process image" msgstr "" -#: ../../include/datetime.php:287 -msgid "days" +#: ../../include/photos.php:212 +msgid "Photo storage failed." msgstr "" -#: ../../include/datetime.php:288 -msgid "hour" +#: ../../include/photos.php:340 ../../include/conversation.php:1540 +msgid "Photo Albums" msgstr "" -#: ../../include/datetime.php:288 -msgid "hours" +#: ../../include/photos.php:344 +msgid "Upload New Photos" msgstr "" -#: ../../include/datetime.php:289 -msgid "minute" +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" msgstr "" -#: ../../include/datetime.php:289 -msgid "minutes" +#: ../../include/acl_selectors.php:241 +msgid "Show" msgstr "" -#: ../../include/datetime.php:290 -msgid "second" +#: ../../include/acl_selectors.php:242 +msgid "Don't show" msgstr "" -#: ../../include/datetime.php:290 -msgid "seconds" +#: ../../include/acl_selectors.php:248 ../../mod/photos.php:604 +#: ../../mod/photos.php:968 ../../mod/events.php:585 ../../mod/chat.php:209 +#: ../../mod/filestorage.php:137 +msgid "Permissions" +msgstr "" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 +msgid "Close" +msgstr "" + +#: ../../include/activities.php:39 +msgid " and " msgstr "" -#: ../../include/datetime.php:299 +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "" + +#: ../../include/activities.php:52 #, php-format -msgid "%1$d %2$s ago" +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/datetime.php:504 +#: ../../include/activities.php:53 #, php-format -msgid "%1$s's birthday" +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/datetime.php:505 +#: ../../include/activities.php:56 #, php-format -msgid "Happy Birthday %1$s" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../include/api.php:1084 +msgid "Public Timeline" msgstr "" -#: ../../include/identity.php:31 ../../mod/item.php:1319 +#: ../../include/identity.php:31 ../../mod/item.php:1344 msgid "Unable to obtain identity information from database" msgstr "" @@ -729,7 +739,7 @@ msgstr "" msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/identity.php:200 +#: ../../include/identity.php:200 ../../include/dimport.php:34 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "" @@ -742,129 +752,118 @@ msgstr "" msgid "Default Profile" msgstr "" -#: ../../include/identity.php:381 ../../include/identity.php:382 -#: ../../include/identity.php:389 ../../include/profile_selectors.php:80 -#: ../../include/widgets.php:407 ../../mod/connedit.php:495 -msgid "Friends" -msgstr "" - -#: ../../include/identity.php:635 +#: ../../include/identity.php:636 msgid "Requested channel is not available." msgstr "" -#: ../../include/identity.php:683 ../../mod/filestorage.php:48 -#: ../../mod/webpages.php:8 ../../mod/profile.php:16 ../../mod/hcard.php:8 -#: ../../mod/connect.php:13 ../../mod/blocks.php:10 ../../mod/layouts.php:8 -#: ../../mod/achievements.php:11 +#: ../../include/identity.php:684 ../../mod/achievements.php:11 +#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 +#: ../../mod/filestorage.php:48 ../../mod/layouts.php:8 +#: ../../mod/webpages.php:8 ../../mod/hcard.php:8 msgid "Requested profile is not available." msgstr "" -#: ../../include/identity.php:846 ../../mod/profiles.php:750 +#: ../../include/identity.php:847 ../../mod/profiles.php:722 msgid "Change profile photo" msgstr "" -#: ../../include/identity.php:852 +#: ../../include/identity.php:853 msgid "Profiles" msgstr "" -#: ../../include/identity.php:852 +#: ../../include/identity.php:853 msgid "Manage/edit profiles" msgstr "" -#: ../../include/identity.php:853 ../../mod/profiles.php:751 +#: ../../include/identity.php:854 ../../mod/profiles.php:723 msgid "Create New Profile" msgstr "" -#: ../../include/identity.php:856 ../../include/nav.php:103 +#: ../../include/identity.php:857 ../../include/nav.php:103 msgid "Edit Profile" msgstr "" -#: ../../include/identity.php:867 ../../mod/profiles.php:762 +#: ../../include/identity.php:868 ../../mod/profiles.php:734 msgid "Profile Image" msgstr "" -#: ../../include/identity.php:870 +#: ../../include/identity.php:871 msgid "visible to everybody" msgstr "" -#: ../../include/identity.php:871 ../../mod/profiles.php:645 -#: ../../mod/profiles.php:766 +#: ../../include/identity.php:872 ../../mod/profiles.php:617 +#: ../../mod/profiles.php:738 msgid "Edit visibility" msgstr "" -#: ../../include/identity.php:883 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:461 ../../mod/dirprofile.php:105 -#: ../../mod/directory.php:156 ../../mod/events.php:579 +#: ../../include/identity.php:884 ../../include/event.php:40 +#: ../../include/bb2diaspora.php:480 ../../mod/events.php:579 +#: ../../mod/directory.php:156 ../../mod/dirprofile.php:105 msgid "Location:" msgstr "" -#: ../../include/identity.php:885 ../../include/identity.php:1122 +#: ../../include/identity.php:886 ../../include/identity.php:1123 #: ../../mod/directory.php:158 msgid "Gender:" msgstr "" -#: ../../include/identity.php:886 ../../include/identity.php:1166 +#: ../../include/identity.php:887 ../../include/identity.php:1167 #: ../../mod/directory.php:160 msgid "Status:" msgstr "" -#: ../../include/identity.php:887 ../../include/identity.php:1177 +#: ../../include/identity.php:888 ../../include/identity.php:1178 #: ../../mod/directory.php:162 msgid "Homepage:" msgstr "" -#: ../../include/identity.php:888 ../../mod/dirprofile.php:151 +#: ../../include/identity.php:889 ../../mod/dirprofile.php:151 msgid "Online Now" msgstr "" -#: ../../include/identity.php:966 ../../include/identity.php:1046 +#: ../../include/identity.php:967 ../../include/identity.php:1047 #: ../../mod/ping.php:298 msgid "g A l F d" msgstr "" -#: ../../include/identity.php:967 ../../include/identity.php:1047 +#: ../../include/identity.php:968 ../../include/identity.php:1048 msgid "F d" msgstr "" -#: ../../include/identity.php:1012 ../../include/identity.php:1087 +#: ../../include/identity.php:1013 ../../include/identity.php:1088 #: ../../mod/ping.php:320 msgid "[today]" msgstr "" -#: ../../include/identity.php:1024 +#: ../../include/identity.php:1025 msgid "Birthday Reminders" msgstr "" -#: ../../include/identity.php:1025 +#: ../../include/identity.php:1026 msgid "Birthdays this week:" msgstr "" -#: ../../include/identity.php:1080 +#: ../../include/identity.php:1081 msgid "[No description]" msgstr "" -#: ../../include/identity.php:1098 +#: ../../include/identity.php:1099 msgid "Event Reminders" msgstr "" -#: ../../include/identity.php:1099 +#: ../../include/identity.php:1100 msgid "Events this week:" msgstr "" -#: ../../include/identity.php:1112 ../../include/identity.php:1230 -#: ../../include/apps.php:136 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "" - -#: ../../include/identity.php:1120 ../../mod/settings.php:953 +#: ../../include/identity.php:1121 ../../mod/settings.php:953 msgid "Full Name:" msgstr "" -#: ../../include/identity.php:1127 +#: ../../include/identity.php:1128 msgid "Like this channel" msgstr "" -#: ../../include/identity.php:1138 ../../include/taxonomy.php:338 +#: ../../include/identity.php:1139 ../../include/taxonomy.php:338 #: ../../include/ItemObject.php:146 msgctxt "noun" msgid "Like" @@ -872,1504 +871,1334 @@ msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: ../../include/identity.php:1151 +#: ../../include/identity.php:1152 msgid "j F, Y" msgstr "" -#: ../../include/identity.php:1152 +#: ../../include/identity.php:1153 msgid "j F" msgstr "" -#: ../../include/identity.php:1159 +#: ../../include/identity.php:1160 msgid "Birthday:" msgstr "" -#: ../../include/identity.php:1163 +#: ../../include/identity.php:1164 msgid "Age:" msgstr "" -#: ../../include/identity.php:1172 +#: ../../include/identity.php:1173 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/identity.php:1175 ../../mod/profiles.php:667 +#: ../../include/identity.php:1176 ../../mod/profiles.php:639 msgid "Sexual Preference:" msgstr "" -#: ../../include/identity.php:1179 ../../mod/profiles.php:669 +#: ../../include/identity.php:1180 ../../mod/profiles.php:641 msgid "Hometown:" msgstr "" -#: ../../include/identity.php:1181 +#: ../../include/identity.php:1182 msgid "Tags:" msgstr "" -#: ../../include/identity.php:1183 ../../mod/profiles.php:670 +#: ../../include/identity.php:1184 ../../mod/profiles.php:642 msgid "Political Views:" msgstr "" -#: ../../include/identity.php:1185 +#: ../../include/identity.php:1186 msgid "Religion:" msgstr "" -#: ../../include/identity.php:1187 ../../mod/directory.php:164 +#: ../../include/identity.php:1188 ../../mod/directory.php:164 msgid "About:" msgstr "" -#: ../../include/identity.php:1189 +#: ../../include/identity.php:1190 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/identity.php:1191 ../../mod/profiles.php:673 +#: ../../include/identity.php:1192 ../../mod/profiles.php:645 msgid "Likes:" msgstr "" -#: ../../include/identity.php:1193 ../../mod/profiles.php:674 +#: ../../include/identity.php:1194 ../../mod/profiles.php:646 msgid "Dislikes:" msgstr "" -#: ../../include/identity.php:1196 +#: ../../include/identity.php:1197 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/identity.php:1198 +#: ../../include/identity.php:1199 msgid "My other channels:" msgstr "" -#: ../../include/identity.php:1200 +#: ../../include/identity.php:1201 msgid "Musical interests:" msgstr "" -#: ../../include/identity.php:1202 +#: ../../include/identity.php:1203 msgid "Books, literature:" msgstr "" -#: ../../include/identity.php:1204 +#: ../../include/identity.php:1205 msgid "Television:" msgstr "" -#: ../../include/identity.php:1206 +#: ../../include/identity.php:1207 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/identity.php:1208 +#: ../../include/identity.php:1209 msgid "Love/Romance:" msgstr "" -#: ../../include/identity.php:1210 +#: ../../include/identity.php:1211 msgid "Work/employment:" msgstr "" -#: ../../include/identity.php:1212 +#: ../../include/identity.php:1213 msgid "School/education:" msgstr "" -#: ../../include/identity.php:1232 +#: ../../include/identity.php:1233 msgid "Like this thing" msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "" - -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:134 -#: ../../mod/blocks.php:102 ../../mod/layouts.php:125 -msgid "View" +#: ../../include/conversation.php:120 ../../include/text.php:1743 +#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:294 +msgid "photo" msgstr "" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:608 -#: ../../include/conversation.php:1114 ../../mod/webpages.php:135 -#: ../../mod/photos.php:1015 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:174 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 -msgid "Preview" +#: ../../include/conversation.php:123 ../../include/text.php:1746 +#: ../../mod/tagger.php:49 +msgid "event" msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 -msgid "Actions" +#: ../../include/conversation.php:126 ../../mod/like.php:89 +msgid "channel" msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 -msgid "Page Link" +#: ../../include/conversation.php:148 ../../include/text.php:1749 +#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:294 +msgid "status" msgstr "" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 -msgid "Title" +#: ../../include/conversation.php:150 ../../include/text.php:1751 +#: ../../mod/tagger.php:55 +msgid "comment" msgstr "" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 -msgid "Created" +#: ../../include/conversation.php:164 ../../include/diaspora.php:1953 +#: ../../mod/like.php:331 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 -msgid "Edited" +#: ../../include/conversation.php:167 ../../mod/like.php:333 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../include/message.php:18 -msgid "No recipient provided." +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/message.php:23 -msgid "[no subject]" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." +#: ../../include/conversation.php:243 ../../include/text.php:901 +msgid "poked" msgstr "" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." +#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../include/taxonomy.php:210 -msgid "Tags" +#: ../../include/conversation.php:637 ../../include/ItemObject.php:126 +msgid "Select" msgstr "" -#: ../../include/taxonomy.php:227 -msgid "Keywords" +#: ../../include/conversation.php:645 ../../include/ItemObject.php:89 +msgid "Private Message" msgstr "" -#: ../../include/taxonomy.php:252 -msgid "have" +#: ../../include/conversation.php:652 ../../include/ItemObject.php:194 +msgid "Message signature validated" msgstr "" -#: ../../include/taxonomy.php:252 -msgid "has" +#: ../../include/conversation.php:653 ../../include/ItemObject.php:195 +msgid "Message signature incorrect" msgstr "" -#: ../../include/taxonomy.php:253 -msgid "want" +#: ../../include/conversation.php:674 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/taxonomy.php:253 -msgid "wants" +#: ../../include/conversation.php:689 +msgid "Categories:" msgstr "" -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:221 -msgid "like" +#: ../../include/conversation.php:690 +msgid "Filed under:" msgstr "" -#: ../../include/taxonomy.php:254 -msgid "likes" +#: ../../include/conversation.php:698 ../../include/ItemObject.php:265 +#, php-format +msgid " from %s" msgstr "" -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:222 -msgid "dislike" +#: ../../include/conversation.php:701 ../../include/ItemObject.php:268 +#, php-format +msgid "last edited: %s" msgstr "" -#: ../../include/taxonomy.php:255 -msgid "dislikes" +#: ../../include/conversation.php:702 ../../include/ItemObject.php:269 +#, php-format +msgid "Expires: %s" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../include/conversation.php:717 +msgid "View in context" msgstr "" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 -#: ../../mod/photos.php:1013 ../../mod/photos.php:1100 -msgid "Comment" +#: ../../include/conversation.php:719 ../../include/conversation.php:1153 +#: ../../include/ItemObject.php:310 ../../mod/photos.php:993 +#: ../../mod/editblock.php:120 ../../mod/editlayout.php:115 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 +#: ../../mod/mail.php:234 ../../mod/mail.php:349 +msgid "Please wait" msgstr "" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:332 -msgid "[+] show all" +#: ../../include/conversation.php:843 +msgid "remove" msgstr "" -#: ../../include/js_strings.php:8 -msgid "[-] show less" +#: ../../include/conversation.php:847 ../../include/nav.php:257 +msgid "Loading..." msgstr "" -#: ../../include/js_strings.php:9 -msgid "[+] expand" +#: ../../include/conversation.php:848 +msgid "Delete Selected Items" msgstr "" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" +#: ../../include/conversation.php:942 +msgid "View Source" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../include/conversation.php:943 +msgid "Follow Thread" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" +#: ../../include/conversation.php:944 +msgid "View Status" msgstr "" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" +#: ../../include/conversation.php:945 ../../include/nav.php:99 +#: ../../mod/connedit.php:415 ../../mod/connedit.php:529 +msgid "View Profile" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../include/conversation.php:946 +msgid "View Photos" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../include/conversation.php:947 +msgid "Matrix Activity" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../include/conversation.php:949 +msgid "Edit Contact" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../include/conversation.php:950 +msgid "Send PM" msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../include/js_strings.php:20 -msgid "timeago.prefixAgo" +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../include/js_strings.php:21 -msgid "timeago.prefixFromNow" -msgstr "" +#: ../../include/conversation.php:1028 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/js_strings.php:22 -msgid "ago" -msgstr "" +#: ../../include/conversation.php:1030 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/js_strings.php:23 -msgid "from now" +#: ../../include/conversation.php:1036 +msgid "and" msgstr "" -#: ../../include/js_strings.php:24 -msgid "less than a minute" -msgstr "" +#: ../../include/conversation.php:1039 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" -#: ../../include/js_strings.php:25 -msgid "about a minute" +#: ../../include/conversation.php:1040 +#, php-format +msgid "%s like this." msgstr "" -#: ../../include/js_strings.php:26 +#: ../../include/conversation.php:1040 #, php-format -msgid "%d minutes" +msgid "%s don't like this." msgstr "" -#: ../../include/js_strings.php:27 -msgid "about an hour" +#: ../../include/conversation.php:1097 +msgid "Visible to everybody" msgstr "" -#: ../../include/js_strings.php:28 -#, php-format -msgid "about %d hours" +#: ../../include/conversation.php:1098 ../../mod/mail.php:170 +#: ../../mod/mail.php:282 +msgid "Please enter a link URL:" msgstr "" -#: ../../include/js_strings.php:29 -msgid "a day" +#: ../../include/conversation.php:1099 +msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d days" +#: ../../include/conversation.php:1100 +msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/js_strings.php:31 -msgid "about a month" +#: ../../include/conversation.php:1101 +msgid "Tag term:" msgstr "" -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d months" +#: ../../include/conversation.php:1102 ../../mod/filer.php:49 +msgid "Save to Folder:" msgstr "" -#: ../../include/js_strings.php:33 -msgid "about a year" +#: ../../include/conversation.php:1103 +msgid "Where are you right now?" msgstr "" -#: ../../include/js_strings.php:34 -#, php-format -msgid "%d years" +#: ../../include/conversation.php:1104 ../../mod/editpost.php:52 +#: ../../mod/mail.php:171 ../../mod/mail.php:283 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../include/js_strings.php:35 -msgid " " +#: ../../include/conversation.php:1128 ../../mod/photos.php:992 +#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 +#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 +msgid "Share" msgstr "" -#: ../../include/js_strings.php:36 -msgid "timeago.numbers" +#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:139 +msgid "Page link title" msgstr "" -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" +#: ../../include/conversation.php:1133 +msgid "Post as" msgstr "" -#: ../../include/permissions.php:14 -msgid "Can view my default channel profile" +#: ../../include/conversation.php:1134 ../../mod/editblock.php:112 +#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:231 ../../mod/mail.php:345 +msgid "Upload photo" msgstr "" -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" +#: ../../include/conversation.php:1135 +msgid "upload photo" msgstr "" -#: ../../include/permissions.php:16 -msgid "Can view my connections" +#: ../../include/conversation.php:1136 ../../mod/editblock.php:113 +#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:232 ../../mod/mail.php:346 +msgid "Attach file" msgstr "" -#: ../../include/permissions.php:17 -msgid "Can view my file storage" +#: ../../include/conversation.php:1137 +msgid "attach file" msgstr "" -#: ../../include/permissions.php:18 -msgid "Can view my webpages" +#: ../../include/conversation.php:1138 ../../mod/editblock.php:114 +#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:233 ../../mod/mail.php:347 +msgid "Insert web link" msgstr "" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" +#: ../../include/conversation.php:1139 +msgid "web link" msgstr "" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/conversation.php:1140 +msgid "Insert video link" msgstr "" -#: ../../include/permissions.php:23 -msgid "Can comment on or like my posts" +#: ../../include/conversation.php:1141 +msgid "video link" msgstr "" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" +#: ../../include/conversation.php:1142 +msgid "Insert audio link" msgstr "" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" +#: ../../include/conversation.php:1143 +msgid "audio link" msgstr "" -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" +#: ../../include/conversation.php:1144 ../../mod/editblock.php:118 +#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:150 +msgid "Set your location" msgstr "" -#: ../../include/permissions.php:26 -msgid "Profiles and things other than posts/comments" +#: ../../include/conversation.php:1145 +msgid "set location" msgstr "" -#: ../../include/permissions.php:28 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/conversation.php:1146 ../../mod/editblock.php:119 +#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:151 +msgid "Clear browser location" msgstr "" -#: ../../include/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/conversation.php:1147 +msgid "clear location" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" +#: ../../include/conversation.php:1149 ../../mod/editblock.php:132 +#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:167 +msgid "Set title" msgstr "" -#: ../../include/permissions.php:30 -msgid "Can write to my file storage" +#: ../../include/conversation.php:1152 ../../mod/events.php:563 +#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 +#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:169 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../include/permissions.php:31 -msgid "Can edit my webpages" +#: ../../include/conversation.php:1154 ../../mod/editblock.php:121 +#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:153 +msgid "Permission settings" msgstr "" -#: ../../include/permissions.php:33 -msgid "Can source my public posts in derived channels" +#: ../../include/conversation.php:1155 +msgid "permissions" msgstr "" -#: ../../include/permissions.php:33 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/conversation.php:1162 ../../mod/editblock.php:129 +#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:162 +msgid "Public post" msgstr "" -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" +#: ../../include/conversation.php:1164 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:170 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/permissions.php:35 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/conversation.php:1177 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:179 ../../mod/mail.php:238 ../../mod/mail.php:352 +msgid "Set expiration date" msgstr "" -#: ../../include/permissions.php:738 -msgid "Social Networking" +#: ../../include/conversation.php:1179 ../../include/ItemObject.php:611 +#: ../../mod/editpost.php:148 ../../mod/mail.php:240 ../../mod/mail.php:354 +msgid "Encrypt text" msgstr "" -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -#: ../../include/permissions.php:743 ../../include/permissions.php:745 -msgid "Mostly Public" +#: ../../include/conversation.php:1181 ../../mod/events.php:569 +#: ../../mod/editpost.php:150 +msgid "OK" msgstr "" -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -#: ../../include/permissions.php:743 -msgid "Restricted" +#: ../../include/conversation.php:1182 ../../mod/settings.php:520 +#: ../../mod/settings.php:546 ../../mod/events.php:568 +#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +msgid "Cancel" msgstr "" -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -msgid "Private" +#: ../../include/conversation.php:1426 +msgid "Discover" msgstr "" -#: ../../include/permissions.php:740 -msgid "Community Forum" +#: ../../include/conversation.php:1429 +msgid "Imported public streams" msgstr "" -#: ../../include/permissions.php:742 -msgid "Feed Republish" +#: ../../include/conversation.php:1434 +msgid "Commented Order" msgstr "" -#: ../../include/permissions.php:744 -msgid "Celebrity/Soapbox" +#: ../../include/conversation.php:1437 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/permissions.php:746 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" +#: ../../include/conversation.php:1441 +msgid "Posted Order" msgstr "" -#: ../../include/permissions.php:747 -msgid "Custom/Expert Mode" +#: ../../include/conversation.php:1444 +msgid "Sort by Post Date" msgstr "" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" +#: ../../include/conversation.php:1452 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" +#: ../../include/conversation.php:1458 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" msgstr "" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" +#: ../../include/conversation.php:1461 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/contact_selectors.php:59 -msgid "Daily" +#: ../../include/conversation.php:1467 +msgid "Starred" msgstr "" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" +#: ../../include/conversation.php:1470 +msgid "Favourite Posts" msgstr "" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" +#: ../../include/conversation.php:1477 +msgid "Spam" msgstr "" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" +#: ../../include/conversation.php:1480 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" +#: ../../include/conversation.php:1516 ../../mod/admin.php:867 +msgid "Channel" msgstr "" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" +#: ../../include/conversation.php:1519 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" +#: ../../include/conversation.php:1528 +msgid "About" msgstr "" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" +#: ../../include/conversation.php:1531 +msgid "Profile Details" msgstr "" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" +#: ../../include/conversation.php:1549 +msgid "Files and Storage" msgstr "" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" +#: ../../include/conversation.php:1558 ../../include/conversation.php:1561 +msgid "Chatrooms" msgstr "" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" +#: ../../include/conversation.php:1573 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" +#: ../../include/conversation.php:1584 +msgid "Manage Webpages" msgstr "" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:439 -msgid "l F d, Y \\@ g:i A" +#: ../../include/auth.php:116 +msgid "Logged out." msgstr "" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:445 -msgid "Starts:" +#: ../../include/auth.php:257 +msgid "Failed authentication" msgstr "" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:453 -msgid "Finishes:" +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." msgstr "" -#: ../../include/event.php:326 -msgid "This event has been added to your calendar." +#: ../../include/text.php:321 +msgid "prev" msgstr "" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" +#: ../../include/text.php:323 +msgid "first" msgstr "" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" +#: ../../include/text.php:352 +msgid "last" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" +#: ../../include/text.php:355 +msgid "next" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" +#: ../../include/text.php:367 +msgid "older" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" +#: ../../include/text.php:369 +msgid "newer" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" +#: ../../include/text.php:736 +msgid "No connections" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "" +#: ../../include/text.php:749 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "" +msgstr[1] "" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" +#: ../../include/text.php:762 +msgid "View Connections" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" +#: ../../include/text.php:901 +msgid "poke" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" +#: ../../include/text.php:902 +msgid "ping" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" +#: ../../include/text.php:902 +msgid "pinged" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" +#: ../../include/text.php:903 +msgid "prod" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" +#: ../../include/text.php:903 +msgid "prodded" msgstr "" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" +#: ../../include/text.php:904 +msgid "slap" msgstr "" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" +#: ../../include/text.php:904 +msgid "slapped" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Gay" +#: ../../include/text.php:905 +msgid "finger" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" +#: ../../include/text.php:905 +msgid "fingered" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" +#: ../../include/text.php:906 +msgid "rebuff" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" +#: ../../include/text.php:906 +msgid "rebuffed" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" +#: ../../include/text.php:915 +msgid "happy" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" +#: ../../include/text.php:916 +msgid "sad" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Virgin" +#: ../../include/text.php:917 +msgid "mellow" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" +#: ../../include/text.php:918 +msgid "tired" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" +#: ../../include/text.php:919 +msgid "perky" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" +#: ../../include/text.php:920 +msgid "angry" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" +#: ../../include/text.php:921 +msgid "stupified" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" +#: ../../include/text.php:922 +msgid "puzzled" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" +#: ../../include/text.php:923 +msgid "interested" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Available" +#: ../../include/text.php:924 +msgid "bitter" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" +#: ../../include/text.php:925 +msgid "cheerful" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" +#: ../../include/text.php:926 +msgid "alive" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" +#: ../../include/text.php:927 +msgid "annoyed" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" +#: ../../include/text.php:928 +msgid "anxious" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" +#: ../../include/text.php:929 +msgid "cranky" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" +#: ../../include/text.php:930 +msgid "disturbed" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" +#: ../../include/text.php:931 +msgid "frustrated" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Casual" +#: ../../include/text.php:932 +msgid "depressed" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" +#: ../../include/text.php:933 +msgid "motivated" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" +#: ../../include/text.php:934 +msgid "relaxed" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" +#: ../../include/text.php:935 +msgid "surprised" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Partners" +#: ../../include/text.php:1099 +msgid "Monday" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" +#: ../../include/text.php:1099 +msgid "Tuesday" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Common law" +#: ../../include/text.php:1099 +msgid "Wednesday" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Happy" +#: ../../include/text.php:1099 +msgid "Thursday" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" +#: ../../include/text.php:1099 +msgid "Friday" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" +#: ../../include/text.php:1099 +msgid "Saturday" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" +#: ../../include/text.php:1099 +msgid "Sunday" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" +#: ../../include/text.php:1103 +msgid "January" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" +#: ../../include/text.php:1103 +msgid "February" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" +#: ../../include/text.php:1103 +msgid "March" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" +#: ../../include/text.php:1103 +msgid "April" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" +#: ../../include/text.php:1103 +msgid "May" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" +#: ../../include/text.php:1103 +msgid "June" msgstr "" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" +#: ../../include/text.php:1103 +msgid "July" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" +#: ../../include/text.php:1103 +msgid "August" msgstr "" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" +#: ../../include/text.php:1103 +msgid "September" msgstr "" -#: ../../include/account.php:23 -msgid "Not a valid email address" +#: ../../include/text.php:1103 +msgid "October" msgstr "" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/text.php:1103 +msgid "November" msgstr "" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." +#: ../../include/text.php:1103 +msgid "December" msgstr "" -#: ../../include/account.php:64 -msgid "An invitation is required." +#: ../../include/text.php:1181 +msgid "unknown.???" msgstr "" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." +#: ../../include/text.php:1182 +msgid "bytes" msgstr "" -#: ../../include/account.php:119 -msgid "Please enter the required information." +#: ../../include/text.php:1221 +msgid "remove category" msgstr "" -#: ../../include/account.php:187 -msgid "Failed to store account information." +#: ../../include/text.php:1291 +msgid "remove from file" msgstr "" -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" +#: ../../include/text.php:1356 ../../include/text.php:1368 +msgid "Click to open/close" msgstr "" -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/text.php:1523 ../../mod/events.php:409 +msgid "Link to Source" msgstr "" -#: ../../include/account.php:486 -msgid "Account verified. Please login." +#: ../../include/text.php:1542 +msgid "Select a page layout: " msgstr "" -#: ../../include/account.php:647 ../../include/account.php:649 -msgid "Click here to upgrade." +#: ../../include/text.php:1545 ../../include/text.php:1610 +msgid "default" msgstr "" -#: ../../include/account.php:655 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/text.php:1581 +msgid "Page content type: " msgstr "" -#: ../../include/account.php:660 -msgid "This action is not available under your subscription plan." +#: ../../include/text.php:1622 +msgid "Select an alternate language" msgstr "" -#: ../../include/oembed.php:171 -msgid "Embedded content" +#: ../../include/text.php:1756 +msgid "activity" msgstr "" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" +#: ../../include/text.php:2028 +msgid "Design" msgstr "" -#: ../../include/zot.php:655 -msgid "Invalid data packet" +#: ../../include/text.php:2030 +msgid "Blocks" msgstr "" -#: ../../include/zot.php:671 -msgid "Unable to verify channel signature" +#: ../../include/text.php:2031 +msgid "Menus" msgstr "" -#: ../../include/zot.php:1757 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/text.php:2032 +msgid "Layouts" msgstr "" -#: ../../include/network.php:590 -msgid "view full size" +#: ../../include/text.php:2033 +msgid "Pages" msgstr "" -#: ../../include/dba/dba_driver.php:50 +#: ../../include/bookmarks.php:35 #, php-format -msgid "Cannot locate DNS info for database server '%s'" +msgid "%1$s's bookmarks" msgstr "" -#: ../../include/group.php:25 -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/taxonomy.php:210 +msgid "Tags" msgstr "" -#: ../../include/group.php:234 -msgid "Default privacy group for new contacts" +#: ../../include/taxonomy.php:227 +msgid "Keywords" msgstr "" -#: ../../include/group.php:253 ../../mod/admin.php:737 -msgid "All Channels" +#: ../../include/taxonomy.php:252 +msgid "have" msgstr "" -#: ../../include/group.php:275 -msgid "edit" +#: ../../include/taxonomy.php:252 +msgid "has" msgstr "" -#: ../../include/group.php:297 -msgid "Collections" +#: ../../include/taxonomy.php:253 +msgid "want" msgstr "" -#: ../../include/group.php:298 -msgid "Edit collection" +#: ../../include/taxonomy.php:253 +msgid "wants" msgstr "" -#: ../../include/group.php:299 -msgid "Create a new collection" +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:221 +msgid "like" msgstr "" -#: ../../include/group.php:300 -msgid "Channels not in any collection" +#: ../../include/taxonomy.php:254 +msgid "likes" msgstr "" -#: ../../include/group.php:302 ../../include/widgets.php:273 -msgid "add" +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:222 +msgid "dislike" msgstr "" -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." +#: ../../include/taxonomy.php:255 +msgid "dislikes" msgstr "" -#: ../../include/attach.php:331 -msgid "No source file." +#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 +msgid "Default" msgstr "" -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" msgstr "" -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" msgstr "" -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" msgstr "" -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/contact_selectors.php:59 +msgid "Daily" msgstr "" -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/contact_selectors.php:60 +msgid "Weekly" msgstr "" -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/contact_selectors.php:61 +msgid "Monthly" msgstr "" -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." +#: ../../include/contact_selectors.php:76 +msgid "Friendica" msgstr "" -#: ../../include/attach.php:589 -msgid "Empty pathname" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" msgstr "" -#: ../../include/attach.php:605 -msgid "duplicate filename or path" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" msgstr "" -#: ../../include/attach.php:629 -msgid "Path not found." +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:728 +#: ../../mod/admin.php:737 ../../boot.php:1498 +msgid "Email" msgstr "" -#: ../../include/attach.php:680 -msgid "mkdir failed." +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" msgstr "" -#: ../../include/attach.php:684 -msgid "database storage failed." +#: ../../include/contact_selectors.php:81 +msgid "Facebook" msgstr "" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:645 -#: ../../mod/photos.php:862 -msgid "Private Message" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" msgstr "" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:637 -msgid "Select" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" msgstr "" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" msgstr "" -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -msgid "View all" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" msgstr "" -#: ../../include/ItemObject.php:151 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:179 -msgid "Add Star" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 +msgid "Advanced" msgstr "" -#: ../../include/ItemObject.php:180 -msgid "Remove Star" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" msgstr "" -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" msgstr "" -#: ../../include/ItemObject.php:185 -msgid "starred" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" msgstr "" -#: ../../include/ItemObject.php:194 ../../include/conversation.php:652 -msgid "Message signature validated" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/ItemObject.php:195 ../../include/conversation.php:653 -msgid "Message signature incorrect" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 +#: ../../mod/directory.php:222 ../../mod/directory.php:227 +msgid "Find" msgstr "" -#: ../../include/ItemObject.php:203 -msgid "Add Tag" +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" msgstr "" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:992 -msgid "I like this (toggle)" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" msgstr "" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:993 -msgid "I don't like this (toggle)" +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" msgstr "" -#: ../../include/ItemObject.php:226 -msgid "Share This" +#: ../../include/contact_widgets.php:32 +msgid "Exammple: name=fred and country=iceland" msgstr "" -#: ../../include/ItemObject.php:226 -msgid "share" +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" msgstr "" -#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 +#: ../../include/contact_widgets.php:126 #, php-format -msgid "View %s's profile - %s" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:131 +msgid "show more" msgstr "" -#: ../../include/ItemObject.php:251 -msgid "to" +#: ../../include/event.php:11 ../../include/bb2diaspora.php:458 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/ItemObject.php:252 -msgid "via" +#: ../../include/event.php:20 ../../include/bb2diaspora.php:464 +msgid "Starts:" msgstr "" -#: ../../include/ItemObject.php:253 -msgid "Wall-to-Wall" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:472 +msgid "Finishes:" msgstr "" -#: ../../include/ItemObject.php:254 -msgid "via Wall-To-Wall:" +#: ../../include/event.php:326 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/ItemObject.php:265 ../../include/conversation.php:698 -#, php-format -msgid " from %s" +#: ../../include/account.php:23 +msgid "Not a valid email address" msgstr "" -#: ../../include/ItemObject.php:268 ../../include/conversation.php:701 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/ItemObject.php:269 ../../include/conversation.php:702 -#, php-format -msgid "Expires: %s" +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/ItemObject.php:290 -msgid "Save Bookmarks" +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/ItemObject.php:291 -msgid "Add to Calendar" +#: ../../include/account.php:64 +msgid "An invitation is required." msgstr "" -#: ../../include/ItemObject.php:299 -msgctxt "noun" -msgid "Likes" +#: ../../include/account.php:68 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/ItemObject.php:300 -msgctxt "noun" -msgid "Dislikes" +#: ../../include/account.php:119 +msgid "Please enter the required information." msgstr "" -#: ../../include/ItemObject.php:305 ../../include/acl_selectors.php:249 -msgid "Close" +#: ../../include/account.php:187 +msgid "Failed to store account information." msgstr "" -#: ../../include/ItemObject.php:310 ../../include/conversation.php:719 -#: ../../include/conversation.php:1153 ../../mod/photos.php:995 -#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 -#: ../../mod/mail.php:234 ../../mod/mail.php:349 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 -msgid "Please wait" +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/ItemObject.php:331 +#: ../../include/account.php:313 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:596 ../../mod/photos.php:1011 -#: ../../mod/photos.php:1098 -msgid "This is you" +msgid "Registration request at %s" msgstr "" -#: ../../include/ItemObject.php:600 -msgid "Bold" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" msgstr "" -#: ../../include/ItemObject.php:601 -msgid "Italic" +#: ../../include/account.php:337 +msgid "your registration password" msgstr "" -#: ../../include/ItemObject.php:602 -msgid "Underline" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/ItemObject.php:603 -msgid "Quote" +#: ../../include/account.php:406 +msgid "Account approved." msgstr "" -#: ../../include/ItemObject.php:604 -msgid "Code" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/ItemObject.php:605 -msgid "Image" +#: ../../include/account.php:486 +msgid "Account verified. Please login." msgstr "" -#: ../../include/ItemObject.php:606 -msgid "Link" +#: ../../include/account.php:647 ../../include/account.php:649 +msgid "Click here to upgrade." msgstr "" -#: ../../include/ItemObject.php:607 -msgid "Video" +#: ../../include/account.php:655 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/ItemObject.php:611 ../../include/conversation.php:1179 -#: ../../mod/editpost.php:148 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Encrypt text" +#: ../../include/account.php:660 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/security.php:320 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1495 +msgid "Logout" msgstr "" -#: ../../include/text.php:321 -msgid "prev" +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" msgstr "" -#: ../../include/text.php:323 -msgid "first" +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" msgstr "" -#: ../../include/text.php:352 -msgid "last" +#: ../../include/nav.php:98 +msgid "Your posts and conversations" msgstr "" -#: ../../include/text.php:355 -msgid "next" +#: ../../include/nav.php:99 +msgid "Your profile page" msgstr "" -#: ../../include/text.php:367 -msgid "older" +#: ../../include/nav.php:101 +msgid "Edit Profiles" msgstr "" -#: ../../include/text.php:369 -msgid "newer" +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/text.php:736 -msgid "No connections" +#: ../../include/nav.php:103 +msgid "Edit your profile" msgstr "" -#: ../../include/text.php:749 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:762 -msgid "View Connections" +#: ../../include/nav.php:105 +msgid "Your photos" msgstr "" -#: ../../include/text.php:822 ../../include/text.php:834 -#: ../../include/nav.php:173 ../../include/apps.php:145 -#: ../../mod/search.php:30 -msgid "Search" +#: ../../include/nav.php:106 +msgid "Your files" msgstr "" -#: ../../include/text.php:823 ../../include/text.php:835 -#: ../../include/widgets.php:193 ../../mod/admin.php:1341 -#: ../../mod/admin.php:1362 ../../mod/filer.php:50 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 -msgid "Save" +#: ../../include/nav.php:111 +msgid "Your chatrooms" msgstr "" -#: ../../include/text.php:901 -msgid "poke" +#: ../../include/nav.php:117 +msgid "Your bookmarks" msgstr "" -#: ../../include/text.php:901 ../../include/conversation.php:243 -msgid "poked" +#: ../../include/nav.php:121 +msgid "Your webpages" msgstr "" -#: ../../include/text.php:902 -msgid "ping" +#: ../../include/nav.php:125 +msgid "Sign in" msgstr "" -#: ../../include/text.php:902 -msgid "pinged" +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/text.php:903 -msgid "prod" +#: ../../include/nav.php:145 +msgid "Remote authentication" msgstr "" -#: ../../include/text.php:903 -msgid "prodded" +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/text.php:904 -msgid "slap" +#: ../../include/nav.php:159 +msgid "Home Page" msgstr "" -#: ../../include/text.php:904 -msgid "slapped" +#: ../../include/nav.php:163 ../../mod/register.php:220 ../../boot.php:1472 +msgid "Register" msgstr "" -#: ../../include/text.php:905 -msgid "finger" +#: ../../include/nav.php:163 +msgid "Create an account" msgstr "" -#: ../../include/text.php:905 -msgid "fingered" +#: ../../include/nav.php:168 +msgid "Help and documentation" msgstr "" -#: ../../include/text.php:906 -msgid "rebuff" +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/text.php:906 -msgid "rebuffed" +#: ../../include/nav.php:173 +msgid "Search site content" msgstr "" -#: ../../include/text.php:915 -msgid "happy" +#: ../../include/nav.php:176 +msgid "Channel Locator" msgstr "" -#: ../../include/text.php:916 -msgid "sad" +#: ../../include/nav.php:190 +msgid "Your matrix" msgstr "" -#: ../../include/text.php:917 -msgid "mellow" +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" msgstr "" -#: ../../include/text.php:918 -msgid "tired" +#: ../../include/nav.php:193 +msgid "Channel home" msgstr "" -#: ../../include/text.php:919 -msgid "perky" +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/text.php:920 -msgid "angry" +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" msgstr "" -#: ../../include/text.php:921 -msgid "stupified" +#: ../../include/nav.php:200 +msgid "Notices" msgstr "" -#: ../../include/text.php:922 -msgid "puzzled" +#: ../../include/nav.php:200 +msgid "Notifications" msgstr "" -#: ../../include/text.php:923 -msgid "interested" +#: ../../include/nav.php:201 +msgid "See all notifications" msgstr "" -#: ../../include/text.php:924 -msgid "bitter" +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" msgstr "" -#: ../../include/text.php:925 -msgid "cheerful" +#: ../../include/nav.php:204 +msgid "Private mail" msgstr "" -#: ../../include/text.php:926 -msgid "alive" +#: ../../include/nav.php:205 +msgid "See all private messages" msgstr "" -#: ../../include/text.php:927 -msgid "annoyed" +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/text.php:928 -msgid "anxious" +#: ../../include/nav.php:207 +msgid "Inbox" msgstr "" -#: ../../include/text.php:929 -msgid "cranky" +#: ../../include/nav.php:208 +msgid "Outbox" msgstr "" -#: ../../include/text.php:930 -msgid "disturbed" +#: ../../include/nav.php:212 +msgid "Event Calendar" msgstr "" -#: ../../include/text.php:931 -msgid "frustrated" +#: ../../include/nav.php:213 +msgid "See all events" msgstr "" -#: ../../include/text.php:932 -msgid "depressed" +#: ../../include/nav.php:214 +msgid "Mark all events seen" msgstr "" -#: ../../include/text.php:933 -msgid "motivated" +#: ../../include/nav.php:216 +msgid "Manage Your Channels" msgstr "" -#: ../../include/text.php:934 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:935 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1099 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1099 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1099 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1099 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1099 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1099 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1099 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "January" -msgstr "" - -#: ../../include/text.php:1103 -msgid "February" -msgstr "" - -#: ../../include/text.php:1103 -msgid "March" -msgstr "" - -#: ../../include/text.php:1103 -msgid "April" -msgstr "" - -#: ../../include/text.php:1103 -msgid "May" -msgstr "" - -#: ../../include/text.php:1103 -msgid "June" -msgstr "" - -#: ../../include/text.php:1103 -msgid "July" -msgstr "" - -#: ../../include/text.php:1103 -msgid "August" -msgstr "" - -#: ../../include/text.php:1103 -msgid "September" -msgstr "" - -#: ../../include/text.php:1103 -msgid "October" -msgstr "" - -#: ../../include/text.php:1103 -msgid "November" -msgstr "" - -#: ../../include/text.php:1103 -msgid "December" -msgstr "" - -#: ../../include/text.php:1181 -msgid "unknown.???" -msgstr "" - -#: ../../include/text.php:1182 -msgid "bytes" -msgstr "" - -#: ../../include/text.php:1221 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1291 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1356 ../../include/text.php:1368 -msgid "Click to open/close" -msgstr "" - -#: ../../include/text.php:1523 ../../mod/events.php:414 -msgid "Link to Source" -msgstr "" - -#: ../../include/text.php:1542 -msgid "Select a page layout: " -msgstr "" - -#: ../../include/text.php:1545 ../../include/text.php:1610 -msgid "default" -msgstr "" - -#: ../../include/text.php:1581 -msgid "Page content type: " -msgstr "" - -#: ../../include/text.php:1622 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/text.php:1743 ../../include/conversation.php:120 -#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:294 -msgid "photo" -msgstr "" - -#: ../../include/text.php:1746 ../../include/conversation.php:123 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "" - -#: ../../include/text.php:1749 ../../include/conversation.php:148 -#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:294 -msgid "status" -msgstr "" - -#: ../../include/text.php:1751 ../../include/conversation.php:150 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "" - -#: ../../include/text.php:1756 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2028 -msgid "Design" -msgstr "" - -#: ../../include/text.php:2030 -msgid "Blocks" +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/text.php:2031 -msgid "Menus" +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" msgstr "" -#: ../../include/text.php:2032 -msgid "Layouts" +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/text.php:2033 -msgid "Pages" +#: ../../include/nav.php:262 +msgid "Please wait..." msgstr "" #: ../../include/dir_fns.php:56 @@ -2400,43 +2229,8 @@ msgstr "" msgid "Safe Mode" msgstr "" -#: ../../include/bbcode.php:112 ../../include/bbcode.php:653 -#: ../../include/bbcode.php:656 ../../include/bbcode.php:661 -#: ../../include/bbcode.php:664 ../../include/bbcode.php:667 -#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 -#: ../../include/bbcode.php:678 ../../include/bbcode.php:683 -#: ../../include/bbcode.php:686 ../../include/bbcode.php:689 -#: ../../include/bbcode.php:692 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 -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:621 -msgid "$1 spoiler" -msgstr "" - -#: ../../include/bbcode.php:641 -msgid "$1 wrote:" +#: ../../include/bb2diaspora.php:379 +msgid "Attachments:" msgstr "" #: ../../include/enotify.php:41 @@ -2634,293 +2428,56 @@ msgstr "" msgid "[Red:Notify]" msgstr "" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" +#: ../../include/chat.php:10 +msgid "Missing room name" msgstr "" -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" +#: ../../include/chat.php:19 +msgid "Duplicate room name" msgstr "" -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." msgstr "" -#: ../../include/nav.php:98 -msgid "Your posts and conversations" +#: ../../include/chat.php:105 +msgid "Room not found." msgstr "" -#: ../../include/nav.php:99 ../../include/conversation.php:945 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:529 -msgid "View Profile" +#: ../../include/chat.php:126 +msgid "Room is full" msgstr "" -#: ../../include/nav.php:99 -msgid "Your profile page" +#: ../../include/features.php:23 +msgid "General Features" msgstr "" -#: ../../include/nav.php:101 -msgid "Edit Profiles" +#: ../../include/features.php:25 +msgid "Content Expiration" msgstr "" -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/nav.php:103 -msgid "Edit your profile" +#: ../../include/features.php:26 +msgid "Multiple Profiles" msgstr "" -#: ../../include/nav.php:105 ../../include/apps.php:137 -#: ../../include/conversation.php:1537 ../../mod/fbrowser.php:25 -msgid "Photos" +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/nav.php:105 -msgid "Your photos" +#: ../../include/features.php:27 +msgid "Advanced Profiles" msgstr "" -#: ../../include/nav.php:106 -msgid "Your files" +#: ../../include/features.php:27 +msgid "Additional profile sections and selections" msgstr "" -#: ../../include/nav.php:111 ../../include/apps.php:144 -msgid "Chat" -msgstr "" - -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:117 ../../include/apps.php:127 -#: ../../include/conversation.php:1570 -msgid "Bookmarks" -msgstr "" - -#: ../../include/nav.php:117 -msgid "Your bookmarks" -msgstr "" - -#: ../../include/nav.php:121 ../../include/apps.php:134 -#: ../../include/conversation.php:1581 ../../mod/webpages.php:129 -msgid "Webpages" -msgstr "" - -#: ../../include/nav.php:121 -msgid "Your webpages" -msgstr "" - -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:142 -#, php-format -msgid "%s - click to logout" -msgstr "" - -#: ../../include/nav.php:145 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:159 -msgid "Home Page" -msgstr "" - -#: ../../include/nav.php:163 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:60 -#: ../../mod/help.php:65 -msgid "Help" -msgstr "" - -#: ../../include/nav.php:168 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:171 ../../include/widgets.php:86 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "" - -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" -msgstr "" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "" - -#: ../../include/nav.php:176 ../../include/apps.php:139 -#: ../../mod/directory.php:226 -msgid "Directory" -msgstr "" - -#: ../../include/nav.php:176 -msgid "Channel Locator" -msgstr "" - -#: ../../include/nav.php:190 ../../include/apps.php:131 -msgid "Matrix" -msgstr "" - -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "" - -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -msgstr "" - -#: ../../include/nav.php:193 ../../include/apps.php:135 -msgid "Channel Home" -msgstr "" - -#: ../../include/nav.php:193 -msgid "Channel home" -msgstr "" - -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "" - -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "" - -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "" - -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:204 ../../include/apps.php:141 -msgid "Mail" -msgstr "" - -#: ../../include/nav.php:204 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:205 -msgid "See all private messages" -msgstr "" - -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:208 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:209 ../../include/widgets.php:545 -msgid "New Message" -msgstr "" - -#: ../../include/nav.php:212 ../../include/apps.php:138 -#: ../../mod/events.php:436 -msgid "Events" -msgstr "" - -#: ../../include/nav.php:212 -msgid "Event Calendar" -msgstr "" - -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "" - -#: ../../include/nav.php:214 -msgid "Mark all events seen" -msgstr "" - -#: ../../include/nav.php:216 ../../include/apps.php:130 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "" - -#: ../../include/nav.php:216 -msgid "Manage Your Channels" -msgstr "" - -#: ../../include/nav.php:218 ../../include/apps.php:132 -#: ../../include/widgets.php:521 ../../mod/admin.php:953 -#: ../../mod/admin.php:1158 -msgid "Settings" -msgstr "" - -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "" - -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:257 ../../include/conversation.php:847 -msgid "Loading..." -msgstr "" - -#: ../../include/nav.php:262 -msgid "Please wait..." -msgstr "" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "" - -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "" - -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "" - -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:27 -msgid "Advanced Profiles" -msgstr "" - -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" -msgstr "" - -#: ../../include/features.php:28 -msgid "Profile Import/Export" +#: ../../include/features.php:28 +msgid "Profile Import/Export" msgstr "" #: ../../include/features.php:28 @@ -2999,11 +2556,6 @@ msgstr "" msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:49 ../../include/widgets.php:510 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "" - #: ../../include/features.php:49 msgid "Automatically import channel content from other channels or feeds" msgstr "" @@ -3037,10 +2589,6 @@ msgstr "" msgid "Enable widget to display Network posts only from selected collections" msgstr "" -#: ../../include/features.php:58 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "" - #: ../../include/features.php:58 msgid "Save search terms for re-use" msgstr "" @@ -3133,2605 +2681,2609 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/notify.php:23 -msgid "created a new post" +#: ../../include/follow.php:26 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" +#: ../../include/follow.php:31 +msgid "Channel location missing." msgstr "" -#: ../../include/apps.php:126 -msgid "Site Admin" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/apps.php:128 -msgid "Address Book" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" +#: ../../include/follow.php:133 ../../include/follow.php:202 +msgid "Protocol disabled." msgstr "" -#: ../../include/apps.php:143 ../../include/conversation.php:951 -msgid "Poke" +#: ../../include/follow.php:176 +msgid "Channel discovery failed." msgstr "" -#: ../../include/apps.php:146 -msgid "Probe" +#: ../../include/follow.php:192 +msgid "local account not found." msgstr "" -#: ../../include/apps.php:147 -msgid "Suggest" +#: ../../include/follow.php:219 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "" +#: ../../include/group.php:25 +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/apps.php:149 -msgid "Invite" +#: ../../include/group.php:234 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/apps.php:150 -msgid "Features" +#: ../../include/group.php:253 ../../mod/admin.php:737 +msgid "All Channels" msgstr "" -#: ../../include/apps.php:151 -msgid "Language" +#: ../../include/group.php:275 +msgid "edit" msgstr "" -#: ../../include/apps.php:152 -msgid "Post" +#: ../../include/group.php:297 +msgid "Collections" msgstr "" -#: ../../include/apps.php:153 -msgid "Profile Photo" +#: ../../include/group.php:298 +msgid "Edit collection" msgstr "" -#: ../../include/apps.php:242 ../../mod/settings.php:79 -#: ../../mod/settings.php:545 -msgid "Update" +#: ../../include/group.php:299 +msgid "Create a new collection" msgstr "" -#: ../../include/apps.php:242 -msgid "Install" +#: ../../include/group.php:300 +msgid "Channels not in any collection" msgstr "" -#: ../../include/apps.php:247 -msgid "Purchase" +#: ../../include/bbcode.php:112 ../../include/bbcode.php:653 +#: ../../include/bbcode.php:656 ../../include/bbcode.php:661 +#: ../../include/bbcode.php:664 ../../include/bbcode.php:667 +#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 +#: ../../include/bbcode.php:678 ../../include/bbcode.php:683 +#: ../../include/bbcode.php:686 ../../include/bbcode.php:689 +#: ../../include/bbcode.php:692 +msgid "Image/photo" msgstr "" -#: ../../include/api.php:1072 -msgid "Public Timeline" +#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" msgstr "" -#: ../../include/chat.php:10 -msgid "Missing room name" +#: ../../include/bbcode.php:165 +msgid "Install design element: " msgstr "" -#: ../../include/chat.php:19 -msgid "Duplicate room name" +#: ../../include/bbcode.php:171 +msgid "QR code" msgstr "" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." +#: ../../include/bbcode.php:220 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/chat.php:105 -msgid "Room not found." +#: ../../include/bbcode.php:222 +msgid "post" msgstr "" -#: ../../include/chat.php:126 -msgid "Room is full" +#: ../../include/bbcode.php:621 +msgid "$1 spoiler" msgstr "" -#: ../../include/conversation.php:126 ../../mod/like.php:89 -msgid "channel" +#: ../../include/bbcode.php:641 +msgid "$1 wrote:" msgstr "" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1953 -#: ../../mod/like.php:331 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../include/RedDAV/RedBrowser.php:106 +#: ../../include/RedDAV/RedBrowser.php:249 +msgid "parent" msgstr "" -#: ../../include/conversation.php:167 ../../mod/like.php:333 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../include/RedDAV/RedBrowser.php:130 +msgid "Collection" msgstr "" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../include/RedDAV/RedBrowser.php:133 +msgid "Principal" msgstr "" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/RedDAV/RedBrowser.php:136 +msgid "Addressbook" msgstr "" -#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#: ../../include/RedDAV/RedBrowser.php:139 +msgid "Calendar" +msgstr "" + +#: ../../include/RedDAV/RedBrowser.php:142 +msgid "Schedule Inbox" +msgstr "" + +#: ../../include/RedDAV/RedBrowser.php:145 +msgid "Schedule Outbox" +msgstr "" + +#: ../../include/RedDAV/RedBrowser.php:223 #, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +msgid "%1$s used" msgstr "" -#: ../../include/conversation.php:674 +#: ../../include/RedDAV/RedBrowser.php:228 #, php-format -msgid "View %s's profile @ %s" +msgid "%1$s used of %2$s (%3$s%)" msgstr "" -#: ../../include/conversation.php:689 -msgid "Categories:" +#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:521 +#: ../../mod/settings.php:547 ../../mod/admin.php:868 +msgid "Name" msgstr "" -#: ../../include/conversation.php:690 -msgid "Filed under:" +#: ../../include/RedDAV/RedBrowser.php:246 +msgid "Type" msgstr "" -#: ../../include/conversation.php:717 -msgid "View in context" +#: ../../include/RedDAV/RedBrowser.php:247 +msgid "Size" msgstr "" -#: ../../include/conversation.php:843 -msgid "remove" +#: ../../include/RedDAV/RedBrowser.php:248 +msgid "Last Modified" msgstr "" -#: ../../include/conversation.php:848 -msgid "Delete Selected Items" +#: ../../include/RedDAV/RedBrowser.php:252 +msgid "Total" msgstr "" -#: ../../include/conversation.php:942 -msgid "View Source" +#: ../../include/RedDAV/RedBrowser.php:305 +msgid "Create new folder" msgstr "" -#: ../../include/conversation.php:943 -msgid "Follow Thread" +#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:142 +#: ../../mod/menu.php:84 ../../mod/new_channel.php:122 +msgid "Create" msgstr "" -#: ../../include/conversation.php:944 -msgid "View Status" +#: ../../include/RedDAV/RedBrowser.php:307 +msgid "Upload file" msgstr "" -#: ../../include/conversation.php:946 -msgid "View Photos" +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:745 +#: ../../mod/photos.php:1226 ../../mod/profile_photo.php:361 +msgid "Upload" msgstr "" -#: ../../include/conversation.php:947 -msgid "Matrix Activity" +#: ../../include/message.php:18 +msgid "No recipient provided." msgstr "" -#: ../../include/conversation.php:949 -msgid "Edit Contact" +#: ../../include/message.php:23 +msgid "[no subject]" msgstr "" -#: ../../include/conversation.php:950 -msgid "Send PM" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../include/conversation.php:1024 -#, php-format -msgid "%s likes this." +#: ../../include/message.php:200 +msgid "Stored post could not be verified." msgstr "" -#: ../../include/conversation.php:1024 -#, php-format -msgid "%s doesn't like this." +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" msgstr "" -#: ../../include/conversation.php:1028 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +msgid "View all" +msgstr "" -#: ../../include/conversation.php:1030 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." +#: ../../include/ItemObject.php:151 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1036 -msgid "and" +#: ../../include/ItemObject.php:179 +msgid "Add Star" msgstr "" -#: ../../include/conversation.php:1039 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1040 -#, php-format -msgid "%s like this." +#: ../../include/ItemObject.php:180 +msgid "Remove Star" msgstr "" -#: ../../include/conversation.php:1040 -#, php-format -msgid "%s don't like this." +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" msgstr "" -#: ../../include/conversation.php:1097 -msgid "Visible to everybody" +#: ../../include/ItemObject.php:185 +msgid "starred" msgstr "" -#: ../../include/conversation.php:1098 ../../mod/mail.php:170 -#: ../../mod/mail.php:282 -msgid "Please enter a link URL:" +#: ../../include/ItemObject.php:203 +msgid "Add Tag" msgstr "" -#: ../../include/conversation.php:1099 -msgid "Please enter a video link/URL:" +#: ../../include/ItemObject.php:221 ../../mod/photos.php:990 +msgid "I like this (toggle)" msgstr "" -#: ../../include/conversation.php:1100 -msgid "Please enter an audio link/URL:" +#: ../../include/ItemObject.php:222 ../../mod/photos.php:991 +msgid "I don't like this (toggle)" msgstr "" -#: ../../include/conversation.php:1101 -msgid "Tag term:" +#: ../../include/ItemObject.php:226 +msgid "Share This" msgstr "" -#: ../../include/conversation.php:1102 ../../mod/filer.php:49 -msgid "Save to Folder:" +#: ../../include/ItemObject.php:226 +msgid "share" msgstr "" -#: ../../include/conversation.php:1103 -msgid "Where are you right now?" +#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 +#, php-format +msgid "View %s's profile - %s" msgstr "" -#: ../../include/conversation.php:1104 ../../mod/editpost.php:52 -#: ../../mod/mail.php:171 ../../mod/mail.php:283 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../include/ItemObject.php:251 +msgid "to" msgstr "" -#: ../../include/conversation.php:1128 ../../mod/photos.php:994 -#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 -#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 -msgid "Share" +#: ../../include/ItemObject.php:252 +msgid "via" msgstr "" -#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:139 -msgid "Page link title" +#: ../../include/ItemObject.php:253 +msgid "Wall-to-Wall" msgstr "" -#: ../../include/conversation.php:1133 -msgid "Post as" +#: ../../include/ItemObject.php:254 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../include/conversation.php:1134 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:231 ../../mod/mail.php:345 -#: ../../mod/editblock.php:112 ../../mod/editlayout.php:107 -msgid "Upload photo" +#: ../../include/ItemObject.php:290 +msgid "Save Bookmarks" msgstr "" -#: ../../include/conversation.php:1135 -msgid "upload photo" +#: ../../include/ItemObject.php:291 +msgid "Add to Calendar" msgstr "" -#: ../../include/conversation.php:1136 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:232 ../../mod/mail.php:346 -#: ../../mod/editblock.php:113 ../../mod/editlayout.php:108 -msgid "Attach file" +#: ../../include/ItemObject.php:299 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../include/conversation.php:1137 -msgid "attach file" +#: ../../include/ItemObject.php:300 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../include/conversation.php:1138 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:233 ../../mod/mail.php:347 -#: ../../mod/editblock.php:114 ../../mod/editlayout.php:109 -msgid "Insert web link" +#: ../../include/ItemObject.php:331 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:332 ../../include/js_strings.php:7 +msgid "[+] show all" msgstr "" -#: ../../include/conversation.php:1139 -msgid "web link" +#: ../../include/ItemObject.php:596 ../../mod/photos.php:1009 +#: ../../mod/photos.php:1096 +msgid "This is you" msgstr "" -#: ../../include/conversation.php:1140 -msgid "Insert video link" +#: ../../include/ItemObject.php:598 ../../include/js_strings.php:6 +#: ../../mod/photos.php:1011 ../../mod/photos.php:1098 +msgid "Comment" msgstr "" -#: ../../include/conversation.php:1141 -msgid "video link" +#: ../../include/ItemObject.php:599 ../../mod/mood.php:135 +#: ../../mod/photos.php:563 ../../mod/photos.php:672 ../../mod/photos.php:972 +#: ../../mod/photos.php:1012 ../../mod/photos.php:1099 +#: ../../mod/settings.php:519 ../../mod/settings.php:631 +#: ../../mod/settings.php:660 ../../mod/settings.php:684 +#: ../../mod/settings.php:760 ../../mod/settings.php:945 +#: ../../mod/poke.php:166 ../../mod/profiles.php:615 ../../mod/events.php:587 +#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/connect.php:92 +#: ../../mod/connedit.php:540 ../../mod/setup.php:307 ../../mod/setup.php:350 +#: ../../mod/pdledit.php:58 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:146 +#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:414 +#: ../../mod/admin.php:725 ../../mod/admin.php:861 ../../mod/admin.php:994 +#: ../../mod/admin.php:1193 ../../mod/admin.php:1280 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/import.php:480 ../../mod/invite.php:142 +#: ../../mod/mail.php:348 ../../mod/appman.php:99 ../../mod/poll.php:68 +#: ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/blogga/php/config.php:67 +#: ../../view/theme/blogga/view/theme/blog/config.php:67 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" msgstr "" -#: ../../include/conversation.php:1142 -msgid "Insert audio link" +#: ../../include/ItemObject.php:600 +msgid "Bold" msgstr "" -#: ../../include/conversation.php:1143 -msgid "audio link" +#: ../../include/ItemObject.php:601 +msgid "Italic" msgstr "" -#: ../../include/conversation.php:1144 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 -msgid "Set your location" +#: ../../include/ItemObject.php:602 +msgid "Underline" msgstr "" -#: ../../include/conversation.php:1145 -msgid "set location" +#: ../../include/ItemObject.php:603 +msgid "Quote" msgstr "" -#: ../../include/conversation.php:1146 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 -msgid "Clear browser location" +#: ../../include/ItemObject.php:604 +msgid "Code" msgstr "" -#: ../../include/conversation.php:1147 -msgid "clear location" +#: ../../include/ItemObject.php:605 +msgid "Image" msgstr "" -#: ../../include/conversation.php:1149 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 -msgid "Set title" +#: ../../include/ItemObject.php:606 +msgid "Link" msgstr "" -#: ../../include/conversation.php:1152 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 ../../mod/events.php:560 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 -msgid "Categories (comma-separated list)" +#: ../../include/ItemObject.php:607 +msgid "Video" msgstr "" -#: ../../include/conversation.php:1154 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 -msgid "Permission settings" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../include/conversation.php:1155 -msgid "permissions" +#: ../../include/js_strings.php:8 +msgid "[-] show less" msgstr "" -#: ../../include/conversation.php:1162 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 -msgid "Public post" +#: ../../include/js_strings.php:9 +msgid "[+] expand" msgstr "" -#: ../../include/conversation.php:1164 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 -msgid "Example: bob@example.com, mary@example.com" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" msgstr "" -#: ../../include/conversation.php:1177 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:179 ../../mod/mail.php:238 ../../mod/mail.php:352 -#: ../../mod/editblock.php:146 ../../mod/editlayout.php:140 -msgid "Set expiration date" +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../include/conversation.php:1181 ../../mod/editpost.php:150 -#: ../../mod/events.php:567 -msgid "OK" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../include/conversation.php:1182 ../../mod/settings.php:520 -#: ../../mod/settings.php:546 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:151 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/events.php:566 -msgid "Cancel" +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" msgstr "" -#: ../../include/conversation.php:1426 -msgid "Discover" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../include/conversation.php:1429 -msgid "Imported public streams" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../include/conversation.php:1434 -msgid "Commented Order" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../include/conversation.php:1437 -msgid "Sort by Comment Date" +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../include/conversation.php:1441 -msgid "Posted Order" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../include/conversation.php:1444 -msgid "Sort by Post Date" +#: ../../include/js_strings.php:20 +msgid "timeago.prefixAgo" msgstr "" -#: ../../include/conversation.php:1449 ../../include/widgets.php:89 -msgid "Personal" +#: ../../include/js_strings.php:21 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../include/conversation.php:1452 -msgid "Posts that mention or involve you" +#: ../../include/js_strings.php:22 +msgid "ago" msgstr "" -#: ../../include/conversation.php:1458 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 -msgid "New" +#: ../../include/js_strings.php:23 +msgid "from now" msgstr "" -#: ../../include/conversation.php:1461 -msgid "Activity Stream - by date" +#: ../../include/js_strings.php:24 +msgid "less than a minute" msgstr "" -#: ../../include/conversation.php:1467 -msgid "Starred" +#: ../../include/js_strings.php:25 +msgid "about a minute" msgstr "" -#: ../../include/conversation.php:1470 -msgid "Favourite Posts" +#: ../../include/js_strings.php:26 +#, php-format +msgid "%d minutes" msgstr "" -#: ../../include/conversation.php:1477 -msgid "Spam" +#: ../../include/js_strings.php:27 +msgid "about an hour" msgstr "" -#: ../../include/conversation.php:1480 -msgid "Posts flagged as SPAM" +#: ../../include/js_strings.php:28 +#, php-format +msgid "about %d hours" msgstr "" -#: ../../include/conversation.php:1516 ../../mod/admin.php:867 -msgid "Channel" +#: ../../include/js_strings.php:29 +msgid "a day" msgstr "" -#: ../../include/conversation.php:1519 -msgid "Status Messages and Posts" +#: ../../include/js_strings.php:30 +#, php-format +msgid "%d days" msgstr "" -#: ../../include/conversation.php:1528 -msgid "About" +#: ../../include/js_strings.php:31 +msgid "about a month" msgstr "" -#: ../../include/conversation.php:1531 -msgid "Profile Details" +#: ../../include/js_strings.php:32 +#, php-format +msgid "%d months" msgstr "" -#: ../../include/conversation.php:1549 -msgid "Files and Storage" +#: ../../include/js_strings.php:33 +msgid "about a year" msgstr "" -#: ../../include/conversation.php:1558 ../../include/conversation.php:1561 -msgid "Chatrooms" +#: ../../include/js_strings.php:34 +#, php-format +msgid "%d years" msgstr "" -#: ../../include/conversation.php:1573 -msgid "Saved Bookmarks" +#: ../../include/js_strings.php:35 +msgid " " msgstr "" -#: ../../include/conversation.php:1584 -msgid "Manage Webpages" +#: ../../include/js_strings.php:36 +msgid "timeago.numbers" msgstr "" -#: ../../include/bb2diaspora.php:360 -msgid "Attachments:" +#: ../../include/Contact.php:123 +msgid "New window" msgstr "" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/acl_selectors.php:241 -msgid "Show" +#: ../../include/Contact.php:211 ../../mod/admin.php:649 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/acl_selectors.php:242 -msgid "Don't show" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" msgstr "" -#: ../../include/acl_selectors.php:248 ../../mod/filestorage.php:137 -#: ../../mod/photos.php:604 ../../mod/photos.php:970 ../../mod/chat.php:209 -#: ../../mod/events.php:585 -msgid "Permissions" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" msgstr "" -#: ../../include/widgets.php:87 -msgid "System" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" msgstr "" -#: ../../include/widgets.php:90 -msgid "Create Personal App" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" msgstr "" -#: ../../include/widgets.php:91 -msgid "Edit Personal App" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" msgstr "" -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" msgstr "" -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" msgstr "" -#: ../../include/widgets.php:144 -msgid "See more..." +#: ../../include/profile_selectors.php:6 +msgid "Intersex" msgstr "" -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" msgstr "" -#: ../../include/widgets.php:172 -msgid "Add New Connection" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" msgstr "" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" msgstr "" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" msgstr "" -#: ../../include/widgets.php:191 -msgid "Notes" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 ../../include/permissions.php:746 +msgid "Other" msgstr "" -#: ../../include/widgets.php:263 -msgid "Remove term" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" msgstr "" -#: ../../include/widgets.php:342 -msgid "Archives" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" msgstr "" -#: ../../include/widgets.php:404 -msgid "Refresh" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" msgstr "" -#: ../../include/widgets.php:405 ../../mod/connedit.php:492 -msgid "Me" +#: ../../include/profile_selectors.php:42 +msgid "Gay" msgstr "" -#: ../../include/widgets.php:406 ../../mod/connedit.php:494 -msgid "Best Friends" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" msgstr "" -#: ../../include/widgets.php:408 -msgid "Co-workers" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" msgstr "" -#: ../../include/widgets.php:409 ../../mod/connedit.php:496 -msgid "Former Friends" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" msgstr "" -#: ../../include/widgets.php:410 ../../mod/connedit.php:497 -msgid "Acquaintances" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" msgstr "" -#: ../../include/widgets.php:411 -msgid "Everybody" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" msgstr "" -#: ../../include/widgets.php:443 -msgid "Account settings" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" msgstr "" -#: ../../include/widgets.php:449 -msgid "Channel settings" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" msgstr "" -#: ../../include/widgets.php:455 -msgid "Additional features" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" msgstr "" -#: ../../include/widgets.php:461 -msgid "Feature settings" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" msgstr "" -#: ../../include/widgets.php:467 -msgid "Display settings" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" msgstr "" -#: ../../include/widgets.php:473 -msgid "Connected apps" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" msgstr "" -#: ../../include/widgets.php:479 -msgid "Export channel" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" msgstr "" -#: ../../include/widgets.php:485 -msgid "Export content" +#: ../../include/profile_selectors.php:80 +msgid "Available" msgstr "" -#: ../../include/widgets.php:491 -msgid "Automatic Permissions (Advanced)" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" msgstr "" -#: ../../include/widgets.php:501 -msgid "Premium Channel Settings" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" msgstr "" -#: ../../include/widgets.php:535 ../../mod/message.php:31 -#: ../../mod/mail.php:124 -msgid "Messages" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" msgstr "" -#: ../../include/widgets.php:540 -msgid "Check Mail" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" msgstr "" -#: ../../include/widgets.php:621 -msgid "Chat Rooms" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" msgstr "" -#: ../../include/widgets.php:639 -msgid "Bookmarked Chatrooms" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" msgstr "" -#: ../../include/widgets.php:657 -msgid "Suggested Chatrooms" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" msgstr "" -#: ../../include/follow.php:26 -msgid "Channel is blocked on this site." +#: ../../include/profile_selectors.php:80 +msgid "Casual" msgstr "" -#: ../../include/follow.php:31 -msgid "Channel location missing." +#: ../../include/profile_selectors.php:80 +msgid "Engaged" msgstr "" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" msgstr "" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" msgstr "" -#: ../../include/follow.php:133 ../../include/follow.php:202 -msgid "Protocol disabled." +#: ../../include/profile_selectors.php:80 +msgid "Partners" msgstr "" -#: ../../include/follow.php:176 -msgid "Channel discovery failed." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" msgstr "" -#: ../../include/follow.php:192 -msgid "local account not found." +#: ../../include/profile_selectors.php:80 +msgid "Common law" msgstr "" -#: ../../include/follow.php:219 -msgid "Cannot connect to yourself." +#: ../../include/profile_selectors.php:80 +msgid "Happy" msgstr "" -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +#: ../../include/profile_selectors.php:80 +msgid "Not looking" msgstr "" -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." +#: ../../include/profile_selectors.php:80 +msgid "Swinger" msgstr "" -#: ../../mod/settings.php:71 -msgid "Name is required" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" msgstr "" -#: ../../mod/settings.php:75 -msgid "Key and Secret are required" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" msgstr "" -#: ../../mod/settings.php:198 -msgid "Passwords do not match. Password unchanged." +#: ../../include/profile_selectors.php:80 +msgid "Unstable" msgstr "" -#: ../../mod/settings.php:202 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" msgstr "" -#: ../../mod/settings.php:216 -msgid "Password changed." +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" msgstr "" -#: ../../mod/settings.php:218 -msgid "Password update failed. Please try again." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" msgstr "" -#: ../../mod/settings.php:232 -msgid "Not valid email." +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" msgstr "" -#: ../../mod/settings.php:235 -msgid "Protected email address. Cannot change to that email." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" msgstr "" -#: ../../mod/settings.php:244 -msgid "System failure storing new email. Please try again." +#: ../../include/profile_selectors.php:80 +msgid "Don't care" msgstr "" -#: ../../mod/settings.php:447 -msgid "Settings updated." +#: ../../include/profile_selectors.php:80 +msgid "Ask me" msgstr "" -#: ../../mod/settings.php:518 ../../mod/settings.php:544 -#: ../../mod/settings.php:580 -msgid "Add application" +#: ../../include/permissions.php:13 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../mod/settings.php:521 -msgid "Name of application" +#: ../../include/permissions.php:14 +msgid "Can view my default channel profile" msgstr "" -#: ../../mod/settings.php:522 ../../mod/settings.php:548 -msgid "Consumer Key" +#: ../../include/permissions.php:15 +msgid "Can view my photo albums" msgstr "" -#: ../../mod/settings.php:522 ../../mod/settings.php:523 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../include/permissions.php:16 +msgid "Can view my connections" msgstr "" -#: ../../mod/settings.php:523 ../../mod/settings.php:549 -msgid "Consumer Secret" +#: ../../include/permissions.php:17 +msgid "Can view my file storage" msgstr "" -#: ../../mod/settings.php:524 ../../mod/settings.php:550 -msgid "Redirect" +#: ../../include/permissions.php:18 +msgid "Can view my webpages" msgstr "" -#: ../../mod/settings.php:524 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../mod/settings.php:525 ../../mod/settings.php:551 -msgid "Icon url" +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../mod/settings.php:525 -msgid "Optional" +#: ../../include/permissions.php:23 +msgid "Can comment on or like my posts" msgstr "" -#: ../../mod/settings.php:536 -msgid "You can't edit this application." +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" msgstr "" -#: ../../mod/settings.php:579 -msgid "Connected Apps" +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" msgstr "" -#: ../../mod/settings.php:583 -msgid "Client key starts with" +#: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" msgstr "" -#: ../../mod/settings.php:584 -msgid "No name" +#: ../../include/permissions.php:26 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../mod/settings.php:585 -msgid "Remove authorization" +#: ../../include/permissions.php:28 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../mod/settings.php:596 -msgid "No feature settings configured" +#: ../../include/permissions.php:28 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../mod/settings.php:604 -msgid "Feature Settings" +#: ../../include/permissions.php:29 +msgid "Can chat with me (when available)" msgstr "" -#: ../../mod/settings.php:627 -msgid "Account Settings" +#: ../../include/permissions.php:30 +msgid "Can write to my file storage" msgstr "" -#: ../../mod/settings.php:628 -msgid "Password Settings" +#: ../../include/permissions.php:31 +msgid "Can edit my webpages" msgstr "" -#: ../../mod/settings.php:629 -msgid "New Password:" +#: ../../include/permissions.php:33 +msgid "Can source my public posts in derived channels" msgstr "" -#: ../../mod/settings.php:630 -msgid "Confirm:" +#: ../../include/permissions.php:33 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../mod/settings.php:630 -msgid "Leave password fields blank unless changing" +#: ../../include/permissions.php:35 +msgid "Can administer my channel resources" msgstr "" -#: ../../mod/settings.php:632 ../../mod/settings.php:954 -msgid "Email Address:" +#: ../../include/permissions.php:35 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../mod/settings.php:633 ../../mod/removeaccount.php:61 -msgid "Remove Account" +#: ../../include/permissions.php:738 +msgid "Social Networking" msgstr "" -#: ../../mod/settings.php:634 -msgid "Remove this account from this server including all its channels" +#: ../../include/permissions.php:739 ../../include/permissions.php:741 +#: ../../include/permissions.php:743 ../../include/permissions.php:745 +msgid "Mostly Public" msgstr "" -#: ../../mod/settings.php:635 ../../mod/settings.php:1019 -msgid "Warning: This action is permanent and cannot be reversed." +#: ../../include/permissions.php:739 ../../include/permissions.php:741 +#: ../../include/permissions.php:743 +msgid "Restricted" msgstr "" -#: ../../mod/settings.php:651 -msgid "Off" +#: ../../include/permissions.php:739 ../../include/permissions.php:741 +msgid "Private" msgstr "" -#: ../../mod/settings.php:651 -msgid "On" +#: ../../include/permissions.php:740 +msgid "Community Forum" msgstr "" -#: ../../mod/settings.php:658 -msgid "Additional Features" +#: ../../include/permissions.php:742 +msgid "Feed Republish" msgstr "" -#: ../../mod/settings.php:683 -msgid "Connector Settings" +#: ../../include/permissions.php:744 +msgid "Celebrity/Soapbox" msgstr "" -#: ../../mod/settings.php:713 ../../mod/admin.php:362 -msgid "No special theme for mobile devices" +#: ../../include/permissions.php:747 +msgid "Custom/Expert Mode" msgstr "" -#: ../../mod/settings.php:722 -#, php-format -msgid "%s - (Experimental)" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" msgstr "" -#: ../../mod/settings.php:758 -msgid "Display Settings" +#: ../../include/datetime.php:238 +msgid "never" msgstr "" -#: ../../mod/settings.php:764 -msgid "Display Theme:" +#: ../../include/datetime.php:244 +msgid "less than a second ago" msgstr "" -#: ../../mod/settings.php:765 -msgid "Mobile Theme:" +#: ../../include/datetime.php:247 +msgid "year" msgstr "" -#: ../../mod/settings.php:766 -msgid "Enable user zoom on mobile devices" +#: ../../include/datetime.php:247 +msgid "years" msgstr "" -#: ../../mod/settings.php:767 -msgid "Update browser every xx seconds" +#: ../../include/datetime.php:248 +msgid "month" msgstr "" -#: ../../mod/settings.php:767 -msgid "Minimum of 10 seconds, no maximum" +#: ../../include/datetime.php:248 +msgid "months" msgstr "" -#: ../../mod/settings.php:768 -msgid "Maximum number of conversations to load at any time:" +#: ../../include/datetime.php:249 +msgid "week" msgstr "" -#: ../../mod/settings.php:768 -msgid "Maximum of 100 items" +#: ../../include/datetime.php:249 +msgid "weeks" msgstr "" -#: ../../mod/settings.php:769 -msgid "Don't show emoticons" +#: ../../include/datetime.php:250 +msgid "day" msgstr "" -#: ../../mod/settings.php:770 -msgid "Link post titles to source" +#: ../../include/datetime.php:250 +msgid "days" msgstr "" -#: ../../mod/settings.php:771 -msgid "System Page Layout Editor - (advanced)" +#: ../../include/datetime.php:251 +msgid "hour" msgstr "" -#: ../../mod/settings.php:807 -msgid "Nobody except yourself" +#: ../../include/datetime.php:251 +msgid "hours" msgstr "" -#: ../../mod/settings.php:808 -msgid "Only those you specifically allow" +#: ../../include/datetime.php:252 +msgid "minute" msgstr "" -#: ../../mod/settings.php:809 -msgid "Approved connections" +#: ../../include/datetime.php:252 +msgid "minutes" msgstr "" -#: ../../mod/settings.php:810 -msgid "Any connections" +#: ../../include/datetime.php:253 +msgid "second" msgstr "" -#: ../../mod/settings.php:811 -msgid "Anybody on this website" +#: ../../include/datetime.php:253 +msgid "seconds" msgstr "" -#: ../../mod/settings.php:812 -msgid "Anybody in this network" +#: ../../include/datetime.php:262 +#, php-format +msgid "%1$d %2$s ago" msgstr "" -#: ../../mod/settings.php:813 -msgid "Anybody authenticated" +#: ../../include/datetime.php:467 +#, php-format +msgid "%1$s's birthday" msgstr "" -#: ../../mod/settings.php:814 -msgid "Anybody on the internet" +#: ../../include/datetime.php:468 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../mod/settings.php:891 -msgid "Publish your default profile in the network directory" +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../mod/settings.php:891 ../../mod/settings.php:896 -#: ../../mod/settings.php:973 ../../mod/admin.php:392 -#: ../../mod/profiles.php:602 ../../mod/api.php:106 -msgid "No" +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../mod/settings.php:891 ../../mod/settings.php:896 -#: ../../mod/settings.php:973 ../../mod/admin.php:394 -#: ../../mod/profiles.php:601 ../../mod/api.php:105 -msgid "Yes" +#: ../../mod/photos.php:97 +msgid "Album not found." msgstr "" -#: ../../mod/settings.php:896 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../mod/photos.php:119 ../../mod/photos.php:673 +msgid "Delete Album" msgstr "" -#: ../../mod/settings.php:900 ../../mod/profile_photo.php:365 -msgid "or" +#: ../../mod/photos.php:159 ../../mod/photos.php:973 +msgid "Delete Photo" msgstr "" -#: ../../mod/settings.php:905 -msgid "Your channel address is" +#: ../../mod/photos.php:443 ../../mod/search.php:13 ../../mod/directory.php:15 +#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." msgstr "" -#: ../../mod/settings.php:943 -msgid "Channel Settings" +#: ../../mod/photos.php:453 +msgid "No photos selected" msgstr "" -#: ../../mod/settings.php:952 -msgid "Basic Settings" +#: ../../mod/photos.php:500 +msgid "Access to this item is restricted." msgstr "" -#: ../../mod/settings.php:955 -msgid "Your Timezone:" +#: ../../mod/photos.php:574 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "" -#: ../../mod/settings.php:956 -msgid "Default Post Location:" +#: ../../mod/photos.php:577 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." msgstr "" -#: ../../mod/settings.php:956 -msgid "Geographical location to display on your posts" +#: ../../mod/photos.php:596 +msgid "Upload Photos" msgstr "" -#: ../../mod/settings.php:957 -msgid "Use Browser Location:" +#: ../../mod/photos.php:600 ../../mod/photos.php:668 +msgid "New album name: " msgstr "" -#: ../../mod/settings.php:959 -msgid "Adult Content" +#: ../../mod/photos.php:601 +msgid "or existing album name: " msgstr "" -#: ../../mod/settings.php:959 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +#: ../../mod/photos.php:602 +msgid "Do not show a status post for this upload" msgstr "" -#: ../../mod/settings.php:961 -msgid "Security and Privacy Settings" +#: ../../mod/photos.php:622 +msgid "Album name could not be decoded" msgstr "" -#: ../../mod/settings.php:963 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../mod/photos.php:657 ../../mod/photos.php:679 ../../mod/photos.php:1148 +#: ../../mod/photos.php:1163 +msgid "Contact Photos" msgstr "" -#: ../../mod/settings.php:965 -msgid "Hide my online presence" +#: ../../mod/photos.php:681 +msgid "Edit Album" msgstr "" -#: ../../mod/settings.php:965 -msgid "Prevents displaying in your profile that you are online" +#: ../../mod/photos.php:687 +msgid "Show Newest First" msgstr "" -#: ../../mod/settings.php:967 -msgid "Simple Privacy Settings:" +#: ../../mod/photos.php:689 +msgid "Show Oldest First" msgstr "" -#: ../../mod/settings.php:968 -msgid "" -"Very Public - extremely permissive (should be used with caution)" +#: ../../mod/photos.php:716 ../../mod/photos.php:1195 +msgid "View Photo" msgstr "" -#: ../../mod/settings.php:969 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +#: ../../mod/photos.php:794 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/settings.php:970 -msgid "Private - default private, never open or public" +#: ../../mod/photos.php:796 +msgid "Photo not available" msgstr "" -#: ../../mod/settings.php:971 -msgid "Blocked - default blocked to/from everybody" +#: ../../mod/photos.php:856 +msgid "Use as profile photo" msgstr "" -#: ../../mod/settings.php:973 -msgid "Allow others to tag your posts" +#: ../../mod/photos.php:863 +msgid "Private Photo" msgstr "" -#: ../../mod/settings.php:973 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" +#: ../../mod/photos.php:874 ../../mod/events.php:433 +msgid "Previous" msgstr "" -#: ../../mod/settings.php:975 -msgid "Advanced Privacy Settings" +#: ../../mod/photos.php:878 +msgid "View Full Size" msgstr "" -#: ../../mod/settings.php:977 -msgid "Expire other channel content after this many days" +#: ../../mod/photos.php:883 ../../mod/events.php:434 ../../mod/setup.php:261 +msgid "Next" msgstr "" -#: ../../mod/settings.php:977 -msgid "0 or blank prevents expiration" +#: ../../mod/photos.php:922 ../../mod/delegate.php:130 ../../mod/tagrm.php:93 +msgid "Remove" msgstr "" -#: ../../mod/settings.php:978 -msgid "Maximum Friend Requests/Day:" +#: ../../mod/photos.php:956 +msgid "Edit photo" msgstr "" -#: ../../mod/settings.php:978 -msgid "May reduce spam activity" +#: ../../mod/photos.php:958 +msgid "Rotate CW (right)" msgstr "" -#: ../../mod/settings.php:979 -msgid "Default Post Permissions" +#: ../../mod/photos.php:959 +msgid "Rotate CCW (left)" msgstr "" -#: ../../mod/settings.php:980 ../../mod/mitem.php:134 ../../mod/mitem.php:177 -msgid "(click to open/close)" +#: ../../mod/photos.php:962 +msgid "New album name" msgstr "" -#: ../../mod/settings.php:991 -msgid "Maximum private messages per day from unknown people:" +#: ../../mod/photos.php:965 +msgid "Caption" msgstr "" -#: ../../mod/settings.php:991 -msgid "Useful to reduce spamming" +#: ../../mod/photos.php:967 +msgid "Add a Tag" msgstr "" -#: ../../mod/settings.php:994 -msgid "Notification Settings" +#: ../../mod/photos.php:970 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -#: ../../mod/settings.php:995 -msgid "By default post a status message when:" +#: ../../mod/photos.php:1125 +msgid "In This Photo:" msgstr "" -#: ../../mod/settings.php:996 -msgid "accepting a friend request" +#: ../../mod/photos.php:1201 +msgid "View Album" msgstr "" -#: ../../mod/settings.php:997 -msgid "joining a forum/community" +#: ../../mod/photos.php:1224 +msgid "Recent Photos" msgstr "" -#: ../../mod/settings.php:998 -msgid "making an interesting profile change" +#: ../../mod/mitem.php:14 ../../mod/menu.php:92 +msgid "Menu not found." msgstr "" -#: ../../mod/settings.php:999 -msgid "Send a notification email when:" +#: ../../mod/mitem.php:47 +msgid "Menu element updated." msgstr "" -#: ../../mod/settings.php:1000 -msgid "You receive a connection request" +#: ../../mod/mitem.php:51 +msgid "Unable to update menu element." msgstr "" -#: ../../mod/settings.php:1001 -msgid "Your connections are confirmed" +#: ../../mod/mitem.php:57 +msgid "Menu element added." msgstr "" -#: ../../mod/settings.php:1002 -msgid "Someone writes on your profile wall" +#: ../../mod/mitem.php:61 +msgid "Unable to add menu element." msgstr "" -#: ../../mod/settings.php:1003 -msgid "Someone writes a followup comment" +#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 +#: ../../mod/xchan.php:38 +msgid "Not found." msgstr "" -#: ../../mod/settings.php:1004 -msgid "You receive a private message" +#: ../../mod/mitem.php:96 +msgid "Manage Menu Elements" msgstr "" -#: ../../mod/settings.php:1005 -msgid "You receive a friend suggestion" +#: ../../mod/mitem.php:99 +msgid "Edit menu" msgstr "" -#: ../../mod/settings.php:1006 -msgid "You are tagged in a post" +#: ../../mod/mitem.php:102 +msgid "Edit element" msgstr "" -#: ../../mod/settings.php:1007 -msgid "You are poked/prodded/etc. in a post" +#: ../../mod/mitem.php:103 +msgid "Drop element" msgstr "" -#: ../../mod/settings.php:1010 -msgid "Advanced Account/Page Type Settings" +#: ../../mod/mitem.php:104 +msgid "New element" msgstr "" -#: ../../mod/settings.php:1011 -msgid "Change the behaviour of this account for special situations" +#: ../../mod/mitem.php:105 +msgid "Edit this menu container" msgstr "" -#: ../../mod/settings.php:1014 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" +#: ../../mod/mitem.php:106 +msgid "Add menu element" msgstr "" -#: ../../mod/settings.php:1015 -msgid "Miscellaneous Settings" +#: ../../mod/mitem.php:107 +msgid "Delete this menu item" msgstr "" -#: ../../mod/settings.php:1017 -msgid "Personal menu to display in your channel pages" +#: ../../mod/mitem.php:108 +msgid "Edit this menu item" msgstr "" -#: ../../mod/settings.php:1018 -msgid "Remove this channel" +#: ../../mod/mitem.php:131 +msgid "New Menu Element" msgstr "" -#: ../../mod/filestorage.php:76 -msgid "Permission Denied." +#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 +msgid "Menu Item Permissions" msgstr "" -#: ../../mod/filestorage.php:92 -msgid "File not found." +#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:980 +msgid "(click to open/close)" msgstr "" -#: ../../mod/filestorage.php:131 -msgid "Edit file permissions" +#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 +msgid "Link text" msgstr "" -#: ../../mod/filestorage.php:140 -msgid "Set/edit permissions" +#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 +msgid "URL of link" msgstr "" -#: ../../mod/filestorage.php:141 -msgid "Include all files and sub folders" +#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 +msgid "Use Red magic-auth if available" msgstr "" -#: ../../mod/filestorage.php:142 -msgid "Return to file list" +#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 +msgid "Open link in new window" msgstr "" -#: ../../mod/filestorage.php:144 -msgid "Copy/paste this code to attach file to a post" +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Order in list" msgstr "" -#: ../../mod/filestorage.php:145 -msgid "Copy/paste this URL to link file from a web page" +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../mod/home.php:46 -msgid "Red Matrix - "The Network"" +#: ../../mod/mitem.php:154 +msgid "Menu item not found." msgstr "" -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" +#: ../../mod/mitem.php:163 +msgid "Menu item deleted." msgstr "" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../mod/mitem.php:165 +msgid "Menu item could not be deleted." msgstr "" -#: ../../mod/update_network.php:23 ../../mod/update_display.php:25 -#: ../../mod/update_search.php:46 ../../mod/update_channel.php:43 -msgid "[Embedded content - reload page to view]" +#: ../../mod/mitem.php:174 +msgid "Edit Menu Element" msgstr "" -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" +#: ../../mod/mitem.php:186 ../../mod/menu.php:114 +msgid "Modify" msgstr "" -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used " -"to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 -#: ../../mod/sources.php:137 -msgid "Channel Name" +#: ../../mod/ping.php:237 +msgid "sent you a private message" msgstr "" -#: ../../mod/new_channel.php:113 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\" " +#: ../../mod/ping.php:288 +msgid "added your channel" msgstr "" -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" +#: ../../mod/ping.php:329 +msgid "posted an event" msgstr "" -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." +#: ../../mod/acl.php:244 +msgid "network" msgstr "" -#: ../../mod/new_channel.php:116 -msgid "" -"Or import an existing channel from another location" +#: ../../mod/settings.php:71 +msgid "Name is required" msgstr "" -#: ../../mod/new_channel.php:118 -msgid "Channel Type" +#: ../../mod/settings.php:75 +msgid "Key and Secret are required" msgstr "" -#: ../../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" +#: ../../mod/settings.php:198 +msgid "Passwords do not match. Password unchanged." 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:202 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/rmagic.php:38 -msgid "The error message was:" +#: ../../mod/settings.php:216 +msgid "Password changed." msgstr "" -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." +#: ../../mod/settings.php:218 +msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" +#: ../../mod/settings.php:232 +msgid "Not valid email." msgstr "" -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../mod/settings.php:235 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../mod/rmagic.php:84 -msgid "Authenticate" +#: ../../mod/settings.php:244 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." +#: ../../mod/settings.php:447 +msgid "Settings updated." msgstr "" -#: ../../mod/admin.php:97 ../../mod/admin.php:413 -msgid "Site" +#: ../../mod/settings.php:518 ../../mod/settings.php:544 +#: ../../mod/settings.php:580 +msgid "Add application" msgstr "" -#: ../../mod/admin.php:98 -msgid "Accounts" +#: ../../mod/settings.php:521 +msgid "Name of application" msgstr "" -#: ../../mod/admin.php:99 ../../mod/admin.php:860 -msgid "Channels" +#: ../../mod/settings.php:522 ../../mod/settings.php:548 +msgid "Consumer Key" msgstr "" -#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 -msgid "Plugins" +#: ../../mod/settings.php:522 ../../mod/settings.php:523 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 -msgid "Themes" +#: ../../mod/settings.php:523 ../../mod/settings.php:549 +msgid "Consumer Secret" msgstr "" -#: ../../mod/admin.php:102 ../../mod/admin.php:515 -msgid "Server" +#: ../../mod/settings.php:524 ../../mod/settings.php:550 +msgid "Redirect" msgstr "" -#: ../../mod/admin.php:103 -msgid "Profile Config" +#: ../../mod/settings.php:524 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../mod/admin.php:104 -msgid "DB updates" +#: ../../mod/settings.php:525 ../../mod/settings.php:551 +msgid "Icon url" msgstr "" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 -msgid "Logs" +#: ../../mod/settings.php:525 +msgid "Optional" msgstr "" -#: ../../mod/admin.php:124 -msgid "Plugin Features" +#: ../../mod/settings.php:536 +msgid "You can't edit this application." msgstr "" -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" +#: ../../mod/settings.php:579 +msgid "Connected Apps" msgstr "" -#: ../../mod/admin.php:206 -msgid "Message queues" +#: ../../mod/settings.php:583 +msgid "Client key starts with" msgstr "" -#: ../../mod/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 -#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:950 -#: ../../mod/admin.php:992 ../../mod/admin.php:1155 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 -msgid "Administration" +#: ../../mod/settings.php:584 +msgid "No name" msgstr "" -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "" - -#: ../../mod/admin.php:214 -msgid "Registered users" +#: ../../mod/settings.php:585 +msgid "Remove authorization" msgstr "" -#: ../../mod/admin.php:216 ../../mod/admin.php:518 -msgid "Pending registrations" +#: ../../mod/settings.php:596 +msgid "No feature settings configured" msgstr "" -#: ../../mod/admin.php:217 -msgid "Version" +#: ../../mod/settings.php:604 +msgid "Feature Settings" msgstr "" -#: ../../mod/admin.php:219 ../../mod/admin.php:519 -msgid "Active plugins" +#: ../../mod/settings.php:627 +msgid "Account Settings" msgstr "" -#: ../../mod/admin.php:333 -msgid "Site settings updated." +#: ../../mod/settings.php:628 +msgid "Password Settings" msgstr "" -#: ../../mod/admin.php:364 -msgid "No special theme for accessibility" +#: ../../mod/settings.php:629 +msgid "New Password:" msgstr "" -#: ../../mod/admin.php:393 -msgid "Yes - with approval" +#: ../../mod/settings.php:630 +msgid "Confirm:" msgstr "" -#: ../../mod/admin.php:399 -msgid "My site is not a public server" +#: ../../mod/settings.php:630 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/admin.php:400 -msgid "My site has paid access only" +#: ../../mod/settings.php:632 ../../mod/settings.php:954 +msgid "Email Address:" msgstr "" -#: ../../mod/admin.php:401 -msgid "My site has free access only" +#: ../../mod/settings.php:633 ../../mod/removeaccount.php:61 +msgid "Remove Account" msgstr "" -#: ../../mod/admin.php:402 -msgid "My site offers free accounts with optional paid upgrades" +#: ../../mod/settings.php:634 +msgid "Remove this account from this server including all its channels" msgstr "" -#: ../../mod/admin.php:415 ../../mod/register.php:203 -msgid "Registration" +#: ../../mod/settings.php:635 ../../mod/settings.php:1019 +msgid "Warning: This action is permanent and cannot be reversed." msgstr "" -#: ../../mod/admin.php:416 -msgid "File upload" +#: ../../mod/settings.php:651 +msgid "Off" msgstr "" -#: ../../mod/admin.php:417 -msgid "Policies" +#: ../../mod/settings.php:651 +msgid "On" msgstr "" -#: ../../mod/admin.php:422 -msgid "Site name" +#: ../../mod/settings.php:658 +msgid "Additional Features" msgstr "" -#: ../../mod/admin.php:423 -msgid "Banner/Logo" +#: ../../mod/settings.php:683 +msgid "Connector Settings" msgstr "" -#: ../../mod/admin.php:424 -msgid "Administrator Information" +#: ../../mod/settings.php:713 ../../mod/admin.php:362 +msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/admin.php:424 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../mod/settings.php:722 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../mod/admin.php:425 -msgid "System language" +#: ../../mod/settings.php:758 +msgid "Display Settings" msgstr "" -#: ../../mod/admin.php:426 -msgid "System theme" +#: ../../mod/settings.php:764 +msgid "Display Theme:" msgstr "" -#: ../../mod/admin.php:426 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: ../../mod/settings.php:765 +msgid "Mobile Theme:" msgstr "" -#: ../../mod/admin.php:427 -msgid "Mobile system theme" +#: ../../mod/settings.php:766 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../mod/admin.php:427 -msgid "Theme for mobile devices" +#: ../../mod/settings.php:767 +msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/admin.php:428 -msgid "Accessibility system theme" +#: ../../mod/settings.php:767 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/admin.php:428 -msgid "Accessibility theme" +#: ../../mod/settings.php:768 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/admin.php:430 -msgid "Enable Diaspora Protocol" +#: ../../mod/settings.php:768 +msgid "Maximum of 100 items" msgstr "" -#: ../../mod/admin.php:430 -msgid "Communicate with Diaspora and Friendica - experimental" +#: ../../mod/settings.php:769 +msgid "Don't show emoticons" msgstr "" -#: ../../mod/admin.php:431 -msgid "Allow Feeds as Connections" +#: ../../mod/settings.php:770 +msgid "Link post titles to source" msgstr "" -#: ../../mod/admin.php:431 -msgid "(Heavy system resource usage)" +#: ../../mod/settings.php:771 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../mod/admin.php:432 -msgid "Maximum image size" +#: ../../mod/settings.php:807 +msgid "Nobody except yourself" msgstr "" -#: ../../mod/admin.php:432 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../mod/settings.php:808 +msgid "Only those you specifically allow" msgstr "" -#: ../../mod/admin.php:433 -msgid "Does this site allow new member registration?" +#: ../../mod/settings.php:809 +msgid "Approved connections" msgstr "" -#: ../../mod/admin.php:434 -msgid "Which best describes the types of account offered by this hub?" +#: ../../mod/settings.php:810 +msgid "Any connections" msgstr "" -#: ../../mod/admin.php:435 -msgid "Register text" +#: ../../mod/settings.php:811 +msgid "Anybody on this website" msgstr "" -#: ../../mod/admin.php:435 -msgid "Will be displayed prominently on the registration page." +#: ../../mod/settings.php:812 +msgid "Anybody in this network" msgstr "" -#: ../../mod/admin.php:436 -msgid "Accounts abandoned after x days" +#: ../../mod/settings.php:813 +msgid "Anybody authenticated" msgstr "" -#: ../../mod/admin.php:436 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +#: ../../mod/settings.php:814 +msgid "Anybody on the internet" msgstr "" -#: ../../mod/admin.php:437 -msgid "Allowed friend domains" +#: ../../mod/settings.php:891 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/admin.php:437 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../mod/settings.php:891 ../../mod/settings.php:896 +#: ../../mod/settings.php:973 ../../mod/api.php:106 ../../mod/profiles.php:574 +#: ../../mod/admin.php:392 +msgid "No" msgstr "" -#: ../../mod/admin.php:438 -msgid "Allowed email domains" +#: ../../mod/settings.php:891 ../../mod/settings.php:896 +#: ../../mod/settings.php:973 ../../mod/api.php:105 ../../mod/profiles.php:573 +#: ../../mod/admin.php:394 +msgid "Yes" msgstr "" -#: ../../mod/admin.php:438 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" +#: ../../mod/settings.php:896 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/admin.php:439 -msgid "Block public" +#: ../../mod/settings.php:900 ../../mod/profile_photo.php:365 +msgid "or" msgstr "" -#: ../../mod/admin.php:439 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." +#: ../../mod/settings.php:905 +msgid "Your channel address is" msgstr "" -#: ../../mod/admin.php:440 -msgid "Verify Email Addresses" +#: ../../mod/settings.php:943 +msgid "Channel Settings" msgstr "" -#: ../../mod/admin.php:440 -msgid "" -"Check to verify email addresses used in account registration (recommended)." +#: ../../mod/settings.php:952 +msgid "Basic Settings" msgstr "" -#: ../../mod/admin.php:441 -msgid "Force publish" +#: ../../mod/settings.php:955 +msgid "Your Timezone:" msgstr "" -#: ../../mod/admin.php:441 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +#: ../../mod/settings.php:956 +msgid "Default Post Location:" msgstr "" -#: ../../mod/admin.php:442 -msgid "Disable discovery tab" +#: ../../mod/settings.php:956 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../mod/admin.php:442 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." +#: ../../mod/settings.php:957 +msgid "Use Browser Location:" msgstr "" -#: ../../mod/admin.php:443 -msgid "No login on Homepage" +#: ../../mod/settings.php:959 +msgid "Adult Content" msgstr "" -#: ../../mod/admin.php:443 +#: ../../mod/settings.php:959 msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/admin.php:445 -msgid "Proxy user" +#: ../../mod/settings.php:961 +msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/admin.php:446 -msgid "Proxy URL" +#: ../../mod/settings.php:963 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../mod/admin.php:447 -msgid "Network timeout" +#: ../../mod/settings.php:965 +msgid "Hide my online presence" msgstr "" -#: ../../mod/admin.php:447 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../mod/settings.php:965 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../mod/admin.php:448 -msgid "Delivery interval" +#: ../../mod/settings.php:967 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../mod/admin.php:448 +#: ../../mod/settings.php:968 msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/admin.php:449 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:449 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:450 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:450 +#: ../../mod/settings.php:969 msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../mod/admin.php:506 -msgid "No server found" +#: ../../mod/settings.php:970 +msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/admin.php:513 ../../mod/admin.php:737 -msgid "ID" +#: ../../mod/settings.php:971 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/admin.php:513 -msgid "for channel" +#: ../../mod/settings.php:973 +msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/admin.php:513 -msgid "on server" +#: ../../mod/settings.php:973 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/admin.php:513 -msgid "Status" +#: ../../mod/settings.php:975 +msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/admin.php:534 -msgid "Update has been marked successful" +#: ../../mod/settings.php:977 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/admin.php:544 -#, php-format -msgid "Executing %s failed. Check system logs." +#: ../../mod/settings.php:977 +msgid "0 or blank prevents expiration" msgstr "" -#: ../../mod/admin.php:547 -#, php-format -msgid "Update %s was successfully applied." +#: ../../mod/settings.php:978 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/admin.php:551 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +#: ../../mod/settings.php:978 +msgid "May reduce spam activity" msgstr "" -#: ../../mod/admin.php:554 -#, php-format -msgid "Update function %s could not be found." +#: ../../mod/settings.php:979 +msgid "Default Post Permissions" msgstr "" -#: ../../mod/admin.php:569 -msgid "No failed updates." +#: ../../mod/settings.php:991 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/admin.php:573 -msgid "Failed Updates" +#: ../../mod/settings.php:991 +msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/admin.php:575 -msgid "Mark success (if update was manually applied)" +#: ../../mod/settings.php:994 +msgid "Notification Settings" msgstr "" -#: ../../mod/admin.php:576 -msgid "Attempt to execute this update step automatically" +#: ../../mod/settings.php:995 +msgid "By default post a status message when:" msgstr "" -#: ../../mod/admin.php:602 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:609 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:638 -msgid "Account not found" +#: ../../mod/settings.php:996 +msgid "accepting a friend request" msgstr "" -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' unblocked" +#: ../../mod/settings.php:997 +msgid "joining a forum/community" msgstr "" -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' blocked" +#: ../../mod/settings.php:998 +msgid "making an interesting profile change" msgstr "" -#: ../../mod/admin.php:724 ../../mod/admin.php:736 -msgid "Users" +#: ../../mod/settings.php:999 +msgid "Send a notification email when:" msgstr "" -#: ../../mod/admin.php:726 ../../mod/admin.php:862 -msgid "select all" +#: ../../mod/settings.php:1000 +msgid "You receive a connection request" msgstr "" -#: ../../mod/admin.php:727 -msgid "User registrations waiting for confirm" +#: ../../mod/settings.php:1001 +msgid "Your connections are confirmed" msgstr "" -#: ../../mod/admin.php:728 -msgid "Request date" +#: ../../mod/settings.php:1002 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/admin.php:729 -msgid "No registrations." +#: ../../mod/settings.php:1003 +msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/admin.php:730 -msgid "Approve" +#: ../../mod/settings.php:1004 +msgid "You receive a private message" msgstr "" -#: ../../mod/admin.php:731 -msgid "Deny" +#: ../../mod/settings.php:1005 +msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/admin.php:733 ../../mod/connedit.php:436 -#: ../../mod/connedit.php:579 -msgid "Block" +#: ../../mod/settings.php:1006 +msgid "You are tagged in a post" msgstr "" -#: ../../mod/admin.php:734 ../../mod/connedit.php:436 -#: ../../mod/connedit.php:579 -msgid "Unblock" +#: ../../mod/settings.php:1007 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/admin.php:737 -msgid "Register date" +#: ../../mod/settings.php:1010 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/admin.php:737 -msgid "Last login" +#: ../../mod/settings.php:1011 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/admin.php:737 -msgid "Expires" +#: ../../mod/settings.php:1014 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" msgstr "" -#: ../../mod/admin.php:737 -msgid "Service Class" +#: ../../mod/settings.php:1015 +msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/admin.php:739 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../mod/settings.php:1017 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/admin.php:740 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" +#: ../../mod/settings.php:1018 +msgid "Remove this channel" msgstr "" -#: ../../mod/admin.php:773 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:780 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:799 -msgid "Channel not found" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" msgstr "" -#: ../../mod/admin.php:810 -#, php-format -msgid "Channel '%s' deleted" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" msgstr "" -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' uncensored" +#: ../../mod/poke.php:161 +msgid "Recipient" msgstr "" -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' censored" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../mod/admin.php:864 -msgid "Censor" +#: ../../mod/poke.php:165 +msgid "Make this post private" msgstr "" -#: ../../mod/admin.php:865 -msgid "Uncensor" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" msgstr "" -#: ../../mod/admin.php:868 -msgid "UID" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: ../../mod/admin.php:868 ../../mod/profiles.php:433 -msgid "Address" +#: ../../mod/api.php:89 +msgid "Please login to continue." msgstr "" -#: ../../mod/admin.php:870 +#: ../../mod/api.php:104 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../mod/admin.php:871 +#: ../../mod/post.php:229 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." msgstr "" -#: ../../mod/admin.php:910 +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 #, php-format -msgid "Plugin %s disabled." +msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../mod/admin.php:914 -#, php-format -msgid "Plugin %s enabled." +#: ../../mod/attach.php:9 +msgid "Item not available." msgstr "" -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 -msgid "Disable" +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../mod/admin.php:926 ../../mod/admin.php:1128 -msgid "Enable" +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." msgstr "" -#: ../../mod/admin.php:952 ../../mod/admin.php:1157 -msgid "Toggle" +#: ../../mod/block.php:39 ../../mod/page.php:45 ../../mod/wall_upload.php:28 +msgid "Channel not found." msgstr "" -#: ../../mod/admin.php:960 ../../mod/admin.php:1167 -msgid "Author: " +#: ../../mod/block.php:75 ../../mod/page.php:81 ../../mod/display.php:102 +#: ../../mod/help.php:72 ../../index.php:240 +msgid "Page not found." msgstr "" -#: ../../mod/admin.php:961 ../../mod/admin.php:1168 -msgid "Maintainer: " -msgstr "" - -#: ../../mod/admin.php:1090 -msgid "No themes found." +#: ../../mod/siteinfo.php:90 +#, php-format +msgid "Version %s" msgstr "" -#: ../../mod/admin.php:1149 -msgid "Screenshot" +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/admin.php:1197 -msgid "[Experimental]" +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/admin.php:1198 -msgid "[Unsupported]" +#: ../../mod/siteinfo.php:132 +msgid "Red" msgstr "" -#: ../../mod/admin.php:1225 -msgid "Log settings updated." +#: ../../mod/siteinfo.php:133 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../mod/admin.php:1281 -msgid "Clear" +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" msgstr "" -#: ../../mod/admin.php:1287 -msgid "Debugging" +#: ../../mod/siteinfo.php:138 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." msgstr "" -#: ../../mod/admin.php:1288 -msgid "Log file" +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../mod/admin.php:1288 +#: ../../mod/siteinfo.php:142 msgid "" -"Must be writable by web server. Relative to your Red top-level directory." +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../mod/admin.php:1289 -msgid "Log level" +#: ../../mod/siteinfo.php:144 +msgid "Site Administrators" msgstr "" -#: ../../mod/admin.php:1336 -msgid "New Profile Field" +#: ../../mod/blocks.php:62 +msgid "Block Name" msgstr "" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "Field nickname" +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" msgstr "" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "System name of field" +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" msgstr "" -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 -msgid "Input type" +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" msgstr "" -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Field Name" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:547 +msgid "Profile not found." msgstr "" -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Label on profile pages" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." msgstr "" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Help text" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" msgstr "" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Additional info (optional)" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." msgstr "" -#: ../../mod/admin.php:1351 -msgid "Field definition not found" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." msgstr "" -#: ../../mod/admin.php:1357 -msgid "Edit Profile Field" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." msgstr "" -#: ../../mod/filer.php:49 -msgid "- select -" +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." msgstr "" -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." +#: ../../mod/profiles.php:362 +msgid "Marital Status" msgstr "" -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 -msgid "Could not locate selected profile." +#: ../../mod/profiles.php:366 +msgid "Romantic Partner" msgstr "" -#: ../../mod/connections.php:94 ../../mod/connedit.php:132 -msgid "Connection updated." +#: ../../mod/profiles.php:370 +msgid "Likes" msgstr "" -#: ../../mod/connections.php:96 ../../mod/connedit.php:134 -msgid "Failed to update connection record." +#: ../../mod/profiles.php:374 +msgid "Dislikes" msgstr "" -#: ../../mod/connections.php:191 ../../mod/connections.php:292 -msgid "Blocked" +#: ../../mod/profiles.php:378 +msgid "Work/Employment" msgstr "" -#: ../../mod/connections.php:196 ../../mod/connections.php:299 -msgid "Ignored" +#: ../../mod/profiles.php:381 +msgid "Religion" msgstr "" -#: ../../mod/connections.php:201 ../../mod/connections.php:313 -msgid "Hidden" +#: ../../mod/profiles.php:385 +msgid "Political Views" msgstr "" -#: ../../mod/connections.php:206 ../../mod/connections.php:306 -msgid "Archived" +#: ../../mod/profiles.php:389 +msgid "Gender" msgstr "" -#: ../../mod/connections.php:230 ../../mod/connections.php:245 -msgid "All" +#: ../../mod/profiles.php:393 +msgid "Sexual Preference" msgstr "" -#: ../../mod/connections.php:270 -msgid "Suggest new connections" +#: ../../mod/profiles.php:397 +msgid "Homepage" msgstr "" -#: ../../mod/connections.php:273 -msgid "New Connections" +#: ../../mod/profiles.php:401 +msgid "Interests" msgstr "" -#: ../../mod/connections.php:276 -msgid "Show pending (new) connections" +#: ../../mod/profiles.php:405 ../../mod/admin.php:868 +msgid "Address" msgstr "" -#: ../../mod/connections.php:279 ../../mod/profperm.php:139 -msgid "All Connections" +#: ../../mod/profiles.php:412 ../../mod/pubsites.php:25 +msgid "Location" msgstr "" -#: ../../mod/connections.php:282 -msgid "Show all connections" +#: ../../mod/profiles.php:495 +msgid "Profile updated." msgstr "" -#: ../../mod/connections.php:285 -msgid "Unblocked" +#: ../../mod/profiles.php:572 +msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/connections.php:288 -msgid "Only show unblocked connections" +#: ../../mod/profiles.php:614 +msgid "Edit Profile Details" msgstr "" -#: ../../mod/connections.php:295 -msgid "Only show blocked connections" +#: ../../mod/profiles.php:616 +msgid "View this profile" msgstr "" -#: ../../mod/connections.php:302 -msgid "Only show ignored connections" +#: ../../mod/profiles.php:618 +msgid "Change Profile Photo" msgstr "" -#: ../../mod/connections.php:309 -msgid "Only show archived connections" +#: ../../mod/profiles.php:619 +msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/connections.php:316 -msgid "Only show hidden connections" +#: ../../mod/profiles.php:620 +msgid "Clone this profile" msgstr "" -#: ../../mod/connections.php:371 -#, php-format -msgid "%1$s [%2$s]" +#: ../../mod/profiles.php:621 +msgid "Delete this profile" msgstr "" -#: ../../mod/connections.php:372 -msgid "Edit connection" +#: ../../mod/profiles.php:623 +msgid "Import profile from file" msgstr "" -#: ../../mod/connections.php:410 -msgid "Search your connections" +#: ../../mod/profiles.php:624 +msgid "Export profile to file" msgstr "" -#: ../../mod/connections.php:411 -msgid "Finding: " +#: ../../mod/profiles.php:625 +msgid "Profile Name:" msgstr "" -#: ../../mod/dirprofile.php:9 ../../mod/photos.php:443 -#: ../../mod/viewconnections.php:17 ../../mod/directory.php:15 -#: ../../mod/display.php:9 ../../mod/search.php:13 -msgid "Public access denied." +#: ../../mod/profiles.php:626 +msgid "Your Full Name:" msgstr "" -#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 -#: ../../mod/profiles.php:704 -msgid "Age: " +#: ../../mod/profiles.php:627 +msgid "Title/Description:" msgstr "" -#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 -msgid "Gender: " +#: ../../mod/profiles.php:628 +msgid "Your Gender:" msgstr "" -#: ../../mod/dirprofile.php:108 -msgid "Status: " +#: ../../mod/profiles.php:629 +msgid "Birthday :" msgstr "" -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " +#: ../../mod/profiles.php:630 +msgid "Street Address:" msgstr "" -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " +#: ../../mod/profiles.php:631 +msgid "Locality/City:" msgstr "" -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " +#: ../../mod/profiles.php:632 +msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/dirprofile.php:114 -msgid "About: " +#: ../../mod/profiles.php:633 +msgid "Country:" msgstr "" -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " +#: ../../mod/profiles.php:634 +msgid "Region/State:" msgstr "" -#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:38 -#: ../../mod/menu.php:120 -msgid "Not found." +#: ../../mod/profiles.php:635 +msgid " Marital Status:" msgstr "" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." +#: ../../mod/profiles.php:636 +msgid "Who: (if applicable)" msgstr "" -#: ../../mod/photos.php:97 -msgid "Album not found." +#: ../../mod/profiles.php:637 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../mod/photos.php:119 ../../mod/photos.php:673 -msgid "Delete Album" +#: ../../mod/profiles.php:638 +msgid "Since [date]:" msgstr "" -#: ../../mod/photos.php:159 ../../mod/photos.php:975 -msgid "Delete Photo" +#: ../../mod/profiles.php:640 +msgid "Homepage URL:" msgstr "" -#: ../../mod/photos.php:453 -msgid "No photos selected" +#: ../../mod/profiles.php:643 +msgid "Religious Views:" msgstr "" -#: ../../mod/photos.php:500 -msgid "Access to this item is restricted." +#: ../../mod/profiles.php:644 +msgid "Keywords:" msgstr "" -#: ../../mod/photos.php:574 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +#: ../../mod/profiles.php:647 +msgid "Example: fishing photography software" msgstr "" -#: ../../mod/photos.php:577 -#, php-format -msgid "You have used %1$.2f Mbytes of photo storage." +#: ../../mod/profiles.php:648 +msgid "Used in directory listings" msgstr "" -#: ../../mod/photos.php:596 -msgid "Upload Photos" +#: ../../mod/profiles.php:649 +msgid "Tell us about yourself..." msgstr "" -#: ../../mod/photos.php:600 ../../mod/photos.php:668 -msgid "New album name: " +#: ../../mod/profiles.php:650 +msgid "Hobbies/Interests" msgstr "" -#: ../../mod/photos.php:601 -msgid "or existing album name: " +#: ../../mod/profiles.php:651 +msgid "Contact information and Social Networks" msgstr "" -#: ../../mod/photos.php:602 -msgid "Do not show a status post for this upload" +#: ../../mod/profiles.php:652 +msgid "My other channels" msgstr "" -#: ../../mod/photos.php:622 -msgid "Album name could not be decoded" +#: ../../mod/profiles.php:653 +msgid "Musical interests" msgstr "" -#: ../../mod/photos.php:657 ../../mod/photos.php:679 ../../mod/photos.php:1148 -#: ../../mod/photos.php:1163 -msgid "Contact Photos" +#: ../../mod/profiles.php:654 +msgid "Books, literature" msgstr "" -#: ../../mod/photos.php:681 -msgid "Edit Album" +#: ../../mod/profiles.php:655 +msgid "Television" msgstr "" -#: ../../mod/photos.php:687 -msgid "Show Newest First" +#: ../../mod/profiles.php:656 +msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/photos.php:689 -msgid "Show Oldest First" +#: ../../mod/profiles.php:657 +msgid "Love/romance" msgstr "" -#: ../../mod/photos.php:716 ../../mod/photos.php:1195 -msgid "View Photo" +#: ../../mod/profiles.php:658 +msgid "Work/employment" msgstr "" -#: ../../mod/photos.php:794 -msgid "Permission denied. Access to this item may be restricted." +#: ../../mod/profiles.php:659 +msgid "School/education" msgstr "" -#: ../../mod/photos.php:796 -msgid "Photo not available" +#: ../../mod/profiles.php:665 +msgid "This is your default profile." msgstr "" -#: ../../mod/photos.php:856 -msgid "Use as profile photo" +#: ../../mod/profiles.php:676 ../../mod/directory.php:143 +#: ../../mod/dirprofile.php:92 +msgid "Age: " msgstr "" -#: ../../mod/photos.php:880 -msgid "View Full Size" +#: ../../mod/profiles.php:719 +msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/photos.php:924 ../../mod/delegate.php:130 ../../mod/tagrm.php:93 -msgid "Remove" +#: ../../mod/profiles.php:720 +msgid "Add profile things" msgstr "" -#: ../../mod/photos.php:958 -msgid "Edit photo" +#: ../../mod/profiles.php:721 +msgid "Include desirable objects in your profile" msgstr "" -#: ../../mod/photos.php:960 -msgid "Rotate CW (right)" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/photos.php:961 -msgid "Rotate CCW (left)" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/photos.php:964 -msgid "New album name" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/photos.php:967 -msgid "Caption" +#: ../../mod/profperm.php:123 +msgid "Visible To" msgstr "" -#: ../../mod/photos.php:969 -msgid "Add a Tag" +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" msgstr "" -#: ../../mod/photos.php:972 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +#: ../../mod/events.php:81 +msgid "Event can not end before it has started." msgstr "" -#: ../../mod/photos.php:1125 -msgid "In This Photo:" +#: ../../mod/events.php:86 +msgid "Event title and start time are required." msgstr "" -#: ../../mod/photos.php:1201 -msgid "View Album" +#: ../../mod/events.php:100 +msgid "Event not found." msgstr "" -#: ../../mod/photos.php:1224 -msgid "Recent Photos" +#: ../../mod/events.php:364 +msgid "l, F j" msgstr "" -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." +#: ../../mod/events.php:386 +msgid "Edit event" msgstr "" -#: ../../mod/mitem.php:47 -msgid "Menu element updated." +#: ../../mod/events.php:432 +msgid "Create New Event" msgstr "" -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." +#: ../../mod/events.php:560 +msgid "Event details" msgstr "" -#: ../../mod/mitem.php:57 -msgid "Menu element added." +#: ../../mod/events.php:561 +msgid "Starting date and Title are required." msgstr "" -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." +#: ../../mod/events.php:565 +msgid "Event Starts:" msgstr "" -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" +#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" msgstr "" -#: ../../mod/mitem.php:99 -msgid "Edit menu" +#: ../../mod/events.php:571 +msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/mitem.php:102 -msgid "Edit element" +#: ../../mod/events.php:573 +msgid "Event Finishes:" msgstr "" -#: ../../mod/mitem.php:103 -msgid "Drop element" +#: ../../mod/events.php:575 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../mod/mitem.php:104 -msgid "New element" +#: ../../mod/events.php:577 +msgid "Description:" msgstr "" -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" +#: ../../mod/events.php:581 +msgid "Title:" msgstr "" -#: ../../mod/mitem.php:106 -msgid "Add menu element" +#: ../../mod/events.php:583 +msgid "Share this event" msgstr "" -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" +#: ../../mod/pubsites.php:16 +msgid "Public Sites" msgstr "" -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" +#: ../../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 "" -#: ../../mod/mitem.php:131 -msgid "New Menu Element" +#: ../../mod/pubsites.php:25 +msgid "Site URL" msgstr "" -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" +#: ../../mod/pubsites.php:25 +msgid "Access Type" msgstr "" -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" msgstr "" -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." msgstr "" -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" msgstr "" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" msgstr "" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" msgstr "" -#: ../../mod/mitem.php:154 -msgid "Menu item not found." +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" msgstr "" -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" msgstr "" -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." +#: ../../mod/chat.php:167 +msgid "Room not found" msgstr "" -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" +#: ../../mod/chat.php:178 +msgid "Leave Room" msgstr "" -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" +#: ../../mod/chat.php:179 +msgid "Delete This Room" msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../mod/chat.php:180 +msgid "I am away right now" msgstr "" -#: ../../mod/regmod.php:11 -msgid "Please login." +#: ../../mod/chat.php:181 +msgid "I am online" msgstr "" -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" +#: ../../mod/chat.php:183 +msgid "Bookmark this room" msgstr "" -#: ../../mod/impel.php:33 -msgid "webpage" +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" msgstr "" -#: ../../mod/impel.php:38 -msgid "block" +#: ../../mod/chat.php:208 +msgid "Chatroom Name" msgstr "" -#: ../../mod/impel.php:43 -msgid "layout" +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" +#: ../../mod/register.php:42 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." +#: ../../mod/register.php:48 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../mod/lockview.php:52 -msgid "Visible to:" +#: ../../mod/register.php:82 +msgid "Passwords do not match." msgstr "" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" +#: ../../mod/register.php:115 +msgid "" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" +#: ../../mod/register.php:121 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" +#: ../../mod/register.php:124 +msgid "Your registration can not be processed." msgstr "" -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" +#: ../../mod/register.php:161 +msgid "Registration on this site/hub is by approval only." msgstr "" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" +#: ../../mod/register.php:162 +msgid "Register at another affiliated site/hub" msgstr "" -#: ../../mod/pdledit.php:13 -msgid "Layout updated." +#: ../../mod/register.php:170 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" +#: ../../mod/register.php:181 +msgid "Terms of Service" msgstr "" -#: ../../mod/pdledit.php:48 -msgid "Layout not found." +#: ../../mod/register.php:187 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../mod/pdledit.php:54 -msgid "Module Name:" +#: ../../mod/register.php:189 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" +#: ../../mod/register.php:203 ../../mod/admin.php:415 +msgid "Registration" msgstr "" -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." +#: ../../mod/register.php:208 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." +#: ../../mod/register.php:209 +msgid "Please enter your invitation code" msgstr "" -#: ../../mod/profile_photo.php:205 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../mod/register.php:212 +msgid "Your email address" msgstr "" -#: ../../mod/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" +#: ../../mod/register.php:213 +msgid "Choose a password" msgstr "" -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." +#: ../../mod/register.php:214 +msgid "Please re-enter your password" msgstr "" -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." +#: ../../mod/chatsvc.php:111 +msgid "Away" msgstr "" -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" +#: ../../mod/chatsvc.php:115 +msgid "Online" msgstr "" -#: ../../mod/profile_photo.php:359 -msgid "Select a profile:" +#: ../../mod/regmod.php:11 +msgid "Please login." msgstr "" -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../mod/profile_photo.php:365 -msgid "skip this step" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" msgstr "" -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" +#: ../../mod/removeme.php:58 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." msgstr "" -#: ../../mod/profile_photo.php:381 -msgid "Crop Image" +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" msgstr "" -#: ../../mod/profile_photo.php:382 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../mod/profile_photo.php:384 -msgid "Done Editing" +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" msgstr "" -#: ../../mod/profile_photo.php:427 -msgid "Image uploaded successfully." +#: ../../mod/removeme.php:61 +msgid "Remove Channel" msgstr "" -#: ../../mod/profile_photo.php:429 -msgid "Image upload failed." +#: ../../mod/common.php:10 +msgid "No channel." msgstr "" -#: ../../mod/profile_photo.php:438 -#, php-format -msgid "Image size reduction [%s] failed." +#: ../../mod/common.php:39 +msgid "Common connections" msgstr "" -#: ../../mod/acl.php:244 -msgid "network" +#: ../../mod/common.php:44 +msgid "No connections in common." msgstr "" -#: ../../mod/menu.php:21 -msgid "Menu updated." +#: ../../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 "" -#: ../../mod/menu.php:25 -msgid "Unable to update menu." +#: ../../mod/rmagic.php:38 +msgid "The error message was:" msgstr "" -#: ../../mod/menu.php:30 -msgid "Menu created." +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." msgstr "" -#: ../../mod/menu.php:34 -msgid "Unable to create menu." +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" msgstr "" -#: ../../mod/menu.php:57 -msgid "Manage Menus" +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../mod/menu.php:60 -msgid "Drop" +#: ../../mod/rmagic.php:84 +msgid "Authenticate" msgstr "" -#: ../../mod/menu.php:62 -msgid "Create a new menu" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" msgstr "" -#: ../../mod/menu.php:63 -msgid "Delete this menu" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" msgstr "" -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../mod/menu.php:65 -msgid "Edit this menu" +#: ../../mod/connect.php:87 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../mod/menu.php:80 -msgid "New Menu" +#: ../../mod/connect.php:89 ../../mod/connect.php:109 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" +#: ../../mod/connect.php:90 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" +#: ../../mod/connect.php:91 ../../mod/connect.php:112 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" +#: ../../mod/network.php:79 +msgid "No such group" msgstr "" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" +#: ../../mod/network.php:118 +msgid "Search Results For:" msgstr "" -#: ../../mod/menu.php:98 -msgid "Menu deleted." +#: ../../mod/network.php:172 +msgid "Collection is empty" msgstr "" -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." +#: ../../mod/network.php:180 +msgid "Collection: " msgstr "" -#: ../../mod/menu.php:106 -msgid "Edit Menu" +#: ../../mod/network.php:193 +msgid "Connection: " msgstr "" -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" +#: ../../mod/network.php:196 +msgid "Invalid connection." msgstr "" -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." +#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +msgid "Could not access contact record." msgstr "" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:47 -msgid "Channel not found." +#: ../../mod/connections.php:51 ../../mod/connedit.php:78 +msgid "Could not locate selected profile." msgstr "" -#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/display.php:102 -#: ../../mod/page.php:83 ../../index.php:240 -msgid "Page not found." +#: ../../mod/connections.php:94 ../../mod/connedit.php:132 +msgid "Connection updated." msgstr "" -#: ../../mod/tagger.php:98 +#: ../../mod/connections.php:96 ../../mod/connedit.php:134 +msgid "Failed to update connection record." +msgstr "" + +#: ../../mod/connections.php:191 ../../mod/connections.php:292 +msgid "Blocked" +msgstr "" + +#: ../../mod/connections.php:196 ../../mod/connections.php:299 +msgid "Ignored" +msgstr "" + +#: ../../mod/connections.php:201 ../../mod/connections.php:313 +msgid "Hidden" +msgstr "" + +#: ../../mod/connections.php:206 ../../mod/connections.php:306 +msgid "Archived" +msgstr "" + +#: ../../mod/connections.php:230 ../../mod/connections.php:245 +msgid "All" +msgstr "" + +#: ../../mod/connections.php:270 +msgid "Suggest new connections" +msgstr "" + +#: ../../mod/connections.php:273 +msgid "New Connections" +msgstr "" + +#: ../../mod/connections.php:276 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../mod/connections.php:282 +msgid "Show all connections" +msgstr "" + +#: ../../mod/connections.php:285 +msgid "Unblocked" +msgstr "" + +#: ../../mod/connections.php:288 +msgid "Only show unblocked connections" +msgstr "" + +#: ../../mod/connections.php:295 +msgid "Only show blocked connections" +msgstr "" + +#: ../../mod/connections.php:302 +msgid "Only show ignored connections" +msgstr "" + +#: ../../mod/connections.php:309 +msgid "Only show archived connections" +msgstr "" + +#: ../../mod/connections.php:316 +msgid "Only show hidden connections" +msgstr "" + +#: ../../mod/connections.php:371 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +msgid "%1$s [%2$s]" msgstr "" -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" +#: ../../mod/connections.php:372 +msgid "Edit connection" msgstr "" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." +#: ../../mod/connections.php:410 +msgid "Search your connections" msgstr "" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../mod/connections.php:411 +msgid "Finding: " +msgstr "" + +#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 +msgid "Edit post" msgstr "" #: ../../mod/connedit.php:181 @@ -5817,6 +5369,16 @@ msgstr "" msgid "View recent posts and comments" msgstr "" +#: ../../mod/connedit.php:436 ../../mod/connedit.php:579 +#: ../../mod/admin.php:734 +msgid "Unblock" +msgstr "" + +#: ../../mod/connedit.php:436 ../../mod/connedit.php:579 +#: ../../mod/admin.php:733 +msgid "Block" +msgstr "" + #: ../../mod/connedit.php:439 msgid "Block or Unblock this connection" msgstr "" @@ -6036,32 +5598,87 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/message.php:41 -msgid "Conversation removed." +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." msgstr "" -#: ../../mod/message.php:56 -msgid "No messages." +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" msgstr "" -#: ../../mod/message.php:72 ../../mod/mail.php:329 -msgid "Delete conversation" +#: ../../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/message.php:74 -msgid "D, d M Y - g:i A" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" msgstr "" -#: ../../mod/ping.php:237 -msgid "sent you a private message" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" msgstr "" -#: ../../mod/ping.php:288 -msgid "added your channel" +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" msgstr "" -#: ../../mod/ping.php:329 -msgid "posted an event" +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "" + +#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 +msgid "Gender: " +msgstr "" + +#: ../../mod/directory.php:223 +msgid "Finding:" +msgstr "" + +#: ../../mod/directory.php:228 +msgid "next page" +msgstr "" + +#: ../../mod/directory.php:228 +msgid "previous page" +msgstr "" + +#: ../../mod/directory.php:245 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../mod/dirprofile.php:108 +msgid "Status: " +msgstr "" + +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " +msgstr "" + +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " +msgstr "" + +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " +msgstr "" + +#: ../../mod/dirprofile.php:114 +msgid "About: " +msgstr "" + +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " +msgstr "" + +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" msgstr "" #: ../../mod/setup.php:162 @@ -6100,10 +5717,6 @@ msgstr "" msgid "System check" msgstr "" -#: ../../mod/setup.php:261 ../../mod/events.php:439 -msgid "Next" -msgstr "" - #: ../../mod/setup.php:262 msgid "Check again" msgstr "" @@ -6445,1591 +6058,2142 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/magic.php:70 -msgid "Hub not found." +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 +#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 +msgid "Item not found" msgstr "" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." +#: ../../mod/editblock.php:77 +msgid "Edit Block" msgstr "" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." +#: ../../mod/editblock.php:87 +msgid "Delete block?" msgstr "" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" +#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 +msgid "Insert YouTube video" msgstr "" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 +msgid "Insert Vorbis [.ogg] video" msgstr "" -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." +#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 +msgid "Insert Vorbis [.ogg] audio" msgstr "" -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "" -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" +#: ../../mod/pdledit.php:13 +msgid "Layout updated." msgstr "" -#: ../../mod/invite.php:129 -msgid "Send invitations" +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" msgstr "" -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" +#: ../../mod/pdledit.php:48 +msgid "Layout not found." msgstr "" -#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Your message:" +#: ../../mod/pdledit.php:54 +msgid "Module Name:" msgstr "" -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +msgid "Layout Help" msgstr "" -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" msgstr "" -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" msgstr "" -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" msgstr "" -#: ../../mod/invite.php:138 -msgid "or visit " +#: ../../mod/editpost.php:31 +msgid "Item is not editable" msgstr "" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" +#: ../../mod/editpost.php:53 +msgid "Delete item?" msgstr "" -#: ../../mod/thing.php:96 -msgid "Thing updated" +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" msgstr "" -#: ../../mod/thing.php:156 -msgid "Object store: failed" +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" msgstr "" -#: ../../mod/thing.php:160 -msgid "Thing added" +#: ../../mod/editwebpage.php:186 +msgid "Delete Webpage" msgstr "" -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" msgstr "" -#: ../../mod/thing.php:232 -msgid "Show Thing" +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../mod/thing.php:239 -msgid "item not found." +#: ../../mod/profile_photo.php:161 +msgid "Image resize failed." msgstr "" -#: ../../mod/thing.php:270 -msgid "Edit Thing" +#: ../../mod/profile_photo.php:205 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" +#: ../../mod/profile_photo.php:232 +#, php-format +msgid "Image exceeds size limit of %d" msgstr "" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" +#: ../../mod/profile_photo.php:241 +msgid "Unable to process image." msgstr "" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" +#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 +msgid "Photo not available." msgstr "" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" +#: ../../mod/profile_photo.php:358 +msgid "Upload File:" msgstr "" -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" +#: ../../mod/profile_photo.php:359 +msgid "Select a profile:" msgstr "" -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" +#: ../../mod/profile_photo.php:360 +msgid "Upload Profile Photo" msgstr "" -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" +#: ../../mod/profile_photo.php:365 +msgid "skip this step" msgstr "" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." +#: ../../mod/profile_photo.php:365 +msgid "select a photo from your photo albums" msgstr "" -#: ../../mod/oexchange.php:37 -msgid "Post successful." +#: ../../mod/profile_photo.php:381 +msgid "Crop Image" msgstr "" -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" +#: ../../mod/profile_photo.php:382 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../mod/help.php:69 ../../index.php:237 -msgid "Not Found" +#: ../../mod/profile_photo.php:384 +msgid "Done Editing" msgstr "" -#: ../../mod/viewconnections.php:58 -msgid "No connections." +#: ../../mod/profile_photo.php:427 +msgid "Image uploaded successfully." msgstr "" -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../mod/profile_photo.php:429 +msgid "Image upload failed." msgstr "" -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" +#: ../../mod/profile_photo.php:438 +#, php-format +msgid "Image size reduction [%s] failed." msgstr "" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" +#: ../../mod/sources.php:45 +msgid "Source created." msgstr "" -#: ../../mod/removeaccount.php:58 -msgid "" -"This will completely remove this account including all its channels from the " -"network. Once this has been done it is not recoverable." +#: ../../mod/sources.php:57 +msgid "Source updated." msgstr "" -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" +#: ../../mod/sources.php:82 +msgid "*" msgstr "" -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" msgstr "" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." +#: ../../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/profperm.php:110 -msgid "Profile Visibility Editor" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" msgstr "" -#: ../../mod/profperm.php:123 -msgid "Visible To" +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" msgstr "" -#: ../../mod/register.php:42 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." msgstr "" -#: ../../mod/register.php:48 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +#: ../../mod/sources.php:130 +msgid "Edit Source" msgstr "" -#: ../../mod/register.php:82 -msgid "Passwords do not match." +#: ../../mod/sources.php:131 +msgid "Delete Source" msgstr "" -#: ../../mod/register.php:115 -msgid "" -"Registration successful. Please check your email for validation instructions." +#: ../../mod/sources.php:158 +msgid "Source removed" msgstr "" -#: ../../mod/register.php:121 -msgid "Your registration is pending approval by the site owner." +#: ../../mod/sources.php:160 +msgid "Unable to remove source." msgstr "" -#: ../../mod/register.php:124 -msgid "Your registration can not be processed." +#: ../../mod/filer.php:49 +msgid "- select -" msgstr "" -#: ../../mod/register.php:161 -msgid "Registration on this site/hub is by approval only." +#: ../../mod/filestorage.php:76 +msgid "Permission Denied." msgstr "" -#: ../../mod/register.php:162 -msgid "Register at another affiliated site/hub" +#: ../../mod/filestorage.php:92 +msgid "File not found." msgstr "" -#: ../../mod/register.php:170 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +#: ../../mod/filestorage.php:131 +msgid "Edit file permissions" msgstr "" -#: ../../mod/register.php:181 -msgid "Terms of Service" +#: ../../mod/filestorage.php:140 +msgid "Set/edit permissions" msgstr "" -#: ../../mod/register.php:187 -#, php-format -msgid "I accept the %s for this website" +#: ../../mod/filestorage.php:141 +msgid "Include all files and sub folders" msgstr "" -#: ../../mod/register.php:189 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" +#: ../../mod/filestorage.php:142 +msgid "Return to file list" msgstr "" -#: ../../mod/register.php:208 -msgid "Membership on this site is by invitation only." +#: ../../mod/filestorage.php:144 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../mod/register.php:209 -msgid "Please enter your invitation code" +#: ../../mod/filestorage.php:145 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../mod/register.php:212 -msgid "Your email address" +#: ../../mod/follow.php:25 +msgid "Channel added." msgstr "" -#: ../../mod/register.php:213 -msgid "Choose a password" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../mod/register.php:214 -msgid "Please re-enter your password" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." msgstr "" -#: ../../mod/network.php:79 -msgid "No such group" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../mod/network.php:118 -msgid "Search Results For:" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../mod/network.php:172 -msgid "Collection is empty" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" msgstr "" -#: ../../mod/network.php:180 -msgid "Collection: " +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../mod/network.php:193 -msgid "Connection: " +#: ../../mod/group.php:20 +msgid "Collection created." msgstr "" -#: ../../mod/network.php:196 -msgid "Invalid connection." +#: ../../mod/group.php:26 +msgid "Could not create collection." msgstr "" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." +#: ../../mod/group.php:54 +msgid "Collection updated." msgstr "" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" +#: ../../mod/group.php:86 +msgid "Create a collection of channels." 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/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " msgstr "" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" msgstr "" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" +#: ../../mod/group.php:107 +msgid "Collection removed." msgstr "" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." msgstr "" -#: ../../mod/delegate.php:131 -msgid "Add" +#: ../../mod/group.php:182 +msgid "Collection Editor" msgstr "" -#: ../../mod/delegate.php:132 -msgid "No entries." +#: ../../mod/group.php:196 +msgid "Members" msgstr "" -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" +#: ../../mod/group.php:198 +msgid "All Connected Channels" msgstr "" -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 +msgid "Help:" msgstr "" -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../mod/help.php:69 ../../index.php:237 +msgid "Not Found" msgstr "" -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" msgstr "" -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" msgstr "" -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " msgstr "" -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" +#: ../../mod/admin.php:52 +msgid "Theme settings updated." msgstr "" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." +#: ../../mod/admin.php:97 ../../mod/admin.php:413 +msgid "Site" msgstr "" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." +#: ../../mod/admin.php:98 +msgid "Accounts" msgstr "" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" +#: ../../mod/admin.php:99 ../../mod/admin.php:860 +msgid "Channels" msgstr "" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" +#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 +msgid "Plugins" msgstr "" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 +msgid "Themes" msgstr "" -#: ../../mod/manage.php:144 -msgid "Create a new channel" +#: ../../mod/admin.php:102 ../../mod/admin.php:515 +msgid "Server" msgstr "" -#: ../../mod/manage.php:149 -msgid "Current Channel" +#: ../../mod/admin.php:103 +msgid "Profile Config" msgstr "" -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." +#: ../../mod/admin.php:104 +msgid "DB updates" msgstr "" -#: ../../mod/manage.php:152 -msgid "Default Channel" +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 +msgid "Logs" +msgstr "" + +#: ../../mod/admin.php:124 +msgid "Plugin Features" +msgstr "" + +#: ../../mod/admin.php:126 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "" + +#: ../../mod/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 +#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:950 +#: ../../mod/admin.php:992 ../../mod/admin.php:1155 ../../mod/admin.php:1191 +#: ../../mod/admin.php:1278 +msgid "Administration" +msgstr "" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "" + +#: ../../mod/admin.php:216 ../../mod/admin.php:518 +msgid "Pending registrations" +msgstr "" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "" + +#: ../../mod/admin.php:219 ../../mod/admin.php:519 +msgid "Active plugins" +msgstr "" + +#: ../../mod/admin.php:333 +msgid "Site settings updated." +msgstr "" + +#: ../../mod/admin.php:364 +msgid "No special theme for accessibility" +msgstr "" + +#: ../../mod/admin.php:393 +msgid "Yes - with approval" +msgstr "" + +#: ../../mod/admin.php:399 +msgid "My site is not a public server" +msgstr "" + +#: ../../mod/admin.php:400 +msgid "My site has paid access only" +msgstr "" + +#: ../../mod/admin.php:401 +msgid "My site has free access only" +msgstr "" + +#: ../../mod/admin.php:402 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "" + +#: ../../mod/admin.php:416 +msgid "File upload" +msgstr "" + +#: ../../mod/admin.php:417 +msgid "Policies" +msgstr "" + +#: ../../mod/admin.php:422 +msgid "Site name" +msgstr "" + +#: ../../mod/admin.php:423 +msgid "Banner/Logo" +msgstr "" + +#: ../../mod/admin.php:424 +msgid "Administrator Information" +msgstr "" + +#: ../../mod/admin.php:424 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../mod/admin.php:425 +msgid "System language" +msgstr "" + +#: ../../mod/admin.php:426 +msgid "System theme" +msgstr "" + +#: ../../mod/admin.php:426 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../mod/admin.php:427 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:427 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:428 +msgid "Accessibility system theme" +msgstr "" + +#: ../../mod/admin.php:428 +msgid "Accessibility theme" +msgstr "" + +#: ../../mod/admin.php:430 +msgid "Enable Diaspora Protocol" +msgstr "" + +#: ../../mod/admin.php:430 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "" + +#: ../../mod/admin.php:431 +msgid "Allow Feeds as Connections" +msgstr "" + +#: ../../mod/admin.php:431 +msgid "(Heavy system resource usage)" +msgstr "" + +#: ../../mod/admin.php:432 +msgid "Maximum image size" +msgstr "" + +#: ../../mod/admin.php:432 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../mod/admin.php:433 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../mod/admin.php:434 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../mod/admin.php:435 +msgid "Register text" +msgstr "" + +#: ../../mod/admin.php:435 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:436 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../mod/admin.php:436 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../mod/admin.php:437 +msgid "Allowed friend domains" +msgstr "" + +#: ../../mod/admin.php:437 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../mod/admin.php:438 +msgid "Allowed email domains" +msgstr "" + +#: ../../mod/admin.php:438 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../mod/admin.php:439 +msgid "Block public" +msgstr "" + +#: ../../mod/admin.php:439 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: ../../mod/admin.php:440 +msgid "Verify Email Addresses" +msgstr "" + +#: ../../mod/admin.php:440 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "" + +#: ../../mod/admin.php:441 +msgid "Force publish" +msgstr "" + +#: ../../mod/admin.php:441 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:442 +msgid "Disable discovery tab" +msgstr "" + +#: ../../mod/admin.php:442 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "" + +#: ../../mod/admin.php:443 +msgid "No login on Homepage" +msgstr "" + +#: ../../mod/admin.php:443 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "" + +#: ../../mod/admin.php:445 +msgid "Proxy user" +msgstr "" + +#: ../../mod/admin.php:446 +msgid "Proxy URL" +msgstr "" + +#: ../../mod/admin.php:447 +msgid "Network timeout" +msgstr "" + +#: ../../mod/admin.php:447 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:448 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:448 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../mod/admin.php:449 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:449 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:450 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:450 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:506 +msgid "No server found" +msgstr "" + +#: ../../mod/admin.php:513 ../../mod/admin.php:737 +msgid "ID" +msgstr "" + +#: ../../mod/admin.php:513 +msgid "for channel" +msgstr "" + +#: ../../mod/admin.php:513 +msgid "on server" +msgstr "" + +#: ../../mod/admin.php:513 +msgid "Status" +msgstr "" + +#: ../../mod/admin.php:534 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:544 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../mod/admin.php:547 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:551 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:554 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:569 +msgid "No failed updates." msgstr "" -#: ../../mod/manage.php:153 -msgid "Make Default" +#: ../../mod/admin.php:573 +msgid "Failed Updates" msgstr "" -#: ../../mod/removeme.php:29 +#: ../../mod/admin.php:575 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:576 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:602 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:609 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:638 +msgid "Account not found" +msgstr "" + +#: ../../mod/admin.php:658 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: ../../mod/admin.php:658 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: ../../mod/admin.php:724 ../../mod/admin.php:736 +msgid "Users" +msgstr "" + +#: ../../mod/admin.php:726 ../../mod/admin.php:862 +msgid "select all" +msgstr "" + +#: ../../mod/admin.php:727 +msgid "User registrations waiting for confirm" +msgstr "" + +#: ../../mod/admin.php:728 +msgid "Request date" +msgstr "" + +#: ../../mod/admin.php:729 +msgid "No registrations." +msgstr "" + +#: ../../mod/admin.php:730 +msgid "Approve" +msgstr "" + +#: ../../mod/admin.php:731 +msgid "Deny" +msgstr "" + +#: ../../mod/admin.php:737 +msgid "Register date" +msgstr "" + +#: ../../mod/admin.php:737 +msgid "Last login" +msgstr "" + +#: ../../mod/admin.php:737 +msgid "Expires" +msgstr "" + +#: ../../mod/admin.php:737 +msgid "Service Class" +msgstr "" + +#: ../../mod/admin.php:739 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" +#: ../../mod/admin.php:740 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/removeme.php:58 +#: ../../mod/admin.php:773 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:780 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:799 +msgid "Channel not found" +msgstr "" + +#: ../../mod/admin.php:810 +#, php-format +msgid "Channel '%s' deleted" +msgstr "" + +#: ../../mod/admin.php:821 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "" + +#: ../../mod/admin.php:821 +#, php-format +msgid "Channel '%s' censored" +msgstr "" + +#: ../../mod/admin.php:864 +msgid "Censor" +msgstr "" + +#: ../../mod/admin.php:865 +msgid "Uncensor" +msgstr "" + +#: ../../mod/admin.php:868 +msgid "UID" +msgstr "" + +#: ../../mod/admin.php:870 msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" +#: ../../mod/admin.php:871 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/removeme.php:60 +#: ../../mod/admin.php:910 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../mod/admin.php:914 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +msgid "Disable" +msgstr "" + +#: ../../mod/admin.php:926 ../../mod/admin.php:1128 +msgid "Enable" +msgstr "" + +#: ../../mod/admin.php:952 ../../mod/admin.php:1157 +msgid "Toggle" +msgstr "" + +#: ../../mod/admin.php:960 ../../mod/admin.php:1167 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:961 ../../mod/admin.php:1168 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:1090 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:1149 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1197 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:1198 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1225 +msgid "Log settings updated." +msgstr "" + +#: ../../mod/admin.php:1281 +msgid "Clear" +msgstr "" + +#: ../../mod/admin.php:1287 +msgid "Debugging" +msgstr "" + +#: ../../mod/admin.php:1288 +msgid "Log file" +msgstr "" + +#: ../../mod/admin.php:1288 msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" +"Must be writable by web server. Relative to your Red top-level directory." msgstr "" -#: ../../mod/removeme.php:61 -msgid "Remove Channel" +#: ../../mod/admin.php:1289 +msgid "Log level" msgstr "" -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -msgid "Item not found" +#: ../../mod/admin.php:1336 +msgid "New Profile Field" +msgstr "" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Field nickname" +msgstr "" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "System name of field" +msgstr "" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Input type" +msgstr "" + +#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Field Name" +msgstr "" + +#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Label on profile pages" +msgstr "" + +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +msgid "Help text" msgstr "" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +msgid "Additional info (optional)" msgstr "" -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" +#: ../../mod/admin.php:1351 +msgid "Field definition not found" msgstr "" -#: ../../mod/editpost.php:53 -msgid "Delete item?" +#: ../../mod/admin.php:1357 +msgid "Edit Profile Field" msgstr "" -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -msgid "Insert YouTube video" +#: ../../mod/thing.php:96 +msgid "Thing updated" msgstr "" -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -msgid "Insert Vorbis [.ogg] video" +#: ../../mod/thing.php:156 +msgid "Object store: failed" msgstr "" -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -msgid "Insert Vorbis [.ogg] audio" +#: ../../mod/thing.php:160 +msgid "Thing added" msgstr "" -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" +#: ../../mod/thing.php:232 +msgid "Show Thing" msgstr "" -#: ../../mod/editwebpage.php:186 -msgid "Delete Webpage" +#: ../../mod/thing.php:239 +msgid "item not found." msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" +#: ../../mod/thing.php:270 +msgid "Edit Thing" msgstr "" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" msgstr "" -#: ../../mod/poke.php:161 -msgid "Recipient" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" msgstr "" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../mod/poke.php:165 -msgid "Make this post private" +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" msgstr "" -#: ../../mod/blocks.php:62 -msgid "Block Name" +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" msgstr "" -#: ../../mod/group.php:20 -msgid "Collection created." +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../mod/group.php:26 -msgid "Could not create collection." +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" msgstr "" -#: ../../mod/group.php:54 -msgid "Collection updated." +#: ../../mod/import.php:25 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." +#: ../../mod/import.php:51 +msgid "Nothing to import." msgstr "" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" msgstr "" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" +#: ../../mod/import.php:81 +msgid "Imported file is empty." msgstr "" -#: ../../mod/group.php:107 -msgid "Collection removed." +#: ../../mod/import.php:105 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." +#: ../../mod/import.php:123 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../mod/group.php:182 -msgid "Collection Editor" +#: ../../mod/import.php:133 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../mod/group.php:196 -msgid "Members" +#: ../../mod/import.php:451 +msgid "Import completed." msgstr "" -#: ../../mod/group.php:198 -msgid "All Connected Channels" +#: ../../mod/import.php:463 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." +#: ../../mod/import.php:468 +msgid "Import Channel" msgstr "" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" +#: ../../mod/import.php:469 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file. Only identity and connections/relationships will be " +"imported. Importation of content is not yet available." msgstr "" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" +#: ../../mod/import.php:470 +msgid "File to Upload" msgstr "" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " +#: ../../mod/import.php:471 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../mod/attach.php:9 -msgid "Item not available." +#: ../../mod/import.php:472 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." +#: ../../mod/import.php:473 +msgid "Your old login email address" msgstr "" -#: ../../mod/item.php:150 -msgid "Unable to locate original post." +#: ../../mod/import.php:474 +msgid "Your old login password" msgstr "" -#: ../../mod/item.php:383 -msgid "Empty post discarded." +#: ../../mod/import.php:475 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../mod/item.php:425 -msgid "Executable content type not permitted to this channel." +#: ../../mod/import.php:476 +msgid "Make this hub my primary location" msgstr "" -#: ../../mod/item.php:855 -msgid "System error. Post not saved." +#: ../../mod/import.php:477 +msgid "Import existing posts if possible" msgstr "" -#: ../../mod/item.php:1324 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../mod/item.php:1330 +#: ../../mod/invite.php:49 #, php-format -msgid "You have reached your limit of %1$.0f webpages." +msgid "%s : Not a valid email address." msgstr "" -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +#: ../../mod/invite.php:76 +msgid "Please join us on Red" msgstr "" -#: ../../mod/chatsvc.php:111 -msgid "Away" +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../mod/chatsvc.php:115 -msgid "Online" +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../mod/directory.php:223 -msgid "Finding:" -msgstr "" +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" -#: ../../mod/directory.php:228 -msgid "next page" +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" msgstr "" -#: ../../mod/directory.php:228 -msgid "previous page" +#: ../../mod/invite.php:129 +msgid "Send invitations" msgstr "" -#: ../../mod/directory.php:245 -msgid "No entries (some entries may be hidden)." +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../mod/match.php:16 -msgid "Profile Match" +#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Your message:" msgstr "" -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." msgstr "" -#: ../../mod/match.php:61 -msgid "is interested in:" +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " msgstr "" -#: ../../mod/match.php:69 -msgid "No matches" +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" msgstr "" -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." msgstr "" -#: ../../mod/siteinfo.php:90 -#, php-format -msgid "Version %s" +#: ../../mod/invite.php:138 +msgid "or visit " msgstr "" -#: ../../mod/siteinfo.php:111 -msgid "Installed plugins/addons/apps:" +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" msgstr "" -#: ../../mod/siteinfo.php:124 -msgid "No installed plugins/addons/apps" +#: ../../mod/item.php:150 +msgid "Unable to locate original post." msgstr "" -#: ../../mod/siteinfo.php:132 -msgid "Red" +#: ../../mod/item.php:409 +msgid "Empty post discarded." msgstr "" -#: ../../mod/siteinfo.php:133 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." +#: ../../mod/item.php:451 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/siteinfo.php:137 -msgid "Running at web location" +#: ../../mod/item.php:881 +msgid "System error. Post not saved." msgstr "" -#: ../../mod/siteinfo.php:138 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." +#: ../../mod/item.php:1349 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/siteinfo.php:139 -msgid "Bug reports and issues: please visit" +#: ../../mod/item.php:1355 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../mod/siteinfo.php:142 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../mod/siteinfo.php:144 -msgid "Site Administrators" +#: ../../mod/layouts.php:62 +msgid "Help with this feature" msgstr "" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." +#: ../../mod/layouts.php:85 +msgid "Layout Name" msgstr "" -#: ../../mod/appman.php:37 -msgid "Malformed app." +#: ../../mod/like.php:15 +msgid "Like/Dislike" msgstr "" -#: ../../mod/appman.php:80 -msgid "Embed code" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." msgstr "" -#: ../../mod/appman.php:86 -msgid "Edit App" +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." msgstr "" -#: ../../mod/appman.php:86 -msgid "Create App" +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." msgstr "" -#: ../../mod/appman.php:91 -msgid "Name of app" +#: ../../mod/like.php:119 +msgid "thing" msgstr "" -#: ../../mod/appman.php:91 ../../mod/appman.php:92 ../../mod/events.php:562 -#: ../../mod/events.php:581 -msgid "Required" +#: ../../mod/like.php:165 +msgid "Channel unavailable." msgstr "" -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" +#: ../../mod/like.php:204 +msgid "Previous action reversed." msgstr "" -#: ../../mod/appman.php:94 -msgid "Photo icon URL" +#: ../../mod/like.php:417 +msgid "Action completed." msgstr "" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" +#: ../../mod/like.php:418 +msgid "Thank you." msgstr "" -#: ../../mod/appman.php:95 -msgid "Version ID" +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." msgstr "" -#: ../../mod/appman.php:96 -msgid "Price of app" +#: ../../mod/lockview.php:52 +msgid "Visible to:" msgstr "" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" +#: ../../mod/viewconnections.php:58 +msgid "No connections." msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../mod/sources.php:45 -msgid "Source created." +#: ../../mod/viewconnections.php:86 +msgid "View Connnections" msgstr "" -#: ../../mod/sources.php:57 -msgid "Source updated." +#: ../../mod/lostpass.php:15 +msgid "No valid account found." msgstr "" -#: ../../mod/sources.php:82 -msgid "*" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 +#: ../../mod/lostpass.php:63 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" +#: ../../mod/lostpass.php:85 ../../boot.php:1506 +msgid "Password Reset" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." msgstr "" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." +#: ../../mod/lostpass.php:87 +msgid "Your new password is" msgstr "" -#: ../../mod/sources.php:130 -msgid "Edit Source" +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../mod/sources.php:131 -msgid "Delete Source" +#: ../../mod/lostpass.php:89 +msgid "click here to login" msgstr "" -#: ../../mod/sources.php:158 -msgid "Source removed" +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" msgstr "" -#: ../../mod/pubsites.php:19 +#: ../../mod/lostpass.php:123 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 "" - -#: ../../mod/pubsites.php:25 -msgid "Site URL" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../mod/pubsites.php:25 -msgid "Access Type" +#: ../../mod/lostpass.php:124 +msgid "Email Address" msgstr "" -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" +#: ../../mod/lostpass.php:125 +msgid "Reset" msgstr "" -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:440 -msgid "Location" +#: ../../mod/magic.php:70 +msgid "Hub not found." msgstr "" -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../mod/vote.php:97 +msgid "Total votes" msgstr "" -#: ../../mod/import.php:51 -msgid "Nothing to import." +#: ../../mod/vote.php:98 +msgid "Average Rating" msgstr "" -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." msgstr "" -#: ../../mod/import.php:81 -msgid "Imported file is empty." +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../mod/import.php:105 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." msgstr "" -#: ../../mod/import.php:123 -msgid "Channel clone failed. Import failed." +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../mod/import.php:133 -msgid "Cloned channel not found. Import failed." +#: ../../mod/mail.php:135 +msgid "Message deleted." msgstr "" -#: ../../mod/import.php:451 -msgid "Import completed." +#: ../../mod/mail.php:152 +msgid "Message recalled." msgstr "" -#: ../../mod/import.php:463 -msgid "You must be logged in to use this feature." +#: ../../mod/mail.php:218 +msgid "Send Private Message" msgstr "" -#: ../../mod/import.php:468 -msgid "Import Channel" +#: ../../mod/mail.php:219 ../../mod/mail.php:336 +msgid "To:" msgstr "" -#: ../../mod/import.php:469 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file. Only identity and connections/relationships will be " -"imported. Importation of content is not yet available." +#: ../../mod/mail.php:224 ../../mod/mail.php:338 +msgid "Subject:" msgstr "" -#: ../../mod/import.php:470 -msgid "File to Upload" +#: ../../mod/mail.php:235 +msgid "Send" msgstr "" -#: ../../mod/import.php:471 -msgid "Or provide the old server/hub details" +#: ../../mod/mail.php:262 +msgid "Message not found." msgstr "" -#: ../../mod/import.php:472 -msgid "Your old identity address (xyz@example.com)" +#: ../../mod/mail.php:305 +msgid "Delete message" msgstr "" -#: ../../mod/import.php:473 -msgid "Your old login email address" +#: ../../mod/mail.php:306 +msgid "Recall message" msgstr "" -#: ../../mod/import.php:474 -msgid "Your old login password" +#: ../../mod/mail.php:308 +msgid "Message has been recalled." msgstr "" -#: ../../mod/import.php:475 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." +#: ../../mod/mail.php:325 +msgid "Private Conversation" msgstr "" -#: ../../mod/import.php:476 -msgid "Make this hub my primary location" +#: ../../mod/mail.php:329 ../../mod/message.php:72 +msgid "Delete conversation" msgstr "" -#: ../../mod/import.php:477 -msgid "Import existing posts if possible" +#: ../../mod/mail.php:331 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" +#: ../../mod/mail.php:335 +msgid "Send Reply" msgstr "" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." +#: ../../mod/manage.php:144 +msgid "Create a new channel" msgstr "" -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." +#: ../../mod/manage.php:149 +msgid "Current Channel" msgstr "" -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." msgstr "" -#: ../../mod/mail.php:135 -msgid "Message deleted." +#: ../../mod/manage.php:152 +msgid "Default Channel" msgstr "" -#: ../../mod/mail.php:152 -msgid "Message recalled." +#: ../../mod/manage.php:153 +msgid "Make Default" msgstr "" -#: ../../mod/mail.php:218 -msgid "Send Private Message" +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" msgstr "" -#: ../../mod/mail.php:219 ../../mod/mail.php:336 -msgid "To:" +#: ../../mod/match.php:16 +msgid "Profile Match" msgstr "" -#: ../../mod/mail.php:224 ../../mod/mail.php:338 -msgid "Subject:" +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../mod/mail.php:235 -msgid "Send" +#: ../../mod/match.php:61 +msgid "is interested in:" msgstr "" -#: ../../mod/mail.php:262 -msgid "Message not found." +#: ../../mod/match.php:69 +msgid "No matches" msgstr "" -#: ../../mod/mail.php:305 -msgid "Delete message" +#: ../../mod/menu.php:21 +msgid "Menu updated." msgstr "" -#: ../../mod/mail.php:306 -msgid "Recall message" +#: ../../mod/menu.php:25 +msgid "Unable to update menu." msgstr "" -#: ../../mod/mail.php:308 -msgid "Message has been recalled." +#: ../../mod/menu.php:30 +msgid "Menu created." msgstr "" -#: ../../mod/mail.php:325 -msgid "Private Conversation" +#: ../../mod/menu.php:34 +msgid "Unable to create menu." msgstr "" -#: ../../mod/mail.php:331 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: ../../mod/menu.php:57 +msgid "Manage Menus" msgstr "" -#: ../../mod/mail.php:335 -msgid "Send Reply" +#: ../../mod/menu.php:60 +msgid "Drop" msgstr "" -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." +#: ../../mod/menu.php:62 +msgid "Create a new menu" msgstr "" -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../mod/menu.php:63 +msgid "Delete this menu" msgstr "" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:575 -msgid "Profile not found." +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" msgstr "" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." +#: ../../mod/menu.php:65 +msgid "Edit this menu" msgstr "" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" +#: ../../mod/menu.php:80 +msgid "New Menu" msgstr "" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" msgstr "" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" msgstr "" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" msgstr "" -#: ../../mod/profiles.php:390 -msgid "Marital Status" +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" msgstr "" -#: ../../mod/profiles.php:394 -msgid "Romantic Partner" +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../mod/profiles.php:398 -msgid "Likes" +#: ../../mod/menu.php:98 +msgid "Menu deleted." msgstr "" -#: ../../mod/profiles.php:402 -msgid "Dislikes" +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." msgstr "" -#: ../../mod/profiles.php:406 -msgid "Work/Employment" +#: ../../mod/menu.php:106 +msgid "Edit Menu" msgstr "" -#: ../../mod/profiles.php:409 -msgid "Religion" +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../mod/profiles.php:413 -msgid "Political Views" +#: ../../mod/message.php:41 +msgid "Conversation removed." msgstr "" -#: ../../mod/profiles.php:417 -msgid "Gender" +#: ../../mod/message.php:56 +msgid "No messages." msgstr "" -#: ../../mod/profiles.php:421 -msgid "Sexual Preference" +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" msgstr "" -#: ../../mod/profiles.php:425 -msgid "Homepage" +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" msgstr "" -#: ../../mod/profiles.php:429 -msgid "Interests" +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used " +"to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." msgstr "" -#: ../../mod/profiles.php:523 -msgid "Profile updated." +#: ../../mod/new_channel.php:113 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\" " msgstr "" -#: ../../mod/profiles.php:600 -msgid "Hide your contact/friend list from viewers of this profile?" +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" msgstr "" -#: ../../mod/profiles.php:642 -msgid "Edit Profile Details" +#: ../../mod/new_channel.php:115 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." msgstr "" -#: ../../mod/profiles.php:644 -msgid "View this profile" +#: ../../mod/new_channel.php:116 +msgid "" +"Or import an existing channel from another location" msgstr "" -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" +#: ../../mod/new_channel.php:118 +msgid "Channel Type" msgstr "" -#: ../../mod/profiles.php:647 -msgid "Create a new profile using these settings" +#: ../../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 "" -#: ../../mod/profiles.php:648 -msgid "Clone this profile" +#: ../../mod/home.php:46 +msgid "Red Matrix - "The Network"" msgstr "" -#: ../../mod/profiles.php:649 -msgid "Delete this profile" +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../mod/profiles.php:651 -msgid "Import profile from file" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." msgstr "" -#: ../../mod/profiles.php:652 -msgid "Export profile to file" +#: ../../mod/notifications.php:35 +msgid "Discard" msgstr "" -#: ../../mod/profiles.php:653 -msgid "Profile Name:" +#: ../../mod/notifications.php:94 ../../mod/notify.php:53 +msgid "No more system notifications." msgstr "" -#: ../../mod/profiles.php:654 -msgid "Your Full Name:" +#: ../../mod/notifications.php:98 ../../mod/notify.php:57 +msgid "System Notifications" msgstr "" -#: ../../mod/profiles.php:655 -msgid "Title/Description:" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." msgstr "" -#: ../../mod/profiles.php:656 -msgid "Your Gender:" +#: ../../mod/oexchange.php:37 +msgid "Post successful." msgstr "" -#: ../../mod/profiles.php:657 -#, php-format -msgid "Birthday (%s):" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" msgstr "" -#: ../../mod/profiles.php:658 -msgid "Street Address:" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../mod/profiles.php:659 -msgid "Locality/City:" +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." msgstr "" -#: ../../mod/profiles.php:660 -msgid "Postal/Zip Code:" +#: ../../mod/appman.php:37 +msgid "Malformed app." msgstr "" -#: ../../mod/profiles.php:661 -msgid "Country:" +#: ../../mod/appman.php:80 +msgid "Embed code" msgstr "" -#: ../../mod/profiles.php:662 -msgid "Region/State:" +#: ../../mod/appman.php:86 +msgid "Edit App" msgstr "" -#: ../../mod/profiles.php:663 -msgid " Marital Status:" +#: ../../mod/appman.php:86 +msgid "Create App" msgstr "" -#: ../../mod/profiles.php:664 -msgid "Who: (if applicable)" +#: ../../mod/appman.php:91 +msgid "Name of app" msgstr "" -#: ../../mod/profiles.php:665 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" msgstr "" -#: ../../mod/profiles.php:666 -msgid "Since [date]:" +#: ../../mod/appman.php:94 +msgid "Photo icon URL" msgstr "" -#: ../../mod/profiles.php:668 -msgid "Homepage URL:" +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../mod/profiles.php:671 -msgid "Religious Views:" +#: ../../mod/appman.php:95 +msgid "Version ID" msgstr "" -#: ../../mod/profiles.php:672 -msgid "Keywords:" +#: ../../mod/appman.php:96 +msgid "Price of app" msgstr "" -#: ../../mod/profiles.php:675 -msgid "Example: fishing photography software" +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../mod/profiles.php:676 -msgid "Used in directory listings" +#: ../../mod/poll.php:64 +msgid "Poll" msgstr "" -#: ../../mod/profiles.php:677 -msgid "Tell us about yourself..." +#: ../../mod/poll.php:69 +msgid "View Results" msgstr "" -#: ../../mod/profiles.php:678 -msgid "Hobbies/Interests" +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../mod/profiles.php:679 -msgid "Contact information and Social Networks" +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../mod/profiles.php:680 -msgid "My other channels" +#: ../../mod/removeaccount.php:58 +msgid "" +"This will completely remove this account including all its channels from the " +"network. Once this has been done it is not recoverable." msgstr "" -#: ../../mod/profiles.php:681 -msgid "Musical interests" +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" msgstr "" -#: ../../mod/profiles.php:682 -msgid "Books, literature" +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" msgstr "" -#: ../../mod/profiles.php:683 -msgid "Television" +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." msgstr "" -#: ../../mod/profiles.php:684 -msgid "Film/dance/culture/entertainment" +#: ../../mod/impel.php:33 +msgid "webpage" msgstr "" -#: ../../mod/profiles.php:685 -msgid "Love/romance" +#: ../../mod/impel.php:38 +msgid "block" msgstr "" -#: ../../mod/profiles.php:686 -msgid "Work/employment" +#: ../../mod/impel.php:43 +msgid "layout" msgstr "" -#: ../../mod/profiles.php:687 -msgid "School/education" +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../mod/profiles.php:693 -msgid "This is your default profile." +#: ../../mod/locs.php:47 ../../mod/locs.php:74 +msgid "Location not found." msgstr "" -#: ../../mod/profiles.php:747 -msgid "Edit/Manage Profiles" +#: ../../mod/locs.php:78 +msgid "Primary location cannot be removed." msgstr "" -#: ../../mod/profiles.php:748 -msgid "Add profile things" +#: ../../view/theme/apw/php/config.php:202 +#: ../../view/theme/apw/php/config.php:236 +msgid "Schema Default" msgstr "" -#: ../../mod/profiles.php:749 -msgid "Include desirable objects in your profile" +#: ../../view/theme/apw/php/config.php:203 +msgid "Sans-Serif" msgstr "" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" +#: ../../view/theme/apw/php/config.php:204 +msgid "Monospace" msgstr "" -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" +#: ../../view/theme/apw/php/config.php:259 +#: ../../view/theme/blogga/php/config.php:69 +#: ../../view/theme/blogga/view/theme/blog/config.php:69 +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Theme settings" msgstr "" -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" +#: ../../view/theme/apw/php/config.php:260 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set scheme" msgstr "" -#: ../../mod/common.php:10 -msgid "No channel." +#: ../../view/theme/apw/php/config.php:261 +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" msgstr "" -#: ../../mod/common.php:39 -msgid "Common connections" +#: ../../view/theme/apw/php/config.php:262 +msgid "Set font face" msgstr "" -#: ../../mod/common.php:44 -msgid "No connections in common." +#: ../../view/theme/apw/php/config.php:263 +msgid "Set iconset" msgstr "" -#: ../../mod/like.php:15 -msgid "Like/Dislike" +#: ../../view/theme/apw/php/config.php:264 +msgid "Set big shadow size, default 15px 15px 15px" msgstr "" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." +#: ../../view/theme/apw/php/config.php:265 +msgid "Set small shadow size, default 5px 5px 5px" msgstr "" -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +#: ../../view/theme/apw/php/config.php:266 +msgid "Set shadow color, default #000" msgstr "" -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." +#: ../../view/theme/apw/php/config.php:267 +msgid "Set radius size, default 5px" msgstr "" -#: ../../mod/like.php:119 -msgid "thing" +#: ../../view/theme/apw/php/config.php:268 +msgid "Set line-height for posts and comments" msgstr "" -#: ../../mod/like.php:165 -msgid "Channel unavailable." +#: ../../view/theme/apw/php/config.php:269 +msgid "Set background image" msgstr "" -#: ../../mod/like.php:204 -msgid "Previous action reversed." +#: ../../view/theme/apw/php/config.php:270 +msgid "Set background attachment" msgstr "" -#: ../../mod/like.php:417 -msgid "Action completed." +#: ../../view/theme/apw/php/config.php:271 +msgid "Set background color" msgstr "" -#: ../../mod/like.php:418 -msgid "Thank you." +#: ../../view/theme/apw/php/config.php:272 +msgid "Set section background image" msgstr "" -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." +#: ../../view/theme/apw/php/config.php:273 +msgid "Set section background color" msgstr "" -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" +#: ../../view/theme/apw/php/config.php:274 +msgid "Set color of items - use hex" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" +#: ../../view/theme/apw/php/config.php:275 +msgid "Set color of links - use hex" msgstr "" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: ../../view/theme/apw/php/config.php:276 +msgid "Set max-width for items. Default 400px" msgstr "" -#: ../../mod/api.php:89 -msgid "Please login to continue." +#: ../../view/theme/apw/php/config.php:277 +msgid "Set min-width for items. Default 240px" 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?" +#: ../../view/theme/apw/php/config.php:278 +msgid "Set the generic content wrapper width. Default 48%" msgstr "" -#: ../../mod/chat.php:167 -msgid "Room not found" +#: ../../view/theme/apw/php/config.php:279 +msgid "Set color of fonts - use hex" msgstr "" -#: ../../mod/chat.php:178 -msgid "Leave Room" +#: ../../view/theme/apw/php/config.php:280 +msgid "Set background-size element" msgstr "" -#: ../../mod/chat.php:179 -msgid "Delete This Room" +#: ../../view/theme/apw/php/config.php:281 +msgid "Item opacity" msgstr "" -#: ../../mod/chat.php:180 -msgid "I am away right now" +#: ../../view/theme/apw/php/config.php:282 +msgid "Display post previews only" msgstr "" -#: ../../mod/chat.php:181 -msgid "I am online" +#: ../../view/theme/apw/php/config.php:283 +msgid "Display side bar on channel page" msgstr "" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" +#: ../../view/theme/apw/php/config.php:284 +msgid "Colour of the navigation bar" msgstr "" -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" +#: ../../view/theme/apw/php/config.php:285 +msgid "Item float" msgstr "" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" +#: ../../view/theme/apw/php/config.php:286 +msgid "Left offset of the section element" msgstr "" -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../view/theme/apw/php/config.php:287 +msgid "Right offset of the section element" msgstr "" -#: ../../mod/events.php:91 -msgid "Event title and start time are required." +#: ../../view/theme/apw/php/config.php:288 +msgid "Section width" msgstr "" -#: ../../mod/events.php:105 -msgid "Event not found." +#: ../../view/theme/apw/php/config.php:289 +msgid "Left offset of the aside" msgstr "" -#: ../../mod/events.php:369 -msgid "l, F j" +#: ../../view/theme/apw/php/config.php:290 +msgid "Right offset of the aside element" msgstr "" -#: ../../mod/events.php:391 -msgid "Edit event" +#: ../../view/theme/blogga/php/config.php:47 +#: ../../view/theme/blogga/view/theme/blog/config.php:47 +msgid "None" msgstr "" -#: ../../mod/events.php:437 -msgid "Create New Event" +#: ../../view/theme/blogga/php/config.php:70 +#: ../../view/theme/blogga/view/theme/blog/config.php:70 +msgid "Header image" msgstr "" -#: ../../mod/events.php:438 -msgid "Previous" +#: ../../view/theme/blogga/php/config.php:71 +#: ../../view/theme/blogga/view/theme/blog/config.php:71 +msgid "Header image only on profile pages" msgstr "" -#: ../../mod/events.php:536 -msgid "hour:minute" +#: ../../view/theme/redbasic/php/config.php:84 +msgid "Light (Red Matrix default)" msgstr "" -#: ../../mod/events.php:556 -msgid "Event details" +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Narrow navbar" msgstr "" -#: ../../mod/events.php:557 -#, php-format -msgid "Format is %s %s." +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Navigation bar background color" msgstr "" -#: ../../mod/events.php:558 -msgid "Starting date and Title are required." +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Navigation bar gradient top color" msgstr "" -#: ../../mod/events.php:562 -msgid "Event Starts:" +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Navigation bar gradient bottom color" msgstr "" -#: ../../mod/events.php:570 -msgid "Finish date/time is not known or not relevant" +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Navigation active button gradient top color" msgstr "" -#: ../../mod/events.php:572 -msgid "Event Finishes:" +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Navigation active button gradient bottom color" msgstr "" -#: ../../mod/events.php:575 -msgid "Adjust for viewer timezone" +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Navigation bar border color " msgstr "" -#: ../../mod/events.php:577 -msgid "Description:" +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Navigation bar icon color " msgstr "" -#: ../../mod/events.php:581 -msgid "Title:" +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Navigation bar active icon color " msgstr "" -#: ../../mod/events.php:583 -msgid "Share this event" +#: ../../view/theme/redbasic/php/config.php:113 +msgid "link color" msgstr "" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set font-color for banner" msgstr "" -#: ../../mod/notifications.php:35 -msgid "Discard" +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set the background color" msgstr "" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set the background image" msgstr "" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set the background color of items" msgstr "" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" +#: ../../view/theme/redbasic/php/config.php:118 +msgid "Set the background color of comments" msgstr "" -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" +#: ../../view/theme/redbasic/php/config.php:119 +msgid "Set the border color of comments" msgstr "" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../view/theme/redbasic/php/config.php:120 +msgid "Set the indent for comments" msgstr "" -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." +#: ../../view/theme/redbasic/php/config.php:121 +msgid "Set the basic color for item icons" msgstr "" -#: ../../mod/lostpass.php:87 -msgid "Your new password is" +#: ../../view/theme/redbasic/php/config.php:122 +msgid "Set the hover color for item icons" msgstr "" -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Set font-size for the entire application" msgstr "" -#: ../../mod/lostpass.php:89 -msgid "click here to login" +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-color for posts and comments" msgstr "" -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../view/theme/redbasic/php/config.php:126 +msgid "Set radius of corners" msgstr "" -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" +#: ../../view/theme/redbasic/php/config.php:127 +msgid "Set shadow depth of photos" msgstr "" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Set maximum width of conversation regions" msgstr "" -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../view/theme/redbasic/php/config.php:129 +msgid "Center conversation regions" msgstr "" -#: ../../mod/lostpass.php:124 -msgid "Email Address" +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Set minimum opacity of nav bar - to hide it" msgstr "" -#: ../../mod/lostpass.php:125 -msgid "Reset" +#: ../../view/theme/redbasic/php/config.php:131 +msgid "Set size of conversation author photo" msgstr "" -#: ../../mod/layouts.php:62 -msgid "Help with this feature" +#: ../../view/theme/redbasic/php/config.php:132 +msgid "Set size of followup author photos" msgstr "" -#: ../../mod/layouts.php:85 -msgid "Layout Name" +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Sloppy photo albums" msgstr "" -#: ../../mod/editblock.php:77 -msgid "Edit Block" +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../mod/editblock.php:87 -msgid "Delete block?" +#: ../../boot.php:1294 +#, php-format +msgid "Update %s failed. See error logs." msgstr "" -#: ../../mod/editblock.php:153 -msgid "Delete Block" +#: ../../boot.php:1297 +#, php-format +msgid "Update Error at %s" msgstr "" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" +#: ../../boot.php:1471 +msgid "" +"Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" +#: ../../boot.php:1499 +msgid "Password" msgstr "" -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" +#: ../../boot.php:1500 +msgid "Remember me" msgstr "" -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" +#: ../../boot.php:1505 +msgid "Forgot your password?" msgstr "" -#: ../../mod/follow.php:25 -msgid "Channel added." +#: ../../boot.php:1570 +msgid "permission denied" msgstr "" -#: ../../mod/locs.php:47 ../../mod/locs.php:74 -msgid "Location not found." +#: ../../boot.php:1571 +msgid "Got Zot?" msgstr "" -#: ../../mod/locs.php:78 -msgid "Primary location cannot be removed." +#: ../../boot.php:2005 +msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index e93632a42..98534153c 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-10-23.837 +2014-10-24.838 -- cgit v1.2.3 From 1845ddc4c3d3f729dde3905f0f87741ac3d3bf66 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 24 Oct 2014 04:17:48 -0700 Subject: don't decrypt the message body more than once. --- include/bb2diaspora.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 4f37e5aa8..d094e33c2 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -340,8 +340,13 @@ function bb2diaspora_itembody($item,$force_update = false) { if(array_key_exists('item_flags',$item) && ($item['item_flags'] & ITEM_OBSCURED)) { $key = get_config('system','prvkey'); - $newitem['title'] = (($item['title']) ? crypto_unencapsulate(json_decode($item['title'],true),$key) : ''); - $newitem['body'] = (($item['body']) ? crypto_unencapsulate(json_decode($item['body'],true),$key) : ''); + $b = json_decode($item['title'],true); + // if called from diaspora_process_outbound, this decoding has already been done. + // Everything else that calls us will not yet be decoded. + if($b && is_array($b) && array_key_exists('iv',$b)) { + $newitem['title'] = (($item['title']) ? crypto_unencapsulate(json_decode($item['title'],true),$key) : ''); + $newitem['body'] = (($item['body']) ? crypto_unencapsulate(json_decode($item['body'],true),$key) : ''); + } } bb2diaspora_itemwallwall($newitem); -- cgit v1.2.3 From d98fcdf3fb6fa7d9e300bdcc470f0d77e470d205 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 24 Oct 2014 17:08:50 +0200 Subject: update to German help --- doc/de/about.bb | 2 +- doc/de/channels.bb | 6 +++--- doc/de/features.bb | 10 ++++------ doc/de/main.bb | 17 ++++++----------- doc/de/profiles.bb | 2 +- doc/de/registration.bb | 4 ++-- doc/macros/de/addons_footer.bb | 2 ++ doc/macros/de/cloud_footer.bb | 2 ++ doc/macros/de/main_footer.bb | 1 + doc/macros/de/troubleshooting_footer.bb | 2 ++ 10 files changed, 24 insertions(+), 24 deletions(-) create mode 100644 doc/macros/de/addons_footer.bb create mode 100644 doc/macros/de/cloud_footer.bb create mode 100644 doc/macros/de/main_footer.bb create mode 100644 doc/macros/de/troubleshooting_footer.bb diff --git a/doc/de/about.bb b/doc/de/about.bb index 581f55569..313337f17 100644 --- a/doc/de/about.bb +++ b/doc/de/about.bb @@ -20,4 +20,4 @@ Dabei bietet Red einige einzigartige Leckerbissen: [b]Privatsphäre:[/b] Red-Identitäten (Zot-IDs) können gelöscht, gesichert/heruntergeladen und geklont werden. Du hast volle Kontrolle über Deine Daten. Wenn Du Dich entscheidest, all Deine Daten und Deine Zot-ID zu löschen, musst Du nur auf einen Link klicken, und sie werden sofort von dem Server gelöscht. Keine Fragen, keine Umstände. -[url=[baseurl]/help]Zurück zur Hilfe-Startseite[/url] +#include doc/macros/main_footer.bb; diff --git a/doc/de/channels.bb b/doc/de/channels.bb index 0308d4689..41ea68404 100644 --- a/doc/de/channels.bb +++ b/doc/de/channels.bb @@ -11,9 +11,9 @@ Die wichtigsten Funktionen für einen Kanal, der einen selbst repräsentiert, si Kurz gesagt, ein Kanal der Dich repräsentiert ist sozusagen „Ich im Internet“. -Du musst Deinen ersten Kanal erstellen, während Du Dich anmeldest. Du kannst auch weitere Kanäle erstellen und zwischen ihnen wechseln, indem Du auf „Kanal-Auswahl“ klickst. +Du musst Deinen ersten Kanal erstellen, während Du Dich anmeldest. Du kannst auch weitere Kanäle erstellen und zwischen ihnen wechseln, indem Du auf „Kanal-Manager“ im Menü unter Deinem Profilbild klickst. -Du wirst nach einem Kanalnamen und einem kurzen Spitznamen gefragt. Für einen Kanal, der Dich repräsentiert, ist es eine gute Idee, hier Deinen Realnamen anzugeben, damit Deine Freunde Dich finden und sich mit Dir verbinden können. Der Spitzname wird genutzt, um Deinen „Webbie“ zu erstellen. Das ist so etwas wie ein Username und sieht aus wie eine E-Mail-Adresse, zum Beispiel spitzname@red-hub.de. Überlege ein bisschen, was Du als Spitzname nutzen willst. Stell Dir vor, Du wirst nach Deinem Webbie gefragt und musst Deinem bekannten dann buchstabieren, dass Dein Webbie „llamas.sind-cool_274@example.com“ ist. „llamassindcool@exmaple.com“ wäre da viel einfacher gewesen. +Du wirst nach einem Kanalnamen und einem kurzen Spitznamen gefragt. Für einen Kanal, der Dich repräsentiert, ist es eine gute Idee, hier Deinen Realnamen anzugeben, damit Deine Freunde Dich finden und sich mit Dir verbinden können. Der Spitzname wird genutzt, um Deinen „Webbie“ zu erstellen. Das ist so etwas wie ein Username und sieht aus wie eine E-Mail-Adresse, zum Beispiel spitzname@red-hub.de. Überlege ein bisschen, was Du als Spitzname nutzen willst. Stell Dir vor, Du wirst nach Deinem Webbie gefragt und musst Deinem Bekannten dann buchstabieren, dass Dein Webbie „llamas.sind-cool_274@example.com“ ist. „llamassindcool@exmaple.com“ wäre da viel einfacher gewesen. Nachdem Du Deinen Kanal erstellt hast, wirst Du zu den Einstellungen weitergeleitet. Hier kannst Du Deinen Kanal einrichten und die Standard-Berechtigungen setzen. @@ -23,4 +23,4 @@ Die „Matrix“-Seite enthält alle neuen Beiträge aus der gesamten Red Matrix Wie zu Anfang erwähnt sind viele Arten von Kanälen möglich, diese unterscheiden sich hauptsächlich durch die Berechtigungen. Das Anlegen dieser Kanäle unterscheidet sich dagegen nicht. Beispiel: Um einen Kanal zum Austausch von Dokumenten zu erstellen, wirst du vermutlich die Berechtigung „Kann in meinen öffentlichen Dateiordner schreiben“ freizügiger einstellen. Für weitere Informationen sieh bitte in der Hilfe unter Zugriffsrechte nach. -[url=[baseurl]/help]Zurück zur Hilfe-Startseite[/url] +#include doc/macros/main_footer.bb; diff --git a/doc/de/features.bb b/doc/de/features.bb index 65ea45679..41dee301a 100644 --- a/doc/de/features.bb +++ b/doc/de/features.bb @@ -1,12 +1,10 @@ -[size=24][b]Features der Red-Matrix[/b][/size] - -[url=[baseurl]/help]Zurück zur Hilfe-Startseite[/url] +[size=large][b]Features der Red-Matrix[/b][/size] Die Red-Matrix ist ein Allzweck-Kommunikationsnetzwerk mit einigen einzigartigen Features. Sie wurde für eine große Bandbreite von Nutzern entwickelt, von Nutzern sozialer Netzwerke über technisch nicht interessierte Blogger bis hin zu PHP-Experten und erfahrenen Systemadministratoren. Diese Seite listet einige der Kern-Features von Red auf, die in der offiziellen Distribution enthalten sind. Wie immer bei freier Open-Source-Software sind den Möglichkeiten keine Grenzen gesetzt. Beliebige Erweiterungen, Addons, Themes und Konfigurationen sind möglich. -[b][size=18]Entwickelt für Privatsphäre und Freiheit[/size][/b] +[h2]Entwickelt für Privatsphäre und Freiheit[/h2] Eines der Design-Ziele von Red ist einfache Kommunikations über das Web, ohne die Privatsphäre zu vernachlässigen, wenn die Nutzer das Wünschen. Um dieses Ziel zu erreichen, verfügt Red über einige Features, die beliebige Stufen des Privatsphäre-Schutzes ermöglichen: @@ -83,7 +81,7 @@ Solche Backups sind ein Weg, um Klone zu erstellen, und können genutzt werden, Konten und Kanäle können sofort gelöscht werden, indem Du einfach auf einen Link klickst. Das wars. Alle damit verbundenen Inhalte werden sofort aus der Matrix gelöscht (inklusiver aller Beiträge und sonstiger Inhalte, die von dem gelöschten Konto/Kanal erzeugt wurden). -[b][size=18]Erstellen von Inhalten[/size][/b] +[h2]Erstellen von Inhalten[/h2] [b]Beiträge schreiben[/b] @@ -105,4 +103,4 @@ Genau wie jedes andere Blog-System, soziale Netzwerk oder Mikro-Blogging-Dienst Vor dem Absenden kann eine Vorschau von Beiträgen betrachtet werden. -[url=[baseurl]/help]Zurück zur Hilfe-Startseite[/url] +#include doc/macros/main_footer.bb; diff --git a/doc/de/main.bb b/doc/de/main.bb index fe90a075d..a3582e17c 100644 --- a/doc/de/main.bb +++ b/doc/de/main.bb @@ -24,7 +24,7 @@ Zot ist das großartige neue Kommunikationsprotokoll, das extra für die Red-Mat [zrl=[baseurl]/help/cloud]Cloud-Speicher[/zrl] [zrl=[baseurl]/help/remove_account]Einen Kanal oder das ganze Konto löschen[/zrl] -[size=large][b]Nutzung der Red-Matrix[/b][/size] +[size=large][b]Hilfe für RedMatrix-Mitglieder[/b][/size] [zrl=[baseurl]/help/tags_and_mentions]Tags und Erwähnungen[/zrl] [zrl=[baseurl]/help/webpages]Webseiten[/zrl] [zrl=[baseurl]/help/bbcode]BBcode-Referenz für Posts und Kommentare[/zrl] @@ -32,25 +32,19 @@ Zot ist das großartige neue Kommunikationsprotokoll, das extra für die Red-Mat [zrl=[baseurl]/help/cloud_desktop_clients]Desktop-Anwendungen und die Cloud[/zrl] [zrl=[baseurl]/help/AdvancedSearch]Fortgeschrittene Suche im Kanalverzeichnis[/zrl] [zrl=[baseurl]/help/addons]Hilfe zu Addons[/zrl] -[zrl=[baseurl]/help/nomadic-identity]Got Zot? Nomadische Identität, Kanal-Klone und mehr[/zrl] [zrl=[baseurl]/help/diaspora_compat]Kompatibilität zum Diaspora-Protokoll (zur Kommunikation mit Kontakten aus Diaspora und Friendica)[/zrl] +[zrl=[baseurl]/help/faq_members]FAQ für Mitglieder[/zrl] - -[size=large][b]Häufig gestellte Fragen für Nutzer[/b][/size] -[zrl=[baseurl]/help/faq_users]FAQ für Nutzer[/zrl] - -[size=large][b]Für Administratoren[/b][/size] +[size=large][b]Hilfe für Administratoren[/b][/size] [zrl=[baseurl]/help/install]Installation[/zrl] [zrl=[baseurl]/help/debian_install]Einfache Installation unter Debian mit einem Skript[/zrl] [zrl=[baseurl]/help/red2pi]Red auf einem Raspberry Pi installieren[/zrl] -[zrl=[baseurl]/help/problems-following-an-update]Probleme nach einem Software-Update[/zrl] [zrl=[baseurl]/help/troubleshooting]Troubleshooting-Tipps[/zrl] - -[size=large][b]Häufig gestellte Fragen für Hub-Admins[/b][/size] +[zrl=[baseurl]/help/hidden_configs]Versteckte Konfigurations-Optionen[/zrl] [zrl=[baseurl]/help/faq_admins]FAQ für Admins[/zrl] [size=large][b]Technische Dokumentation[/b][/size] -[zrl=[baseurl]/help/Zot---A-High-Level-Overview]Zot – ein erster Überblick[/zrl] +[zrl=[baseurl]/help/Zot---A-High-Level-Overview]Zot – ein grober Überblick[/zrl] [zrl=[baseurl]/help/zot]Eine Einführung ins Zot-Protokoll[/zrl] [zrl=[baseurl]/help/zot_structures]Zot-Strukturen[/zrl] [zrl=[baseurl]/help/comanche]Seitenbeschreibung in Comanche[/zrl] @@ -79,5 +73,6 @@ Zot ist das großartige neue Kommunikationsprotokoll, das extra für die Red-Mat [url=https://github.com/friendica/red-addons]Addons-Website[/url] [url=https://zothub.com/channel/one]Entwickler-Kanal[/url] +[url=[baseurl]/help/credits]RedMatrix Credits[/url] [size=large][b]Über diesen Red-Server[/b][/size] [zrl=[baseurl]/siteinfo]Informationen zu diesem Server und der Red-Version[/zrl] diff --git a/doc/de/profiles.bb b/doc/de/profiles.bb index d6603dd38..cc2d94fb6 100644 --- a/doc/de/profiles.bb +++ b/doc/de/profiles.bb @@ -36,4 +36,4 @@ Im Verzeichnis (Kanal-Anzeiger) kannst Du nach Leuten suchen, die ihre Profile v Auf Deiner „Verbindungen“-Seite und im Verzeichnis (Kanal-Anzeiger) gibt es einen Link „Vorschläge“ bzw. „Kanal-Vorschläge“. Dort findest Du Kanäle, die gleiche oder ähnliche Schlüsselwörter im Profil haben wie Du. Je mehr Schlüsselwörter Du in Dein Standard-Profil einträgst, desto besser werden die Suchergebnisse. Sie sind nach relevanz sortiert. -[zrl=[baseurl]/help]Zurück zur Hilfe-Startseite[/zrl] +#include doc/macros/main_footer.bb; diff --git a/doc/de/registration.bb b/doc/de/registration.bb index e6c11810a..fa331e561 100644 --- a/doc/de/registration.bb +++ b/doc/de/registration.bb @@ -27,10 +27,10 @@ Der Kanal-Name ist der Titel oder eine kurze Beschreibung des Kanals. Der „Spi Wenn Dein Kanal angelegt ist, geht es direkt weiter zu den Einstellungen. Dort kannst Du Zugriffsrechte setzen, Funktionen zu- oder abschalten und so weiter. Diese Punkte werden auf den entsprechenden Hilfeseiten erklärt. Siehe auch -[zrl=[baseurl]/help/accounts_profiles_channels_basics]Konten, Profile und Kanäle kurz erklärt[/zrl] +[zrl=[baseurl]/help/accounts_profiles_channels_basics]Grundlagen zu Identitäten in der RedMatrix[/zrl] [zrl=[baseurl]/help/accounts]Konten[/zrl] [zrl=[baseurl]/help/profiles]Profile[/zrl] [zrl=[baseurl]/help/permissions]Zugriffsrechte[/zrl] [zrl=[baseurl]/help/remove_account]Konto löschen[/zrl] -[url=[baseurl]/help]Zurück zur Hilfe-Startseite[/url] +#include doc/macros/main_footer.bb; diff --git a/doc/macros/de/addons_footer.bb b/doc/macros/de/addons_footer.bb new file mode 100644 index 000000000..068bb7ec7 --- /dev/null +++ b/doc/macros/de/addons_footer.bb @@ -0,0 +1,2 @@ +Zurück zur [zrl=[baseurl]/help/addons]Addons-Hilfe[/zrl] +Zurück zur [zrl=[baseurl]/help/main]Hilfe-Startseite[/zrl] diff --git a/doc/macros/de/cloud_footer.bb b/doc/macros/de/cloud_footer.bb new file mode 100644 index 000000000..921448a3c --- /dev/null +++ b/doc/macros/de/cloud_footer.bb @@ -0,0 +1,2 @@ +Zurück zur [zrl=[baseurl]/help/cloud]Cloud-Hilfe[/zrl] +Zurück zur [zrl=[baseurl]/help/main]Hilfe-Startseite[/zrl] diff --git a/doc/macros/de/main_footer.bb b/doc/macros/de/main_footer.bb new file mode 100644 index 000000000..e71603626 --- /dev/null +++ b/doc/macros/de/main_footer.bb @@ -0,0 +1 @@ +Zurück zur [zrl=[baseurl]/help/main]Hilfe-Startseite[/zrl] diff --git a/doc/macros/de/troubleshooting_footer.bb b/doc/macros/de/troubleshooting_footer.bb new file mode 100644 index 000000000..be8c13a28 --- /dev/null +++ b/doc/macros/de/troubleshooting_footer.bb @@ -0,0 +1,2 @@ +Zurück zur [zrl=[baseurl]/help/troubleshooting]Troubleshooting-Startseite[/zrl] +Zurück zur [zrl=[baseurl]/help/troubleshooting]Hilfe-Startseite[/zrl] -- cgit v1.2.3 From 4d0455befd674e622a5dd9f4baf586e38feca3f8 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 24 Oct 2014 17:09:37 +0200 Subject: correction to addon footer --- doc/macros/addons_footer.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/macros/addons_footer.bb b/doc/macros/addons_footer.bb index f6b687a23..32814c59b 100644 --- a/doc/macros/addons_footer.bb +++ b/doc/macros/addons_footer.bb @@ -1,2 +1,2 @@ Return to the [zrl=[baseurl]/help/addons]Addons documentation[/zrl] -Return to the [zrl=[baseurl]/help/addons]Main documentation[/zrl] +Return to the [zrl=[baseurl]/help/main]Main documentation[/zrl] -- cgit v1.2.3 From 38801f802f9fd0eedd68e00ddf6707ace7220eba Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 24 Oct 2014 17:46:31 +0100 Subject: Issue #661 --- mod/item.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/item.php b/mod/item.php index ad567b21f..dd6d0e217 100644 --- a/mod/item.php +++ b/mod/item.php @@ -77,7 +77,7 @@ function item_post(&$a) { $preview = ((x($_REQUEST,'preview')) ? intval($_REQUEST['preview']) : 0); $categories = ((x($_REQUEST,'category')) ? escape_tags($_REQUEST['category']) : ''); $webpage = ((x($_REQUEST,'webpage')) ? intval($_REQUEST['webpage']) : 0); - $pagetitle = ((x($_REQUEST,'pagetitle')) ? escape_tags($_REQUEST['pagetitle']) : ''); + $pagetitle = ((x($_REQUEST,'pagetitle')) ? escape_tags(urlencode($_REQUEST['pagetitle'])) : ''); $layout_mid = ((x($_REQUEST,'layout_mid')) ? escape_tags($_REQUEST['layout_mid']): ''); $plink = ((x($_REQUEST,'permalink')) ? escape_tags($_REQUEST['permalink']) : ''); -- cgit v1.2.3 From 5b04b9480e19d756a7cbc8456ffaa09b40a61164 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 24 Oct 2014 21:17:56 +0200 Subject: make bbcode/html includes work in markdown help pages and vice versa --- mod/help.php | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/mod/help.php b/mod/help.php index 81ecd6ba9..4823f1c07 100644 --- a/mod/help.php +++ b/mod/help.php @@ -34,8 +34,6 @@ function help_content(&$a) { $doctype = 'markdown'; - require_once('library/markdown.php'); - $text = ''; if(argc() > 1) { @@ -73,17 +71,22 @@ function help_content(&$a) { )); } - $text = preg_replace_callback("/#include (.*?)\;/ism", 'preg_callback_help_include', $text); - if($doctype === 'html') $content = $text; - if($doctype === 'markdown') + if($doctype === 'markdown') { + require_once('library/markdown.php'); + # escape #include tags + $text = preg_replace('/#include/ism', '%%include', $text); $content = Markdown($text); + $content = preg_replace('/%%include/ism', '#include', $content); + } if($doctype === 'bbcode') { require_once('include/bbcode.php'); $content = bbcode($text); } + $content = preg_replace_callback("/#include (.*?)\;/ism", 'preg_callback_help_include', $content); + return replace_macros(get_markup_template("help.tpl"), array( '$content' => $content )); @@ -93,8 +96,17 @@ function help_content(&$a) { function preg_callback_help_include($matches) { - if($matches[1]) - return str_replace($matches[0],load_doc_file($matches[1]),$matches[0]); + if($matches[1]) { + $include = str_replace($matches[0],load_doc_file($matches[1]),$matches[0]); + if(preg_match('/\.bb$/', $matches[1])) { + require_once('include/bbcode.php'); + $include = bbcode($include); + } elseif(preg_match('/\.md$/', $matches[1])) { + require_once('library/markdown.php'); + $include = Markdown($include); + } + return $include; + } } -- cgit v1.2.3 From cf05266b15e49020c217107fd81896171d5ef26b Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 24 Oct 2014 14:04:32 -0700 Subject: should probably check the body since the title is only going to be rarely set. --- include/bb2diaspora.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index d094e33c2..8a178d1ac 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -340,7 +340,7 @@ function bb2diaspora_itembody($item,$force_update = false) { if(array_key_exists('item_flags',$item) && ($item['item_flags'] & ITEM_OBSCURED)) { $key = get_config('system','prvkey'); - $b = json_decode($item['title'],true); + $b = json_decode($item['body'],true); // if called from diaspora_process_outbound, this decoding has already been done. // Everything else that calls us will not yet be decoded. if($b && is_array($b) && array_key_exists('iv',$b)) { -- cgit v1.2.3 From ce8a891682a7d8ceca71ec762063367744428a53 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 24 Oct 2014 14:18:02 -0700 Subject: doh - this needs to be markdown, not bbcode --- include/items.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/items.php b/include/items.php index 8d46f64c1..41c211953 100755 --- a/include/items.php +++ b/include/items.php @@ -2532,8 +2532,8 @@ function store_diaspora_comment_sig($datarray, $channel, $parent_item, $post_id, logger('wall to wall comment',LOGGER_DEBUG); // post will come across with the owner's identity. Throw a preamble onto the post to indicate the true author. $signed_body = "\n\n" - . '[img]' . $datarray['author']['xchan_photo_m'] . '[/img]' - . '[url=' . $datarray['author']['xchan_url'] . ']' . $datarray['author']['xchan_name'] . '[/url]' . "\n\n" + . '![' . $datarray['author']['xchan_name'] . '](' . $datarray['author']['xchan_photo_m'] . ')' + . '[' . $datarray['author']['xchan_name'] . '](' . $datarray['author']['xchan_url'] . ')' . "\n\n" . $signed_body; } -- cgit v1.2.3 From 98bce0e7197b680e03cb3778cb14545260cc58c1 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 24 Oct 2014 14:31:21 -0700 Subject: the to-do list is getting longer again. --- doc/to_do_code.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/to_do_code.bb b/doc/to_do_code.bb index f4c685063..1ca1efecd 100644 --- a/doc/to_do_code.bb +++ b/doc/to_do_code.bb @@ -5,6 +5,9 @@ We need much more than this, but here are areas where developers can help. Pleas [li]Documentation - see Red Documentation Project To-Do List[/li] [li]Include TOS link in registration/verification email[/li] [li]Finish the anti-spam bayesian engine[/li] +[li]implement an email permission denied bounce message from the sys channel[/li] +[li]finish Wordpress connector - import wordpress comments back to redmatrix[/li] +[li]provide a way for xchans with a certain network type to upgrade (unknown to rss, rss to statusnet, friendica-over-diaspora to friendica, for instance) based on new knowledge and/or redmatrix ability[/li] [li]If DAV folders exist, add an option to the Settings page to set a default folder for attachment uploads.[/li] [li]Integrate the "open site" list with the register page[/li] [li]implement oembed provider interface[/li] -- cgit v1.2.3 From 59e19a1f45a3502559dd1df33c453aa2f99cb995 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 25 Oct 2014 01:03:36 -0700 Subject: moved post_to_red to its own project ( https://github.com/friendica/wptored ), which I was planning to do anyway since it's kind of lost in the util folder, but also because having it there may present licensing issues, as it's GPL. --- util/wp/post_to_red/post_to_red.php | 493 ------------------------------------ util/wp/post_to_red/readme.txt | 39 --- version.inc | 2 +- 3 files changed, 1 insertion(+), 533 deletions(-) delete mode 100644 util/wp/post_to_red/post_to_red.php delete mode 100644 util/wp/post_to_red/readme.txt diff --git a/util/wp/post_to_red/post_to_red.php b/util/wp/post_to_red/post_to_red.php deleted file mode 100644 index ea6026ae2..000000000 --- a/util/wp/post_to_red/post_to_red.php +++ /dev/null @@ -1,493 +0,0 @@ -/Uis', '', $post->post_content); - - // get any tags and make them hashtags - $post_tags = get_the_tags($post_id); - if ($post_tags) { - foreach($post_tags as $tag) { - $tag_string .= "#" . $tag->name . " "; - } - } - - $message_id = site_url() . '/' . $post_id; - - if (isset($tag_string)) { - $message .= "
        $tag_string"; - } - - $cats = ''; - - $terms = get_the_terms($post_id,'category'); - if($terms) { - foreach($terms as $term) { - if(strlen($cats)) - $cats .= ','; - $cats .= htmlspecialchars_decode($term->name, ENT_COMPAT); - } - } - - - - $bbcode = xpost_to_html2bbcode($message); - - if($backlink) - $bbcode .= "\n\n" . _('Source:') . ' ' . '[url]' . get_permalink($post_id) . '[/url]'; - - $url = $seed_location . '/api/statuses/update'; - - $headers = array('Authorization' => 'Basic '.base64_encode("$user_name:$password")); - $body = array( - 'title' => xpost_to_html2bbcode($post->post_title), - 'status' => $bbcode, - 'source' => 'WordPress', - 'namespace' => 'wordpress', - 'remote_id' => $message_id, - 'permalink' => $post->guid - ); - if($channel) - $body['channel'] = $channel; - if($cats) - $body['category'] = $cats; - - // post: - $request = new WP_Http; - $result = $request->request($url , array( 'method' => 'POST', 'body' => $body, 'headers' => $headers)); - - } - - } -} - - -function post_to_red_delete_post($post_id) { - - $post = get_post($post_id); - - // if meta has been set - if ((get_post_meta($post_id, "post_to_red", true) == '1') || (get_post_meta($post_id, "post_from_red", true) == '1')) { - - $user_name = post_to_red_get_acct_name(); - $password = post_to_red_get_password(); - $seed_location = post_to_red_get_seed_location(); - $channel = post_to_red_get_channel_name(); - - if ((isset($user_name)) && (isset($password)) && (isset($seed_location))) { - - $message_id = site_url() . '/' . $post_id; - $url = $seed_location . '/api/statuses/destroy'; - - $headers = array('Authorization' => 'Basic '.base64_encode("$user_name:$password")); - $body = array( - 'namespace' => 'wordpress', - 'remote_id' => $message_id, - ); - if($channel) - $body['channel'] = $channel; - - // post: - $request = new WP_Http; - $result = $request->request($url , array( 'method' => 'POST', 'body' => $body, 'headers' => $headers)); - - } - - } -} - -function post_to_red_delete_comment($post_id) { - - // The comment may already be destroyed so we can't query it or the parent post. That means - // we have to make a network call for any deleted comment to see if it's registered on Red. - // We really need a "before_delete_comment" action in WP to make - // this more efficient. - - $user_name = post_to_red_get_acct_name(); - $password = post_to_red_get_password(); - $seed_location = post_to_red_get_seed_location(); - $channel = post_to_red_get_channel_name(); - - if ((isset($user_name)) && (isset($password)) && (isset($seed_location))) { - - $message_id = site_url() . '/' . $post_id; - $url = $seed_location . '/api/statuses/destroy'; - - $headers = array('Authorization' => 'Basic '.base64_encode("$user_name:$password")); - $body = array( - 'namespace' => 'wordpress', - 'comment_id' => $message_id, - ); - if($channel) - $body['channel'] = $channel; - - // post: - $request = new WP_Http; - $result = $request->request($url , array( 'method' => 'POST', 'body' => $body, 'headers' => $headers)); - } -} - - - - -function post_to_red_displayAdminContent() { - - $seed_url = post_to_red_get_seed_location(); - $password = post_to_red_get_password(); - $user_acct = post_to_red_get_acct_name(); - $channel = post_to_red_get_channel_name(); - $backlink = get_option('post_to_red_backlink'); - $backlink_checked = ((intval($backlink)) ? ' checked="checked" ' : ''); - // debug... - // echo "seed location: $seed_url
        "; - // echo "password: $password
        "; - // echo "user_acct: $user_acct
        "; - - echo << -

        CrossPost to Red Matrix

        -

        This plugin allows you to cross post to your Red Matrix channel.

        - - -
        -

        Configuration

        -
        - Enter the login details of your Red Matrix account

        - Login (email):
        - Password:
        - Red Matrix URL:
        - Optional channel nickname:
        - Add permalink to posts?
        - -
        -

        -
        -EOF; - - if(isset($_POST['submit'])) { - echo "
        Settings Saved!
        "; - } -} - -function post_to_red_post_checkbox() { - - add_meta_box( - 'post_to_red_meta_box_id', - 'Cross Post to Red Matrix', - 'post_to_red_post_meta_content', - 'post', - 'normal', - 'default' - ); -} - -function post_to_red_post_meta_content($post_id) { - wp_nonce_field(plugin_basename( __FILE__ ), 'post_to_red_nonce'); - echo ' Cross post?'; -} - -function post_to_red_post_field_data($post_id) { - - // check if this isn't an auto save - if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) - return; - - // security check - if((! array_key_exists('post_to_red_nonce', $_POST)) - || (!wp_verify_nonce( $_POST['post_to_red_nonce'], plugin_basename( __FILE__ )))) - return; - - // now store data in custom fields based on checkboxes selected - if (isset($_POST['post_to_red'])) { - update_post_meta($post_id, 'post_to_red', '1'); - } -} - -function post_to_red_display_admin_page() { - - if ((isset($_REQUEST["post_to_red_acct_name"])) && (isset($_REQUEST["post_to_red_password"]))) { - - $password = $_REQUEST["post_to_red_password"]; - $red_url = $_REQUEST["post_to_red_url"]; - $channelname = $_REQUEST['post_to_red_channel']; - - - update_option('post_to_red_acct_name', $_REQUEST["post_to_red_acct_name"]); - update_option('post_to_red_channel_name', $channelname); - update_option('post_to_red_seed_location', $red_url); - update_option('post_to_red_password', $password); - update_option('post_to_red_backlink', $_REQUEST['post_to_red_backlink']); - } - - post_to_red_displayAdminContent(); -} - -function post_to_red_settings_link($links) { - $settings_link = 'Settings'; - array_unshift($links, $settings_link); - return $links; -} - -function post_to_red_admin() { - add_options_page("Crosspost to redmatrix", "Crosspost to redmatrix", "manage_options", "xpost-to-redmatrix", "post_to_red_display_admin_page"); -} - -register_deactivation_hook( __FILE__, 'post_to_red_deactivate' ); - -add_filter("plugin_action_links_$plugin", "post_to_red_settings_link"); - -add_action("admin_menu", "post_to_red_admin"); -add_action('publish_post', 'post_to_red_post'); -add_action('add_meta_boxes', 'post_to_red_post_checkbox'); -add_action('save_post', 'post_to_red_post_field_data'); -add_action('before_delete_post', 'post_to_red_delete_post'); - -add_action('delete_comment', 'post_to_red_delete_comment'); - -add_filter('xmlrpc_methods', 'red_xmlrpc_methods'); - -add_filter('get_avatar', 'post_to_red_get_avatar',10,5); - - -function red_xmlrpc_methods($methods) { - $methods['red.Comment'] = 'red_comment'; - return $methods; -} - -function red_comment($args) { - global $wp_xmlrpc_server; - $wp_xmlrpc_server->escape( $args ); - - $blog_id = $args[0]; - $username = $args[1]; - $password = $args[2]; - $post = $args[3]; - $content_struct = $args[4]; - - if ( ! $user = $wp_xmlrpc_server->login( $username, $password ) ) - return $wp_xmlrpc_server->error; - - if ( is_numeric($post) ) - $post_id = absint($post); - else - $post_id = url_to_postid($post); - - if ( ! $post_id ) - return new IXR_Error( 404, __( 'Invalid post ID.' ) ); - if ( ! get_post($post_id) ) - return new IXR_Error( 404, __( 'Invalid post ID.' ) ); - - $comment['comment_post_ID'] = $post_id; - - $comment['comment_author'] = ''; - if ( isset($content_struct['author']) ) - $comment['comment_author'] = $content_struct['author']; - - $comment['comment_author_email'] = ''; - if ( isset($content_struct['author_email']) ) - $comment['comment_author_email'] = $content_struct['author_email']; - - $comment['comment_author_url'] = ''; - if ( isset($content_struct['author_url']) ) - $comment['comment_author_url'] = $content_struct['author_url']; - - $comment['user_ID'] = 0; - - if ( get_option('require_name_email') ) { - if ( 6 > strlen($comment['comment_author_email']) || '' == $comment['comment_author'] ) - return new IXR_Error( 403, __( 'Comment author name and email are required' ) ); - elseif ( !is_email($comment['comment_author_email']) ) - return new IXR_Error( 403, __( 'A valid email address is required' ) ); - } - - if(isset($content_struct['comment_id'])) { - $comment['comment_ID'] = intval($content_struct['comment_id']); - $edit = true; - } - $comment['comment_post_ID'] = $post_id; - $comment['comment_parent'] = isset($content_struct['comment_parent']) ? absint($content_struct['comment_parent']) : 0; - $comment['comment_content'] = isset($content_struct['content']) ? $content_struct['content'] : null; - - do_action('xmlrpc_call', 'red.Comment'); - - if($edit) { - $result = wp_update_comment($comment); - $comment_ID = $comment['comment_ID']; - } - else { - $comment_ID = wp_new_comment( $comment ); - if($comment_ID) - wp_set_comment_status($comment_ID,'approve'); - } - - if(isset($content_struct['red_avatar'])) - add_comment_meta($comment_ID,'red_avatar',$content_struct['red_avatar'],true); - - do_action( 'xmlrpc_call_success_red_Comment', $comment_ID, $args ); - - return $comment_ID; -} - -function post_to_red_get_avatar($avatar,$id_or_email,$size,$default,$alt) { - - if(! is_object($id_or_email)) - return $avatar; - if((! array_key_exists('comment_author_email',$id_or_email)) || (empty($id_or_email->comment_author_email))) - return $avatar; - if((! array_key_exists('comment_ID', $id_or_email)) || (! intval($id_or_email->comment_ID))) - return $avatar; - $l = get_comment_meta($id_or_email->comment_ID,'red_avatar',true); - if($l) { - $safe_alt = esc_attr($alt); - $avatar = "{$safe_alt}"; - } - return $avatar; -} - - -// from: -// http://www.docgate.com/tutorial/php/how-to-convert-html-to-bbcode-with-php-script.html - -//function exists also in post to friendica plugin; load only if not yet loaded by that plugin -if(!function_exists('xpost_to_html2bbcode')) { - function xpost_to_html2bbcode($text) { - $htmltags = array( - '/\(.*?)\<\/b\>/is', - '/\(.*?)\<\/i\>/is', - '/\(.*?)\<\/u\>/is', - '/\(.*?)\<\/ul\>/is', - '/\(.*?)\<\/li\>/is', - '/\/is', // some smiley - '/\/is', - '/\/is', // some smiley - '/\
        (.*?)\<\/div\>/is', - '/\
        (.*?)\<\/div\>/is', - '/\
        (.*?)\<\/div\>/is', - '/\
        (.*?)\<\/div\>/is', - '/\(.*?)\<\/cite\>/is', - '/\(.*?)\<\/blockquote\>/is', - '/\(.*?)\<\/div\>/is', - '/\(.*?)\<\/code\>/is', - '/\/is', - '/\(.*?)\<\/strong\>/is', - '/\(.*?)\<\/em\>/is', - '/\(.*?)\<\/a\>/is', - '/\http:\/\/(.*?)\<\/a\>/is', - '/\(.*?)\<\/a\>/is' - ); - - $bbtags = array( - '[b]$1[/b]', - '[i]$1[/i]', - '[u]$1[/u]', - '[list]$1[/list]', - '[*]$1', - '$3', - '[img]http://$2[/img]' . "\n", - ':$3', - '[quote]$1[/quote]', - '[code]$1[/code]', - '', - '', - '', - '[quote]$1[/quote]', - '$1', - '[code]$1[/code]', - "\n", - '[b]$1[/b]', - '[i]$1[/i]', - '[email=$1]$3[/email]', - '[url]$1[/url]', - '[url=$1]$3[/url]' - ); - - $text = str_replace ("\n", ' ', $text); - $ntext = preg_replace ($htmltags, $bbtags, $text); - $ntext = preg_replace ($htmltags, $bbtags, $ntext); - - // for too large text and cannot handle by str_replace - if (!$ntext) { - $ntext = str_replace(array('
        ', '
        '), "\n", $text); - $ntext = str_replace(array('', ''), array('[b]', '[/b]'), $ntext); - $ntext = str_replace(array('', ''), array('[i]', '[/i]'), $ntext); - } - - $ntext = strip_tags($ntext); - - $ntext = trim(html_entity_decode($ntext,ENT_QUOTES,'UTF-8')); - return $ntext; - } -} - - diff --git a/util/wp/post_to_red/readme.txt b/util/wp/post_to_red/readme.txt deleted file mode 100644 index e27c46236..000000000 --- a/util/wp/post_to_red/readme.txt +++ /dev/null @@ -1,39 +0,0 @@ -=== CrossPost to redmatrix === -Contributors: duthied, macgirvin -Donate link: TBD -Tags: redmatrix, crosspost -Requires at least: 3.2 -Tested up to: 3.2 -Stable tag: 1.2 - -CrossPost to Red Matrix for WordPress - -== Description == -This plugin allows you to cross post to your Red Matrix account. - -**Note, this plugin converts the html from wordpress into bbcode. -The bbcode conversion doesn't handle height and width of an image, so be warned that if you post a very large -image that is resized via height and with attributes, those attributes won't be honored in the resulatant post. - -== Changelog == -= 1.2 = -* ensured no function name collision - -= 1.1 = -* Added feedback to settings form post. - -= 1.0 = -* Initial release. - -== Installation == - -1. Install the plugin from your Wordpress admin panel. - -OR - -1. Upload the plugin folder to the `/wp-content/plugins/` directory. -2. Activate the plugin through the 'Plugins' menu in WordPress. -3. On the settings page enter your account name and password and the nickname of the channel to post to - then click the submit button -4. To cross-post ensure the check box in the 'Cross Post To redmatrix' is checked before publishing. - -== Frequently Asked Questions == diff --git a/version.inc b/version.inc index 98534153c..ae378dbba 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-10-24.838 +2014-10-25.839 -- cgit v1.2.3 From 6497e78956825dc845eb8a998369154c4d823a95 Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 25 Oct 2014 15:23:20 +0200 Subject: some work on photos like/dislike --- mod/like.php | 1 - mod/photos.php | 40 +++++++++++++++++++++-- view/tpl/nav.tpl | 3 +- view/tpl/photo_view.tpl | 85 +++++++++++++++++++++++++++++++++++++++++++------ 4 files changed, 114 insertions(+), 15 deletions(-) diff --git a/mod/like.php b/mod/like.php index 916faf230..d17a42129 100755 --- a/mod/like.php +++ b/mod/like.php @@ -213,7 +213,6 @@ function like_content(&$a) { logger('like: verb ' . $verb . ' item ' . $item_id, LOGGER_DEBUG); - $r = q("SELECT * FROM item WHERE id = %d and item_restrict = 0 LIMIT 1", dbesc($item_id) ); diff --git a/mod/photos.php b/mod/photos.php index 06c566f47..003f7239d 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1023,7 +1023,7 @@ function photos_content(&$a) { $like = ''; $dislike = ''; - // display comments + if($r) { foreach($r as $item) { @@ -1031,10 +1031,33 @@ function photos_content(&$a) { like_puller($a,$item,$dlike,'dislike'); } - $like = ((isset($alike[$link_item['id']])) ? format_like($alike[$link_item['id']],$alike[$link_item['id'] . '-l'],'like',$link_item['id']) : ''); - $dislike = ((isset($dlike[$link_item['id']])) ? format_like($dlike[$link_item['id']],$dlike[$link_item['id'] . '-l'],'dislike',$link_item['id']) : ''); + $like_count = ((x($alike,$link_item['mid'])) ? $alike[$link_item['mid']] : ''); + $like_list = ((x($alike,$link_item['mid'])) ? $alike[$link_item['mid'] . '-l'] : ''); + if (count($like_list) > MAX_LIKERS) { + $like_list_part = array_slice($like_list, 0, MAX_LIKERS); + array_push($like_list_part, '
        ' . t('View all') . ''); + } else { + $like_list_part = ''; + } + $like_button_label = tt('Like','Likes',$like_count,'noun'); + + //if (feature_enabled($conv->get_profile_owner(),'dislike')) { + $dislike_count = ((x($dlike,$link_item['mid'])) ? $dlike[$link_item['mid']] : ''); + $dislike_list = ((x($dlike,$link_item['mid'])) ? $dlike[$link_item['mid'] . '-l'] : ''); + $dislike_button_label = tt('Dislike','Dislikes',$dislike_count,'noun'); + if (count($dislike_list) > MAX_LIKERS) { + $dislike_list_part = array_slice($dislike_list, 0, MAX_LIKERS); + array_push($dislike_list_part, '' . t('View all') . ''); + } else { + $dislike_list_part = ''; + } + //} + + $like = ((isset($alike[$link_item['mid']])) ? format_like($alike[$link_item['mid']],$alike[$link_item['mid'] . '-l'],'like',$link_item['mid']) : ''); + $dislike = ((isset($dlike[$link_item['mid']])) ? format_like($dlike[$link_item['mid']],$dlike[$link_item['mid'] . '-l'],'dislike',$link_item['mid']) : ''); + // display comments foreach($r as $item) { $comment = ''; @@ -1128,6 +1151,17 @@ function photos_content(&$a) { '$likebuttons' => $likebuttons, '$like' => $like_e, '$dislike' => $dislike_e, + '$like_count' => $like_count, + '$like_list' => $like_list, + '$like_list_part' => $like_list_part, + '$like_button_label' => $like_button_label, + '$like_modal_title' => t('Likes','noun'), + '$dislike_modal_title' => t('Dislikes','noun'), + '$dislike_count' => $dislike_count, //((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_count : ''), + '$dislike_list' => $dislike_list, //((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_list : ''), + '$dislike_list_part' => $dislike_list_part, //((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_list_part : ''), + '$dislike_button_label' => $dislike_button_label, //((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_button_label : ''), + '$modal_dismiss' => t('Close'), '$comments' => $comments, '$commentbox' => $commentbox, '$paginate' => $paginate, diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index a283b35a8..a8a7a7da7 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -50,7 +50,8 @@ {{if $nav.register}}
      • {{$nav.register.1}}
      • {{/if}} {{if !$userinfo}} {{if $nav.loginmenu}} -
      • + +
      + + + +
      + +
      +
      +
      + +
      + + + + +
      + +
      + +
      + +
      +
      Importer.php File Reference
      +
      +
      + + + + +

      +Classes

      class  Redmatrix\Import\Import
       
      + + + +

      +Namespaces

      namespace  Redmatrix\Import
       
      +
      +
      + diff --git a/doc/html/classRedmatrix_1_1Import_1_1Import-members.html b/doc/html/classRedmatrix_1_1Import_1_1Import-members.html new file mode 100644 index 000000000..061fc11a4 --- /dev/null +++ b/doc/html/classRedmatrix_1_1Import_1_1Import-members.html @@ -0,0 +1,132 @@ + + + + + + +The Red Matrix: Member List + + + + + + + + + + + + + +
      +
      + + + + + + + +
      +
      The Red Matrix +
      +
      +
      + + + + + +
      +
      + +
      +
      +
      + + + diff --git a/doc/html/classRedmatrix_1_1Import_1_1Import.html b/doc/html/classRedmatrix_1_1Import_1_1Import.html new file mode 100644 index 000000000..6eec161c2 --- /dev/null +++ b/doc/html/classRedmatrix_1_1Import_1_1Import.html @@ -0,0 +1,407 @@ + + + + + + +The Red Matrix: Redmatrix\Import\Import Class Reference + + + + + + + + + + + + + +
      +
      + + + + + + + +
      +
      The Red Matrix +
      +
      +
      + + + + + +
      +
      + +
      +
      +
      + +
      + + + + +
      + +
      + +
      + +
      +
      Redmatrix\Import\Import Class Reference
      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       get_credentials ()
       
       get_itemlist ()
       
       get_item_ident ($item)
       
       get_item ($item_ident)
       
       get_taxonomy ($item_ident)
       
       get_children ($item_ident)
       
       convert_item ($item_ident)
       
       convert_taxonomy ($item_ident)
       
       convert_child ($child)
       
       store ($item, $update=false)
       
       run ()
       
      + + + + + + + + + +

      +Public Attributes

       $credentials = null
       
       $itemlist = null
       
       $src_items = null
       
       $items = null
       
      +

      Member Function Documentation

      + +
      +
      + + + + + + + + +
      Redmatrix\Import\Import::convert_child ( $child)
      +
      + +

      Referenced by Redmatrix\Import\Import\run().

      + +
      +
      + +
      +
      + + + + + + + + +
      Redmatrix\Import\Import::convert_item ( $item_ident)
      +
      + +

      Referenced by Redmatrix\Import\Import\run().

      + +
      +
      + +
      +
      + + + + + + + + +
      Redmatrix\Import\Import::convert_taxonomy ( $item_ident)
      +
      + +

      Referenced by Redmatrix\Import\Import\run().

      + +
      +
      + +
      +
      + + + + + + + + +
      Redmatrix\Import\Import::get_children ( $item_ident)
      +
      + +

      Referenced by Redmatrix\Import\Import\run().

      + +
      +
      + +
      +
      + + + + + + + +
      Redmatrix\Import\Import::get_credentials ()
      +
      + +

      Referenced by Redmatrix\Import\Import\run().

      + +
      +
      + +
      +
      + + + + + + + + +
      Redmatrix\Import\Import::get_item ( $item_ident)
      +
      + +

      Referenced by Redmatrix\Import\Import\run().

      + +
      +
      + +
      +
      + + + + + + + + +
      Redmatrix\Import\Import::get_item_ident ( $item)
      +
      + +
      +
      + +
      +
      + + + + + + + +
      Redmatrix\Import\Import::get_itemlist ()
      +
      + +

      Referenced by Redmatrix\Import\Import\run().

      + +
      +
      + +
      +
      + + + + + + + + +
      Redmatrix\Import\Import::get_taxonomy ( $item_ident)
      +
      + +

      Referenced by Redmatrix\Import\Import\run().

      + +
      +
      + +
      +
      + + + + + + + +
      Redmatrix\Import\Import::run ()
      +
      + +
      +
      + +
      +
      + + + + + + + + + + + + + + + + + + +
      Redmatrix\Import\Import::store ( $item,
       $update = false 
      )
      +
      + +
      +
      +

      Member Data Documentation

      + +
      +
      + + + + +
      Redmatrix\Import\Import::$credentials = null
      +
      + +
      +
      + +
      +
      + + + + +
      Redmatrix\Import\Import::$itemlist = null
      +
      + +
      +
      + +
      +
      + + + + +
      Redmatrix\Import\Import::$items = null
      +
      + +
      +
      + +
      +
      + + + + +
      Redmatrix\Import\Import::$src_items = null
      +
      + +
      +
      +
      The documentation for this class was generated from the following file: +
      +
      + diff --git a/doc/html/classRedmatrix_1_1Import_1_1Import.js b/doc/html/classRedmatrix_1_1Import_1_1Import.js new file mode 100644 index 000000000..2a0e2eef0 --- /dev/null +++ b/doc/html/classRedmatrix_1_1Import_1_1Import.js @@ -0,0 +1,18 @@ +var classRedmatrix_1_1Import_1_1Import = +[ + [ "convert_child", "classRedmatrix_1_1Import_1_1Import.html#ad9c6677ea07c496d81914b97aeb5fba5", null ], + [ "convert_item", "classRedmatrix_1_1Import_1_1Import.html#add4d39232c883b59634595be14441336", null ], + [ "convert_taxonomy", "classRedmatrix_1_1Import_1_1Import.html#a5a54b41c30aed8ac9ca6e486fd0b4b97", null ], + [ "get_children", "classRedmatrix_1_1Import_1_1Import.html#a832a4cc0d33d0eea29cb450004054580", null ], + [ "get_credentials", "classRedmatrix_1_1Import_1_1Import.html#a76dd522e47a48d80e1678211230f2ff5", null ], + [ "get_item", "classRedmatrix_1_1Import_1_1Import.html#ae705dd1deb245b1d06baa73062330e43", null ], + [ "get_item_ident", "classRedmatrix_1_1Import_1_1Import.html#a4420d6acf6ba2f3723c655251b12abef", null ], + [ "get_itemlist", "classRedmatrix_1_1Import_1_1Import.html#a1af46c9f88257635f362d6027ea710c3", null ], + [ "get_taxonomy", "classRedmatrix_1_1Import_1_1Import.html#ab1e4a1d404b5a5a9c518c205d1428154", null ], + [ "run", "classRedmatrix_1_1Import_1_1Import.html#af432ecbc45b812a03d58dfb378a212f7", null ], + [ "store", "classRedmatrix_1_1Import_1_1Import.html#a70f9dd767d877530a7da7c6bd821e080", null ], + [ "$credentials", "classRedmatrix_1_1Import_1_1Import.html#afd251e6e5a18516bac4d1a40435602f1", null ], + [ "$itemlist", "classRedmatrix_1_1Import_1_1Import.html#a2f69f16ecb7de1fb1daffbc38e68c9f1", null ], + [ "$items", "classRedmatrix_1_1Import_1_1Import.html#a31d73d48e1aa93319159c692d0197a3a", null ], + [ "$src_items", "classRedmatrix_1_1Import_1_1Import.html#ac578e85e4c491bf9e09fbbfa33f9d6b7", null ] +]; \ No newline at end of file diff --git a/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.html b/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.html new file mode 100644 index 000000000..1042c0d0f --- /dev/null +++ b/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: include/Import Directory Reference + + + + + + + + + + + + + +
      +
      + + + + + + + +
      +
      The Red Matrix +
      +
      +
      + + + + +
      +
      + +
      +
      +
      + +
      + + + + +
      + +
      + +
      +
      +
      Import Directory Reference
      +
      +
      + + + + +

      +Files

      file  Importer.php
       
      +
      +
      + diff --git a/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.js b/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.js new file mode 100644 index 000000000..6e235895c --- /dev/null +++ b/doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.js @@ -0,0 +1,6 @@ +var dir_7edbbd0f8c514efef79942dcdc21f738 = +[ + [ "Importer.php", "Importer_8php.html", [ + [ "Import", "classRedmatrix_1_1Import_1_1Import.html", "classRedmatrix_1_1Import_1_1Import" ] + ] ] +]; \ No newline at end of file diff --git a/doc/html/namespaceRedmatrix.html b/doc/html/namespaceRedmatrix.html new file mode 100644 index 000000000..2861c646a --- /dev/null +++ b/doc/html/namespaceRedmatrix.html @@ -0,0 +1,120 @@ + + + + + + +The Red Matrix: Redmatrix Namespace Reference + + + + + + + + + + + + + +
      +
      + + + + + + + +
      +
      The Red Matrix +
      +
      +
      + + + + + +
      +
      + +
      +
      +
      + +
      + + + + +
      + +
      + +
      + +
      +
      Redmatrix Namespace Reference
      +
      +
      + + + + +

      +Namespaces

      namespace  Import
       
      +
      +
      + diff --git a/doc/html/namespaceRedmatrix.js b/doc/html/namespaceRedmatrix.js new file mode 100644 index 000000000..161035822 --- /dev/null +++ b/doc/html/namespaceRedmatrix.js @@ -0,0 +1,4 @@ +var namespaceRedmatrix = +[ + [ "Import", "namespaceRedmatrix_1_1Import.html", "namespaceRedmatrix_1_1Import" ] +]; \ No newline at end of file diff --git a/doc/html/namespaceRedmatrix_1_1Import.html b/doc/html/namespaceRedmatrix_1_1Import.html new file mode 100644 index 000000000..b21ffdff2 --- /dev/null +++ b/doc/html/namespaceRedmatrix_1_1Import.html @@ -0,0 +1,120 @@ + + + + + + +The Red Matrix: Redmatrix\Import Namespace Reference + + + + + + + + + + + + + +
      +
      + + + + + + + +
      +
      The Red Matrix +
      +
      +
      + + + + + +
      +
      + +
      +
      +
      + +
      + + + + +
      + +
      + +
      + +
      +
      Redmatrix\Import Namespace Reference
      +
      +
      + + + + +

      +Classes

      class  Import
       
      +
      +
      + diff --git a/doc/html/namespaceRedmatrix_1_1Import.js b/doc/html/namespaceRedmatrix_1_1Import.js new file mode 100644 index 000000000..74692ac3b --- /dev/null +++ b/doc/html/namespaceRedmatrix_1_1Import.js @@ -0,0 +1,4 @@ +var namespaceRedmatrix_1_1Import = +[ + [ "Import", "classRedmatrix_1_1Import_1_1Import.html", "classRedmatrix_1_1Import_1_1Import" ] +]; \ No newline at end of file -- cgit v1.2.3 From a659ac8952306b5a78a468051d3c318f50294bcf Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 1 Nov 2014 00:36:21 -0700 Subject: disable request message response until we work through this --- include/notifier.php | 1 - include/zot.php | 3 +++ version.inc | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/notifier.php b/include/notifier.php index 57494885a..c193db116 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -192,7 +192,6 @@ function notifier_run($argv, $argc){ $recipients[] = $xchan; $packet_type = 'request'; $normal_mode = false; - } elseif($cmd === 'expire') { diff --git a/include/zot.php b/include/zot.php index c9a17562e..4c47d60b8 100644 --- a/include/zot.php +++ b/include/zot.php @@ -2812,6 +2812,9 @@ function import_author_zot($x) { function zot_process_message_request($data) { $ret = array('success' => false); + + return $ret; + if(! $data['message_id']) { $ret['message'] = 'no message_id'; logger('no message_id'); diff --git a/version.inc b/version.inc index 82ccb4199..bc1358c72 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-10-31.845 +2014-11-01.846 -- cgit v1.2.3 From 50c16c394fe2d966c62d30930600212a4e33303e Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 1 Nov 2014 01:52:27 -0700 Subject: check that we have valid data --- include/zot.php | 1 + mod/post.php | 26 ++++++++++++++++---------- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/include/zot.php b/include/zot.php index 4c47d60b8..24ace9cbb 100644 --- a/include/zot.php +++ b/include/zot.php @@ -2813,6 +2813,7 @@ function import_author_zot($x) { function zot_process_message_request($data) { $ret = array('success' => false); +// note: disabled until the loops stop. return $ret; if(! $data['message_id']) { diff --git a/mod/post.php b/mod/post.php index 8ffd3b5ad..c21af83e4 100644 --- a/mod/post.php +++ b/mod/post.php @@ -598,18 +598,24 @@ function post_post(&$a) { $ret['success'] = true; $ret['pickup'] = array(); foreach($r as $rr) { - $x = json_decode($rr['outq_msg'],true); + if($rr['outq_msg']) { + $x = json_decode($rr['outq_msg'],true); - if(array_key_exists('message_list',$x)) { - foreach($x['message_list'] as $xx) - $ret['pickup'][] = array('notify' => json_decode($rr['outq_notify'],true),'message' => $xx); - } - else - $ret['pickup'][] = array('notify' => json_decode($rr['outq_notify'],true),'message' => $x); + if(! $x) + continue; - $x = q("delete from outq where outq_hash = '%s' limit 1", - dbesc($rr['outq_hash']) - ); + if(array_key_exists('message_list',$x)) { + foreach($x['message_list'] as $xx) { + $ret['pickup'][] = array('notify' => json_decode($rr['outq_notify'],true),'message' => $xx); + } + } + else + $ret['pickup'][] = array('notify' => json_decode($rr['outq_notify'],true),'message' => $x); + + $x = q("delete from outq where outq_hash = '%s' limit 1", + dbesc($rr['outq_hash']) + ); + } } } -- cgit v1.2.3 From 30281b161c6e3089a89c5035498bb72a72e66e4a Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 1 Nov 2014 20:30:13 +0100 Subject: close the eventual open tool if the other opens --- view/tpl/photo_album.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/tpl/photo_album.tpl b/view/tpl/photo_album.tpl index 2c0b8e5b9..7b1566a15 100755 --- a/view/tpl/photo_album.tpl +++ b/view/tpl/photo_album.tpl @@ -1,11 +1,11 @@
      {{if $album_edit.1}} - + {{/if}} {{if $can_post}} - + {{/if}}

      {{$album}}

      -- cgit v1.2.3 From dc5e05d3349bc493e4c1f33fb2561bb80ddd0c7f Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 1 Nov 2014 23:55:36 +0100 Subject: even more photos work --- mod/photos.php | 20 ++++----- view/css/mod_photos.css | 62 ++------------------------ view/tpl/album_edit.tpl | 38 ++++++++-------- view/tpl/photo_album.tpl | 19 ++++---- view/tpl/photo_view.tpl | 109 ++++++++++++++++++++++----------------------- view/tpl/photos_upload.tpl | 15 +++---- 6 files changed, 103 insertions(+), 160 deletions(-) diff --git a/mod/photos.php b/mod/photos.php index d1f2b4993..48bc6d1e5 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -439,12 +439,8 @@ function photos_content(&$a) { // URLs: // photos/name - // photos/name/upload - // photos/name/upload/xxxxx (xxxxx is album name) - // photos/name/album/xxxxx - // photos/name/album/xxxxx/edit + // photos/name/album/xxxxx (xxxxx is album name) // photos/name/image/xxxxx - // photos/name/image/xxxxx/edit if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) { @@ -518,10 +514,6 @@ function photos_content(&$a) { $_is_owner = (local_user() && (local_user() == $owner_uid)); $o .= profile_tabs($a,$_is_owner, $a->data['channel']['channel_address']); - // - // dispatch request - // - /** * Display upload form */ @@ -590,6 +582,10 @@ function photos_content(&$a) { } + // + // dispatch request + // + /* * Display a single photo album */ @@ -644,7 +640,8 @@ function photos_content(&$a) { $albums = ((array_key_exists('albums', $a->data)) ? $a->data['albums'] : photos_albums_list($a->data['channel'],$a->data['observer'])); $edit_tpl = get_markup_template('album_edit.tpl'); $album_edit = replace_macros($edit_tpl,array( - '$nametext' => t('New album name: '), + '$nametext' => t('Enter a new album name'), + '$name_placeholder' => t('or select an existing one (doubleclick)'), '$nickname' => $a->data['channel']['channel_address'], '$album' => $album_e, '$albums' => $albums['albums'], @@ -928,7 +925,8 @@ function photos_content(&$a) { 'rotateccw' => t('Rotate CCW (left)'), 'albums' => $albums['albums'], 'album' => $album_e, - 'newalbum' => t('New album name'), + 'newalbum_label' => t('Enter a new album name'), + 'newalbum_placeholder' => t('or select an existing one (doubleclick)'), 'nickname' => $a->data['channel']['channel_address'], 'resource_id' => $ph[0]['resource_id'], 'capt_label' => t('Caption'), diff --git a/view/css/mod_photos.css b/view/css/mod_photos.css index 061f2f40a..c37cc3332 100644 --- a/view/css/mod_photos.css +++ b/view/css/mod_photos.css @@ -13,70 +13,16 @@ margin: 0 auto; } -#photo-photo-end { - clear: both; -} - -#photo-album-end { - clear: both; - margin-bottom: 25px; -} - -#photos-upload-album { - width: 100%; -} - -#photos-upload-new-end, #photos-upload-exist-end { - clear: both; -} -#photos-upload-exist-end { - margin-bottom: 15px; -} - -#photos-upload-select-files-text { - margin-top: 15px; - margin-bottom: 15px; -} - -#photo-edit-caption-label, #photo-edit-tags-label, #photo-edit-albumname-label, #photo-edit-rotate-label { - float: left; - width: 150px; -} - -#photo-edit-perms-end { - margin-bottom: 15px; -} - -#photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname, #photo-edit-rotate { - float: left; - margin-bottom: 25px; -} -#photo-edit-link-wrap { - margin-bottom: 15px; -} - -#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end, #photo-edit-rotate-end, #photos-upload-perms-end, #photos-upload-noshare-end{ - clear: both; - margin-bottom: 10px; -} - -#photo-edit-rotate-end { - margin-bottom: 15px; -} - - -#photo-edit-edit, +#photo-edit, #photo-album-edit-wrapper, #photo-upload-form { display: none; } -#photo-album-edit-submit, #photo-album-edit-drop { - margin-top: 15px; - margin-bottom: 15px; -} - #photos-usage-message { line-height: 22px; } +#photos-upload-choose { + padding: 2px 12px; +} diff --git a/view/tpl/album_edit.tpl b/view/tpl/album_edit.tpl index a6815352a..f5495f149 100755 --- a/view/tpl/album_edit.tpl +++ b/view/tpl/album_edit.tpl @@ -1,22 +1,22 @@
      - - - - - - - {{foreach $albums as $al}} - {{if $al.text}} - - -
      + +
      + + + + {{foreach $albums as $al}} + {{if $al.text}} + +
      +
      + + +
      + +
      +
      - - - -
      -
      diff --git a/view/tpl/photo_album.tpl b/view/tpl/photo_album.tpl index 7b1566a15..7175a62da 100755 --- a/view/tpl/photo_album.tpl +++ b/view/tpl/photo_album.tpl @@ -1,13 +1,16 @@
      -
      - {{if $album_edit.1}} - - {{/if}} - - {{if $can_post}} - - {{/if}} +
      + +
      + {{if $album_edit.1}} + + {{/if}} + {{if $can_post}} + + {{/if}} +
      +

      {{$album}}

      diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl index d1b077f36..37aab3c96 100755 --- a/view/tpl/photo_view.tpl +++ b/view/tpl/photo_view.tpl @@ -2,28 +2,28 @@
      +
      -
      - {{if $prevlink}} - - {{/if}} - {{if $nextlink}} - - {{/if}} -
      -

      {{if $desc}}{{$desc}}{{elseif $filename}}{{$filename}}{{else}}{{$unknown}}{{/if}}

      @@ -31,55 +31,54 @@
      -
      +
      - - - {{if $edit.albums}} - - {{foreach $edit.albums as $al}} - {{if $al.text}} -
    -- cgit v1.2.3 From ca1df08d92fc05e7301f112faee7a6bbac653aeb Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 3 Nov 2014 16:57:30 -0800 Subject: posted-date-selector - spacing was slightly off in dropdown entries --- view/css/widgets.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/view/css/widgets.css b/view/css/widgets.css index df113b12e..d481a09d1 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -74,6 +74,10 @@ margin-top: 2px; } +#posted-date-selector-drop li:not(:first-child) { + margin-top: 2px; +} + /* categories */ -- cgit v1.2.3 From a80e696b772d75a6b2bc5c1846f84ba538ee6289 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 3 Nov 2014 17:35:42 -0800 Subject: wall posted comment to a top-level wall post which arrived via a route (e.g. was posted to a forum) had no route, hence downstream recipients report route mismatch --- mod/item.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mod/item.php b/mod/item.php index 3dea8809c..e7d886b00 100644 --- a/mod/item.php +++ b/mod/item.php @@ -112,6 +112,7 @@ function item_post(&$a) { $parent = ((x($_REQUEST,'parent')) ? intval($_REQUEST['parent']) : 0); $parent_mid = ((x($_REQUEST,'parent_mid')) ? trim($_REQUEST['parent_mid']) : ''); + $route = ''; $parent_item = null; $parent_contact = null; $thr_parent = ''; @@ -163,6 +164,7 @@ function item_post(&$a) { $thr_parent = $parent_mid; + $route = $parent_item['route']; } @@ -753,6 +755,7 @@ function item_post(&$a) { $datarray['comment_policy'] = map_scope($channel['channel_w_comment']); $datarray['term'] = $post_tags; $datarray['plink'] = $plink; + $datarray['route'] = $route; // preview mode - prepare the body for display and send it via json -- cgit v1.2.3 From ba73b60177df1f24564436bea0bb2d7b50d68b7a Mon Sep 17 00:00:00 2001 From: marijus Date: Tue, 4 Nov 2014 09:29:11 +0100 Subject: missing --- view/tpl/photos_upload.tpl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/view/tpl/photos_upload.tpl b/view/tpl/photos_upload.tpl index 13fb41687..ae06b808a 100755 --- a/view/tpl/photos_upload.tpl +++ b/view/tpl/photos_upload.tpl @@ -42,8 +42,9 @@ -
    - {{$uploader}} +
    + {{$uploader}} +
    {{/if}} -- cgit v1.2.3 From 73e645fe3da80164d1970d31803727cfcf73f46b Mon Sep 17 00:00:00 2001 From: marijus Date: Tue, 4 Nov 2014 09:35:39 +0100 Subject: class > id mixup --- view/tpl/photos_upload.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/tpl/photos_upload.tpl b/view/tpl/photos_upload.tpl index ae06b808a..611068b6d 100755 --- a/view/tpl/photos_upload.tpl +++ b/view/tpl/photos_upload.tpl @@ -49,5 +49,5 @@ {{/if}} -
    +
    -- cgit v1.2.3 From 8163230e779f0b2150d008d3144440b46566ac76 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 4 Nov 2014 11:34:09 -0800 Subject: it appears bootbox was lost in a bootstrap upgrade --- library/bootstrap/js/bootbox.js | 894 ++++++++++++++++++++++++++++++++++++ library/bootstrap/js/bootbox.min.js | 6 + version.inc | 2 +- 3 files changed, 901 insertions(+), 1 deletion(-) create mode 100644 library/bootstrap/js/bootbox.js create mode 100644 library/bootstrap/js/bootbox.min.js diff --git a/library/bootstrap/js/bootbox.js b/library/bootstrap/js/bootbox.js new file mode 100644 index 000000000..a002e4a35 --- /dev/null +++ b/library/bootstrap/js/bootbox.js @@ -0,0 +1,894 @@ +/** + * bootbox.js [v4.3.0] + * + * http://bootboxjs.com/license.txt + */ + +// @see https://github.com/makeusabrew/bootbox/issues/180 +// @see https://github.com/makeusabrew/bootbox/issues/186 +(function (root, factory) { + + "use strict"; + if (typeof define === "function" && define.amd) { + // AMD. Register as an anonymous module. + define(["jquery"], factory); + } else if (typeof exports === "object") { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + // Browser globals (root is window) + root.bootbox = factory(root.jQuery); + } + +}(this, function init($, undefined) { + + "use strict"; + + // the base DOM structure needed to create a modal + var templates = { + dialog: + "", + header: + "", + footer: + "", + closeButton: + "", + form: + "
    ", + inputs: { + text: + "", + textarea: + "", + email: + "", + select: + "", + checkbox: + "
    ", + date: + "", + time: + "", + number: + "", + password: + "" + } + }; + + var defaults = { + // default language + locale: "en", + // show backdrop or not + backdrop: true, + // animate the modal in/out + animate: true, + // additional class string applied to the top level dialog + className: null, + // whether or not to include a close button + closeButton: true, + // show the dialog immediately by default + show: true, + // dialog container + container: "body" + }; + + // our public object; augmented after our private API + var exports = {}; + + /** + * @private + */ + function _t(key) { + var locale = locales[defaults.locale]; + return locale ? locale[key] : locales.en[key]; + } + + function processCallback(e, dialog, callback) { + e.stopPropagation(); + e.preventDefault(); + + // by default we assume a callback will get rid of the dialog, + // although it is given the opportunity to override this + + // so, if the callback can be invoked and it *explicitly returns false* + // then we'll set a flag to keep the dialog active... + var preserveDialog = $.isFunction(callback) && callback(e) === false; + + // ... otherwise we'll bin it + if (!preserveDialog) { + dialog.modal("hide"); + } + } + + function getKeyLength(obj) { + // @TODO defer to Object.keys(x).length if available? + var k, t = 0; + for (k in obj) { + t ++; + } + return t; + } + + function each(collection, iterator) { + var index = 0; + $.each(collection, function(key, value) { + iterator(key, value, index++); + }); + } + + function sanitize(options) { + var buttons; + var total; + + if (typeof options !== "object") { + throw new Error("Please supply an object of options"); + } + + if (!options.message) { + throw new Error("Please specify a message"); + } + + // make sure any supplied options take precedence over defaults + options = $.extend({}, defaults, options); + + if (!options.buttons) { + options.buttons = {}; + } + + // we only support Bootstrap's "static" and false backdrop args + // supporting true would mean you could dismiss the dialog without + // explicitly interacting with it + options.backdrop = options.backdrop ? "static" : false; + + buttons = options.buttons; + + total = getKeyLength(buttons); + + each(buttons, function(key, button, index) { + + if ($.isFunction(button)) { + // short form, assume value is our callback. Since button + // isn't an object it isn't a reference either so re-assign it + button = buttons[key] = { + callback: button + }; + } + + // before any further checks make sure by now button is the correct type + if ($.type(button) !== "object") { + throw new Error("button with key " + key + " must be an object"); + } + + if (!button.label) { + // the lack of an explicit label means we'll assume the key is good enough + button.label = key; + } + + if (!button.className) { + if (total <= 2 && index === total-1) { + // always add a primary to the main option in a two-button dialog + button.className = "btn-primary"; + } else { + button.className = "btn-default"; + } + } + }); + + return options; + } + + /** + * map a flexible set of arguments into a single returned object + * if args.length is already one just return it, otherwise + * use the properties argument to map the unnamed args to + * object properties + * so in the latter case: + * mapArguments(["foo", $.noop], ["message", "callback"]) + * -> { message: "foo", callback: $.noop } + */ + function mapArguments(args, properties) { + var argn = args.length; + var options = {}; + + if (argn < 1 || argn > 2) { + throw new Error("Invalid argument length"); + } + + if (argn === 2 || typeof args[0] === "string") { + options[properties[0]] = args[0]; + options[properties[1]] = args[1]; + } else { + options = args[0]; + } + + return options; + } + + /** + * merge a set of default dialog options with user supplied arguments + */ + function mergeArguments(defaults, args, properties) { + return $.extend( + // deep merge + true, + // ensure the target is an empty, unreferenced object + {}, + // the base options object for this type of dialog (often just buttons) + defaults, + // args could be an object or array; if it's an array properties will + // map it to a proper options object + mapArguments( + args, + properties + ) + ); + } + + /** + * this entry-level method makes heavy use of composition to take a simple + * range of inputs and return valid options suitable for passing to bootbox.dialog + */ + function mergeDialogOptions(className, labels, properties, args) { + // build up a base set of dialog properties + var baseOptions = { + className: "bootbox-" + className, + buttons: createLabels.apply(null, labels) + }; + + // ensure the buttons properties generated, *after* merging + // with user args are still valid against the supplied labels + return validateButtons( + // merge the generated base properties with user supplied arguments + mergeArguments( + baseOptions, + args, + // if args.length > 1, properties specify how each arg maps to an object key + properties + ), + labels + ); + } + + /** + * from a given list of arguments return a suitable object of button labels + * all this does is normalise the given labels and translate them where possible + * e.g. "ok", "confirm" -> { ok: "OK, cancel: "Annuleren" } + */ + function createLabels() { + var buttons = {}; + + for (var i = 0, j = arguments.length; i < j; i++) { + var argument = arguments[i]; + var key = argument.toLowerCase(); + var value = argument.toUpperCase(); + + buttons[key] = { + label: _t(value) + }; + } + + return buttons; + } + + function validateButtons(options, buttons) { + var allowedButtons = {}; + each(buttons, function(key, value) { + allowedButtons[value] = true; + }); + + each(options.buttons, function(key) { + if (allowedButtons[key] === undefined) { + throw new Error("button key " + key + " is not allowed (options are " + buttons.join("\n") + ")"); + } + }); + + return options; + } + + exports.alert = function() { + var options; + + options = mergeDialogOptions("alert", ["ok"], ["message", "callback"], arguments); + + if (options.callback && !$.isFunction(options.callback)) { + throw new Error("alert requires callback property to be a function when provided"); + } + + /** + * overrides + */ + options.buttons.ok.callback = options.onEscape = function() { + if ($.isFunction(options.callback)) { + return options.callback(); + } + return true; + }; + + return exports.dialog(options); + }; + + exports.confirm = function() { + var options; + + options = mergeDialogOptions("confirm", ["cancel", "confirm"], ["message", "callback"], arguments); + + /** + * overrides; undo anything the user tried to set they shouldn't have + */ + options.buttons.cancel.callback = options.onEscape = function() { + return options.callback(false); + }; + + options.buttons.confirm.callback = function() { + return options.callback(true); + }; + + // confirm specific validation + if (!$.isFunction(options.callback)) { + throw new Error("confirm requires a callback"); + } + + return exports.dialog(options); + }; + + exports.prompt = function() { + var options; + var defaults; + var dialog; + var form; + var input; + var shouldShow; + var inputOptions; + + // we have to create our form first otherwise + // its value is undefined when gearing up our options + // @TODO this could be solved by allowing message to + // be a function instead... + form = $(templates.form); + + // prompt defaults are more complex than others in that + // users can override more defaults + // @TODO I don't like that prompt has to do a lot of heavy + // lifting which mergeDialogOptions can *almost* support already + // just because of 'value' and 'inputType' - can we refactor? + defaults = { + className: "bootbox-prompt", + buttons: createLabels("cancel", "confirm"), + value: "", + inputType: "text" + }; + + options = validateButtons( + mergeArguments(defaults, arguments, ["title", "callback"]), + ["cancel", "confirm"] + ); + + // capture the user's show value; we always set this to false before + // spawning the dialog to give us a chance to attach some handlers to + // it, but we need to make sure we respect a preference not to show it + shouldShow = (options.show === undefined) ? true : options.show; + + /** + * overrides; undo anything the user tried to set they shouldn't have + */ + options.message = form; + + options.buttons.cancel.callback = options.onEscape = function() { + return options.callback(null); + }; + + options.buttons.confirm.callback = function() { + var value; + + switch (options.inputType) { + case "text": + case "textarea": + case "email": + case "select": + case "date": + case "time": + case "number": + case "password": + value = input.val(); + break; + + case "checkbox": + var checkedItems = input.find("input:checked"); + + // we assume that checkboxes are always multiple, + // hence we default to an empty array + value = []; + + each(checkedItems, function(_, item) { + value.push($(item).val()); + }); + break; + } + + return options.callback(value); + }; + + options.show = false; + + // prompt specific validation + if (!options.title) { + throw new Error("prompt requires a title"); + } + + if (!$.isFunction(options.callback)) { + throw new Error("prompt requires a callback"); + } + + if (!templates.inputs[options.inputType]) { + throw new Error("invalid prompt type"); + } + + // create the input based on the supplied type + input = $(templates.inputs[options.inputType]); + + switch (options.inputType) { + case "text": + case "textarea": + case "email": + case "date": + case "time": + case "number": + case "password": + input.val(options.value); + break; + + case "select": + var groups = {}; + inputOptions = options.inputOptions || []; + + if (!inputOptions.length) { + throw new Error("prompt with select requires options"); + } + + each(inputOptions, function(_, option) { + + // assume the element to attach to is the input... + var elem = input; + + if (option.value === undefined || option.text === undefined) { + throw new Error("given options in wrong format"); + } + + + // ... but override that element if this option sits in a group + + if (option.group) { + // initialise group if necessary + if (!groups[option.group]) { + groups[option.group] = $("").attr("label", option.group); + } + + elem = groups[option.group]; + } + + elem.append(""); + }); + + each(groups, function(_, group) { + input.append(group); + }); + + // safe to set a select's value as per a normal input + input.val(options.value); + break; + + case "checkbox": + var values = $.isArray(options.value) ? options.value : [options.value]; + inputOptions = options.inputOptions || []; + + if (!inputOptions.length) { + throw new Error("prompt with checkbox requires options"); + } + + if (!inputOptions[0].value || !inputOptions[0].text) { + throw new Error("given options in wrong format"); + } + + // checkboxes have to nest within a containing element, so + // they break the rules a bit and we end up re-assigning + // our 'input' element to this container instead + input = $("
    "); + + each(inputOptions, function(_, option) { + var checkbox = $(templates.inputs[options.inputType]); + + checkbox.find("input").attr("value", option.value); + checkbox.find("label").append(option.text); + + // we've ensured values is an array so we can always iterate over it + each(values, function(_, value) { + if (value === option.value) { + checkbox.find("input").prop("checked", true); + } + }); + + input.append(checkbox); + }); + break; + } + + if (options.placeholder) { + input.attr("placeholder", options.placeholder); + } + + if(options.pattern){ + input.attr("pattern", options.pattern); + } + + // now place it in our form + form.append(input); + + form.on("submit", function(e) { + e.preventDefault(); + // Fix for SammyJS (or similar JS routing library) hijacking the form post. + e.stopPropagation(); + // @TODO can we actually click *the* button object instead? + // e.g. buttons.confirm.click() or similar + dialog.find(".btn-primary").click(); + }); + + dialog = exports.dialog(options); + + // clear the existing handler focusing the submit button... + dialog.off("shown.bs.modal"); + + // ...and replace it with one focusing our input, if possible + dialog.on("shown.bs.modal", function() { + input.focus(); + }); + + if (shouldShow === true) { + dialog.modal("show"); + } + + return dialog; + }; + + exports.dialog = function(options) { + options = sanitize(options); + + var dialog = $(templates.dialog); + var innerDialog = dialog.find(".modal-dialog"); + var body = dialog.find(".modal-body"); + var buttons = options.buttons; + var buttonStr = ""; + var callbacks = { + onEscape: options.onEscape + }; + + each(buttons, function(key, button) { + + // @TODO I don't like this string appending to itself; bit dirty. Needs reworking + // can we just build up button elements instead? slower but neater. Then button + // can just become a template too + buttonStr += ""; + callbacks[key] = button.callback; + }); + + body.find(".bootbox-body").html(options.message); + + if (options.animate === true) { + dialog.addClass("fade"); + } + + if (options.className) { + dialog.addClass(options.className); + } + + if (options.size === "large") { + innerDialog.addClass("modal-lg"); + } + + if (options.size === "small") { + innerDialog.addClass("modal-sm"); + } + + if (options.title) { + body.before(templates.header); + } + + if (options.closeButton) { + var closeButton = $(templates.closeButton); + + if (options.title) { + dialog.find(".modal-header").prepend(closeButton); + } else { + closeButton.css("margin-top", "-10px").prependTo(body); + } + } + + if (options.title) { + dialog.find(".modal-title").html(options.title); + } + + if (buttonStr.length) { + body.after(templates.footer); + dialog.find(".modal-footer").html(buttonStr); + } + + + /** + * Bootstrap event listeners; used handle extra + * setup & teardown required after the underlying + * modal has performed certain actions + */ + + dialog.on("hidden.bs.modal", function(e) { + // ensure we don't accidentally intercept hidden events triggered + // by children of the current dialog. We shouldn't anymore now BS + // namespaces its events; but still worth doing + if (e.target === this) { + dialog.remove(); + } + }); + + /* + dialog.on("show.bs.modal", function() { + // sadly this doesn't work; show is called *just* before + // the backdrop is added so we'd need a setTimeout hack or + // otherwise... leaving in as would be nice + if (options.backdrop) { + dialog.next(".modal-backdrop").addClass("bootbox-backdrop"); + } + }); + */ + + dialog.on("shown.bs.modal", function() { + dialog.find(".btn-primary:first").focus(); + }); + + /** + * Bootbox event listeners; experimental and may not last + * just an attempt to decouple some behaviours from their + * respective triggers + */ + + dialog.on("escape.close.bb", function(e) { + if (callbacks.onEscape) { + processCallback(e, dialog, callbacks.onEscape); + } + }); + + /** + * Standard jQuery event listeners; used to handle user + * interaction with our dialog + */ + + dialog.on("click", ".modal-footer button", function(e) { + var callbackKey = $(this).data("bb-handler"); + + processCallback(e, dialog, callbacks[callbackKey]); + + }); + + dialog.on("click", ".bootbox-close-button", function(e) { + // onEscape might be falsy but that's fine; the fact is + // if the user has managed to click the close button we + // have to close the dialog, callback or not + processCallback(e, dialog, callbacks.onEscape); + }); + + dialog.on("keyup", function(e) { + if (e.which === 27) { + dialog.trigger("escape.close.bb"); + } + }); + + // the remainder of this method simply deals with adding our + // dialogent to the DOM, augmenting it with Bootstrap's modal + // functionality and then giving the resulting object back + // to our caller + + $(options.container).append(dialog); + + dialog.modal({ + backdrop: options.backdrop, + keyboard: false, + show: false + }); + + if (options.show) { + dialog.modal("show"); + } + + // @TODO should we return the raw element here or should + // we wrap it in an object on which we can expose some neater + // methods, e.g. var d = bootbox.alert(); d.hide(); instead + // of d.modal("hide"); + + /* + function BBDialog(elem) { + this.elem = elem; + } + + BBDialog.prototype = { + hide: function() { + return this.elem.modal("hide"); + }, + show: function() { + return this.elem.modal("show"); + } + }; + */ + + return dialog; + + }; + + exports.setDefaults = function() { + var values = {}; + + if (arguments.length === 2) { + // allow passing of single key/value... + values[arguments[0]] = arguments[1]; + } else { + // ... and as an object too + values = arguments[0]; + } + + $.extend(defaults, values); + }; + + exports.hideAll = function() { + $(".bootbox").modal("hide"); + + return exports; + }; + + + /** + * standard locales. Please add more according to ISO 639-1 standard. Multiple language variants are + * unlikely to be required. If this gets too large it can be split out into separate JS files. + */ + var locales = { + br : { + OK : "OK", + CANCEL : "Cancelar", + CONFIRM : "Sim" + }, + cs : { + OK : "OK", + CANCEL : "Zrušit", + CONFIRM : "Potvrdit" + }, + da : { + OK : "OK", + CANCEL : "Annuller", + CONFIRM : "Accepter" + }, + de : { + OK : "OK", + CANCEL : "Abbrechen", + CONFIRM : "Akzeptieren" + }, + el : { + OK : "Εντάξει", + CANCEL : "Ακύρωση", + CONFIRM : "Επιβεβαίωση" + }, + en : { + OK : "OK", + CANCEL : "Cancel", + CONFIRM : "OK" + }, + es : { + OK : "OK", + CANCEL : "Cancelar", + CONFIRM : "Aceptar" + }, + et : { + OK : "OK", + CANCEL : "Katkesta", + CONFIRM : "OK" + }, + fi : { + OK : "OK", + CANCEL : "Peruuta", + CONFIRM : "OK" + }, + fr : { + OK : "OK", + CANCEL : "Annuler", + CONFIRM : "D'accord" + }, + he : { + OK : "אישור", + CANCEL : "ביטול", + CONFIRM : "אישור" + }, + id : { + OK : "OK", + CANCEL : "Batal", + CONFIRM : "OK" + }, + it : { + OK : "OK", + CANCEL : "Annulla", + CONFIRM : "Conferma" + }, + ja : { + OK : "OK", + CANCEL : "キャンセル", + CONFIRM : "確認" + }, + lt : { + OK : "Gerai", + CANCEL : "Atšaukti", + CONFIRM : "Patvirtinti" + }, + lv : { + OK : "Labi", + CANCEL : "Atcelt", + CONFIRM : "Apstiprināt" + }, + nl : { + OK : "OK", + CANCEL : "Annuleren", + CONFIRM : "Accepteren" + }, + no : { + OK : "OK", + CANCEL : "Avbryt", + CONFIRM : "OK" + }, + pl : { + OK : "OK", + CANCEL : "Anuluj", + CONFIRM : "Potwierdź" + }, + pt : { + OK : "OK", + CANCEL : "Cancelar", + CONFIRM : "Confirmar" + }, + ru : { + OK : "OK", + CANCEL : "Отмена", + CONFIRM : "Применить" + }, + sv : { + OK : "OK", + CANCEL : "Avbryt", + CONFIRM : "OK" + }, + tr : { + OK : "Tamam", + CANCEL : "İptal", + CONFIRM : "Onayla" + }, + zh_CN : { + OK : "OK", + CANCEL : "取消", + CONFIRM : "确认" + }, + zh_TW : { + OK : "OK", + CANCEL : "取消", + CONFIRM : "確認" + } + }; + + exports.init = function(_$) { + return init(_$ || $); + }; + + return exports; +})); diff --git a/library/bootstrap/js/bootbox.min.js b/library/bootstrap/js/bootbox.min.js new file mode 100644 index 000000000..a7ea24fe7 --- /dev/null +++ b/library/bootstrap/js/bootbox.min.js @@ -0,0 +1,6 @@ +/** + * bootbox.js v4.3.0 + * + * http://bootboxjs.com/license.txt + */ +!function(a,b){"use strict";"function"==typeof define&&define.amd?define(["jquery"],b):"object"==typeof exports?module.exports=b(require("jquery")):a.bootbox=b(a.jQuery)}(this,function a(b,c){"use strict";function d(a){var b=q[o.locale];return b?b[a]:q.en[a]}function e(a,c,d){a.stopPropagation(),a.preventDefault();var e=b.isFunction(d)&&d(a)===!1;e||c.modal("hide")}function f(a){var b,c=0;for(b in a)c++;return c}function g(a,c){var d=0;b.each(a,function(a,b){c(a,b,d++)})}function h(a){var c,d;if("object"!=typeof a)throw new Error("Please supply an object of options");if(!a.message)throw new Error("Please specify a message");return a=b.extend({},o,a),a.buttons||(a.buttons={}),a.backdrop=a.backdrop?"static":!1,c=a.buttons,d=f(c),g(c,function(a,e,f){if(b.isFunction(e)&&(e=c[a]={callback:e}),"object"!==b.type(e))throw new Error("button with key "+a+" must be an object");e.label||(e.label=a),e.className||(e.className=2>=d&&f===d-1?"btn-primary":"btn-default")}),a}function i(a,b){var c=a.length,d={};if(1>c||c>2)throw new Error("Invalid argument length");return 2===c||"string"==typeof a[0]?(d[b[0]]=a[0],d[b[1]]=a[1]):d=a[0],d}function j(a,c,d){return b.extend(!0,{},a,i(c,d))}function k(a,b,c,d){var e={className:"bootbox-"+a,buttons:l.apply(null,b)};return m(j(e,d,c),b)}function l(){for(var a={},b=0,c=arguments.length;c>b;b++){var e=arguments[b],f=e.toLowerCase(),g=e.toUpperCase();a[f]={label:d(g)}}return a}function m(a,b){var d={};return g(b,function(a,b){d[b]=!0}),g(a.buttons,function(a){if(d[a]===c)throw new Error("button key "+a+" is not allowed (options are "+b.join("\n")+")")}),a}var n={dialog:"",header:"",footer:"",closeButton:"",form:"
    ",inputs:{text:"",textarea:"",email:"",select:"",checkbox:"
    ",date:"",time:"",number:"",password:""}},o={locale:"en",backdrop:!0,animate:!0,className:null,closeButton:!0,show:!0,container:"body"},p={};p.alert=function(){var a;if(a=k("alert",["ok"],["message","callback"],arguments),a.callback&&!b.isFunction(a.callback))throw new Error("alert requires callback property to be a function when provided");return a.buttons.ok.callback=a.onEscape=function(){return b.isFunction(a.callback)?a.callback():!0},p.dialog(a)},p.confirm=function(){var a;if(a=k("confirm",["cancel","confirm"],["message","callback"],arguments),a.buttons.cancel.callback=a.onEscape=function(){return a.callback(!1)},a.buttons.confirm.callback=function(){return a.callback(!0)},!b.isFunction(a.callback))throw new Error("confirm requires a callback");return p.dialog(a)},p.prompt=function(){var a,d,e,f,h,i,k;if(f=b(n.form),d={className:"bootbox-prompt",buttons:l("cancel","confirm"),value:"",inputType:"text"},a=m(j(d,arguments,["title","callback"]),["cancel","confirm"]),i=a.show===c?!0:a.show,a.message=f,a.buttons.cancel.callback=a.onEscape=function(){return a.callback(null)},a.buttons.confirm.callback=function(){var c;switch(a.inputType){case"text":case"textarea":case"email":case"select":case"date":case"time":case"number":case"password":c=h.val();break;case"checkbox":var d=h.find("input:checked");c=[],g(d,function(a,d){c.push(b(d).val())})}return a.callback(c)},a.show=!1,!a.title)throw new Error("prompt requires a title");if(!b.isFunction(a.callback))throw new Error("prompt requires a callback");if(!n.inputs[a.inputType])throw new Error("invalid prompt type");switch(h=b(n.inputs[a.inputType]),a.inputType){case"text":case"textarea":case"email":case"date":case"time":case"number":case"password":h.val(a.value);break;case"select":var o={};if(k=a.inputOptions||[],!k.length)throw new Error("prompt with select requires options");g(k,function(a,d){var e=h;if(d.value===c||d.text===c)throw new Error("given options in wrong format");d.group&&(o[d.group]||(o[d.group]=b("").attr("label",d.group)),e=o[d.group]),e.append("")}),g(o,function(a,b){h.append(b)}),h.val(a.value);break;case"checkbox":var q=b.isArray(a.value)?a.value:[a.value];if(k=a.inputOptions||[],!k.length)throw new Error("prompt with checkbox requires options");if(!k[0].value||!k[0].text)throw new Error("given options in wrong format");h=b("
    "),g(k,function(c,d){var e=b(n.inputs[a.inputType]);e.find("input").attr("value",d.value),e.find("label").append(d.text),g(q,function(a,b){b===d.value&&e.find("input").prop("checked",!0)}),h.append(e)})}return a.placeholder&&h.attr("placeholder",a.placeholder),a.pattern&&h.attr("pattern",a.pattern),f.append(h),f.on("submit",function(a){a.preventDefault(),a.stopPropagation(),e.find(".btn-primary").click()}),e=p.dialog(a),e.off("shown.bs.modal"),e.on("shown.bs.modal",function(){h.focus()}),i===!0&&e.modal("show"),e},p.dialog=function(a){a=h(a);var c=b(n.dialog),d=c.find(".modal-dialog"),f=c.find(".modal-body"),i=a.buttons,j="",k={onEscape:a.onEscape};if(g(i,function(a,b){j+="",k[a]=b.callback}),f.find(".bootbox-body").html(a.message),a.animate===!0&&c.addClass("fade"),a.className&&c.addClass(a.className),"large"===a.size&&d.addClass("modal-lg"),"small"===a.size&&d.addClass("modal-sm"),a.title&&f.before(n.header),a.closeButton){var l=b(n.closeButton);a.title?c.find(".modal-header").prepend(l):l.css("margin-top","-10px").prependTo(f)}return a.title&&c.find(".modal-title").html(a.title),j.length&&(f.after(n.footer),c.find(".modal-footer").html(j)),c.on("hidden.bs.modal",function(a){a.target===this&&c.remove()}),c.on("shown.bs.modal",function(){c.find(".btn-primary:first").focus()}),c.on("escape.close.bb",function(a){k.onEscape&&e(a,c,k.onEscape)}),c.on("click",".modal-footer button",function(a){var d=b(this).data("bb-handler");e(a,c,k[d])}),c.on("click",".bootbox-close-button",function(a){e(a,c,k.onEscape)}),c.on("keyup",function(a){27===a.which&&c.trigger("escape.close.bb")}),b(a.container).append(c),c.modal({backdrop:a.backdrop,keyboard:!1,show:!1}),a.show&&c.modal("show"),c},p.setDefaults=function(){var a={};2===arguments.length?a[arguments[0]]=arguments[1]:a=arguments[0],b.extend(o,a)},p.hideAll=function(){return b(".bootbox").modal("hide"),p};var q={br:{OK:"OK",CANCEL:"Cancelar",CONFIRM:"Sim"},cs:{OK:"OK",CANCEL:"Zrušit",CONFIRM:"Potvrdit"},da:{OK:"OK",CANCEL:"Annuller",CONFIRM:"Accepter"},de:{OK:"OK",CANCEL:"Abbrechen",CONFIRM:"Akzeptieren"},el:{OK:"Εντάξει",CANCEL:"Ακύρωση",CONFIRM:"Επιβεβαίωση"},en:{OK:"OK",CANCEL:"Cancel",CONFIRM:"OK"},es:{OK:"OK",CANCEL:"Cancelar",CONFIRM:"Aceptar"},et:{OK:"OK",CANCEL:"Katkesta",CONFIRM:"OK"},fi:{OK:"OK",CANCEL:"Peruuta",CONFIRM:"OK"},fr:{OK:"OK",CANCEL:"Annuler",CONFIRM:"D'accord"},he:{OK:"אישור",CANCEL:"ביטול",CONFIRM:"אישור"},id:{OK:"OK",CANCEL:"Batal",CONFIRM:"OK"},it:{OK:"OK",CANCEL:"Annulla",CONFIRM:"Conferma"},ja:{OK:"OK",CANCEL:"キャンセル",CONFIRM:"確認"},lt:{OK:"Gerai",CANCEL:"Atšaukti",CONFIRM:"Patvirtinti"},lv:{OK:"Labi",CANCEL:"Atcelt",CONFIRM:"Apstiprināt"},nl:{OK:"OK",CANCEL:"Annuleren",CONFIRM:"Accepteren"},no:{OK:"OK",CANCEL:"Avbryt",CONFIRM:"OK"},pl:{OK:"OK",CANCEL:"Anuluj",CONFIRM:"Potwierdź"},pt:{OK:"OK",CANCEL:"Cancelar",CONFIRM:"Confirmar"},ru:{OK:"OK",CANCEL:"Отмена",CONFIRM:"Применить"},sv:{OK:"OK",CANCEL:"Avbryt",CONFIRM:"OK"},tr:{OK:"Tamam",CANCEL:"İptal",CONFIRM:"Onayla"},zh_CN:{OK:"OK",CANCEL:"取消",CONFIRM:"确认"},zh_TW:{OK:"OK",CANCEL:"取消",CONFIRM:"確認"}};return p.init=function(c){return a(c||b)},p}); \ No newline at end of file diff --git a/version.inc b/version.inc index 5e9a104d4..50fb9a9a8 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-03.848 +2014-11-04.849 -- cgit v1.2.3 From 474e7fff0059352b82734dc81716b646873705d8 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Tue, 4 Nov 2014 19:40:00 +0000 Subject: Remove legacy custom/ --- index.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/index.php b/index.php index ae8a2e17d..7a61fd3b8 100755 --- a/index.php +++ b/index.php @@ -198,21 +198,10 @@ if(strlen($a->module)) { if(! $a->module_loaded) { - /* - * Traditionally we looked in custom first, but we're leaning toward a convention where site - * specific things are all in directories called 'site'. So custom will be going away. - * There are a very small number of folks affected. You know who you are. Once you've got things sorted, - * please remove the lines for "custom/" and push to the project repository. - */ - if(file_exists("mod/site/{$a->module}.php")) { include_once("mod/site/{$a->module}.php"); $a->module_loaded = true; } - elseif(file_exists("custom/{$a->module}.php")) { - include_once("custom/{$a->module}.php"); - $a->module_loaded = true; - } elseif(file_exists("mod/{$a->module}.php")) { include_once("mod/{$a->module}.php"); $a->module_loaded = true; -- cgit v1.2.3 From ba7f1bb8eee5f5374246a512b6c510f874f417ce Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 4 Nov 2014 15:24:24 -0800 Subject: configurable visual alerts/notifications --- boot.php | 16 ++++ mod/ping.php | 184 ++++++++++++++++++++++++++++------------------ mod/settings.php | 54 +++++++++++++- view/css/mod_settings.css | 2 +- view/tpl/settings.tpl | 23 ++++++ 5 files changed, 206 insertions(+), 73 deletions(-) diff --git a/boot.php b/boot.php index 1d940961b..af772b3d7 100755 --- a/boot.php +++ b/boot.php @@ -377,6 +377,22 @@ define ( 'NOTIFY_POKE', 0x0200 ); define ( 'NOTIFY_SYSTEM', 0x8000 ); +/** + * visual notification options + */ + +define ( 'VNOTIFY_NETWORK', 0x0001 ); +define ( 'VNOTIFY_CHANNEL', 0x0002 ); +define ( 'VNOTIFY_MAIL', 0x0004 ); +define ( 'VNOTIFY_EVENT', 0x0008 ); +define ( 'VNOTIFY_EVENTTODAY', 0x0010 ); +define ( 'VNOTIFY_BIRTHDAY', 0x0020 ); +define ( 'VNOTIFY_SYSTEM', 0x0040 ); +define ( 'VNOTIFY_INFO', 0x0080 ); +define ( 'VNOTIFY_ALERT', 0x0100 ); +define ( 'VNOTIFY_INTRO', 0x0200 ); +define ( 'VNOTIFY_REGISTER', 0x0400 ); + // We need a flag to designate that a site is a // global directory mirror, but probably doesn't diff --git a/mod/ping.php b/mod/ping.php index 49475de66..98584cb14 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -41,6 +41,19 @@ function ping_init(&$a) { header("content-type: application/json"); + $vnotify = false; + + if(local_user()) { + $vnotify = get_pconfig(local_user(),'system','vnotify'); + $evdays = intval(get_pconfig(local_user(),'system','evdays')); + } + + // if unset show all visual notification types + if($vnotify === false) + $vnotify = (-1); + if($evdays < 1) + $evdays = 3; + /** * If you have several windows open to this site and switch to a different channel * in one of them, the others may get into a confused state showing you a page or options @@ -71,6 +84,11 @@ function ping_init(&$a) { } unset($_SESSION['sysmsg_info']); } + if(! ($vnotify & VNOTIFY_INFO)) + $result['info'] = array(); + if(! ($vnotify & VNOTIFY_ALERT)) + $result['notice'] = array(); + if($a->install) { echo json_encode($result); @@ -303,7 +321,7 @@ function ping_init(&$a) { WHERE `event`.`uid` = %d AND start < '%s' AND start > '%s' and `ignore` = 0 ORDER BY `start` DESC ", intval(local_user()), - dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + 7 days')), + dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + ' . intval($evdays) . ' days')), dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now - 1 days')) ); @@ -341,101 +359,125 @@ function ping_init(&$a) { * Normal ping - just the counts, no detail */ - $t = q("select count(*) as total from notify where uid = %d and seen = 0", - intval(local_user()) - ); - if($t) - $result['notify'] = intval($t[0]['total']); + if($vnotify & VNOTIFY_SYSTEM) { + $t = q("select count(*) as total from notify where uid = %d and seen = 0", + intval(local_user()) + ); + if($t) + $result['notify'] = intval($t[0]['total']); + } $t1 = dba_timer(); - $r = q("SELECT id, item_restrict, item_flags FROM item - WHERE (item_restrict = %d) and ( item_flags & %d ) and uid = %d", - intval(ITEM_VISIBLE), - intval(ITEM_UNSEEN), - intval(local_user()) - ); + if($vnotify & (VNOTIFY_NETWORK|VNOTIFY_CHANNEL)) { + $r = q("SELECT id, item_restrict, item_flags FROM item + WHERE (item_restrict = %d) and ( item_flags & %d ) and uid = %d", + intval(ITEM_VISIBLE), + intval(ITEM_UNSEEN), + intval(local_user()) + ); - if(count($r)) { - $arr = array('items' => $r); - call_hooks('network_ping', $arr); + if($r) { + $arr = array('items' => $r); + call_hooks('network_ping', $arr); - foreach ($r as $it) { - if($it['item_flags'] & ITEM_WALL) - $result['home'] ++; - else - $result['network'] ++; + foreach ($r as $it) { + if($it['item_flags'] & ITEM_WALL) + $result['home'] ++; + else + $result['network'] ++; + } } } + if(! ($vnotify & VNOTIFY_NETWORK)) + $result['network'] = 0; + if(! ($vnotify & VNOTIFY_CHANNEL)) + $result['home'] = 0; + $t2 = dba_timer(); - $intr = q("SELECT COUNT(abook.abook_id) AS total FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash where abook_channel = %d and (abook_flags & %d) and not ((abook_flags & %d) or (xchan_flags & %d))", - intval(local_user()), - intval(ABOOK_FLAG_PENDING), - intval(ABOOK_FLAG_SELF|ABOOK_FLAG_IGNORED), - intval(XCHAN_FLAGS_DELETED|XCHAN_FLAGS_ORPHAN) - ); + if($vnotify & VNOTIFY_INTRO) { + $intr = q("SELECT COUNT(abook.abook_id) AS total FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash where abook_channel = %d and (abook_flags & %d) and not ((abook_flags & %d) or (xchan_flags & %d))", + intval(local_user()), + intval(ABOOK_FLAG_PENDING), + intval(ABOOK_FLAG_SELF|ABOOK_FLAG_IGNORED), + intval(XCHAN_FLAGS_DELETED|XCHAN_FLAGS_ORPHAN) + ); - $t3 = dba_timer(); + $t3 = dba_timer(); - if($intr) - $result['intros'] = intval($intr[0]['total']); + if($intr) + $result['intros'] = intval($intr[0]['total']); + } $t4 = dba_timer(); $channel = get_app()->get_channel(); - $mails = q("SELECT count(id) as total from mail - WHERE channel_id = %d AND not (mail_flags & %d) and from_xchan != '%s' ", - intval(local_user()), - intval(MAIL_SEEN), - dbesc($channel['channel_hash']) - ); - if($mails) - $result['mail'] = intval($mails[0]['total']); - - if ($a->config['system']['register_policy'] == REGISTER_APPROVE && is_site_admin()) { - $regs = q("SELECT count(account_id) as total from account where (account_flags & %d)", - intval(ACCOUNT_PENDING) + if($vnotify & VNOTIFY_MAIL) { + $mails = q("SELECT count(id) as total from mail + WHERE channel_id = %d AND not (mail_flags & %d) and from_xchan != '%s' ", + intval(local_user()), + intval(MAIL_SEEN), + dbesc($channel['channel_hash']) ); - if($regs) - $result['register'] = intval($regs[0]['total']); + if($mails) + $result['mail'] = intval($mails[0]['total']); + } + + if($vnotify & VNOTIFY_REGISTER) { + if ($a->config['system']['register_policy'] == REGISTER_APPROVE && is_site_admin()) { + $regs = q("SELECT count(account_id) as total from account where (account_flags & %d)", + intval(ACCOUNT_PENDING) + ); + if($regs) + $result['register'] = intval($regs[0]['total']); + } } $t5 = dba_timer(); - $events = q("SELECT type, start, adjust FROM `event` - WHERE `event`.`uid` = %d AND start < '%s' AND start > '%s' and `ignore` = 0 - ORDER BY `start` ASC ", - intval(local_user()), - dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + 7 days')), - dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now - 1 days')) - ); - - if($events) { - $result['all_events'] = count($events); - - if($result['all_events']) { - $str_now = datetime_convert('UTC', date_default_timezone_get(), 'now', 'Y-m-d'); - foreach($events as $x) { - $bd = false; - if($x['type'] === 'birthday') { - $result['birthdays'] ++; - $bd = true; - } - else { - $result['events'] ++; - } - if(datetime_convert('UTC', ((intval($x['adjust'])) ? date_default_timezone_get() : 'UTC'), $x['start'], 'Y-m-d') === $str_now) { - $result['all_events_today'] ++; - if($bd) - $result['birthdays_today'] ++; - else - $result['events_today'] ++; + if($vnotify & (VNOTIFY_EVENT|VNOTIFY_EVENTTODAY|VNOTIFY_BIRTHDAY)) { + $events = q("SELECT type, start, adjust FROM `event` + WHERE `event`.`uid` = %d AND start < '%s' AND start > '%s' and `ignore` = 0 + ORDER BY `start` ASC ", + intval(local_user()), + dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + ' . intval($evdays) . ' days')), + dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now - 1 days')) + ); + + if($events) { + $result['all_events'] = count($events); + + if($result['all_events']) { + $str_now = datetime_convert('UTC', date_default_timezone_get(), 'now', 'Y-m-d'); + foreach($events as $x) { + $bd = false; + if($x['type'] === 'birthday') { + $result['birthdays'] ++; + $bd = true; + } + else { + $result['events'] ++; + } + if(datetime_convert('UTC', ((intval($x['adjust'])) ? date_default_timezone_get() : 'UTC'), $x['start'], 'Y-m-d') === $str_now) { + $result['all_events_today'] ++; + if($bd) + $result['birthdays_today'] ++; + else + $result['events_today'] ++; + } } } } } + if(! ($vnotify & VNOTIFY_EVENT)) + $result['all_events'] = $result['events'] = 0; + if(! ($vnotify & VNOTIFY_EVENTTODAY)) + $result['all_events_today'] = $result['events_today'] = 0; + if(! ($vnotify & VNOTIFY_BIRTHDAY)) + $result['birthdays'] = 0; + $x = json_encode($result); diff --git a/mod/settings.php b/mod/settings.php index 58257368e..b303bdacf 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -358,6 +358,8 @@ function settings_post(&$a) { $openid = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url'])) : ''); $maxreq = ((x($_POST,'maxreq')) ? intval($_POST['maxreq']) : 0); $expire = ((x($_POST,'expire')) ? intval($_POST['expire']) : 0); + $evdays = ((x($_POST,'evdays')) ? intval($_POST['evdays']) : 3); + $channel_menu = ((x($_POST['channel_menu'])) ? htmlspecialchars_decode(trim($_POST['channel_menu']),ENT_QUOTES) : ''); $expire_items = ((x($_POST,'expire_items')) ? intval($_POST['expire_items']) : 0); @@ -404,6 +406,32 @@ function settings_post(&$a) { if(x($_POST,'notify8')) $notify += intval($_POST['notify8']); + + $vnotify = 0; + + if(x($_POST,'vnotify1')) + $vnotify += intval($_POST['vnotify1']); + if(x($_POST,'vnotify2')) + $vnotify += intval($_POST['vnotify2']); + if(x($_POST,'vnotify3')) + $vnotify += intval($_POST['vnotify3']); + if(x($_POST,'vnotify4')) + $vnotify += intval($_POST['vnotify4']); + if(x($_POST,'vnotify5')) + $vnotify += intval($_POST['vnotify5']); + if(x($_POST,'vnotify6')) + $vnotify += intval($_POST['vnotify6']); + if(x($_POST,'vnotify7')) + $vnotify += intval($_POST['vnotify7']); + if(x($_POST,'vnotify8')) + $vnotify += intval($_POST['vnotify8']); + if(x($_POST,'vnotify9')) + $vnotify += intval($_POST['vnotify9']); + if(x($_POST,'vnotify10')) + $vnotify += intval($_POST['vnotify10']); + if(x($_POST,'vnotify11')) + $vnotify += intval($_POST['vnotify11']); + $channel = $a->get_channel(); $err = ''; @@ -432,6 +460,8 @@ function settings_post(&$a) { set_pconfig(local_user(),'system','post_profilechange', $post_profilechange); set_pconfig(local_user(),'system','blocktags',$blocktags); set_pconfig(local_user(),'system','channel_menu',$channel_menu); + set_pconfig(local_user(),'system','vnotify',$vnotify); + set_pconfig(local_user(),'system','evdays',$evdays); $r = q("update channel set channel_name = '%s', channel_pageflags = %d, channel_timezone = '%s', channel_location = '%s', channel_notifyflags = %d, channel_max_anon_mail = %d, channel_max_friend_req = %d, channel_expire_days = %d $set_perms where channel_id = %d limit 1", dbesc($username), @@ -929,9 +959,15 @@ function settings_content(&$a) { } } + $evdays = get_pconfig(local_user(),'system','evdays'); + if(! $evdays) + $evdays = 3; $permissions_role = get_pconfig(local_user(),'system','permissions_role'); $permissions_set = (($permissions_role && $permissions_role != 'custom') ? true : false); + $vnotify = get_pconfig(local_user(),'system','vnotify'); + if($vnotify === false) + $vnotify = (-1); $o .= replace_macros($stpl,array( '$ptitle' => t('Channel Settings'), @@ -1001,7 +1037,23 @@ function settings_content(&$a) { '$notify7' => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''), '$notify8' => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''), - + + '$lbl_vnot' => t('Show visual notifications including:'), + + '$vnotify1' => array('vnotify1', t('Unseen matrix activity'), ($vnotify & VNOTIFY_NETWORK), VNOTIFY_NETWORK, ''), + '$vnotify2' => array('vnotify2', t('Unseen channel activity'), ($vnotify & VNOTIFY_CHANNEL), VNOTIFY_CHANNEL, ''), + '$vnotify3' => array('vnotify3', t('Unseen private messages'), ($vnotify & VNOTIFY_MAIL), VNOTIFY_MAIL, t('Recommended')), + '$vnotify4' => array('vnotify4', t('Upcoming events'), ($vnotify & VNOTIFY_EVENT), VNOTIFY_EVENT, ''), + '$vnotify5' => array('vnotify5', t('Events today'), ($vnotify & VNOTIFY_EVENTTODAY), VNOTIFY_EVENTTODAY, ''), + '$vnotify6' => array('vnotify6', t('Upcoming birthdays'), ($vnotify & VNOTIFY_BIRTHDAY), VNOTIFY_BIRTHDAY, t('Not available in all themes')), + '$vnotify7' => array('vnotify7', t('Personal conversation updates'), ($vnotify & VNOTIFY_SYSTEM), VNOTIFY_SYSTEM, ''), + '$vnotify8' => array('vnotify8', t('System info messages'), ($vnotify & VNOTIFY_INFO), VNOTIFY_INFO, t('Recommended')), + '$vnotify9' => array('vnotify9', t('System critical alerts'), ($vnotify & VNOTIFY_ALERT), VNOTIFY_ALERT, t('Recommended')), + '$vnotify10' => array('vnotify10', t('New connections'), ($vnotify & VNOTIFY_INTRO), VNOTIFY_INTRO, t('Recommended')), + '$vnotify11' => array('vnotify11', t('System Registrations'), ($vnotify & VNOTIFY_REGISTER), VNOTIFY_REGISTER, ''), + + '$evdays' => array('evdays', t('Notify me of events this many days in advance'), $evdays, t('Must be greater than 0')), + '$h_advn' => t('Advanced Account/Page Type Settings'), '$h_descadvn' => t('Change the behaviour of this account for special situations'), '$pagetype' => $pagetype, diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css index d0c970989..b03023e21 100644 --- a/view/css/mod_settings.css +++ b/view/css/mod_settings.css @@ -45,7 +45,7 @@ ul#settings-privacy-macros { margin-left: 20px; width: 330px; } -#settings-notify-desc, #settings-activity-desc { +#settings-notify-desc, #settings-activity-desc, #settings-vnotify-desc { font-weight: bold; margin-bottom: 15px; } diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 4c1b8eb8f..7fa52677b 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -100,6 +100,27 @@ {{include file="field_intcheckbox.tpl" field=$notify8}}
    +
    {{$lbl_vnot}}
    + +
    +{{include file="field_intcheckbox.tpl" field=$vnotify1}} +{{include file="field_intcheckbox.tpl" field=$vnotify2}} +{{include file="field_intcheckbox.tpl" field=$vnotify3}} +{{include file="field_intcheckbox.tpl" field=$vnotify4}} +{{include file="field_intcheckbox.tpl" field=$vnotify5}} +{{include file="field_intcheckbox.tpl" field=$vnotify6}} +{{include file="field_intcheckbox.tpl" field=$vnotify10}} +{{include file="field_intcheckbox.tpl" field=$vnotify7}} +{{include file="field_intcheckbox.tpl" field=$vnotify8}} +{{include file="field_intcheckbox.tpl" field=$vnotify9}} + +{{*include file="field_intcheckbox.tpl" field=$vnotify11*}} +
    + +{{include file="field_input.tpl" field=$evdays}} + + +
    @@ -110,6 +131,8 @@ {{if $menus}}

    {{$lbl_misc}}

    + +
    {{$menu_desc}}
    -- cgit v1.2.3 From 74b3e0a7eb03619de6ba7b602196a7534e242f56 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 4 Nov 2014 18:29:17 -0800 Subject: changed notification description --- mod/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/settings.php b/mod/settings.php index b303bdacf..253e801a8 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -1046,7 +1046,7 @@ function settings_content(&$a) { '$vnotify4' => array('vnotify4', t('Upcoming events'), ($vnotify & VNOTIFY_EVENT), VNOTIFY_EVENT, ''), '$vnotify5' => array('vnotify5', t('Events today'), ($vnotify & VNOTIFY_EVENTTODAY), VNOTIFY_EVENTTODAY, ''), '$vnotify6' => array('vnotify6', t('Upcoming birthdays'), ($vnotify & VNOTIFY_BIRTHDAY), VNOTIFY_BIRTHDAY, t('Not available in all themes')), - '$vnotify7' => array('vnotify7', t('Personal conversation updates'), ($vnotify & VNOTIFY_SYSTEM), VNOTIFY_SYSTEM, ''), + '$vnotify7' => array('vnotify7', t('System (personal) notifications'), ($vnotify & VNOTIFY_SYSTEM), VNOTIFY_SYSTEM, ''), '$vnotify8' => array('vnotify8', t('System info messages'), ($vnotify & VNOTIFY_INFO), VNOTIFY_INFO, t('Recommended')), '$vnotify9' => array('vnotify9', t('System critical alerts'), ($vnotify & VNOTIFY_ALERT), VNOTIFY_ALERT, t('Recommended')), '$vnotify10' => array('vnotify10', t('New connections'), ($vnotify & VNOTIFY_INTRO), VNOTIFY_INTRO, t('Recommended')), -- cgit v1.2.3 From b16ee29cc338236264e62cf40248f54a1f785dbd Mon Sep 17 00:00:00 2001 From: marijus Date: Wed, 5 Nov 2014 10:32:30 +0100 Subject: release the navbar in landscape mode on small devices --- view/theme/redbasic/css/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index b9726590a..156e16687 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2390,6 +2390,13 @@ aside .nav-pills > li > a { } +/* release the navbar in landscape view on small devices */ +@media screen and (max-height: 320px) { + .navbar-fixed-top { + position: absolute; + } +} + .shareable_element_text { height: 300px; width: 300px; -- cgit v1.2.3 From 3b22e2f5f508cb5e45ae426210e5ca9fe9115417 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 5 Nov 2014 16:21:03 -0800 Subject: some minor cleanup of unreported (and as yet undiscovered) issues with permissions toggling. No smoking guns and no obvious issues discovered here. Repeated and tried to duplicate zottell's issue as described without seeing any obvious problems. --- include/follow.php | 5 +++-- include/identity.php | 2 ++ mod/settings.php | 1 + version.inc | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/include/follow.php b/include/follow.php index b5196834d..421bdd083 100644 --- a/include/follow.php +++ b/include/follow.php @@ -203,8 +203,9 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) return $result; } - $r = q("select count(*) as total from abook where abook_account = %d and ( abook_flags & ABOOK_FLAG_FEED )", - intval($aid) + $r = q("select count(*) as total from abook where abook_account = %d and ( abook_flags & %d )", + intval($aid), + intval(ABOOK_FLAG_FEED) ); if($r) $total_feeds = $r[0]['total']; diff --git a/include/identity.php b/include/identity.php index 16e3eff0e..b9ee00623 100644 --- a/include/identity.php +++ b/include/identity.php @@ -376,6 +376,8 @@ function create_identity($arr) { set_pconfig($newuid,'system','permissions_role',$arr['permissions_role']); if(array_key_exists('online',$role_permissions)) set_pconfig($newuid,'system','hide_presence',1-intval($role_permissions['online'])); + if(array_key_exists('perms_auto',$role_permissions)) + set_pconfig($newuid,'system','autoperms',(($role_permissions['perms_auto']) ? $role_permissions['perms_accept'] : 0)); } // Create a group with yourself as a member. This allows somebody to use it diff --git a/mod/settings.php b/mod/settings.php index 253e801a8..309be0797 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -337,6 +337,7 @@ function settings_post(&$a) { intval(local_user()), intval(ABOOK_FLAG_SELF) ); + set_pconfig(local_user(),'system','autoperms',(($role_permissions['perms_auto']) ? intval($role_permissions['perms_accept']) : 0)); foreach($role_permissions as $p => $v) { if(strpos($p,'channel_') !== false) { diff --git a/version.inc b/version.inc index 50fb9a9a8..b83d89a30 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-04.849 +2014-11-05.850 -- cgit v1.2.3 From 038e7c892376f51f81a2b9769a5a0b69cc17571a Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 5 Nov 2014 18:39:10 -0800 Subject: crude skeleton for location manager and the UI sucks but at least it's on a webpage and you don't have to do it by hand. --- mod/locs.php | 70 ++++++++++++++++++++++++++++++-------------------- view/css/mod_locs.css | 3 +++ view/tpl/locmanage.tpl | 26 +++++++++++++++++++ 3 files changed, 71 insertions(+), 28 deletions(-) create mode 100644 view/css/mod_locs.css create mode 100644 view/tpl/locmanage.tpl diff --git a/mod/locs.php b/mod/locs.php index 95aa7a579..b707f6bd9 100644 --- a/mod/locs.php +++ b/mod/locs.php @@ -1,34 +1,6 @@ get_channel(); + + $r = q("select * from hubloc where hubloc_hash = '%s'", + dbesc($channel['channel_hash']) + ); + + if(! $r) { + notice( t('No locations found.') . EOL); + return; + } + + + for($x = 0; $x < count($r); $x ++) { + $r[$x]['primary'] = (($r[$x]['hubloc_flags'] & HUBLOC_FLAGS_PRIMARY) ? true : false); + $r[$x]['deleted'] = (($r[$x]['hubloc_flags'] & HUBLOC_FLAGS_DELETED) ? true : false); + } + + + + $o = replace_macros(get_markup_template('locmanage.tpl'), array( + '$header' => t('Manage Channel Locations'), + '$loc' => t('Location (address)'), + '$mkprm' => t('Primary Location'), + '$drop' => t('Drop location'), + '$submit' => t('Submit'), + '$hubs' => $r + )); + + return $o; } \ No newline at end of file diff --git a/view/css/mod_locs.css b/view/css/mod_locs.css new file mode 100644 index 000000000..95aee6aef --- /dev/null +++ b/view/css/mod_locs.css @@ -0,0 +1,3 @@ +td { +padding: 10px; +} diff --git a/view/tpl/locmanage.tpl b/view/tpl/locmanage.tpl new file mode 100644 index 000000000..5a25850a1 --- /dev/null +++ b/view/tpl/locmanage.tpl @@ -0,0 +1,26 @@ +

    {{$header}}

    + + + + + +{{foreach $hubs as $hub}} + + + + +{{/foreach}} +
    {{$loc}}{{$mkprm}}{{$drop}}
    +{{if $hub.deleted}}{{/if}} +{{$hub.hubloc_url}} ({{$hub.hubloc_addr}}){{if $hub.deleted}}{{/if}} + +{{if $hub.primary}}{{else}}{{/if}} +{{if $hub.primary}}{{else}}{{if ! $hub.deleted}}{{/if}}{{/if}}
    + -- cgit v1.2.3 From 1237957dd54b47685269300ca128455463e0787c Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 5 Nov 2014 21:02:33 -0800 Subject: logging changes, untranslated string --- include/bb2diaspora.php | 6 +++--- include/diaspora.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 8a178d1ac..3c4f07568 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -277,7 +277,7 @@ function bb2diaspora_itemwallwall(&$item) { } if(($item['mid'] == $item['parent_mid']) && ($item['author_xchan'] != $item['owner_xchan']) && (is_array($item['author']))) { - logger('bb2diaspora_itemwallwall: author: ' . print_r($item['author'],true), LOGGER_DEBUG); + logger('bb2diaspora_itemwallwall: author: ' . print_r($item['author'],true), LOGGER_DATA); } if(($item['mid'] == $item['parent_mid']) && ($item['author_xchan'] != $item['owner_xchan']) && (is_array($item['author'])) && $item['author']['xchan_url'] && $item['author']['xchan_name'] && $item['author']['xchan_photo_m']) { @@ -388,7 +388,7 @@ function bb2diaspora_itembody($item,$force_update = false) { } } - logger('bb2diaspora_itembody : ' . $body); +// logger('bb2diaspora_itembody : ' . $body, LOGGER_DATA); return html_entity_decode($body); @@ -462,7 +462,7 @@ function format_event_diaspora($ev) { $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM - $o = 'Friendica event notification:' . "\n"; + $o = t('Redmatrix event notification:') . "\n"; $o .= '**' . (($ev['summary']) ? bb2diaspora($ev['summary']) : bb2diaspora($ev['desc'])) . '**' . "\n"; diff --git a/include/diaspora.php b/include/diaspora.php index d4e8a2802..7858fa203 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -58,7 +58,7 @@ function diaspora_dispatch($importer,$msg,$attempt=1) { $xmlbase = $parsed_xml->post; - logger('diaspora_dispatch: ' . print_r($xmlbase,true), LOGGER_DATA); +// logger('diaspora_dispatch: ' . print_r($xmlbase,true), LOGGER_DATA); if($xmlbase->request) { -- cgit v1.2.3 From 4057e82bb46e7f30e8bccfb076be85ac9f91f256 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 6 Nov 2014 01:24:04 -0800 Subject: category tagblock --- include/taxonomy.php | 22 ++++++++++++++++++++++ include/widgets.php | 11 +++++++++++ version.inc | 2 +- 3 files changed, 34 insertions(+), 1 deletion(-) diff --git a/include/taxonomy.php b/include/taxonomy.php index 35605da22..d683b24a6 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -216,6 +216,28 @@ function tagblock($link,$uid,$count = 0,$authors = '',$flags = 0,$restrict = 0,$ return $o; } +function catblock($uid,$count = 0,$authors = '',$flags = 0,$restrict = 0,$type = TERM_CATEGORY) { + $o = ''; + $tab = 0; + + $r = tagadelic($uid,$count,$authors,$flags,$restrict,$type); + + if($r) { + $c = q("select channel_address from channel where channel_id = %d limit 1", + intval($uid) + ); + + $o = '

    ' . t('Categories') . '

    '; + foreach($r as $rr) { + $o .= ''.$rr[0].' ' . "\r\n"; + } + $o .= '
    '; + } + return $o; +} + + + function dir_tagblock($link,$r) { $o = ''; $tab = 0; diff --git a/include/widgets.php b/include/widgets.php index f678e40dd..dcad3eff6 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -400,6 +400,17 @@ function widget_tagcloud_wall($arr) { return tagblock('search',$a->profile['profile_uid'],$limit,$a->profile['channel_hash'],ITEM_WALL); return ''; } +function widget_catcloud_wall($arr) { + $a = get_app(); + if((! $a->profile['profile_uid']) || (! $a->profile['channel_hash'])) + return ''; + if(! perm_is_allowed($a->profile['profile_uid'],get_observer_hash(),'view_stream')) + return ''; + + $limit = ((array_key_exists('limit',$arr)) ? intval($arr['limit']) : 50); + return catblock($a->profile['profile_uid'],$limit,$a->profile['channel_hash'],ITEM_WALL); + return ''; +} function widget_affinity($arr) { diff --git a/version.inc b/version.inc index b83d89a30..01d6c72d9 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-05.850 +2014-11-06.851 -- cgit v1.2.3 From a23435540ef097eb6e718129004d259a5313ef6b Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 6 Nov 2014 01:32:47 -0800 Subject: make sure the "tagcloud" actually shows hashtags. So we don't confuse folks with categories. --- include/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/taxonomy.php b/include/taxonomy.php index d683b24a6..fab31c73d 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -209,7 +209,7 @@ function tagblock($link,$uid,$count = 0,$authors = '',$flags = 0,$restrict = 0,$ if($r) { $o = '

    ' . t('Tags') . '

    '; foreach($r as $rr) { - $o .= ''.$rr[0].' ' . "\r\n"; + $o .= '#'.$rr[0].' ' . "\r\n"; } $o .= '
    '; } -- cgit v1.2.3 From 5e7e8d1089e6249093cb6758ecf9384465640b33 Mon Sep 17 00:00:00 2001 From: marijus Date: Thu, 6 Nov 2014 11:57:33 +0100 Subject: provide a lockstate for photo uploads --- mod/photos.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mod/photos.php b/mod/photos.php index eb634259f..8eee95075 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -555,7 +555,9 @@ function photos_content(&$a) { 'deny_cid' => $channel['channel_deny_cid'], 'deny_gid' => $channel['channel_deny_gid'] ); - } + + $lockstate = (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'); + } $aclselect_e = (($_is_owner) ? populate_acl($channel_acl,false) : ''); @@ -576,6 +578,7 @@ function photos_content(&$a) { '$selname' => $selname, '$permissions' => t('Permissions'), '$aclselect' => $aclselect_e, + '$lockstate' => $lockstate, '$uploader' => $ret['addon_text'], '$default' => (($ret['default_upload']) ? true : false), '$uploadurl' => $ret['post_url'], -- cgit v1.2.3 From 1f35d9432ff6391c183fe9e268cbf3b76ac8dd0d Mon Sep 17 00:00:00 2001 From: zottel Date: Thu, 6 Nov 2014 17:24:05 +0100 Subject: don't overwrite $x (contains import_xchan result) with role permissions --- include/zot.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/zot.php b/include/zot.php index 9f22bc30b..bdc1f607f 100644 --- a/include/zot.php +++ b/include/zot.php @@ -441,9 +441,9 @@ function zot_refresh($them,$channel = null, $force = false) { else { $role = get_pconfig($channel['channel_id'],'system','permissions_role'); if($role) { - $x = get_role_perms($role); - if($x['perms_auto']) - $default_perms = $x['perms_accept']; + $xx = get_role_perms($role); + if($xx['perms_auto']) + $default_perms = $xx['perms_accept']; } if(! $default_perms) $default_perms = intval(get_pconfig($channel['channel_id'],'system','autoperms')); -- cgit v1.2.3 From 1fbd1a79c7a19ff51b9e8ab4bad67ec0bf687839 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 6 Nov 2014 17:27:28 -0800 Subject: Provide a way to mark photos as adult and hide them from the default album view. Still need a button or setting to enable "unsafe viewing". This has no effect anywhere but in the album views. They can still be viewed by flipping through the individual photos with 'prev' and 'next'. We probably need a comprehensive strategy for how to deal with n-s-f-w photos in albums so consider this a band-aid which requires additional work and integration with other facilities which access these photos. It is entirely optional. --- boot.php | 1 + include/poller.php | 14 ++++++++---- mod/photos.php | 58 ++++++++++++++++++++++++++----------------------- view/tpl/photo_view.tpl | 4 +++- 4 files changed, 45 insertions(+), 32 deletions(-) diff --git a/boot.php b/boot.php index 1d4cd6f72..76c09d956 100755 --- a/boot.php +++ b/boot.php @@ -230,6 +230,7 @@ define ( 'PHOTO_NORMAL', 0x0000 ); define ( 'PHOTO_PROFILE', 0x0001 ); define ( 'PHOTO_XCHAN', 0x0002 ); define ( 'PHOTO_THING', 0x0004 ); +define ( 'PHOTO_ADULT', 0x0008 ); /** * Menu types diff --git a/include/poller.php b/include/poller.php index f11618d37..1734af7d9 100644 --- a/include/poller.php +++ b/include/poller.php @@ -123,8 +123,8 @@ function poller_run($argv, $argc){ if(($d2 != $d1) && ($h1 == $h2)) { - require_once('include/dir_fns.php'); - check_upstream_directory(); + require_once('include/dir_fns.php'); + check_upstream_directory(); call_hooks('cron_daily',datetime_convert()); @@ -263,7 +263,7 @@ function poller_run($argv, $argc){ ); - $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel + $contacts = q("SELECT abook_id, abook_flags, abook_network, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel FROM abook LEFT JOIN account on abook_account = account_id where 1 $sql_extra AND (( abook_flags & %d ) OR ( abook_flags = %d )) @@ -305,6 +305,7 @@ function poller_run($argv, $argc){ $update = true; } else { + // if we've never connected with them, start the mark for death countdown from now if($c == NULL_DATE) { @@ -351,12 +352,17 @@ function poller_run($argv, $argc){ $update = true; } - } if((! $update) && (! $force)) continue; + // we handled feed contacts earlier - now filter out anything else that + // doesn't require polling to keep the process count down. + + if($contact['abook_network'] !== 'zot') + continue; + proc_run('php','include/onepoll.php',$contact['abook_id']); if($interval) @time_sleep_until(microtime(true) + (float) $interval); diff --git a/mod/photos.php b/mod/photos.php index 8eee95075..0a3d6c704 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -206,6 +206,7 @@ function photos_post(&$a) { $rawtags = ((x($_POST,'newtag')) ? notags(trim($_POST['newtag'])) : ''); $item_id = ((x($_POST,'item_id')) ? intval($_POST['item_id']) : 0); $albname = ((x($_POST,'albname')) ? notags(trim($_POST['albname'])) : ''); + $adult = ((x($_POST,'adult')) ? intval($_POST['adult']) : 0); $str_group_allow = perms2str($_POST['group_allow']); $str_contact_allow = perms2str($_POST['contact_allow']); $str_group_deny = perms2str($_POST['group_deny']); @@ -273,13 +274,13 @@ function photos_post(&$a) { } } - $p = q("SELECT * FROM `photo` WHERE `resource_id` = '%s' AND `uid` = %d and ( photo_flags = %d or photo_flags = %d ) ORDER BY `scale` DESC", + $p = q("SELECT * FROM `photo` WHERE `resource_id` = '%s' AND `uid` = %d and ((photo_flags = %d) or (photo_flags & %d )) ORDER BY `scale` DESC", dbesc($resource_id), intval($page_owner_uid), intval(PHOTO_NORMAL), intval(PHOTO_PROFILE) ); - if(count($p)) { + if($p) { $ext = $phototypes[$p[0]['type']]; $r = q("UPDATE `photo` SET `description` = '%s', `album` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s' WHERE `resource_id` = '%s' AND `uid` = %d", @@ -296,6 +297,14 @@ function photos_post(&$a) { $item_private = (($str_contact_allow || $str_group_allow || $str_contact_deny || $str_group_deny) ? true : false); + $old_adult = (($p[0]['photo_flags'] & PHOTO_ADULT) ? 1 : 0); + if($old_adult != $adult) { + $r = q("update photo set photo_flags = ( photo_flags ^ %d) where resource_id = '%s' and uid = %d", + intval(PHOTO_ADULT), + dbesc($resource_id), + intval($page_owner_uid) + ); + } /* Don't make the item visible if the only change was the album name */ @@ -450,8 +459,9 @@ function photos_content(&$a) { notice( t('Public access denied.') . EOL); return; } - - + + $unsafe = ((array_key_exists('unsafe',$_REQUEST) && $_REQUEST['unsafe']) ? 1 : 0); + require_once('include/bbcode.php'); require_once('include/security.php'); require_once('include/conversation.php'); @@ -598,6 +608,8 @@ function photos_content(&$a) { if($datatype === 'album') { + + if((strlen($datum) & 1) || (! ctype_xdigit($datum))) { notice( t('Album name could not be decoded') . EOL); logger('mod_photos: illegal album encoding: ' . $datum); @@ -607,11 +619,11 @@ function photos_content(&$a) { $album = hex2bin($datum); $r = q("SELECT `resource_id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` = '%s' - AND `scale` <= 4 and (photo_flags = %d or photo_flags = %d ) $sql_extra GROUP BY `resource_id`", + AND `scale` <= 4 and ((photo_flags = %d) or (photo_flags & %d )) $sql_extra GROUP BY `resource_id`", intval($owner_uid), dbesc($album), intval(PHOTO_NORMAL), - intval(PHOTO_PROFILE) + intval(($unsafe) ? (PHOTO_PROFILE|PHOTO_ADULT) : PHOTO_PROFILE) ); if(count($r)) { $a->set_pager_total(count($r)); @@ -626,11 +638,11 @@ function photos_content(&$a) { $order = 'DESC'; $r = q("SELECT `resource_id`, `id`, `filename`, type, max(`scale`) AS `scale`, `description` FROM `photo` WHERE `uid` = %d AND `album` = '%s' - AND `scale` <= 4 and (photo_flags = %d or photo_flags = %d ) $sql_extra GROUP BY `resource_id` ORDER BY `created` $order LIMIT %d , %d", + AND `scale` <= 4 and ((photo_flags = %d) or (photo_flags & %d )) $sql_extra GROUP BY `resource_id` ORDER BY `created` $order LIMIT %d , %d", intval($owner_uid), dbesc($album), intvaL(PHOTO_NORMAL), - intval(PHOTO_PROFILE), + intval(($unsafe) ? (PHOTO_PROFILE|PHOTO_ADULT) : PHOTO_PROFILE), intval($a->pager['start']), intval($a->pager['itemspage']) ); @@ -750,25 +762,18 @@ function photos_content(&$a) { // fetch image, item containing image, then comments $ph = q("SELECT aid,uid,xchan,resource_id,created,edited,title,`description`,album,filename,`type`,height,width,`size`,scale,profile,photo_flags,allow_cid,allow_gid,deny_cid,deny_gid FROM `photo` WHERE `uid` = %d AND `resource_id` = '%s' - and (photo_flags = %d or photo_flags = %d ) $sql_extra ORDER BY `scale` ASC ", + $sql_extra ORDER BY `scale` ASC ", intval($owner_uid), - dbesc($datum), - intval(PHOTO_NORMAL), - intval(PHOTO_PROFILE) - + dbesc($datum) ); if(! $ph) { /* Check again - this time without specifying permissions */ - $ph = q("SELECT id FROM photo WHERE uid = %d AND resource_id = '%s' - and ( photo_flags = %d or photo_flags = %d ) - LIMIT 1", + $ph = q("SELECT id FROM photo WHERE uid = %d AND resource_id = '%s' LIMIT 1", intval($owner_uid), - dbesc($datum), - intval(PHOTO_NORMAL), - intval(PHOTO_PROFILE) + dbesc($datum) ); if($ph) notice( t('Permission denied. Access to this item may be restricted.') . EOL); @@ -789,11 +794,9 @@ function photos_content(&$a) { $prvnxt = q("SELECT `resource_id` FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `scale` = 0 - and ( photo_flags = %d or photo_flags = %d ) $sql_extra ORDER BY `created` $order ", + $sql_extra ORDER BY `created` $order ", dbesc($ph[0]['album']), - intval($owner_uid), - intval(PHOTO_NORMAL), - intval(PHOTO_PROFILE) + intval($owner_uid) ); if(count($prvnxt)) { @@ -946,6 +949,7 @@ function photos_content(&$a) { 'aclselect' => $aclselect_e, 'help_tags' => t('Example: @bob, @Barbara_Jensen, @jim@example.com'), 'item_id' => ((count($linked_items)) ? $link_item['id'] : 0), + 'adult' => array('adult',t('Flag as adult in album view'), (($ph[0]['photo_flags'] & PHOTO_ADULT) ? 1 : 0),''), 'submit' => t('Submit'), 'delete' => t('Delete Photo') ); @@ -1153,12 +1157,12 @@ function photos_content(&$a) { //$o = ''; $r = q("SELECT `resource_id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' - and ( photo_flags = %d or photo_flags = %d ) $sql_extra GROUP BY `resource_id`", + and ((photo_flags = %d) or (photo_flags & %d)) $sql_extra GROUP BY `resource_id`", intval($a->data['channel']['channel_id']), dbesc('Contact Photos'), dbesc( t('Contact Photos')), intval(PHOTO_NORMAL), - intval(PHOTO_PROFILE) + intval(($unsafe) ? (PHOTO_PROFILE|PHOTO_ADULT) : PHOTO_PROFILE) ); if(count($r)) { $a->set_pager_total(count($r)); @@ -1167,13 +1171,13 @@ function photos_content(&$a) { $r = q("SELECT `resource_id`, `id`, `filename`, type, `album`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' - and ( photo_flags = %d or photo_flags = %d ) + and ( (photo_flags = %d) or (photo_flags & %d )) $sql_extra GROUP BY `resource_id` ORDER BY `created` DESC LIMIT %d , %d", intval($a->data['channel']['channel_id']), dbesc('Contact Photos'), dbesc( t('Contact Photos')), intval(PHOTO_NORMAL), - intval(PHOTO_PROFILE), + intval(($unsafe) ? (PHOTO_PROFILE|PHOTO_ADULT) : PHOTO_PROFILE), intval($a->pager['start']), intval($a->pager['itemspage']) ); diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl index 009158c37..b1f39a9e2 100755 --- a/view/tpl/photo_view.tpl +++ b/view/tpl/photo_view.tpl @@ -59,7 +59,9 @@
    - +
    + {{include file="field_checkbox.tpl" field=$edit.adult}} +
    {{$edit.aclselect}}
    -- cgit v1.2.3 From c4a07010f76a0cc7f4b3ed3d7e08912bce14dcb6 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 6 Nov 2014 18:05:02 -0800 Subject: visible flag reversed --- include/photos.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/photos.php b/include/photos.php index adb7c988a..23c1ea826 100644 --- a/include/photos.php +++ b/include/photos.php @@ -431,7 +431,7 @@ function photos_create_item($channel, $creator_hash, $photo, $visible = false) { // Create item container $item_flags = ITEM_WALL|ITEM_ORIGIN|ITEM_THREAD_TOP; - $item_restrict = (($visible) ? ITEM_HIDDEN : ITEM_VISIBLE); + $item_restrict = (($visible) ? ITEM_VISIBLE : ITEM_HIDDEN); $title = ''; $mid = item_message_id(); -- cgit v1.2.3 From 13fd91d6f5723774a1b96257f8096acb2873b4ed Mon Sep 17 00:00:00 2001 From: "Olivier van Helden (hal)" Date: Fri, 7 Nov 2014 05:14:01 +0100 Subject: fix nbsp tag typoes in french translation --- view/fr/messages.po | 6 +++--- view/fr/strings.php | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 79a60534f..d818c67ec 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -1859,7 +1859,7 @@ msgstr "Merci d'entrer l'URL d'une video :" #: ../../include/conversation.php:1077 msgid "Please enter an audio link/URL:" -msgstr "Merci d'entrer l'URL d'un contenu audio&nsbp;:" +msgstr "Merci d'entrer l'URL d'un contenu audio :" #: ../../include/conversation.php:1078 msgid "Tag term:" @@ -2672,7 +2672,7 @@ msgstr "Ville natale :" #: ../../include/identity.php:1042 msgid "Tags:" -msgstr "Étiquettes:" +msgstr "Étiquettes :" #: ../../include/identity.php:1044 ../../mod/profiles.php:616 msgid "Political Views:" @@ -2720,7 +2720,7 @@ msgstr "Télévision :" #: ../../include/identity.php:1067 msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/danse/culture/divertissement&nsbp;:" +msgstr "Cinéma/danse/culture/divertissement :" #: ../../include/identity.php:1069 msgid "Love/Romance:" diff --git a/view/fr/strings.php b/view/fr/strings.php index 750a9f38f..24efb1744 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -437,7 +437,7 @@ $a->strings["%s don't like this."] = "%s déteste ça."; $a->strings["Visible to everybody"] = "Visible par tout le monde"; $a->strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien :"; $a->strings["Please enter a video link/URL:"] = "Merci d'entrer l'URL d'une video :"; -$a->strings["Please enter an audio link/URL:"] = "Merci d'entrer l'URL d'un contenu audio&nsbp;:"; +$a->strings["Please enter an audio link/URL:"] = "Merci d'entrer l'URL d'un contenu audio :"; $a->strings["Tag term:"] = "Étiquette :"; $a->strings["Save to Folder:"] = "Classer dans le dossier :"; $a->strings["Where are you right now?"] = "Où êtes-vous présentement?"; @@ -625,7 +625,7 @@ $a->strings["Age:"] = "Age :"; $a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; $a->strings["Sexual Preference:"] = "Orientation sexuelle :"; $a->strings["Hometown:"] = "Ville natale :"; -$a->strings["Tags:"] = "Étiquettes:"; +$a->strings["Tags:"] = "Étiquettes :"; $a->strings["Political Views:"] = "Opinions politiques :"; $a->strings["Religion:"] = "Religion :"; $a->strings["About:"] = "À propos :"; @@ -637,7 +637,7 @@ $a->strings["My other channels:"] = "Mes autres canaux :"; $a->strings["Musical interests:"] = "Goûts musicaux :"; $a->strings["Books, literature:"] = "Lectures, goûts littéraires :"; $a->strings["Television:"] = "Télévision :"; -$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:"; +$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement :"; $a->strings["Love/Romance:"] = "Vie sentimentale/amoureuse :"; $a->strings["Work/employment:"] = "Travail :"; $a->strings["School/education:"] = "Cursus :"; -- cgit v1.2.3 From f077badcb61777810aed21717092a1793bd79b1d Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 6 Nov 2014 23:50:54 -0800 Subject: include self in load_contact_links so you don't get a connect menu entry for yourself --- boot.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 76c09d956..f8c91dfbb 100755 --- a/boot.php +++ b/boot.php @@ -1804,9 +1804,8 @@ function load_contact_links($uid) { // logger('load_contact_links'); - $r = q("SELECT abook_id, abook_flags, abook_my_perms, abook_their_perms, xchan_hash, xchan_photo_m, xchan_name, xchan_url from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d and not (abook_flags & %d) ", - intval($uid), - intval(ABOOK_FLAG_SELF) + $r = q("SELECT abook_id, abook_flags, abook_my_perms, abook_their_perms, xchan_hash, xchan_photo_m, xchan_name, xchan_url from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d ", + intval($uid) ); if($r) { foreach($r as $rr){ -- cgit v1.2.3 From 2cfe0f15452c2231314991cdbbab3a9e6926a68b Mon Sep 17 00:00:00 2001 From: marijus Date: Fri, 7 Nov 2014 12:13:38 +0100 Subject: provide lockstate for photo edit --- mod/photos.php | 11 ++++++----- view/tpl/photo_view.tpl | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/mod/photos.php b/mod/photos.php index 0a3d6c704..93e00a4b3 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -840,11 +840,11 @@ function photos_content(&$a) { ); } - // lock - $lock = ( ( (strlen($ph[0]['allow_cid']) || strlen($ph[0]['allow_gid']) + // lockstate + $lockstate = ( ( (strlen($ph[0]['allow_cid']) || strlen($ph[0]['allow_gid']) || strlen($ph[0]['deny_cid']) || strlen($ph[0]['deny_gid'])) ) - ? t('Private Photo') - : Null); + ? array('lock', t('Private Photo')) + : array('unlock', Null)); $a->page['htmlhead'] .= ' + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +  + +

    - v -

    +
    +
    + diff --git a/doc/html/globals_vars_0x77.html b/doc/html/globals_vars_0x77.html index c9cdeb78a..042ef4a64 100644 --- a/doc/html/globals_vars_0x77.html +++ b/doc/html/globals_vars_0x77.html @@ -101,6 +101,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
  • s
  • t
  • u
  • +
  • v
  • w
  • x
  • z
  • diff --git a/doc/html/globals_vars_0x78.html b/doc/html/globals_vars_0x78.html index 4278aa8f4..c229b615f 100644 --- a/doc/html/globals_vars_0x78.html +++ b/doc/html/globals_vars_0x78.html @@ -101,6 +101,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
  • s
  • t
  • u
  • +
  • v
  • w
  • x
  • z
  • diff --git a/doc/html/globals_vars_0x7a.html b/doc/html/globals_vars_0x7a.html index 1d8482c2c..2f0197c73 100644 --- a/doc/html/globals_vars_0x7a.html +++ b/doc/html/globals_vars_0x7a.html @@ -101,6 +101,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
  • s
  • t
  • u
  • +
  • v
  • w
  • x
  • z
  • diff --git a/doc/html/html2bbcode_8php.html b/doc/html/html2bbcode_8php.html index b04e5d27a..e1496199b 100644 --- a/doc/html/html2bbcode_8php.html +++ b/doc/html/html2bbcode_8php.html @@ -164,7 +164,7 @@ Functions
    diff --git a/doc/html/hubloc_8php.html b/doc/html/hubloc_8php.html index cd60f6b6a..66ef98c09 100644 --- a/doc/html/hubloc_8php.html +++ b/doc/html/hubloc_8php.html @@ -228,7 +228,7 @@ Functions
    -

    Referenced by api_red_xchan().

    +

    Referenced by api_red_xchan(), and reflect_comment_store().

    diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html index 735aa5b38..fed3e46d6 100644 --- a/doc/html/identity_8php.html +++ b/doc/html/identity_8php.html @@ -176,6 +176,8 @@ Functions    notifications_on ($channel_id, $value)   + get_channel_default_perms ($uid) + 

    Function Documentation

    @@ -290,6 +292,24 @@ Functions

    Referenced by editblock_content(), importelm_post(), wall_attach_post(), and wall_upload_post().

    + + + +
    +
    + + + + + + + + +
    get_channel_default_perms ( $uid)
    +
    + +

    Referenced by connedit_content(), and new_contact().

    +
    @@ -314,7 +334,7 @@ Functions
    Returns
    string
    -

    Referenced by app_render(), app_store(), app_update(), avatar_img(), import_profile_photo(), openid_content(), parse_app_description(), photo_init(), and xchan_store().

    +

    Referenced by app_render(), app_store(), app_update(), avatar_img(), import_profile_photo(), openid_content(), parse_app_description(), photo_init(), reflect_comment_store(), and xchan_store().

    diff --git a/doc/html/identity_8php.js b/doc/html/identity_8php.js index ead11cd4c..92b4f2c38 100644 --- a/doc/html/identity_8php.js +++ b/doc/html/identity_8php.js @@ -6,6 +6,7 @@ var identity_8php = [ "create_sys_channel", "identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05", null ], [ "get_birthdays", "identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51", null ], [ "get_channel_by_nick", "identity_8php.html#ac73b3e13778c564c877554517a7f51ba", null ], + [ "get_channel_default_perms", "identity_8php.html#a293f416ce9050220b183e08ff5890216", null ], [ "get_default_profile_photo", "identity_8php.html#ab1485a26b032956e1496fc08c58b83ed", null ], [ "get_events", "identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312", null ], [ "get_my_address", "identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2", null ], diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index 0a4937645..6c68d2138 100644 --- a/doc/html/include_2config_8php.html +++ b/doc/html/include_2config_8php.html @@ -340,7 +340,7 @@ Functions
    Returns
    mixed Return value or false on error or if not set
    -

    Referenced by account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), bb2diaspora_itembody(), bbcode(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), check_upstream_directory(), 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(), dirprofile_init(), dirsearch_content(), display_content(), dlogger(), dob(), downgrade_accounts(), editblock_content(), editpost_content(), editwebpage_content(), encode_item(), encode_mail(), events_content(), expire_run(), externals_run(), feature_enabled(), feed_init(), filter_insecure(), find_upstream_directory(), findpeople_widget(), get_all_perms(), Item\get_comment_box(), get_default_profile_photo(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_max_import_size(), get_online_status(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), group_content(), guess_image_type(), home_content(), home_init(), identity_basic_export(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), is_public_profile(), item_post(), item_store(), item_store_update(), photo_imagick\load(), localize_item(), logger(), login(), lostpass_content(), lostpass_post(), mark_orphan_hubsxchans(), nav(), navbar_complete(), network_content(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_contact(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), openid_content(), parse_url_content(), perm_is_allowed(), photo_factory(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), RedMatrix\RedDAV\RedFile\put(), receive_post(), 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(), theme_admin(), unobscure(), update_modtime(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), verify_email_address(), viewconnections_content(), viewconnections_init(), viewsrc_content(), widget_fullprofile(), widget_profile(), z_fetch_url(), z_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

    +

    Referenced by account_service_class_fetch(), account_verify_password(), acl_init(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), bb2diaspora_itembody(), bbcode(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), check_upstream_directory(), 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(), dirprofile_init(), dirsearch_content(), display_content(), dlogger(), dob(), downgrade_accounts(), editblock_content(), editpost_content(), editwebpage_content(), encode_item(), encode_mail(), events_content(), expire_run(), externals_run(), feature_enabled(), feed_init(), filter_insecure(), find_upstream_directory(), findpeople_widget(), get_all_perms(), Item\get_comment_box(), get_default_profile_photo(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_max_import_size(), get_online_status(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), group_content(), guess_image_type(), home_content(), home_init(), identity_basic_export(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), is_public_profile(), item_post(), item_store(), item_store_update(), photo_imagick\load(), localize_item(), logger(), login(), lostpass_content(), lostpass_post(), mark_orphan_hubsxchans(), nav(), navbar_complete(), network_content(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_contact(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), openid_content(), parse_url_content(), perm_is_allowed(), photo_factory(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_activity_item(), post_post(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), pubsites_content(), RedMatrix\RedDAV\RedFile\put(), receive_post(), ref_session_gc(), register_content(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_obsolete_hublocs(), scale_external_images(), search_content(), send_message(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), settings_post(), site_default_perms(), siteinfo_content(), siteinfo_init(), smilies(), start_delivery_chain(), store_diaspora_comment_sig(), tag_deliver(), theme_admin(), 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().

    @@ -433,7 +433,7 @@ Functions
    Returns
    mixed Stored value or false if it does not exist
    -

    Referenced by Conversation\__construct(), acl_init(), bb2diaspora_itembody(), App\build_pagehead(), change_channel(), channel_content(), connect_content(), connedit_content(), connedit_post(), contact_block(), contact_remove(), conversation(), current_theme(), display_content(), editpost_content(), feature_enabled(), findpeople_widget(), fix_attached_file_permissions(), fix_attached_photo_permissions(), Item\get_comment_box(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), home_init(), invite_content(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), load_pdl(), FKOAuth1\loginUser(), mail_content(), message_content(), nav(), network_content(), new_contact(), notification(), pdledit_content(), post_post(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), rpost_content(), search_content(), set_pconfig(), settings_post(), smilies(), tag_deliver(), theme_content(), webpages_content(), widget_notes(), and widget_settings_menu().

    +

    Referenced by Conversation\__construct(), acl_init(), bb2diaspora_itembody(), App\build_pagehead(), change_channel(), channel_content(), connect_content(), connedit_content(), connedit_post(), contact_block(), contact_remove(), conversation(), current_theme(), diaspora_request(), display_content(), editpost_content(), feature_enabled(), findpeople_widget(), fix_attached_file_permissions(), fix_attached_photo_permissions(), Item\get_comment_box(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), home_init(), invite_content(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), load_pdl(), FKOAuth1\loginUser(), mail_content(), message_content(), nav(), network_content(), new_contact(), notification(), pdledit_content(), ping_init(), post_post(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), rpost_content(), search_content(), set_pconfig(), settings_post(), smilies(), tag_deliver(), theme_content(), webpages_content(), widget_archive(), widget_notes(), widget_settings_menu(), and zot_refresh().

    @@ -663,7 +663,7 @@ Functions
    Returns
    mixed Stored $value or false
    -

    Referenced by connect_post(), create_identity(), invite_post(), notes_init(), pdledit_post(), process_channel_sync_delivery(), register_post(), settings_post(), and theme_post().

    +

    Referenced by connect_post(), connedit_post(), create_identity(), invite_post(), notes_init(), pdledit_post(), process_channel_sync_delivery(), register_post(), settings_post(), and theme_post().

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

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

    +

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

    diff --git a/doc/html/include_2photos_8php.html b/doc/html/include_2photos_8php.html index 2e9d67da2..a61d9ed9c 100644 --- a/doc/html/include_2photos_8php.html +++ b/doc/html/include_2photos_8php.html @@ -162,7 +162,7 @@ Functions

    Determine the album to use

    We create a wall item for every photo, but we don't want to overwhelm the data stream with a hundred newly uploaded photos. So we will make the first photo uploaded to this album in the last several hours visible by default, the rest will become visible over time when and if they acquire comments, likes, dislikes, and/or tags

    -

    Referenced by photos_post(), and wall_upload_post().

    +

    Referenced by photos_post(), reflect_photo_callback(), and wall_upload_post().

    diff --git a/doc/html/items_8php.html b/doc/html/items_8php.html index f8fb60dc3..cfe6a12b6 100644 --- a/doc/html/items_8php.html +++ b/doc/html/items_8php.html @@ -242,8 +242,8 @@ Functions    first_post_date ($uid, $wall=false)   - list_post_dates ($uid, $wall) -  + list_post_dates ($uid, $wall, $mindate) +   posted_dates ($uid, $wall)    fetch_post_tags ($items, $link=false) @@ -311,7 +311,7 @@ Functions

    $item['route'] contains a comma-separated list of xchans that sent the current message, somewhat analogous to the * Received: header line in email. We can use this to perform loop detection and to avoid sending a particular item to any "upstream" sender (they already have a copy because they sent it to us).

    -

    Referenced by process_delivery().

    +

    Referenced by process_delivery().

    @@ -997,7 +997,7 @@ Functions
    -

    Referenced by list_post_dates(), and posted_dates().

    +

    Referenced by list_post_dates(), and posted_dates().

    @@ -1492,7 +1492,7 @@ Functions @@ -1520,7 +1520,7 @@ Functions @@ -1588,7 +1588,7 @@ Functions - +
    @@ -1602,7 +1602,13 @@ Functions - + + + + + + + @@ -2008,7 +2014,7 @@ Functions

    tgroup_check($uid,$item)

    This function is called pre-deliver to see if a post matches the criteria to be tag delivered. We don't actually do anything except check that it matches the criteria. This is so that the channel with tag_delivery enabled can receive the post even if they turn off permissions for the sender to send their stream. tag_deliver() can't be called until the post is actually stored. By then it would be too late to reject it.

    -

    Referenced by process_delivery().

    +

    Referenced by process_delivery().

    diff --git a/doc/html/items_8php.js b/doc/html/items_8php.js index 45e633f25..f3ac4dfd0 100644 --- a/doc/html/items_8php.js +++ b/doc/html/items_8php.js @@ -51,7 +51,7 @@ var items_8php = [ "item_store_update", "items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484", null ], [ "items_fetch", "items_8php.html#a756738301f2ed96be50232500677d58a", null ], [ "limit_body_size", "items_8php.html#af94c281016c6c912d06e064113336c5c", null ], - [ "list_post_dates", "items_8php.html#aa2d3caa2f27720762b5c729e07df40fb", null ], + [ "list_post_dates", "items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00", null ], [ "mail_store", "items_8php.html#a77da7ce9a117601d49ac4a67c71b514f", null ], [ "map_scope", "items_8php.html#a8675e62674de6fb7c42e4a408c7116cc", null ], [ "post_activity_item", "items_8php.html#a410f9c743877c125ca06312373346903", null ], diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index 073080f20..3e1fd3824 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -372,7 +372,7 @@ Functions
    Returns
    translated string if exists, otherwise return $s
    -

    Referenced by account_remove(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), app_render(), app_store(), app_update(), appman_content(), appman_post(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bb2diaspora_itembody(), bbcode(), block_content(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), 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(), dirprofile_init(), dirsearch_content(), display_content(), 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_post(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), marital_selector_min(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_init(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), poll_content(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), role_selector(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_scope(), translate_system_apps(), update_birthdays(), update_channel_content(), update_display_content(), update_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_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

    +

    Referenced by account_remove(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), app_render(), app_store(), app_update(), appman_content(), appman_post(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bb2diaspora_itembody(), bbcode(), block_content(), blocks_content(), blogtheme_form(), 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(), dirprofile_init(), dirsearch_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store_item(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), foofoo(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), gender_selector_min(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), Item\get_template_data(), group_add(), group_content(), group_post(), group_side(), hcard_init(), help_content(), home_content(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_check_service_class(), impel_init(), import_author_rss(), import_author_unknown(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_content(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), like_puller(), load_database(), localize_item(), lockview_content(), locs_content(), locs_post(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), marital_selector_min(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_init(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), poll_content(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), role_selector(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_scope(), translate_system_apps(), update_birthdays(), update_channel_content(), update_display_content(), update_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_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

    diff --git a/doc/html/locs_8php.html b/doc/html/locs_8php.html index 86cc0d2a8..229d5978f 100644 --- a/doc/html/locs_8php.html +++ b/doc/html/locs_8php.html @@ -114,8 +114,26 @@ $(document).ready(function(){initNavTree('locs_8php.html','');}); Functions + +
     $wall $wall,
     $mindate 
     locs_post (&$a)
     
     locs_content (&$a)
     

    Function Documentation

    + +
    +
    + + + + + + + + +
    locs_content ($a)
    +
    + +
    +
    @@ -129,36 +147,6 @@ Functions
    -

    Placeholder file at present. This is going to involve a bit of work.

    -

    This file will deal with the deletion of channels and management of hublocs.

    -

    We need to provide the following functionality:

    -
      -
    • Delete my account and all channels from the entire network
    • -
    -
      -
    • Delete my account and all channels from this server
    • -
    -
      -
    • Delete a channel from the entire network
    • -
    -
      -
    • Delete a channel from this server
    • -
    -
      -
    • List all hub locations for this channel
    • -
    -
      -
    • Remove this/some hub location from this channel
    • -
    -
      -
    • promote this/some hub location to primary
    • -
    -
      -
    • Remove hub location 'xyz' from this channel, (this should possibly only be allowed if that hub has been down for a period of time)
    • -
    -
      -
    • Some of these actions should probably require email verification
    • -
    diff --git a/doc/html/locs_8php.js b/doc/html/locs_8php.js index 475fc5dd6..6444a590f 100644 --- a/doc/html/locs_8php.js +++ b/doc/html/locs_8php.js @@ -1,4 +1,5 @@ var locs_8php = [ + [ "locs_content", "locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44", null ], [ "locs_post", "locs_8php.html#a6b43654592919ac863d67a1f787a69b9", null ] ]; \ No newline at end of file diff --git a/doc/html/navtree.js b/doc/html/navtree.js index ad8e7f70e..cc61fa4f9 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#a53e4bdb6f225da55115acb9277f75e53", -"classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f", -"classTemplate.html#aae9c4d761ea1298e745e8052d7910194", -"diaspora_8php.html#a938c7ee808d38725c0988fa6006805b9", -"globals_vars.html", -"include_2network_8php.html#a316f318167a039c89719afbd129a8f3c", -"namespaceRedMatrix_1_1RedDAV.html", -"session_8php.html#ac95373f4966862a028033dd2f94d4da1", -"view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6" +"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501", +"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c", +"classTemplate.html#a317d535946dc065c35dd5cd38380e6c6", +"diaspora_8php.html#a33ae0c4606a7df4d801c05507d87f668", +"globals_func_0x6e.html", +"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571", +"mod__chanview_8php.html", +"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82", +"tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index bf91f9867..0deb6b75f 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -156,7 +156,7 @@ var NAVTREEINDEX0 = "boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[6,0,4,146], "boot_8php.html#a01353c9abebc3544ea080ac161729632":[6,0,4,39], "boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,160], -"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,265], +"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,266], "boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,138], "boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[6,0,4,58], "boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,179], @@ -165,18 +165,19 @@ var NAVTREEINDEX0 = "boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[6,0,4,1], "boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,222], "boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[6,0,4,73], +"boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3":[6,0,4,299], "boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[6,0,4,183], -"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,285], -"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,281], -"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,284], +"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,286], +"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,282], +"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,285], "boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[6,0,4,22], "boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[6,0,4,65], "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[6,0,4,15], "boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[6,0,4,83], "boot_8php.html#a107d53f96acf5319905a34b1870db09a":[6,0,4,42], -"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,270], +"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,271], "boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,140], -"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,269], +"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,270], "boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[6,0,4,87], "boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[6,0,4,84], "boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[6,0,4,210], @@ -185,9 +186,10 @@ var NAVTREEINDEX0 = "boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[6,0,4,155], "boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[6,0,4,182], "boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[6,0,4,149], -"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,293], -"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,259], -"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,295], +"boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71":[6,0,4,298], +"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,305], +"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,260], +"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,307], "boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[6,0,4,186], "boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[6,0,4,82], "boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[6,0,4,237], @@ -195,18 +197,18 @@ var NAVTREEINDEX0 = "boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[6,0,4,166], "boot_8php.html#a205d013103997adfa72953d2f20c01e1":[6,0,4,231], "boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[6,0,4,203], -"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,261], +"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,262], "boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[6,0,4,43], "boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[6,0,4,21], "boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[6,0,4,106], "boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[6,0,4,98], -"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,273], +"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,274], "boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,206], "boot_8php.html#a29528a2544373cc19a378f350040c6a1":[6,0,4,89], "boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[6,0,4,139], "boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[6,0,4,235], "boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[6,0,4,114], -"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,257], +"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,258], "boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,202], "boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,135], "boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[6,0,4,74], @@ -218,11 +220,12 @@ var NAVTREEINDEX0 = "boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[6,0,4,128], "boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[6,0,4,168], "boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[6,0,4,218], -"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,299], +"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,311], +"boot_8php.html#a37281c30bd92cecb499878d6778c570f":[6,0,4,297], "boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[6,0,4,191], "boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[6,0,4,117], "boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[6,0,4,122], -"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,298], +"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,310], "boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,188], "boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,233], "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[6,0,4,12], @@ -237,17 +240,14 @@ var NAVTREEINDEX0 = "boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[6,0,4,163], "boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[6,0,4,77], "boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,169], -"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,282], +"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,283], "boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[6,0,4,189], "boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[6,0,4,112], -"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,251], +"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,252], "boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,187], "boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[6,0,4,6], "boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,224], "boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,62], "boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,247], -"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,213], -"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,30], -"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,167], -"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,44] +"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,213] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index 4d7b1bf3e..49933455f 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,10 +1,13 @@ var NAVTREEINDEX1 = { +"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,30], +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,167], +"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,44], "boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,88], "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,36], "boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,205], "boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,246], -"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,296], +"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,308], "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[6,0,4,20], "boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[6,0,4,67], "boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[6,0,4,195], @@ -17,13 +20,13 @@ var NAVTREEINDEX1 = "boot_8php.html#a6252d8eca67c689d9035ec6da544cf46":[6,0,4,25], "boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[6,0,4,81], "boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,110], -"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,278], +"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,279], "boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[6,0,4,180], "boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[6,0,4,151], "boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[6,0,4,154], "boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[6,0,4,48], "boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,157], -"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,263], +"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,264], "boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[6,0,4,250], "boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[6,0,4,244], "boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[6,0,4,107], @@ -33,25 +36,28 @@ var NAVTREEINDEX1 = "boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[6,0,4,137], "boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[6,0,4,225], "boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[6,0,4,108], -"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,262], +"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,263], "boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,173], "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[6,0,4,29], "boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[6,0,4,196], "boot_8php.html#a749144d8dd9c1366596a0213c277d050":[6,0,4,144], "boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[6,0,4,78], "boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[6,0,4,2], -"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,286], +"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,287], +"boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9":[6,0,4,296], "boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[6,0,4,4], "boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[6,0,4,80], "boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[6,0,4,93], -"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,253], +"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,254], "boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,123], "boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[6,0,4,71], "boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[6,0,4,143], +"boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe":[6,0,4,294], "boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[6,0,4,175], "boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[6,0,4,75], "boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,115], "boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[6,0,4,63], +"boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1":[6,0,4,302], "boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[6,0,4,177], "boot_8php.html#a7eeb83e15968f7a6cc5937d493815773":[6,0,4,50], "boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[6,0,4,53], @@ -64,32 +70,35 @@ var NAVTREEINDEX1 = "boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[6,0,4,228], "boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[6,0,4,133], "boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[6,0,4,125], -"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,277], -"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,276], +"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,278], +"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,277], "boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,194], "boot_8php.html#a899d24fd074594ceebbf72e1feff335f":[6,0,4,16], "boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[6,0,4,104], "boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[6,0,4,248], "boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[6,0,4,136], "boot_8php.html#a8da836617174eed9fc2ac8054125354b":[6,0,4,130], -"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,255], -"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,294], +"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,256], +"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,306], +"boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0":[6,0,4,251], "boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[6,0,4,33], "boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[6,0,4,11], "boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[6,0,4,158], "boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[6,0,4,134], "boot_8php.html#a949116d9a295b214293006c060ca4848":[6,0,4,132], -"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,289], -"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,260], +"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,290], +"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,261], "boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[6,0,4,18], "boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[6,0,4,208], +"boot_8php.html#a997614f25e58f8313641e1eb0109fd10":[6,0,4,300], "boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[6,0,4,249], "boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[6,0,4,52], "boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[6,0,4,5], "boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[6,0,4,240], "boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[6,0,4,209], -"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,292], -"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,279], +"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,304], +"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,280], +"boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f":[6,0,4,292], "boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[6,0,4,239], "boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[6,0,4,197], "boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[6,0,4,26], @@ -110,7 +119,7 @@ var NAVTREEINDEX1 = "boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[6,0,4,229], "boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[6,0,4,35], "boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,223], -"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,252], +"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,253], "boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[6,0,4,193], "boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[6,0,4,234], "boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[6,0,4,118], @@ -119,34 +128,35 @@ var NAVTREEINDEX1 = "boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,211], "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[6,0,4,7], "boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,103], -"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,288], +"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,289], "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[6,0,4,40], -"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,256], +"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,257], "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[6,0,4,3], -"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,283], +"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,284], "boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[6,0,4,70], "boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[6,0,4,121], "boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[6,0,4,102], "boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[6,0,4,131], "boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[6,0,4,24], "boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,178], -"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,254], +"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,255], "boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,141], "boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[6,0,4,100], "boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08":[6,0,4,27], "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[6,0,4,38], "boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[6,0,4,60], -"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[6,0,4,290], +"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[6,0,4,291], "boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[6,0,4,127], +"boot_8php.html#ac89396b9144391acd08d6d0f9b332220":[6,0,4,293], "boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[6,0,4,129], "boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[6,0,4,207], "boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[6,0,4,37], "boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[6,0,4,13], "boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[6,0,4,8], "boot_8php.html#acca19aae62e1a6951a856b945de20d67":[6,0,4,181], -"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,291], +"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,303], "boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,241], -"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,275], +"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,276], "boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,215], "boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[6,0,4,69], "boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[6,0,4,161], @@ -156,25 +166,27 @@ var NAVTREEINDEX1 = "boot_8php.html#ad34c1547020a305915bcc39707744690":[6,0,4,91], "boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[6,0,4,31], "boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[6,0,4,236], -"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,264], -"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,258], +"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,265], +"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,259], +"boot_8php.html#ad94aca4c260b8a892397786201dc4664":[6,0,4,295], "boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[6,0,4,97], "boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,145], -"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,267], +"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,268], "boot_8php.html#add517a0958ac684792c62142a3877f81":[6,0,4,41], "boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[6,0,4,23], +"boot_8php.html#ae09767b94688657978ff9366ec63684b":[6,0,4,301], "boot_8php.html#ae0d9527117cd87dcba11986047ae336e":[6,0,4,45], "boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,109], -"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,274], +"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,275], "boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[6,0,4,190], "boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[6,0,4,164], "boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[6,0,4,198], -"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,287], +"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,288], "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[6,0,4,28], -"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,280], +"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,281], "boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[6,0,4,54], "boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,238], -"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,268], +"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,269], "boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[6,0,4,172], "boot_8php.html#aedfb9501ed408278667995524e0d15cf":[6,0,4,105], "boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[6,0,4,184], @@ -182,7 +194,7 @@ var NAVTREEINDEX1 = "boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[6,0,4,147], "boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[6,0,4,116], "boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[6,0,4,32], -"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,271], +"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,272], "boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,192], "boot_8php.html#af3a4271630aabd8be592213f925d6a36":[6,0,4,64], "boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[6,0,4,55], @@ -191,16 +203,16 @@ var NAVTREEINDEX1 = "boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[6,0,4,212], "boot_8php.html#af6b3de425e5849c73370a484c44607a3":[6,0,4,170], "boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[6,0,4,94], -"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,266], +"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,267], "boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[6,0,4,204], "boot_8php.html#afaf93b7026f784b113b4f8921745891e":[6,0,4,185], -"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,272], +"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,273], "boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[6,0,4,51], "boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,221], "boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[6,0,4,86], "boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,156], "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[6,0,4,14], -"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,297], +"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,309], "boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,232], "boxy_8php.html":[6,0,3,1,4,1,0], "cache_8php.html":[6,0,0,15], @@ -237,17 +249,5 @@ var NAVTREEINDEX1 = "classApp.html#a256360c9184fed6d7556e0bc0a835d7f":[5,0,7,48], "classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f":[5,0,7,76], "classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a":[5,0,7,12], -"classApp.html#a330410a288f3393d53772f5e98f857ea":[5,0,7,51], -"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,7,66], -"classApp.html#a344d2b7dc2f276648d521aee4da1731c":[5,0,7,23], -"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,7,55], -"classApp.html#a3d84af5e42082098672531cd1a618853":[5,0,7,22], -"classApp.html#a4659785d13e4bac0bed50dbb1b0d4299":[5,0,7,6], -"classApp.html#a4776d9322edea17fae56afa5d01a323e":[5,0,7,24], -"classApp.html#a4833bee2eae4ad1691a04fa19e11a766":[5,0,7,90], -"classApp.html#a487332f8de40414ca1a54a4265570b70":[5,0,7,85], -"classApp.html#a495ec082c2719314e536070ca1ce073d":[5,0,7,42], -"classApp.html#a4b67935096f66d1f14b657399a8461ac":[5,0,7,68], -"classApp.html#a4bdd7bfed62f50515fce652127bf481b":[5,0,7,25], -"classApp.html#a4c7cfc62d39508086cf300dc2e39c4df":[5,0,7,59] +"classApp.html#a330410a288f3393d53772f5e98f857ea":[5,0,7,51] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 6e61d8759..6f46ad030 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,5 +1,17 @@ var NAVTREEINDEX2 = { +"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,7,66], +"classApp.html#a344d2b7dc2f276648d521aee4da1731c":[5,0,7,23], +"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,7,55], +"classApp.html#a3d84af5e42082098672531cd1a618853":[5,0,7,22], +"classApp.html#a4659785d13e4bac0bed50dbb1b0d4299":[5,0,7,6], +"classApp.html#a4776d9322edea17fae56afa5d01a323e":[5,0,7,24], +"classApp.html#a4833bee2eae4ad1691a04fa19e11a766":[5,0,7,90], +"classApp.html#a487332f8de40414ca1a54a4265570b70":[5,0,7,85], +"classApp.html#a495ec082c2719314e536070ca1ce073d":[5,0,7,42], +"classApp.html#a4b67935096f66d1f14b657399a8461ac":[5,0,7,68], +"classApp.html#a4bdd7bfed62f50515fce652127bf481b":[5,0,7,25], +"classApp.html#a4c7cfc62d39508086cf300dc2e39c4df":[5,0,7,59], "classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f":[5,0,7,67], "classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be":[5,0,7,9], "classApp.html#a557d7b779d8259027f4724ebf7b248dc":[5,0,7,28], @@ -237,17 +249,5 @@ var NAVTREEINDEX2 = "classRedmatrix_1_1Import_1_1Import.html#afd251e6e5a18516bac4d1a40435602f1":[5,0,4,0,0,11], "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#a4b933954086d9e01a1804b0b1c6ee93e":[5,0,25,6], -"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[5,0,25,21], -"classTemplate.html#a6f0efc256688c36110180b501067ff11":[5,0,25,23], -"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[5,0,25,15], -"classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677":[5,0,25,9], -"classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1":[5,0,25,19], -"classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29":[5,0,25,4], -"classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee":[5,0,25,10], -"classTemplate.html#aac9a4638f11271e1b1dcc9f247242718":[5,0,25,20] +"classTemplate.html#a285b5b2007dbbf733476273df3fed4ef":[5,0,25,12] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index ca92c7407..a855bf2c7 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,5 +1,17 @@ var NAVTREEINDEX3 = { +"classTemplate.html#a317d535946dc065c35dd5cd38380e6c6":[5,0,25,22], +"classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[5,0,25,2], +"classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[5,0,25,3], +"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[5,0,25,6], +"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[5,0,25,21], +"classTemplate.html#a6f0efc256688c36110180b501067ff11":[5,0,25,23], +"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[5,0,25,15], +"classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677":[5,0,25,9], +"classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1":[5,0,25,19], +"classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29":[5,0,25,4], +"classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee":[5,0,25,10], +"classTemplate.html#aac9a4638f11271e1b1dcc9f247242718":[5,0,25,20], "classTemplate.html#aae9c4d761ea1298e745e8052d7910194":[5,0,25,1], "classTemplate.html#abbc484016ddf5d818f55b823cae6feb0":[5,0,25,14], "classTemplate.html#abda4c8d049f70553338eae7c905e9d5c":[5,0,25,17], @@ -237,17 +249,5 @@ var NAVTREEINDEX3 = "diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605":[6,0,0,31,15], "diaspora_8php.html#a1704748aa2384c73e43f10e71defd31a":[6,0,0,31,25], "diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31":[6,0,0,31,14], -"diaspora_8php.html#a2bf43f6b5890897f425ef4325d34b007":[6,0,0,31,19], -"diaspora_8php.html#a33ae0c4606a7df4d801c05507d87f668":[6,0,0,31,26], -"diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b":[6,0,0,31,12], -"diaspora_8php.html#a586d5a3ba92d35cee14f879f290072aa":[6,0,0,31,17], -"diaspora_8php.html#a5d57518545baa31cf8a85a937a267681":[6,0,0,31,10], -"diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff":[6,0,0,31,7], -"diaspora_8php.html#a69f250b078a46e405647428ec3399a16":[6,0,0,31,27], -"diaspora_8php.html#a6f0a67b6b17503c125af32763be931b7":[6,0,0,31,4], -"diaspora_8php.html#a71fe9bb66626b4197ae018a230778bb2":[6,0,0,31,13], -"diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46":[6,0,0,31,11], -"diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36":[6,0,0,31,3], -"diaspora_8php.html#a858f70153c384f8778082cf7843a19da":[6,0,0,31,8], -"diaspora_8php.html#a900abf51398b2ef26cd2cd31c52f1b0f":[6,0,0,31,16] +"diaspora_8php.html#a2bf43f6b5890897f425ef4325d34b007":[6,0,0,31,19] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index f5f4028bc..f296d3fe2 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,5 +1,17 @@ var NAVTREEINDEX4 = { +"diaspora_8php.html#a33ae0c4606a7df4d801c05507d87f668":[6,0,0,31,26], +"diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b":[6,0,0,31,12], +"diaspora_8php.html#a586d5a3ba92d35cee14f879f290072aa":[6,0,0,31,17], +"diaspora_8php.html#a5d57518545baa31cf8a85a937a267681":[6,0,0,31,10], +"diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff":[6,0,0,31,7], +"diaspora_8php.html#a69f250b078a46e405647428ec3399a16":[6,0,0,31,27], +"diaspora_8php.html#a6f0a67b6b17503c125af32763be931b7":[6,0,0,31,4], +"diaspora_8php.html#a71fe9bb66626b4197ae018a230778bb2":[6,0,0,31,13], +"diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46":[6,0,0,31,11], +"diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36":[6,0,0,31,3], +"diaspora_8php.html#a858f70153c384f8778082cf7843a19da":[6,0,0,31,8], +"diaspora_8php.html#a900abf51398b2ef26cd2cd31c52f1b0f":[6,0,0,31,16], "diaspora_8php.html#a938c7ee808d38725c0988fa6006805b9":[6,0,0,31,20], "diaspora_8php.html#a9bf7ef4094e0e14f6e2b7fe76ab7ad2e":[6,0,0,31,32], "diaspora_8php.html#aa34d2748bb97e9e193cacd572f335055":[6,0,0,31,28], @@ -237,17 +249,5 @@ var NAVTREEINDEX4 = "globals_func_0x6a.html":[6,1,1,10], "globals_func_0x6b.html":[6,1,1,11], "globals_func_0x6c.html":[6,1,1,12], -"globals_func_0x6d.html":[6,1,1,13], -"globals_func_0x6e.html":[6,1,1,14], -"globals_func_0x6f.html":[6,1,1,15], -"globals_func_0x70.html":[6,1,1,16], -"globals_func_0x71.html":[6,1,1,17], -"globals_func_0x72.html":[6,1,1,18], -"globals_func_0x73.html":[6,1,1,19], -"globals_func_0x74.html":[6,1,1,20], -"globals_func_0x75.html":[6,1,1,21], -"globals_func_0x76.html":[6,1,1,22], -"globals_func_0x77.html":[6,1,1,23], -"globals_func_0x78.html":[6,1,1,24], -"globals_func_0x7a.html":[6,1,1,25] +"globals_func_0x6d.html":[6,1,1,13] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index 088466692..ed6a6c92d 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,7 +1,19 @@ var NAVTREEINDEX5 = { -"globals_vars.html":[6,1,2], +"globals_func_0x6e.html":[6,1,1,14], +"globals_func_0x6f.html":[6,1,1,15], +"globals_func_0x70.html":[6,1,1,16], +"globals_func_0x71.html":[6,1,1,17], +"globals_func_0x72.html":[6,1,1,18], +"globals_func_0x73.html":[6,1,1,19], +"globals_func_0x74.html":[6,1,1,20], +"globals_func_0x75.html":[6,1,1,21], +"globals_func_0x76.html":[6,1,1,22], +"globals_func_0x77.html":[6,1,1,23], +"globals_func_0x78.html":[6,1,1,24], +"globals_func_0x7a.html":[6,1,1,25], "globals_vars.html":[6,1,2,0], +"globals_vars.html":[6,1,2], "globals_vars_0x61.html":[6,1,2,1], "globals_vars_0x63.html":[6,1,2,2], "globals_vars_0x64.html":[6,1,2,3], @@ -20,9 +32,10 @@ var NAVTREEINDEX5 = "globals_vars_0x73.html":[6,1,2,16], "globals_vars_0x74.html":[6,1,2,17], "globals_vars_0x75.html":[6,1,2,18], -"globals_vars_0x77.html":[6,1,2,19], -"globals_vars_0x78.html":[6,1,2,20], -"globals_vars_0x7a.html":[6,1,2,21], +"globals_vars_0x76.html":[6,1,2,19], +"globals_vars_0x77.html":[6,1,2,20], +"globals_vars_0x78.html":[6,1,2,21], +"globals_vars_0x7a.html":[6,1,2,22], "gprobe_8php.html":[6,0,0,41], "gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[6,0,0,41,0], "greenthumbnails_8php.html":[6,0,3,1,0,2,3], @@ -60,37 +73,38 @@ var NAVTREEINDEX5 = "hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea":[6,0,0,45,4], "identity_8php.html":[6,0,0,46], "identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[6,0,0,46,3], -"identity_8php.html#a224710dfb7465b706c91134247c20afa":[6,0,0,46,11], -"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[6,0,0,46,17], -"identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe":[6,0,0,46,22], -"identity_8php.html#a332df795f684788002f5a6424abacfd7":[6,0,0,46,10], +"identity_8php.html#a224710dfb7465b706c91134247c20afa":[6,0,0,46,12], +"identity_8php.html#a293f416ce9050220b183e08ff5890216":[6,0,0,46,6], +"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[6,0,0,46,18], +"identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe":[6,0,0,46,23], +"identity_8php.html#a332df795f684788002f5a6424abacfd7":[6,0,0,46,11], "identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[6,0,0,46,2], -"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[6,0,0,46,26], -"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[6,0,0,46,25], -"identity_8php.html#a47d6f53216f23a3484061793bef29854":[6,0,0,46,27], -"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[6,0,0,46,8], -"identity_8php.html#a4e996e44b50330098a04b467367a559f":[6,0,0,46,20], -"identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21":[6,0,0,46,12], -"identity_8php.html#a5650319c799de09d1b6d1076b6f839a4":[6,0,0,46,23], -"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[6,0,0,46,30], -"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[6,0,0,46,31], +"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[6,0,0,46,27], +"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[6,0,0,46,26], +"identity_8php.html#a47d6f53216f23a3484061793bef29854":[6,0,0,46,28], +"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[6,0,0,46,9], +"identity_8php.html#a4e996e44b50330098a04b467367a559f":[6,0,0,46,21], +"identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21":[6,0,0,46,13], +"identity_8php.html#a5650319c799de09d1b6d1076b6f839a4":[6,0,0,46,24], +"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[6,0,0,46,31], +"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[6,0,0,46,32], "identity_8php.html#a77d2237f1846964634b1c99089c27c7d":[6,0,0,46,1], -"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[6,0,0,46,28], -"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[6,0,0,46,19], -"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[6,0,0,46,9], -"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[6,0,0,46,21], +"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[6,0,0,46,29], +"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[6,0,0,46,20], +"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[6,0,0,46,10], +"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[6,0,0,46,22], "identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[6,0,0,46,0], -"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[6,0,0,46,14], -"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[6,0,0,46,13], -"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[6,0,0,46,6], +"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[6,0,0,46,15], +"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[6,0,0,46,14], +"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[6,0,0,46,7], "identity_8php.html#ac73b3e13778c564c877554517a7f51ba":[6,0,0,46,5], -"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[6,0,0,46,16], +"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[6,0,0,46,17], "identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[6,0,0,46,4], -"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[6,0,0,46,24], -"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[6,0,0,46,18], -"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[6,0,0,46,7], -"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[6,0,0,46,29], -"identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249":[6,0,0,46,15], +"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[6,0,0,46,25], +"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[6,0,0,46,19], +"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[6,0,0,46,8], +"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[6,0,0,46,30], +"identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249":[6,0,0,46,16], "impel_8php.html":[6,0,1,43], "impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b":[6,0,1,43,0], "import_8php.html":[6,0,1,44], @@ -235,19 +249,5 @@ var NAVTREEINDEX5 = "include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[6,0,0,51,9], "include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[6,0,0,51,3], "include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[6,0,0,51,8], -"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[6,0,0,51,7], -"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[6,0,0,51,5], -"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[6,0,0,51,2], -"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[6,0,0,51,6], -"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[6,0,0,51,4], -"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[6,0,0,51,0], -"include_2message_8php.html":[6,0,0,52], -"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[6,0,0,52,2], -"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[6,0,0,52,1], -"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[6,0,0,52,3], -"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[6,0,0,52,4], -"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[6,0,0,52,0], -"include_2network_8php.html":[6,0,0,54], -"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[6,0,0,54,7], -"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[6,0,0,54,14] +"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[6,0,0,51,7] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index 1bd667200..4976e91e3 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,5 +1,19 @@ var NAVTREEINDEX6 = { +"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[6,0,0,51,5], +"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[6,0,0,51,2], +"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[6,0,0,51,6], +"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[6,0,0,51,4], +"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[6,0,0,51,0], +"include_2message_8php.html":[6,0,0,52], +"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[6,0,0,52,2], +"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[6,0,0,52,1], +"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[6,0,0,52,3], +"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[6,0,0,52,4], +"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[6,0,0,52,0], +"include_2network_8php.html":[6,0,0,54], +"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[6,0,0,54,7], +"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[6,0,0,54,14], "include_2network_8php.html#a316f318167a039c89719afbd129a8f3c":[6,0,0,54,16], "include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a":[6,0,0,54,20], "include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b":[6,0,0,54,6], @@ -117,7 +131,6 @@ var NAVTREEINDEX6 = "items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[6,0,0,49,12], "items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[6,0,0,49,33], "items_8php.html#a9b449eeae50003414b8b30ca927af434":[6,0,0,49,70], -"items_8php.html#aa2d3caa2f27720762b5c729e07df40fb":[6,0,0,49,51], "items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[6,0,0,49,68], "items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[6,0,0,49,11], "items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[6,0,0,49,23], @@ -127,6 +140,7 @@ var NAVTREEINDEX6 = "items_8php.html#aabfaa193b83154c2a81e91284e5d5e59":[6,0,0,49,69], "items_8php.html#aac8c9eb4338e2a996c43914392c6cfdb":[6,0,0,49,15], "items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[6,0,0,49,65], +"items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00":[6,0,0,49,51], "items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[6,0,0,49,28], "items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723":[6,0,0,49,8], "items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[6,0,0,49,2], @@ -162,7 +176,8 @@ var NAVTREEINDEX6 = "lockview_8php.html":[6,0,1,51], "lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44":[6,0,1,51,0], "locs_8php.html":[6,0,1,52], -"locs_8php.html#a6b43654592919ac863d67a1f787a69b9":[6,0,1,52,0], +"locs_8php.html#a6b43654592919ac863d67a1f787a69b9":[6,0,1,52,1], +"locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44":[6,0,1,52,0], "login_8php.html":[6,0,1,53], "login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[6,0,1,53,0], "lostpass_8php.html":[6,0,1,54], @@ -234,20 +249,5 @@ var NAVTREEINDEX6 = "mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[6,0,1,80,0], "mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[6,0,1,80,1], "mod_2probe_8php.html":[6,0,1,88], -"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[6,0,1,88,0], -"mod__chanview_8php.html":[6,0,3,1,0,0,0], -"mod__import_8php.html":[6,0,3,0,4], -"mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[6,0,3,0,4,0], -"mood_8php.html":[6,0,1,62], -"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[6,0,1,62,0], -"mood_8php.html#a7ae136dd7476865b4828136175db5022":[6,0,1,62,1], -"msearch_8php.html":[6,0,1,63], -"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[6,0,1,63,0], -"mytheme_2php_2style_8php.html":[6,0,3,1,3,0,1], -"mytheme_2php_2theme_8php.html":[6,0,3,1,3,0,2], -"mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8":[6,0,3,1,3,0,2,0], -"namespaceFriendica.html":[4,0,1], -"namespaceFriendica.html":[5,0,1], -"namespaceRedMatrix.html":[4,0,3], -"namespaceRedMatrix.html":[5,0,3] +"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[6,0,1,88,0] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index 8a1528c2d..750d36362 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,11 +1,26 @@ var NAVTREEINDEX7 = { +"mod__chanview_8php.html":[6,0,3,1,0,0,0], +"mod__import_8php.html":[6,0,3,0,4], +"mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[6,0,3,0,4,0], +"mood_8php.html":[6,0,1,62], +"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[6,0,1,62,0], +"mood_8php.html#a7ae136dd7476865b4828136175db5022":[6,0,1,62,1], +"msearch_8php.html":[6,0,1,63], +"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[6,0,1,63,0], +"mytheme_2php_2style_8php.html":[6,0,3,1,3,0,1], +"mytheme_2php_2theme_8php.html":[6,0,3,1,3,0,2], +"mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8":[6,0,3,1,3,0,2,0], +"namespaceFriendica.html":[4,0,1], +"namespaceFriendica.html":[5,0,1], +"namespaceRedMatrix.html":[4,0,3], +"namespaceRedMatrix.html":[5,0,3], "namespaceRedMatrix_1_1RedDAV.html":[4,0,3,0], "namespaceRedMatrix_1_1RedDAV.html":[5,0,3,0], "namespaceRedmatrix.html":[5,0,4], "namespaceRedmatrix.html":[4,0,4], -"namespaceRedmatrix_1_1Import.html":[4,0,4,0], "namespaceRedmatrix_1_1Import.html":[5,0,4,0], +"namespaceRedmatrix_1_1Import.html":[4,0,4,0], "namespaceacl__selectors.html":[4,0,0], "namespaceacl__selectors.html":[5,0,0], "namespacefriendica-to-smarty-tpl.html":[4,0,2], @@ -14,8 +29,8 @@ var NAVTREEINDEX7 = "namespacemembers_func.html":[4,1,1], "namespacemembers_vars.html":[4,1,2], "namespaces.html":[4,0], -"namespaceupdatetpl.html":[5,0,5], "namespaceupdatetpl.html":[4,0,5], +"namespaceupdatetpl.html":[5,0,5], "namespaceutil.html":[4,0,6], "namespaceutil.html":[5,0,6], "nav_8php.html":[6,0,0,53], @@ -200,6 +215,20 @@ var NAVTREEINDEX7 = "reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[6,0,0,71,1], "reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[6,0,0,71,2], "reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[6,0,0,71,0], +"refimport_8php.html":[6,0,0,1,1], +"refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c":[6,0,0,1,1,2], +"refimport_8php.html#a53434bc19e6264db89e18d92ddc09860":[6,0,0,1,1,1], +"refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6":[6,0,0,1,1,6], +"refimport_8php.html#a684a44d2401abf75f441591bcb41d10d":[6,0,0,1,1,12], +"refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c":[6,0,0,1,1,4], +"refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f":[6,0,0,1,1,8], +"refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f":[6,0,0,1,1,10], +"refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d":[6,0,0,1,1,3], +"refimport_8php.html#ac43699d8ae86175e049aa4e87853caac":[6,0,0,1,1,7], +"refimport_8php.html#ad297afe0730c9119dd94d3cf0521b025":[6,0,0,1,1,9], +"refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29":[6,0,0,1,1,0], +"refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5":[6,0,0,1,1,5], +"refimport_8php.html#aeec793cefa260f788b7d005adcb35796":[6,0,0,1,1,11], "register_8php.html":[6,0,1,97], "register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[6,0,1,97,0], "register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[6,0,1,97,2], @@ -220,34 +249,5 @@ var NAVTREEINDEX7 = "rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[6,0,1,102,1], "rpost_8php.html":[6,0,1,103], "rpost_8php.html#a8190354d789000806d9879aea276728f":[6,0,1,103,0], -"rsd__xml_8php.html":[6,0,1,104], -"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[6,0,1,104,0], -"search_8php.html":[6,0,1,105], -"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[6,0,1,105,0], -"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[6,0,1,105,1], -"search__ac_8php.html":[6,0,1,106], -"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[6,0,1,106,0], -"security_8php.html":[6,0,0,72], -"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[6,0,0,72,2], -"security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[6,0,0,72,11], -"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[6,0,0,72,4], -"security_8php.html#a6126c77a1267e046ac59cf864613f011":[6,0,0,72,10], -"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[6,0,0,72,5], -"security_8php.html#a8d23d2597aae380a3341872fe9513380":[6,0,0,72,1], -"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[6,0,0,72,7], -"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[6,0,0,72,3], -"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[6,0,0,72,9], -"security_8php.html#acd06ef411116115c2f0a92633700db8a":[6,0,0,72,6], -"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[6,0,0,72,0], -"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[6,0,0,72,8], -"service__limits_8php.html":[6,0,1,107], -"service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[6,0,1,107,0], -"session_8php.html":[6,0,0,73], -"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[6,0,0,73,4], -"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[6,0,0,73,0], -"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[6,0,0,73,1], -"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[6,0,0,73,8], -"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[6,0,0,73,5], -"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[6,0,0,73,7], -"session_8php.html#ac4461c1984543d3553e73dba2771568f":[6,0,0,73,6] +"rsd__xml_8php.html":[6,0,1,104] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index 99d331cf6..75e8fbe66 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,5 +1,34 @@ var NAVTREEINDEX8 = { +"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[6,0,1,104,0], +"search_8php.html":[6,0,1,105], +"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[6,0,1,105,0], +"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[6,0,1,105,1], +"search__ac_8php.html":[6,0,1,106], +"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[6,0,1,106,0], +"security_8php.html":[6,0,0,72], +"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[6,0,0,72,2], +"security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[6,0,0,72,11], +"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[6,0,0,72,4], +"security_8php.html#a6126c77a1267e046ac59cf864613f011":[6,0,0,72,10], +"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[6,0,0,72,5], +"security_8php.html#a8d23d2597aae380a3341872fe9513380":[6,0,0,72,1], +"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[6,0,0,72,7], +"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[6,0,0,72,3], +"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[6,0,0,72,9], +"security_8php.html#acd06ef411116115c2f0a92633700db8a":[6,0,0,72,6], +"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[6,0,0,72,0], +"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[6,0,0,72,8], +"service__limits_8php.html":[6,0,1,107], +"service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[6,0,1,107,0], +"session_8php.html":[6,0,0,73], +"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[6,0,0,73,4], +"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[6,0,0,73,0], +"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[6,0,0,73,1], +"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[6,0,0,73,8], +"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[6,0,0,73,5], +"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[6,0,0,73,7], +"session_8php.html#ac4461c1984543d3553e73dba2771568f":[6,0,0,73,6], "session_8php.html#ac95373f4966862a028033dd2f94d4da1":[6,0,0,73,3], "session_8php.html#af0100a2642a5268594bbd5742a03d885":[6,0,0,73,9], "session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[6,0,0,73,2], @@ -82,21 +111,22 @@ var NAVTREEINDEX8 = "tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[6,0,1,120,1], "tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[6,0,1,120,0], "taxonomy_8php.html":[6,0,0,79], -"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[6,0,0,79,9], -"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[6,0,0,79,0], -"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[6,0,0,79,2], -"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[6,0,0,79,6], -"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[6,0,0,79,4], -"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[6,0,0,79,3], -"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[6,0,0,79,10], -"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[6,0,0,79,1], -"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[6,0,0,79,7], -"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[6,0,0,79,14], -"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[6,0,0,79,13], -"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[6,0,0,79,11], -"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[6,0,0,79,12], -"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[6,0,0,79,5], -"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[6,0,0,79,8], +"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[6,0,0,79,10], +"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[6,0,0,79,1], +"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[6,0,0,79,3], +"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[6,0,0,79,7], +"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[6,0,0,79,5], +"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[6,0,0,79,4], +"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[6,0,0,79,11], +"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[6,0,0,79,2], +"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[6,0,0,79,8], +"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[6,0,0,79,15], +"taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4":[6,0,0,79,0], +"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[6,0,0,79,14], +"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[6,0,0,79,12], +"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[6,0,0,79,13], +"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[6,0,0,79,6], +"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[6,0,0,79,9], "template__processor_8php.html":[6,0,0,80], "template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[6,0,0,80,3], "template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[6,0,0,80,1], @@ -219,35 +249,5 @@ var NAVTREEINDEX8 = "toggle__safesearch_8php.html":[6,0,1,123], "toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[6,0,1,123,0], "tpldebug_8php.html":[6,0,2,7], -"tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[6,0,2,7,0], -"tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149":[6,0,2,7,1], -"tpldebug_8php.html#afbc7aadb3f7ff1edf0aaaa326a42179c":[6,0,2,7,2], -"typo_8php.html":[6,0,2,8], -"typo_8php.html#a1b709c1d79631ebc8320b41bda028b54":[6,0,2,8,1], -"typo_8php.html#a329c9c12217d2c8660c47bbc7c8df4c5":[6,0,2,8,4], -"typo_8php.html#a3ecd17ac846be1b35f3662f5c12ab6bd":[6,0,2,8,3], -"typo_8php.html#a9590b15215a21e9b42eb546aeef79704":[6,0,2,8,2], -"typo_8php.html#acebf83966ef6d7e5645a6b62ba368f9f":[6,0,2,8,0], -"typohelper_8php.html":[6,0,2,9], -"typohelper_8php.html#a7542d95618011800c61773127fa625cf":[6,0,2,9,0], -"typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[6,0,2,9,1], -"uexport_8php.html":[6,0,1,124], -"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[6,0,1,124,0], -"update__channel_8php.html":[6,0,1,125], -"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[6,0,1,125,0], -"update__display_8php.html":[6,0,1,126], -"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[6,0,1,126,0], -"update__network_8php.html":[6,0,1,127], -"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[6,0,1,127,0], -"update__search_8php.html":[6,0,1,128], -"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[6,0,1,128,0], -"updatetpl_8py.html":[6,0,2,10], -"updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[6,0,2,10,5], -"updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[6,0,2,10,2], -"updatetpl_8py.html#a988d937ed5d5c2b592b763036af5cf94":[6,0,2,10,1], -"updatetpl_8py.html#ab42dd79af65ee82201fd6f04715f62f6":[6,0,2,10,3], -"updatetpl_8py.html#ac9d11279fed403a329a719298feafc4f":[6,0,2,10,0], -"updatetpl_8py.html#ae694f5e1f25f8a92a945eb90c432dfe6":[6,0,2,10,4], -"view_2theme_2apw_2php_2config_8php.html":[6,0,3,1,0,1,0], -"view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,0,1,0,1] +"tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[6,0,2,7,0] }; diff --git a/doc/html/navtreeindex9.js b/doc/html/navtreeindex9.js index 5631fe626..431de1608 100644 --- a/doc/html/navtreeindex9.js +++ b/doc/html/navtreeindex9.js @@ -1,5 +1,35 @@ var NAVTREEINDEX9 = { +"tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149":[6,0,2,7,1], +"tpldebug_8php.html#afbc7aadb3f7ff1edf0aaaa326a42179c":[6,0,2,7,2], +"typo_8php.html":[6,0,2,8], +"typo_8php.html#a1b709c1d79631ebc8320b41bda028b54":[6,0,2,8,1], +"typo_8php.html#a329c9c12217d2c8660c47bbc7c8df4c5":[6,0,2,8,4], +"typo_8php.html#a3ecd17ac846be1b35f3662f5c12ab6bd":[6,0,2,8,3], +"typo_8php.html#a9590b15215a21e9b42eb546aeef79704":[6,0,2,8,2], +"typo_8php.html#acebf83966ef6d7e5645a6b62ba368f9f":[6,0,2,8,0], +"typohelper_8php.html":[6,0,2,9], +"typohelper_8php.html#a7542d95618011800c61773127fa625cf":[6,0,2,9,0], +"typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[6,0,2,9,1], +"uexport_8php.html":[6,0,1,124], +"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[6,0,1,124,0], +"update__channel_8php.html":[6,0,1,125], +"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[6,0,1,125,0], +"update__display_8php.html":[6,0,1,126], +"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[6,0,1,126,0], +"update__network_8php.html":[6,0,1,127], +"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[6,0,1,127,0], +"update__search_8php.html":[6,0,1,128], +"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[6,0,1,128,0], +"updatetpl_8py.html":[6,0,2,10], +"updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[6,0,2,10,5], +"updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[6,0,2,10,2], +"updatetpl_8py.html#a988d937ed5d5c2b592b763036af5cf94":[6,0,2,10,1], +"updatetpl_8py.html#ab42dd79af65ee82201fd6f04715f62f6":[6,0,2,10,3], +"updatetpl_8py.html#ac9d11279fed403a329a719298feafc4f":[6,0,2,10,0], +"updatetpl_8py.html#ae694f5e1f25f8a92a945eb90c432dfe6":[6,0,2,10,4], +"view_2theme_2apw_2php_2config_8php.html":[6,0,3,1,0,1,0], +"view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,0,1,0,1], "view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,0,1,0,2], "view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0":[6,0,3,1,0,1,0,0], "view_2theme_2blogga_2php_2config_8php.html":[6,0,3,1,1,0,0], @@ -41,36 +71,37 @@ var NAVTREEINDEX9 = "wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[6,0,1,137,0], "widedarkness_8php.html":[6,0,3,1,0,2,10], "widgets_8php.html":[6,0,0,82], -"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[6,0,0,82,11], -"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[6,0,0,82,26], +"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[6,0,0,82,12], +"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[6,0,0,82,27], "widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[6,0,0,82,3], -"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[6,0,0,82,8], -"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[6,0,0,82,9], -"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[6,0,0,82,16], -"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[6,0,0,82,18], -"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[6,0,0,82,19], -"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[6,0,0,82,5], -"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[6,0,0,82,25], -"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[6,0,0,82,12], -"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[6,0,0,82,27], -"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[6,0,0,82,21], -"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[6,0,0,82,15], +"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[6,0,0,82,9], +"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[6,0,0,82,10], +"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[6,0,0,82,17], +"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[6,0,0,82,19], +"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[6,0,0,82,20], +"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[6,0,0,82,6], +"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[6,0,0,82,26], +"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[6,0,0,82,13], +"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[6,0,0,82,28], +"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[6,0,0,82,22], +"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[6,0,0,82,16], "widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[6,0,0,82,2], -"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[6,0,0,82,23], -"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[6,0,0,82,10], -"widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20":[6,0,0,82,20], -"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[6,0,0,82,6], -"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[6,0,0,82,7], -"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[6,0,0,82,24], -"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[6,0,0,82,22], -"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[6,0,0,82,29], +"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[6,0,0,82,24], +"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[6,0,0,82,11], +"widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20":[6,0,0,82,21], +"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[6,0,0,82,7], +"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[6,0,0,82,8], +"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[6,0,0,82,25], +"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[6,0,0,82,23], +"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[6,0,0,82,30], "widgets_8php.html#aced5cb177f630b30799c5eab873ee75c":[6,0,0,82,1], -"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[6,0,0,82,14], +"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[6,0,0,82,15], "widgets_8php.html#add9b24d3304e529a7975e96122315554":[6,0,0,82,0], -"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[6,0,0,82,13], -"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[6,0,0,82,28], -"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[6,0,0,82,4], -"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[6,0,0,82,17], +"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[6,0,0,82,14], +"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[6,0,0,82,29], +"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[6,0,0,82,5], +"widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5":[6,0,0,82,4], +"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[6,0,0,82,18], "xchan_8php.html":[6,0,1,138], "xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[6,0,1,138,0], "xrd_8php.html":[6,0,1,139], @@ -82,13 +113,13 @@ var NAVTREEINDEX9 = "zot_8php.html":[6,0,0,83], "zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[6,0,0,83,15], "zot_8php.html#a084c581d534e7e3b759488b46602288f":[6,0,0,83,20], +"zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d":[6,0,0,83,11], "zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75":[6,0,0,83,9], "zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[6,0,0,83,6], "zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[6,0,0,83,7], "zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[6,0,0,83,18], "zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac":[6,0,0,83,28], "zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[6,0,0,83,5], -"zot_8php.html#a4d9e6ca295e443b740d9960c304b3474":[6,0,0,83,11], "zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315":[6,0,0,83,8], "zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[6,0,0,83,25], "zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[6,0,0,83,31], diff --git a/doc/html/permissions_8php.html b/doc/html/permissions_8php.html index 96d65b44b..bd92a66d0 100644 --- a/doc/html/permissions_8php.html +++ b/doc/html/permissions_8php.html @@ -243,7 +243,7 @@ Functions -

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

    +

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

    @@ -277,7 +277,7 @@ 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(), 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_categories(), widget_item(), widget_photo_albums(), widget_tagcloud_wall(), z_readdir(), and zot_feed().

    +

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

    diff --git a/doc/html/php_2theme__init_8php.html b/doc/html/php_2theme__init_8php.html index e8c0dd6e2..11b70b2bb 100644 --- a/doc/html/php_2theme__init_8php.html +++ b/doc/html/php_2theme__init_8php.html @@ -127,7 +127,7 @@ Variables

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

    -

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

    +

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

    diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index c71c22f19..1557daf08 100644 --- a/doc/html/plugin_8php.html +++ b/doc/html/plugin_8php.html @@ -206,7 +206,7 @@ Functions
    -

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

    +

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

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

    Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), 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(), dirprofile_init(), 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(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    +

    Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), 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(), dirprofile_init(), 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(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    diff --git a/doc/html/refimport_8php.html b/doc/html/refimport_8php.html new file mode 100644 index 000000000..26dc98a08 --- /dev/null +++ b/doc/html/refimport_8php.html @@ -0,0 +1,381 @@ + + + + + + +The Red Matrix: include/Import/refimport.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    refimport.php File Reference
    +
    +
    + + + + + + + + + + + + + + +

    +Functions

     reflect_get_channel ()
     
     refimport_content (&$a)
     
     reflect_article_callback ($matches)
     
     reflect_photo_callback ($matches)
     
     reflect_find_user ($users, $name)
     
     reflect_comment_store ($channel, $post, $comment, $user)
     
    + + + + + + + + + + + + + + + +

    +Variables

    const REDMATRIX_IMPORTCHANNEL 'mike'
     
    const REFLECT_EXPORTUSERNAME 'mike'
     
    const REFLECT_BLOGNAME 'Diary and Other Rantings'
     
    const REFLECT_BASEURL 'http://example.com/'
     
    const REFLECT_USERFILE 'user.json'
     
    const REFLECT_OVERWRITE false
     
    const REFLECT_MAXPERRUN 30
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    refimport_content ($a)
    +
    + +
    +
    + +
    +
    + + + + + + + + +
    reflect_article_callback ( $matches)
    +
    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    reflect_comment_store ( $channel,
     $post,
     $comment,
     $user 
    )
    +
    + +

    Referenced by refimport_content().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    reflect_find_user ( $users,
     $name 
    )
    +
    + +

    Referenced by refimport_content().

    + +
    +
    + +
    +
    + + + + + + + +
    reflect_get_channel ()
    +
    + +

    Referenced by refimport_content(), and reflect_photo_callback().

    + +
    +
    + +
    +
    + + + + + + + + +
    reflect_photo_callback ( $matches)
    +
    + +
    +
    +

    Variable Documentation

    + +
    +
    + + + + +
    const REDMATRIX_IMPORTCHANNEL 'mike'
    +
    + +

    Referenced by reflect_get_channel().

    + +
    +
    + +
    +
    + + + + +
    const REFLECT_BASEURL 'http://example.com/'
    +
    +
    + +
    +
    + + + + +
    const REFLECT_BLOGNAME 'Diary and Other Rantings'
    +
    + +

    Referenced by refimport_content().

    + +
    +
    + +
    +
    + + + + +
    const REFLECT_EXPORTUSERNAME 'mike'
    +
    + +

    Referenced by reflect_comment_store().

    + +
    +
    + +
    +
    + + + + +
    const REFLECT_MAXPERRUN 30
    +
    + +

    Referenced by refimport_content().

    + +
    +
    + +
    +
    + + + + +
    const REFLECT_OVERWRITE false
    +
    + +

    Referenced by refimport_content(), and reflect_comment_store().

    + +
    +
    + +
    +
    + + + + +
    const REFLECT_USERFILE 'user.json'
    +
    + +

    Referenced by refimport_content().

    + +
    +
    +
    +
    + diff --git a/doc/html/refimport_8php.js b/doc/html/refimport_8php.js new file mode 100644 index 000000000..f0b97cbee --- /dev/null +++ b/doc/html/refimport_8php.js @@ -0,0 +1,16 @@ +var refimport_8php = +[ + [ "refimport_content", "refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29", null ], + [ "reflect_article_callback", "refimport_8php.html#a53434bc19e6264db89e18d92ddc09860", null ], + [ "reflect_comment_store", "refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c", null ], + [ "reflect_find_user", "refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d", null ], + [ "reflect_get_channel", "refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c", null ], + [ "reflect_photo_callback", "refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5", null ], + [ "REDMATRIX_IMPORTCHANNEL", "refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6", null ], + [ "REFLECT_BASEURL", "refimport_8php.html#ac43699d8ae86175e049aa4e87853caac", null ], + [ "REFLECT_BLOGNAME", "refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f", null ], + [ "REFLECT_EXPORTUSERNAME", "refimport_8php.html#ad297afe0730c9119dd94d3cf0521b025", null ], + [ "REFLECT_MAXPERRUN", "refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f", null ], + [ "REFLECT_OVERWRITE", "refimport_8php.html#aeec793cefa260f788b7d005adcb35796", null ], + [ "REFLECT_USERFILE", "refimport_8php.html#a684a44d2401abf75f441591bcb41d10d", null ] +]; \ No newline at end of file diff --git a/doc/html/search/all_63.js b/doc/html/search/all_63.js index 3be68534d..04912f004 100644 --- a/doc/html/search/all_63.js +++ b/doc/html/search/all_63.js @@ -5,6 +5,7 @@ var searchData= ['cal',['cal',['../datetime_8php.html#aea356409ba69f9de412298c998595dd2',1,'datetime.php']]], ['call_5fhooks',['call_hooks',['../plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c',1,'plugin.php']]], ['can_5fcomment_5fon_5fpost',['can_comment_on_post',['../items_8php.html#a1e75047cf175aaee8dd16aa761913ff9',1,'items.php']]], + ['catblock',['catblock',['../taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4',1,'taxonomy.php']]], ['categories_5fwidget',['categories_widget',['../contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353',1,'contact_widgets.php']]], ['change_5fchannel',['change_channel',['../security_8php.html#a8d23d2597aae380a3341872fe9513380',1,'security.php']]], ['change_5fpermissions',['change_permissions',['../classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67',1,'ProtoDriver\change_permissions()'],['../classZotDriver.html#a6776935156accb0f170e2e24577133db',1,'ZotDriver\change_permissions()']]], diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js index 86bc1f755..40d52a6c9 100644 --- a/doc/html/search/all_67.js +++ b/doc/html/search/all_67.js @@ -20,6 +20,7 @@ var searchData= ['get_5fcapath',['get_capath',['../include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7',1,'network.php']]], ['get_5fchannel',['get_channel',['../classApp.html#a084e03c77686d8c13390fef3f7428a2b',1,'App']]], ['get_5fchannel_5fby_5fnick',['get_channel_by_nick',['../identity_8php.html#ac73b3e13778c564c877554517a7f51ba',1,'identity.php']]], + ['get_5fchannel_5fdefault_5fperms',['get_channel_default_perms',['../identity_8php.html#a293f416ce9050220b183e08ff5890216',1,'identity.php']]], ['get_5fchild',['get_child',['../classItem.html#a632185dd25c5caf277067c76230a4320',1,'Item']]], ['get_5fchildren',['get_children',['../classRedmatrix_1_1Import_1_1Import.html#a832a4cc0d33d0eea29cb450004054580',1,'Redmatrix\Import\Import\get_children()'],['../classItem.html#aa0ee775ec94abccec6c798428835d001',1,'Item\get_children()']]], ['get_5fcipher',['get_cipher',['../classConversation.html#a4aab60bb39fa6761b6cacdc8d9da2901',1,'Conversation']]], @@ -130,8 +131,8 @@ var searchData= ['gravity_5flike',['GRAVITY_LIKE',['../boot_8php.html#a1f5906598e90b5ea2b4245f682be4348',1,'boot.php']]], ['gravity_5fparent',['GRAVITY_PARENT',['../boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3',1,'boot.php']]], ['greenthumbnails_2ephp',['greenthumbnails.php',['../greenthumbnails_8php.html',1,'']]], - ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]], ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], + ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]], ['group_5fadd',['group_add',['../include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce',1,'group.php']]], ['group_5fadd_5fmember',['group_add_member',['../include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b',1,'group.php']]], ['group_5fbyname',['group_byname',['../include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb',1,'group.php']]], diff --git a/doc/html/search/all_6c.js b/doc/html/search/all_6c.js index 765d4c768..3c3de04df 100644 --- a/doc/html/search/all_6c.js +++ b/doc/html/search/all_6c.js @@ -17,7 +17,7 @@ var searchData= ['limit_5fbody_5fsize',['limit_body_size',['../items_8php.html#af94c281016c6c912d06e064113336c5c',1,'items.php']]], ['link_5fcompare',['link_compare',['../text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285',1,'text.php']]], ['linkify',['linkify',['../text_8php.html#a11255c8c4e5245b6c24f97684826aa54',1,'text.php']]], - ['list_5fpost_5fdates',['list_post_dates',['../items_8php.html#aa2d3caa2f27720762b5c729e07df40fb',1,'items.php']]], + ['list_5fpost_5fdates',['list_post_dates',['../items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00',1,'items.php']]], ['list_5fpublic_5fsites',['list_public_sites',['../dirsearch_8php.html#a985d410a170549429857af6ff2673149',1,'dirsearch.php']]], ['load',['load',['../classphoto__driver.html#a19e1af2b6af4c63aa6230abe69f83712',1,'photo_driver\load()'],['../classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9',1,'photo_gd\load()'],['../classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8',1,'photo_imagick\load()']]], ['load_5fconfig',['load_config',['../include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1',1,'config.php']]], @@ -36,6 +36,7 @@ var searchData= ['lockview_2ephp',['lockview.php',['../lockview_8php.html',1,'']]], ['lockview_5fcontent',['lockview_content',['../lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44',1,'lockview.php']]], ['locs_2ephp',['locs.php',['../locs_8php.html',1,'']]], + ['locs_5fcontent',['locs_content',['../locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44',1,'locs.php']]], ['locs_5fpost',['locs_post',['../locs_8php.html#a6b43654592919ac863d67a1f787a69b9',1,'locs.php']]], ['log',['log',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abf6fe89b0a8239ed93c3b07e1fbce75b',1,'RedMatrix\RedDAV\RedBasicAuth\log()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#af90a1a74cfd643a5c56b9a17ea250d59',1,'RedMatrix\RedDAV\RedDirectory\log()']]], ['logger',['logger',['../text_8php.html#a030fa5ecc64168af0c4f44897a9bce63',1,'text.php']]], diff --git a/doc/html/search/all_70.js b/doc/html/search/all_70.js index e1f5ce70b..df9d49a93 100644 --- a/doc/html/search/all_70.js +++ b/doc/html/search/all_70.js @@ -66,6 +66,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_2ephp',['photo.php',['../photo_8php.html',1,'']]], + ['photo_5fadult',['PHOTO_ADULT',['../boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0',1,'boot.php']]], ['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']]], @@ -160,7 +161,7 @@ var searchData= ['probe_5fzot',['probe_zot',['../include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85',1,'probe.php']]], ['proc_5frun',['proc_run',['../boot_8php.html#ab346a2ece14993861f3e4206befa94f0',1,'boot.php']]], ['process_5fchannel_5fsync_5fdelivery',['process_channel_sync_delivery',['../zot_8php.html#ac301c67864917c35922257950ae0f95c',1,'zot.php']]], - ['process_5fdelivery',['process_delivery',['../zot_8php.html#a4d9e6ca295e443b740d9960c304b3474',1,'zot.php']]], + ['process_5fdelivery',['process_delivery',['../zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d',1,'zot.php']]], ['process_5flocation_5fdelivery',['process_location_delivery',['../zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988',1,'zot.php']]], ['process_5fmail_5fdelivery',['process_mail_delivery',['../zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc',1,'zot.php']]], ['process_5fprofile_5fdelivery',['process_profile_delivery',['../zot_8php.html#a9a57b40669351c9791126b925cb7ef3b',1,'zot.php']]], diff --git a/doc/html/search/all_72.js b/doc/html/search/all_72.js index 93882734e..5dc27105f 100644 --- a/doc/html/search/all_72.js +++ b/doc/html/search/all_72.js @@ -43,6 +43,7 @@ var searchData= ['redfile_2ephp',['RedFile.php',['../RedFile_8php.html',1,'']]], ['redfiledata',['RedFileData',['../reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088',1,'reddav.php']]], ['redmatrix',['RedMatrix',['../namespaceRedMatrix.html',1,'RedMatrix'],['../namespaceRedmatrix.html',1,'Redmatrix']]], + ['redmatrix_5fimportchannel',['REDMATRIX_IMPORTCHANNEL',['../refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6',1,'refimport.php']]], ['reduce',['reduce',['../docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f',1,'docblox_errorchecker.php']]], ['ref_5fsession_5fclose',['ref_session_close',['../session_8php.html#a5e1c616e02b863d5450317d101366bb7',1,'session.php']]], ['ref_5fsession_5fdestroy',['ref_session_destroy',['../session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052',1,'session.php']]], @@ -50,6 +51,19 @@ var searchData= ['ref_5fsession_5fopen',['ref_session_open',['../session_8php.html#a26fa1042356d555023cbf15ddd4f8507',1,'session.php']]], ['ref_5fsession_5fread',['ref_session_read',['../session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e',1,'session.php']]], ['ref_5fsession_5fwrite',['ref_session_write',['../session_8php.html#ac4461c1984543d3553e73dba2771568f',1,'session.php']]], + ['refimport_2ephp',['refimport.php',['../refimport_8php.html',1,'']]], + ['refimport_5fcontent',['refimport_content',['../refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29',1,'refimport.php']]], + ['reflect_5farticle_5fcallback',['reflect_article_callback',['../refimport_8php.html#a53434bc19e6264db89e18d92ddc09860',1,'refimport.php']]], + ['reflect_5fbaseurl',['REFLECT_BASEURL',['../refimport_8php.html#ac43699d8ae86175e049aa4e87853caac',1,'refimport.php']]], + ['reflect_5fblogname',['REFLECT_BLOGNAME',['../refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f',1,'refimport.php']]], + ['reflect_5fcomment_5fstore',['reflect_comment_store',['../refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c',1,'refimport.php']]], + ['reflect_5fexportusername',['REFLECT_EXPORTUSERNAME',['../refimport_8php.html#ad297afe0730c9119dd94d3cf0521b025',1,'refimport.php']]], + ['reflect_5ffind_5fuser',['reflect_find_user',['../refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d',1,'refimport.php']]], + ['reflect_5fget_5fchannel',['reflect_get_channel',['../refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c',1,'refimport.php']]], + ['reflect_5fmaxperrun',['REFLECT_MAXPERRUN',['../refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f',1,'refimport.php']]], + ['reflect_5foverwrite',['REFLECT_OVERWRITE',['../refimport_8php.html#aeec793cefa260f788b7d005adcb35796',1,'refimport.php']]], + ['reflect_5fphoto_5fcallback',['reflect_photo_callback',['../refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5',1,'refimport.php']]], + ['reflect_5fuserfile',['REFLECT_USERFILE',['../refimport_8php.html#a684a44d2401abf75f441591bcb41d10d',1,'refimport.php']]], ['register_2ephp',['register.php',['../register_8php.html',1,'']]], ['register_5fapprove',['REGISTER_APPROVE',['../boot_8php.html#a7176c0f9f1c98421b97735d892cf6252',1,'boot.php']]], ['register_5fclosed',['REGISTER_CLOSED',['../boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1',1,'boot.php']]], diff --git a/doc/html/search/all_76.js b/doc/html/search/all_76.js index 37f7c54b7..ec35b57e4 100644 --- a/doc/html/search/all_76.js +++ b/doc/html/search/all_76.js @@ -16,6 +16,17 @@ var searchData= ['viewsrc_2ephp',['viewsrc.php',['../viewsrc_8php.html',1,'']]], ['viewsrc_5fcontent',['viewsrc_content',['../viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4',1,'viewsrc.php']]], ['visible_5factivity',['visible_activity',['../conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3',1,'conversation.php']]], + ['vnotify_5falert',['VNOTIFY_ALERT',['../boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f',1,'boot.php']]], + ['vnotify_5fbirthday',['VNOTIFY_BIRTHDAY',['../boot_8php.html#ac89396b9144391acd08d6d0f9b332220',1,'boot.php']]], + ['vnotify_5fchannel',['VNOTIFY_CHANNEL',['../boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe',1,'boot.php']]], + ['vnotify_5fevent',['VNOTIFY_EVENT',['../boot_8php.html#ad94aca4c260b8a892397786201dc4664',1,'boot.php']]], + ['vnotify_5feventtoday',['VNOTIFY_EVENTTODAY',['../boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9',1,'boot.php']]], + ['vnotify_5finfo',['VNOTIFY_INFO',['../boot_8php.html#a37281c30bd92cecb499878d6778c570f',1,'boot.php']]], + ['vnotify_5fintro',['VNOTIFY_INTRO',['../boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71',1,'boot.php']]], + ['vnotify_5fmail',['VNOTIFY_MAIL',['../boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3',1,'boot.php']]], + ['vnotify_5fnetwork',['VNOTIFY_NETWORK',['../boot_8php.html#a997614f25e58f8313641e1eb0109fd10',1,'boot.php']]], + ['vnotify_5fregister',['VNOTIFY_REGISTER',['../boot_8php.html#ae09767b94688657978ff9366ec63684b',1,'boot.php']]], + ['vnotify_5fsystem',['VNOTIFY_SYSTEM',['../boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1',1,'boot.php']]], ['vote_2ephp',['vote.php',['../vote_8php.html',1,'']]], ['vote_5fcontent',['vote_content',['../vote_8php.html#a6aa67489bf458ca5e3206e46dac68596',1,'vote.php']]], ['vote_5finit',['vote_init',['../vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2',1,'vote.php']]], diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js index b3a5a4947..621b0aed7 100644 --- a/doc/html/search/all_77.js +++ b/doc/html/search/all_77.js @@ -18,6 +18,7 @@ var searchData= ['widget_5fappselect',['widget_appselect',['../widgets_8php.html#aced5cb177f630b30799c5eab873ee75c',1,'widgets.php']]], ['widget_5farchive',['widget_archive',['../widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65',1,'widgets.php']]], ['widget_5fbookmarkedchats',['widget_bookmarkedchats',['../widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3',1,'widgets.php']]], + ['widget_5fcatcloud_5fwall',['widget_catcloud_wall',['../widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5',1,'widgets.php']]], ['widget_5fcategories',['widget_categories',['../widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b',1,'widgets.php']]], ['widget_5fchatroom_5flist',['widget_chatroom_list',['../widgets_8php.html#a47c72aac42058ea086c9ef8651c259da',1,'widgets.php']]], ['widget_5fclock',['widget_clock',['../widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a',1,'widgets.php']]], diff --git a/doc/html/search/files_72.js b/doc/html/search/files_72.js index 0bab1f0eb..73bd22015 100644 --- a/doc/html/search/files_72.js +++ b/doc/html/search/files_72.js @@ -12,6 +12,7 @@ var searchData= ['reddav_2ephp',['reddav.php',['../reddav_8php.html',1,'']]], ['reddirectory_2ephp',['RedDirectory.php',['../RedDirectory_8php.html',1,'']]], ['redfile_2ephp',['RedFile.php',['../RedFile_8php.html',1,'']]], + ['refimport_2ephp',['refimport.php',['../refimport_8php.html',1,'']]], ['register_2ephp',['register.php',['../register_8php.html',1,'']]], ['regmod_2ephp',['regmod.php',['../regmod_8php.html',1,'']]], ['regver_2ephp',['regver.php',['../regver_8php.html',1,'']]], diff --git a/doc/html/search/functions_63.js b/doc/html/search/functions_63.js index 26de38b25..7b5abcc2f 100644 --- a/doc/html/search/functions_63.js +++ b/doc/html/search/functions_63.js @@ -3,6 +3,7 @@ var searchData= ['cal',['cal',['../datetime_8php.html#aea356409ba69f9de412298c998595dd2',1,'datetime.php']]], ['call_5fhooks',['call_hooks',['../plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c',1,'plugin.php']]], ['can_5fcomment_5fon_5fpost',['can_comment_on_post',['../items_8php.html#a1e75047cf175aaee8dd16aa761913ff9',1,'items.php']]], + ['catblock',['catblock',['../taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4',1,'taxonomy.php']]], ['categories_5fwidget',['categories_widget',['../contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353',1,'contact_widgets.php']]], ['change_5fchannel',['change_channel',['../security_8php.html#a8d23d2597aae380a3341872fe9513380',1,'security.php']]], ['change_5fpermissions',['change_permissions',['../classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67',1,'ProtoDriver\change_permissions()'],['../classZotDriver.html#a6776935156accb0f170e2e24577133db',1,'ZotDriver\change_permissions()']]], diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js index 992225335..835416938 100644 --- a/doc/html/search/functions_67.js +++ b/doc/html/search/functions_67.js @@ -20,6 +20,7 @@ var searchData= ['get_5fcapath',['get_capath',['../include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7',1,'network.php']]], ['get_5fchannel',['get_channel',['../classApp.html#a084e03c77686d8c13390fef3f7428a2b',1,'App']]], ['get_5fchannel_5fby_5fnick',['get_channel_by_nick',['../identity_8php.html#ac73b3e13778c564c877554517a7f51ba',1,'identity.php']]], + ['get_5fchannel_5fdefault_5fperms',['get_channel_default_perms',['../identity_8php.html#a293f416ce9050220b183e08ff5890216',1,'identity.php']]], ['get_5fchild',['get_child',['../classItem.html#a632185dd25c5caf277067c76230a4320',1,'Item']]], ['get_5fchildren',['get_children',['../classRedmatrix_1_1Import_1_1Import.html#a832a4cc0d33d0eea29cb450004054580',1,'Redmatrix\Import\Import\get_children()'],['../classItem.html#aa0ee775ec94abccec6c798428835d001',1,'Item\get_children()']]], ['get_5fcipher',['get_cipher',['../classConversation.html#a4aab60bb39fa6761b6cacdc8d9da2901',1,'Conversation']]], diff --git a/doc/html/search/functions_6c.js b/doc/html/search/functions_6c.js index 171acad1d..bae096081 100644 --- a/doc/html/search/functions_6c.js +++ b/doc/html/search/functions_6c.js @@ -10,7 +10,7 @@ var searchData= ['limit_5fbody_5fsize',['limit_body_size',['../items_8php.html#af94c281016c6c912d06e064113336c5c',1,'items.php']]], ['link_5fcompare',['link_compare',['../text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285',1,'text.php']]], ['linkify',['linkify',['../text_8php.html#a11255c8c4e5245b6c24f97684826aa54',1,'text.php']]], - ['list_5fpost_5fdates',['list_post_dates',['../items_8php.html#aa2d3caa2f27720762b5c729e07df40fb',1,'items.php']]], + ['list_5fpost_5fdates',['list_post_dates',['../items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00',1,'items.php']]], ['list_5fpublic_5fsites',['list_public_sites',['../dirsearch_8php.html#a985d410a170549429857af6ff2673149',1,'dirsearch.php']]], ['load',['load',['../classphoto__driver.html#a19e1af2b6af4c63aa6230abe69f83712',1,'photo_driver\load()'],['../classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9',1,'photo_gd\load()'],['../classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8',1,'photo_imagick\load()']]], ['load_5fconfig',['load_config',['../include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1',1,'config.php']]], @@ -27,6 +27,7 @@ var searchData= ['local_5fuser',['local_user',['../boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44',1,'boot.php']]], ['localize_5fitem',['localize_item',['../conversation_8php.html#a9bd7f9fb6678736c581bcba3b17f471c',1,'conversation.php']]], ['lockview_5fcontent',['lockview_content',['../lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44',1,'lockview.php']]], + ['locs_5fcontent',['locs_content',['../locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44',1,'locs.php']]], ['locs_5fpost',['locs_post',['../locs_8php.html#a6b43654592919ac863d67a1f787a69b9',1,'locs.php']]], ['log',['log',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#abf6fe89b0a8239ed93c3b07e1fbce75b',1,'RedMatrix\RedDAV\RedBasicAuth\log()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#af90a1a74cfd643a5c56b9a17ea250d59',1,'RedMatrix\RedDAV\RedDirectory\log()']]], ['logger',['logger',['../text_8php.html#a030fa5ecc64168af0c4f44897a9bce63',1,'text.php']]], diff --git a/doc/html/search/functions_70.js b/doc/html/search/functions_70.js index 7ef2743de..dc785aa57 100644 --- a/doc/html/search/functions_70.js +++ b/doc/html/search/functions_70.js @@ -81,7 +81,7 @@ var searchData= ['probe_5fzot',['probe_zot',['../include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85',1,'probe.php']]], ['proc_5frun',['proc_run',['../boot_8php.html#ab346a2ece14993861f3e4206befa94f0',1,'boot.php']]], ['process_5fchannel_5fsync_5fdelivery',['process_channel_sync_delivery',['../zot_8php.html#ac301c67864917c35922257950ae0f95c',1,'zot.php']]], - ['process_5fdelivery',['process_delivery',['../zot_8php.html#a4d9e6ca295e443b740d9960c304b3474',1,'zot.php']]], + ['process_5fdelivery',['process_delivery',['../zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d',1,'zot.php']]], ['process_5flocation_5fdelivery',['process_location_delivery',['../zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988',1,'zot.php']]], ['process_5fmail_5fdelivery',['process_mail_delivery',['../zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc',1,'zot.php']]], ['process_5fprofile_5fdelivery',['process_profile_delivery',['../zot_8php.html#a9a57b40669351c9791126b925cb7ef3b',1,'zot.php']]], diff --git a/doc/html/search/functions_72.js b/doc/html/search/functions_72.js index ce802ed6b..472ad4bd5 100644 --- a/doc/html/search/functions_72.js +++ b/doc/html/search/functions_72.js @@ -26,6 +26,12 @@ var searchData= ['ref_5fsession_5fopen',['ref_session_open',['../session_8php.html#a26fa1042356d555023cbf15ddd4f8507',1,'session.php']]], ['ref_5fsession_5fread',['ref_session_read',['../session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e',1,'session.php']]], ['ref_5fsession_5fwrite',['ref_session_write',['../session_8php.html#ac4461c1984543d3553e73dba2771568f',1,'session.php']]], + ['refimport_5fcontent',['refimport_content',['../refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29',1,'refimport.php']]], + ['reflect_5farticle_5fcallback',['reflect_article_callback',['../refimport_8php.html#a53434bc19e6264db89e18d92ddc09860',1,'refimport.php']]], + ['reflect_5fcomment_5fstore',['reflect_comment_store',['../refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c',1,'refimport.php']]], + ['reflect_5ffind_5fuser',['reflect_find_user',['../refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d',1,'refimport.php']]], + ['reflect_5fget_5fchannel',['reflect_get_channel',['../refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c',1,'refimport.php']]], + ['reflect_5fphoto_5fcallback',['reflect_photo_callback',['../refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5',1,'refimport.php']]], ['register_5fcontent',['register_content',['../register_8php.html#a0e91f57f111407ea8d3223a05022bb2a',1,'register.php']]], ['register_5fhook',['register_hook',['../plugin_8php.html#a425472c5f3afc137268b2ad45652b209',1,'plugin.php']]], ['register_5finit',['register_init',['../register_8php.html#ae20c0cd40f738d6295de58b9202c83d5',1,'register.php']]], diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js index 8cfb46c63..23a414c07 100644 --- a/doc/html/search/functions_77.js +++ b/doc/html/search/functions_77.js @@ -11,6 +11,7 @@ var searchData= ['widget_5fappselect',['widget_appselect',['../widgets_8php.html#aced5cb177f630b30799c5eab873ee75c',1,'widgets.php']]], ['widget_5farchive',['widget_archive',['../widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65',1,'widgets.php']]], ['widget_5fbookmarkedchats',['widget_bookmarkedchats',['../widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3',1,'widgets.php']]], + ['widget_5fcatcloud_5fwall',['widget_catcloud_wall',['../widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5',1,'widgets.php']]], ['widget_5fcategories',['widget_categories',['../widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b',1,'widgets.php']]], ['widget_5fchatroom_5flist',['widget_chatroom_list',['../widgets_8php.html#a47c72aac42058ea086c9ef8651c259da',1,'widgets.php']]], ['widget_5fclock',['widget_clock',['../widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a',1,'widgets.php']]], diff --git a/doc/html/search/search.js b/doc/html/search/search.js index fe24f105b..4477a1d6c 100644 --- a/doc/html/search/search.js +++ b/doc/html/search/search.js @@ -12,7 +12,7 @@ var indexSectionsWithContent = 2: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100001000000000001001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 3: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010111111111001111111111111010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 4: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010111111111111111111111111010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - 5: "0000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000101111111111111101111011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + 5: "0000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000101111111111111101111111010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 6: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101001000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }; diff --git a/doc/html/search/variables_70.js b/doc/html/search/variables_70.js index 4042ed660..e9954a9de 100644 --- a/doc/html/search/variables_70.js +++ b/doc/html/search/variables_70.js @@ -38,6 +38,7 @@ var searchData= ['perms_5fw_5fstream',['PERMS_W_STREAM',['../boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55',1,'boot.php']]], ['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_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/search/variables_72.js b/doc/html/search/variables_72.js index be2927ed5..885c50398 100644 --- a/doc/html/search/variables_72.js +++ b/doc/html/search/variables_72.js @@ -5,6 +5,13 @@ var searchData= ['rdelim',['rdelim',['../namespacefriendica-to-smarty-tpl.html#a8540514fb7c4aa18ad2dffa2a975036b',1,'friendica-to-smarty-tpl']]], ['red_5fplatform',['RED_PLATFORM',['../boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4',1,'boot.php']]], ['red_5fversion',['RED_VERSION',['../boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3',1,'boot.php']]], + ['redmatrix_5fimportchannel',['REDMATRIX_IMPORTCHANNEL',['../refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6',1,'refimport.php']]], + ['reflect_5fbaseurl',['REFLECT_BASEURL',['../refimport_8php.html#ac43699d8ae86175e049aa4e87853caac',1,'refimport.php']]], + ['reflect_5fblogname',['REFLECT_BLOGNAME',['../refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f',1,'refimport.php']]], + ['reflect_5fexportusername',['REFLECT_EXPORTUSERNAME',['../refimport_8php.html#ad297afe0730c9119dd94d3cf0521b025',1,'refimport.php']]], + ['reflect_5fmaxperrun',['REFLECT_MAXPERRUN',['../refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f',1,'refimport.php']]], + ['reflect_5foverwrite',['REFLECT_OVERWRITE',['../refimport_8php.html#aeec793cefa260f788b7d005adcb35796',1,'refimport.php']]], + ['reflect_5fuserfile',['REFLECT_USERFILE',['../refimport_8php.html#a684a44d2401abf75f441591bcb41d10d',1,'refimport.php']]], ['register_5fapprove',['REGISTER_APPROVE',['../boot_8php.html#a7176c0f9f1c98421b97735d892cf6252',1,'boot.php']]], ['register_5fclosed',['REGISTER_CLOSED',['../boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1',1,'boot.php']]], ['register_5fopen',['REGISTER_OPEN',['../boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63',1,'boot.php']]], diff --git a/doc/html/search/variables_76.html b/doc/html/search/variables_76.html new file mode 100644 index 000000000..8af237461 --- /dev/null +++ b/doc/html/search/variables_76.html @@ -0,0 +1,26 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/doc/html/search/variables_76.js b/doc/html/search/variables_76.js new file mode 100644 index 000000000..f046273ce --- /dev/null +++ b/doc/html/search/variables_76.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['vnotify_5falert',['VNOTIFY_ALERT',['../boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f',1,'boot.php']]], + ['vnotify_5fbirthday',['VNOTIFY_BIRTHDAY',['../boot_8php.html#ac89396b9144391acd08d6d0f9b332220',1,'boot.php']]], + ['vnotify_5fchannel',['VNOTIFY_CHANNEL',['../boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe',1,'boot.php']]], + ['vnotify_5fevent',['VNOTIFY_EVENT',['../boot_8php.html#ad94aca4c260b8a892397786201dc4664',1,'boot.php']]], + ['vnotify_5feventtoday',['VNOTIFY_EVENTTODAY',['../boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9',1,'boot.php']]], + ['vnotify_5finfo',['VNOTIFY_INFO',['../boot_8php.html#a37281c30bd92cecb499878d6778c570f',1,'boot.php']]], + ['vnotify_5fintro',['VNOTIFY_INTRO',['../boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71',1,'boot.php']]], + ['vnotify_5fmail',['VNOTIFY_MAIL',['../boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3',1,'boot.php']]], + ['vnotify_5fnetwork',['VNOTIFY_NETWORK',['../boot_8php.html#a997614f25e58f8313641e1eb0109fd10',1,'boot.php']]], + ['vnotify_5fregister',['VNOTIFY_REGISTER',['../boot_8php.html#ae09767b94688657978ff9366ec63684b',1,'boot.php']]], + ['vnotify_5fsystem',['VNOTIFY_SYSTEM',['../boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1',1,'boot.php']]] +]; diff --git a/doc/html/taxonomy_8php.html b/doc/html/taxonomy_8php.html index 552ef36bc..3f16dad15 100644 --- a/doc/html/taxonomy_8php.html +++ b/doc/html/taxonomy_8php.html @@ -134,6 +134,8 @@ Functions    tagblock ($link, $uid, $count=0, $authors= '', $flags=0, $restrict=0, $type=TERM_HASHTAG)   + catblock ($uid, $count=0, $authors= '', $flags=0, $restrict=0, $type=TERM_CATEGORY) +   dir_tagblock ($link, $r)    obj_verbs () @@ -144,6 +146,58 @@ Functions  

    Function Documentation

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    catblock ( $uid,
     $count = 0,
     $authors = '',
     $flags = 0,
     $restrict = 0,
     $type = TERM_CATEGORY 
    )
    +
    + +

    Referenced by widget_catcloud_wall().

    + +
    +
    @@ -464,7 +518,7 @@ Functions
    -

    Referenced by tagblock(), and widget_tagcloud().

    +

    Referenced by catblock(), tagblock(), and widget_tagcloud().

    diff --git a/doc/html/taxonomy_8php.js b/doc/html/taxonomy_8php.js index 24b5fb426..903cd8534 100644 --- a/doc/html/taxonomy_8php.js +++ b/doc/html/taxonomy_8php.js @@ -1,5 +1,6 @@ var taxonomy_8php = [ + [ "catblock", "taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4", null ], [ "dir_tagadelic", "taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332", null ], [ "dir_tagblock", "taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1", null ], [ "file_tag_decode", "taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6", null ], diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index e0a5ec96b..25a8ad3d5 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -631,7 +631,7 @@ Variables @@ -1339,7 +1339,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(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), 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(), dirprofile_init(), discover_by_url(), discover_by_webbie(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), find_diaspora_person_by_handle(), fix_private_photos(), fix_system_urls(), RedMatrix\RedDAV\RedFile\get(), get_atom_elements(), get_diaspora_key(), get_diaspora_reshare_xml(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), group_content(), guess_image_type(), http_status_exit(), hubloc_change_primary(), impel_init(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), old_webfinger(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), prune_hub_reinstalls(), public_recips(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), rbmark_post(), receive_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), scale_external_images(), scrape_feed(), scrape_vcard(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), start_delivery_chain(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_feed_item(), update_imported_item(), update_queue_time(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), verify_email_address(), xml2array(), xml_status(), z_fetch_url(), z_post_url(), zfinger_init(), zid_init(), zot_build_packet(), zot_feed(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

    +

    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(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), 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(), dirprofile_init(), discover_by_url(), discover_by_webbie(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), find_diaspora_person_by_handle(), fix_private_photos(), fix_system_urls(), RedMatrix\RedDAV\RedFile\get(), get_atom_elements(), get_diaspora_key(), get_diaspora_reshare_xml(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), group_content(), guess_image_type(), http_status_exit(), hubloc_change_primary(), impel_init(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), old_webfinger(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), prune_hub_reinstalls(), public_recips(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), rbmark_post(), receive_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), scale_external_images(), scrape_feed(), scrape_vcard(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), start_delivery_chain(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_feed_item(), update_imported_item(), update_queue_time(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), verify_email_address(), xml2array(), xml_status(), z_fetch_url(), z_post_url(), zfinger_init(), zid_init(), zot_build_packet(), zot_feed(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

    @@ -1761,7 +1761,7 @@ Variables
    -

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

    +

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

    @@ -1826,7 +1826,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(), blogtheme_form(), 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(), dirprofile_init(), 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(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), login(), lostpass_content(), lostpass_post(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), user_allow(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    +

    Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), 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(), dirprofile_init(), 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(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), lostpass_post(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), user_allow(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index deafea102..3d285d710 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(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), 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(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store_item(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_init(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), hivenet_init(), home_content(), home_init(), hostxrd_init(), impel_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), like_content(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_pdl(), load_translation_table(), load_xconfig(), locs_post(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), p_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), regver_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), search_ac_init(), search_content(), search_init(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_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(), wfinger_init(), what_next(), widget_archive(), 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(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), 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(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store_item(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_init(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), hivenet_init(), home_content(), home_init(), hostxrd_init(), impel_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), like_content(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_pdl(), load_translation_table(), load_xconfig(), locs_content(), locs_post(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), p_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), regver_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), search_ac_init(), search_content(), search_init(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_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(), 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 6ebcfa512..8ff068709 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(), dbesc(), dba_mysql\escape(), dba_mysqli\escape(), 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(), and xmlify().

    +

    Referenced by api_date(), check_php(), check_webbie(), dbesc(), dba_mysql\escape(), dba_mysqli\escape(), 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(), and xmlify().

    diff --git a/doc/html/widgets_8php.html b/doc/html/widgets_8php.html index 0d3e55b22..2701a39a7 100644 --- a/doc/html/widgets_8php.html +++ b/doc/html/widgets_8php.html @@ -138,6 +138,8 @@ Functions    widget_tagcloud_wall ($arr)   + widget_catcloud_wall ($arr) +   widget_affinity ($arr)    widget_settings_menu ($arr) @@ -236,6 +238,22 @@ Functions
    +
    + + +
    +
    + + + + + + + + +
    widget_catcloud_wall ( $arr)
    +
    +
    diff --git a/doc/html/widgets_8php.js b/doc/html/widgets_8php.js index 69c9d267d..005294da8 100644 --- a/doc/html/widgets_8php.js +++ b/doc/html/widgets_8php.js @@ -4,6 +4,7 @@ var widgets_8php = [ "widget_appselect", "widgets_8php.html#aced5cb177f630b30799c5eab873ee75c", null ], [ "widget_archive", "widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65", null ], [ "widget_bookmarkedchats", "widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3", null ], + [ "widget_catcloud_wall", "widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5", null ], [ "widget_categories", "widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b", null ], [ "widget_chatroom_list", "widgets_8php.html#a47c72aac42058ea086c9ef8651c259da", null ], [ "widget_clock", "widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a", null ], diff --git a/doc/html/zot_8php.html b/doc/html/zot_8php.html index 273defd29..d570d5a79 100644 --- a/doc/html/zot_8php.html +++ b/doc/html/zot_8php.html @@ -142,8 +142,8 @@ Functions    allowed_public_recips ($msg)   - process_delivery ($sender, $arr, $deliveries, $relay, $public=false) -  + process_delivery ($sender, $arr, $deliveries, $relay, $public=false, $request=false) +   remove_community_tag ($sender, $arr, $uid)    update_imported_item ($sender, $item, $uid) @@ -263,7 +263,7 @@ Functions
    -

    Referenced by process_delivery().

    +

    Referenced by process_delivery().

    @@ -513,7 +513,7 @@ Functions - +
    @@ -545,7 +545,13 @@ Functions - + + + + + + + @@ -709,7 +715,7 @@ Functions
     $public = false $public = false,
     $request = false 
    -

    Referenced by process_delivery().

    +

    Referenced by process_delivery().

    @@ -777,7 +783,7 @@ Functions
    -

    Referenced by process_delivery().

    +

    Referenced by process_delivery().

    @@ -1112,6 +1118,9 @@ which will be processed and delivered before this function ultimately returns.
    +

    zot_process_message_request($data) If a site receives a comment to a post but finds they have no parent to attach it with, they may send a 'request' packet containing the message_id of the missing parent. This is the handler for that packet. We will create a message_list array of the entire conversation starting with the missing parent and invoke delivery to the sender of the packet.

    +

    include/deliver.php (for local delivery) and mod/post.php (for web delivery) detect the existence of this 'message_list' at the destination and split it into individual messages which are processed/delivered in order.

    +

    Called from mod/post.php

    Referenced by post_post().

    diff --git a/doc/html/zot_8php.js b/doc/html/zot_8php.js index 1596257c4..521de64be 100644 --- a/doc/html/zot_8php.js +++ b/doc/html/zot_8php.js @@ -11,7 +11,7 @@ var zot_8php = [ "import_xchan", "zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315", null ], [ "make_xchan_hash", "zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75", null ], [ "process_channel_sync_delivery", "zot_8php.html#ac301c67864917c35922257950ae0f95c", null ], - [ "process_delivery", "zot_8php.html#a4d9e6ca295e443b740d9960c304b3474", null ], + [ "process_delivery", "zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d", null ], [ "process_location_delivery", "zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988", null ], [ "process_mail_delivery", "zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc", null ], [ "process_profile_delivery", "zot_8php.html#a9a57b40669351c9791126b925cb7ef3b", null ], -- cgit v1.2.3 From 26343b8856d6145b6c1fd62ff648e34b376eddc5 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Nov 2014 05:15:28 -0800 Subject: rev update --- util/messages.po | 1129 +++++++++++++++++++++++++++++------------------------- version.inc | 2 +- 2 files changed, 609 insertions(+), 522 deletions(-) diff --git a/util/messages.po b/util/messages.po index 21cc95b0d..892817b74 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-10-31.845\n" +"Project-Id-Version: 2014-11-07.852\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-31 00:03-0700\n" +"POT-Creation-Date: 2014-11-07 00:04-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,7 +23,7 @@ msgid "Cannot locate DNS info for database server '%s'" msgstr "" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:51 -#: ../../mod/photos.php:91 ../../mod/photos.php:645 +#: ../../mod/photos.php:91 ../../mod/photos.php:652 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 #: ../../mod/profile_photo.php:423 msgid "Profile Photos" @@ -42,7 +42,7 @@ msgstr "" msgid "Address Book" msgstr "" -#: ../../include/apps.php:129 ../../include/nav.php:125 ../../boot.php:1496 +#: ../../include/apps.php:129 ../../include/nav.php:125 ../../boot.php:1513 msgid "Login" msgstr "" @@ -55,7 +55,7 @@ msgstr "" msgid "Matrix" msgstr "" -#: ../../include/apps.php:132 ../../include/widgets.php:524 +#: ../../include/apps.php:132 ../../include/widgets.php:548 #: ../../include/nav.php:218 ../../mod/admin.php:953 ../../mod/admin.php:1158 msgid "Settings" msgstr "" @@ -75,8 +75,8 @@ msgstr "" msgid "Channel Home" msgstr "" -#: ../../include/apps.php:136 ../../include/identity.php:1115 -#: ../../include/identity.php:1233 ../../mod/profperm.php:112 +#: ../../include/apps.php:136 ../../include/identity.php:1120 +#: ../../include/identity.php:1238 ../../mod/profperm.php:112 msgid "Profile" msgstr "" @@ -155,7 +155,7 @@ msgid "Profile Photo" msgstr "" #: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:544 +#: ../../mod/settings.php:575 msgid "Update" msgstr "" @@ -170,7 +170,7 @@ msgstr "" #: ../../include/apps.php:249 ../../include/page_widgets.php:8 #: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:250 #: ../../include/menu.php:42 ../../include/ItemObject.php:100 -#: ../../mod/settings.php:580 ../../mod/blocks.php:99 +#: ../../mod/settings.php:611 ../../mod/blocks.php:99 #: ../../mod/connections.php:381 ../../mod/connections.php:394 #: ../../mod/connections.php:413 ../../mod/webpages.php:131 #: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 @@ -181,16 +181,16 @@ msgstr "" #: ../../include/apps.php:250 ../../include/conversation.php:638 #: ../../include/RedDAV/RedBrowser.php:251 ../../include/ItemObject.php:120 -#: ../../mod/photos.php:1062 ../../mod/settings.php:581 -#: ../../mod/connedit.php:468 ../../mod/group.php:176 ../../mod/admin.php:732 +#: ../../mod/photos.php:1066 ../../mod/settings.php:612 +#: ../../mod/connedit.php:476 ../../mod/group.php:176 ../../mod/admin.php:732 #: ../../mod/admin.php:863 ../../mod/thing.php:234 msgid "Delete" msgstr "" #: ../../include/apps.php:331 ../../include/apps.php:382 #: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 -#: ../../mod/photos.php:703 ../../mod/photos.php:1124 -#: ../../mod/connedit.php:504 +#: ../../mod/photos.php:711 ../../mod/photos.php:1128 +#: ../../mod/connedit.php:512 msgid "Unknown" msgstr "" @@ -200,18 +200,18 @@ msgstr "" #: ../../include/attach.php:318 ../../include/attach.php:511 #: ../../include/attach.php:584 ../../include/chat.php:116 #: ../../include/items.php:4005 ../../include/photos.php:15 -#: ../../mod/mood.php:112 ../../mod/photos.php:68 ../../mod/photos.php:533 -#: ../../mod/mitem.php:73 ../../mod/achievements.php:30 -#: ../../mod/settings.php:495 ../../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:29 ../../mod/blocks.php:44 ../../mod/profiles.php:179 +#: ../../mod/mood.php:112 ../../mod/photos.php:68 ../../mod/mitem.php:73 +#: ../../mod/achievements.php:30 ../../mod/settings.php:526 +#: ../../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:29 +#: ../../mod/blocks.php:44 ../../mod/profiles.php:179 #: ../../mod/profiles.php:532 ../../mod/events.php:195 #: ../../mod/channel.php:89 ../../mod/channel.php:193 #: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 #: ../../mod/register.php:70 ../../mod/regmod.php:17 ../../mod/common.php:35 #: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:254 ../../mod/delegate.php:6 +#: ../../mod/connedit.php:266 ../../mod/delegate.php:6 #: ../../mod/webpages.php:40 ../../mod/bookmarks.php:46 #: ../../mod/setup.php:203 ../../mod/editblock.php:34 ../../mod/pdledit.php:21 #: ../../mod/editlayout.php:48 ../../mod/editpost.php:13 @@ -222,15 +222,15 @@ msgstr "" #: ../../mod/filestorage.php:109 ../../mod/fsuggest.php:78 #: ../../mod/suggest.php:26 ../../mod/group.php:9 ../../mod/like.php:154 #: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:182 -#: ../../mod/item.php:190 ../../mod/item.php:961 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 -#: ../../mod/mail.php:111 ../../mod/manage.php:6 ../../mod/menu.php:44 -#: ../../mod/message.php:16 ../../mod/new_channel.php:68 +#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:184 +#: ../../mod/item.php:192 ../../mod/item.php:964 ../../mod/layouts.php:27 +#: ../../mod/layouts.php:39 ../../mod/locs.php:71 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/viewsrc.php:14 ../../mod/mail.php:111 ../../mod/manage.php:6 +#: ../../mod/menu.php:44 ../../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/appman.php:66 -#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:401 +#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 msgid "Permission denied." msgstr "" @@ -293,7 +293,7 @@ msgid "database storage failed." msgstr "" #: ../../include/conversation.php:120 ../../include/text.php:1743 -#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../include/diaspora.php:1923 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:298 msgid "photo" msgstr "" @@ -308,7 +308,7 @@ msgid "channel" msgstr "" #: ../../include/conversation.php:148 ../../include/text.php:1749 -#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../include/diaspora.php:1923 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:298 msgid "status" msgstr "" @@ -318,7 +318,7 @@ msgstr "" msgid "comment" msgstr "" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1953 +#: ../../include/conversation.php:164 ../../include/diaspora.php:1952 #: ../../mod/like.php:344 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -398,7 +398,7 @@ msgid "View in context" msgstr "" #: ../../include/conversation.php:719 ../../include/conversation.php:1153 -#: ../../include/ItemObject.php:310 ../../mod/photos.php:970 +#: ../../include/ItemObject.php:310 ../../mod/photos.php:974 #: ../../mod/editblock.php:120 ../../mod/editlayout.php:115 #: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 #: ../../mod/mail.php:234 ../../mod/mail.php:349 @@ -430,7 +430,7 @@ msgid "View Status" msgstr "" #: ../../include/conversation.php:945 ../../include/nav.php:99 -#: ../../mod/connedit.php:421 ../../mod/connedit.php:535 +#: ../../mod/connedit.php:429 ../../mod/connedit.php:544 msgid "View Profile" msgstr "" @@ -442,7 +442,7 @@ msgstr "" msgid "Matrix Activity" msgstr "" -#: ../../include/conversation.php:948 ../../include/identity.php:835 +#: ../../include/conversation.php:948 ../../include/identity.php:840 #: ../../include/widgets.php:135 ../../include/widgets.php:175 #: ../../include/Contact.php:107 ../../mod/directory.php:183 #: ../../mod/dirprofile.php:164 ../../mod/suggest.php:51 @@ -538,14 +538,14 @@ msgid "Expires YYYY-MM-DD HH:MM" msgstr "" #: ../../include/conversation.php:1114 ../../include/page_widgets.php:40 -#: ../../include/ItemObject.php:608 ../../mod/photos.php:990 +#: ../../include/ItemObject.php:608 ../../mod/photos.php:994 #: ../../mod/webpages.php:135 ../../mod/editblock.php:141 #: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 #: ../../mod/editwebpage.php:174 msgid "Preview" msgstr "" -#: ../../include/conversation.php:1128 ../../mod/photos.php:969 +#: ../../include/conversation.php:1128 ../../mod/photos.php:973 #: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 #: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 msgid "Share" @@ -675,8 +675,8 @@ msgstr "" msgid "OK" msgstr "" -#: ../../include/conversation.php:1182 ../../mod/settings.php:519 -#: ../../mod/settings.php:545 ../../mod/events.php:568 +#: ../../include/conversation.php:1182 ../../mod/settings.php:550 +#: ../../mod/settings.php:576 ../../mod/events.php:568 #: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" @@ -832,7 +832,7 @@ msgid "Finishes:" msgstr "" #: ../../include/event.php:40 ../../include/bb2diaspora.php:485 -#: ../../include/identity.php:886 ../../mod/events.php:579 +#: ../../include/identity.php:891 ../../mod/events.php:579 #: ../../mod/directory.php:156 ../../mod/dirprofile.php:105 msgid "Location:" msgstr "" @@ -1009,10 +1009,110 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:241 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:247 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:250 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:250 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:251 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:251 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:252 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:252 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:253 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:253 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:254 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:254 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:255 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:255 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:256 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:256 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:265 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:470 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:471 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + #: ../../include/bb2diaspora.php:384 msgid "Attachments:" msgstr "" +#: ../../include/bb2diaspora.php:465 +msgid "Redmatrix event notification:" +msgstr "" + +#: ../../include/zot.php:661 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:677 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:1791 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + #: ../../include/auth.php:116 msgid "Logged out." msgstr "" @@ -1064,8 +1164,8 @@ msgstr "" msgid "%1$s used of %2$s (%3$s%)" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:520 -#: ../../mod/settings.php:546 ../../mod/admin.php:868 +#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:551 +#: ../../mod/settings.php:577 ../../mod/admin.php:868 msgid "Name" msgstr "" @@ -1098,8 +1198,8 @@ msgstr "" msgid "Upload file" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:728 -#: ../../mod/photos.php:1237 ../../mod/profile_photo.php:361 +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:736 +#: ../../mod/photos.php:1241 ../../mod/profile_photo.php:361 msgid "Upload" msgstr "" @@ -1149,7 +1249,7 @@ msgid "RSS/Atom" msgstr "" #: ../../include/contact_selectors.php:79 ../../mod/admin.php:728 -#: ../../mod/admin.php:737 ../../boot.php:1498 +#: ../../mod/admin.php:737 ../../boot.php:1515 msgid "Email" msgstr "" @@ -1239,7 +1339,8 @@ msgstr "" msgid "Everything" msgstr "" -#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29 +#: ../../include/contact_widgets.php:93 ../../include/taxonomy.php:230 +#: ../../include/widgets.php:29 msgid "Categories" msgstr "" @@ -1402,44 +1503,44 @@ msgstr "" msgid "Tags" msgstr "" -#: ../../include/taxonomy.php:227 +#: ../../include/taxonomy.php:249 msgid "Keywords" msgstr "" -#: ../../include/taxonomy.php:252 +#: ../../include/taxonomy.php:274 msgid "have" msgstr "" -#: ../../include/taxonomy.php:252 +#: ../../include/taxonomy.php:274 msgid "has" msgstr "" -#: ../../include/taxonomy.php:253 +#: ../../include/taxonomy.php:275 msgid "want" msgstr "" -#: ../../include/taxonomy.php:253 +#: ../../include/taxonomy.php:275 msgid "wants" msgstr "" -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:221 +#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 msgid "like" msgstr "" -#: ../../include/taxonomy.php:254 +#: ../../include/taxonomy.php:276 msgid "likes" msgstr "" -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:222 +#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 msgid "dislike" msgstr "" -#: ../../include/taxonomy.php:255 +#: ../../include/taxonomy.php:277 msgid "dislikes" msgstr "" -#: ../../include/taxonomy.php:338 ../../include/identity.php:1141 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1019 +#: ../../include/taxonomy.php:360 ../../include/identity.php:1146 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1023 msgctxt "noun" msgid "Like" msgid_plural "Likes" @@ -1663,7 +1764,7 @@ msgstr "" #: ../../include/items.php:377 ../../mod/profperm.php:23 #: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 -#: ../../index.php:400 +#: ../../index.php:389 msgid "Permission denied" msgstr "" @@ -1711,25 +1812,25 @@ msgstr "" msgid "Item not found." msgstr "" -#: ../../include/items.php:4391 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../include/items.php:4394 ../../mod/group.php:38 ../../mod/group.php:140 msgid "Collection not found." msgstr "" -#: ../../include/items.php:4406 +#: ../../include/items.php:4409 msgid "Collection is empty." msgstr "" -#: ../../include/items.php:4413 +#: ../../include/items.php:4416 #, php-format msgid "Collection: %s" msgstr "" -#: ../../include/items.php:4424 +#: ../../include/items.php:4427 #, php-format msgid "Connection: %s" msgstr "" -#: ../../include/items.php:4427 +#: ../../include/items.php:4430 msgid "Connection not found." msgstr "" @@ -2155,7 +2256,7 @@ msgstr "" msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:49 ../../include/widgets.php:513 +#: ../../include/features.php:49 ../../include/widgets.php:537 #: ../../mod/sources.php:88 msgid "Channel Sources" msgstr "" @@ -2297,27 +2398,27 @@ msgstr "" msgid "Channel location missing." msgstr "" -#: ../../include/follow.php:86 +#: ../../include/follow.php:82 msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/follow.php:103 +#: ../../include/follow.php:99 msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/follow.php:139 ../../include/follow.php:208 +#: ../../include/follow.php:135 ../../include/follow.php:202 msgid "Protocol disabled." msgstr "" -#: ../../include/follow.php:182 +#: ../../include/follow.php:176 msgid "Channel discovery failed." msgstr "" -#: ../../include/follow.php:198 +#: ../../include/follow.php:192 msgid "local account not found." msgstr "" -#: ../../include/follow.php:225 +#: ../../include/follow.php:220 msgid "Cannot connect to yourself." msgstr "" @@ -2360,7 +2461,7 @@ msgstr "" msgid "add" msgstr "" -#: ../../include/identity.php:31 ../../mod/item.php:1358 +#: ../../include/identity.php:31 ../../mod/item.php:1361 msgid "Unable to obtain identity information from database" msgstr "" @@ -2397,214 +2498,214 @@ msgstr "" msgid "Default Profile" msgstr "" -#: ../../include/identity.php:382 ../../include/identity.php:383 -#: ../../include/identity.php:390 ../../include/widgets.php:407 +#: ../../include/identity.php:387 ../../include/identity.php:388 +#: ../../include/identity.php:395 ../../include/widgets.php:431 #: ../../include/profile_selectors.php:80 ../../mod/settings.php:304 #: ../../mod/settings.php:308 ../../mod/settings.php:309 #: ../../mod/settings.php:312 ../../mod/settings.php:323 -#: ../../mod/connedit.php:501 +#: ../../mod/connedit.php:509 msgid "Friends" msgstr "" -#: ../../include/identity.php:638 +#: ../../include/identity.php:643 msgid "Requested channel is not available." msgstr "" -#: ../../include/identity.php:686 ../../mod/achievements.php:11 +#: ../../include/identity.php:691 ../../mod/achievements.php:11 #: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 #: ../../mod/webpages.php:8 ../../mod/filestorage.php:48 #: ../../mod/layouts.php:8 ../../mod/hcard.php:8 msgid "Requested profile is not available." msgstr "" -#: ../../include/identity.php:849 ../../mod/profiles.php:722 +#: ../../include/identity.php:854 ../../mod/profiles.php:722 msgid "Change profile photo" msgstr "" -#: ../../include/identity.php:855 +#: ../../include/identity.php:860 msgid "Profiles" msgstr "" -#: ../../include/identity.php:855 +#: ../../include/identity.php:860 msgid "Manage/edit profiles" msgstr "" -#: ../../include/identity.php:856 ../../mod/profiles.php:723 +#: ../../include/identity.php:861 ../../mod/profiles.php:723 msgid "Create New Profile" msgstr "" -#: ../../include/identity.php:859 ../../include/nav.php:103 +#: ../../include/identity.php:864 ../../include/nav.php:103 msgid "Edit Profile" msgstr "" -#: ../../include/identity.php:870 ../../mod/profiles.php:734 +#: ../../include/identity.php:875 ../../mod/profiles.php:734 msgid "Profile Image" msgstr "" -#: ../../include/identity.php:873 +#: ../../include/identity.php:878 msgid "visible to everybody" msgstr "" -#: ../../include/identity.php:874 ../../mod/profiles.php:617 +#: ../../include/identity.php:879 ../../mod/profiles.php:617 #: ../../mod/profiles.php:738 msgid "Edit visibility" msgstr "" -#: ../../include/identity.php:888 ../../include/identity.php:1125 +#: ../../include/identity.php:893 ../../include/identity.php:1130 #: ../../mod/directory.php:158 msgid "Gender:" msgstr "" -#: ../../include/identity.php:889 ../../include/identity.php:1169 +#: ../../include/identity.php:894 ../../include/identity.php:1174 #: ../../mod/directory.php:160 msgid "Status:" msgstr "" -#: ../../include/identity.php:890 ../../include/identity.php:1180 +#: ../../include/identity.php:895 ../../include/identity.php:1185 #: ../../mod/directory.php:162 msgid "Homepage:" msgstr "" -#: ../../include/identity.php:891 ../../mod/dirprofile.php:151 +#: ../../include/identity.php:896 ../../mod/dirprofile.php:151 msgid "Online Now" msgstr "" -#: ../../include/identity.php:969 ../../include/identity.php:1049 -#: ../../mod/ping.php:298 +#: ../../include/identity.php:974 ../../include/identity.php:1054 +#: ../../mod/ping.php:316 msgid "g A l F d" msgstr "" -#: ../../include/identity.php:970 ../../include/identity.php:1050 +#: ../../include/identity.php:975 ../../include/identity.php:1055 msgid "F d" msgstr "" -#: ../../include/identity.php:1015 ../../include/identity.php:1090 -#: ../../mod/ping.php:320 +#: ../../include/identity.php:1020 ../../include/identity.php:1095 +#: ../../mod/ping.php:338 msgid "[today]" msgstr "" -#: ../../include/identity.php:1027 +#: ../../include/identity.php:1032 msgid "Birthday Reminders" msgstr "" -#: ../../include/identity.php:1028 +#: ../../include/identity.php:1033 msgid "Birthdays this week:" msgstr "" -#: ../../include/identity.php:1083 +#: ../../include/identity.php:1088 msgid "[No description]" msgstr "" -#: ../../include/identity.php:1101 +#: ../../include/identity.php:1106 msgid "Event Reminders" msgstr "" -#: ../../include/identity.php:1102 +#: ../../include/identity.php:1107 msgid "Events this week:" msgstr "" -#: ../../include/identity.php:1123 ../../mod/settings.php:947 +#: ../../include/identity.php:1128 ../../mod/settings.php:984 msgid "Full Name:" msgstr "" -#: ../../include/identity.php:1130 +#: ../../include/identity.php:1135 msgid "Like this channel" msgstr "" -#: ../../include/identity.php:1154 +#: ../../include/identity.php:1159 msgid "j F, Y" msgstr "" -#: ../../include/identity.php:1155 +#: ../../include/identity.php:1160 msgid "j F" msgstr "" -#: ../../include/identity.php:1162 +#: ../../include/identity.php:1167 msgid "Birthday:" msgstr "" -#: ../../include/identity.php:1166 +#: ../../include/identity.php:1171 msgid "Age:" msgstr "" -#: ../../include/identity.php:1175 +#: ../../include/identity.php:1180 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/identity.php:1178 ../../mod/profiles.php:639 +#: ../../include/identity.php:1183 ../../mod/profiles.php:639 msgid "Sexual Preference:" msgstr "" -#: ../../include/identity.php:1182 ../../mod/profiles.php:641 +#: ../../include/identity.php:1187 ../../mod/profiles.php:641 msgid "Hometown:" msgstr "" -#: ../../include/identity.php:1184 +#: ../../include/identity.php:1189 msgid "Tags:" msgstr "" -#: ../../include/identity.php:1186 ../../mod/profiles.php:642 +#: ../../include/identity.php:1191 ../../mod/profiles.php:642 msgid "Political Views:" msgstr "" -#: ../../include/identity.php:1188 +#: ../../include/identity.php:1193 msgid "Religion:" msgstr "" -#: ../../include/identity.php:1190 ../../mod/directory.php:164 +#: ../../include/identity.php:1195 ../../mod/directory.php:164 msgid "About:" msgstr "" -#: ../../include/identity.php:1192 +#: ../../include/identity.php:1197 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/identity.php:1194 ../../mod/profiles.php:645 +#: ../../include/identity.php:1199 ../../mod/profiles.php:645 msgid "Likes:" msgstr "" -#: ../../include/identity.php:1196 ../../mod/profiles.php:646 +#: ../../include/identity.php:1201 ../../mod/profiles.php:646 msgid "Dislikes:" msgstr "" -#: ../../include/identity.php:1199 +#: ../../include/identity.php:1204 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/identity.php:1201 +#: ../../include/identity.php:1206 msgid "My other channels:" msgstr "" -#: ../../include/identity.php:1203 +#: ../../include/identity.php:1208 msgid "Musical interests:" msgstr "" -#: ../../include/identity.php:1205 +#: ../../include/identity.php:1210 msgid "Books, literature:" msgstr "" -#: ../../include/identity.php:1207 +#: ../../include/identity.php:1212 msgid "Television:" msgstr "" -#: ../../include/identity.php:1209 +#: ../../include/identity.php:1214 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/identity.php:1211 +#: ../../include/identity.php:1216 msgid "Love/Romance:" msgstr "" -#: ../../include/identity.php:1213 +#: ../../include/identity.php:1218 msgid "Work/employment:" msgstr "" -#: ../../include/identity.php:1215 +#: ../../include/identity.php:1220 msgid "School/education:" msgstr "" -#: ../../include/identity.php:1235 +#: ../../include/identity.php:1240 msgid "Like this thing" msgstr "" @@ -2662,100 +2763,100 @@ msgstr "" msgid "Remove term" msgstr "" -#: ../../include/widgets.php:342 +#: ../../include/widgets.php:352 msgid "Archives" msgstr "" -#: ../../include/widgets.php:404 +#: ../../include/widgets.php:428 msgid "Refresh" msgstr "" -#: ../../include/widgets.php:405 ../../mod/connedit.php:498 +#: ../../include/widgets.php:429 ../../mod/connedit.php:506 msgid "Me" msgstr "" -#: ../../include/widgets.php:406 ../../mod/connedit.php:500 +#: ../../include/widgets.php:430 ../../mod/connedit.php:508 msgid "Best Friends" msgstr "" -#: ../../include/widgets.php:408 +#: ../../include/widgets.php:432 msgid "Co-workers" msgstr "" -#: ../../include/widgets.php:409 ../../mod/connedit.php:502 +#: ../../include/widgets.php:433 ../../mod/connedit.php:510 msgid "Former Friends" msgstr "" -#: ../../include/widgets.php:410 ../../mod/connedit.php:503 +#: ../../include/widgets.php:434 ../../mod/connedit.php:511 msgid "Acquaintances" msgstr "" -#: ../../include/widgets.php:411 +#: ../../include/widgets.php:435 msgid "Everybody" msgstr "" -#: ../../include/widgets.php:445 +#: ../../include/widgets.php:469 msgid "Account settings" msgstr "" -#: ../../include/widgets.php:451 +#: ../../include/widgets.php:475 msgid "Channel settings" msgstr "" -#: ../../include/widgets.php:457 +#: ../../include/widgets.php:481 msgid "Additional features" msgstr "" -#: ../../include/widgets.php:463 +#: ../../include/widgets.php:487 msgid "Feature settings" msgstr "" -#: ../../include/widgets.php:469 +#: ../../include/widgets.php:493 msgid "Display settings" msgstr "" -#: ../../include/widgets.php:475 +#: ../../include/widgets.php:499 msgid "Connected apps" msgstr "" -#: ../../include/widgets.php:481 +#: ../../include/widgets.php:505 msgid "Export channel" msgstr "" -#: ../../include/widgets.php:487 +#: ../../include/widgets.php:511 msgid "Export content" msgstr "" -#: ../../include/widgets.php:496 -msgid "Automatic Permissions (Advanced)" +#: ../../include/widgets.php:520 ../../mod/connedit.php:538 +msgid "Connection Default Permissions" msgstr "" -#: ../../include/widgets.php:504 +#: ../../include/widgets.php:528 msgid "Premium Channel Settings" msgstr "" -#: ../../include/widgets.php:538 ../../mod/mail.php:124 +#: ../../include/widgets.php:562 ../../mod/mail.php:124 #: ../../mod/message.php:31 msgid "Messages" msgstr "" -#: ../../include/widgets.php:543 +#: ../../include/widgets.php:567 msgid "Check Mail" msgstr "" -#: ../../include/widgets.php:548 ../../include/nav.php:209 +#: ../../include/widgets.php:572 ../../include/nav.php:209 msgid "New Message" msgstr "" -#: ../../include/widgets.php:624 +#: ../../include/widgets.php:648 msgid "Chat Rooms" msgstr "" -#: ../../include/widgets.php:642 +#: ../../include/widgets.php:666 msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/widgets.php:660 +#: ../../include/widgets.php:684 msgid "Suggested Chatrooms" msgstr "" @@ -2772,89 +2873,6 @@ msgstr "" msgid "User '%s' deleted" msgstr "" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: ../../include/datetime.php:238 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:247 -msgid "year" -msgstr "" - -#: ../../include/datetime.php:247 -msgid "years" -msgstr "" - -#: ../../include/datetime.php:248 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:248 -msgid "months" -msgstr "" - -#: ../../include/datetime.php:249 -msgid "week" -msgstr "" - -#: ../../include/datetime.php:249 -msgid "weeks" -msgstr "" - -#: ../../include/datetime.php:250 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:250 -msgid "days" -msgstr "" - -#: ../../include/datetime.php:251 -msgid "hour" -msgstr "" - -#: ../../include/datetime.php:251 -msgid "hours" -msgstr "" - -#: ../../include/datetime.php:252 -msgid "minute" -msgstr "" - -#: ../../include/datetime.php:252 -msgid "minutes" -msgstr "" - -#: ../../include/datetime.php:253 -msgid "second" -msgstr "" - -#: ../../include/datetime.php:253 -msgid "seconds" -msgstr "" - -#: ../../include/datetime.php:262 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:467 -#, php-format -msgid "%1$s's birthday" -msgstr "" - -#: ../../include/datetime.php:468 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "" - #: ../../include/message.php:18 msgid "No recipient provided." msgstr "" @@ -2871,7 +2889,7 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1495 +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1512 msgid "Logout" msgstr "" @@ -2944,7 +2962,7 @@ msgstr "" msgid "Home Page" msgstr "" -#: ../../include/nav.php:163 ../../mod/register.php:220 ../../boot.php:1472 +#: ../../include/nav.php:163 ../../mod/register.php:220 ../../boot.php:1489 msgid "Register" msgstr "" @@ -3060,19 +3078,6 @@ msgstr "" msgid "view full size" msgstr "" -#: ../../include/zot.php:661 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:677 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:1776 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - #: ../../include/acl_selectors.php:240 msgid "Visible to your default audience" msgstr "" @@ -3085,14 +3090,14 @@ msgstr "" msgid "Don't show" msgstr "" -#: ../../include/acl_selectors.php:248 ../../mod/photos.php:591 -#: ../../mod/photos.php:945 ../../mod/events.php:585 ../../mod/chat.php:209 +#: ../../include/acl_selectors.php:248 ../../mod/photos.php:589 +#: ../../mod/photos.php:948 ../../mod/events.php:585 ../../mod/chat.php:209 #: ../../mod/filestorage.php:137 msgid "Permissions" msgstr "" #: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 -#: ../../mod/photos.php:1141 +#: ../../mod/photos.php:1145 msgid "Close" msgstr "" @@ -3126,7 +3131,7 @@ msgid "Delete this item?" msgstr "" #: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 -#: ../../mod/photos.php:988 ../../mod/photos.php:1098 +#: ../../mod/photos.php:992 ../../mod/photos.php:1102 msgid "Comment" msgstr "" @@ -3492,11 +3497,11 @@ msgid "Save to Folder" msgstr "" #: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1015 ../../mod/photos.php:1027 +#: ../../mod/photos.php:1019 ../../mod/photos.php:1031 msgid "View all" msgstr "" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1024 +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1028 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -3523,11 +3528,11 @@ msgstr "" msgid "Add Tag" msgstr "" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:967 +#: ../../include/ItemObject.php:221 ../../mod/photos.php:971 msgid "I like this (toggle)" msgstr "" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:968 +#: ../../include/ItemObject.php:222 ../../mod/photos.php:972 msgid "I don't like this (toggle)" msgstr "" @@ -3568,12 +3573,12 @@ msgstr "" msgid "Add to Calendar" msgstr "" -#: ../../include/ItemObject.php:299 ../../mod/photos.php:1135 +#: ../../include/ItemObject.php:299 ../../mod/photos.php:1139 msgctxt "noun" msgid "Likes" msgstr "" -#: ../../include/ItemObject.php:300 ../../mod/photos.php:1136 +#: ../../include/ItemObject.php:300 ../../mod/photos.php:1140 msgctxt "noun" msgid "Dislikes" msgstr "" @@ -3585,28 +3590,28 @@ msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:596 ../../mod/photos.php:986 -#: ../../mod/photos.php:1096 +#: ../../include/ItemObject.php:596 ../../mod/photos.php:990 +#: ../../mod/photos.php:1100 msgid "This is you" msgstr "" #: ../../include/ItemObject.php:599 ../../mod/mood.php:135 -#: ../../mod/photos.php:547 ../../mod/photos.php:661 ../../mod/photos.php:949 -#: ../../mod/photos.php:989 ../../mod/photos.php:1099 -#: ../../mod/settings.php:518 ../../mod/settings.php:630 -#: ../../mod/settings.php:659 ../../mod/settings.php:683 -#: ../../mod/settings.php:759 ../../mod/settings.php:939 +#: ../../mod/photos.php:595 ../../mod/photos.php:669 ../../mod/photos.php:953 +#: ../../mod/photos.php:993 ../../mod/photos.php:1103 +#: ../../mod/settings.php:549 ../../mod/settings.php:661 +#: ../../mod/settings.php:690 ../../mod/settings.php:714 +#: ../../mod/settings.php:790 ../../mod/settings.php:976 #: ../../mod/poke.php:166 ../../mod/profiles.php:615 ../../mod/events.php:587 #: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/connect.php:92 -#: ../../mod/connedit.php:546 ../../mod/setup.php:307 ../../mod/setup.php:350 +#: ../../mod/connedit.php:555 ../../mod/setup.php:307 ../../mod/setup.php:350 #: ../../mod/pdledit.php:58 ../../mod/sources.php:104 #: ../../mod/sources.php:138 ../../mod/filestorage.php:146 #: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:414 #: ../../mod/admin.php:725 ../../mod/admin.php:861 ../../mod/admin.php:994 #: ../../mod/admin.php:1193 ../../mod/admin.php:1280 ../../mod/thing.php:284 #: ../../mod/thing.php:327 ../../mod/import.php:480 ../../mod/invite.php:142 -#: ../../mod/mail.php:348 ../../mod/appman.php:99 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 +#: ../../mod/locs.php:99 ../../mod/mail.php:348 ../../mod/appman.php:99 +#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256 #: ../../view/theme/blogga/php/config.php:67 #: ../../view/theme/blogga/view/theme/blog/config.php:67 #: ../../view/theme/redbasic/php/config.php:99 @@ -3657,84 +3662,84 @@ msgstr "" msgid "Album not found." msgstr "" -#: ../../mod/photos.php:119 ../../mod/photos.php:662 +#: ../../mod/photos.php:119 ../../mod/photos.php:670 msgid "Delete Album" msgstr "" -#: ../../mod/photos.php:159 ../../mod/photos.php:950 +#: ../../mod/photos.php:159 ../../mod/photos.php:954 msgid "Delete Photo" msgstr "" -#: ../../mod/photos.php:451 ../../mod/search.php:13 ../../mod/directory.php:15 +#: ../../mod/photos.php:459 ../../mod/search.php:13 ../../mod/directory.php:15 #: ../../mod/dirprofile.php:9 ../../mod/display.php:9 #: ../../mod/viewconnections.php:17 msgid "Public access denied." msgstr "" -#: ../../mod/photos.php:461 +#: ../../mod/photos.php:470 msgid "No photos selected" msgstr "" -#: ../../mod/photos.php:507 +#: ../../mod/photos.php:514 msgid "Access to this item is restricted." msgstr "" -#: ../../mod/photos.php:558 +#: ../../mod/photos.php:553 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../mod/photos.php:561 +#: ../../mod/photos.php:556 #, php-format msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../mod/photos.php:583 +#: ../../mod/photos.php:580 msgid "Upload Photos" msgstr "" -#: ../../mod/photos.php:587 -msgid "Enter a new album name or select an existing one:" +#: ../../mod/photos.php:584 ../../mod/photos.php:663 ../../mod/photos.php:941 +msgid "Enter a new album name" +msgstr "" + +#: ../../mod/photos.php:585 ../../mod/photos.php:664 ../../mod/photos.php:942 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../mod/photos.php:588 +#: ../../mod/photos.php:586 msgid "Do not show a status post for this upload" msgstr "" -#: ../../mod/photos.php:609 +#: ../../mod/photos.php:614 msgid "Album name could not be decoded" msgstr "" -#: ../../mod/photos.php:645 ../../mod/photos.php:1159 -#: ../../mod/photos.php:1174 +#: ../../mod/photos.php:652 ../../mod/photos.php:1163 +#: ../../mod/photos.php:1178 msgid "Contact Photos" msgstr "" -#: ../../mod/photos.php:656 -msgid "New album name: " -msgstr "" - -#: ../../mod/photos.php:668 +#: ../../mod/photos.php:676 msgid "Show Newest First" msgstr "" -#: ../../mod/photos.php:670 +#: ../../mod/photos.php:678 msgid "Show Oldest First" msgstr "" -#: ../../mod/photos.php:697 ../../mod/photos.php:1206 +#: ../../mod/photos.php:705 ../../mod/photos.php:1210 msgid "View Photo" msgstr "" -#: ../../mod/photos.php:726 +#: ../../mod/photos.php:734 msgid "Edit Album" msgstr "" -#: ../../mod/photos.php:777 +#: ../../mod/photos.php:779 msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/photos.php:779 +#: ../../mod/photos.php:781 msgid "Photo not available" msgstr "" @@ -3762,43 +3767,43 @@ msgstr "" msgid "Remove" msgstr "" -#: ../../mod/photos.php:933 +#: ../../mod/photos.php:935 msgid "Edit photo" msgstr "" -#: ../../mod/photos.php:935 +#: ../../mod/photos.php:937 msgid "Rotate CW (right)" msgstr "" -#: ../../mod/photos.php:936 +#: ../../mod/photos.php:938 msgid "Rotate CCW (left)" msgstr "" -#: ../../mod/photos.php:939 -msgid "New album name" -msgstr "" - -#: ../../mod/photos.php:942 +#: ../../mod/photos.php:945 msgid "Caption" msgstr "" -#: ../../mod/photos.php:944 +#: ../../mod/photos.php:947 msgid "Add a Tag" msgstr "" -#: ../../mod/photos.php:947 +#: ../../mod/photos.php:950 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../mod/photos.php:1125 +#: ../../mod/photos.php:952 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../mod/photos.php:1129 msgid "In This Photo:" msgstr "" -#: ../../mod/photos.php:1212 +#: ../../mod/photos.php:1216 msgid "View Album" msgstr "" -#: ../../mod/photos.php:1235 +#: ../../mod/photos.php:1239 msgid "Recent Photos" msgstr "" @@ -3871,7 +3876,7 @@ msgstr "" msgid "Menu Item Permissions" msgstr "" -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:974 +#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:1011 msgid "(click to open/close)" msgstr "" @@ -3923,15 +3928,15 @@ msgstr "" msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../mod/ping.php:237 +#: ../../mod/ping.php:255 msgid "sent you a private message" msgstr "" -#: ../../mod/ping.php:288 +#: ../../mod/ping.php:306 msgid "added your channel" msgstr "" -#: ../../mod/ping.php:329 +#: ../../mod/ping.php:347 msgid "posted an event" msgstr "" @@ -3975,438 +3980,503 @@ msgstr "" msgid "System failure storing new email. Please try again." msgstr "" -#: ../../mod/settings.php:448 +#: ../../mod/settings.php:479 msgid "Settings updated." msgstr "" -#: ../../mod/settings.php:517 ../../mod/settings.php:543 -#: ../../mod/settings.php:579 +#: ../../mod/settings.php:548 ../../mod/settings.php:574 +#: ../../mod/settings.php:610 msgid "Add application" msgstr "" -#: ../../mod/settings.php:520 +#: ../../mod/settings.php:551 msgid "Name of application" msgstr "" -#: ../../mod/settings.php:521 ../../mod/settings.php:547 +#: ../../mod/settings.php:552 ../../mod/settings.php:578 msgid "Consumer Key" msgstr "" -#: ../../mod/settings.php:521 ../../mod/settings.php:522 +#: ../../mod/settings.php:552 ../../mod/settings.php:553 msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../mod/settings.php:522 ../../mod/settings.php:548 +#: ../../mod/settings.php:553 ../../mod/settings.php:579 msgid "Consumer Secret" msgstr "" -#: ../../mod/settings.php:523 ../../mod/settings.php:549 +#: ../../mod/settings.php:554 ../../mod/settings.php:580 msgid "Redirect" msgstr "" -#: ../../mod/settings.php:523 +#: ../../mod/settings.php:554 msgid "" "Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../mod/settings.php:524 ../../mod/settings.php:550 +#: ../../mod/settings.php:555 ../../mod/settings.php:581 msgid "Icon url" msgstr "" -#: ../../mod/settings.php:524 +#: ../../mod/settings.php:555 msgid "Optional" msgstr "" -#: ../../mod/settings.php:535 +#: ../../mod/settings.php:566 msgid "You can't edit this application." msgstr "" -#: ../../mod/settings.php:578 +#: ../../mod/settings.php:609 msgid "Connected Apps" msgstr "" -#: ../../mod/settings.php:582 +#: ../../mod/settings.php:613 msgid "Client key starts with" msgstr "" -#: ../../mod/settings.php:583 +#: ../../mod/settings.php:614 msgid "No name" msgstr "" -#: ../../mod/settings.php:584 +#: ../../mod/settings.php:615 msgid "Remove authorization" msgstr "" -#: ../../mod/settings.php:595 +#: ../../mod/settings.php:626 msgid "No feature settings configured" msgstr "" -#: ../../mod/settings.php:603 +#: ../../mod/settings.php:634 msgid "Feature Settings" msgstr "" -#: ../../mod/settings.php:626 +#: ../../mod/settings.php:657 msgid "Account Settings" msgstr "" -#: ../../mod/settings.php:627 +#: ../../mod/settings.php:658 msgid "Password Settings" msgstr "" -#: ../../mod/settings.php:628 +#: ../../mod/settings.php:659 msgid "New Password:" msgstr "" -#: ../../mod/settings.php:629 +#: ../../mod/settings.php:660 msgid "Confirm:" msgstr "" -#: ../../mod/settings.php:629 +#: ../../mod/settings.php:660 msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/settings.php:631 ../../mod/settings.php:948 +#: ../../mod/settings.php:662 ../../mod/settings.php:985 msgid "Email Address:" msgstr "" -#: ../../mod/settings.php:632 ../../mod/removeaccount.php:61 +#: ../../mod/settings.php:663 ../../mod/removeaccount.php:61 msgid "Remove Account" msgstr "" -#: ../../mod/settings.php:633 +#: ../../mod/settings.php:664 msgid "Remove this account from this server including all its channels" msgstr "" -#: ../../mod/settings.php:634 ../../mod/settings.php:1014 +#: ../../mod/settings.php:665 ../../mod/settings.php:1067 msgid "Warning: This action is permanent and cannot be reversed." msgstr "" -#: ../../mod/settings.php:650 +#: ../../mod/settings.php:681 msgid "Off" msgstr "" -#: ../../mod/settings.php:650 +#: ../../mod/settings.php:681 msgid "On" msgstr "" -#: ../../mod/settings.php:657 +#: ../../mod/settings.php:688 msgid "Additional Features" msgstr "" -#: ../../mod/settings.php:682 +#: ../../mod/settings.php:713 msgid "Connector Settings" msgstr "" -#: ../../mod/settings.php:712 ../../mod/admin.php:362 +#: ../../mod/settings.php:743 ../../mod/admin.php:362 msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/settings.php:721 +#: ../../mod/settings.php:752 #, php-format msgid "%s - (Experimental)" msgstr "" -#: ../../mod/settings.php:757 +#: ../../mod/settings.php:788 msgid "Display Settings" msgstr "" -#: ../../mod/settings.php:763 +#: ../../mod/settings.php:794 msgid "Display Theme:" msgstr "" -#: ../../mod/settings.php:764 +#: ../../mod/settings.php:795 msgid "Mobile Theme:" msgstr "" -#: ../../mod/settings.php:765 +#: ../../mod/settings.php:796 msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../mod/settings.php:766 +#: ../../mod/settings.php:797 msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/settings.php:766 +#: ../../mod/settings.php:797 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:798 msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:798 msgid "Maximum of 100 items" msgstr "" -#: ../../mod/settings.php:768 +#: ../../mod/settings.php:799 msgid "Don't show emoticons" msgstr "" -#: ../../mod/settings.php:769 +#: ../../mod/settings.php:800 msgid "Link post titles to source" msgstr "" -#: ../../mod/settings.php:770 +#: ../../mod/settings.php:801 msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../mod/settings.php:804 +#: ../../mod/settings.php:835 msgid "Nobody except yourself" msgstr "" -#: ../../mod/settings.php:805 +#: ../../mod/settings.php:836 msgid "Only those you specifically allow" msgstr "" -#: ../../mod/settings.php:806 +#: ../../mod/settings.php:837 msgid "Approved connections" msgstr "" -#: ../../mod/settings.php:807 +#: ../../mod/settings.php:838 msgid "Any connections" msgstr "" -#: ../../mod/settings.php:808 +#: ../../mod/settings.php:839 msgid "Anybody on this website" msgstr "" -#: ../../mod/settings.php:809 +#: ../../mod/settings.php:840 msgid "Anybody in this network" msgstr "" -#: ../../mod/settings.php:810 +#: ../../mod/settings.php:841 msgid "Anybody authenticated" msgstr "" -#: ../../mod/settings.php:811 +#: ../../mod/settings.php:842 msgid "Anybody on the internet" msgstr "" -#: ../../mod/settings.php:885 +#: ../../mod/settings.php:916 msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/settings.php:885 ../../mod/settings.php:890 -#: ../../mod/settings.php:967 ../../mod/api.php:106 ../../mod/profiles.php:574 -#: ../../mod/admin.php:392 +#: ../../mod/settings.php:916 ../../mod/settings.php:921 +#: ../../mod/settings.php:1004 ../../mod/api.php:106 +#: ../../mod/profiles.php:574 ../../mod/admin.php:392 msgid "No" msgstr "" -#: ../../mod/settings.php:885 ../../mod/settings.php:890 -#: ../../mod/settings.php:967 ../../mod/api.php:105 ../../mod/profiles.php:573 -#: ../../mod/admin.php:394 +#: ../../mod/settings.php:916 ../../mod/settings.php:921 +#: ../../mod/settings.php:1004 ../../mod/api.php:105 +#: ../../mod/profiles.php:573 ../../mod/admin.php:394 msgid "Yes" msgstr "" -#: ../../mod/settings.php:890 +#: ../../mod/settings.php:921 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:894 ../../mod/profile_photo.php:365 +#: ../../mod/settings.php:925 ../../mod/profile_photo.php:365 msgid "or" msgstr "" -#: ../../mod/settings.php:899 +#: ../../mod/settings.php:930 msgid "Your channel address is" msgstr "" -#: ../../mod/settings.php:937 +#: ../../mod/settings.php:974 msgid "Channel Settings" msgstr "" -#: ../../mod/settings.php:946 +#: ../../mod/settings.php:983 msgid "Basic Settings" msgstr "" -#: ../../mod/settings.php:949 +#: ../../mod/settings.php:986 msgid "Your Timezone:" msgstr "" -#: ../../mod/settings.php:950 +#: ../../mod/settings.php:987 msgid "Default Post Location:" msgstr "" -#: ../../mod/settings.php:950 +#: ../../mod/settings.php:987 msgid "Geographical location to display on your posts" msgstr "" -#: ../../mod/settings.php:951 +#: ../../mod/settings.php:988 msgid "Use Browser Location:" msgstr "" -#: ../../mod/settings.php:953 +#: ../../mod/settings.php:990 msgid "Adult Content" msgstr "" -#: ../../mod/settings.php:953 +#: ../../mod/settings.php:990 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:992 msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/settings.php:957 +#: ../../mod/settings.php:994 msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:996 msgid "Hide my online presence" msgstr "" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:996 msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../mod/settings.php:961 +#: ../../mod/settings.php:998 msgid "Simple Privacy Settings:" msgstr "" -#: ../../mod/settings.php:962 +#: ../../mod/settings.php:999 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/settings.php:963 +#: ../../mod/settings.php:1000 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "" -#: ../../mod/settings.php:964 +#: ../../mod/settings.php:1001 msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/settings.php:965 +#: ../../mod/settings.php:1002 msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:1004 msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:1004 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/settings.php:969 +#: ../../mod/settings.php:1006 msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:1008 msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:1008 msgid "0 or blank prevents expiration" msgstr "" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:1009 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:1009 msgid "May reduce spam activity" msgstr "" -#: ../../mod/settings.php:973 +#: ../../mod/settings.php:1010 msgid "Default Post Permissions" msgstr "" -#: ../../mod/settings.php:978 +#: ../../mod/settings.php:1015 msgid "Channel permissions category:" msgstr "" -#: ../../mod/settings.php:986 +#: ../../mod/settings.php:1023 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/settings.php:986 +#: ../../mod/settings.php:1023 msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/settings.php:989 +#: ../../mod/settings.php:1026 msgid "Notification Settings" msgstr "" -#: ../../mod/settings.php:990 +#: ../../mod/settings.php:1027 msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:991 +#: ../../mod/settings.php:1028 msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:992 +#: ../../mod/settings.php:1029 msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:993 +#: ../../mod/settings.php:1030 msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:994 +#: ../../mod/settings.php:1031 msgid "Send a notification email when:" msgstr "" -#: ../../mod/settings.php:995 +#: ../../mod/settings.php:1032 msgid "You receive a connection request" msgstr "" -#: ../../mod/settings.php:996 +#: ../../mod/settings.php:1033 msgid "Your connections are confirmed" msgstr "" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1034 msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:998 +#: ../../mod/settings.php:1035 msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:999 +#: ../../mod/settings.php:1036 msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:1000 +#: ../../mod/settings.php:1037 msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:1001 +#: ../../mod/settings.php:1038 msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:1002 +#: ../../mod/settings.php:1039 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:1005 +#: ../../mod/settings.php:1042 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../mod/settings.php:1044 +msgid "Unseen matrix activity" +msgstr "" + +#: ../../mod/settings.php:1045 +msgid "Unseen channel activity" +msgstr "" + +#: ../../mod/settings.php:1046 +msgid "Unseen private messages" +msgstr "" + +#: ../../mod/settings.php:1046 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 +msgid "Recommended" +msgstr "" + +#: ../../mod/settings.php:1047 +msgid "Upcoming events" +msgstr "" + +#: ../../mod/settings.php:1048 +msgid "Events today" +msgstr "" + +#: ../../mod/settings.php:1049 +msgid "Upcoming birthdays" +msgstr "" + +#: ../../mod/settings.php:1049 +msgid "Not available in all themes" +msgstr "" + +#: ../../mod/settings.php:1050 +msgid "System (personal) notifications" +msgstr "" + +#: ../../mod/settings.php:1051 +msgid "System info messages" +msgstr "" + +#: ../../mod/settings.php:1052 +msgid "System critical alerts" +msgstr "" + +#: ../../mod/settings.php:1053 +msgid "New connections" +msgstr "" + +#: ../../mod/settings.php:1054 +msgid "System Registrations" +msgstr "" + +#: ../../mod/settings.php:1056 +msgid "Notify me of events this many days in advance" +msgstr "" + +#: ../../mod/settings.php:1056 +msgid "Must be greater than 0" +msgstr "" + +#: ../../mod/settings.php:1058 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:1006 +#: ../../mod/settings.php:1059 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:1009 +#: ../../mod/settings.php:1062 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "" -#: ../../mod/settings.php:1010 +#: ../../mod/settings.php:1063 msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/settings.php:1012 +#: ../../mod/settings.php:1065 msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/settings.php:1013 +#: ../../mod/settings.php:1066 msgid "Remove this channel" msgstr "" @@ -4477,7 +4547,7 @@ msgid "Channel not found." msgstr "" #: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:252 +#: ../../mod/page.php:81 ../../index.php:241 msgid "Page not found." msgstr "" @@ -5201,15 +5271,15 @@ msgstr "" msgid "Could not access contact record." msgstr "" -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 +#: ../../mod/connections.php:51 ../../mod/connedit.php:86 msgid "Could not locate selected profile." msgstr "" -#: ../../mod/connections.php:94 ../../mod/connedit.php:132 +#: ../../mod/connections.php:94 ../../mod/connedit.php:140 msgid "Connection updated." msgstr "" -#: ../../mod/connections.php:96 ../../mod/connedit.php:134 +#: ../../mod/connections.php:96 ../../mod/connedit.php:142 msgid "Failed to update connection record." msgstr "" @@ -5294,314 +5364,311 @@ msgstr "" msgid "Edit post" msgstr "" -#: ../../mod/connedit.php:181 +#: ../../mod/connedit.php:189 msgid "is now connected to" msgstr "" -#: ../../mod/connedit.php:302 +#: ../../mod/connedit.php:310 msgid "Could not access address book record." msgstr "" -#: ../../mod/connedit.php:316 +#: ../../mod/connedit.php:324 msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../mod/connedit.php:323 +#: ../../mod/connedit.php:331 msgid "Channel has been unblocked" msgstr "" -#: ../../mod/connedit.php:324 +#: ../../mod/connedit.php:332 msgid "Channel has been blocked" msgstr "" -#: ../../mod/connedit.php:328 ../../mod/connedit.php:340 -#: ../../mod/connedit.php:352 ../../mod/connedit.php:364 -#: ../../mod/connedit.php:380 +#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 +#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 +#: ../../mod/connedit.php:388 msgid "Unable to set address book parameters." msgstr "" -#: ../../mod/connedit.php:335 +#: ../../mod/connedit.php:343 msgid "Channel has been unignored" msgstr "" -#: ../../mod/connedit.php:336 +#: ../../mod/connedit.php:344 msgid "Channel has been ignored" msgstr "" -#: ../../mod/connedit.php:347 +#: ../../mod/connedit.php:355 msgid "Channel has been unarchived" msgstr "" -#: ../../mod/connedit.php:348 +#: ../../mod/connedit.php:356 msgid "Channel has been archived" msgstr "" -#: ../../mod/connedit.php:359 +#: ../../mod/connedit.php:367 msgid "Channel has been unhidden" msgstr "" -#: ../../mod/connedit.php:360 +#: ../../mod/connedit.php:368 msgid "Channel has been hidden" msgstr "" -#: ../../mod/connedit.php:375 +#: ../../mod/connedit.php:383 msgid "Channel has been approved" msgstr "" -#: ../../mod/connedit.php:376 +#: ../../mod/connedit.php:384 msgid "Channel has been unapproved" msgstr "" -#: ../../mod/connedit.php:404 +#: ../../mod/connedit.php:412 msgid "Connection has been removed." msgstr "" -#: ../../mod/connedit.php:424 +#: ../../mod/connedit.php:432 #, php-format msgid "View %s's profile" msgstr "" -#: ../../mod/connedit.php:428 +#: ../../mod/connedit.php:436 msgid "Refresh Permissions" msgstr "" -#: ../../mod/connedit.php:431 +#: ../../mod/connedit.php:439 msgid "Fetch updated permissions" msgstr "" -#: ../../mod/connedit.php:435 +#: ../../mod/connedit.php:443 msgid "Recent Activity" msgstr "" -#: ../../mod/connedit.php:438 +#: ../../mod/connedit.php:446 msgid "View recent posts and comments" msgstr "" -#: ../../mod/connedit.php:442 ../../mod/connedit.php:585 +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 #: ../../mod/admin.php:734 msgid "Unblock" msgstr "" -#: ../../mod/connedit.php:442 ../../mod/connedit.php:585 +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 #: ../../mod/admin.php:733 msgid "Block" msgstr "" -#: ../../mod/connedit.php:445 +#: ../../mod/connedit.php:453 msgid "Block or Unblock this connection" msgstr "" -#: ../../mod/connedit.php:449 ../../mod/connedit.php:586 +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 msgid "Unignore" msgstr "" -#: ../../mod/connedit.php:449 ../../mod/connedit.php:586 +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 #: ../../mod/notifications.php:51 msgid "Ignore" msgstr "" -#: ../../mod/connedit.php:452 +#: ../../mod/connedit.php:460 msgid "Ignore or Unignore this connection" msgstr "" -#: ../../mod/connedit.php:455 +#: ../../mod/connedit.php:463 msgid "Unarchive" msgstr "" -#: ../../mod/connedit.php:455 +#: ../../mod/connedit.php:463 msgid "Archive" msgstr "" -#: ../../mod/connedit.php:458 +#: ../../mod/connedit.php:466 msgid "Archive or Unarchive this connection" msgstr "" -#: ../../mod/connedit.php:461 +#: ../../mod/connedit.php:469 msgid "Unhide" msgstr "" -#: ../../mod/connedit.php:461 +#: ../../mod/connedit.php:469 msgid "Hide" msgstr "" -#: ../../mod/connedit.php:464 +#: ../../mod/connedit.php:472 msgid "Hide or Unhide this connection" msgstr "" -#: ../../mod/connedit.php:471 +#: ../../mod/connedit.php:479 msgid "Delete this connection" msgstr "" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:543 +#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 msgid "Approve this connection" msgstr "" -#: ../../mod/connedit.php:514 +#: ../../mod/connedit.php:522 msgid "Accept connection to allow communication" msgstr "" -#: ../../mod/connedit.php:530 -msgid "Automatic Permissions Settings" -msgstr "" - -#: ../../mod/connedit.php:530 +#: ../../mod/connedit.php:538 #, php-format msgid "Connections: settings for %s" msgstr "" -#: ../../mod/connedit.php:534 -msgid "" -"When receiving a channel introduction, any permissions provided here will be " -"applied to the new connection automatically and the introduction approved. " -"Leave this page if you do not wish to use this feature." +#: ../../mod/connedit.php:539 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../mod/connedit.php:543 +msgid "Apply the permissions indicated on this page to all new connections." msgstr "" -#: ../../mod/connedit.php:536 +#: ../../mod/connedit.php:545 msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../mod/connedit.php:542 +#: ../../mod/connedit.php:551 msgid "inherited" msgstr "" -#: ../../mod/connedit.php:544 +#: ../../mod/connedit.php:553 msgid "Connection has no individual permissions!" msgstr "" -#: ../../mod/connedit.php:545 +#: ../../mod/connedit.php:554 msgid "" "This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"." msgstr "" -#: ../../mod/connedit.php:547 +#: ../../mod/connedit.php:556 msgid "Profile Visibility" msgstr "" -#: ../../mod/connedit.php:548 +#: ../../mod/connedit.php:557 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: ../../mod/connedit.php:549 +#: ../../mod/connedit.php:558 msgid "Contact Information / Notes" msgstr "" -#: ../../mod/connedit.php:550 +#: ../../mod/connedit.php:559 msgid "Edit contact notes" msgstr "" -#: ../../mod/connedit.php:552 +#: ../../mod/connedit.php:561 msgid "Their Settings" msgstr "" -#: ../../mod/connedit.php:553 +#: ../../mod/connedit.php:562 msgid "My Settings" msgstr "" -#: ../../mod/connedit.php:555 +#: ../../mod/connedit.php:564 msgid "Clear/Disable Automatic Permissions" msgstr "" -#: ../../mod/connedit.php:556 +#: ../../mod/connedit.php:565 msgid "Forum Members" msgstr "" -#: ../../mod/connedit.php:557 +#: ../../mod/connedit.php:566 msgid "Soapbox" msgstr "" -#: ../../mod/connedit.php:558 +#: ../../mod/connedit.php:567 msgid "Full Sharing (typical social network permissions)" msgstr "" -#: ../../mod/connedit.php:559 +#: ../../mod/connedit.php:568 msgid "Cautious Sharing " msgstr "" -#: ../../mod/connedit.php:560 +#: ../../mod/connedit.php:569 msgid "Follow Only" msgstr "" -#: ../../mod/connedit.php:561 +#: ../../mod/connedit.php:570 msgid "Individual Permissions" msgstr "" -#: ../../mod/connedit.php:562 +#: ../../mod/connedit.php:571 msgid "" "Some permissions may be inherited from your channel privacy settings, which have higher priority than individual " "settings. Changing those inherited settings on this page will have no effect." msgstr "" -#: ../../mod/connedit.php:563 +#: ../../mod/connedit.php:572 msgid "Advanced Permissions" msgstr "" -#: ../../mod/connedit.php:564 +#: ../../mod/connedit.php:573 msgid "Simple Permissions (select one and submit)" msgstr "" -#: ../../mod/connedit.php:568 +#: ../../mod/connedit.php:577 #, php-format msgid "Visit %s's profile - %s" msgstr "" -#: ../../mod/connedit.php:569 +#: ../../mod/connedit.php:578 msgid "Block/Unblock contact" msgstr "" -#: ../../mod/connedit.php:570 +#: ../../mod/connedit.php:579 msgid "Ignore contact" msgstr "" -#: ../../mod/connedit.php:571 +#: ../../mod/connedit.php:580 msgid "Repair URL settings" msgstr "" -#: ../../mod/connedit.php:572 +#: ../../mod/connedit.php:581 msgid "View conversations" msgstr "" -#: ../../mod/connedit.php:574 +#: ../../mod/connedit.php:583 msgid "Delete contact" msgstr "" -#: ../../mod/connedit.php:577 +#: ../../mod/connedit.php:586 msgid "Last update:" msgstr "" -#: ../../mod/connedit.php:579 +#: ../../mod/connedit.php:588 msgid "Update public posts" msgstr "" -#: ../../mod/connedit.php:581 +#: ../../mod/connedit.php:590 msgid "Update now" msgstr "" -#: ../../mod/connedit.php:587 +#: ../../mod/connedit.php:596 msgid "Currently blocked" msgstr "" -#: ../../mod/connedit.php:588 +#: ../../mod/connedit.php:597 msgid "Currently ignored" msgstr "" -#: ../../mod/connedit.php:589 +#: ../../mod/connedit.php:598 msgid "Currently archived" msgstr "" -#: ../../mod/connedit.php:590 +#: ../../mod/connedit.php:599 msgid "Currently pending" msgstr "" -#: ../../mod/connedit.php:591 +#: ../../mod/connedit.php:600 msgid "Hide this contact from others" msgstr "" -#: ../../mod/connedit.php:591 +#: ../../mod/connedit.php:600 msgid "" "Replies/likes to your public posts may still be visible" msgstr "" @@ -6359,7 +6426,7 @@ msgstr "" msgid "Help:" msgstr "" -#: ../../mod/help.php:67 ../../index.php:249 +#: ../../mod/help.php:67 ../../index.php:238 msgid "Not Found" msgstr "" @@ -7354,28 +7421,28 @@ msgstr "" msgid "3. Click [Connect]" msgstr "" -#: ../../mod/item.php:150 +#: ../../mod/item.php:151 msgid "Unable to locate original post." msgstr "" -#: ../../mod/item.php:409 +#: ../../mod/item.php:411 msgid "Empty post discarded." msgstr "" -#: ../../mod/item.php:451 +#: ../../mod/item.php:453 msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/item.php:888 +#: ../../mod/item.php:891 msgid "System error. Post not saved." msgstr "" -#: ../../mod/item.php:1363 +#: ../../mod/item.php:1366 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/item.php:1369 +#: ../../mod/item.php:1372 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" @@ -7393,14 +7460,34 @@ msgstr "" msgid "Layout Name" msgstr "" -#: ../../mod/locs.php:47 ../../mod/locs.php:74 +#: ../../mod/locs.php:19 ../../mod/locs.php:46 msgid "Location not found." msgstr "" -#: ../../mod/locs.php:78 +#: ../../mod/locs.php:50 msgid "Primary location cannot be removed." msgstr "" +#: ../../mod/locs.php:82 +msgid "No locations found." +msgstr "" + +#: ../../mod/locs.php:95 +msgid "Manage Channel Locations" +msgstr "" + +#: ../../mod/locs.php:96 +msgid "Location (address)" +msgstr "" + +#: ../../mod/locs.php:97 +msgid "Primary Location" +msgstr "" + +#: ../../mod/locs.php:98 +msgid "Drop location" +msgstr "" + #: ../../mod/lockview.php:31 msgid "Remote privacy information not available." msgstr "" @@ -7446,7 +7533,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:85 ../../boot.php:1506 +#: ../../mod/lostpass.php:85 ../../boot.php:1523 msgid "Password Reset" msgstr "" @@ -8179,41 +8266,41 @@ msgstr "" msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../boot.php:1294 +#: ../../boot.php:1311 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1297 +#: ../../boot.php:1314 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1471 +#: ../../boot.php:1488 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../boot.php:1499 +#: ../../boot.php:1516 msgid "Password" msgstr "" -#: ../../boot.php:1500 +#: ../../boot.php:1517 msgid "Remember me" msgstr "" -#: ../../boot.php:1505 +#: ../../boot.php:1522 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1570 +#: ../../boot.php:1587 msgid "permission denied" msgstr "" -#: ../../boot.php:1571 +#: ../../boot.php:1588 msgid "Got Zot?" msgstr "" -#: ../../boot.php:2005 +#: ../../boot.php:2021 msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index 01d6c72d9..b0f79cf5f 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-06.851 +2014-11-07.852 -- cgit v1.2.3 From 1cc1bc8e811ccee8dedd340dcaa156c7c1a3fed1 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Nov 2014 05:15:39 -0800 Subject: fix broken photo edits when adult flag is changed --- mod/photos.php | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/mod/photos.php b/mod/photos.php index 0a3d6c704..9d8e68134 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -274,11 +274,9 @@ function photos_post(&$a) { } } - $p = q("SELECT * FROM `photo` WHERE `resource_id` = '%s' AND `uid` = %d and ((photo_flags = %d) or (photo_flags & %d )) ORDER BY `scale` DESC", + $p = q("SELECT * FROM `photo` WHERE `resource_id` = '%s' AND `uid` = %d ORDER BY `scale` DESC", dbesc($resource_id), - intval($page_owner_uid), - intval(PHOTO_NORMAL), - intval(PHOTO_PROFILE) + intval($page_owner_uid) ); if($p) { $ext = $phototypes[$p[0]['type']]; @@ -322,10 +320,11 @@ function photos_post(&$a) { intval($item_id), intval($page_owner_uid) ); - } - if($r) { - $old_tag = $r[0]['tag']; - $old_inform = $r[0]['inform']; + + if($r) { + $old_tag = $r[0]['tag']; + $old_inform = $r[0]['inform']; + } } -- cgit v1.2.3 From 961049f5faf04edcf3dc5485e76d81460b929efb Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Nov 2014 12:16:13 -0800 Subject: revert that bit --- include/poller.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/include/poller.php b/include/poller.php index 1734af7d9..026d84c62 100644 --- a/include/poller.php +++ b/include/poller.php @@ -263,7 +263,7 @@ function poller_run($argv, $argc){ ); - $contacts = q("SELECT abook_id, abook_flags, abook_network, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel + $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel FROM abook LEFT JOIN account on abook_account = account_id where 1 $sql_extra AND (( abook_flags & %d ) OR ( abook_flags = %d )) @@ -357,12 +357,6 @@ function poller_run($argv, $argc){ if((! $update) && (! $force)) continue; - // we handled feed contacts earlier - now filter out anything else that - // doesn't require polling to keep the process count down. - - if($contact['abook_network'] !== 'zot') - continue; - proc_run('php','include/onepoll.php',$contact['abook_id']); if($interval) @time_sleep_until(microtime(true) + (float) $interval); -- cgit v1.2.3 From 55f64c37364a1e4ac3e57a6af2953df196589c49 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Nov 2014 13:06:56 -0800 Subject: tgroup_check - decrypt if obscured before checking body text for reshares --- include/items.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 325947341..7e2bb4f18 100755 --- a/include/items.php +++ b/include/items.php @@ -2974,7 +2974,15 @@ function tgroup_check($uid,$item) { // At this point we've determined that the person receiving this post was mentioned in it. // Now let's check if this mention was inside a reshare so we don't spam a forum - $body = preg_replace('/\[share(.*?)\[\/share\]/','',$item['body']); + + $body = $item['body']; + + if(array_key_exists('item_flags',$item) && ($item['item_flags'] & ITEM_OBSCURED) && $body) { + $key = get_config('system','prvkey'); + $body = crypto_unencapsulate(json_decode($body,true),$key); + } + + $body = preg_replace('/\[share(.*?)\[\/share\]/','',$body); $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($term['term'] . '+','/') . '\[\/zrl\]/'; -- cgit v1.2.3 From a22ba7629b809f9855c190480ebb250452dfeb16 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 7 Nov 2014 22:19:17 +0100 Subject: update to German strings --- view/de/messages.po | 12011 +++++++++++++++++++++++++------------------------- view/de/strings.php | 2764 ++++++------ 2 files changed, 7500 insertions(+), 7275 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index ae568d05d..9c2a40648 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-17 14:18+0000\n" -"PO-Revision-Date: 2014-10-23 11:52+0000\n" +"POT-Creation-Date: 2014-10-31 00:03-0700\n" +"PO-Revision-Date: 2014-11-07 21:07+0000\n" "Last-Translator: zottel \n" "Language-Team: German (http://www.transifex.com/projects/p/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -34,2629 +34,2865 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Light (Red Matrix default)" -msgstr "Hell (RedMatrix-Voreinstellung)" +#: ../../include/dba/dba_driver.php:50 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../view/theme/redbasic/php/config.php:99 -#: ../../include/ItemObject.php:599 ../../mod/settings.php:519 -#: ../../mod/settings.php:631 ../../mod/settings.php:660 -#: ../../mod/settings.php:684 ../../mod/settings.php:760 -#: ../../mod/settings.php:945 ../../mod/filestorage.php:146 -#: ../../mod/admin.php:414 ../../mod/admin.php:725 ../../mod/admin.php:861 -#: ../../mod/admin.php:994 ../../mod/admin.php:1193 ../../mod/admin.php:1280 -#: ../../mod/photos.php:563 ../../mod/photos.php:672 ../../mod/photos.php:974 -#: ../../mod/photos.php:1014 ../../mod/photos.php:1101 ../../mod/mood.php:135 -#: ../../mod/pdledit.php:58 ../../mod/connedit.php:540 ../../mod/setup.php:307 -#: ../../mod/setup.php:350 ../../mod/invite.php:142 ../../mod/thing.php:284 -#: ../../mod/thing.php:327 ../../mod/connect.php:92 ../../mod/fsuggest.php:108 -#: ../../mod/poke.php:166 ../../mod/group.php:81 ../../mod/appman.php:99 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/import.php:480 ../../mod/mail.php:348 ../../mod/profiles.php:643 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/events.php:587 -msgid "Submit" -msgstr "Bestätigen" +#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:51 +#: ../../mod/photos.php:91 ../../mod/photos.php:645 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:423 +msgid "Profile Photos" +msgstr "Profilfotos" -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Theme-Einstellungen" +#: ../../include/apps.php:126 +msgid "Site Admin" +msgstr "Hub-Administration" -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" -msgstr "Schema" +#: ../../include/apps.php:127 ../../include/conversation.php:1572 +#: ../../include/nav.php:117 +msgid "Bookmarks" +msgstr "Lesezeichen" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Schmale Navigationsleiste" +#: ../../include/apps.php:128 +msgid "Address Book" +msgstr "Adressbuch" -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Hintergrundfarbe der Navigationsleiste" +#: ../../include/apps.php:129 ../../include/nav.php:125 ../../boot.php:1496 +msgid "Login" +msgstr "Anmelden" -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Farbverlauf der Navigationsleiste: Farbe oben" +#: ../../include/apps.php:130 ../../include/nav.php:216 +#: ../../mod/manage.php:148 +msgid "Channel Manager" +msgstr "Kanal-Manager" -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Farbverlauf der Navigationsleiste: Farbe unten" +#: ../../include/apps.php:131 ../../include/nav.php:190 +msgid "Matrix" +msgstr "Matrix" -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Navigations-Button aktiv: Farbe für Farbverlauf oben" +#: ../../include/apps.php:132 ../../include/widgets.php:524 +#: ../../include/nav.php:218 ../../mod/admin.php:953 ../../mod/admin.php:1158 +msgid "Settings" +msgstr "Einstellungen" -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Navigations-Button aktiv: Farbe für Farbverlauf unten" +#: ../../include/apps.php:133 ../../include/conversation.php:1546 +#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Dateien" -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Farbe für den Rand der Navigationsleiste" +#: ../../include/apps.php:134 ../../include/conversation.php:1583 +#: ../../include/nav.php:121 ../../mod/webpages.php:129 +msgid "Webpages" +msgstr "Webseiten" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Farbe für die Icons der Navigationsleiste" +#: ../../include/apps.php:135 ../../include/nav.php:193 +msgid "Channel Home" +msgstr "Mein Kanal" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Farbe für aktive Icons der Navigationsleiste" +#: ../../include/apps.php:136 ../../include/identity.php:1115 +#: ../../include/identity.php:1233 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "Farbe für Links" +#: ../../include/apps.php:137 ../../include/conversation.php:1537 +#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Farbe der Schrift des Banners" +#: ../../include/apps.php:138 ../../include/nav.php:212 +#: ../../mod/events.php:431 +msgid "Events" +msgstr "Veranstaltungen" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Hintergrundfarbe" +#: ../../include/apps.php:139 ../../include/nav.php:176 +#: ../../mod/directory.php:226 +msgid "Directory" +msgstr "Verzeichnis" -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Hintergrundbild" +#: ../../include/apps.php:140 ../../include/nav.php:168 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" +msgstr "Hilfe" -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Hintergrundfarbe für Beiträge" +#: ../../include/apps.php:141 ../../include/nav.php:204 +msgid "Mail" +msgstr "Mail" -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Hintergrundfarbe für Kommentare" +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Laune" -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Farbe des Randes von Kommentaren" +#: ../../include/apps.php:143 ../../include/conversation.php:951 +msgid "Poke" +msgstr "Anstupsen" -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Einzug für Kommentare" +#: ../../include/apps.php:144 ../../include/nav.php:111 +msgid "Chat" +msgstr "Chat" -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Grundfarbe für Beitrags-Icons" +#: ../../include/apps.php:145 ../../include/text.php:822 +#: ../../include/text.php:834 ../../include/nav.php:173 +#: ../../mod/search.php:30 +msgid "Search" +msgstr "Suche" -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" +#: ../../include/apps.php:146 +msgid "Probe" +msgstr "Testen" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Schriftgröße für die ganze Applikation" +#: ../../include/apps.php:147 +msgid "Suggest" +msgstr "Empfehlungen" -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare" +#: ../../include/apps.php:148 +msgid "Random Channel" +msgstr "Zufälliger Kanal" -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Schriftfarbe für Posts und Kommentare" +#: ../../include/apps.php:149 +msgid "Invite" +msgstr "Einladen" -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Ecken-Radius" +#: ../../include/apps.php:150 +msgid "Features" +msgstr "Funktionen" -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Schattentiefe von Fotos" +#: ../../include/apps.php:151 +msgid "Language" +msgstr "Sprache" -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" -msgstr "Maximalbreite der Unterhaltungsbereiche" +#: ../../include/apps.php:152 +msgid "Post" +msgstr "Beitrag" -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" -msgstr "Konversationsbereich zentrieren" +#: ../../include/apps.php:153 +msgid "Profile Photo" +msgstr "Profilfoto" -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)" +#: ../../include/apps.php:242 ../../mod/settings.php:81 +#: ../../mod/settings.php:544 +msgid "Update" +msgstr "Aktualisieren" -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Größe der Avatare von Themenstartern" +#: ../../include/apps.php:242 +msgid "Install" +msgstr "Installieren" -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Größe der Avatare von Kommentatoren" +#: ../../include/apps.php:247 +msgid "Purchase" +msgstr "Kaufen" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" -msgstr "Schräge Fotoalben" +#: ../../include/apps.php:249 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:250 +#: ../../include/menu.php:42 ../../include/ItemObject.php:100 +#: ../../mod/settings.php:580 ../../mod/blocks.php:99 +#: ../../mod/connections.php:381 ../../mod/connections.php:394 +#: ../../mod/connections.php:413 ../../mod/webpages.php:131 +#: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 +#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 +#: ../../mod/thing.php:233 ../../mod/layouts.php:121 ../../mod/menu.php:59 +msgid "Edit" +msgstr "Bearbeiten" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Are you a clean desk or a messy desk person?" -msgstr "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?" +#: ../../include/apps.php:250 ../../include/conversation.php:638 +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/ItemObject.php:120 +#: ../../mod/photos.php:1062 ../../mod/settings.php:581 +#: ../../mod/connedit.php:468 ../../mod/group.php:176 ../../mod/admin.php:732 +#: ../../mod/admin.php:863 ../../mod/thing.php:234 +msgid "Delete" +msgstr "Löschen" -#: ../../boot.php:1294 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." +#: ../../include/apps.php:331 ../../include/apps.php:382 +#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 +#: ../../mod/photos.php:703 ../../mod/photos.php:1124 +#: ../../mod/connedit.php:504 +msgid "Unknown" +msgstr "Unbekannt" -#: ../../boot.php:1297 -#, php-format -msgid "Update Error at %s" -msgstr "Aktualisierungsfehler auf %s" +#: ../../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:584 ../../include/chat.php:116 +#: ../../include/items.php:4005 ../../include/photos.php:15 +#: ../../mod/mood.php:112 ../../mod/photos.php:68 ../../mod/photos.php:533 +#: ../../mod/mitem.php:73 ../../mod/achievements.php:30 +#: ../../mod/settings.php:495 ../../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:29 ../../mod/blocks.php:44 ../../mod/profiles.php:179 +#: ../../mod/profiles.php:532 ../../mod/events.php:195 +#: ../../mod/channel.php:89 ../../mod/channel.php:193 +#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/register.php:70 ../../mod/regmod.php:17 ../../mod/common.php:35 +#: ../../mod/network.php:12 ../../mod/connections.php:169 +#: ../../mod/connedit.php:254 ../../mod/delegate.php:6 +#: ../../mod/webpages.php:40 ../../mod/bookmarks.php:46 +#: ../../mod/setup.php:203 ../../mod/editblock.php:34 ../../mod/pdledit.php:21 +#: ../../mod/editlayout.php:48 ../../mod/editpost.php:13 +#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/sources.php:66 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/fsuggest.php:78 +#: ../../mod/suggest.php:26 ../../mod/group.php:9 ../../mod/like.php:154 +#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 +#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:182 +#: ../../mod/item.php:190 ../../mod/item.php:961 ../../mod/layouts.php:27 +#: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 +#: ../../mod/mail.php:111 ../../mod/manage.php:6 ../../mod/menu.php:44 +#: ../../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/appman.php:66 +#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:401 +msgid "Permission denied." +msgstr "Zugang verweigert" -#: ../../boot.php:1471 -msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können." +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." -#: ../../boot.php:1472 ../../include/nav.php:163 ../../mod/register.php:220 -msgid "Register" -msgstr "Registrieren" +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "Keine Quelldatei." -#: ../../boot.php:1495 ../../include/nav.php:95 ../../include/nav.php:128 -msgid "Logout" -msgstr "Abmelden" +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" -#: ../../boot.php:1496 ../../include/nav.php:125 ../../include/apps.php:129 -msgid "Login" -msgstr "Anmelden" +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" -#: ../../boot.php:1498 ../../include/contact_selectors.php:79 -#: ../../mod/admin.php:728 ../../mod/admin.php:737 -msgid "Email" -msgstr "E-Mail" +#: ../../include/attach.php:377 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" -#: ../../boot.php:1499 -msgid "Password" -msgstr "Kennwort" +#: ../../include/attach.php:389 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." -#: ../../boot.php:1500 -msgid "Remember me" -msgstr "Angaben speichern" +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." -#: ../../boot.php:1505 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." -#: ../../boot.php:1506 ../../mod/lostpass.php:85 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." -#: ../../boot.php:1570 -msgid "permission denied" -msgstr "Zugriff verweigert" +#: ../../include/attach.php:589 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" -#: ../../boot.php:1571 -msgid "Got Zot?" -msgstr "Haste schon Zot?" +#: ../../include/attach.php:605 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" -#: ../../boot.php:2001 -msgid "toggle mobile" -msgstr "auf/von mobile Ansicht wechseln" +#: ../../include/attach.php:629 +msgid "Path not found." +msgstr "Pfad nicht gefunden." -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "Ausgeloggt." +#: ../../include/attach.php:680 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" +#: ../../include/attach.php:684 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Login fehlgeschlagen." +#: ../../include/conversation.php:120 ../../include/text.php:1743 +#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:298 +msgid "photo" +msgstr "Foto" -#: ../../include/comanche.php:35 -msgid "Default" -msgstr "Standard" +#: ../../include/conversation.php:123 ../../include/text.php:1746 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "Ereignis" -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:249 -msgid "parent" -msgstr "Übergeordnetes Verzeichnis" +#: ../../include/conversation.php:126 ../../mod/like.php:89 +msgid "channel" +msgstr "Kanal" -#: ../../include/RedDAV/RedBrowser.php:130 -msgid "Collection" -msgstr "Sammlung" +#: ../../include/conversation.php:148 ../../include/text.php:1749 +#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:298 +msgid "status" +msgstr "Status" -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Principal" -msgstr "Prinzipal" +#: ../../include/conversation.php:150 ../../include/text.php:1751 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "Kommentar" -#: ../../include/RedDAV/RedBrowser.php:136 -msgid "Addressbook" -msgstr "Adressbuch" +#: ../../include/conversation.php:164 ../../include/diaspora.php:1953 +#: ../../mod/like.php:344 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s" -#: ../../include/RedDAV/RedBrowser.php:139 -msgid "Calendar" -msgstr "Kalender" +#: ../../include/conversation.php:167 ../../mod/like.php:346 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s nicht" -#: ../../include/RedDAV/RedBrowser.php:142 -msgid "Schedule Inbox" -msgstr "Posteingang für überwachte Kalender" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ist jetzt mit %2$s verbunden" -#: ../../include/RedDAV/RedBrowser.php:145 -msgid "Schedule Outbox" -msgstr "Postausgang für überwachte Kalender" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:331 -#: ../../include/apps.php:382 ../../include/conversation.php:1003 -#: ../../mod/connedit.php:498 -msgid "Unknown" -msgstr "Unbekannt" +#: ../../include/conversation.php:243 ../../include/text.php:901 +msgid "poked" +msgstr "stupste" -#: ../../include/RedDAV/RedBrowser.php:223 +#: ../../include/conversation.php:261 ../../mod/mood.php:63 #, php-format -msgid "%1$s used" -msgstr "%1$s verwendet" +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" -#: ../../include/RedDAV/RedBrowser.php:228 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s von %2$s verwendet (%3$s%)" +#: ../../include/conversation.php:637 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Auswählen" -#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 -#: ../../include/apps.php:133 ../../include/conversation.php:1546 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Dateien" +#: ../../include/conversation.php:645 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Private Nachricht" -#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:521 -#: ../../mod/settings.php:547 ../../mod/admin.php:868 -msgid "Name" -msgstr "Name" +#: ../../include/conversation.php:652 ../../include/ItemObject.php:194 +msgid "Message signature validated" +msgstr "Signatur überprüft" -#: ../../include/RedDAV/RedBrowser.php:246 -msgid "Type" -msgstr "Typ" +#: ../../include/conversation.php:653 ../../include/ItemObject.php:195 +msgid "Message signature incorrect" +msgstr "Signatur nicht korrekt" -#: ../../include/RedDAV/RedBrowser.php:247 -msgid "Size" -msgstr "Größe" +#: ../../include/conversation.php:674 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" -#: ../../include/RedDAV/RedBrowser.php:248 -msgid "Last Modified" -msgstr "Zuletzt geändert" +#: ../../include/conversation.php:689 +msgid "Categories:" +msgstr "Kategorien:" -#: ../../include/RedDAV/RedBrowser.php:250 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/menu.php:42 -#: ../../include/ItemObject.php:100 ../../include/apps.php:249 -#: ../../mod/settings.php:581 ../../mod/webpages.php:131 -#: ../../mod/connections.php:381 ../../mod/connections.php:394 -#: ../../mod/connections.php:413 ../../mod/menu.php:59 ../../mod/thing.php:233 -#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 -#: ../../mod/blocks.php:99 ../../mod/layouts.php:121 -#: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 -msgid "Edit" -msgstr "Bearbeiten" +#: ../../include/conversation.php:690 +msgid "Filed under:" +msgstr "Gespeichert unter:" -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/ItemObject.php:120 -#: ../../include/apps.php:250 ../../include/conversation.php:638 -#: ../../mod/settings.php:582 ../../mod/admin.php:732 ../../mod/admin.php:863 -#: ../../mod/photos.php:1064 ../../mod/connedit.php:462 -#: ../../mod/thing.php:234 ../../mod/group.php:176 -msgid "Delete" -msgstr "Löschen" +#: ../../include/conversation.php:698 ../../include/ItemObject.php:265 +#, php-format +msgid " from %s" +msgstr "von %s" -#: ../../include/RedDAV/RedBrowser.php:252 -msgid "Total" -msgstr "Summe" +#: ../../include/conversation.php:701 ../../include/ItemObject.php:268 +#, php-format +msgid "last edited: %s" +msgstr "zuletzt bearbeitet: %s" -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Create new folder" -msgstr "Neuen Ordner anlegen" +#: ../../include/conversation.php:702 ../../include/ItemObject.php:269 +#, php-format +msgid "Expires: %s" +msgstr "Verfällt: %s" -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/new_channel.php:122 -#: ../../mod/mitem.php:142 ../../mod/menu.php:84 -msgid "Create" -msgstr "Erstelle" +#: ../../include/conversation.php:717 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" -#: ../../include/RedDAV/RedBrowser.php:306 -msgid "Upload file" -msgstr "Datei hochladen" +#: ../../include/conversation.php:719 ../../include/conversation.php:1153 +#: ../../include/ItemObject.php:310 ../../mod/photos.php:970 +#: ../../mod/editblock.php:120 ../../mod/editlayout.php:115 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 +#: ../../mod/mail.php:234 ../../mod/mail.php:349 +msgid "Please wait" +msgstr "Bitte warten" -#: ../../include/RedDAV/RedBrowser.php:307 ../../mod/photos.php:745 -#: ../../mod/photos.php:1226 ../../mod/profile_photo.php:361 -msgid "Upload" -msgstr "Hochladen" +#: ../../include/conversation.php:843 +msgid "remove" +msgstr "lösche" -#: ../../include/photos.php:15 ../../include/items.php:3994 -#: ../../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:584 ../../include/chat.php:116 -#: ../../mod/settings.php:496 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 -#: ../../mod/filestorage.php:109 ../../mod/webpages.php:40 -#: ../../mod/authtest.php:13 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/connections.php:169 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/photos.php:68 -#: ../../mod/photos.php:526 ../../mod/mitem.php:73 ../../mod/regmod.php:17 -#: ../../mod/mood.php:112 ../../mod/pdledit.php:21 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/menu.php:44 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/suggest.php:26 ../../mod/connedit.php:254 -#: ../../mod/message.php:16 ../../mod/setup.php:203 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/register.php:70 -#: ../../mod/network.php:12 ../../mod/delegate.php:6 ../../mod/fsuggest.php:78 -#: ../../mod/manage.php:6 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 -#: ../../mod/poke.php:128 ../../mod/blocks.php:29 ../../mod/blocks.php:44 -#: ../../mod/group.php:9 ../../mod/service_limits.php:7 ../../mod/item.php:182 -#: ../../mod/item.php:190 ../../mod/item.php:929 ../../mod/appman.php:66 -#: ../../mod/sources.php:66 ../../mod/page.php:30 ../../mod/page.php:80 -#: ../../mod/mail.php:111 ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:560 ../../mod/bookmarks.php:46 -#: ../../mod/common.php:35 ../../mod/like.php:154 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/events.php:200 ../../mod/notifications.php:66 -#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 -#: ../../mod/editblock.php:34 ../../mod/viewsrc.php:14 -#: ../../mod/achievements.php:30 ../../mod/editlayout.php:48 -#: ../../index.php:190 ../../index.php:365 -msgid "Permission denied." -msgstr "Zugang verweigert" +#: ../../include/conversation.php:847 ../../include/nav.php:257 +msgid "Loading..." +msgstr "Lädt ..." -#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:680 -#: ../../mod/photos.php:91 ../../mod/photos.php:657 ../../mod/photos.php:679 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 -msgid "Profile Photos" -msgstr "Profilfotos" +#: ../../include/conversation.php:848 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" -#: ../../include/photos.php:104 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" +#: ../../include/conversation.php:942 +msgid "View Source" +msgstr "Quelle anzeigen" -#: ../../include/photos.php:111 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/conversation.php:943 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" -#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" +#: ../../include/conversation.php:944 +msgid "View Status" +msgstr "Status ansehen" -#: ../../include/photos.php:212 -msgid "Photo storage failed." -msgstr "Foto speichern schlug fehl" +#: ../../include/conversation.php:945 ../../include/nav.php:99 +#: ../../mod/connedit.php:421 ../../mod/connedit.php:535 +msgid "View Profile" +msgstr "Profil ansehen" -#: ../../include/photos.php:340 ../../include/conversation.php:1540 -msgid "Photo Albums" -msgstr "Fotoalben" +#: ../../include/conversation.php:946 +msgid "View Photos" +msgstr "Fotos ansehen" -#: ../../include/photos.php:344 -msgid "Upload New Photos" -msgstr "Lade neue Fotos hoch" +#: ../../include/conversation.php:947 +msgid "Matrix Activity" +msgstr "Matrix-Aktivität" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" +#: ../../include/conversation.php:948 ../../include/identity.php:835 +#: ../../include/widgets.php:135 ../../include/widgets.php:175 +#: ../../include/Contact.php:107 ../../mod/directory.php:183 +#: ../../mod/dirprofile.php:164 ../../mod/suggest.php:51 +#: ../../mod/match.php:62 +msgid "Connect" +msgstr "Verbinden" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 -msgid "Advanced" -msgstr "Fortgeschritten" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Finde Kanäle" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:222 ../../mod/directory.php:227 -msgid "Find" -msgstr "Finde" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "Kanal-Vorschläge" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Zufallsprofil" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Lade Freunde ein" - -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "Beispiel: name=fred and country=deutschland" - -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "Erweiterte Suche" +#: ../../include/conversation.php:949 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" -#: ../../include/contact_widgets.php:58 ../../include/features.php:72 -#: ../../include/widgets.php:303 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" +#: ../../include/conversation.php:950 +msgid "Send PM" +msgstr "Sende PN" -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96 -#: ../../include/widgets.php:306 -msgid "Everything" -msgstr "Alles" +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." -#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29 -msgid "Categories" -msgstr "Kategorien" +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." -#: ../../include/contact_widgets.php:126 +#: ../../include/conversation.php:1028 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d Person gefällt das." +msgstr[1] "%2$d Leuten gefällt das." -#: ../../include/contact_widgets.php:131 -msgid "show more" -msgstr "mehr zeigen" +#: ../../include/conversation.php:1030 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d Person gefällt das nicht." +msgstr[1] "%2$d Leuten gefällt das nicht." -#: ../../include/activities.php:39 -msgid " and " +#: ../../include/conversation.php:1036 +msgid "and" msgstr "und" -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "öffentliches Profil" - -#: ../../include/activities.php:52 +#: ../../include/conversation.php:1039 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] ", und %d andere" -#: ../../include/activities.php:53 +#: ../../include/conversation.php:1040 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" +msgid "%s like this." +msgstr "%s gefällt das." -#: ../../include/activities.php:56 +#: ../../include/conversation.php:1040 #, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." +msgid "%s don't like this." +msgstr "%s gefällt das nicht." -#: ../../include/items.php:375 ../../mod/subthread.php:49 -#: ../../mod/profperm.php:23 ../../mod/group.php:68 ../../mod/like.php:242 -#: ../../index.php:364 -msgid "Permission denied" -msgstr "Keine Berechtigung" +#: ../../include/conversation.php:1097 +msgid "Visible to everybody" +msgstr "Sichtbar für jeden" -#: ../../include/items.php:962 ../../include/items.php:1007 -msgid "(Unknown)" -msgstr "(Unbekannt)" +#: ../../include/conversation.php:1098 ../../mod/mail.php:170 +#: ../../mod/mail.php:282 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" -#: ../../include/items.php:1163 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." +#: ../../include/conversation.php:1099 +msgid "Please enter a video link/URL:" +msgstr "Gib einen Video-Link/URL ein:" -#: ../../include/items.php:1165 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." +#: ../../include/conversation.php:1100 +msgid "Please enter an audio link/URL:" +msgstr "Gib einen Audio-Link/URL ein:" -#: ../../include/items.php:1167 -msgid "Visible to anybody in this network." -msgstr "Für jedes Mitglied der RedMatrix sichtbar." +#: ../../include/conversation.php:1101 +msgid "Tag term:" +msgstr "Schlagwort:" -#: ../../include/items.php:1169 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." +#: ../../include/conversation.php:1102 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" -#: ../../include/items.php:1171 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." +#: ../../include/conversation.php:1103 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" -#: ../../include/items.php:1173 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." +#: ../../include/conversation.php:1104 ../../mod/editpost.php:52 +#: ../../mod/mail.php:171 ../../mod/mail.php:283 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verfällt YYYY-MM-DD HH;MM" -#: ../../include/items.php:1175 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." +#: ../../include/conversation.php:1114 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:608 ../../mod/photos.php:990 +#: ../../mod/webpages.php:135 ../../mod/editblock.php:141 +#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 +#: ../../mod/editwebpage.php:174 +msgid "Preview" +msgstr "Vorschau" -#: ../../include/items.php:1177 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." +#: ../../include/conversation.php:1128 ../../mod/photos.php:969 +#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 +#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 +msgid "Share" +msgstr "Teilen" -#: ../../include/items.php:3927 ../../mod/filestorage.php:26 -#: ../../mod/admin.php:168 ../../mod/admin.php:898 ../../mod/admin.php:1101 -#: ../../mod/thing.php:76 ../../mod/display.php:32 ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Element nicht gefunden." +#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:139 +msgid "Page link title" +msgstr "Seitentitel-Link" -#: ../../include/items.php:4365 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Sammlung nicht gefunden" +#: ../../include/conversation.php:1133 +msgid "Post as" +msgstr "Posten als" -#: ../../include/items.php:4380 -msgid "Collection is empty." -msgstr "Sammlung ist leer." +#: ../../include/conversation.php:1134 ../../mod/editblock.php:112 +#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:231 ../../mod/mail.php:345 +msgid "Upload photo" +msgstr "Foto hochladen" -#: ../../include/items.php:4387 -#, php-format -msgid "Collection: %s" -msgstr "Sammlung: %s" +#: ../../include/conversation.php:1135 +msgid "upload photo" +msgstr "Foto hochladen" -#: ../../include/items.php:4398 -#, php-format -msgid "Connection: %s" -msgstr "Verbindung: %s" +#: ../../include/conversation.php:1136 ../../mod/editblock.php:113 +#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:232 ../../mod/mail.php:346 +msgid "Attach file" +msgstr "Datei anhängen" -#: ../../include/items.php:4401 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." +#: ../../include/conversation.php:1137 +msgid "attach file" +msgstr "Datei anfügen" -#: ../../include/Contact.php:107 ../../include/identity.php:832 -#: ../../include/conversation.php:948 ../../include/widgets.php:135 -#: ../../include/widgets.php:175 ../../mod/dirprofile.php:164 -#: ../../mod/suggest.php:51 ../../mod/directory.php:183 ../../mod/match.php:62 -msgid "Connect" -msgstr "Verbinden" +#: ../../include/conversation.php:1138 ../../mod/editblock.php:114 +#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:233 ../../mod/mail.php:347 +msgid "Insert web link" +msgstr "Link einfügen" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Neues Fenster" +#: ../../include/conversation.php:1139 +msgid "web link" +msgstr "Web-Link" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" +#: ../../include/conversation.php:1140 +msgid "Insert video link" +msgstr "Video-Link einfügen" -#: ../../include/Contact.php:211 ../../mod/admin.php:649 -#, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" +#: ../../include/conversation.php:1141 +msgid "video link" +msgstr "Video-Link" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" +#: ../../include/conversation.php:1142 +msgid "Insert audio link" +msgstr "Audio-Link einfügen" -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "Jahr" +#: ../../include/conversation.php:1143 +msgid "audio link" +msgstr "Audio-Link" -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "Monat" +#: ../../include/conversation.php:1144 ../../mod/editblock.php:118 +#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:150 +msgid "Set your location" +msgstr "Standort" -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "Tag" +#: ../../include/conversation.php:1145 +msgid "set location" +msgstr "Standort" -#: ../../include/datetime.php:275 -msgid "never" -msgstr "Nie" +#: ../../include/conversation.php:1146 ../../mod/editblock.php:119 +#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:151 +msgid "Clear browser location" +msgstr "Browser-Standort löschen" -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" +#: ../../include/conversation.php:1147 +msgid "clear location" +msgstr "Standort löschen" -#: ../../include/datetime.php:284 -msgid "years" -msgstr "Jahre" +#: ../../include/conversation.php:1149 ../../mod/editblock.php:132 +#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:167 +msgid "Set title" +msgstr "Titel" -#: ../../include/datetime.php:285 -msgid "months" -msgstr "Monate" +#: ../../include/conversation.php:1152 ../../mod/events.php:563 +#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 +#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:169 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../include/datetime.php:286 -msgid "week" -msgstr "Woche" +#: ../../include/conversation.php:1154 ../../mod/editblock.php:121 +#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:153 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "Wochen" +#: ../../include/conversation.php:1155 +msgid "permissions" +msgstr "Berechtigungen" -#: ../../include/datetime.php:287 -msgid "days" -msgstr "Tage" +#: ../../include/conversation.php:1162 ../../mod/editblock.php:129 +#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:162 +msgid "Public post" +msgstr "Öffentlicher Beitrag" -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "Stunde" +#: ../../include/conversation.php:1164 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:170 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Beispiel: bob@example.com, mary@example.com" -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "Stunden" +#: ../../include/conversation.php:1177 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:179 ../../mod/mail.php:238 ../../mod/mail.php:352 +msgid "Set expiration date" +msgstr "Verfallsdatum" -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "Minute" +#: ../../include/conversation.php:1179 ../../include/ItemObject.php:611 +#: ../../mod/editpost.php:148 ../../mod/mail.php:240 ../../mod/mail.php:354 +msgid "Encrypt text" +msgstr "Text verschlüsseln" -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "Minuten" +#: ../../include/conversation.php:1181 ../../mod/events.php:569 +#: ../../mod/editpost.php:150 +msgid "OK" +msgstr "Ok" -#: ../../include/datetime.php:290 -msgid "second" -msgstr "Sekunde" +#: ../../include/conversation.php:1182 ../../mod/settings.php:519 +#: ../../mod/settings.php:545 ../../mod/events.php:568 +#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +msgid "Cancel" +msgstr "Abbrechen" -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "Sekunden" +#: ../../include/conversation.php:1426 +msgid "Discover" +msgstr "Entdecken" -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" +#: ../../include/conversation.php:1429 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" -#: ../../include/datetime.php:504 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" +#: ../../include/conversation.php:1434 +msgid "Commented Order" +msgstr "Neueste Kommentare" -#: ../../include/datetime.php:505 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" +#: ../../include/conversation.php:1437 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" -#: ../../include/identity.php:31 ../../mod/item.php:1319 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" +#: ../../include/conversation.php:1441 +msgid "Posted Order" +msgstr "Neueste Beiträge" -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" +#: ../../include/conversation.php:1444 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Name ist zu lang" +#: ../../include/conversation.php:1449 ../../include/widgets.php:89 +msgid "Personal" +msgstr "Persönlich" -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Keine Account-Kennung" +#: ../../include/conversation.php:1452 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/identity.php:181 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." +#: ../../include/conversation.php:1458 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" +msgstr "Neu" -#: ../../include/identity.php:195 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." +#: ../../include/conversation.php:1461 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/identity.php:200 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." +#: ../../include/conversation.php:1467 +msgid "Starred" +msgstr "Markiert" -#: ../../include/identity.php:282 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" +#: ../../include/conversation.php:1470 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" -#: ../../include/identity.php:342 -msgid "Default Profile" -msgstr "Standard-Profil" +#: ../../include/conversation.php:1477 +msgid "Spam" +msgstr "Spam" -#: ../../include/identity.php:381 ../../include/identity.php:382 -#: ../../include/identity.php:389 ../../include/profile_selectors.php:80 -#: ../../include/widgets.php:407 ../../mod/connedit.php:495 -msgid "Friends" -msgstr "Freunde" +#: ../../include/conversation.php:1480 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/identity.php:635 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/conversation.php:1516 ../../mod/admin.php:867 +msgid "Channel" +msgstr "Kanal" -#: ../../include/identity.php:683 ../../mod/filestorage.php:48 -#: ../../mod/webpages.php:8 ../../mod/profile.php:16 ../../mod/hcard.php:8 -#: ../../mod/connect.php:13 ../../mod/blocks.php:10 ../../mod/layouts.php:8 -#: ../../mod/achievements.php:11 -msgid "Requested profile is not available." -msgstr "Erwünschte Profil ist nicht verfügbar." +#: ../../include/conversation.php:1519 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" -#: ../../include/identity.php:846 ../../mod/profiles.php:750 -msgid "Change profile photo" -msgstr "Profilfoto ändern" +#: ../../include/conversation.php:1528 +msgid "About" +msgstr "Über" -#: ../../include/identity.php:852 -msgid "Profiles" -msgstr "Profile" +#: ../../include/conversation.php:1531 +msgid "Profile Details" +msgstr "Profil-Details" -#: ../../include/identity.php:852 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/bearbeiten" +#: ../../include/conversation.php:1540 ../../include/photos.php:340 +msgid "Photo Albums" +msgstr "Fotoalben" -#: ../../include/identity.php:853 ../../mod/profiles.php:751 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" +#: ../../include/conversation.php:1549 +msgid "Files and Storage" +msgstr "Dateien und Speicher" -#: ../../include/identity.php:856 ../../include/nav.php:103 -msgid "Edit Profile" -msgstr "Profile bearbeiten" +#: ../../include/conversation.php:1559 ../../include/conversation.php:1562 +msgid "Chatrooms" +msgstr "Chaträume" -#: ../../include/identity.php:867 ../../mod/profiles.php:762 -msgid "Profile Image" -msgstr "Profilfoto:" +#: ../../include/conversation.php:1575 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" -#: ../../include/identity.php:870 -msgid "visible to everybody" -msgstr "sichtbar für jeden" +#: ../../include/conversation.php:1586 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" -#: ../../include/identity.php:871 ../../mod/profiles.php:645 -#: ../../mod/profiles.php:766 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "Neuer Beitrag wurde erzeugt" -#: ../../include/identity.php:883 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:461 ../../mod/dirprofile.php:105 -#: ../../mod/directory.php:156 ../../mod/events.php:579 -msgid "Location:" -msgstr "Ort:" +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "hat %s's Beitrag kommentiert" -#: ../../include/identity.php:885 ../../include/identity.php:1122 -#: ../../mod/directory.php:158 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Neue Seite" -#: ../../include/identity.php:886 ../../include/identity.php:1166 -#: ../../mod/directory.php:160 -msgid "Status:" -msgstr "Status:" +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 +#: ../../mod/webpages.php:134 ../../mod/layouts.php:125 +msgid "View" +msgstr "Ansicht" -#: ../../include/identity.php:887 ../../include/identity.php:1177 -#: ../../mod/directory.php:162 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 +msgid "Actions" +msgstr "Aktionen" -#: ../../include/identity.php:888 ../../mod/dirprofile.php:151 -msgid "Online Now" -msgstr "gerade online" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../include/identity.php:966 ../../include/identity.php:1046 -#: ../../mod/ping.php:298 -msgid "g A l F d" -msgstr "l, d. F G \\\\U\\\\h\\\\r" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 +msgid "Title" +msgstr "Titel" -#: ../../include/identity.php:967 ../../include/identity.php:1047 -msgid "F d" -msgstr "d. F" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 +msgid "Created" +msgstr "Erstellt" -#: ../../include/identity.php:1012 ../../include/identity.php:1087 -#: ../../mod/ping.php:320 -msgid "[today]" -msgstr "[Heute]" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 +msgid "Edited" +msgstr "Geändert" -#: ../../include/identity.php:1024 -msgid "Birthday Reminders" -msgstr "Geburtstags Erinnerungen" +#: ../../include/security.php:320 +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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." -#: ../../include/identity.php:1025 -msgid "Birthdays this week:" -msgstr "Geburtstage in dieser Woche:" +#: ../../include/event.php:11 ../../include/bb2diaspora.php:463 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\\\, H:i" -#: ../../include/identity.php:1080 -msgid "[No description]" -msgstr "[Keine Beschreibung]" +#: ../../include/event.php:20 ../../include/bb2diaspora.php:469 +msgid "Starts:" +msgstr "Beginnt:" -#: ../../include/identity.php:1098 -msgid "Event Reminders" -msgstr "Veranstaltungs- Erinnerungen" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:477 +msgid "Finishes:" +msgstr "Endet:" -#: ../../include/identity.php:1099 -msgid "Events this week:" -msgstr "Veranstaltungen in dieser Woche:" +#: ../../include/event.php:40 ../../include/bb2diaspora.php:485 +#: ../../include/identity.php:886 ../../mod/events.php:579 +#: ../../mod/directory.php:156 ../../mod/dirprofile.php:105 +msgid "Location:" +msgstr "Ort:" -#: ../../include/identity.php:1112 ../../include/identity.php:1230 -#: ../../include/apps.php:136 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" +#: ../../include/event.php:326 +msgid "This event has been added to your calendar." +msgstr "Dieses Ereignis wurde zu Deinem Kalender hinzugefügt" -#: ../../include/identity.php:1120 ../../mod/settings.php:953 -msgid "Full Name:" -msgstr "Voller Name:" +#: ../../include/oembed.php:171 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" -#: ../../include/identity.php:1127 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" +#: ../../include/oembed.php:180 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" -#: ../../include/identity.php:1138 ../../include/taxonomy.php:338 -#: ../../include/ItemObject.php:146 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" +#: ../../include/permissions.php:13 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" -#: ../../include/identity.php:1151 -msgid "j F, Y" -msgstr "j. F Y" +#: ../../include/permissions.php:14 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" -#: ../../include/identity.php:1152 -msgid "j F" -msgstr "j. F" +#: ../../include/permissions.php:15 +msgid "Can view my photo albums" +msgstr "Kann meine Fotoalben betrachten" -#: ../../include/identity.php:1159 -msgid "Birthday:" -msgstr "Geburtstag:" +#: ../../include/permissions.php:16 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" -#: ../../include/identity.php:1163 -msgid "Age:" -msgstr "Alter:" +#: ../../include/permissions.php:17 +msgid "Can view my file storage" +msgstr "Kann meine Dateiordner lesen" -#: ../../include/identity.php:1172 -#, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +#: ../../include/permissions.php:18 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" -#: ../../include/identity.php:1175 ../../mod/profiles.php:667 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" -#: ../../include/identity.php:1179 ../../mod/profiles.php:669 -msgid "Hometown:" -msgstr "Heimatstadt:" +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" -#: ../../include/identity.php:1181 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/permissions.php:23 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" -#: ../../include/identity.php:1183 ../../mod/profiles.php:670 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" -#: ../../include/identity.php:1185 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" +msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" -#: ../../include/identity.php:1187 ../../mod/directory.php:164 -msgid "About:" -msgstr "Über:" +#: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" -#: ../../include/identity.php:1189 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../include/permissions.php:26 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" -#: ../../include/identity.php:1191 ../../mod/profiles.php:673 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../include/permissions.php:28 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" -#: ../../include/identity.php:1193 ../../mod/profiles.php:674 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../include/permissions.php:28 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" -#: ../../include/identity.php:1196 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/permissions.php:29 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" -#: ../../include/identity.php:1198 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../include/permissions.php:30 +msgid "Can write to my file storage" +msgstr "Kann in meine Dateiordner schreiben" -#: ../../include/identity.php:1200 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/permissions.php:31 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" -#: ../../include/identity.php:1202 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../include/permissions.php:33 +msgid "Can source my public posts in derived channels" +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" -#: ../../include/identity.php:1204 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../include/permissions.php:33 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" -#: ../../include/identity.php:1206 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/permissions.php:35 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" -#: ../../include/identity.php:1208 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/permissions.php:35 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" -#: ../../include/identity.php:1210 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/permissions.php:785 +msgid "Social Networking" +msgstr "Soziales Netzwerk" -#: ../../include/identity.php:1212 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Mostly Public" +msgstr "Weitgehend öffentlich" -#: ../../include/identity.php:1232 -msgid "Like this thing" -msgstr "Gefällt mir" +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Restricted" +msgstr "Beschränkt" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +msgid "Private" +msgstr "Privat" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:134 -#: ../../mod/blocks.php:102 ../../mod/layouts.php:125 -msgid "View" -msgstr "Ansicht" +#: ../../include/permissions.php:787 +msgid "Community Forum" +msgstr "Forum" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:608 -#: ../../include/conversation.php:1114 ../../mod/webpages.php:135 -#: ../../mod/photos.php:1015 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:174 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 -msgid "Preview" -msgstr "Vorschau" +#: ../../include/permissions.php:789 +msgid "Feed Republish" +msgstr "Teilen von Feeds" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 -msgid "Actions" -msgstr "Aktionen" +#: ../../include/permissions.php:791 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../include/permissions.php:792 +msgid "Celebrity/Soapbox" +msgstr "Mitteilungs-Kanal (keine Kommentare)" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 -msgid "Title" -msgstr "Titel" +#: ../../include/permissions.php:792 +msgid "Group Repository" +msgstr "Gruppenarchiv" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 -msgid "Created" -msgstr "Erstellt" +#: ../../include/permissions.php:793 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "Andere" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 -msgid "Edited" -msgstr "Geändert" +#: ../../include/permissions.php:794 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" +#: ../../include/activities.php:39 +msgid " and " +msgstr "und" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[no subject]" +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "öffentliches Profil" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." +#: ../../include/activities.php:52 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." +#: ../../include/activities.php:53 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Schlagwörter" +#: ../../include/activities.php:56 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Schlüsselwörter" +#: ../../include/bb2diaspora.php:384 +msgid "Attachments:" +msgstr "Anhänge:" -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "habe" +#: ../../include/auth.php:116 +msgid "Logged out." +msgstr "Ausgeloggt." -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "hat" +#: ../../include/auth.php:257 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "will" +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Login fehlgeschlagen." -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "will" +#: ../../include/RedDAV/RedBrowser.php:106 +#: ../../include/RedDAV/RedBrowser.php:249 +msgid "parent" +msgstr "Übergeordnetes Verzeichnis" -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:221 -msgid "like" -msgstr "mag" +#: ../../include/RedDAV/RedBrowser.php:130 +msgid "Collection" +msgstr "Ordner" -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "gefällt" +#: ../../include/RedDAV/RedBrowser.php:133 +msgid "Principal" +msgstr "Prinzipal" -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "verurteile" +#: ../../include/RedDAV/RedBrowser.php:136 +msgid "Addressbook" +msgstr "Adressbuch" -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "missfällt" +#: ../../include/RedDAV/RedBrowser.php:139 +msgid "Calendar" +msgstr "Kalender" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dieses Element löschen?" +#: ../../include/RedDAV/RedBrowser.php:142 +msgid "Schedule Inbox" +msgstr "Posteingang für überwachte Kalender" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 -#: ../../mod/photos.php:1013 ../../mod/photos.php:1100 -msgid "Comment" -msgstr "Kommentar" +#: ../../include/RedDAV/RedBrowser.php:145 +msgid "Schedule Outbox" +msgstr "Postausgang für überwachte Kalender" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:332 -msgid "[+] show all" -msgstr "[+] Zeige alle" +#: ../../include/RedDAV/RedBrowser.php:223 +#, php-format +msgid "%1$s used" +msgstr "%1$s verwendet" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] zeige weniger" +#: ../../include/RedDAV/RedBrowser.php:228 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s von %2$s verwendet (%3$s%)" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] aufklappen" +#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:520 +#: ../../mod/settings.php:546 ../../mod/admin.php:868 +msgid "Name" +msgstr "Name" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] einklappen" +#: ../../include/RedDAV/RedBrowser.php:246 +msgid "Type" +msgstr "Typ" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Kennwort zu kurz" +#: ../../include/RedDAV/RedBrowser.php:247 +msgid "Size" +msgstr "Größe" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Kennwörter stimmen nicht überein" +#: ../../include/RedDAV/RedBrowser.php:248 +msgid "Last Modified" +msgstr "Zuletzt geändert" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "alle" +#: ../../include/RedDAV/RedBrowser.php:252 +msgid "Total" +msgstr "Summe" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "geheime Passphrase" +#: ../../include/RedDAV/RedBrowser.php:305 +msgid "Create new folder" +msgstr "Neuen Ordner anlegen" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hinweis zur Passphrase" +#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:142 +#: ../../mod/menu.php:84 ../../mod/new_channel.php:122 +msgid "Create" +msgstr "Erstelle" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." +#: ../../include/RedDAV/RedBrowser.php:307 +msgid "Upload file" +msgstr "Datei hochladen" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alle schließen" +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:728 +#: ../../mod/photos.php:1237 ../../mod/profile_photo.php:361 +msgid "Upload" +msgstr "Hochladen" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nichts Neues hier" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" -#: ../../include/js_strings.php:20 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "Standard" -#: ../../include/js_strings.php:21 -msgid "timeago.prefixFromNow" -msgstr " " +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Häufig" -#: ../../include/js_strings.php:22 -msgid "ago" -msgstr "her" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" -#: ../../include/js_strings.php:23 -msgid "from now" -msgstr "von jetzt" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" -#: ../../include/js_strings.php:24 -msgid "less than a minute" -msgstr "weniger als eine Minute" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Täglich" -#: ../../include/js_strings.php:25 -msgid "about a minute" -msgstr "ungefähr eine Minute" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" -#: ../../include/js_strings.php:26 -#, php-format -msgid "%d minutes" -msgstr "%d Minuten" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" -#: ../../include/js_strings.php:27 -msgid "about an hour" -msgstr "ungefähr eine Stunde" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/js_strings.php:28 -#, php-format -msgid "about %d hours" -msgstr "ungefähr %d Stunden" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/js_strings.php:29 -msgid "a day" -msgstr "ein Tag" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d days" -msgstr "%d Tage" +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:728 +#: ../../mod/admin.php:737 ../../boot.php:1498 +msgid "Email" +msgstr "E-Mail" -#: ../../include/js_strings.php:31 -msgid "about a month" -msgstr "ungefähr ein Monat" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d months" -msgstr "%d Monate" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/js_strings.php:33 -msgid "about a year" -msgstr "ungefähr ein Jahr" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../include/js_strings.php:34 -#, php-format -msgid "%d years" -msgstr "%d Jahre" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/js_strings.php:35 -msgid " " -msgstr " " +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/js_strings.php:36 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../include/permissions.php:14 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 +msgid "Advanced" +msgstr "Fortgeschritten" -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" -msgstr "Kann meine Fotoalben betrachten" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Finde Kanäle" -#: ../../include/permissions.php:16 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" -#: ../../include/permissions.php:17 -msgid "Can view my file storage" -msgstr "Kann meine Dateiordner lesen" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" -#: ../../include/permissions.php:18 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 +#: ../../mod/directory.php:222 ../../mod/directory.php:227 +msgid "Find" +msgstr "Finde" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "Kanal-Vorschläge" -#: ../../include/permissions.php:23 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Zufallsprofil" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Lade Freunde ein" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" +#: ../../include/contact_widgets.php:32 +msgid "Exammple: name=fred and country=iceland" +msgstr "Beispiel: name=fred and country=deutschland" -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" +msgstr "Erweiterte Suche" -#: ../../include/permissions.php:26 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" +#: ../../include/contact_widgets.php:58 ../../include/features.php:72 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" -#: ../../include/permissions.php:28 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" +#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96 +#: ../../include/widgets.php:306 +msgid "Everything" +msgstr "Alles" -#: ../../include/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" +#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29 +msgid "Categories" +msgstr "Kategorien" -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" +#: ../../include/contact_widgets.php:126 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" -#: ../../include/permissions.php:30 -msgid "Can write to my file storage" -msgstr "Kann in meine Dateiordner schreiben" +#: ../../include/contact_widgets.php:131 +msgid "show more" +msgstr "mehr zeigen" -#: ../../include/permissions.php:31 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" -#: ../../include/permissions.php:33 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt" -#: ../../include/permissions.php:33 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt" -#: ../../include/permissions.php:35 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden" -#: ../../include/permissions.php:738 -msgid "Social Networking" -msgstr "Soziales Netzwerk" +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -#: ../../include/permissions.php:743 ../../include/permissions.php:745 -msgid "Mostly Public" -msgstr "Weitgehend öffentlich" +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Speichern der Account-Informationen fehlgeschlagen" -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -#: ../../include/permissions.php:743 -msgid "Restricted" -msgstr "Beschränkt" +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -msgid "Private" -msgstr "Privat" +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" -#: ../../include/permissions.php:740 -msgid "Community Forum" -msgstr "Forum" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Administrator" -#: ../../include/permissions.php:742 -msgid "Feed Republish" -msgstr "Teilen von Feeds" +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" -#: ../../include/permissions.php:744 -msgid "Celebrity/Soapbox" -msgstr "Mitteilungs-Kanal (keine Kommentare)" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" -#: ../../include/permissions.php:746 ../../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/account.php:406 +msgid "Account approved." +msgstr "Account bestätigt." -#: ../../include/permissions.php:747 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s widerrufen" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Häufig" +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Konto geprüft. Bitte melde Dich an!" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" +#: ../../include/account.php:647 ../../include/account.php:649 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" +#: ../../include/account.php:655 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Täglich" +#: ../../include/account.php:660 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" +#: ../../include/bbcode.php:112 ../../include/bbcode.php:653 +#: ../../include/bbcode.php:656 ../../include/bbcode.php:661 +#: ../../include/bbcode.php:664 ../../include/bbcode.php:667 +#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 +#: ../../include/bbcode.php:678 ../../include/bbcode.php:683 +#: ../../include/bbcode.php:686 ../../include/bbcode.php:689 +#: ../../include/bbcode.php:692 +msgid "Image/photo" +msgstr "Bild/Foto" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" +#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "Design-Element installieren:" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "QR-Code" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/bbcode.php:220 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/bbcode.php:222 +msgid "post" +msgstr "Beitrag" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/bbcode.php:621 +msgid "$1 spoiler" +msgstr "$1 Spoiler" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../include/bbcode.php:641 +msgid "$1 wrote:" +msgstr "$1 schrieb:" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/dir_fns.php:56 +msgid "Sort Options" +msgstr "Sortieroptionen" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/dir_fns.php:57 +msgid "Alphabetic" +msgstr "alphabetisch" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "Entgegengesetzt alphabetisch" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:439 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\\\, H:i" +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "Neueste zuerst" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:445 -msgid "Starts:" -msgstr "Beginnt:" +#: ../../include/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "Sichere Suche einschalten" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:453 -msgid "Finishes:" -msgstr "Endet:" +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "Sichere Suche ausschalten" -#: ../../include/event.php:326 -msgid "This event has been added to your calendar." -msgstr "Dieses Ereignis wurde zu Deinem Kalender hinzugefügt" +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" +msgstr "Sicherer Modus" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" -msgstr "Männlich" +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Schlagwörter" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" -msgstr "Weiblich" +#: ../../include/taxonomy.php:227 +msgid "Keywords" +msgstr "Schlüsselwörter" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momentan männlich" +#: ../../include/taxonomy.php:252 +msgid "have" +msgstr "habe" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momentan weiblich" +#: ../../include/taxonomy.php:252 +msgid "has" +msgstr "hat" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Größtenteils männlich" +#: ../../include/taxonomy.php:253 +msgid "want" +msgstr "will" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Größtenteils weiblich" +#: ../../include/taxonomy.php:253 +msgid "wants" +msgstr "will" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transsexuell" +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:221 +msgid "like" +msgstr "mag" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Zwischengeschlechtlich" +#: ../../include/taxonomy.php:254 +msgid "likes" +msgstr "gefällt" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuell" +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "verurteile" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Zwitter" +#: ../../include/taxonomy.php:255 +msgid "dislikes" +msgstr "missfällt" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Geschlechtslos" +#: ../../include/taxonomy.php:338 ../../include/identity.php:1141 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1019 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "unklar" +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "Red Matrix Benachrichtigung" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Unentschieden" +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "redmatrix" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Männer" +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "Danke." -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Frauen" +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Schwul" +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Keine Bevorzugung" +#: ../../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 hat Dir eine private Nachricht auf %3$s gesendet." -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisexuell" +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosexuell" +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "eine private Nachricht" -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Enthaltsam" +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Jungfräulich" +#: ../../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 hat [zrl=%3$s]a %4$s[/zrl] kommentiert" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Abweichend" +#: ../../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 hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisch" +#: ../../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 hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Unmengen" +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Sexlos" +#: ../../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 hat eine Unterhaltung kommentiert, der Du folgst." -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Single" +#: ../../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 "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." + +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" + +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" + +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" + +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" + +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" + +#: ../../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]hat Dich erwähnt[/zrl]." + +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" + +#: ../../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]hat Dich angestupst[/zrl]." + +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag getaggt" + +#: ../../include/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" + +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" + +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Benachrichtigung] Vorstellung erhalten" + +#: ../../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, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" + +#: ../../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, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." + +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kannst Dir das Profil unter %s ansehen" + +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." + +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" + +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" + +#: ../../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, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." + +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "Name:" + +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." + +#: ../../include/enotify.php:477 +msgid "[Red:Notify]" +msgstr "[Red:Benachrichtigung]" + +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Der Chatraum hat keinen Namen" + +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Name des Chatraums bereits vergeben" + +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ungültiger Raumbezeichner." + +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chatraum konnte nicht gefunden werden." + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Der Raum ist voll" + +#: ../../include/items.php:377 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 +#: ../../index.php:400 +msgid "Permission denied" +msgstr "Keine Berechtigung" + +#: ../../include/items.php:964 ../../include/items.php:1009 +msgid "(Unknown)" +msgstr "(Unbekannt)" + +#: ../../include/items.php:1165 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." + +#: ../../include/items.php:1167 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." + +#: ../../include/items.php:1169 +msgid "Visible to anybody in this network." +msgstr "Für jedes Mitglied der RedMatrix sichtbar." + +#: ../../include/items.php:1171 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." + +#: ../../include/items.php:1173 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." + +#: ../../include/items.php:1175 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." + +#: ../../include/items.php:1177 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." + +#: ../../include/items.php:1179 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." + +#: ../../include/items.php:3938 ../../mod/display.php:32 +#: ../../mod/filestorage.php:26 ../../mod/admin.php:168 +#: ../../mod/admin.php:898 ../../mod/admin.php:1101 ../../mod/thing.php:76 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Element nicht gefunden." + +#: ../../include/items.php:4391 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Sammlung nicht gefunden" + +#: ../../include/items.php:4406 +msgid "Collection is empty." +msgstr "Sammlung ist leer." + +#: ../../include/items.php:4413 +#, php-format +msgid "Collection: %s" +msgstr "Sammlung: %s" + +#: ../../include/items.php:4424 +#, php-format +msgid "Connection: %s" +msgstr "Verbindung: %s" + +#: ../../include/items.php:4427 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." + +#: ../../include/text.php:321 +msgid "prev" +msgstr "vorherige" + +#: ../../include/text.php:323 +msgid "first" +msgstr "erste" + +#: ../../include/text.php:352 +msgid "last" +msgstr "letzte" + +#: ../../include/text.php:355 +msgid "next" +msgstr "nächste" + +#: ../../include/text.php:367 +msgid "older" +msgstr "älter" + +#: ../../include/text.php:369 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:736 +msgid "No connections" +msgstr "Keine Verbindungen" + +#: ../../include/text.php:749 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d Verbindung" +msgstr[1] "%d Verbindungen" + +#: ../../include/text.php:762 +msgid "View Connections" +msgstr "Verbindungen anzeigen" + +#: ../../include/text.php:823 ../../include/text.php:835 +#: ../../include/widgets.php:193 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1341 +#: ../../mod/admin.php:1362 +msgid "Save" +msgstr "Speichern" + +#: ../../include/text.php:901 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:902 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:902 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:903 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:903 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:904 +msgid "slap" +msgstr "ohrfeigen" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Einsam" +#: ../../include/text.php:904 +msgid "slapped" +msgstr "ohrfeigte" -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Verfügbar" +#: ../../include/text.php:905 +msgid "finger" +msgstr "befummeln" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Nicht verfügbar" +#: ../../include/text.php:905 +msgid "fingered" +msgstr "befummelte" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Verguckt" +#: ../../include/text.php:906 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Verknallt" +#: ../../include/text.php:906 +msgid "rebuffed" +msgstr "zurückgewiesen" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Lerne gerade jemanden kennen" +#: ../../include/text.php:915 +msgid "happy" +msgstr "glücklich" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Treulos" +#: ../../include/text.php:916 +msgid "sad" +msgstr "traurig" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Sexabhängig" +#: ../../include/text.php:917 +msgid "mellow" +msgstr "sanft" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Freunde/Begünstigte" +#: ../../include/text.php:918 +msgid "tired" +msgstr "müde" -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Lose" +#: ../../include/text.php:919 +msgid "perky" +msgstr "frech" -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Verlobt" +#: ../../include/text.php:920 +msgid "angry" +msgstr "sauer" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Verheiratet" +#: ../../include/text.php:921 +msgid "stupified" +msgstr "verblüfft" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Gewissermaßen verheiratet" +#: ../../include/text.php:922 +msgid "puzzled" +msgstr "verwirrt" -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partner" +#: ../../include/text.php:923 +msgid "interested" +msgstr "interessiert" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Lebensgemeinschaft" +#: ../../include/text.php:924 +msgid "bitter" +msgstr "verbittert" -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Informelle Ehe" +#: ../../include/text.php:925 +msgid "cheerful" +msgstr "fröhlich" -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Glücklich" +#: ../../include/text.php:926 +msgid "alive" +msgstr "lebendig" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Nicht Ausschau haltend" +#: ../../include/text.php:927 +msgid "annoyed" +msgstr "verärgert" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" +#: ../../include/text.php:928 +msgid "anxious" +msgstr "unruhig" -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Betrogen" +#: ../../include/text.php:929 +msgid "cranky" +msgstr "schrullig" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Getrennt" +#: ../../include/text.php:930 +msgid "disturbed" +msgstr "verstört" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Labil" +#: ../../include/text.php:931 +msgid "frustrated" +msgstr "frustriert" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Geschieden" +#: ../../include/text.php:932 +msgid "depressed" +msgstr "deprimiert" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Gewissermaßen geschieden" +#: ../../include/text.php:933 +msgid "motivated" +msgstr "motiviert" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Verwitwet" +#: ../../include/text.php:934 +msgid "relaxed" +msgstr "entspannt" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Ungewiss" +#: ../../include/text.php:935 +msgid "surprised" +msgstr "überrascht" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Es ist kompliziert" +#: ../../include/text.php:1099 +msgid "Monday" +msgstr "Montag" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Interessiert mich nicht" +#: ../../include/text.php:1099 +msgid "Tuesday" +msgstr "Dienstag" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Frag mich mal" +#: ../../include/text.php:1099 +msgid "Wednesday" +msgstr "Mittwoch" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" +#: ../../include/text.php:1099 +msgid "Thursday" +msgstr "Donnerstag" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt" +#: ../../include/text.php:1099 +msgid "Friday" +msgstr "Freitag" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." +#: ../../include/text.php:1099 +msgid "Saturday" +msgstr "Samstag" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt" +#: ../../include/text.php:1099 +msgid "Sunday" +msgstr "Sonntag" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden" +#: ../../include/text.php:1103 +msgid "January" +msgstr "Januar" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." +#: ../../include/text.php:1103 +msgid "February" +msgstr "Februar" -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Speichern der Account-Informationen fehlgeschlagen" +#: ../../include/text.php:1103 +msgid "March" +msgstr "März" -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" +#: ../../include/text.php:1103 +msgid "April" +msgstr "April" -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" +#: ../../include/text.php:1103 +msgid "May" +msgstr "Mai" -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administrator" +#: ../../include/text.php:1103 +msgid "June" +msgstr "Juni" -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" +#: ../../include/text.php:1103 +msgid "July" +msgstr "Juli" -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" +#: ../../include/text.php:1103 +msgid "August" +msgstr "August" -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account bestätigt." +#: ../../include/text.php:1103 +msgid "September" +msgstr "September" -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s widerrufen" +#: ../../include/text.php:1103 +msgid "October" +msgstr "Oktober" -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Konto geprüft. Bitte melde Dich an!" +#: ../../include/text.php:1103 +msgid "November" +msgstr "November" -#: ../../include/account.php:647 ../../include/account.php:649 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." +#: ../../include/text.php:1103 +msgid "December" +msgstr "Dezember" -#: ../../include/account.php:655 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." +#: ../../include/text.php:1181 +msgid "unknown.???" +msgstr "unbekannt.???" -#: ../../include/account.php:660 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." +#: ../../include/text.php:1182 +msgid "bytes" +msgstr "Bytes" -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" +#: ../../include/text.php:1221 +msgid "remove category" +msgstr "Kategorie entfernen" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" +#: ../../include/text.php:1291 +msgid "remove from file" +msgstr "aus der Datei entfernen" -#: ../../include/zot.php:655 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" +#: ../../include/text.php:1356 ../../include/text.php:1368 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/zot.php:671 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" +#: ../../include/text.php:1523 ../../mod/events.php:409 +msgid "Link to Source" +msgstr "Link zur Quelle" -#: ../../include/zot.php:1757 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +#: ../../include/text.php:1542 +msgid "Select a page layout: " +msgstr "Ein Seiten-Layout auswählen:" -#: ../../include/network.php:590 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" +#: ../../include/text.php:1545 ../../include/text.php:1610 +msgid "default" +msgstr "Standard" -#: ../../include/dba/dba_driver.php:50 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" +#: ../../include/text.php:1581 +msgid "Page content type: " +msgstr "Content-Typ der Seite:" -#: ../../include/group.php:25 -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 "Ein gelöschte Gruppe mit diesem Namen wurde gefunden. Existierende Zugangsregeln für Elemente könnten für diese Gruppe angewendet werden, sowie für alle zukünftigen Elemente." +#: ../../include/text.php:1622 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" -#: ../../include/group.php:234 -msgid "Default privacy group for new contacts" -msgstr "Standard-Privatsphärengruppe für neue Kontakte" +#: ../../include/text.php:1756 +msgid "activity" +msgstr "Aktivität" -#: ../../include/group.php:253 ../../mod/admin.php:737 -msgid "All Channels" -msgstr "Alle Kanäle" +#: ../../include/text.php:2028 +msgid "Design" +msgstr "Design" -#: ../../include/group.php:275 -msgid "edit" -msgstr "Bearbeiten" +#: ../../include/text.php:2030 +msgid "Blocks" +msgstr "Blöcke" -#: ../../include/group.php:297 -msgid "Collections" -msgstr "Sammlungen" +#: ../../include/text.php:2031 +msgid "Menus" +msgstr "Menüs" -#: ../../include/group.php:298 -msgid "Edit collection" -msgstr "Bearbeite Sammlungen" +#: ../../include/text.php:2032 +msgid "Layouts" +msgstr "Layouts" -#: ../../include/group.php:299 -msgid "Create a new collection" -msgstr "Neue Sammlung erzeugen" +#: ../../include/text.php:2033 +msgid "Pages" +msgstr "Seiten" -#: ../../include/group.php:300 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Allgemeine Funktionen" -#: ../../include/group.php:302 ../../include/widgets.php:273 -msgid "add" -msgstr "hinzufügen" +#: ../../include/features.php:25 +msgid "Content Expiration" +msgstr "Verfall von Inhalten" -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum." -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "Keine Quelldatei." +#: ../../include/features.php:26 +msgid "Multiple Profiles" +msgstr "Mehrfachprofile" -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" +msgstr "Mehrfachprofile anlegen können" -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" +#: ../../include/features.php:27 +msgid "Advanced Profiles" +msgstr "Erweiterte Profile" -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" +#: ../../include/features.php:27 +msgid "Additional profile sections and selections" +msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." +#: ../../include/features.php:28 +msgid "Profile Import/Export" +msgstr "Profil-Import/Export" -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." +#: ../../include/features.php:28 +msgid "Save and load profile details across sites/channels" +msgstr "Speichere Dein Profil, um es in einen anderen Kanal zu importieren" -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." +#: ../../include/features.php:29 +msgid "Web Pages" +msgstr "Webseiten" -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." +#: ../../include/features.php:29 +msgid "Provide managed web pages on your channel" +msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung" -#: ../../include/attach.php:589 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" +#: ../../include/features.php:30 +msgid "Private Notes" +msgstr "Private Notizen" -#: ../../include/attach.php:605 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" +#: ../../include/features.php:30 +msgid "Enables a tool to store notes and reminders" +msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren" -#: ../../include/attach.php:629 -msgid "Path not found." -msgstr "Pfad nicht gefunden." +#: ../../include/features.php:34 +msgid "Navigation Channel Select" +msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/attach.php:680 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." +#: ../../include/features.php:34 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" -#: ../../include/attach.php:684 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." +#: ../../include/features.php:38 +msgid "Extended Identity Sharing" +msgstr "Erweitertes Teilen von Identitäten" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:645 -#: ../../mod/photos.php:862 -msgid "Private Message" -msgstr "Private Nachricht" +#: ../../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 "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt." -#: ../../include/ItemObject.php:126 ../../include/conversation.php:637 -msgid "Select" -msgstr "Auswählen" +#: ../../include/features.php:39 +msgid "Expert Mode" +msgstr "Expertenmodus" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In Ordner speichern" +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -msgid "View all" -msgstr "Alles anzeigen" +#: ../../include/features.php:40 +msgid "Premium Channel" +msgstr "Premium-Kanal" -#: ../../include/ItemObject.php:151 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" +#: ../../include/features.php:40 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ermöglicht Einschränkungen und Bedingungen für Kontakte dieses Kanals" + +#: ../../include/features.php:45 +msgid "Post Composition Features" +msgstr "Nachbearbeitungsfunktionen" -#: ../../include/ItemObject.php:179 -msgid "Add Star" -msgstr "Stern hinzufügen" +#: ../../include/features.php:47 +msgid "Use Markdown" +msgstr "Markdown benutzen" -#: ../../include/ItemObject.php:180 -msgid "Remove Star" -msgstr "Stern entfernen" +#: ../../include/features.php:47 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Erlaube Markdown zur Formatierung von Beiträgen" -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" -msgstr "Stern-Status umschalten" +#: ../../include/features.php:48 +msgid "Post Preview" +msgstr "Voransicht" -#: ../../include/ItemObject.php:185 -msgid "starred" -msgstr "markiert" +#: ../../include/features.php:48 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung" -#: ../../include/ItemObject.php:194 ../../include/conversation.php:652 -msgid "Message signature validated" -msgstr "Signatur überprüft" +#: ../../include/features.php:49 ../../include/widgets.php:513 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanal-Quellen" -#: ../../include/ItemObject.php:195 ../../include/conversation.php:653 -msgid "Message signature incorrect" -msgstr "Signatur nicht korrekt" +#: ../../include/features.php:49 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/ItemObject.php:203 -msgid "Add Tag" -msgstr "Tag hinzufügen" +#: ../../include/features.php:50 +msgid "Even More Encryption" +msgstr "Noch mehr Verschlüsselung" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:992 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" +#: ../../include/features.php:50 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:993 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" +#: ../../include/features.php:55 +msgid "Network and Stream Filtering" +msgstr "Netzwerk- und Stream-Filter" -#: ../../include/ItemObject.php:226 -msgid "Share This" -msgstr "Teilen" +#: ../../include/features.php:56 +msgid "Search by Date" +msgstr "Suche nach Datum" -#: ../../include/ItemObject.php:226 -msgid "share" -msgstr "Teilen" +#: ../../include/features.php:56 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 -#, php-format -msgid "View %s's profile - %s" -msgstr "Schaue Dir %ss Profil an – %s" +#: ../../include/features.php:57 +msgid "Collections Filter" +msgstr "Filter für Sammlung" -#: ../../include/ItemObject.php:251 -msgid "to" -msgstr "an" +#: ../../include/features.php:57 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen" -#: ../../include/ItemObject.php:252 -msgid "via" -msgstr "via" +#: ../../include/features.php:58 ../../include/widgets.php:272 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" -#: ../../include/ItemObject.php:253 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" +#: ../../include/features.php:58 +msgid "Save search terms for re-use" +msgstr "Suchbegriffe zur Wiederverwendung abspeichern" -#: ../../include/ItemObject.php:254 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" +#: ../../include/features.php:59 +msgid "Network Personal Tab" +msgstr "Persönlicher Netzwerkreiter" -#: ../../include/ItemObject.php:265 ../../include/conversation.php:698 -#, php-format -msgid " from %s" -msgstr "von %s" +#: ../../include/features.php:59 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast" -#: ../../include/ItemObject.php:268 ../../include/conversation.php:701 -#, php-format -msgid "last edited: %s" -msgstr "zuletzt bearbeitet: %s" +#: ../../include/features.php:60 +msgid "Network New Tab" +msgstr "Netzwerkreiter Neu" -#: ../../include/ItemObject.php:269 ../../include/conversation.php:702 -#, php-format -msgid "Expires: %s" -msgstr "Verfällt: %s" +#: ../../include/features.php:60 +msgid "Enable tab to display all new Network activity" +msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" -#: ../../include/ItemObject.php:290 -msgid "Save Bookmarks" -msgstr "Favoriten speichern" +#: ../../include/features.php:61 +msgid "Affinity Tool" +msgstr "Beziehungs-Tool" -#: ../../include/ItemObject.php:291 -msgid "Add to Calendar" -msgstr "Zum Kalender hinzufügen" +#: ../../include/features.php:61 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" -#: ../../include/ItemObject.php:299 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" +#: ../../include/features.php:62 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" -#: ../../include/ItemObject.php:300 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" +#: ../../include/features.php:62 +msgid "Show channel suggestions" +msgstr "Kanal-Vorschläge anzeigen" -#: ../../include/ItemObject.php:305 ../../include/acl_selectors.php:249 -msgid "Close" -msgstr "Schließen" +#: ../../include/features.php:67 +msgid "Post/Comment Tools" +msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/ItemObject.php:310 ../../include/conversation.php:719 -#: ../../include/conversation.php:1153 ../../mod/photos.php:995 -#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 -#: ../../mod/mail.php:234 ../../mod/mail.php:349 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 -msgid "Please wait" -msgstr "Bitte warten" +#: ../../include/features.php:69 +msgid "Edit Sent Posts" +msgstr "Bearbeite gesendete Beiträge" -#: ../../include/ItemObject.php:331 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" +#: ../../include/features.php:69 +msgid "Edit and correct posts and comments after sending" +msgstr "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden" -#: ../../include/ItemObject.php:596 ../../mod/photos.php:1011 -#: ../../mod/photos.php:1098 -msgid "This is you" -msgstr "Das bist Du" +#: ../../include/features.php:70 +msgid "Tagging" +msgstr "Verschlagworten" -#: ../../include/ItemObject.php:600 -msgid "Bold" -msgstr "Fett" +#: ../../include/features.php:70 +msgid "Ability to tag existing posts" +msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" -#: ../../include/ItemObject.php:601 -msgid "Italic" -msgstr "Kursiv" +#: ../../include/features.php:71 +msgid "Post Categories" +msgstr "Beitrags-Kategorien" -#: ../../include/ItemObject.php:602 -msgid "Underline" -msgstr "Unterstrichen" +#: ../../include/features.php:71 +msgid "Add categories to your posts" +msgstr "Kategorien für Beiträge" -#: ../../include/ItemObject.php:603 -msgid "Quote" -msgstr "Zitat" +#: ../../include/features.php:72 +msgid "Ability to file posts under folders" +msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/ItemObject.php:604 -msgid "Code" -msgstr "Code" +#: ../../include/features.php:73 +msgid "Dislike Posts" +msgstr "Gefällt-mir-nicht Beiträge" -#: ../../include/ItemObject.php:605 -msgid "Image" -msgstr "Bild" +#: ../../include/features.php:73 +msgid "Ability to dislike posts/comments" +msgstr "„Gefällt mir nicht“ ermöglichen" -#: ../../include/ItemObject.php:606 -msgid "Link" -msgstr "Link" +#: ../../include/features.php:74 +msgid "Star Posts" +msgstr "Beiträge mit Sternchen versehen" -#: ../../include/ItemObject.php:607 -msgid "Video" -msgstr "Video" +#: ../../include/features.php:74 +msgid "Ability to mark special posts with a star indicator" +msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren" -#: ../../include/ItemObject.php:611 ../../include/conversation.php:1179 -#: ../../mod/editpost.php:148 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Encrypt text" -msgstr "Text verschlüsseln" +#: ../../include/features.php:75 +msgid "Tag Cloud" +msgstr "Schlagwort-Wolke" -#: ../../include/security.php:320 -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 "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." +#: ../../include/features.php:75 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" -#: ../../include/text.php:321 -msgid "prev" -msgstr "vorherige" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " -#: ../../include/text.php:323 -msgid "first" -msgstr "erste" +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." -#: ../../include/text.php:352 -msgid "last" -msgstr "letzte" +#: ../../include/follow.php:86 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." -#: ../../include/text.php:355 -msgid "next" -msgstr "nächste" +#: ../../include/follow.php:103 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." -#: ../../include/text.php:367 -msgid "older" -msgstr "älter" +#: ../../include/follow.php:139 ../../include/follow.php:208 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." -#: ../../include/text.php:369 -msgid "newer" -msgstr "neuer" +#: ../../include/follow.php:182 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" + +#: ../../include/follow.php:198 +msgid "local account not found." +msgstr "Lokales Konto nicht gefunden." -#: ../../include/text.php:736 -msgid "No connections" -msgstr "Keine Verbindungen" +#: ../../include/follow.php:225 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." -#: ../../include/text.php:749 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Verbindung" -msgstr[1] "%d Verbindungen" +#: ../../include/group.php:25 +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 "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen." -#: ../../include/text.php:762 -msgid "View Connections" -msgstr "Verbindungen anzeigen" +#: ../../include/group.php:234 +msgid "Default privacy group for new contacts" +msgstr "Standard-Sammlung für neue Kontakte" -#: ../../include/text.php:822 ../../include/text.php:834 -#: ../../include/nav.php:173 ../../include/apps.php:145 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "Suche" +#: ../../include/group.php:253 ../../mod/admin.php:737 +msgid "All Channels" +msgstr "Alle Kanäle" -#: ../../include/text.php:823 ../../include/text.php:835 -#: ../../include/widgets.php:193 ../../mod/admin.php:1341 -#: ../../mod/admin.php:1362 ../../mod/filer.php:50 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 -msgid "Save" -msgstr "Speichern" +#: ../../include/group.php:275 +msgid "edit" +msgstr "Bearbeiten" -#: ../../include/text.php:901 -msgid "poke" -msgstr "anstupsen" +#: ../../include/group.php:297 +msgid "Collections" +msgstr "Sammlungen" -#: ../../include/text.php:901 ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" +#: ../../include/group.php:298 +msgid "Edit collection" +msgstr "Sammlung bearbeiten" -#: ../../include/text.php:902 -msgid "ping" -msgstr "anpingen" +#: ../../include/group.php:299 +msgid "Create a new collection" +msgstr "Neue Sammlung erzeugen" -#: ../../include/text.php:902 -msgid "pinged" -msgstr "pingte" +#: ../../include/group.php:300 +msgid "Channels not in any collection" +msgstr "Kanäle, die nicht in einer Sammlung sind" -#: ../../include/text.php:903 -msgid "prod" -msgstr "knuffen" +#: ../../include/group.php:302 ../../include/widgets.php:273 +msgid "add" +msgstr "hinzufügen" -#: ../../include/text.php:903 -msgid "prodded" -msgstr "knuffte" +#: ../../include/identity.php:31 ../../mod/item.php:1358 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/text.php:904 -msgid "slap" -msgstr "ohrfeigen" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Namensfeld leer" -#: ../../include/text.php:904 -msgid "slapped" -msgstr "ohrfeigte" +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "Name ist zu lang" -#: ../../include/text.php:905 -msgid "finger" -msgstr "befummeln" +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Keine Account-Kennung" -#: ../../include/text.php:905 -msgid "fingered" -msgstr "befummelte" +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." -#: ../../include/text.php:906 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." -#: ../../include/text.php:906 -msgid "rebuffed" -msgstr "zurückgewiesen" +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." -#: ../../include/text.php:915 -msgid "happy" -msgstr "glücklich" +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" -#: ../../include/text.php:916 -msgid "sad" -msgstr "traurig" +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "Standard-Profil" -#: ../../include/text.php:917 -msgid "mellow" -msgstr "sanft" +#: ../../include/identity.php:382 ../../include/identity.php:383 +#: ../../include/identity.php:390 ../../include/widgets.php:407 +#: ../../include/profile_selectors.php:80 ../../mod/settings.php:304 +#: ../../mod/settings.php:308 ../../mod/settings.php:309 +#: ../../mod/settings.php:312 ../../mod/settings.php:323 +#: ../../mod/connedit.php:501 +msgid "Friends" +msgstr "Freunde" -#: ../../include/text.php:918 -msgid "tired" -msgstr "müde" +#: ../../include/identity.php:638 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../include/text.php:919 -msgid "perky" -msgstr "frech" +#: ../../include/identity.php:686 ../../mod/achievements.php:11 +#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 +#: ../../mod/webpages.php:8 ../../mod/filestorage.php:48 +#: ../../mod/layouts.php:8 ../../mod/hcard.php:8 +msgid "Requested profile is not available." +msgstr "Erwünschte Profil ist nicht verfügbar." -#: ../../include/text.php:920 -msgid "angry" -msgstr "sauer" +#: ../../include/identity.php:849 ../../mod/profiles.php:722 +msgid "Change profile photo" +msgstr "Profilfoto ändern" -#: ../../include/text.php:921 -msgid "stupified" -msgstr "verblüfft" +#: ../../include/identity.php:855 +msgid "Profiles" +msgstr "Profile" -#: ../../include/text.php:922 -msgid "puzzled" -msgstr "verwirrt" +#: ../../include/identity.php:855 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/bearbeiten" -#: ../../include/text.php:923 -msgid "interested" -msgstr "interessiert" +#: ../../include/identity.php:856 ../../mod/profiles.php:723 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" -#: ../../include/text.php:924 -msgid "bitter" -msgstr "verbittert" +#: ../../include/identity.php:859 ../../include/nav.php:103 +msgid "Edit Profile" +msgstr "Profile bearbeiten" -#: ../../include/text.php:925 -msgid "cheerful" -msgstr "fröhlich" +#: ../../include/identity.php:870 ../../mod/profiles.php:734 +msgid "Profile Image" +msgstr "Profilfoto:" -#: ../../include/text.php:926 -msgid "alive" -msgstr "lebendig" +#: ../../include/identity.php:873 +msgid "visible to everybody" +msgstr "sichtbar für jeden" -#: ../../include/text.php:927 -msgid "annoyed" -msgstr "verärgert" +#: ../../include/identity.php:874 ../../mod/profiles.php:617 +#: ../../mod/profiles.php:738 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" -#: ../../include/text.php:928 -msgid "anxious" -msgstr "unruhig" +#: ../../include/identity.php:888 ../../include/identity.php:1125 +#: ../../mod/directory.php:158 +msgid "Gender:" +msgstr "Geschlecht:" -#: ../../include/text.php:929 -msgid "cranky" -msgstr "schrullig" +#: ../../include/identity.php:889 ../../include/identity.php:1169 +#: ../../mod/directory.php:160 +msgid "Status:" +msgstr "Status:" -#: ../../include/text.php:930 -msgid "disturbed" -msgstr "verstört" +#: ../../include/identity.php:890 ../../include/identity.php:1180 +#: ../../mod/directory.php:162 +msgid "Homepage:" +msgstr "Homepage:" -#: ../../include/text.php:931 -msgid "frustrated" -msgstr "frustriert" +#: ../../include/identity.php:891 ../../mod/dirprofile.php:151 +msgid "Online Now" +msgstr "gerade online" -#: ../../include/text.php:932 -msgid "depressed" -msgstr "deprimiert" +#: ../../include/identity.php:969 ../../include/identity.php:1049 +#: ../../mod/ping.php:298 +msgid "g A l F d" +msgstr "l, d. F G \\\\U\\\\h\\\\r" -#: ../../include/text.php:933 -msgid "motivated" -msgstr "motiviert" +#: ../../include/identity.php:970 ../../include/identity.php:1050 +msgid "F d" +msgstr "d. F" -#: ../../include/text.php:934 -msgid "relaxed" -msgstr "entspannt" +#: ../../include/identity.php:1015 ../../include/identity.php:1090 +#: ../../mod/ping.php:320 +msgid "[today]" +msgstr "[Heute]" -#: ../../include/text.php:935 -msgid "surprised" -msgstr "überrascht" +#: ../../include/identity.php:1027 +msgid "Birthday Reminders" +msgstr "Geburtstags Erinnerungen" -#: ../../include/text.php:1099 -msgid "Monday" -msgstr "Montag" +#: ../../include/identity.php:1028 +msgid "Birthdays this week:" +msgstr "Geburtstage in dieser Woche:" -#: ../../include/text.php:1099 -msgid "Tuesday" -msgstr "Dienstag" +#: ../../include/identity.php:1083 +msgid "[No description]" +msgstr "[Keine Beschreibung]" -#: ../../include/text.php:1099 -msgid "Wednesday" -msgstr "Mittwoch" +#: ../../include/identity.php:1101 +msgid "Event Reminders" +msgstr "Veranstaltungs- Erinnerungen" -#: ../../include/text.php:1099 -msgid "Thursday" -msgstr "Donnerstag" +#: ../../include/identity.php:1102 +msgid "Events this week:" +msgstr "Veranstaltungen in dieser Woche:" -#: ../../include/text.php:1099 -msgid "Friday" -msgstr "Freitag" +#: ../../include/identity.php:1123 ../../mod/settings.php:947 +msgid "Full Name:" +msgstr "Voller Name:" -#: ../../include/text.php:1099 -msgid "Saturday" -msgstr "Samstag" +#: ../../include/identity.php:1130 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" -#: ../../include/text.php:1099 -msgid "Sunday" -msgstr "Sonntag" +#: ../../include/identity.php:1154 +msgid "j F, Y" +msgstr "j. F Y" -#: ../../include/text.php:1103 -msgid "January" -msgstr "Januar" +#: ../../include/identity.php:1155 +msgid "j F" +msgstr "j. F" -#: ../../include/text.php:1103 -msgid "February" -msgstr "Februar" +#: ../../include/identity.php:1162 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/identity.php:1166 +msgid "Age:" +msgstr "Alter:" -#: ../../include/text.php:1103 -msgid "March" -msgstr "März" +#: ../../include/identity.php:1175 +#, php-format +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" -#: ../../include/text.php:1103 -msgid "April" -msgstr "April" +#: ../../include/identity.php:1178 ../../mod/profiles.php:639 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" -#: ../../include/text.php:1103 -msgid "May" -msgstr "Mai" +#: ../../include/identity.php:1182 ../../mod/profiles.php:641 +msgid "Hometown:" +msgstr "Heimatstadt:" -#: ../../include/text.php:1103 -msgid "June" -msgstr "Juni" +#: ../../include/identity.php:1184 +msgid "Tags:" +msgstr "Schlagworte:" -#: ../../include/text.php:1103 -msgid "July" -msgstr "Juli" +#: ../../include/identity.php:1186 ../../mod/profiles.php:642 +msgid "Political Views:" +msgstr "Politische Ansichten:" -#: ../../include/text.php:1103 -msgid "August" -msgstr "August" +#: ../../include/identity.php:1188 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/text.php:1103 -msgid "September" -msgstr "September" +#: ../../include/identity.php:1190 ../../mod/directory.php:164 +msgid "About:" +msgstr "Über:" -#: ../../include/text.php:1103 -msgid "October" -msgstr "Oktober" +#: ../../include/identity.php:1192 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" -#: ../../include/text.php:1103 -msgid "November" -msgstr "November" +#: ../../include/identity.php:1194 ../../mod/profiles.php:645 +msgid "Likes:" +msgstr "Gefällt:" -#: ../../include/text.php:1103 -msgid "December" -msgstr "Dezember" +#: ../../include/identity.php:1196 ../../mod/profiles.php:646 +msgid "Dislikes:" +msgstr "Gefällt nicht:" -#: ../../include/text.php:1181 -msgid "unknown.???" -msgstr "unbekannt.???" +#: ../../include/identity.php:1199 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/text.php:1182 -msgid "bytes" -msgstr "Bytes" +#: ../../include/identity.php:1201 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" -#: ../../include/text.php:1221 -msgid "remove category" -msgstr "Kategorie entfernen" +#: ../../include/identity.php:1203 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" -#: ../../include/text.php:1291 -msgid "remove from file" -msgstr "aus der Datei entfernen" +#: ../../include/identity.php:1205 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" -#: ../../include/text.php:1356 ../../include/text.php:1368 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" +#: ../../include/identity.php:1207 +msgid "Television:" +msgstr "Fernsehen:" -#: ../../include/text.php:1523 ../../mod/events.php:414 -msgid "Link to Source" -msgstr "Link zur Quelle" +#: ../../include/identity.php:1209 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/text.php:1542 -msgid "Select a page layout: " -msgstr "Ein Seiten-Layout auswählen:" +#: ../../include/identity.php:1211 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" -#: ../../include/text.php:1545 ../../include/text.php:1610 -msgid "default" -msgstr "Standard" +#: ../../include/identity.php:1213 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" -#: ../../include/text.php:1581 -msgid "Page content type: " -msgstr "Content-Typ der Seite:" +#: ../../include/identity.php:1215 +msgid "School/education:" +msgstr "Schule/Ausbildung:" -#: ../../include/text.php:1622 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" +#: ../../include/identity.php:1235 +msgid "Like this thing" +msgstr "Gefällt mir" -#: ../../include/text.php:1743 ../../include/conversation.php:120 -#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:294 -msgid "photo" -msgstr "Foto" +#: ../../include/widgets.php:86 ../../include/nav.php:171 +#: ../../mod/apps.php:33 +msgid "Apps" +msgstr "Apps" -#: ../../include/text.php:1746 ../../include/conversation.php:123 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "Ereignis" +#: ../../include/widgets.php:87 +msgid "System" +msgstr "System" -#: ../../include/text.php:1749 ../../include/conversation.php:148 -#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:294 -msgid "status" -msgstr "Status" +#: ../../include/widgets.php:90 +msgid "Create Personal App" +msgstr "Persönliche App erstellen" -#: ../../include/text.php:1751 ../../include/conversation.php:150 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "Kommentar" +#: ../../include/widgets.php:91 +msgid "Edit Personal App" +msgstr "Persönliche App bearbeiten" -#: ../../include/text.php:1756 -msgid "activity" -msgstr "Aktivität" +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" -#: ../../include/text.php:2028 -msgid "Design" -msgstr "Design" +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../include/text.php:2030 -msgid "Blocks" -msgstr "Blöcke" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Mehr anzeigen …" -#: ../../include/text.php:2031 -msgid "Menus" -msgstr "Menüs" +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." -#: ../../include/text.php:2032 -msgid "Layouts" -msgstr "Layouts" +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" -#: ../../include/text.php:2033 -msgid "Pages" -msgstr "Seiten" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Adresse des Kanals eingeben" -#: ../../include/dir_fns.php:56 -msgid "Sort Options" -msgstr "Sortieroptionen" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" -#: ../../include/dir_fns.php:57 -msgid "Alphabetic" -msgstr "alphabetisch" +#: ../../include/widgets.php:191 +msgid "Notes" +msgstr "Notizen" -#: ../../include/dir_fns.php:58 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" +#: ../../include/widgets.php:263 +msgid "Remove term" +msgstr "Eintrag löschen" -#: ../../include/dir_fns.php:59 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" +#: ../../include/widgets.php:342 +msgid "Archives" +msgstr "Archive" -#: ../../include/dir_fns.php:71 -msgid "Enable Safe Search" -msgstr "Sichere Suche einschalten" +#: ../../include/widgets.php:404 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../include/dir_fns.php:73 -msgid "Disable Safe Search" -msgstr "Sichere Suche ausschalten" +#: ../../include/widgets.php:405 ../../mod/connedit.php:498 +msgid "Me" +msgstr "Ich" -#: ../../include/dir_fns.php:75 -msgid "Safe Mode" -msgstr "Sicherer Modus" +#: ../../include/widgets.php:406 ../../mod/connedit.php:500 +msgid "Best Friends" +msgstr "Beste Freunde" -#: ../../include/bbcode.php:112 ../../include/bbcode.php:653 -#: ../../include/bbcode.php:656 ../../include/bbcode.php:661 -#: ../../include/bbcode.php:664 ../../include/bbcode.php:667 -#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 -#: ../../include/bbcode.php:678 ../../include/bbcode.php:683 -#: ../../include/bbcode.php:686 ../../include/bbcode.php:689 -#: ../../include/bbcode.php:692 -msgid "Image/photo" -msgstr "Bild/Foto" +#: ../../include/widgets.php:408 +msgid "Co-workers" +msgstr "Kollegen" -#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" +#: ../../include/widgets.php:409 ../../mod/connedit.php:502 +msgid "Former Friends" +msgstr "ehem. Freunde" -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "Design-Element installieren:" +#: ../../include/widgets.php:410 ../../mod/connedit.php:503 +msgid "Acquaintances" +msgstr "Bekannte" -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "QR-Code" +#: ../../include/widgets.php:411 +msgid "Everybody" +msgstr "Jeder" -#: ../../include/bbcode.php:220 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" +#: ../../include/widgets.php:445 +msgid "Account settings" +msgstr "Konto-Einstellungen" -#: ../../include/bbcode.php:222 -msgid "post" -msgstr "Beitrag" +#: ../../include/widgets.php:451 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" -#: ../../include/bbcode.php:621 -msgid "$1 spoiler" -msgstr "$1 Spoiler" +#: ../../include/widgets.php:457 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" -#: ../../include/bbcode.php:641 -msgid "$1 wrote:" -msgstr "$1 schrieb:" +#: ../../include/widgets.php:463 +msgid "Feature settings" +msgstr "Funktions-Einstellungen" -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Red Matrix Benachrichtigung" +#: ../../include/widgets.php:469 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" +#: ../../include/widgets.php:475 +msgid "Connected apps" +msgstr "Verbundene Apps" -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Danke." +#: ../../include/widgets.php:481 +msgid "Export channel" +msgstr "Kanal exportieren" -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" +#: ../../include/widgets.php:487 +msgid "Export content" +msgstr "Kanal-Inhalte exportieren" -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../include/widgets.php:496 +msgid "Automatic Permissions (Advanced)" +msgstr "Automatische Berechtigungen (Erweitert)" -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" +#: ../../include/widgets.php:504 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" -#: ../../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 hat Dir eine private Nachricht auf %3$s gesendet." +#: ../../include/widgets.php:538 ../../mod/mail.php:124 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Nachrichten" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." +#: ../../include/widgets.php:543 +msgid "Check Mail" +msgstr "E-Mails abrufen" -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "eine private Nachricht" +#: ../../include/widgets.php:548 ../../include/nav.php:209 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." +#: ../../include/widgets.php:624 +msgid "Chat Rooms" +msgstr "Chaträume" -#: ../../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 hat [zrl=%3$s]a %4$s[/zrl] kommentiert" +#: ../../include/widgets.php:642 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" -#: ../../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 hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" +#: ../../include/widgets.php:660 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" -#: ../../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 hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Neues Fenster" -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" -#: ../../include/enotify.php:173 +#: ../../include/Contact.php:211 ../../mod/admin.php:649 #, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" -#: ../../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 "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" +#: ../../include/datetime.php:238 +msgid "never" +msgstr "Nie" -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" +#: ../../include/datetime.php:247 +msgid "year" +msgstr "Jahr" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" +#: ../../include/datetime.php:247 +msgid "years" +msgstr "Jahre" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" +#: ../../include/datetime.php:248 +msgid "month" +msgstr "Monat" -#: ../../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]hat Dich erwähnt[/zrl]." +#: ../../include/datetime.php:248 +msgid "months" +msgstr "Monate" -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" +#: ../../include/datetime.php:249 +msgid "week" +msgstr "Woche" -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" +#: ../../include/datetime.php:249 +msgid "weeks" +msgstr "Wochen" -#: ../../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]hat Dich angestupst[/zrl]." +#: ../../include/datetime.php:250 +msgid "day" +msgstr "Tag" -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag getaggt" +#: ../../include/datetime.php:250 +msgid "days" +msgstr "Tage" -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" +#: ../../include/datetime.php:251 +msgid "hour" +msgstr "Stunde" -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" +#: ../../include/datetime.php:251 +msgid "hours" +msgstr "Stunden" -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Benachrichtigung] Vorstellung erhalten" +#: ../../include/datetime.php:252 +msgid "minute" +msgstr "Minute" -#: ../../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, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" +#: ../../include/datetime.php:252 +msgid "minutes" +msgstr "Minuten" -#: ../../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, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." +#: ../../include/datetime.php:253 +msgid "second" +msgstr "Sekunde" -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kannst Dir das Profil unter %s ansehen" +#: ../../include/datetime.php:253 +msgid "seconds" +msgstr "Sekunden" -#: ../../include/enotify.php:265 +#: ../../include/datetime.php:262 #, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" -#: ../../include/enotify.php:273 +#: ../../include/datetime.php:467 #, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" -#: ../../include/enotify.php:274 +#: ../../include/datetime.php:468 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Name:" +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[no subject]" -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." -#: ../../include/enotify.php:477 -msgid "[Red:Notify]" -msgstr "[Red:Benachrichtigung]" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1495 +msgid "Logout" +msgstr "Abmelden" #: ../../include/nav.php:95 ../../include/nav.php:128 msgid "End this session" @@ -2670,11 +2906,6 @@ msgstr "Home" msgid "Your posts and conversations" msgstr "Deine Beiträge und Unterhaltungen" -#: ../../include/nav.php:99 ../../include/conversation.php:945 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:529 -msgid "View Profile" -msgstr "Profil ansehen" - #: ../../include/nav.php:99 msgid "Your profile page" msgstr "Deine Profilseite" @@ -2691,11 +2922,6 @@ msgstr "Profile verwalten" msgid "Edit your profile" msgstr "Profil bearbeiten" -#: ../../include/nav.php:105 ../../include/apps.php:137 -#: ../../include/conversation.php:1537 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - #: ../../include/nav.php:105 msgid "Your photos" msgstr "Deine Bilder" @@ -2704,28 +2930,14 @@ msgstr "Deine Bilder" msgid "Your files" msgstr "Deine Dateien" -#: ../../include/nav.php:111 ../../include/apps.php:144 -msgid "Chat" -msgstr "Chat" - #: ../../include/nav.php:111 msgid "Your chatrooms" msgstr "Deine Chaträume" -#: ../../include/nav.php:117 ../../include/apps.php:127 -#: ../../include/conversation.php:1570 -msgid "Bookmarks" -msgstr "Lesezeichen" - #: ../../include/nav.php:117 msgid "Your bookmarks" msgstr "Deine Lesezeichen" -#: ../../include/nav.php:121 ../../include/apps.php:134 -#: ../../include/conversation.php:1581 ../../mod/webpages.php:129 -msgid "Webpages" -msgstr "Webseiten" - #: ../../include/nav.php:121 msgid "Your webpages" msgstr "Deine Webseiten" @@ -2751,24 +2963,18 @@ msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" msgid "Home Page" msgstr "Homepage" +#: ../../include/nav.php:163 ../../mod/register.php:220 ../../boot.php:1472 +msgid "Register" +msgstr "Registrieren" + #: ../../include/nav.php:163 msgid "Create an account" msgstr "Erzeuge ein Konto" -#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:60 -#: ../../mod/help.php:65 -msgid "Help" -msgstr "Hilfe" - #: ../../include/nav.php:168 msgid "Help and documentation" msgstr "Hilfe und Dokumentation" -#: ../../include/nav.php:171 ../../include/widgets.php:86 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Apps" - #: ../../include/nav.php:171 msgid "Applications, utilities, links, games" msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" @@ -2777,19 +2983,10 @@ msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" msgid "Search site content" msgstr "Durchsuche Seiten-Inhalt" -#: ../../include/nav.php:176 ../../include/apps.php:139 -#: ../../mod/directory.php:226 -msgid "Directory" -msgstr "Verzeichnis" - #: ../../include/nav.php:176 msgid "Channel Locator" msgstr "Kanal-Verzeichnis" -#: ../../include/nav.php:190 ../../include/apps.php:131 -msgid "Matrix" -msgstr "Matrix" - #: ../../include/nav.php:190 msgid "Your matrix" msgstr "Deine Matrix" @@ -2798,10 +2995,6 @@ msgstr "Deine Matrix" msgid "Mark all matrix notifications seen" msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" -#: ../../include/nav.php:193 ../../include/apps.php:135 -msgid "Channel Home" -msgstr "Mein Kanal" - #: ../../include/nav.php:193 msgid "Channel home" msgstr "Mein Kanal" @@ -2830,10 +3023,6 @@ msgstr "Alle Benachrichtigungen ansehen" msgid "Mark all system notifications seen" msgstr "Markiere alle System-Benachrichtigungen als gesehen" -#: ../../include/nav.php:204 ../../include/apps.php:141 -msgid "Mail" -msgstr "Mail" - #: ../../include/nav.php:204 msgid "Private mail" msgstr "Persönliche Mail" @@ -2854,15 +3043,6 @@ msgstr "Eingang" msgid "Outbox" msgstr "Ausgang" -#: ../../include/nav.php:209 ../../include/widgets.php:545 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/nav.php:212 ../../include/apps.php:138 -#: ../../mod/events.php:436 -msgid "Events" -msgstr "Veranstaltungen" - #: ../../include/nav.php:212 msgid "Event Calendar" msgstr "Veranstaltungskalender" @@ -2875,21 +3055,10 @@ msgstr "Alle Ereignisse ansehen" msgid "Mark all events seen" msgstr "Markiere alle Ereignisse als gesehen" -#: ../../include/nav.php:216 ../../include/apps.php:130 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanal-Manager" - #: ../../include/nav.php:216 msgid "Manage Your Channels" msgstr "Verwalte Deine Kanäle" -#: ../../include/nav.php:218 ../../include/apps.php:132 -#: ../../include/widgets.php:521 ../../mod/admin.php:953 -#: ../../mod/admin.php:1158 -msgid "Settings" -msgstr "Einstellungen" - #: ../../include/nav.php:218 msgid "Account/Channel Settings" msgstr "Konto-/Kanal-Einstellungen" @@ -2902,4423 +3071,4158 @@ msgstr "Administration" msgid "Site Setup and Configuration" msgstr "Seiten-Einrichtung und -Konfiguration" -#: ../../include/nav.php:257 ../../include/conversation.php:847 -msgid "Loading..." -msgstr "Lädt ..." - #: ../../include/nav.php:262 msgid "Please wait..." msgstr "Bitte warten..." -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Allgemeine Funktionen" - -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "Verfall von Inhalten" - -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum." - -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "Mehrfachprofile" - -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Mehrfachprofile anlegen können" - -#: ../../include/features.php:27 -msgid "Advanced Profiles" -msgstr "Erweiterte Profile" - -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" -msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" - -#: ../../include/features.php:28 -msgid "Profile Import/Export" -msgstr "Profil-Import/Export" - -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" -msgstr "Speichere Dein Profil, um es in einen anderen Kanal zu importieren" - -#: ../../include/features.php:29 -msgid "Web Pages" -msgstr "Webseiten" - -#: ../../include/features.php:29 -msgid "Provide managed web pages on your channel" -msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung" - -#: ../../include/features.php:30 -msgid "Private Notes" -msgstr "Private Notizen" +#: ../../include/network.php:590 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" -#: ../../include/features.php:30 -msgid "Enables a tool to store notes and reminders" -msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren" +#: ../../include/zot.php:661 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" -#: ../../include/features.php:34 -msgid "Navigation Channel Select" -msgstr "Kanal-Auswahl in der Navigationsleiste" +#: ../../include/zot.php:677 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/features.php:34 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" +#: ../../include/zot.php:1776 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/features.php:38 -msgid "Extended Identity Sharing" -msgstr "Erweitertes Teilen von Identitäten" +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit" -#: ../../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 "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt." +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Zeigen" -#: ../../include/features.php:39 -msgid "Expert Mode" -msgstr "Expertenmodus" +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Nicht zeigen" -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" +#: ../../include/acl_selectors.php:248 ../../mod/photos.php:591 +#: ../../mod/photos.php:945 ../../mod/events.php:585 ../../mod/chat.php:209 +#: ../../mod/filestorage.php:137 +msgid "Permissions" +msgstr "Berechtigungen" -#: ../../include/features.php:40 -msgid "Premium Channel" -msgstr "Premium-Kanal" +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 +#: ../../mod/photos.php:1141 +msgid "Close" +msgstr "Schließen" -#: ../../include/features.php:40 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ermöglicht Einschränkungen und Bedingungen für Kontakte dieses Kanals" +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" -#: ../../include/features.php:45 -msgid "Post Composition Features" -msgstr "Nachbearbeitungsfunktionen" +#: ../../include/photos.php:104 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" -#: ../../include/features.php:47 -msgid "Use Markdown" -msgstr "Markdown benutzen" +#: ../../include/photos.php:111 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: ../../include/features.php:47 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Erlaube Markdown zur Formatierung von Beiträgen" +#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 +msgid "Unable to process image" +msgstr "Kann Bild nicht verarbeiten" -#: ../../include/features.php:48 -msgid "Post Preview" -msgstr "Voransicht" +#: ../../include/photos.php:212 +msgid "Photo storage failed." +msgstr "Foto speichern schlug fehl" -#: ../../include/features.php:48 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung" +#: ../../include/photos.php:344 +msgid "Upload New Photos" +msgstr "Lade neue Fotos hoch" -#: ../../include/features.php:49 ../../include/widgets.php:510 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanal-Quellen" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dieses Element löschen?" -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 +#: ../../mod/photos.php:988 ../../mod/photos.php:1098 +msgid "Comment" +msgstr "Kommentar" -#: ../../include/features.php:50 -msgid "Even More Encryption" -msgstr "Noch mehr Verschlüsselung" +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:332 +msgid "[+] show all" +msgstr "[+] Zeige alle" -#: ../../include/features.php:50 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] zeige weniger" -#: ../../include/features.php:55 -msgid "Network and Stream Filtering" -msgstr "Netzwerk- und Stream-Filter" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] aufklappen" -#: ../../include/features.php:56 -msgid "Search by Date" -msgstr "Suche nach Datum" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] einklappen" -#: ../../include/features.php:56 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Kennwort zu kurz" -#: ../../include/features.php:57 -msgid "Collections Filter" -msgstr "Filter für Sammlung" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Kennwörter stimmen nicht überein" -#: ../../include/features.php:57 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen" +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" +msgstr "alle" -#: ../../include/features.php:58 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "geheime Passphrase" -#: ../../include/features.php:58 -msgid "Save search terms for re-use" -msgstr "Suchbegriffe zur Wiederverwendung abspeichern" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Hinweis zur Passphrase" -#: ../../include/features.php:59 -msgid "Network Personal Tab" -msgstr "Persönlicher Netzwerkreiter" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." -#: ../../include/features.php:59 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alle schließen" -#: ../../include/features.php:60 -msgid "Network New Tab" -msgstr "Netzwerkreiter Neu" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nichts Neues hier" -#: ../../include/features.php:60 -msgid "Enable tab to display all new Network activity" -msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" +#: ../../include/js_strings.php:20 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/features.php:61 -msgid "Affinity Tool" -msgstr "Beziehungs-Tool" +#: ../../include/js_strings.php:21 +msgid "timeago.prefixFromNow" +msgstr " " -#: ../../include/features.php:61 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" +#: ../../include/js_strings.php:22 +msgid "ago" +msgstr "her" -#: ../../include/features.php:62 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" +#: ../../include/js_strings.php:23 +msgid "from now" +msgstr "von jetzt" -#: ../../include/features.php:62 -msgid "Show channel suggestions" -msgstr "Kanal-Vorschläge anzeigen" +#: ../../include/js_strings.php:24 +msgid "less than a minute" +msgstr "weniger als eine Minute" -#: ../../include/features.php:67 -msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" +#: ../../include/js_strings.php:25 +msgid "about a minute" +msgstr "ungefähr eine Minute" -#: ../../include/features.php:69 -msgid "Edit Sent Posts" -msgstr "Bearbeite gesendete Beiträge" +#: ../../include/js_strings.php:26 +#, php-format +msgid "%d minutes" +msgstr "%d Minuten" -#: ../../include/features.php:69 -msgid "Edit and correct posts and comments after sending" -msgstr "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden" +#: ../../include/js_strings.php:27 +msgid "about an hour" +msgstr "ungefähr eine Stunde" -#: ../../include/features.php:70 -msgid "Tagging" -msgstr "Verschlagworten" +#: ../../include/js_strings.php:28 +#, php-format +msgid "about %d hours" +msgstr "ungefähr %d Stunden" -#: ../../include/features.php:70 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" +#: ../../include/js_strings.php:29 +msgid "a day" +msgstr "ein Tag" -#: ../../include/features.php:71 -msgid "Post Categories" -msgstr "Beitrags-Kategorien" +#: ../../include/js_strings.php:30 +#, php-format +msgid "%d days" +msgstr "%d Tage" -#: ../../include/features.php:71 -msgid "Add categories to your posts" -msgstr "Kategorien für Beiträge" +#: ../../include/js_strings.php:31 +msgid "about a month" +msgstr "ungefähr ein Monat" -#: ../../include/features.php:72 -msgid "Ability to file posts under folders" -msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" +#: ../../include/js_strings.php:32 +#, php-format +msgid "%d months" +msgstr "%d Monate" -#: ../../include/features.php:73 -msgid "Dislike Posts" -msgstr "Gefällt-mir-nicht Beiträge" +#: ../../include/js_strings.php:33 +msgid "about a year" +msgstr "ungefähr ein Jahr" -#: ../../include/features.php:73 -msgid "Ability to dislike posts/comments" -msgstr "„Gefällt mir nicht“ ermöglichen" +#: ../../include/js_strings.php:34 +#, php-format +msgid "%d years" +msgstr "%d Jahre" -#: ../../include/features.php:74 -msgid "Star Posts" -msgstr "Beiträge mit Sternchen versehen" +#: ../../include/js_strings.php:35 +msgid " " +msgstr " " -#: ../../include/features.php:74 -msgid "Ability to mark special posts with a star indicator" -msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren" +#: ../../include/js_strings.php:36 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/features.php:75 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" +msgstr "Männlich" -#: ../../include/features.php:75 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" +msgstr "Weiblich" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momentan männlich" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momentan weiblich" -#: ../../include/apps.php:126 -msgid "Site Admin" -msgstr "Hub-Administration" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Größtenteils männlich" -#: ../../include/apps.php:128 -msgid "Address Book" -msgstr "Adressbuch" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Größtenteils weiblich" -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Laune" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transsexuell" -#: ../../include/apps.php:143 ../../include/conversation.php:951 -msgid "Poke" -msgstr "Anstupsen" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Zwischengeschlechtlich" -#: ../../include/apps.php:146 -msgid "Probe" -msgstr "Testen" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuell" -#: ../../include/apps.php:147 -msgid "Suggest" -msgstr "Empfehlungen" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Zwitter" -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "Zufälliger Kanal" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Geschlechtslos" -#: ../../include/apps.php:149 -msgid "Invite" -msgstr "Einladen" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "unklar" -#: ../../include/apps.php:150 -msgid "Features" -msgstr "Funktionen" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Unentschieden" -#: ../../include/apps.php:151 -msgid "Language" -msgstr "Sprache" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Männer" -#: ../../include/apps.php:152 -msgid "Post" -msgstr "Beitrag" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Frauen" -#: ../../include/apps.php:153 -msgid "Profile Photo" -msgstr "Profilfoto" +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Schwul" -#: ../../include/apps.php:242 ../../mod/settings.php:79 -#: ../../mod/settings.php:545 -msgid "Update" -msgstr "Aktualisieren" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/apps.php:242 -msgid "Install" -msgstr "Installieren" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Keine Bevorzugung" -#: ../../include/apps.php:247 -msgid "Purchase" -msgstr "Kaufen" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Bisexuell" -#: ../../include/api.php:1072 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autosexuell" -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Der Chatraum hat keinen Namen" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Enthaltsam" -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Name des Chatraums bereits vergeben" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Jungfräulich" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ungültiger Raumbezeichner." +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Abweichend" -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatraum konnte nicht gefunden werden." +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetisch" -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Der Raum ist voll" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Unmengen" -#: ../../include/conversation.php:126 ../../mod/like.php:89 -msgid "channel" -msgstr "Kanal" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Sexlos" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1953 -#: ../../mod/like.php:331 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Single" -#: ../../include/conversation.php:167 ../../mod/like.php:333 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s nicht" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Einsam" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Verfügbar" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Nicht verfügbar" -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Verguckt" -#: ../../include/conversation.php:674 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Verknallt" -#: ../../include/conversation.php:689 -msgid "Categories:" -msgstr "Kategorien:" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Lerne gerade jemanden kennen" -#: ../../include/conversation.php:690 -msgid "Filed under:" -msgstr "Gespeichert unter:" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Treulos" -#: ../../include/conversation.php:717 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Sexabhängig" -#: ../../include/conversation.php:843 -msgid "remove" -msgstr "lösche" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Freunde/Begünstigte" -#: ../../include/conversation.php:848 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Lose" -#: ../../include/conversation.php:942 -msgid "View Source" -msgstr "Quelle anzeigen" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Verlobt" -#: ../../include/conversation.php:943 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Verheiratet" -#: ../../include/conversation.php:944 -msgid "View Status" -msgstr "Status ansehen" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Gewissermaßen verheiratet" -#: ../../include/conversation.php:946 -msgid "View Photos" -msgstr "Fotos ansehen" +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partner" -#: ../../include/conversation.php:947 -msgid "Matrix Activity" -msgstr "Matrix-Aktivität" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Lebensgemeinschaft" -#: ../../include/conversation.php:949 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Informelle Ehe" -#: ../../include/conversation.php:950 -msgid "Send PM" -msgstr "Sende PN" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Glücklich" -#: ../../include/conversation.php:1024 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Nicht Ausschau haltend" -#: ../../include/conversation.php:1024 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/conversation.php:1028 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d Person gefällt das." -msgstr[1] "%2$d Leuten gefällt das." +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Betrogen" -#: ../../include/conversation.php:1030 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d Person gefällt das nicht." -msgstr[1] "%2$d Leuten gefällt das nicht." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Getrennt" -#: ../../include/conversation.php:1036 -msgid "and" -msgstr "und" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Labil" -#: ../../include/conversation.php:1039 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", und %d andere" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Geschieden" -#: ../../include/conversation.php:1040 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Gewissermaßen geschieden" -#: ../../include/conversation.php:1040 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Verwitwet" -#: ../../include/conversation.php:1097 -msgid "Visible to everybody" -msgstr "Sichtbar für jeden" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Ungewiss" -#: ../../include/conversation.php:1098 ../../mod/mail.php:170 -#: ../../mod/mail.php:282 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Es ist kompliziert" -#: ../../include/conversation.php:1099 -msgid "Please enter a video link/URL:" -msgstr "Gib einen Video-Link/URL ein:" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Interessiert mich nicht" -#: ../../include/conversation.php:1100 -msgid "Please enter an audio link/URL:" -msgstr "Gib einen Audio-Link/URL ein:" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Frag mich mal" -#: ../../include/conversation.php:1101 -msgid "Tag term:" -msgstr "Schlagwort:" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In Ordner speichern" -#: ../../include/conversation.php:1102 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:1015 ../../mod/photos.php:1027 +msgid "View all" +msgstr "Alles anzeigen" -#: ../../include/conversation.php:1103 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1024 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Gefällt nicht" +msgstr[1] "Gefällt nicht" -#: ../../include/conversation.php:1104 ../../mod/editpost.php:52 -#: ../../mod/mail.php:171 ../../mod/mail.php:283 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" +#: ../../include/ItemObject.php:179 +msgid "Add Star" +msgstr "Stern hinzufügen" -#: ../../include/conversation.php:1128 ../../mod/photos.php:994 -#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 -#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 -msgid "Share" -msgstr "Teilen" +#: ../../include/ItemObject.php:180 +msgid "Remove Star" +msgstr "Stern entfernen" + +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" +msgstr "Stern-Status umschalten" -#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "Seitentitel-Link" +#: ../../include/ItemObject.php:185 +msgid "starred" +msgstr "markiert" -#: ../../include/conversation.php:1133 -msgid "Post as" -msgstr "Posten als" +#: ../../include/ItemObject.php:203 +msgid "Add Tag" +msgstr "Tag hinzufügen" -#: ../../include/conversation.php:1134 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:231 ../../mod/mail.php:345 -#: ../../mod/editblock.php:112 ../../mod/editlayout.php:107 -msgid "Upload photo" -msgstr "Foto hochladen" +#: ../../include/ItemObject.php:221 ../../mod/photos.php:967 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" -#: ../../include/conversation.php:1135 -msgid "upload photo" -msgstr "Foto hochladen" +#: ../../include/ItemObject.php:222 ../../mod/photos.php:968 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" -#: ../../include/conversation.php:1136 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:232 ../../mod/mail.php:346 -#: ../../mod/editblock.php:113 ../../mod/editlayout.php:108 -msgid "Attach file" -msgstr "Datei anhängen" +#: ../../include/ItemObject.php:226 +msgid "Share This" +msgstr "Teilen" -#: ../../include/conversation.php:1137 -msgid "attach file" -msgstr "Datei anfügen" +#: ../../include/ItemObject.php:226 +msgid "share" +msgstr "Teilen" -#: ../../include/conversation.php:1138 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:233 ../../mod/mail.php:347 -#: ../../mod/editblock.php:114 ../../mod/editlayout.php:109 -msgid "Insert web link" -msgstr "Link einfügen" +#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 +#, php-format +msgid "View %s's profile - %s" +msgstr "Schaue Dir %ss Profil an – %s" -#: ../../include/conversation.php:1139 -msgid "web link" -msgstr "Web-Link" +#: ../../include/ItemObject.php:251 +msgid "to" +msgstr "an" -#: ../../include/conversation.php:1140 -msgid "Insert video link" -msgstr "Video-Link einfügen" +#: ../../include/ItemObject.php:252 +msgid "via" +msgstr "via" -#: ../../include/conversation.php:1141 -msgid "video link" -msgstr "Video-Link" +#: ../../include/ItemObject.php:253 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" -#: ../../include/conversation.php:1142 -msgid "Insert audio link" -msgstr "Audio-Link einfügen" +#: ../../include/ItemObject.php:254 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" -#: ../../include/conversation.php:1143 -msgid "audio link" -msgstr "Audio-Link" +#: ../../include/ItemObject.php:290 +msgid "Save Bookmarks" +msgstr "Favoriten speichern" -#: ../../include/conversation.php:1144 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 -msgid "Set your location" -msgstr "Standort" +#: ../../include/ItemObject.php:291 +msgid "Add to Calendar" +msgstr "Zum Kalender hinzufügen" -#: ../../include/conversation.php:1145 -msgid "set location" -msgstr "Standort" +#: ../../include/ItemObject.php:299 ../../mod/photos.php:1135 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" -#: ../../include/conversation.php:1146 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 -msgid "Clear browser location" -msgstr "Browser-Standort löschen" +#: ../../include/ItemObject.php:300 ../../mod/photos.php:1136 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../include/conversation.php:1147 -msgid "clear location" -msgstr "Standort löschen" +#: ../../include/ItemObject.php:331 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" -#: ../../include/conversation.php:1149 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 -msgid "Set title" -msgstr "Titel" +#: ../../include/ItemObject.php:596 ../../mod/photos.php:986 +#: ../../mod/photos.php:1096 +msgid "This is you" +msgstr "Das bist Du" -#: ../../include/conversation.php:1152 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 ../../mod/events.php:560 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" +#: ../../include/ItemObject.php:599 ../../mod/mood.php:135 +#: ../../mod/photos.php:547 ../../mod/photos.php:661 ../../mod/photos.php:949 +#: ../../mod/photos.php:989 ../../mod/photos.php:1099 +#: ../../mod/settings.php:518 ../../mod/settings.php:630 +#: ../../mod/settings.php:659 ../../mod/settings.php:683 +#: ../../mod/settings.php:759 ../../mod/settings.php:939 +#: ../../mod/poke.php:166 ../../mod/profiles.php:615 ../../mod/events.php:587 +#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/connect.php:92 +#: ../../mod/connedit.php:546 ../../mod/setup.php:307 ../../mod/setup.php:350 +#: ../../mod/pdledit.php:58 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:146 +#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:414 +#: ../../mod/admin.php:725 ../../mod/admin.php:861 ../../mod/admin.php:994 +#: ../../mod/admin.php:1193 ../../mod/admin.php:1280 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/import.php:480 ../../mod/invite.php:142 +#: ../../mod/mail.php:348 ../../mod/appman.php:99 ../../mod/poll.php:68 +#: ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/blogga/php/config.php:67 +#: ../../view/theme/blogga/view/theme/blog/config.php:67 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Bestätigen" -#: ../../include/conversation.php:1154 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" +#: ../../include/ItemObject.php:600 +msgid "Bold" +msgstr "Fett" -#: ../../include/conversation.php:1155 -msgid "permissions" -msgstr "Berechtigungen" +#: ../../include/ItemObject.php:601 +msgid "Italic" +msgstr "Kursiv" -#: ../../include/conversation.php:1162 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 -msgid "Public post" -msgstr "Öffentlicher Beitrag" +#: ../../include/ItemObject.php:602 +msgid "Underline" +msgstr "Unterstrichen" -#: ../../include/conversation.php:1164 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Beispiel: bob@example.com, mary@example.com" +#: ../../include/ItemObject.php:603 +msgid "Quote" +msgstr "Zitat" -#: ../../include/conversation.php:1177 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:179 ../../mod/mail.php:238 ../../mod/mail.php:352 -#: ../../mod/editblock.php:146 ../../mod/editlayout.php:140 -msgid "Set expiration date" -msgstr "Verfallsdatum" +#: ../../include/ItemObject.php:604 +msgid "Code" +msgstr "Code" -#: ../../include/conversation.php:1181 ../../mod/editpost.php:150 -#: ../../mod/events.php:567 -msgid "OK" -msgstr "Ok" +#: ../../include/ItemObject.php:605 +msgid "Image" +msgstr "Bild" -#: ../../include/conversation.php:1182 ../../mod/settings.php:520 -#: ../../mod/settings.php:546 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:151 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/events.php:566 -msgid "Cancel" -msgstr "Abbrechen" +#: ../../include/ItemObject.php:606 +msgid "Link" +msgstr "Link" -#: ../../include/conversation.php:1426 -msgid "Discover" -msgstr "Entdecken" +#: ../../include/ItemObject.php:607 +msgid "Video" +msgstr "Video" -#: ../../include/conversation.php:1429 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" -#: ../../include/conversation.php:1434 -msgid "Commented Order" -msgstr "Neueste Kommentare" +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." -#: ../../include/conversation.php:1437 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Album nicht gefunden." -#: ../../include/conversation.php:1441 -msgid "Posted Order" -msgstr "Neueste Beiträge" +#: ../../mod/photos.php:119 ../../mod/photos.php:662 +msgid "Delete Album" +msgstr "Album löschen" -#: ../../include/conversation.php:1444 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" +#: ../../mod/photos.php:159 ../../mod/photos.php:950 +msgid "Delete Photo" +msgstr "Foto löschen" -#: ../../include/conversation.php:1449 ../../include/widgets.php:89 -msgid "Personal" -msgstr "Persönlich" +#: ../../mod/photos.php:451 ../../mod/search.php:13 ../../mod/directory.php:15 +#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Öffentlicher Zugang verweigert." -#: ../../include/conversation.php:1452 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" +#: ../../mod/photos.php:461 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" -#: ../../include/conversation.php:1458 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 -msgid "New" -msgstr "Neu" +#: ../../mod/photos.php:507 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." -#: ../../include/conversation.php:1461 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" +#: ../../mod/photos.php:558 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." -#: ../../include/conversation.php:1467 -msgid "Starred" -msgstr "Markiert" +#: ../../mod/photos.php:561 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." -#: ../../include/conversation.php:1470 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" +#: ../../mod/photos.php:583 +msgid "Upload Photos" +msgstr "Fotos hochladen" -#: ../../include/conversation.php:1477 -msgid "Spam" -msgstr "Spam" +#: ../../mod/photos.php:587 +msgid "Enter a new album name or select an existing one:" +msgstr "Gib einen neuen Albumnamen ein oder wähle einen bereits existierenden:" -#: ../../include/conversation.php:1480 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" +#: ../../mod/photos.php:588 +msgid "Do not show a status post for this upload" +msgstr "Keine Statusnachricht für diesen Upload senden" -#: ../../include/conversation.php:1516 ../../mod/admin.php:867 -msgid "Channel" -msgstr "Kanal" +#: ../../mod/photos.php:609 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" -#: ../../include/conversation.php:1519 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" +#: ../../mod/photos.php:645 ../../mod/photos.php:1159 +#: ../../mod/photos.php:1174 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" -#: ../../include/conversation.php:1528 -msgid "About" -msgstr "Über" +#: ../../mod/photos.php:656 +msgid "New album name: " +msgstr "Name des neuen Albums:" -#: ../../include/conversation.php:1531 -msgid "Profile Details" -msgstr "Profil-Details" +#: ../../mod/photos.php:668 +msgid "Show Newest First" +msgstr "Zeige Neueste zuerst" -#: ../../include/conversation.php:1549 -msgid "Files and Storage" -msgstr "Dateien und Speicher" +#: ../../mod/photos.php:670 +msgid "Show Oldest First" +msgstr "Zeige Älteste zuerst" -#: ../../include/conversation.php:1558 ../../include/conversation.php:1561 -msgid "Chatrooms" -msgstr "Chaträume" +#: ../../mod/photos.php:697 ../../mod/photos.php:1206 +msgid "View Photo" +msgstr "Foto ansehen" -#: ../../include/conversation.php:1573 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" +#: ../../mod/photos.php:726 +msgid "Edit Album" +msgstr "Album bearbeiten" -#: ../../include/conversation.php:1584 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" +#: ../../mod/photos.php:777 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." + +#: ../../mod/photos.php:779 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" -#: ../../include/bb2diaspora.php:360 -msgid "Attachments:" -msgstr "Anhänge:" +#: ../../mod/photos.php:839 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit" +#: ../../mod/photos.php:846 +msgid "Private Photo" +msgstr "Privates Foto" -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Zeigen" +#: ../../mod/photos.php:857 ../../mod/events.php:433 +msgid "Previous" +msgstr "Voriges" -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Nicht zeigen" +#: ../../mod/photos.php:861 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" -#: ../../include/acl_selectors.php:248 ../../mod/filestorage.php:137 -#: ../../mod/photos.php:604 ../../mod/photos.php:970 ../../mod/chat.php:209 -#: ../../mod/events.php:585 -msgid "Permissions" -msgstr "Berechtigungen" +#: ../../mod/photos.php:866 ../../mod/events.php:434 ../../mod/setup.php:261 +msgid "Next" +msgstr "Nächste" -#: ../../include/widgets.php:87 -msgid "System" -msgstr "System" +#: ../../mod/photos.php:903 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Entferne" -#: ../../include/widgets.php:90 -msgid "Create Personal App" -msgstr "Persönliche App erstellen" +#: ../../mod/photos.php:933 +msgid "Edit photo" +msgstr "Foto bearbeiten" -#: ../../include/widgets.php:91 -msgid "Edit Personal App" -msgstr "Persönliche App bearbeiten" +#: ../../mod/photos.php:935 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" +#: ../../mod/photos.php:936 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Vorschläge" +#: ../../mod/photos.php:939 +msgid "New album name" +msgstr "Name des neuen Albums:" -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Mehr anzeigen …" +#: ../../mod/photos.php:942 +msgid "Caption" +msgstr "Bildunterschrift" -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." +#: ../../mod/photos.php:944 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" +#: ../../mod/photos.php:947 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse des Kanals eingeben" +#: ../../mod/photos.php:1125 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" +#: ../../mod/photos.php:1212 +msgid "View Album" +msgstr "Album ansehen" -#: ../../include/widgets.php:191 -msgid "Notes" -msgstr "Notizen" +#: ../../mod/photos.php:1235 +msgid "Recent Photos" +msgstr "Neueste Fotos" -#: ../../include/widgets.php:263 -msgid "Remove term" -msgstr "Eintrag löschen" +#: ../../mod/mitem.php:14 ../../mod/menu.php:92 +msgid "Menu not found." +msgstr "Menü nicht gefunden" -#: ../../include/widgets.php:342 -msgid "Archives" -msgstr "Archive" +#: ../../mod/mitem.php:47 +msgid "Menu element updated." +msgstr "Menü-Element aktualisiert." -#: ../../include/widgets.php:404 -msgid "Refresh" -msgstr "Aktualisieren" +#: ../../mod/mitem.php:51 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." -#: ../../include/widgets.php:405 ../../mod/connedit.php:492 -msgid "Me" -msgstr "Ich" +#: ../../mod/mitem.php:57 +msgid "Menu element added." +msgstr "Menü-Bestandteil hinzugefügt." -#: ../../include/widgets.php:406 ../../mod/connedit.php:494 -msgid "Best Friends" -msgstr "Beste Freunde" +#: ../../mod/mitem.php:61 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." -#: ../../include/widgets.php:408 -msgid "Co-workers" -msgstr "Kollegen" +#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 +#: ../../mod/xchan.php:38 +msgid "Not found." +msgstr "Nicht gefunden." -#: ../../include/widgets.php:409 ../../mod/connedit.php:496 -msgid "Former Friends" -msgstr "ehem. Freunde" +#: ../../mod/mitem.php:96 +msgid "Manage Menu Elements" +msgstr "Menü-Bestandteile verwalten" -#: ../../include/widgets.php:410 ../../mod/connedit.php:497 -msgid "Acquaintances" -msgstr "Bekannte" +#: ../../mod/mitem.php:99 +msgid "Edit menu" +msgstr "Menü bearbeiten" -#: ../../include/widgets.php:411 -msgid "Everybody" -msgstr "Jeder" +#: ../../mod/mitem.php:102 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" -#: ../../include/widgets.php:443 -msgid "Account settings" -msgstr "Konto-Einstellungen" +#: ../../mod/mitem.php:103 +msgid "Drop element" +msgstr "Bestandteil löschen" -#: ../../include/widgets.php:449 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" +#: ../../mod/mitem.php:104 +msgid "New element" +msgstr "Neues Bestandteil" -#: ../../include/widgets.php:455 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" +#: ../../mod/mitem.php:105 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" -#: ../../include/widgets.php:461 -msgid "Feature settings" -msgstr "Funktions-Einstellungen" +#: ../../mod/mitem.php:106 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" -#: ../../include/widgets.php:467 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" +#: ../../mod/mitem.php:107 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" -#: ../../include/widgets.php:473 -msgid "Connected apps" -msgstr "Verbundene Apps" +#: ../../mod/mitem.php:108 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" -#: ../../include/widgets.php:479 -msgid "Export channel" -msgstr "Kanal exportieren" +#: ../../mod/mitem.php:131 +msgid "New Menu Element" +msgstr "Neues Menü-Bestandteil" -#: ../../include/widgets.php:485 -msgid "Export content" -msgstr "Kanal-Inhalte exportieren" +#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" -#: ../../include/widgets.php:491 -msgid "Automatic Permissions (Advanced)" -msgstr "Automatische Berechtigungen (Erweitert)" +#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:974 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" -#: ../../include/widgets.php:501 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" +#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 +msgid "Link text" +msgstr "Link Text" -#: ../../include/widgets.php:535 ../../mod/message.php:31 -#: ../../mod/mail.php:124 -msgid "Messages" -msgstr "Nachrichten" +#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 +msgid "URL of link" +msgstr "URL des Links" -#: ../../include/widgets.php:540 -msgid "Check Mail" -msgstr "E-Mails abrufen" +#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 +msgid "Use Red magic-auth if available" +msgstr "Verwende Red Magic-Auth wenn verfügbar" -#: ../../include/widgets.php:621 -msgid "Chat Rooms" -msgstr "Chaträume" +#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" -#: ../../include/widgets.php:639 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" -#: ../../include/widgets.php:657 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" -#: ../../include/follow.php:26 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " +#: ../../mod/mitem.php:154 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." -#: ../../include/follow.php:31 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." +#: ../../mod/mitem.php:163 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." +#: ../../mod/mitem.php:165 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." +#: ../../mod/mitem.php:174 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" -#: ../../include/follow.php:133 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." +#: ../../mod/mitem.php:186 ../../mod/menu.php:114 +msgid "Modify" +msgstr "Ändern" -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "Lokales Konto nicht gefunden." +#: ../../mod/ping.php:237 +msgid "sent you a private message" +msgstr "eine private Nachricht schicken" -#: ../../include/follow.php:219 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." +#: ../../mod/ping.php:288 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." +#: ../../mod/ping.php:329 +msgid "posted an event" +msgstr "hat eine Veranstaltung veröffentlicht" -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." +#: ../../mod/acl.php:244 +msgid "network" +msgstr "Netzwerk" -#: ../../mod/settings.php:71 +#: ../../mod/settings.php:73 msgid "Name is required" msgstr "Name ist erforderlich" -#: ../../mod/settings.php:75 +#: ../../mod/settings.php:77 msgid "Key and Secret are required" msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../mod/settings.php:198 +#: ../../mod/settings.php:197 msgid "Passwords do not match. Password unchanged." msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../mod/settings.php:202 +#: ../../mod/settings.php:201 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../mod/settings.php:216 +#: ../../mod/settings.php:215 msgid "Password changed." msgstr "Kennwort geändert." -#: ../../mod/settings.php:218 +#: ../../mod/settings.php:217 msgid "Password update failed. Please try again." msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:231 msgid "Not valid email." msgstr "Keine gültige E-Mail Adresse." -#: ../../mod/settings.php:235 +#: ../../mod/settings.php:234 msgid "Protected email address. Cannot change to that email." msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." -#: ../../mod/settings.php:244 +#: ../../mod/settings.php:243 msgid "System failure storing new email. Please try again." msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." -#: ../../mod/settings.php:447 +#: ../../mod/settings.php:448 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: ../../mod/settings.php:518 ../../mod/settings.php:544 -#: ../../mod/settings.php:580 +#: ../../mod/settings.php:517 ../../mod/settings.php:543 +#: ../../mod/settings.php:579 msgid "Add application" msgstr "Anwendung hinzufügen" -#: ../../mod/settings.php:521 +#: ../../mod/settings.php:520 msgid "Name of application" msgstr "Name der Anwendung" -#: ../../mod/settings.php:522 ../../mod/settings.php:548 +#: ../../mod/settings.php:521 ../../mod/settings.php:547 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:522 ../../mod/settings.php:523 +#: ../../mod/settings.php:521 ../../mod/settings.php:522 msgid "Automatically generated - change if desired. Max length 20" msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" -#: ../../mod/settings.php:523 ../../mod/settings.php:549 +#: ../../mod/settings.php:522 ../../mod/settings.php:548 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:524 ../../mod/settings.php:550 +#: ../../mod/settings.php:523 ../../mod/settings.php:549 msgid "Redirect" msgstr "Umleitung" -#: ../../mod/settings.php:524 +#: ../../mod/settings.php:523 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert" -#: ../../mod/settings.php:525 ../../mod/settings.php:551 +#: ../../mod/settings.php:524 ../../mod/settings.php:550 msgid "Icon url" msgstr "Symbol-URL" -#: ../../mod/settings.php:525 +#: ../../mod/settings.php:524 msgid "Optional" msgstr "Optional" -#: ../../mod/settings.php:536 +#: ../../mod/settings.php:535 msgid "You can't edit this application." msgstr "Diese Anwendung kann nicht bearbeitet werden." -#: ../../mod/settings.php:579 +#: ../../mod/settings.php:578 msgid "Connected Apps" msgstr "Verbundene Apps" -#: ../../mod/settings.php:583 +#: ../../mod/settings.php:582 msgid "Client key starts with" msgstr "Client Key beginnt mit" -#: ../../mod/settings.php:584 +#: ../../mod/settings.php:583 msgid "No name" msgstr "Kein Name" -#: ../../mod/settings.php:585 +#: ../../mod/settings.php:584 msgid "Remove authorization" msgstr "Authorisierung aufheben" -#: ../../mod/settings.php:596 +#: ../../mod/settings.php:595 msgid "No feature settings configured" msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../mod/settings.php:604 +#: ../../mod/settings.php:603 msgid "Feature Settings" msgstr "Funktions-Einstellungen" -#: ../../mod/settings.php:627 +#: ../../mod/settings.php:626 msgid "Account Settings" msgstr "Konto-Einstellungen" -#: ../../mod/settings.php:628 +#: ../../mod/settings.php:627 msgid "Password Settings" msgstr "Kennwort-Einstellungen" -#: ../../mod/settings.php:629 +#: ../../mod/settings.php:628 msgid "New Password:" msgstr "Neues Passwort:" -#: ../../mod/settings.php:630 +#: ../../mod/settings.php:629 msgid "Confirm:" msgstr "Bestätigen:" -#: ../../mod/settings.php:630 +#: ../../mod/settings.php:629 msgid "Leave password fields blank unless changing" msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" -#: ../../mod/settings.php:632 ../../mod/settings.php:954 +#: ../../mod/settings.php:631 ../../mod/settings.php:948 msgid "Email Address:" msgstr "Email Adresse:" -#: ../../mod/settings.php:633 ../../mod/removeaccount.php:61 +#: ../../mod/settings.php:632 ../../mod/removeaccount.php:61 msgid "Remove Account" msgstr "Konto entfernen" -#: ../../mod/settings.php:634 +#: ../../mod/settings.php:633 msgid "Remove this account from this server including all its channels" msgstr "Lösche dieses Konto einschließlich aller zugehörigen Kanäle von diesem Server" -#: ../../mod/settings.php:635 ../../mod/settings.php:1019 +#: ../../mod/settings.php:634 ../../mod/settings.php:1014 msgid "Warning: This action is permanent and cannot be reversed." msgstr "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden." -#: ../../mod/settings.php:651 +#: ../../mod/settings.php:650 msgid "Off" msgstr "Aus" -#: ../../mod/settings.php:651 +#: ../../mod/settings.php:650 msgid "On" msgstr "An" -#: ../../mod/settings.php:658 +#: ../../mod/settings.php:657 msgid "Additional Features" msgstr "Zusätzliche Funktionen" -#: ../../mod/settings.php:683 +#: ../../mod/settings.php:682 msgid "Connector Settings" msgstr "Connector-Einstellungen" -#: ../../mod/settings.php:713 ../../mod/admin.php:362 +#: ../../mod/settings.php:712 ../../mod/admin.php:362 msgid "No special theme for mobile devices" -msgstr "Keine spezielle Theme für mobile Geräte" - -#: ../../mod/settings.php:722 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s – (experimentell)" - -#: ../../mod/settings.php:758 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: ../../mod/settings.php:764 -msgid "Display Theme:" -msgstr "Anzeige-Theme:" - -#: ../../mod/settings.php:765 -msgid "Mobile Theme:" -msgstr "Mobile Theme:" - -#: ../../mod/settings.php:766 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom auf Mobilgeräten aktivieren" - -#: ../../mod/settings.php:767 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: ../../mod/settings.php:767 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 Sekunden, kein Maximum" - -#: ../../mod/settings.php:768 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" - -#: ../../mod/settings.php:768 -msgid "Maximum of 100 items" -msgstr "Maximum: 100 Beiträge" - -#: ../../mod/settings.php:769 -msgid "Don't show emoticons" -msgstr "Emoticons nicht zeigen" - -#: ../../mod/settings.php:770 -msgid "Link post titles to source" -msgstr "Beitragstitel zum Originalbeitrag verlinken" - -#: ../../mod/settings.php:771 -msgid "System Page Layout Editor - (advanced)" -msgstr "System-Seitenlayout-Editor (für Experten)" - -#: ../../mod/settings.php:807 -msgid "Nobody except yourself" -msgstr "Niemand außer Dir selbst" - -#: ../../mod/settings.php:808 -msgid "Only those you specifically allow" -msgstr "Nur die, denen Du es explizit erlaubst" - -#: ../../mod/settings.php:809 -msgid "Approved connections" -msgstr "Angenommene Verbindungen" - -#: ../../mod/settings.php:810 -msgid "Any connections" -msgstr "Beliebige Verbindungen" - -#: ../../mod/settings.php:811 -msgid "Anybody on this website" -msgstr "Jeder auf dieser Website" - -#: ../../mod/settings.php:812 -msgid "Anybody in this network" -msgstr "Alle Red-Nutzer" - -#: ../../mod/settings.php:813 -msgid "Anybody authenticated" -msgstr "Jeder authentifizierte" - -#: ../../mod/settings.php:814 -msgid "Anybody on the internet" -msgstr "Jeder im Internet" - -#: ../../mod/settings.php:891 -msgid "Publish your default profile in the network directory" -msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" - -#: ../../mod/settings.php:891 ../../mod/settings.php:896 -#: ../../mod/settings.php:973 ../../mod/admin.php:392 -#: ../../mod/profiles.php:602 ../../mod/api.php:106 -msgid "No" -msgstr "Nein" - -#: ../../mod/settings.php:891 ../../mod/settings.php:896 -#: ../../mod/settings.php:973 ../../mod/admin.php:394 -#: ../../mod/profiles.php:601 ../../mod/api.php:105 -msgid "Yes" -msgstr "Ja" - -#: ../../mod/settings.php:896 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" - -#: ../../mod/settings.php:900 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "oder" - -#: ../../mod/settings.php:905 -msgid "Your channel address is" -msgstr "Deine Kanal-Adresse lautet" - -#: ../../mod/settings.php:943 -msgid "Channel Settings" -msgstr "Kanal-Einstellungen" - -#: ../../mod/settings.php:952 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: ../../mod/settings.php:955 -msgid "Your Timezone:" -msgstr "Ihre Zeitzone:" - -#: ../../mod/settings.php:956 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: ../../mod/settings.php:956 -msgid "Geographical location to display on your posts" -msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" - -#: ../../mod/settings.php:957 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: ../../mod/settings.php:959 -msgid "Adult Content" -msgstr "Nicht jugendfreie Inhalte" - -#: ../../mod/settings.php:959 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" - -#: ../../mod/settings.php:961 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Datenschutz-Einstellungen" - -#: ../../mod/settings.php:963 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" - -#: ../../mod/settings.php:965 -msgid "Hide my online presence" -msgstr "Meine Online-Präsenz verbergen" - -#: ../../mod/settings.php:965 -msgid "Prevents displaying in your profile that you are online" -msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" - -#: ../../mod/settings.php:967 -msgid "Simple Privacy Settings:" -msgstr "Einfache Privatsphäre-Einstellungen" - -#: ../../mod/settings.php:968 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" - -#: ../../mod/settings.php:969 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" - -#: ../../mod/settings.php:970 -msgid "Private - default private, never open or public" -msgstr "Private – Standard privat, nie offen oder öffentlich" - -#: ../../mod/settings.php:971 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockiert – Alle standardmäßig blockiert" - -#: ../../mod/settings.php:973 -msgid "Allow others to tag your posts" -msgstr "Erlaube anderen, Deine Beiträge zu taggen" - -#: ../../mod/settings.php:973 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" - -#: ../../mod/settings.php:975 -msgid "Advanced Privacy Settings" -msgstr "Fortgeschrittene Privatsphäre-Einstellungen" - -#: ../../mod/settings.php:977 -msgid "Expire other channel content after this many days" -msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" - -#: ../../mod/settings.php:977 -msgid "0 or blank prevents expiration" -msgstr "0 oder kein Inhalt verhindern das Verfallen" - -#: ../../mod/settings.php:978 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Kontaktanfragen pro Tag:" - -#: ../../mod/settings.php:978 -msgid "May reduce spam activity" -msgstr "Kann die Spam-Aktivität verringern" - -#: ../../mod/settings.php:979 -msgid "Default Post Permissions" -msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" - -#: ../../mod/settings.php:980 ../../mod/mitem.php:134 ../../mod/mitem.php:177 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - -#: ../../mod/settings.php:991 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" - -#: ../../mod/settings.php:991 -msgid "Useful to reduce spamming" -msgstr "Nützlich, um Spam zu verringern" - -#: ../../mod/settings.php:994 -msgid "Notification Settings" -msgstr "Benachrichtigungs-Einstellungen" - -#: ../../mod/settings.php:995 -msgid "By default post a status message when:" -msgstr "Sende standardmäßig Status-Nachrichten, wenn:" - -#: ../../mod/settings.php:996 -msgid "accepting a friend request" -msgstr "Du eine Kontaktanfrage annimmst" - -#: ../../mod/settings.php:997 -msgid "joining a forum/community" -msgstr "Du einem Forum beitrittst" - -#: ../../mod/settings.php:998 -msgid "making an interesting profile change" -msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" - -#: ../../mod/settings.php:999 -msgid "Send a notification email when:" -msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" - -#: ../../mod/settings.php:1000 -msgid "You receive a connection request" -msgstr "Du eine Verbindungsanfrage erhältst" - -#: ../../mod/settings.php:1001 -msgid "Your connections are confirmed" -msgstr "Eine Verbindung bestätigt wurde" - -#: ../../mod/settings.php:1002 -msgid "Someone writes on your profile wall" -msgstr "Jemand auf Deine Pinnwand schreibt" +msgstr "Keine spezielle Theme für mobile Geräte" -#: ../../mod/settings.php:1003 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" +#: ../../mod/settings.php:721 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (experimentell)" -#: ../../mod/settings.php:1004 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" +#: ../../mod/settings.php:757 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" -#: ../../mod/settings.php:1005 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" +#: ../../mod/settings.php:763 +msgid "Display Theme:" +msgstr "Anzeige-Theme:" -#: ../../mod/settings.php:1006 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" +#: ../../mod/settings.php:764 +msgid "Mobile Theme:" +msgstr "Mobile Theme:" -#: ../../mod/settings.php:1007 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" +#: ../../mod/settings.php:765 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../mod/settings.php:1010 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" +#: ../../mod/settings.php:766 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../mod/settings.php:1011 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" +#: ../../mod/settings.php:766 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../mod/settings.php:1014 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" +#: ../../mod/settings.php:767 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../mod/settings.php:1015 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" +#: ../../mod/settings.php:767 +msgid "Maximum of 100 items" +msgstr "Maximum: 100 Beiträge" -#: ../../mod/settings.php:1017 -msgid "Personal menu to display in your channel pages" -msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" +#: ../../mod/settings.php:768 +msgid "Don't show emoticons" +msgstr "Emoticons nicht zeigen" -#: ../../mod/settings.php:1018 -msgid "Remove this channel" -msgstr "Diesen Kanal löschen" +#: ../../mod/settings.php:769 +msgid "Link post titles to source" +msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../mod/filestorage.php:76 -msgid "Permission Denied." -msgstr "Zugriff verweigert." +#: ../../mod/settings.php:770 +msgid "System Page Layout Editor - (advanced)" +msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../mod/filestorage.php:92 -msgid "File not found." -msgstr "Datei nicht gefunden." +#: ../../mod/settings.php:804 +msgid "Nobody except yourself" +msgstr "Niemand außer Dir selbst" -#: ../../mod/filestorage.php:131 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" +#: ../../mod/settings.php:805 +msgid "Only those you specifically allow" +msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../mod/filestorage.php:140 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" +#: ../../mod/settings.php:806 +msgid "Approved connections" +msgstr "Angenommene Verbindungen" -#: ../../mod/filestorage.php:141 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" +#: ../../mod/settings.php:807 +msgid "Any connections" +msgstr "Beliebige Verbindungen" -#: ../../mod/filestorage.php:142 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" +#: ../../mod/settings.php:808 +msgid "Anybody on this website" +msgstr "Jeder auf dieser Website" -#: ../../mod/filestorage.php:144 -msgid "Copy/paste this code to attach file to a post" -msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" +#: ../../mod/settings.php:809 +msgid "Anybody in this network" +msgstr "Alle Red-Nutzer" -#: ../../mod/filestorage.php:145 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" +#: ../../mod/settings.php:810 +msgid "Anybody authenticated" +msgstr "Jeder authentifizierte" -#: ../../mod/home.php:46 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix – "Das Netzwerk"" +#: ../../mod/settings.php:811 +msgid "Anybody on the internet" +msgstr "Jeder im Internet" -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +#: ../../mod/settings.php:885 +msgid "Publish your default profile in the network directory" +msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" +#: ../../mod/settings.php:885 ../../mod/settings.php:890 +#: ../../mod/settings.php:967 ../../mod/api.php:106 ../../mod/profiles.php:574 +#: ../../mod/admin.php:392 +msgid "No" +msgstr "Nein" -#: ../../mod/update_network.php:23 ../../mod/update_display.php:25 -#: ../../mod/update_search.php:46 ../../mod/update_channel.php:43 -msgid "[Embedded content - reload page to view]" -msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" +#: ../../mod/settings.php:885 ../../mod/settings.php:890 +#: ../../mod/settings.php:967 ../../mod/api.php:105 ../../mod/profiles.php:573 +#: ../../mod/admin.php:394 +msgid "Yes" +msgstr "Ja" -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Kanal hinzufügen" +#: ../../mod/settings.php:890 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt." +#: ../../mod/settings.php:894 ../../mod/profile_photo.php:365 +msgid "or" +msgstr "oder" -#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 -#: ../../mod/sources.php:137 -msgid "Channel Name" -msgstr "Name des Kanals" +#: ../../mod/settings.php:899 +msgid "Your channel address is" +msgstr "Deine Kanal-Adresse lautet" -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " +#: ../../mod/settings.php:937 +msgid "Channel Settings" +msgstr "Kanal-Einstellungen" -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" +#: ../../mod/settings.php:946 +msgid "Basic Settings" +msgstr "Grundeinstellungen" -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst." +#: ../../mod/settings.php:949 +msgid "Your Timezone:" +msgstr "Ihre Zeitzone:" -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Oder importiere einen bestehenden Kanal von einem anderen Server" +#: ../../mod/settings.php:950 +msgid "Default Post Location:" +msgstr "Standardstandort:" -#: ../../mod/new_channel.php:118 -msgid "Channel Type" -msgstr "Kanaltyp" +#: ../../mod/settings.php:950 +msgid "Geographical location to display on your posts" +msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../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 "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können" +#: ../../mod/settings.php:951 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" -#: ../../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 "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." +#: ../../mod/settings.php:953 +msgid "Adult Content" +msgstr "Nicht jugendfreie Inhalte" -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" +#: ../../mod/settings.php:953 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." +#: ../../mod/settings.php:955 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" +#: ../../mod/settings.php:957 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" +#: ../../mod/settings.php:959 +msgid "Hide my online presence" +msgstr "Meine Online-Präsenz verbergen" -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authentifizieren" +#: ../../mod/settings.php:959 +msgid "Prevents displaying in your profile that you are online" +msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." +#: ../../mod/settings.php:961 +msgid "Simple Privacy Settings:" +msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../mod/admin.php:97 ../../mod/admin.php:413 -msgid "Site" -msgstr "Seite" +#: ../../mod/settings.php:962 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Konten" +#: ../../mod/settings.php:963 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" -#: ../../mod/admin.php:99 ../../mod/admin.php:860 -msgid "Channels" -msgstr "Kanäle" +#: ../../mod/settings.php:964 +msgid "Private - default private, never open or public" +msgstr "Private – Standard privat, nie offen oder öffentlich" -#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 -msgid "Plugins" -msgstr "Plug-Ins" +#: ../../mod/settings.php:965 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 -msgid "Themes" -msgstr "Themes" +#: ../../mod/settings.php:967 +msgid "Allow others to tag your posts" +msgstr "Erlaube anderen, Deine Beiträge zu taggen" -#: ../../mod/admin.php:102 ../../mod/admin.php:515 -msgid "Server" -msgstr "Server" +#: ../../mod/settings.php:967 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Profilkonfiguration" +#: ../../mod/settings.php:969 +msgid "Advanced Privacy Settings" +msgstr "Fortgeschrittene Privatsphäre-Einstellungen" -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "DB-Aktualisierungen" +#: ../../mod/settings.php:971 +msgid "Expire other channel content after this many days" +msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 -msgid "Logs" -msgstr "Protokolle" +#: ../../mod/settings.php:971 +msgid "0 or blank prevents expiration" +msgstr "0 oder kein Inhalt verhindern das Verfallen" -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" +#: ../../mod/settings.php:972 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" +#: ../../mod/settings.php:972 +msgid "May reduce spam activity" +msgstr "Kann die Spam-Aktivität verringern" -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" +#: ../../mod/settings.php:973 +msgid "Default Post Permissions" +msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" -#: ../../mod/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 -#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:950 -#: ../../mod/admin.php:992 ../../mod/admin.php:1155 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 -msgid "Administration" -msgstr "Administration" +#: ../../mod/settings.php:978 +msgid "Channel permissions category:" +msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "Zusammenfassung" +#: ../../mod/settings.php:986 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Registrierte Benutzer" +#: ../../mod/settings.php:986 +msgid "Useful to reduce spamming" +msgstr "Nützlich, um Spam zu verringern" -#: ../../mod/admin.php:216 ../../mod/admin.php:518 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" +#: ../../mod/settings.php:989 +msgid "Notification Settings" +msgstr "Benachrichtigungs-Einstellungen" -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Version" +#: ../../mod/settings.php:990 +msgid "By default post a status message when:" +msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../mod/admin.php:219 ../../mod/admin.php:519 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" +#: ../../mod/settings.php:991 +msgid "accepting a friend request" +msgstr "Du eine Kontaktanfrage annimmst" -#: ../../mod/admin.php:333 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." +#: ../../mod/settings.php:992 +msgid "joining a forum/community" +msgstr "Du einem Forum beitrittst" -#: ../../mod/admin.php:364 -msgid "No special theme for accessibility" -msgstr "Kein spezielles Accessibility-Theme vorhanden" +#: ../../mod/settings.php:993 +msgid "making an interesting profile change" +msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../mod/admin.php:393 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" +#: ../../mod/settings.php:994 +msgid "Send a notification email when:" +msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../mod/admin.php:399 -msgid "My site is not a public server" -msgstr "Meine Server ist kein öffentlicher Server" +#: ../../mod/settings.php:995 +msgid "You receive a connection request" +msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../mod/admin.php:400 -msgid "My site has paid access only" -msgstr "Mein Server erlaubt nur bezahlten Zugang" +#: ../../mod/settings.php:996 +msgid "Your connections are confirmed" +msgstr "Eine Verbindung bestätigt wurde" -#: ../../mod/admin.php:401 -msgid "My site has free access only" -msgstr "Mein Server erlaubt ausschließlich freien Zugang" +#: ../../mod/settings.php:997 +msgid "Someone writes on your profile wall" +msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../mod/admin.php:402 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" +#: ../../mod/settings.php:998 +msgid "Someone writes a followup comment" +msgstr "Jemand einen Beitrag kommentiert" -#: ../../mod/admin.php:415 ../../mod/register.php:203 -msgid "Registration" -msgstr "Registrierung" +#: ../../mod/settings.php:999 +msgid "You receive a private message" +msgstr "Du eine private Nachricht erhältst" -#: ../../mod/admin.php:416 -msgid "File upload" -msgstr "Dateiupload" +#: ../../mod/settings.php:1000 +msgid "You receive a friend suggestion" +msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../mod/admin.php:417 -msgid "Policies" -msgstr "Richtlinien" +#: ../../mod/settings.php:1001 +msgid "You are tagged in a post" +msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../mod/admin.php:422 -msgid "Site name" -msgstr "Seitenname" +#: ../../mod/settings.php:1002 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../mod/admin.php:423 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../mod/settings.php:1005 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../mod/admin.php:424 -msgid "Administrator Information" -msgstr "Administrator-Informationen" +#: ../../mod/settings.php:1006 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" -#: ../../mod/admin.php:424 +#: ../../mod/settings.php:1009 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" -#: ../../mod/admin.php:425 -msgid "System language" -msgstr "System-Sprache" +#: ../../mod/settings.php:1010 +msgid "Miscellaneous Settings" +msgstr "Sonstige Einstellungen" -#: ../../mod/admin.php:426 -msgid "System theme" -msgstr "System-Theme" +#: ../../mod/settings.php:1012 +msgid "Personal menu to display in your channel pages" +msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../mod/admin.php:426 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" +#: ../../mod/settings.php:1013 +msgid "Remove this channel" +msgstr "Diesen Kanal löschen" -#: ../../mod/admin.php:427 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" -#: ../../mod/admin.php:427 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" -#: ../../mod/admin.php:428 -msgid "Accessibility system theme" -msgstr "Accessibility-System-Theme" +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Empfänger" -#: ../../mod/admin.php:428 -msgid "Accessibility theme" -msgstr "Accessibility-Theme" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" -#: ../../mod/admin.php:430 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-Protokoll aktivieren" +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" -#: ../../mod/admin.php:430 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Kommunikation mit Diaspora und Friendica – experimentell" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" -#: ../../mod/admin.php:431 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" -#: ../../mod/admin.php:431 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." -#: ../../mod/admin.php:432 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" +#: ../../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 "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" -#: ../../mod/admin.php:432 +#: ../../mod/post.php:229 msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." -#: ../../mod/admin.php:433 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Element nicht verfügbar." + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "Ungültiges Element." + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." -#: ../../mod/admin.php:434 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:252 +msgid "Page not found." +msgstr "Seite nicht gefunden." -#: ../../mod/admin.php:435 -msgid "Register text" -msgstr "Registrierungstext" +#: ../../mod/siteinfo.php:90 +#, php-format +msgid "Version %s" +msgstr "Version %s" -#: ../../mod/admin.php:435 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" -#: ../../mod/admin.php:436 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" -#: ../../mod/admin.php:436 +#: ../../mod/siteinfo.php:132 +msgid "Red" +msgstr "Red" + +#: ../../mod/siteinfo.php:133 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." -#: ../../mod/admin.php:437 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" -#: ../../mod/admin.php:437 +#: ../../mod/siteinfo.php:138 msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "Besuche GetZot.com, um mehr über die Red-Matrix zu erfahren." -#: ../../mod/admin.php:438 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../mod/admin.php:438 +#: ../../mod/siteinfo.php:142 msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" -#: ../../mod/admin.php:439 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" +#: ../../mod/siteinfo.php:144 +msgid "Site Administrators" +msgstr "Administratoren" -#: ../../mod/admin.php:439 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist." +#: ../../mod/blocks.php:62 +msgid "Block Name" +msgstr "Block-Name" -#: ../../mod/admin.php:440 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:547 +msgid "Profile not found." +msgstr "Profil nicht gefunden." -#: ../../mod/admin.php:440 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profil gelöscht." -#: ../../mod/admin.php:441 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/admin.php:441 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Neues Profil erstellt." -#: ../../mod/admin.php:442 -msgid "Disable discovery tab" -msgstr "Den „Entdecken“-Reiter ausblenden" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profil kann nicht geklont werden." -#: ../../mod/admin.php:442 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte von anderen RedMatrix-Hubs angezeigt werden können." +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Dieses Profil kann nicht exportiert werden." -#: ../../mod/admin.php:443 -msgid "No login on Homepage" -msgstr "Kein Login auf der Homepage" +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "Profil-Name erforderlich." -#: ../../mod/admin.php:443 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)." +#: ../../mod/profiles.php:362 +msgid "Marital Status" +msgstr "Familienstand" -#: ../../mod/admin.php:445 -msgid "Proxy user" -msgstr "Proxy Benutzer" +#: ../../mod/profiles.php:366 +msgid "Romantic Partner" +msgstr "Romantische Partner" -#: ../../mod/admin.php:446 -msgid "Proxy URL" -msgstr "Proxy URL" +#: ../../mod/profiles.php:370 +msgid "Likes" +msgstr "Gefällt" -#: ../../mod/admin.php:447 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" +#: ../../mod/profiles.php:374 +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../mod/admin.php:447 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." +#: ../../mod/profiles.php:378 +msgid "Work/Employment" +msgstr "Arbeit/Anstellung" -#: ../../mod/admin.php:448 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" +#: ../../mod/profiles.php:381 +msgid "Religion" +msgstr "Religion" -#: ../../mod/admin.php:448 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." +#: ../../mod/profiles.php:385 +msgid "Political Views" +msgstr "Politische Ansichten" -#: ../../mod/admin.php:449 -msgid "Poll interval" -msgstr "Abfrageintervall" +#: ../../mod/profiles.php:389 +msgid "Gender" +msgstr "Geschlecht" -#: ../../mod/admin.php:449 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." +#: ../../mod/profiles.php:393 +msgid "Sexual Preference" +msgstr "Sexuelle Orientierung" -#: ../../mod/admin.php:450 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" +#: ../../mod/profiles.php:397 +msgid "Homepage" +msgstr "Webseite" -#: ../../mod/admin.php:450 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" +#: ../../mod/profiles.php:401 +msgid "Interests" +msgstr "Hobbys/Interessen" -#: ../../mod/admin.php:506 -msgid "No server found" -msgstr "Kein Server gefunden" +#: ../../mod/profiles.php:405 ../../mod/admin.php:868 +msgid "Address" +msgstr "Adresse" -#: ../../mod/admin.php:513 ../../mod/admin.php:737 -msgid "ID" -msgstr "ID" +#: ../../mod/profiles.php:412 ../../mod/pubsites.php:25 +msgid "Location" +msgstr "Ort" -#: ../../mod/admin.php:513 -msgid "for channel" -msgstr "für Kanal" +#: ../../mod/profiles.php:495 +msgid "Profile updated." +msgstr "Profil aktualisiert." -#: ../../mod/admin.php:513 -msgid "on server" -msgstr "auf Server" +#: ../../mod/profiles.php:572 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" -#: ../../mod/admin.php:513 -msgid "Status" -msgstr "Status" +#: ../../mod/profiles.php:614 +msgid "Edit Profile Details" +msgstr "Bearbeite Profil-Details" -#: ../../mod/admin.php:534 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" +#: ../../mod/profiles.php:616 +msgid "View this profile" +msgstr "Dieses Profil ansehen" -#: ../../mod/admin.php:544 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." +#: ../../mod/profiles.php:618 +msgid "Change Profile Photo" +msgstr "Profilfoto ändern" -#: ../../mod/admin.php:547 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." +#: ../../mod/profiles.php:619 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" -#: ../../mod/admin.php:551 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." +#: ../../mod/profiles.php:620 +msgid "Clone this profile" +msgstr "Dieses Profil klonen" -#: ../../mod/admin.php:554 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." +#: ../../mod/profiles.php:621 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" + +#: ../../mod/profiles.php:623 +msgid "Import profile from file" +msgstr "Profil aus einer Datei importieren" + +#: ../../mod/profiles.php:624 +msgid "Export profile to file" +msgstr "Profil in eine Datei exportieren" + +#: ../../mod/profiles.php:625 +msgid "Profile Name:" +msgstr "Profilname:" + +#: ../../mod/profiles.php:626 +msgid "Your Full Name:" +msgstr "Dein voller Name:" -#: ../../mod/admin.php:569 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." +#: ../../mod/profiles.php:627 +msgid "Title/Description:" +msgstr "Titel/Stellenbeschreibung:" -#: ../../mod/admin.php:573 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" +#: ../../mod/profiles.php:628 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" -#: ../../mod/admin.php:575 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" +#: ../../mod/profiles.php:629 +msgid "Birthday :" +msgstr "Geburtstag:" -#: ../../mod/admin.php:576 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" +#: ../../mod/profiles.php:630 +msgid "Street Address:" +msgstr "Straße und Hausnummer:" -#: ../../mod/admin.php:602 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s Nutzer blockiert/freigegeben" -msgstr[1] "%s Nutzer blockiert/freigegeben" +#: ../../mod/profiles.php:631 +msgid "Locality/City:" +msgstr "Wohnort:" -#: ../../mod/admin.php:609 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s Nutzer gelöscht" -msgstr[1] "%s Nutzer gelöscht" +#: ../../mod/profiles.php:632 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" -#: ../../mod/admin.php:638 -msgid "Account not found" -msgstr "Konto nicht gefunden" +#: ../../mod/profiles.php:633 +msgid "Country:" +msgstr "Land:" -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' unblocked" -msgstr "Benutzer '%s' freigegeben" +#: ../../mod/profiles.php:634 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' blocked" -msgstr "Benutzer '%s' blockiert" +#: ../../mod/profiles.php:635 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" -#: ../../mod/admin.php:724 ../../mod/admin.php:736 -msgid "Users" -msgstr "Benutzer" +#: ../../mod/profiles.php:636 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" -#: ../../mod/admin.php:726 ../../mod/admin.php:862 -msgid "select all" -msgstr "Alle auswählen" +#: ../../mod/profiles.php:637 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/admin.php:727 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" +#: ../../mod/profiles.php:638 +msgid "Since [date]:" +msgstr "Seit [Datum]:" -#: ../../mod/admin.php:728 -msgid "Request date" -msgstr "Antragsdatum" +#: ../../mod/profiles.php:640 +msgid "Homepage URL:" +msgstr "Homepage URL:" -#: ../../mod/admin.php:729 -msgid "No registrations." -msgstr "Keine Registrierungen." +#: ../../mod/profiles.php:643 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" -#: ../../mod/admin.php:730 -msgid "Approve" -msgstr "Genehmigen" +#: ../../mod/profiles.php:644 +msgid "Keywords:" +msgstr "Schlüsselwörter:" -#: ../../mod/admin.php:731 -msgid "Deny" -msgstr "Verweigern" +#: ../../mod/profiles.php:647 +msgid "Example: fishing photography software" +msgstr "Beispiel: Angeln Fotografie Software" -#: ../../mod/admin.php:733 ../../mod/connedit.php:436 -#: ../../mod/connedit.php:579 -msgid "Block" -msgstr "Blockieren" +#: ../../mod/profiles.php:648 +msgid "Used in directory listings" +msgstr "Wird in Verzeichnis-Auflistungen verwendet" -#: ../../mod/admin.php:734 ../../mod/connedit.php:436 -#: ../../mod/connedit.php:579 -msgid "Unblock" -msgstr "Freigeben" +#: ../../mod/profiles.php:649 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein wenig von Dir …" -#: ../../mod/admin.php:737 -msgid "Register date" -msgstr "Registrierungs-Datum" +#: ../../mod/profiles.php:650 +msgid "Hobbies/Interests" +msgstr "Hobbys/Interessen" -#: ../../mod/admin.php:737 -msgid "Last login" -msgstr "Letzte Anmeldung" +#: ../../mod/profiles.php:651 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformation und soziale Netzwerke" -#: ../../mod/admin.php:737 -msgid "Expires" -msgstr "Verfällt" +#: ../../mod/profiles.php:652 +msgid "My other channels" +msgstr "Meine anderen Kanäle" -#: ../../mod/admin.php:737 -msgid "Service Class" -msgstr "Service-Klasse" +#: ../../mod/profiles.php:653 +msgid "Musical interests" +msgstr "Musikalische Interessen" -#: ../../mod/admin.php:739 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?" +#: ../../mod/profiles.php:654 +msgid "Books, literature" +msgstr "Bücher, Literatur" -#: ../../mod/admin.php:740 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" +#: ../../mod/profiles.php:655 +msgid "Television" +msgstr "Fernsehen" -#: ../../mod/admin.php:773 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s Kanal gesperrt/freigegeben" -msgstr[1] "%s Kanäle gesperrt/freigegeben" +#: ../../mod/profiles.php:656 +msgid "Film/dance/culture/entertainment" +msgstr "Film/Tanz/Kultur/Unterhaltung" -#: ../../mod/admin.php:780 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s Kanal gelöscht" -msgstr[1] "%s Kanäle gelöscht" +#: ../../mod/profiles.php:657 +msgid "Love/romance" +msgstr "Liebe/Romantik" -#: ../../mod/admin.php:799 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" +#: ../../mod/profiles.php:658 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" -#: ../../mod/admin.php:810 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" +#: ../../mod/profiles.php:659 +msgid "School/education" +msgstr "Schule/Ausbildung" -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" +#: ../../mod/profiles.php:665 +msgid "This is your default profile." +msgstr "Das ist Dein Standardprofil" -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" +#: ../../mod/profiles.php:676 ../../mod/directory.php:143 +#: ../../mod/dirprofile.php:92 +msgid "Age: " +msgstr "Alter:" -#: ../../mod/admin.php:864 -msgid "Censor" -msgstr "Sperren" +#: ../../mod/profiles.php:719 +msgid "Edit/Manage Profiles" +msgstr "Profile bearbeiten/verwalten" -#: ../../mod/admin.php:865 -msgid "Uncensor" -msgstr "Freigeben" +#: ../../mod/profiles.php:720 +msgid "Add profile things" +msgstr "Sachen zum Profil hinzufügen" -#: ../../mod/admin.php:868 -msgid "UID" -msgstr "UID" +#: ../../mod/profiles.php:721 +msgid "Include desirable objects in your profile" +msgstr "Binde begehrenswerte Dinge in Dein Profil ein" -#: ../../mod/admin.php:868 ../../mod/profiles.php:433 -msgid "Address" -msgstr "Adresse" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../mod/admin.php:870 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../mod/admin.php:871 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." -#: ../../mod/admin.php:910 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Sichtbar für" -#: ../../mod/admin.php:914 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" +msgstr "Alle Verbindungen" -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 -msgid "Disable" -msgstr "Deaktivieren" +#: ../../mod/events.php:81 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." -#: ../../mod/admin.php:926 ../../mod/admin.php:1128 -msgid "Enable" -msgstr "Aktivieren" +#: ../../mod/events.php:86 +msgid "Event title and start time are required." +msgstr "Veranstaltungs- Titel und Startzeit sind erforderlich." -#: ../../mod/admin.php:952 ../../mod/admin.php:1157 -msgid "Toggle" -msgstr "Umschalten" +#: ../../mod/events.php:100 +msgid "Event not found." +msgstr "Termin nicht gefunden." -#: ../../mod/admin.php:960 ../../mod/admin.php:1167 -msgid "Author: " -msgstr "Autor: " +#: ../../mod/events.php:364 +msgid "l, F j" +msgstr "l, j. F" -#: ../../mod/admin.php:961 ../../mod/admin.php:1168 -msgid "Maintainer: " -msgstr "Betreuer:" +#: ../../mod/events.php:386 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" -#: ../../mod/admin.php:1090 -msgid "No themes found." -msgstr "Keine Theme gefunden." +#: ../../mod/events.php:432 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" -#: ../../mod/admin.php:1149 -msgid "Screenshot" -msgstr "Bildschirmfoto" +#: ../../mod/events.php:560 +msgid "Event details" +msgstr "Veranstaltungs-Details" -#: ../../mod/admin.php:1197 -msgid "[Experimental]" -msgstr "[Experimentell]" +#: ../../mod/events.php:561 +msgid "Starting date and Title are required." +msgstr "Startdatum und Titel sind erforderlich." -#: ../../mod/admin.php:1198 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" +#: ../../mod/events.php:565 +msgid "Event Starts:" +msgstr "Veranstaltung startet:" -#: ../../mod/admin.php:1225 -msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." +#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" +msgstr "Benötigt" -#: ../../mod/admin.php:1281 -msgid "Clear" -msgstr "Leeren" +#: ../../mod/events.php:571 +msgid "Finish date/time is not known or not relevant" +msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" -#: ../../mod/admin.php:1287 -msgid "Debugging" -msgstr "Debugging" +#: ../../mod/events.php:573 +msgid "Event Finishes:" +msgstr "Veranstaltung endet:" -#: ../../mod/admin.php:1288 -msgid "Log file" -msgstr "Protokolldatei" +#: ../../mod/events.php:575 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" -#: ../../mod/admin.php:1288 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis." +#: ../../mod/events.php:577 +msgid "Description:" +msgstr "Beschreibung:" -#: ../../mod/admin.php:1289 -msgid "Log level" -msgstr "Protokollstufe" +#: ../../mod/events.php:581 +msgid "Title:" +msgstr "Titel:" -#: ../../mod/admin.php:1336 -msgid "New Profile Field" -msgstr "Neues Profilfeld" +#: ../../mod/events.php:583 +msgid "Share this event" +msgstr "Die Veranstaltung teilen" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "Field nickname" -msgstr "Kurzname für das Feld" +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Öffentliche Server" -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "System name of field" -msgstr "Systemname des Feldes" +#: ../../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 "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen." -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 -msgid "Input type" -msgstr "Art des Inhalts" +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "Server-URL" -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Field Name" -msgstr "Feldname" +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Zugangstyp" -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Label on profile pages" -msgstr "Bezeichnung auf Profilseiten" +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Help text" -msgstr "Hilfetext" +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Additional info (optional)" -msgstr "Zusätzliche Informationen (optional)" +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." -#: ../../mod/admin.php:1351 -msgid "Field definition not found" -msgstr "Feld-Definition nicht gefunden" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Lesezeichenordner wählen" -#: ../../mod/admin.php:1357 -msgid "Edit Profile Field" -msgstr "Profilfeld bearbeiten" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Lesezeichen speichern" -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "– auswählen –" +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL des Lesezeichens" -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." -msgstr "Konnte nicht auf den Kontakteintrag zugreifen." +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Beschreibung" -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 -msgid "Could not locate selected profile." -msgstr "Gewähltes Profil nicht gefunden." +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" -#: ../../mod/connections.php:94 ../../mod/connedit.php:132 -msgid "Connection updated." -msgstr "Verbindung aktualisiert." +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" -#: ../../mod/connections.php:96 ../../mod/connedit.php:134 -msgid "Failed to update connection record." -msgstr "Konnte den Verbindungseintrag nicht aktualisieren." +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Raum verlassen" -#: ../../mod/connections.php:191 ../../mod/connections.php:292 -msgid "Blocked" -msgstr "Blockiert" +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Diesen Raum löschen" -#: ../../mod/connections.php:196 ../../mod/connections.php:299 -msgid "Ignored" -msgstr "Ignoriert" +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" -#: ../../mod/connections.php:201 ../../mod/connections.php:313 -msgid "Hidden" -msgstr "Versteckt" +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Ich bin online" -#: ../../mod/connections.php:206 ../../mod/connections.php:306 -msgid "Archived" -msgstr "Archiviert" +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" -#: ../../mod/connections.php:230 ../../mod/connections.php:245 -msgid "All" -msgstr "Alle" +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Neuer Chatraum" -#: ../../mod/connections.php:270 -msgid "Suggest new connections" -msgstr "Neue Verbindungen vorschlagen" +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Name des Chatraums" -#: ../../mod/connections.php:273 -msgid "New Connections" -msgstr "Neue Verbindungen" +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" -#: ../../mod/connections.php:276 -msgid "Show pending (new) connections" -msgstr "Zeige ausstehende (neue) Verbindungsanfragen" +#: ../../mod/register.php:42 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." -#: ../../mod/connections.php:279 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle Verbindungen" +#: ../../mod/register.php:48 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." -#: ../../mod/connections.php:282 -msgid "Show all connections" -msgstr "Zeige alle Verbindungen" +#: ../../mod/register.php:82 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." -#: ../../mod/connections.php:285 -msgid "Unblocked" -msgstr "Freigegeben" +#: ../../mod/register.php:115 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." -#: ../../mod/connections.php:288 -msgid "Only show unblocked connections" -msgstr "Zeige nur freigegebene Verbindungen" +#: ../../mod/register.php:121 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../mod/connections.php:295 -msgid "Only show blocked connections" -msgstr "Zeige nur blockierte Verbindungen" +#: ../../mod/register.php:124 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: ../../mod/connections.php:302 -msgid "Only show ignored connections" -msgstr "Zeige nur ignorierte Verbindungen" +#: ../../mod/register.php:161 +msgid "Registration on this site/hub is by approval only." +msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" -#: ../../mod/connections.php:309 -msgid "Only show archived connections" -msgstr "Zeige nur archivierte Verbindungen" +#: ../../mod/register.php:162 +msgid "Register at another affiliated site/hub" +msgstr "Registrierung auf einem anderen, angeschlossenen Server" -#: ../../mod/connections.php:316 -msgid "Only show hidden connections" -msgstr "Zeige nur versteckte Verbindungen" +#: ../../mod/register.php:170 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." + +#: ../../mod/register.php:181 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" -#: ../../mod/connections.php:371 +#: ../../mod/register.php:187 #, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" -#: ../../mod/connections.php:372 -msgid "Edit connection" -msgstr "Verbindung bearbeiten" +#: ../../mod/register.php:189 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" -#: ../../mod/connections.php:410 -msgid "Search your connections" -msgstr "Verbindungen durchsuchen" +#: ../../mod/register.php:203 ../../mod/admin.php:415 +msgid "Registration" +msgstr "Registrierung" -#: ../../mod/connections.php:411 -msgid "Finding: " -msgstr "Ergebnisse:" +#: ../../mod/register.php:208 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../mod/dirprofile.php:9 ../../mod/photos.php:443 -#: ../../mod/viewconnections.php:17 ../../mod/directory.php:15 -#: ../../mod/display.php:9 ../../mod/search.php:13 -msgid "Public access denied." -msgstr "Öffentlicher Zugang verweigert." +#: ../../mod/register.php:209 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" -#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 -#: ../../mod/profiles.php:704 -msgid "Age: " -msgstr "Alter:" +#: ../../mod/register.php:212 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" -#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 -msgid "Gender: " -msgstr "Geschlecht:" +#: ../../mod/register.php:213 +msgid "Choose a password" +msgstr "Passwort" -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "Status:" +#: ../../mod/register.php:214 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "Sexuelle Ausrichtung:" +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Abwesend" -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "Webseite:" +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "Wohnort:" +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Bitte melde dich an." -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "Über:" +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "Schlüsselwörter:" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Diesen Kanal löschen" -#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:38 -#: ../../mod/menu.php:120 -msgid "Not found." -msgstr "Nicht gefunden." +#: ../../mod/removeme.php:58 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet kann dieser Prozess nicht rückgängig gemacht werden." -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album nicht gefunden." +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" -#: ../../mod/photos.php:119 ../../mod/photos.php:673 -msgid "Delete Album" -msgstr "Album löschen" +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../mod/photos.php:159 ../../mod/photos.php:975 -msgid "Delete Photo" -msgstr "Foto löschen" +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Kanal löschen" -#: ../../mod/photos.php:453 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Kein Kanal." -#: ../../mod/photos.php:500 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" -#: ../../mod/photos.php:574 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du benutzt %1$.2f MBytes Deines %2$.2f MBytes großen Bilder-Speichers." +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." -#: ../../mod/photos.php:577 -#, php-format -msgid "You have used %1$.2f Mbytes of photo storage." -msgstr "Du verwendest %1$.2f MBytes Deines Foto-Speichers." +#: ../../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 "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." -#: ../../mod/photos.php:596 -msgid "Upload Photos" -msgstr "Fotos hochladen" +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" -#: ../../mod/photos.php:600 ../../mod/photos.php:668 -msgid "New album name: " -msgstr "Name des neuen Albums:" +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." -#: ../../mod/photos.php:601 -msgid "or existing album name: " -msgstr "Oder bestehender Album-Name:" +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" -#: ../../mod/photos.php:602 -msgid "Do not show a status post for this upload" -msgstr "Keine Statusnachricht für diesen Upload senden" +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" -#: ../../mod/photos.php:622 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Authentifizieren" -#: ../../mod/photos.php:657 ../../mod/photos.php:679 ../../mod/photos.php:1148 -#: ../../mod/photos.php:1163 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "Fortfahren" -#: ../../mod/photos.php:681 -msgid "Edit Album" -msgstr "Album bearbeiten" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" -#: ../../mod/photos.php:687 -msgid "Show Newest First" -msgstr "Zeige Neueste zuerst" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" -#: ../../mod/photos.php:689 -msgid "Show Oldest First" -msgstr "Zeige Älteste zuerst" +#: ../../mod/connect.php:87 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." -#: ../../mod/photos.php:716 ../../mod/photos.php:1195 -msgid "View Photo" -msgstr "Foto ansehen" +#: ../../mod/connect.php:89 ../../mod/connect.php:109 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." -#: ../../mod/photos.php:794 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." +#: ../../mod/connect.php:90 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" -#: ../../mod/photos.php:796 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" +#: ../../mod/connect.php:91 ../../mod/connect.php:112 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite." -#: ../../mod/photos.php:856 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" -#: ../../mod/photos.php:880 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" -#: ../../mod/photos.php:924 ../../mod/delegate.php:130 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Entferne" +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Sammlung nicht gefunden" -#: ../../mod/photos.php:958 -msgid "Edit photo" -msgstr "Foto bearbeiten" +#: ../../mod/network.php:118 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" -#: ../../mod/photos.php:960 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "Sammlung ist leer" -#: ../../mod/photos.php:961 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" +#: ../../mod/network.php:180 +msgid "Collection: " +msgstr "Sammlung:" -#: ../../mod/photos.php:964 -msgid "New album name" -msgstr "Name des neuen Albums:" +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "Verbindung:" -#: ../../mod/photos.php:967 -msgid "Caption" -msgstr "Bildunterschrift" +#: ../../mod/network.php:196 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." -#: ../../mod/photos.php:969 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" +#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +msgid "Could not access contact record." +msgstr "Konnte nicht auf den Kontakteintrag zugreifen." -#: ../../mod/photos.php:972 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +#: ../../mod/connections.php:51 ../../mod/connedit.php:78 +msgid "Could not locate selected profile." +msgstr "Gewähltes Profil nicht gefunden." -#: ../../mod/photos.php:1125 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" +#: ../../mod/connections.php:94 ../../mod/connedit.php:132 +msgid "Connection updated." +msgstr "Verbindung aktualisiert." -#: ../../mod/photos.php:1201 -msgid "View Album" -msgstr "Album ansehen" +#: ../../mod/connections.php:96 ../../mod/connedit.php:134 +msgid "Failed to update connection record." +msgstr "Konnte den Verbindungseintrag nicht aktualisieren." + +#: ../../mod/connections.php:191 ../../mod/connections.php:292 +msgid "Blocked" +msgstr "Blockiert" -#: ../../mod/photos.php:1224 -msgid "Recent Photos" -msgstr "Neueste Fotos" +#: ../../mod/connections.php:196 ../../mod/connections.php:299 +msgid "Ignored" +msgstr "Ignoriert" -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." -msgstr "Menü nicht gefunden" +#: ../../mod/connections.php:201 ../../mod/connections.php:313 +msgid "Hidden" +msgstr "Versteckt" -#: ../../mod/mitem.php:47 -msgid "Menu element updated." -msgstr "Menü-Element aktualisiert." +#: ../../mod/connections.php:206 ../../mod/connections.php:306 +msgid "Archived" +msgstr "Archiviert" -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." +#: ../../mod/connections.php:230 ../../mod/connections.php:245 +msgid "All" +msgstr "Alle" -#: ../../mod/mitem.php:57 -msgid "Menu element added." -msgstr "Menü-Bestandteil hinzugefügt." +#: ../../mod/connections.php:270 +msgid "Suggest new connections" +msgstr "Neue Verbindungen vorschlagen" -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." +#: ../../mod/connections.php:273 +msgid "New Connections" +msgstr "Neue Verbindungen" -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" -msgstr "Menü-Bestandteile verwalten" +#: ../../mod/connections.php:276 +msgid "Show pending (new) connections" +msgstr "Zeige ausstehende (neue) Verbindungsanfragen" -#: ../../mod/mitem.php:99 -msgid "Edit menu" -msgstr "Menü bearbeiten" +#: ../../mod/connections.php:282 +msgid "Show all connections" +msgstr "Zeige alle Verbindungen" -#: ../../mod/mitem.php:102 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" +#: ../../mod/connections.php:285 +msgid "Unblocked" +msgstr "Freigegeben" -#: ../../mod/mitem.php:103 -msgid "Drop element" -msgstr "Bestandteil löschen" +#: ../../mod/connections.php:288 +msgid "Only show unblocked connections" +msgstr "Zeige nur freigegebene Verbindungen" -#: ../../mod/mitem.php:104 -msgid "New element" -msgstr "Neues Bestandteil" +#: ../../mod/connections.php:295 +msgid "Only show blocked connections" +msgstr "Zeige nur blockierte Verbindungen" -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" +#: ../../mod/connections.php:302 +msgid "Only show ignored connections" +msgstr "Zeige nur ignorierte Verbindungen" -#: ../../mod/mitem.php:106 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" +#: ../../mod/connections.php:309 +msgid "Only show archived connections" +msgstr "Zeige nur archivierte Verbindungen" -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" +#: ../../mod/connections.php:316 +msgid "Only show hidden connections" +msgstr "Zeige nur versteckte Verbindungen" -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" +#: ../../mod/connections.php:371 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../mod/mitem.php:131 -msgid "New Menu Element" -msgstr "Neues Menü-Bestandteil" +#: ../../mod/connections.php:372 +msgid "Edit connection" +msgstr "Verbindung bearbeiten" -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" +#: ../../mod/connections.php:410 +msgid "Search your connections" +msgstr "Verbindungen durchsuchen" -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" -msgstr "Link Text" +#: ../../mod/connections.php:411 +msgid "Finding: " +msgstr "Ergebnisse:" -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" -msgstr "URL des Links" +#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" -msgstr "Verwende Red Magic-Auth wenn verfügbar" +#: ../../mod/connedit.php:181 +msgid "is now connected to" +msgstr "ist jetzt verbunden mit" -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" +#: ../../mod/connedit.php:302 +msgid "Could not access address book record." +msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" +#: ../../mod/connedit.php:316 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" +#: ../../mod/connedit.php:323 +msgid "Channel has been unblocked" +msgstr "Kanal nicht mehr blockiert" -#: ../../mod/mitem.php:154 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." +#: ../../mod/connedit.php:324 +msgid "Channel has been blocked" +msgstr "Kanal blockiert" -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." +#: ../../mod/connedit.php:328 ../../mod/connedit.php:340 +#: ../../mod/connedit.php:352 ../../mod/connedit.php:364 +#: ../../mod/connedit.php:380 +msgid "Unable to set address book parameters." +msgstr "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." +#: ../../mod/connedit.php:335 +msgid "Channel has been unignored" +msgstr "Kanal wird nicht mehr ignoriert" -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" +#: ../../mod/connedit.php:336 +msgid "Channel has been ignored" +msgstr "Kanal wird ignoriert" -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" -msgstr "Ändern" +#: ../../mod/connedit.php:347 +msgid "Channel has been unarchived" +msgstr "Kanal wurde aus dem Archiv zurück geholt" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt nun %2$ss %3$s" +#: ../../mod/connedit.php:348 +msgid "Channel has been archived" +msgstr "Kanal wurde archiviert" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Bitte melde dich an." +#: ../../mod/connedit.php:359 +msgid "Channel has been unhidden" +msgstr "Kanal wird nicht mehr versteckt" -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" +#: ../../mod/connedit.php:360 +msgid "Channel has been hidden" +msgstr "Kanal wurde versteckt" -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webseite" +#: ../../mod/connedit.php:375 +msgid "Channel has been approved" +msgstr "Kanal wurde zugelassen" -#: ../../mod/impel.php:38 -msgid "block" -msgstr "Block" +#: ../../mod/connedit.php:376 +msgid "Channel has been unapproved" +msgstr "Zulassung des Kanals entfernt" -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "Layout" +#: ../../mod/connedit.php:404 +msgid "Connection has been removed." +msgstr "Verbindung wurde gelöscht." -#: ../../mod/impel.php:117 +#: ../../mod/connedit.php:424 #, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" - -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." +msgid "View %s's profile" +msgstr "%ss Profil ansehen" -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: ../../mod/connedit.php:428 +msgid "Refresh Permissions" +msgstr "Zugriffsrechte neu laden" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" +#: ../../mod/connedit.php:431 +msgid "Fetch updated permissions" +msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" +#: ../../mod/connedit.php:435 +msgid "Recent Activity" +msgstr "Kürzliche Aktivitäten" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" +#: ../../mod/connedit.php:438 +msgid "View recent posts and comments" +msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Beschreibung" +#: ../../mod/connedit.php:442 ../../mod/connedit.php:585 +#: ../../mod/admin.php:734 +msgid "Unblock" +msgstr "Freigeben" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" +#: ../../mod/connedit.php:442 ../../mod/connedit.php:585 +#: ../../mod/admin.php:733 +msgid "Block" +msgstr "Blockieren" -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout aktualisiert." +#: ../../mod/connedit.php:445 +msgid "Block or Unblock this connection" +msgstr "Verbindung blockieren oder freigeben" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" +#: ../../mod/connedit.php:449 ../../mod/connedit.php:586 +msgid "Unignore" +msgstr "Nicht ignorieren" -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout nicht gefunden." +#: ../../mod/connedit.php:449 ../../mod/connedit.php:586 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorieren" -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulname:" +#: ../../mod/connedit.php:452 +msgid "Ignore or Unignore this connection" +msgstr "Verbindung ignorieren oder wieder beachten" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "Layout-Hilfe" +#: ../../mod/connedit.php:455 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." +#: ../../mod/connedit.php:455 +msgid "Archive" +msgstr "Archivieren" -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." -msgstr "Bild-Anpassung fehlgeschlagen." +#: ../../mod/connedit.php:458 +msgid "Archive or Unarchive this connection" +msgstr "Verbindung archivieren oder aus dem Archiv zurückholen" -#: ../../mod/profile_photo.php:205 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." +#: ../../mod/connedit.php:461 +msgid "Unhide" +msgstr "Wieder sichtbar machen" -#: ../../mod/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bild ist größer als das Limit von %d" +#: ../../mod/connedit.php:461 +msgid "Hide" +msgstr "Verstecken" -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." -msgstr "Kann Bild nicht verarbeiten." +#: ../../mod/connedit.php:464 +msgid "Hide or Unhide this connection" +msgstr "Diese Verbindung verstecken oder wieder sichtbar machen" -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." -msgstr "Foto nicht verfügbar." +#: ../../mod/connedit.php:471 +msgid "Delete this connection" +msgstr "Verbindung löschen" -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" -msgstr "Datei hochladen:" +#: ../../mod/connedit.php:514 ../../mod/connedit.php:543 +msgid "Approve this connection" +msgstr "Verbindung genehmigen" -#: ../../mod/profile_photo.php:359 -msgid "Select a profile:" -msgstr "Wähle ein Profil:" +#: ../../mod/connedit.php:514 +msgid "Accept connection to allow communication" +msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" +#: ../../mod/connedit.php:530 +msgid "Automatic Permissions Settings" +msgstr "Automatische Berechtigungs-Einstellungen" -#: ../../mod/profile_photo.php:365 -msgid "skip this step" -msgstr "diesen Schritt überspringen" +#: ../../mod/connedit.php:530 +#, php-format +msgid "Connections: settings for %s" +msgstr "Verbindungseinstellungen für %s" -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "ein Foto aus meinen Fotoalben" +#: ../../mod/connedit.php:534 +msgid "" +"When receiving a channel introduction, any permissions provided here will be" +" applied to the new connection automatically and the introduction approved. " +"Leave this page if you do not wish to use this feature." +msgstr "Wenn eine Verbindungsanfrage empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt, und die Anfrage wird genehmigt. Verlasse diese Seite, wenn Du diese Funktion nicht verwenden möchtest." -#: ../../mod/profile_photo.php:381 -msgid "Crop Image" -msgstr "Bild zuschneiden" +#: ../../mod/connedit.php:536 +msgid "Slide to adjust your degree of friendship" +msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../mod/profile_photo.php:382 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." +#: ../../mod/connedit.php:542 +msgid "inherited" +msgstr "geerbt" -#: ../../mod/profile_photo.php:384 -msgid "Done Editing" -msgstr "Bearbeitung fertigstellen" +#: ../../mod/connedit.php:544 +msgid "Connection has no individual permissions!" +msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" -#: ../../mod/profile_photo.php:427 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." +#: ../../mod/connedit.php:545 +msgid "" +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen." -#: ../../mod/profile_photo.php:429 -msgid "Image upload failed." -msgstr "Hochladen des Bilds fehlgeschlagen." +#: ../../mod/connedit.php:547 +msgid "Profile Visibility" +msgstr "Sichtbarkeit des Profils" -#: ../../mod/profile_photo.php:438 +#: ../../mod/connedit.php:548 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../mod/acl.php:244 -msgid "network" -msgstr "Netzwerk" +#: ../../mod/connedit.php:549 +msgid "Contact Information / Notes" +msgstr "Kontaktinformationen / Notizen" -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "Menü aktualisiert." +#: ../../mod/connedit.php:550 +msgid "Edit contact notes" +msgstr "Kontaktnotizen bearbeiten" -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." +#: ../../mod/connedit.php:552 +msgid "Their Settings" +msgstr "Deren Einstellungen" -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "Menü erstellt." +#: ../../mod/connedit.php:553 +msgid "My Settings" +msgstr "Meine Einstellungen" -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." +#: ../../mod/connedit.php:555 +msgid "Clear/Disable Automatic Permissions" +msgstr "Automatische Berechtigungen abschalten/entfernen" -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "Menüs verwalten" +#: ../../mod/connedit.php:556 +msgid "Forum Members" +msgstr "Forum Mitglieder" -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "Löschen" +#: ../../mod/connedit.php:557 +msgid "Soapbox" +msgstr "Marktschreier" -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "Neues Menü erstellen" +#: ../../mod/connedit.php:558 +msgid "Full Sharing (typical social network permissions)" +msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" +#: ../../mod/connedit.php:559 +msgid "Cautious Sharing " +msgstr "Vorsichtiges Teilen" -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" +#: ../../mod/connedit.php:560 +msgid "Follow Only" +msgstr "Nur folgen" -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" +#: ../../mod/connedit.php:561 +msgid "Individual Permissions" +msgstr "Individuelle Zugriffsrechte" -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "Neues Menü" +#: ../../mod/connedit.php:562 +msgid "" +"Some permissions may be inherited from your channel privacy settings, which have higher priority than " +"individual settings. Changing those inherited settings on this page will " +"have no effect." +msgstr "Einige Berechtigungen werden von den Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen." -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "Menü Name" +#: ../../mod/connedit.php:563 +msgid "Advanced Permissions" +msgstr "Zugriffsrechte für Fortgeschrittene" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" +#: ../../mod/connedit.php:564 +msgid "Simple Permissions (select one and submit)" +msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "Menü Titel" +#: ../../mod/connedit.php:568 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "%ss Profil besuchen - %s" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" +#: ../../mod/connedit.php:569 +msgid "Block/Unblock contact" +msgstr "Kontakt blockieren/freigeben" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" +#: ../../mod/connedit.php:570 +msgid "Ignore contact" +msgstr "Kontakt ignorieren" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" +#: ../../mod/connedit.php:571 +msgid "Repair URL settings" +msgstr "URL-Einstellungen reparieren" -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "Menü gelöscht." +#: ../../mod/connedit.php:572 +msgid "View conversations" +msgstr "Unterhaltungen anzeigen" -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." +#: ../../mod/connedit.php:574 +msgid "Delete contact" +msgstr "Kontakt löschen" -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "Menü bearbeiten" +#: ../../mod/connedit.php:577 +msgid "Last update:" +msgstr "Letzte Aktualisierung:" -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" +#: ../../mod/connedit.php:579 +msgid "Update public posts" +msgstr "Öffentliche Beiträge aktualisieren" -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." -msgstr "Ungültiges Element." +#: ../../mod/connedit.php:581 +msgid "Update now" +msgstr "Jetzt aktualisieren" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:47 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." +#: ../../mod/connedit.php:587 +msgid "Currently blocked" +msgstr "Derzeit blockiert" -#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/display.php:102 -#: ../../mod/page.php:83 ../../index.php:240 -msgid "Page not found." -msgstr "Seite nicht gefunden." +#: ../../mod/connedit.php:588 +msgid "Currently ignored" +msgstr "Derzeit ignoriert" -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" +#: ../../mod/connedit.php:589 +msgid "Currently archived" +msgstr "Derzeit archiviert" -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "Wall Fotos" +#: ../../mod/connedit.php:590 +msgid "Currently pending" +msgstr "Derzeit anstehend" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: ../../mod/connedit.php:591 +msgid "Hide this contact from others" +msgstr "Diese Verbindung vor den anderen verbergen." -#: ../../mod/suggest.php:35 +#: ../../mod/connedit.php:591 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." +"Replies/likes to your public posts may still be visible" +msgstr "Antworten/Likes auf deine öffentlichen Beiträge können immer noch sichtbar sein" -#: ../../mod/connedit.php:181 -msgid "is now connected to" -msgstr "ist jetzt verbunden mit" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." -#: ../../mod/connedit.php:296 -msgid "Could not access address book record." -msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für diese Seite" -#: ../../mod/connedit.php:310 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." +#: ../../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 "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" -#: ../../mod/connedit.php:317 -msgid "Channel has been unblocked" -msgstr "Kanal nicht mehr blockiert" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Vorhandene Seitenmanager" -#: ../../mod/connedit.php:318 -msgid "Channel has been blocked" -msgstr "Kanal blockiert" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" -#: ../../mod/connedit.php:322 ../../mod/connedit.php:334 -#: ../../mod/connedit.php:346 ../../mod/connedit.php:358 -#: ../../mod/connedit.php:374 -msgid "Unable to set address book parameters." -msgstr "Konnte die Adressbuch-Parameter nicht setzen." +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" -#: ../../mod/connedit.php:329 -msgid "Channel has been unignored" -msgstr "Kanal wird nicht mehr ignoriert" +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Hinzufügen" -#: ../../mod/connedit.php:330 -msgid "Channel has been ignored" -msgstr "Kanal wird ignoriert" +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Keine Einträge." -#: ../../mod/connedit.php:341 -msgid "Channel has been unarchived" -msgstr "Kanal wurde aus dem Archiv zurück geholt" +#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 +msgid "Gender: " +msgstr "Geschlecht:" -#: ../../mod/connedit.php:342 -msgid "Channel has been archived" -msgstr "Kanal wurde archiviert" +#: ../../mod/directory.php:223 +msgid "Finding:" +msgstr "Ergebnisse:" -#: ../../mod/connedit.php:353 -msgid "Channel has been unhidden" -msgstr "Kanal wird nicht mehr versteckt" +#: ../../mod/directory.php:228 +msgid "next page" +msgstr "nächste Seite" -#: ../../mod/connedit.php:354 -msgid "Channel has been hidden" -msgstr "Kanal wurde versteckt" +#: ../../mod/directory.php:228 +msgid "previous page" +msgstr "vorherige Seite" -#: ../../mod/connedit.php:369 -msgid "Channel has been approved" -msgstr "Kanal wurde zugelassen" +#: ../../mod/directory.php:245 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." -#: ../../mod/connedit.php:370 -msgid "Channel has been unapproved" -msgstr "Zulassung des Kanals entfernt" +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" -#: ../../mod/connedit.php:398 -msgid "Connection has been removed." -msgstr "Verbindung wurde gelöscht." +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" -#: ../../mod/connedit.php:418 -#, php-format -msgid "View %s's profile" -msgstr "%ss Profil ansehen" +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" -#: ../../mod/connedit.php:422 -msgid "Refresh Permissions" -msgstr "Zugriffsrechte neu laden" +#: ../../mod/dirprofile.php:108 +msgid "Status: " +msgstr "Status:" -#: ../../mod/connedit.php:425 -msgid "Fetch updated permissions" -msgstr "Aktualisierte Zugriffsrechte abfragen" +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " +msgstr "Sexuelle Ausrichtung:" -#: ../../mod/connedit.php:429 -msgid "Recent Activity" -msgstr "Kürzliche Aktivitäten" +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " +msgstr "Webseite:" -#: ../../mod/connedit.php:432 -msgid "View recent posts and comments" -msgstr "Betrachte die neuesten Beiträge und Kommentare" +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " +msgstr "Wohnort:" -#: ../../mod/connedit.php:439 -msgid "Block or Unblock this connection" -msgstr "Verbindung blockieren oder freigeben" +#: ../../mod/dirprofile.php:114 +msgid "About: " +msgstr "Über:" -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 -msgid "Unignore" -msgstr "Nicht ignorieren" +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " +msgstr "Schlüsselwörter:" -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorieren" +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Diese Website ist kein Verzeichnis-Server" -#: ../../mod/connedit.php:446 -msgid "Ignore or Unignore this connection" -msgstr "Verbindung ignorieren oder wieder beachten" +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" -#: ../../mod/connedit.php:449 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" +#: ../../mod/setup.php:162 +msgid "Red Matrix Server - Setup" +msgstr "Red Matrix Server - Installation" -#: ../../mod/connedit.php:449 -msgid "Archive" -msgstr "Archivieren" +#: ../../mod/setup.php:168 +msgid "Could not connect to database." +msgstr "Kann nicht mit der Datenbank verbinden." -#: ../../mod/connedit.php:452 -msgid "Archive or Unarchive this connection" -msgstr "Verbindung archivieren oder aus dem Archiv zurückholen" +#: ../../mod/setup.php:172 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." -#: ../../mod/connedit.php:455 -msgid "Unhide" -msgstr "Wieder sichtbar machen" +#: ../../mod/setup.php:179 +msgid "Could not create table." +msgstr "Kann Tabelle nicht erstellen." -#: ../../mod/connedit.php:455 -msgid "Hide" -msgstr "Verstecken" +#: ../../mod/setup.php:185 +msgid "Your site database has been installed." +msgstr "Die Datenbank Deines Servers wurde installiert." -#: ../../mod/connedit.php:458 -msgid "Hide or Unhide this connection" -msgstr "Diese Verbindung verstecken oder wieder sichtbar machen" +#: ../../mod/setup.php:190 +msgid "" +"You may need to import the file \"install/database.sql\" manually using " +"phpmyadmin or mysql." +msgstr "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren." -#: ../../mod/connedit.php:465 -msgid "Delete this connection" -msgstr "Verbindung löschen" +#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Lies die Datei \"install/INSTALL.txt\"." -#: ../../mod/connedit.php:508 ../../mod/connedit.php:537 -msgid "Approve this connection" -msgstr "Verbindung genehmigen" +#: ../../mod/setup.php:257 +msgid "System check" +msgstr "Systemprüfung" -#: ../../mod/connedit.php:508 -msgid "Accept connection to allow communication" -msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" +#: ../../mod/setup.php:262 +msgid "Check again" +msgstr "Bitte nochmal prüfen" -#: ../../mod/connedit.php:524 -msgid "Automatic Permissions Settings" -msgstr "Automatische Berechtigungs-Einstellungen" +#: ../../mod/setup.php:284 +msgid "Database connection" +msgstr "Datenbank Verbindung" -#: ../../mod/connedit.php:524 -#, php-format -msgid "Connections: settings for %s" -msgstr "Verbindungseinstellungen für %s" +#: ../../mod/setup.php:285 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." +msgstr "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." -#: ../../mod/connedit.php:528 +#: ../../mod/setup.php:286 msgid "" -"When receiving a channel introduction, any permissions provided here will be" -" applied to the new connection automatically and the introduction approved. " -"Leave this page if you do not wish to use this feature." -msgstr "Wenn eine Verbindungsanfrage empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt, und die Anfrage wird genehmigt. Verlasse diese Seite, wenn Du diese Funktion nicht verwenden möchtest." +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." -#: ../../mod/connedit.php:530 -msgid "Slide to adjust your degree of friendship" -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" +#: ../../mod/setup.php:287 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." -#: ../../mod/connedit.php:536 -msgid "inherited" -msgstr "geerbt" +#: ../../mod/setup.php:291 +msgid "Database Server Name" +msgstr "Datenbank-Servername" -#: ../../mod/connedit.php:538 -msgid "Connection has no individual permissions!" -msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" +#: ../../mod/setup.php:291 +msgid "Default is localhost" +msgstr "Standard ist localhost" -#: ../../mod/connedit.php:539 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen." +#: ../../mod/setup.php:292 +msgid "Database Port" +msgstr "Datenbank-Port" -#: ../../mod/connedit.php:541 -msgid "Profile Visibility" -msgstr "Sichtbarkeit des Profils" +#: ../../mod/setup.php:292 +msgid "Communication port number - use 0 for default" +msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" -#: ../../mod/connedit.php:542 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." +#: ../../mod/setup.php:293 +msgid "Database Login Name" +msgstr "Datenbank-Benutzername" -#: ../../mod/connedit.php:543 -msgid "Contact Information / Notes" -msgstr "Kontaktinformationen / Notizen" +#: ../../mod/setup.php:294 +msgid "Database Login Password" +msgstr "Datenbank-Kennwort" -#: ../../mod/connedit.php:544 -msgid "Edit contact notes" -msgstr "Kontaktnotizen bearbeiten" +#: ../../mod/setup.php:295 +msgid "Database Name" +msgstr "Datenbank-Name" -#: ../../mod/connedit.php:546 -msgid "Their Settings" -msgstr "Deren Einstellungen" +#: ../../mod/setup.php:297 ../../mod/setup.php:339 +msgid "Site administrator email address" +msgstr "E-Mail Adresse des Seiten-Administrators" -#: ../../mod/connedit.php:547 -msgid "My Settings" -msgstr "Meine Einstellungen" +#: ../../mod/setup.php:297 ../../mod/setup.php:339 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." -#: ../../mod/connedit.php:549 -msgid "Clear/Disable Automatic Permissions" -msgstr "Automatische Berechtigungen abschalten/entfernen" +#: ../../mod/setup.php:298 ../../mod/setup.php:341 +msgid "Website URL" +msgstr "Server-URL" -#: ../../mod/connedit.php:550 -msgid "Forum Members" -msgstr "Forum Mitglieder" +#: ../../mod/setup.php:298 ../../mod/setup.php:341 +msgid "Please use SSL (https) URL if available." +msgstr "Nutze wenn möglich eine SSL-URL (https)." -#: ../../mod/connedit.php:551 -msgid "Soapbox" -msgstr "Marktschreier" +#: ../../mod/setup.php:301 ../../mod/setup.php:344 +msgid "Please select a default timezone for your website" +msgstr "Standard-Zeitzone für Deinen Server" -#: ../../mod/connedit.php:552 -msgid "Full Sharing (typical social network permissions)" -msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" +#: ../../mod/setup.php:328 +msgid "Site settings" +msgstr "Seiteneinstellungen" -#: ../../mod/connedit.php:553 -msgid "Cautious Sharing " -msgstr "Vorsichtiges Teilen" +#: ../../mod/setup.php:387 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." -#: ../../mod/connedit.php:554 -msgid "Follow Only" -msgstr "Nur folgen" +#: ../../mod/setup.php:388 +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 "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." -#: ../../mod/connedit.php:555 -msgid "Individual Permissions" -msgstr "Individuelle Zugriffsrechte" +#: ../../mod/setup.php:392 +msgid "PHP executable path" +msgstr "PHP Pfad zu ausführbarer Datei" -#: ../../mod/connedit.php:556 +#: ../../mod/setup.php:392 msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Einige Berechtigungen werden von den Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen." +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." -#: ../../mod/connedit.php:557 -msgid "Advanced Permissions" -msgstr "Zugriffsrechte für Fortgeschrittene" +#: ../../mod/setup.php:397 +msgid "Command line PHP" +msgstr "PHP Befehlszeile" -#: ../../mod/connedit.php:558 -msgid "Simple Permissions (select one and submit)" -msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" +#: ../../mod/setup.php:406 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." -#: ../../mod/connedit.php:562 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "%ss Profil besuchen - %s" +#: ../../mod/setup.php:407 +msgid "This is required for message delivery to work." +msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." -#: ../../mod/connedit.php:563 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freigeben" +#: ../../mod/setup.php:409 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/connedit.php:564 -msgid "Ignore contact" -msgstr "Kontakt ignorieren" +#: ../../mod/setup.php:430 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." -#: ../../mod/connedit.php:565 -msgid "Repair URL settings" -msgstr "URL-Einstellungen reparieren" +#: ../../mod/setup.php:431 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." -#: ../../mod/connedit.php:566 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" +#: ../../mod/setup.php:433 +msgid "Generate encryption keys" +msgstr "Verschlüsselungsschlüssel generieren" -#: ../../mod/connedit.php:568 -msgid "Delete contact" -msgstr "Kontakt löschen" +#: ../../mod/setup.php:440 +msgid "libCurl PHP module" +msgstr "libCurl-PHP-Modul" -#: ../../mod/connedit.php:571 -msgid "Last update:" -msgstr "Letzte Aktualisierung:" +#: ../../mod/setup.php:441 +msgid "GD graphics PHP module" +msgstr "GD-Grafik-PHP-Modul" -#: ../../mod/connedit.php:573 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" +#: ../../mod/setup.php:442 +msgid "OpenSSL PHP module" +msgstr "OpenSSL-PHP-Modul" -#: ../../mod/connedit.php:575 -msgid "Update now" -msgstr "Jetzt aktualisieren" +#: ../../mod/setup.php:443 +msgid "mysqli PHP module" +msgstr "mysqli-PHP-Modul" -#: ../../mod/connedit.php:581 -msgid "Currently blocked" -msgstr "Derzeit blockiert" +#: ../../mod/setup.php:444 +msgid "mb_string PHP module" +msgstr "mb_string-PHP-Modul" -#: ../../mod/connedit.php:582 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" +#: ../../mod/setup.php:445 +msgid "mcrypt PHP module" +msgstr "mcrypt-PHP-Modul" -#: ../../mod/connedit.php:583 -msgid "Currently archived" -msgstr "Derzeit archiviert" +#: ../../mod/setup.php:450 ../../mod/setup.php:452 +msgid "Apache mod_rewrite module" +msgstr "Apache-mod_rewrite-Modul" -#: ../../mod/connedit.php:584 -msgid "Currently pending" -msgstr "Derzeit anstehend" +#: ../../mod/setup.php:450 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../mod/connedit.php:585 -msgid "Hide this contact from others" -msgstr "Diese Verbindung vor den anderen verbergen." +#: ../../mod/setup.php:456 ../../mod/setup.php:459 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/connedit.php:585 +#: ../../mod/setup.php:456 msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antworten/Likes auf deine öffentlichen Beiträge können immer noch sichtbar sein" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." +#: ../../mod/setup.php:464 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Keine Nachrichten." +#: ../../mod/setup.php:468 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." -#: ../../mod/message.php:72 ../../mod/mail.php:329 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" +#: ../../mod/setup.php:472 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - G:i" +#: ../../mod/setup.php:476 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert." -#: ../../mod/ping.php:237 -msgid "sent you a private message" -msgstr "eine private Nachricht schicken" +#: ../../mod/setup.php:480 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." -#: ../../mod/ping.php:288 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" +#: ../../mod/setup.php:484 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." -#: ../../mod/ping.php:329 -msgid "posted an event" -msgstr "hat eine Veranstaltung veröffentlicht" +#: ../../mod/setup.php:500 +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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../mod/setup.php:162 -msgid "Red Matrix Server - Setup" -msgstr "Red Matrix Server - Installation" +#: ../../mod/setup.php:501 +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 "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Rechte Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." -#: ../../mod/setup.php:168 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." +#: ../../mod/setup.php:502 +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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst." -#: ../../mod/setup.php:172 +#: ../../mod/setup.php:503 msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../mod/setup.php:179 -msgid "Could not create table." -msgstr "Kann Tabelle nicht erstellen." +#: ../../mod/setup.php:506 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php ist beschreibbar" -#: ../../mod/setup.php:185 -msgid "Your site database has been installed." -msgstr "Die Datenbank Deines Servers wurde installiert." +#: ../../mod/setup.php:516 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../mod/setup.php:190 +#: ../../mod/setup.php:517 +#, php-format msgid "" -"You may need to import the file \"install/database.sql\" manually using " -"phpmyadmin or mysql." -msgstr "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren." +"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 "Um diese kompilierten Vorlagen speichern zu können braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Lies die Datei \"install/INSTALL.txt\"." +#: ../../mod/setup.php:518 ../../mod/setup.php:536 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../mod/setup.php:257 -msgid "System check" -msgstr "Systemprüfung" +#: ../../mod/setup.php:519 +#, 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 " Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht in der restlichen Red-Installation." -#: ../../mod/setup.php:261 ../../mod/events.php:439 -msgid "Next" -msgstr "Nächste" +#: ../../mod/setup.php:522 +#, php-format +msgid "%s is writable" +msgstr "%s ist beschreibbar" -#: ../../mod/setup.php:262 -msgid "Check again" -msgstr "Bitte nochmal prüfen" +#: ../../mod/setup.php:535 +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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" -#: ../../mod/setup.php:284 -msgid "Database connection" -msgstr "Datenbank Verbindung" +#: ../../mod/setup.php:539 +msgid "store is writable" +msgstr "store ist schreibbar" -#: ../../mod/setup.php:285 +#: ../../mod/setup.php:569 msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." -msgstr "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../mod/setup.php:286 +#: ../../mod/setup.php:570 msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." +"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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." -#: ../../mod/setup.php:287 +#: ../../mod/setup.php:571 msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../mod/setup.php:291 -msgid "Database Server Name" -msgstr "Datenbank-Servername" +#: ../../mod/setup.php:572 +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 "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikate ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." -#: ../../mod/setup.php:291 -msgid "Default is localhost" -msgstr "Standard ist localhost" +#: ../../mod/setup.php:573 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen.. " -#: ../../mod/setup.php:292 -msgid "Database Port" -msgstr "Datenbank-Port" +#: ../../mod/setup.php:574 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." -#: ../../mod/setup.php:292 -msgid "Communication port number - use 0 for default" -msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" +#: ../../mod/setup.php:576 +msgid "SSL certificate validation" +msgstr "SSL Zertifikatverifizierung" -#: ../../mod/setup.php:293 -msgid "Database Login Name" -msgstr "Datenbank-Benutzername" +#: ../../mod/setup.php:582 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "URL rewrite via .htaccess funktioniert nicht. Überprüfe Deine Server-Konfiguration." -#: ../../mod/setup.php:294 -msgid "Database Login Password" -msgstr "Datenbank-Kennwort" +#: ../../mod/setup.php:584 +msgid "Url rewrite is working" +msgstr "Url rewrite funktioniert" -#: ../../mod/setup.php:295 -msgid "Database Name" -msgstr "Datenbank-Name" +#: ../../mod/setup.php:594 +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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "Site administrator email address" -msgstr "E-Mail Adresse des Seiten-Administrators" +#: ../../mod/setup.php:618 +msgid "Errors encountered creating database tables." +msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../mod/setup.php:297 ../../mod/setup.php:339 +#: ../../mod/setup.php:653 +msgid "

    What next

    " +msgstr "

    Was als Nächstes

    " + +#: ../../mod/setup.php:654 msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Website URL" -msgstr "Server-URL" +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 +#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 +msgid "Item not found" +msgstr "Element nicht gefunden" -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Please use SSL (https) URL if available." -msgstr "Nutze wenn möglich eine SSL-URL (https)." +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "Block bearbeiten" -#: ../../mod/setup.php:301 ../../mod/setup.php:344 -msgid "Please select a default timezone for your website" -msgstr "Standard-Zeitzone für Deinen Server" +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "Block löschen?" -#: ../../mod/setup.php:328 -msgid "Site settings" -msgstr "Seiteneinstellungen" +#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 +msgid "Insert YouTube video" +msgstr "YouTube-Video einfügen" -#: ../../mod/setup.php:387 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." +#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis [.ogg]-Video einfügen" -#: ../../mod/setup.php:388 -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 "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." +#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis [.ogg]-Audio einfügen" -#: ../../mod/setup.php:392 -msgid "PHP executable path" -msgstr "PHP Pfad zu ausführbarer Datei" +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "Block löschen" -#: ../../mod/setup.php:392 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout aktualisiert." -#: ../../mod/setup.php:397 -msgid "Command line PHP" -msgstr "PHP Befehlszeile" +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" -#: ../../mod/setup.php:406 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout nicht gefunden." -#: ../../mod/setup.php:407 -msgid "This is required for message delivery to work." -msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulname:" -#: ../../mod/setup.php:409 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +msgid "Layout Help" +msgstr "Layout-Hilfe" -#: ../../mod/setup.php:430 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" +msgstr "Layout bearbeiten" -#: ../../mod/setup.php:431 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" +msgstr "Layout löschen?" -#: ../../mod/setup.php:433 -msgid "Generate encryption keys" -msgstr "Verschlüsselungsschlüssel generieren" +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" +msgstr "Layout löschen" -#: ../../mod/setup.php:440 -msgid "libCurl PHP module" -msgstr "libCurl-PHP-Modul" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Eintrag löschen?" -#: ../../mod/setup.php:441 -msgid "GD graphics PHP module" -msgstr "GD-Grafik-PHP-Modul" +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" +msgstr "Webseite bearbeiten" -#: ../../mod/setup.php:442 -msgid "OpenSSL PHP module" -msgstr "OpenSSL-PHP-Modul" +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" +msgstr "Webseite löschen?" -#: ../../mod/setup.php:443 -msgid "mysqli PHP module" -msgstr "mysqli-PHP-Modul" +#: ../../mod/editwebpage.php:186 +msgid "Delete Webpage" +msgstr "Webseite löschen" -#: ../../mod/setup.php:444 -msgid "mb_string PHP module" -msgstr "mb_string-PHP-Modul" +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "Webseite" -#: ../../mod/setup.php:445 -msgid "mcrypt PHP module" -msgstr "mcrypt-PHP-Modul" +#: ../../mod/impel.php:38 +msgid "block" +msgstr "Block" -#: ../../mod/setup.php:450 ../../mod/setup.php:452 -msgid "Apache mod_rewrite module" -msgstr "Apache-mod_rewrite-Modul" +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "Layout" -#: ../../mod/setup.php:450 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../mod/setup.php:456 ../../mod/setup.php:459 -msgid "proc_open" -msgstr "proc_open" +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." -#: ../../mod/setup.php:456 +#: ../../mod/profile_photo.php:161 +msgid "Image resize failed." +msgstr "Bild-Anpassung fehlgeschlagen." + +#: ../../mod/profile_photo.php:205 msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." -#: ../../mod/setup.php:464 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." +#: ../../mod/profile_photo.php:232 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Bild ist größer als das Limit von %d" -#: ../../mod/setup.php:468 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." +#: ../../mod/profile_photo.php:241 +msgid "Unable to process image." +msgstr "Kann Bild nicht verarbeiten." -#: ../../mod/setup.php:472 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." +#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 +msgid "Photo not available." +msgstr "Foto nicht verfügbar." -#: ../../mod/setup.php:476 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert." +#: ../../mod/profile_photo.php:358 +msgid "Upload File:" +msgstr "Datei hochladen:" -#: ../../mod/setup.php:480 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." +#: ../../mod/profile_photo.php:359 +msgid "Select a profile:" +msgstr "Wähle ein Profil:" -#: ../../mod/setup.php:484 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." +#: ../../mod/profile_photo.php:360 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" -#: ../../mod/setup.php:500 -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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." +#: ../../mod/profile_photo.php:365 +msgid "skip this step" +msgstr "diesen Schritt überspringen" -#: ../../mod/setup.php:501 -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 "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Rechte Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." +#: ../../mod/profile_photo.php:365 +msgid "select a photo from your photo albums" +msgstr "ein Foto aus meinen Fotoalben" -#: ../../mod/setup.php:502 -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 "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst." +#: ../../mod/profile_photo.php:381 +msgid "Crop Image" +msgstr "Bild zuschneiden" -#: ../../mod/setup.php:503 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." +#: ../../mod/profile_photo.php:382 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." -#: ../../mod/setup.php:506 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php ist beschreibbar" +#: ../../mod/profile_photo.php:384 +msgid "Done Editing" +msgstr "Bearbeitung fertigstellen" -#: ../../mod/setup.php:516 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." +#: ../../mod/profile_photo.php:427 +msgid "Image uploaded successfully." +msgstr "Bild erfolgreich hochgeladen." -#: ../../mod/setup.php:517 +#: ../../mod/profile_photo.php:429 +msgid "Image upload failed." +msgstr "Hochladen des Bilds fehlgeschlagen." + +#: ../../mod/profile_photo.php:438 #, 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 "Um diese kompilierten Vorlagen speichern zu können braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." +msgid "Image size reduction [%s] failed." +msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." -#: ../../mod/setup.php:518 ../../mod/setup.php:536 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." -#: ../../mod/setup.php:519 -#, 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 " Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht in der restlichen Red-Installation." +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Quelle erstellt." -#: ../../mod/setup.php:522 -#, php-format -msgid "%s is writable" -msgstr "%s ist beschreibbar" +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Quelle aktualisiert." -#: ../../mod/setup.php:535 -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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" -#: ../../mod/setup.php:539 -msgid "store is writable" -msgstr "store ist schreibbar" +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Quellen von Inhalten Deines Kanals verwalten." -#: ../../mod/setup.php:569 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Neue Quelle" -#: ../../mod/setup.php:570 +#: ../../mod/sources.php:101 ../../mod/sources.php:133 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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." -#: ../../mod/setup.php:571 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" -#: ../../mod/setup.php:572 -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 "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikate ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" -#: ../../mod/setup.php:573 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen.. " +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "Name des Kanals" -#: ../../mod/setup.php:574 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Quelle nicht gefunden." -#: ../../mod/setup.php:576 -msgid "SSL certificate validation" -msgstr "SSL Zertifikatverifizierung" +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Quelle bearbeiten" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Quelle löschen" -#: ../../mod/setup.php:582 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "URL rewrite via .htaccess funktioniert nicht. Überprüfe Deine Server-Konfiguration." +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Quelle gelöscht" -#: ../../mod/setup.php:584 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." -#: ../../mod/setup.php:594 -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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "– auswählen –" -#: ../../mod/setup.php:618 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." +#: ../../mod/filestorage.php:76 +msgid "Permission Denied." +msgstr "Zugriff verweigert." -#: ../../mod/setup.php:653 -msgid "

    What next

    " -msgstr "

    Was als Nächstes

    " +#: ../../mod/filestorage.php:92 +msgid "File not found." +msgstr "Datei nicht gefunden." -#: ../../mod/setup.php:654 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." +#: ../../mod/filestorage.php:131 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Server nicht gefunden." +#: ../../mod/filestorage.php:140 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." +#: ../../mod/filestorage.php:141 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." +#: ../../mod/filestorage.php:142 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Schließe Dich uns an und werde Teil der Red-Matrix" +#: ../../mod/filestorage.php:144 +msgid "Copy/paste this code to attach file to a post" +msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." +#: ../../mod/filestorage.php:145 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." +#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 +msgid "Help:" +msgstr "Hilfe:" -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." +#: ../../mod/help.php:67 ../../index.php:249 +msgid "Not Found" +msgstr "Nicht gefunden" -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal hinzugefügt." -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Einladungen senden" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt nun %2$ss %3$s" -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden" -#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Your message:" -msgstr "Deine Nachricht:" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Freundschaftsempfehlung senden." -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Schließe Dich uns in der RedMatrix an!" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Gib diesen Invite-Code ein:" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)" +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein." +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Sammlung erstellt." -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "oder besuche" +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Sammlung kann nicht erstellt werden." -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Sammlung aktualisiert." -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Sache aktualisiert" +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Erstelle eine Sammlung von Kanälen." -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Name der Sammlung:" -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Sache hinzugefügt" +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "Mitglieder sind sichtbar für andere Kanäle" -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Sammlung gelöscht." -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Sache anzeigen" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Löschen der Sammlung nicht möglich." -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Eintrag nicht gefunden" +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Sammlung-Editor" -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Sache bearbeiten" +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Mitglieder" -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Wähle ein Profil" +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alle verbundenen Kanäle" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren." -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ungültige Anfrage." -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." +#: ../../mod/like.php:119 +msgid "thing" +msgstr "Sache" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Hilfe:" +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../mod/help.php:69 ../../index.php:237 -msgid "Not Found" -msgstr "Nicht gefunden" +#: ../../mod/like.php:430 +msgid "Action completed." +msgstr "Aktion durchgeführt." -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Keine Verbindungen." +#: ../../mod/like.php:431 +msgid "Thank you." +msgstr "Vielen Dank." -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%ss Profil [%s] besuchen" +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Schlagwort entfernt" -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" -msgstr "Zeige Verbindungen" +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Dieses Konto löschen" +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Theme-Einstellungen aktualisiert." -#: ../../mod/removeaccount.php:58 -msgid "" -"This will completely remove this account including all its channels from the" -" network. Once this has been done it is not recoverable." -msgstr "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden." +#: ../../mod/admin.php:97 ../../mod/admin.php:413 +msgid "Site" +msgstr "Seite" -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" +#: ../../mod/admin.php:98 +msgid "Accounts" +msgstr "Konten" -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" +#: ../../mod/admin.php:99 ../../mod/admin.php:860 +msgid "Channels" +msgstr "Kanäle" -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt" +#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 +msgid "Plugins" +msgstr "Plug-Ins" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" +#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 +msgid "Themes" +msgstr "Themes" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" +#: ../../mod/admin.php:102 ../../mod/admin.php:515 +msgid "Server" +msgstr "Server" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." +#: ../../mod/admin.php:103 +msgid "Profile Config" +msgstr "Profilkonfiguration" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Sichtbar für" +#: ../../mod/admin.php:104 +msgid "DB updates" +msgstr "DB-Aktualisierungen" -#: ../../mod/register.php:42 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 +msgid "Logs" +msgstr "Protokolle" -#: ../../mod/register.php:48 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." +#: ../../mod/admin.php:124 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" -#: ../../mod/register.php:82 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." +#: ../../mod/admin.php:126 +msgid "User registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" -#: ../../mod/register.php:115 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" -#: ../../mod/register.php:121 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." +#: ../../mod/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 +#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:950 +#: ../../mod/admin.php:992 ../../mod/admin.php:1155 ../../mod/admin.php:1191 +#: ../../mod/admin.php:1278 +msgid "Administration" +msgstr "Administration" -#: ../../mod/register.php:124 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Zusammenfassung" -#: ../../mod/register.php:161 -msgid "Registration on this site/hub is by approval only." -msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Registrierte Benutzer" -#: ../../mod/register.php:162 -msgid "Register at another affiliated site/hub" -msgstr "Registrierung auf einem anderen, angeschlossenen Server" +#: ../../mod/admin.php:216 ../../mod/admin.php:518 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" -#: ../../mod/register.php:170 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Version" -#: ../../mod/register.php:181 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" +#: ../../mod/admin.php:219 ../../mod/admin.php:519 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" -#: ../../mod/register.php:187 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" +#: ../../mod/admin.php:333 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." -#: ../../mod/register.php:189 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" +#: ../../mod/admin.php:364 +msgid "No special theme for accessibility" +msgstr "Kein spezielles Accessibility-Theme vorhanden" -#: ../../mod/register.php:208 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." +#: ../../mod/admin.php:393 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" -#: ../../mod/register.php:209 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" +#: ../../mod/admin.php:399 +msgid "My site is not a public server" +msgstr "Meine Server ist kein öffentlicher Server" -#: ../../mod/register.php:212 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" +#: ../../mod/admin.php:400 +msgid "My site has paid access only" +msgstr "Mein Server erlaubt nur bezahlten Zugang" -#: ../../mod/register.php:213 -msgid "Choose a password" -msgstr "Passwort" +#: ../../mod/admin.php:401 +msgid "My site has free access only" +msgstr "Mein Server erlaubt ausschließlich freien Zugang" -#: ../../mod/register.php:214 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" +#: ../../mod/admin.php:402 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Gruppe existiert nicht" +#: ../../mod/admin.php:416 +msgid "File upload" +msgstr "Dateiupload" -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../mod/admin.php:417 +msgid "Policies" +msgstr "Richtlinien" -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "Sammlung ist leer" +#: ../../mod/admin.php:422 +msgid "Site name" +msgstr "Seitenname" -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "Sammlung:" +#: ../../mod/admin.php:423 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "Verbindung:" +#: ../../mod/admin.php:424 +msgid "Administrator Information" +msgstr "Administrator-Informationen" -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." +#: ../../mod/admin.php:424 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." +#: ../../mod/admin.php:425 +msgid "System language" +msgstr "System-Sprache" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für diese Seite" +#: ../../mod/admin.php:426 +msgid "System theme" +msgstr "System-Theme" -#: ../../mod/delegate.php:123 +#: ../../mod/admin.php:426 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 "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" +#: ../../mod/admin.php:427 +msgid "Mobile system theme" +msgstr "Mobile System-Theme:" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" +#: ../../mod/admin.php:427 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" +#: ../../mod/admin.php:428 +msgid "Accessibility system theme" +msgstr "Accessibility-System-Theme" -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Hinzufügen" +#: ../../mod/admin.php:428 +msgid "Accessibility theme" +msgstr "Accessibility-Theme" -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Keine Einträge." +#: ../../mod/admin.php:430 +msgid "Enable Diaspora Protocol" +msgstr "Diaspora-Protokoll aktivieren" -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Fortfahren" +#: ../../mod/admin.php:430 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "Kommunikation mit Diaspora und Friendica – experimentell" -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" +#: ../../mod/admin.php:431 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" +#: ../../mod/admin.php:431 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." +#: ../../mod/admin.php:432 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" -#: ../../mod/connect.php:89 ../../mod/connect.php:109 +#: ../../mod/admin.php:432 msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" +#: ../../mod/admin.php:433 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite." +#: ../../mod/admin.php:434 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" +#: ../../mod/admin.php:435 +msgid "Register text" +msgstr "Registrierungstext" -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" +#: ../../mod/admin.php:435 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden" +#: ../../mod/admin.php:436 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Freundschaftsempfehlung senden." +#: ../../mod/admin.php:436 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" +#: ../../mod/admin.php:437 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" +#: ../../mod/admin.php:437 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." +#: ../../mod/admin.php:438 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" +#: ../../mod/admin.php:438 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "Aktueller Kanal" +#: ../../mod/admin.php:439 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "Wähle einen Deiner Kanäle aus, um ihn zu verwenden." +#: ../../mod/admin.php:439 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist." -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Standard Kanal" +#: ../../mod/admin.php:440 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "Zum Standard machen" +#: ../../mod/admin.php:440 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." -#: ../../mod/removeme.php:29 +#: ../../mod/admin.php:441 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" + +#: ../../mod/admin.php:441 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Diesen Kanal löschen" +#: ../../mod/admin.php:442 +msgid "Disable discovery tab" +msgstr "Den „Entdecken“-Reiter ausblenden" -#: ../../mod/removeme.php:58 +#: ../../mod/admin.php:442 msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet kann dieser Prozess nicht rückgängig gemacht werden." +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte von anderen RedMatrix-Hubs angezeigt werden können." -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" +#: ../../mod/admin.php:443 +msgid "No login on Homepage" +msgstr "Kein Login auf der Homepage" -#: ../../mod/removeme.php:60 +#: ../../mod/admin.php:443 msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)." -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanal löschen" +#: ../../mod/admin.php:445 +msgid "Proxy user" +msgstr "Proxy Benutzer" -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -msgid "Item not found" -msgstr "Element nicht gefunden" +#: ../../mod/admin.php:446 +msgid "Proxy URL" +msgstr "Proxy URL" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../mod/admin.php:447 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../mod/admin.php:447 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eintrag löschen?" +#: ../../mod/admin.php:448 +msgid "Delivery interval" +msgstr "Auslieferung Intervall" -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -msgid "Insert YouTube video" -msgstr "YouTube-Video einfügen" +#: ../../mod/admin.php:448 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis [.ogg]-Video einfügen" +#: ../../mod/admin.php:449 +msgid "Poll interval" +msgstr "Abfrageintervall" + +#: ../../mod/admin.php:449 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis [.ogg]-Audio einfügen" +#: ../../mod/admin.php:450 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" +#: ../../mod/admin.php:450 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "Webseite löschen?" +#: ../../mod/admin.php:506 +msgid "No server found" +msgstr "Kein Server gefunden" -#: ../../mod/editwebpage.php:186 -msgid "Delete Webpage" -msgstr "Webseite löschen" +#: ../../mod/admin.php:513 ../../mod/admin.php:737 +msgid "ID" +msgstr "ID" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" +#: ../../mod/admin.php:513 +msgid "for channel" +msgstr "für Kanal" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" +#: ../../mod/admin.php:513 +msgid "on server" +msgstr "auf Server" -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Empfänger" +#: ../../mod/admin.php:513 +msgid "Status" +msgstr "Status" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" +#: ../../mod/admin.php:534 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" +#: ../../mod/admin.php:544 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." -#: ../../mod/blocks.php:62 -msgid "Block Name" -msgstr "Block-Name" +#: ../../mod/admin.php:547 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s wurde erfolgreich ausgeführt." -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Sammlung erstellt." +#: ../../mod/admin.php:551 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Sammlung kann nicht erstellt werden." +#: ../../mod/admin.php:554 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-Funktion %s konnte nicht gefunden werden." -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Sammlung aktualisiert." +#: ../../mod/admin.php:569 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Erstelle eine Sammlung von Kanälen." +#: ../../mod/admin.php:573 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Aktualisierungen" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Name der Sammlung:" +#: ../../mod/admin.php:575 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Mitglieder sind sichtbar für andere Kanäle" +#: ../../mod/admin.php:576 +msgid "Attempt to execute this update step automatically" +msgstr "Versuche, diesen Updateschritt automatisch auszuführen" -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Sammlung gelöscht." +#: ../../mod/admin.php:602 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s Nutzer blockiert/freigegeben" +msgstr[1] "%s Nutzer blockiert/freigegeben" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Löschen der Sammlung nicht möglich." +#: ../../mod/admin.php:609 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s Nutzer gelöscht" +msgstr[1] "%s Nutzer gelöscht" -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Sammlung-Editor" +#: ../../mod/admin.php:638 +msgid "Account not found" +msgstr "Konto nicht gefunden" -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Mitglieder" +#: ../../mod/admin.php:658 +#, php-format +msgid "User '%s' unblocked" +msgstr "Benutzer '%s' freigegeben" -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alle verbundenen Kanäle" +#: ../../mod/admin.php:658 +#, php-format +msgid "User '%s' blocked" +msgstr "Benutzer '%s' blockiert" -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." +#: ../../mod/admin.php:724 ../../mod/admin.php:736 +msgid "Users" +msgstr "Benutzer" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Schlagwort entfernt" +#: ../../mod/admin.php:726 ../../mod/admin.php:862 +msgid "select all" +msgstr "Alle auswählen" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" +#: ../../mod/admin.php:727 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" +#: ../../mod/admin.php:728 +msgid "Request date" +msgstr "Antragsdatum" -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Element nicht verfügbar." +#: ../../mod/admin.php:729 +msgid "No registrations." +msgstr "Keine Registrierungen." -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Keine Dienstklassenbeschränkungen gefunden." +#: ../../mod/admin.php:730 +msgid "Approve" +msgstr "Genehmigen" -#: ../../mod/item.php:150 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." +#: ../../mod/admin.php:731 +msgid "Deny" +msgstr "Verweigern" -#: ../../mod/item.php:383 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../mod/admin.php:737 +msgid "Register date" +msgstr "Registrierungs-Datum" -#: ../../mod/item.php:425 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." +#: ../../mod/admin.php:737 +msgid "Last login" +msgstr "Letzte Anmeldung" -#: ../../mod/item.php:855 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../mod/admin.php:737 +msgid "Expires" +msgstr "Verfällt" -#: ../../mod/item.php:1324 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." +#: ../../mod/admin.php:737 +msgid "Service Class" +msgstr "Service-Klasse" -#: ../../mod/item.php:1330 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." +#: ../../mod/admin.php:739 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?" -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" +#: ../../mod/admin.php:740 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Abwesend" +#: ../../mod/admin.php:773 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s Kanal gesperrt/freigegeben" +msgstr[1] "%s Kanäle gesperrt/freigegeben" -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" +#: ../../mod/admin.php:780 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s Kanal gelöscht" +msgstr[1] "%s Kanäle gelöscht" -#: ../../mod/directory.php:223 -msgid "Finding:" -msgstr "Ergebnisse:" +#: ../../mod/admin.php:799 +msgid "Channel not found" +msgstr "Kanal nicht gefunden" -#: ../../mod/directory.php:228 -msgid "next page" -msgstr "nächste Seite" +#: ../../mod/admin.php:810 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanal '%s' gelöscht" -#: ../../mod/directory.php:228 -msgid "previous page" -msgstr "vorherige Seite" +#: ../../mod/admin.php:821 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" -#: ../../mod/directory.php:245 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." +#: ../../mod/admin.php:821 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' gesperrt" -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" +#: ../../mod/admin.php:864 +msgid "Censor" +msgstr "Sperren" -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." +#: ../../mod/admin.php:865 +msgid "Uncensor" +msgstr "Freigeben" -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "interessiert sich für:" +#: ../../mod/admin.php:868 +msgid "UID" +msgstr "UID" -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Keine Übereinstimmungen" +#: ../../mod/admin.php:870 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Diese Website ist kein Verzeichnis-Server" +#: ../../mod/admin.php:871 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" -#: ../../mod/siteinfo.php:90 +#: ../../mod/admin.php:910 #, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../mod/siteinfo.php:111 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" - -#: ../../mod/siteinfo.php:124 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" +msgid "Plugin %s disabled." +msgstr "Plug-In %s deaktiviert." -#: ../../mod/siteinfo.php:132 -msgid "Red" -msgstr "Red" +#: ../../mod/admin.php:914 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-In %s aktiviert." -#: ../../mod/siteinfo.php:133 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +msgid "Disable" +msgstr "Deaktivieren" -#: ../../mod/siteinfo.php:137 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" +#: ../../mod/admin.php:926 ../../mod/admin.php:1128 +msgid "Enable" +msgstr "Aktivieren" -#: ../../mod/siteinfo.php:138 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "Besuche GetZot.com, um mehr über die Red-Matrix zu erfahren." +#: ../../mod/admin.php:952 ../../mod/admin.php:1157 +msgid "Toggle" +msgstr "Umschalten" -#: ../../mod/siteinfo.php:139 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../mod/admin.php:960 ../../mod/admin.php:1167 +msgid "Author: " +msgstr "Autor: " -#: ../../mod/siteinfo.php:142 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" +#: ../../mod/admin.php:961 ../../mod/admin.php:1168 +msgid "Maintainer: " +msgstr "Betreuer:" -#: ../../mod/siteinfo.php:144 -msgid "Site Administrators" -msgstr "Administratoren" +#: ../../mod/admin.php:1090 +msgid "No themes found." +msgstr "Keine Theme gefunden." -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installiert." +#: ../../mod/admin.php:1149 +msgid "Screenshot" +msgstr "Bildschirmfoto" -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Fehlerhafte App." +#: ../../mod/admin.php:1197 +msgid "[Experimental]" +msgstr "[Experimentell]" -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Code einbetten" +#: ../../mod/admin.php:1198 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bearbeiten" +#: ../../mod/admin.php:1225 +msgid "Log settings updated." +msgstr "Protokoll-Einstellungen aktualisiert." -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App erstellen" +#: ../../mod/admin.php:1281 +msgid "Clear" +msgstr "Leeren" -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Name der App" +#: ../../mod/admin.php:1287 +msgid "Debugging" +msgstr "Debugging" -#: ../../mod/appman.php:91 ../../mod/appman.php:92 ../../mod/events.php:562 -#: ../../mod/events.php:581 -msgid "Required" -msgstr "Benötigt" +#: ../../mod/admin.php:1288 +msgid "Log file" +msgstr "Protokolldatei" -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" +#: ../../mod/admin.php:1288 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis." -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL zum Icon" +#: ../../mod/admin.php:1289 +msgid "Log level" +msgstr "Protokollstufe" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" +#: ../../mod/admin.php:1336 +msgid "New Profile Field" +msgstr "Neues Profilfeld" -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versions-ID" +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Field nickname" +msgstr "Kurzname für das Feld" -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Preis der App" +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "System name of field" +msgstr "Systemname des Feldes" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Input type" +msgstr "Art des Inhalts" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." +#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Field Name" +msgstr "Feldname" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Quelle erstellt." +#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Label on profile pages" +msgstr "Bezeichnung auf Profilseiten" -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Quelle aktualisiert." +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +msgid "Help text" +msgstr "Hilfetext" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +msgid "Additional info (optional)" +msgstr "Zusätzliche Informationen (optional)" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Quellen von Inhalten Deines Kanals verwalten." +#: ../../mod/admin.php:1351 +msgid "Field definition not found" +msgstr "Feld-Definition nicht gefunden" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Neue Quelle" +#: ../../mod/admin.php:1357 +msgid "Edit Profile Field" +msgstr "Profilfeld bearbeiten" -#: ../../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 "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Sache hinzugefügt" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Quelle nicht gefunden." +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Quelle bearbeiten" +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Sache anzeigen" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Quelle löschen" +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "Eintrag nicht gefunden" -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Quelle gelöscht" +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Sache bearbeiten" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Wähle ein Profil" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Öffentliche Server" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" -#: ../../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 "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen." +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "Server-URL" +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Zugangstyp" +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:440 -msgid "Location" -msgstr "Ort" +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" #: ../../mod/import.php:25 #, php-format @@ -7398,17 +7302,235 @@ msgid "" "primary location for files, photos, and media." msgstr "Egal welche Option Du wählst, bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." -#: ../../mod/import.php:476 -msgid "Make this hub my primary location" -msgstr "Dieser Red-Server ist mein primärer Server." +#: ../../mod/import.php:476 +msgid "Make this hub my primary location" +msgstr "Dieser Red-Server ist mein primärer Server." + +#: ../../mod/import.php:477 +msgid "Import existing posts if possible" +msgstr "Existierende Beiträge importieren, falls möglich" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Schließe Dich uns an und werde Teil der Red-Matrix" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" + +#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." +msgstr "Schließe Dich uns in der RedMatrix an!" + +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Gib diesen Invite-Code ein:" + +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" +msgstr "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)" + +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." +msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein." + +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "oder besuche" + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" + +#: ../../mod/item.php:150 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." + +#: ../../mod/item.php:409 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." + +#: ../../mod/item.php:451 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." + +#: ../../mod/item.php:888 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." + +#: ../../mod/item.php:1363 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." + +#: ../../mod/item.php:1369 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." + +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +msgid "[Embedded content - reload page to view]" +msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" + +#: ../../mod/layouts.php:62 +msgid "Help with this feature" +msgstr "Hilfe zu dieser Funktion" + +#: ../../mod/layouts.php:85 +msgid "Layout Name" +msgstr "Layout-Name" + +#: ../../mod/locs.php:47 ../../mod/locs.php:74 +msgid "Location not found." +msgstr "Klon nicht gefunden." + +#: ../../mod/locs.php:78 +msgid "Primary location cannot be removed." +msgstr "Der primäre Klon kann nicht gelöscht werden." + +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." + +#: ../../mod/lockview.php:52 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Keine Verbindungen." + +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "%ss Profil [%s] besuchen" + +#: ../../mod/viewconnections.php:86 +msgid "View Connnections" +msgstr "Zeige Verbindungen" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." + +#: ../../mod/lostpass.php:85 ../../boot.php:1506 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-Mail Adresse" -#: ../../mod/import.php:477 -msgid "Import existing posts if possible" -msgstr "Existierende Beiträge importieren, falls möglich" +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Zurücksetzen" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Server nicht gefunden." + +#: ../../mod/vote.php:97 +msgid "Total votes" +msgstr "Stimmen gesamt" + +#: ../../mod/vote.php:98 +msgid "Average Rating" +msgstr "Durchschnittliche Bewertung" #: ../../mod/mail.php:33 msgid "Unable to lookup recipient." @@ -7470,6 +7592,10 @@ msgstr "Die Nachricht wurde widerrufen." msgid "Private Conversation" msgstr "Private Unterhaltung" +#: ../../mod/mail.php:329 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + #: ../../mod/mail.php:331 msgid "" "No secure communications available. You may be able to " @@ -7480,579 +7606,636 @@ msgstr "Keine sichere Kommunikation verfügbar. Eventuell kanns msgid "Send Reply" msgstr "Antwort senden" -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." +#: ../../mod/manage.php:144 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:575 -msgid "Profile not found." -msgstr "Profil nicht gefunden." +#: ../../mod/manage.php:149 +msgid "Current Channel" +msgstr "Aktueller Kanal" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil gelöscht." +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." +msgstr "Wähle einen Deiner Kanäle aus, um ihn zu verwenden." -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" +#: ../../mod/manage.php:152 +msgid "Default Channel" +msgstr "Standard Kanal" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Neues Profil erstellt." +#: ../../mod/manage.php:153 +msgid "Make Default" +msgstr "Zum Standard machen" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profil kann nicht geklont werden." +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "Wall Fotos" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Dieses Profil kann nicht exportiert werden." +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "Profil-Name erforderlich." +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." -#: ../../mod/profiles.php:390 -msgid "Marital Status" -msgstr "Familienstand" +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "interessiert sich für:" -#: ../../mod/profiles.php:394 -msgid "Romantic Partner" -msgstr "Romantische Partner" +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Keine Übereinstimmungen" -#: ../../mod/profiles.php:398 -msgid "Likes" -msgstr "Gefällt" +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "Menü aktualisiert." -#: ../../mod/profiles.php:402 -msgid "Dislikes" -msgstr "Gefällt nicht" +#: ../../mod/menu.php:25 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." -#: ../../mod/profiles.php:406 -msgid "Work/Employment" -msgstr "Arbeit/Anstellung" +#: ../../mod/menu.php:30 +msgid "Menu created." +msgstr "Menü erstellt." -#: ../../mod/profiles.php:409 -msgid "Religion" -msgstr "Religion" +#: ../../mod/menu.php:34 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." -#: ../../mod/profiles.php:413 -msgid "Political Views" -msgstr "Politische Ansichten" +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "Menüs verwalten" -#: ../../mod/profiles.php:417 -msgid "Gender" -msgstr "Geschlecht" +#: ../../mod/menu.php:60 +msgid "Drop" +msgstr "Löschen" -#: ../../mod/profiles.php:421 -msgid "Sexual Preference" -msgstr "Sexuelle Orientierung" +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "Neues Menü erstellen" -#: ../../mod/profiles.php:425 -msgid "Homepage" -msgstr "Webseite" +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" -#: ../../mod/profiles.php:429 -msgid "Interests" -msgstr "Hobbys/Interessen" +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" -#: ../../mod/profiles.php:523 -msgid "Profile updated." -msgstr "Profil aktualisiert." +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" -#: ../../mod/profiles.php:600 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "Neues Menü" -#: ../../mod/profiles.php:642 -msgid "Edit Profile Details" -msgstr "Bearbeite Profil-Details" +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "Menü Name" -#: ../../mod/profiles.php:644 -msgid "View this profile" -msgstr "Dieses Profil ansehen" +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" -msgstr "Profilfoto ändern" +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "Menü Titel" -#: ../../mod/profiles.php:647 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" -#: ../../mod/profiles.php:648 -msgid "Clone this profile" -msgstr "Dieses Profil klonen" +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" -#: ../../mod/profiles.php:649 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" +msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" -#: ../../mod/profiles.php:651 -msgid "Import profile from file" -msgstr "Profil aus einer Datei importieren" +#: ../../mod/menu.php:98 +msgid "Menu deleted." +msgstr "Menü gelöscht." -#: ../../mod/profiles.php:652 -msgid "Export profile to file" -msgstr "Profil in eine Datei exportieren" +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." -#: ../../mod/profiles.php:653 -msgid "Profile Name:" -msgstr "Profilname:" +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "Menü bearbeiten" -#: ../../mod/profiles.php:654 -msgid "Your Full Name:" -msgstr "Dein voller Name:" +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" -#: ../../mod/profiles.php:655 -msgid "Title/Description:" -msgstr "Titel/Stellenbeschreibung:" +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." -#: ../../mod/profiles.php:656 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "Keine Nachrichten." -#: ../../mod/profiles.php:657 -#, php-format -msgid "Birthday (%s):" -msgstr "Geburtstag (%s):" +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - G:i" + +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Kanal hinzufügen" + +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt." + +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " + +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" + +#: ../../mod/new_channel.php:115 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst." + +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Oder importiere einen bestehenden Kanal von einem anderen Server" + +#: ../../mod/new_channel.php:118 +msgid "Channel Type" +msgstr "Kanaltyp" + +#: ../../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 "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können" -#: ../../mod/profiles.php:658 -msgid "Street Address:" -msgstr "Straße und Hausnummer:" +#: ../../mod/home.php:46 +msgid "Red Matrix - "The Network"" +msgstr "RedMatrix – "Das Netzwerk"" -#: ../../mod/profiles.php:659 -msgid "Locality/City:" -msgstr "Wohnort:" +#: ../../mod/home.php:101 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" -#: ../../mod/profiles.php:660 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." -#: ../../mod/profiles.php:661 -msgid "Country:" -msgstr "Land:" +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Verwerfen" -#: ../../mod/profiles.php:662 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" +#: ../../mod/notifications.php:94 ../../mod/notify.php:53 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." -#: ../../mod/profiles.php:663 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" +#: ../../mod/notifications.php:98 ../../mod/notify.php:57 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" -#: ../../mod/profiles.php:664 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." -#: ../../mod/profiles.php:665 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." -#: ../../mod/profiles.php:666 -msgid "Since [date]:" -msgstr "Seit [Datum]:" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" -#: ../../mod/profiles.php:668 -msgid "Homepage URL:" -msgstr "Homepage URL:" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." -#: ../../mod/profiles.php:671 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installiert." -#: ../../mod/profiles.php:672 -msgid "Keywords:" -msgstr "Schlüsselwörter:" +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../mod/profiles.php:675 -msgid "Example: fishing photography software" -msgstr "Beispiel: Angeln Fotografie Software" +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../mod/profiles.php:676 -msgid "Used in directory listings" -msgstr "Wird in Verzeichnis-Auflistungen verwendet" +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../mod/profiles.php:677 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein wenig von Dir …" +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App erstellen" -#: ../../mod/profiles.php:678 -msgid "Hobbies/Interests" -msgstr "Hobbys/Interessen" +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Name der App" -#: ../../mod/profiles.php:679 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformation und soziale Netzwerke" +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" -#: ../../mod/profiles.php:680 -msgid "My other channels" -msgstr "Meine anderen Kanäle" +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL zum Icon" -#: ../../mod/profiles.php:681 -msgid "Musical interests" -msgstr "Musikalische Interessen" +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" -#: ../../mod/profiles.php:682 -msgid "Books, literature" -msgstr "Bücher, Literatur" +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versions-ID" -#: ../../mod/profiles.php:683 -msgid "Television" -msgstr "Fernsehen" +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Preis der App" -#: ../../mod/profiles.php:684 -msgid "Film/dance/culture/entertainment" -msgstr "Film/Tanz/Kultur/Unterhaltung" +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" -#: ../../mod/profiles.php:685 -msgid "Love/romance" -msgstr "Liebe/Romantik" +#: ../../mod/poll.php:64 +msgid "Poll" +msgstr "Umfrage" -#: ../../mod/profiles.php:686 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" +#: ../../mod/poll.php:69 +msgid "View Results" +msgstr "Ergebnisse" -#: ../../mod/profiles.php:687 -msgid "School/education" -msgstr "Schule/Ausbildung" +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." -#: ../../mod/profiles.php:693 -msgid "This is your default profile." -msgstr "Das ist Dein Standardprofil" +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Dieses Konto löschen" -#: ../../mod/profiles.php:747 -msgid "Edit/Manage Profiles" -msgstr "Profile bearbeiten/verwalten" +#: ../../mod/removeaccount.php:58 +msgid "" +"This will completely remove this account including all its channels from the" +" network. Once this has been done it is not recoverable." +msgstr "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden." -#: ../../mod/profiles.php:748 -msgid "Add profile things" -msgstr "Sachen zum Profil hinzufügen" +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" -#: ../../mod/profiles.php:749 -msgid "Include desirable objects in your profile" -msgstr "Binde begehrenswerte Dinge in Dein Profil ein" +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" +#: ../../view/theme/apw/php/config.php:202 +#: ../../view/theme/apw/php/config.php:236 +msgid "Schema Default" +msgstr "Standard-Schema" -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" +#: ../../view/theme/apw/php/config.php:203 +msgid "Sans-Serif" +msgstr "Sans-Serif" -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Kein Kanal." +#: ../../view/theme/apw/php/config.php:204 +msgid "Monospace" +msgstr "Monospace" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" +#: ../../view/theme/apw/php/config.php:259 +#: ../../view/theme/blogga/php/config.php:69 +#: ../../view/theme/blogga/view/theme/blog/config.php:69 +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Theme settings" +msgstr "Theme-Einstellungen" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../view/theme/apw/php/config.php:260 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set scheme" +msgstr "Schema" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" +#: ../../view/theme/apw/php/config.php:261 +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." +#: ../../view/theme/apw/php/config.php:262 +msgid "Set font face" +msgstr "Schriftart" -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren." +#: ../../view/theme/apw/php/config.php:263 +msgid "Set iconset" +msgstr "Iconset" -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ungültige Anfrage." +#: ../../view/theme/apw/php/config.php:264 +msgid "Set big shadow size, default 15px 15px 15px" +msgstr "Ausmaß der großen Schatten (Default 15px 15px 15px)" -#: ../../mod/like.php:119 -msgid "thing" -msgstr "Sache" +#: ../../view/theme/apw/php/config.php:265 +msgid "Set small shadow size, default 5px 5px 5px" +msgstr "Ausmaß der kleinen Schatten (Default 5px 5px 5px)" -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." +#: ../../view/theme/apw/php/config.php:266 +msgid "Set shadow color, default #000" +msgstr "Farbe der Schatten (Default #000)" -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." +#: ../../view/theme/apw/php/config.php:267 +msgid "Set radius size, default 5px" +msgstr "Ecken-Radius (Default 5px)" -#: ../../mod/like.php:417 -msgid "Action completed." -msgstr "Aktion durchgeführt." +#: ../../view/theme/apw/php/config.php:268 +msgid "Set line-height for posts and comments" +msgstr "Zeilenhöhe in Beiträgen und Kommentaren" -#: ../../mod/like.php:418 -msgid "Thank you." -msgstr "Vielen Dank." +#: ../../view/theme/apw/php/config.php:269 +msgid "Set background image" +msgstr "Hintergrundbild" -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." +#: ../../view/theme/apw/php/config.php:270 +msgid "Set background attachment" +msgstr "Hintergrunddatei" -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" +#: ../../view/theme/apw/php/config.php:271 +msgid "Set background color" +msgstr "Hintergrundfarbe" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" +#: ../../view/theme/apw/php/config.php:272 +msgid "Set section background image" +msgstr "Hintergrundbild für die Section" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" +#: ../../view/theme/apw/php/config.php:273 +msgid "Set section background color" +msgstr "Hintergrundfarbe für die Section" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." +#: ../../view/theme/apw/php/config.php:274 +msgid "Set color of items - use hex" +msgstr "Farbe für Beiträge – Hex benutzen" -#: ../../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 "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" +#: ../../view/theme/apw/php/config.php:275 +msgid "Set color of links - use hex" +msgstr "Farbe für Links – Hex benutzen" -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" +#: ../../view/theme/apw/php/config.php:276 +msgid "Set max-width for items. Default 400px" +msgstr "Maximale Breite von Beiträgen (Default 400px)" -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Raum verlassen" +#: ../../view/theme/apw/php/config.php:277 +msgid "Set min-width for items. Default 240px" +msgstr "Minimale Breite von Beiträgen (Default 240px)" -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Diesen Raum löschen" +#: ../../view/theme/apw/php/config.php:278 +msgid "Set the generic content wrapper width. Default 48%" +msgstr "Breite des \"generic content wrapper\" (Default 48%)" -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" +#: ../../view/theme/apw/php/config.php:279 +msgid "Set color of fonts - use hex" +msgstr "Schriftfarbe – Hex benutzen" -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ich bin online" +#: ../../view/theme/apw/php/config.php:280 +msgid "Set background-size element" +msgstr "Größe des Hintergrund-Elements" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" +#: ../../view/theme/apw/php/config.php:281 +msgid "Item opacity" +msgstr "Deckkraft der Beiträge" -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Neuer Chatraum" +#: ../../view/theme/apw/php/config.php:282 +msgid "Display post previews only" +msgstr "Nur Beitragsvorschau anzeigen" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Name des Chatraums" +#: ../../view/theme/apw/php/config.php:283 +msgid "Display side bar on channel page" +msgstr "Zeige die Seitenleiste auf der Kanal-Seite" -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" +#: ../../view/theme/apw/php/config.php:284 +msgid "Colour of the navigation bar" +msgstr "Farbe der Navigationsleiste" -#: ../../mod/events.php:91 -msgid "Event title and start time are required." -msgstr "Veranstaltungs- Titel und Startzeit sind erforderlich." +#: ../../view/theme/apw/php/config.php:285 +msgid "Item float" +msgstr "Beitragsfluss" -#: ../../mod/events.php:105 -msgid "Event not found." -msgstr "Termin nicht gefunden." +#: ../../view/theme/apw/php/config.php:286 +msgid "Left offset of the section element" +msgstr "Linker Rand des Section Elements" -#: ../../mod/events.php:369 -msgid "l, F j" -msgstr "l, j. F" +#: ../../view/theme/apw/php/config.php:287 +msgid "Right offset of the section element" +msgstr "Rechter Rand des Section Elements" -#: ../../mod/events.php:391 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" +#: ../../view/theme/apw/php/config.php:288 +msgid "Section width" +msgstr "Breite der Section" -#: ../../mod/events.php:437 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" +#: ../../view/theme/apw/php/config.php:289 +msgid "Left offset of the aside" +msgstr "Linker Rand des Aside-Elements" -#: ../../mod/events.php:438 -msgid "Previous" -msgstr "Voriges" +#: ../../view/theme/apw/php/config.php:290 +msgid "Right offset of the aside element" +msgstr "Rechter Rand des Aside-Elements" -#: ../../mod/events.php:536 -msgid "hour:minute" -msgstr "Stunde:Minute" +#: ../../view/theme/blogga/php/config.php:47 +#: ../../view/theme/blogga/view/theme/blog/config.php:47 +msgid "None" +msgstr "Kein" -#: ../../mod/events.php:556 -msgid "Event details" -msgstr "Veranstaltungs-Details" +#: ../../view/theme/blogga/php/config.php:70 +#: ../../view/theme/blogga/view/theme/blog/config.php:70 +msgid "Header image" +msgstr "Titelbild" -#: ../../mod/events.php:557 -#, php-format -msgid "Format is %s %s." -msgstr "Format ist %s %s." +#: ../../view/theme/blogga/php/config.php:71 +#: ../../view/theme/blogga/view/theme/blog/config.php:71 +msgid "Header image only on profile pages" +msgstr "Titelbild nur auf Profil-Seiten anzeigen" -#: ../../mod/events.php:558 -msgid "Starting date and Title are required." -msgstr "Startdatum und Titel sind erforderlich." +#: ../../view/theme/redbasic/php/config.php:84 +msgid "Light (Red Matrix default)" +msgstr "Hell (RedMatrix-Voreinstellung)" -#: ../../mod/events.php:562 -msgid "Event Starts:" -msgstr "Veranstaltung startet:" +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Narrow navbar" +msgstr "Schmale Navigationsleiste" -#: ../../mod/events.php:570 -msgid "Finish date/time is not known or not relevant" -msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Navigation bar background color" +msgstr "Hintergrundfarbe der Navigationsleiste" -#: ../../mod/events.php:572 -msgid "Event Finishes:" -msgstr "Veranstaltung endet:" +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Navigation bar gradient top color" +msgstr "Farbverlauf der Navigationsleiste: Farbe oben" -#: ../../mod/events.php:575 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Navigation bar gradient bottom color" +msgstr "Farbverlauf der Navigationsleiste: Farbe unten" -#: ../../mod/events.php:577 -msgid "Description:" -msgstr "Beschreibung:" +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Navigation active button gradient top color" +msgstr "Navigations-Button aktiv: Farbe für Farbverlauf oben" -#: ../../mod/events.php:581 -msgid "Title:" -msgstr "Titel:" +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Navigation active button gradient bottom color" +msgstr "Navigations-Button aktiv: Farbe für Farbverlauf unten" -#: ../../mod/events.php:583 -msgid "Share this event" -msgstr "Die Veranstaltung teilen" +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Navigation bar border color " +msgstr "Farbe für den Rand der Navigationsleiste" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Navigation bar icon color " +msgstr "Farbe für die Icons der Navigationsleiste" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Verwerfen" +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Navigation bar active icon color " +msgstr "Farbe für aktive Icons der Navigationsleiste" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." +#: ../../view/theme/redbasic/php/config.php:113 +msgid "link color" +msgstr "Farbe für Links" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set font-color for banner" +msgstr "Farbe der Schrift des Banners" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set the background color" +msgstr "Hintergrundfarbe" -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set the background image" +msgstr "Hintergrundbild" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set the background color of items" +msgstr "Hintergrundfarbe für Beiträge" -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." +#: ../../view/theme/redbasic/php/config.php:118 +msgid "Set the background color of comments" +msgstr "Hintergrundfarbe für Kommentare" -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" +#: ../../view/theme/redbasic/php/config.php:119 +msgid "Set the border color of comments" +msgstr "Farbe des Randes von Kommentaren" -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" +#: ../../view/theme/redbasic/php/config.php:120 +msgid "Set the indent for comments" +msgstr "Einzug für Kommentare" -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" +#: ../../view/theme/redbasic/php/config.php:121 +msgid "Set the basic color for item icons" +msgstr "Grundfarbe für Beitrags-Icons" -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." +#: ../../view/theme/redbasic/php/config.php:122 +msgid "Set the hover color for item icons" +msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Set font-size for the entire application" +msgstr "Schriftgröße für die ganze Applikation" -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-color for posts and comments" +msgstr "Schriftfarbe für Posts und Kommentare" -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." +#: ../../view/theme/redbasic/php/config.php:126 +msgid "Set radius of corners" +msgstr "Ecken-Radius" -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-Mail Adresse" +#: ../../view/theme/redbasic/php/config.php:127 +msgid "Set shadow depth of photos" +msgstr "Schattentiefe von Fotos" -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Zurücksetzen" +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Set maximum width of conversation regions" +msgstr "Maximalbreite der Unterhaltungsbereiche" -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "Hilfe zu dieser Funktion" +#: ../../view/theme/redbasic/php/config.php:129 +msgid "Center conversation regions" +msgstr "Konversationsbereich zentrieren" -#: ../../mod/layouts.php:85 -msgid "Layout Name" -msgstr "Layout-Name" +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Set minimum opacity of nav bar - to hide it" +msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)" -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "Block bearbeiten" +#: ../../view/theme/redbasic/php/config.php:131 +msgid "Set size of conversation author photo" +msgstr "Größe der Avatare von Themenstartern" -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Block löschen?" +#: ../../view/theme/redbasic/php/config.php:132 +msgid "Set size of followup author photos" +msgstr "Größe der Avatare von Kommentatoren" -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "Block löschen" +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Sloppy photo albums" +msgstr "Schräge Fotoalben" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Are you a clean desk or a messy desk person?" +msgstr "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?" -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "Layout bearbeiten" +#: ../../boot.php:1294 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "Layout löschen?" +#: ../../boot.php:1297 +#, php-format +msgid "Update Error at %s" +msgstr "Aktualisierungsfehler auf %s" -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "Layout löschen" +#: ../../boot.php:1471 +msgid "" +"Create an account to access services and applications within the Red Matrix" +msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können." -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal hinzugefügt." +#: ../../boot.php:1499 +msgid "Password" +msgstr "Kennwort" -#: ../../mod/locs.php:47 ../../mod/locs.php:74 -msgid "Location not found." -msgstr "Klon nicht gefunden." +#: ../../boot.php:1500 +msgid "Remember me" +msgstr "Angaben speichern" -#: ../../mod/locs.php:78 -msgid "Primary location cannot be removed." -msgstr "Der primäre Klon kann nicht gelöscht werden." +#: ../../boot.php:1505 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: ../../boot.php:1570 +msgid "permission denied" +msgstr "Zugriff verweigert" + +#: ../../boot.php:1571 +msgid "Got Zot?" +msgstr "Haste schon Zot?" + +#: ../../boot.php:2005 +msgid "toggle mobile" +msgstr "auf/von mobile Ansicht wechseln" diff --git a/view/de/strings.php b/view/de/strings.php index 13834e85f..43be85885 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,274 +5,185 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["Light (Red Matrix default)"] = "Hell (RedMatrix-Voreinstellung)"; -$a->strings["Submit"] = "Bestätigen"; -$a->strings["Theme settings"] = "Theme-Einstellungen"; -$a->strings["Set scheme"] = "Schema"; -$a->strings["Narrow navbar"] = "Schmale Navigationsleiste"; -$a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; -$a->strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben"; -$a->strings["Navigation bar gradient bottom color"] = "Farbverlauf der Navigationsleiste: Farbe unten"; -$a->strings["Navigation active button gradient top color"] = "Navigations-Button aktiv: Farbe für Farbverlauf oben"; -$a->strings["Navigation active button gradient bottom color"] = "Navigations-Button aktiv: Farbe für Farbverlauf unten"; -$a->strings["Navigation bar border color "] = "Farbe für den Rand der Navigationsleiste"; -$a->strings["Navigation bar icon color "] = "Farbe für die Icons der Navigationsleiste"; -$a->strings["Navigation bar active icon color "] = "Farbe für aktive Icons der Navigationsleiste"; -$a->strings["link color"] = "Farbe für Links"; -$a->strings["Set font-color for banner"] = "Farbe der Schrift des Banners"; -$a->strings["Set the background color"] = "Hintergrundfarbe"; -$a->strings["Set the background image"] = "Hintergrundbild"; -$a->strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge"; -$a->strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare"; -$a->strings["Set the border color of comments"] = "Farbe des Randes von Kommentaren"; -$a->strings["Set the indent for comments"] = "Einzug für Kommentare"; -$a->strings["Set the basic color for item icons"] = "Grundfarbe für Beitrags-Icons"; -$a->strings["Set the hover color for item icons"] = "Farbe für Beitrags-Icons unter dem Mauszeiger"; -$a->strings["Set font-size for the entire application"] = "Schriftgröße für die ganze Applikation"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare"; -$a->strings["Set font-color for posts and comments"] = "Schriftfarbe für Posts und Kommentare"; -$a->strings["Set radius of corners"] = "Ecken-Radius"; -$a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos"; -$a->strings["Set maximum width of conversation regions"] = "Maximalbreite der Unterhaltungsbereiche"; -$a->strings["Center conversation regions"] = "Konversationsbereich zentrieren"; -$a->strings["Set minimum opacity of nav bar - to hide it"] = "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)"; -$a->strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern"; -$a->strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren"; -$a->strings["Sloppy photo albums"] = "Schräge Fotoalben"; -$a->strings["Are you a clean desk or a messy desk person?"] = "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"; -$a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; -$a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; -$a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."; -$a->strings["Register"] = "Registrieren"; -$a->strings["Logout"] = "Abmelden"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; +$a->strings["Profile Photos"] = "Profilfotos"; +$a->strings["Site Admin"] = "Hub-Administration"; +$a->strings["Bookmarks"] = "Lesezeichen"; +$a->strings["Address Book"] = "Adressbuch"; $a->strings["Login"] = "Anmelden"; -$a->strings["Email"] = "E-Mail"; -$a->strings["Password"] = "Kennwort"; -$a->strings["Remember me"] = "Angaben speichern"; -$a->strings["Forgot your password?"] = "Passwort vergessen?"; -$a->strings["Password Reset"] = "Zurücksetzen des Kennworts"; -$a->strings["permission denied"] = "Zugriff verweigert"; -$a->strings["Got Zot?"] = "Haste schon Zot?"; -$a->strings["toggle mobile"] = "auf/von mobile Ansicht wechseln"; -$a->strings["Logged out."] = "Ausgeloggt."; -$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -$a->strings["Login failed."] = "Login fehlgeschlagen."; -$a->strings["Default"] = "Standard"; -$a->strings["parent"] = "Übergeordnetes Verzeichnis"; -$a->strings["Collection"] = "Sammlung"; -$a->strings["Principal"] = "Prinzipal"; -$a->strings["Addressbook"] = "Adressbuch"; -$a->strings["Calendar"] = "Kalender"; -$a->strings["Schedule Inbox"] = "Posteingang für überwachte Kalender"; -$a->strings["Schedule Outbox"] = "Postausgang für überwachte Kalender"; -$a->strings["Unknown"] = "Unbekannt"; -$a->strings["%1\$s used"] = "%1\$s verwendet"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s von %2\$s verwendet (%3\$s%)"; +$a->strings["Channel Manager"] = "Kanal-Manager"; +$a->strings["Matrix"] = "Matrix"; +$a->strings["Settings"] = "Einstellungen"; $a->strings["Files"] = "Dateien"; -$a->strings["Name"] = "Name"; -$a->strings["Type"] = "Typ"; -$a->strings["Size"] = "Größe"; -$a->strings["Last Modified"] = "Zuletzt geändert"; +$a->strings["Webpages"] = "Webseiten"; +$a->strings["Channel Home"] = "Mein Kanal"; +$a->strings["Profile"] = "Profil"; +$a->strings["Photos"] = "Fotos"; +$a->strings["Events"] = "Veranstaltungen"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["Help"] = "Hilfe"; +$a->strings["Mail"] = "Mail"; +$a->strings["Mood"] = "Laune"; +$a->strings["Poke"] = "Anstupsen"; +$a->strings["Chat"] = "Chat"; +$a->strings["Search"] = "Suche"; +$a->strings["Probe"] = "Testen"; +$a->strings["Suggest"] = "Empfehlungen"; +$a->strings["Random Channel"] = "Zufälliger Kanal"; +$a->strings["Invite"] = "Einladen"; +$a->strings["Features"] = "Funktionen"; +$a->strings["Language"] = "Sprache"; +$a->strings["Post"] = "Beitrag"; +$a->strings["Profile Photo"] = "Profilfoto"; +$a->strings["Update"] = "Aktualisieren"; +$a->strings["Install"] = "Installieren"; +$a->strings["Purchase"] = "Kaufen"; $a->strings["Edit"] = "Bearbeiten"; $a->strings["Delete"] = "Löschen"; -$a->strings["Total"] = "Summe"; -$a->strings["Create new folder"] = "Neuen Ordner anlegen"; -$a->strings["Create"] = "Erstelle"; -$a->strings["Upload file"] = "Datei hochladen"; -$a->strings["Upload"] = "Hochladen"; +$a->strings["Unknown"] = "Unbekannt"; $a->strings["Permission denied."] = "Zugang verweigert"; -$a->strings["Profile Photos"] = "Profilfotos"; -$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes"; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; -$a->strings["Photo storage failed."] = "Foto speichern schlug fehl"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Upload New Photos"] = "Lade neue Fotos hoch"; -$a->strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", +$a->strings["Item was not found."] = "Beitrag wurde nicht gefunden."; +$a->strings["No source file."] = "Keine Quelldatei."; +$a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; +$a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; +$a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; +$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; +$a->strings["Path not available."] = "Pfad nicht verfügbar."; +$a->strings["Empty pathname"] = "Leere Pfadangabe"; +$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; +$a->strings["Path not found."] = "Pfad nicht gefunden."; +$a->strings["mkdir failed."] = "mkdir fehlgeschlagen."; +$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; +$a->strings["photo"] = "Foto"; +$a->strings["event"] = "Ereignis"; +$a->strings["channel"] = "Kanal"; +$a->strings["status"] = "Status"; +$a->strings["comment"] = "Kommentar"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; +$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +$a->strings["poked"] = "stupste"; +$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; +$a->strings["Select"] = "Auswählen"; +$a->strings["Private Message"] = "Private Nachricht"; +$a->strings["Message signature validated"] = "Signatur überprüft"; +$a->strings["Message signature incorrect"] = "Signatur nicht korrekt"; +$a->strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Gespeichert unter:"; +$a->strings[" from %s"] = "von %s"; +$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s"; +$a->strings["Expires: %s"] = "Verfällt: %s"; +$a->strings["View in context"] = "Im Zusammenhang anschauen"; +$a->strings["Please wait"] = "Bitte warten"; +$a->strings["remove"] = "lösche"; +$a->strings["Loading..."] = "Lädt ..."; +$a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; +$a->strings["View Source"] = "Quelle anzeigen"; +$a->strings["Follow Thread"] = "Unterhaltung folgen"; +$a->strings["View Status"] = "Status ansehen"; +$a->strings["View Profile"] = "Profil ansehen"; +$a->strings["View Photos"] = "Fotos ansehen"; +$a->strings["Matrix Activity"] = "Matrix-Aktivität"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Send PM"] = "Sende PN"; +$a->strings["%s likes this."] = "%s gefällt das."; +$a->strings["%s doesn't like this."] = "%s gefällt das nicht."; +$a->strings["%2\$d people like this."] = array( + 0 => "%2\$d Person gefällt das.", + 1 => "%2\$d Leuten gefällt das.", ); -$a->strings["Advanced"] = "Fortgeschritten"; -$a->strings["Find Channels"] = "Finde Kanäle"; -$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; -$a->strings["Find"] = "Finde"; -$a->strings["Channel Suggestions"] = "Kanal-Vorschläge"; -$a->strings["Random Profile"] = "Zufallsprofil"; -$a->strings["Invite Friends"] = "Lade Freunde ein"; -$a->strings["Exammple: name=fred and country=iceland"] = "Beispiel: name=fred and country=deutschland"; -$a->strings["Advanced Find"] = "Erweiterte Suche"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Kategorien"; -$a->strings["%d connection in common"] = array( - 0 => "%d gemeinsame Verbindung", - 1 => "%d gemeinsame Verbindungen", +$a->strings["%2\$d people don't like this."] = array( + 0 => "%2\$d Person gefällt das nicht.", + 1 => "%2\$d Leuten gefällt das nicht.", ); -$a->strings["show more"] = "mehr zeigen"; -$a->strings[" and "] = "und"; -$a->strings["public profile"] = "öffentliches Profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; -$a->strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -$a->strings["Permission denied"] = "Keine Berechtigung"; -$a->strings["(Unknown)"] = "(Unbekannt)"; -$a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; -$a->strings["Visible to you only."] = "Nur für Dich sichtbar."; -$a->strings["Visible to anybody in this network."] = "Für jedes Mitglied der RedMatrix sichtbar."; -$a->strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; -$a->strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; -$a->strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; -$a->strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; -$a->strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; -$a->strings["Item not found."] = "Element nicht gefunden."; -$a->strings["Collection not found."] = "Sammlung nicht gefunden"; -$a->strings["Collection is empty."] = "Sammlung ist leer."; -$a->strings["Collection: %s"] = "Sammlung: %s"; -$a->strings["Connection: %s"] = "Verbindung: %s"; -$a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; -$a->strings["Connect"] = "Verbinden"; -$a->strings["New window"] = "Neues Fenster"; -$a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"; -$a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["year"] = "Jahr"; -$a->strings["month"] = "Monat"; -$a->strings["day"] = "Tag"; -$a->strings["never"] = "Nie"; -$a->strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -$a->strings["years"] = "Jahre"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$a->strings["days"] = "Tage"; -$a->strings["hour"] = "Stunde"; -$a->strings["hours"] = "Stunden"; -$a->strings["minute"] = "Minute"; -$a->strings["minutes"] = "Minuten"; -$a->strings["second"] = "Sekunde"; -$a->strings["seconds"] = "Sekunden"; -$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -$a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; -$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; -$a->strings["Empty name"] = "Namensfeld leer"; -$a->strings["Name too long"] = "Name ist zu lang"; -$a->strings["No account identifier"] = "Keine Account-Kennung"; -$a->strings["Nickname is required."] = "Spitzname ist erforderlich."; -$a->strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; -$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -$a->strings["Default Profile"] = "Standard-Profil"; -$a->strings["Friends"] = "Freunde"; -$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; -$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; -$a->strings["Change profile photo"] = "Profilfoto ändern"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/bearbeiten"; -$a->strings["Create New Profile"] = "Neues Profil erstellen"; -$a->strings["Edit Profile"] = "Profile bearbeiten"; -$a->strings["Profile Image"] = "Profilfoto:"; -$a->strings["visible to everybody"] = "sichtbar für jeden"; -$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["Location:"] = "Ort:"; -$a->strings["Gender:"] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Online Now"] = "gerade online"; -$a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[Heute]"; -$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:"; -$a->strings["[No description]"] = "[Keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungs- Erinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen in dieser Woche:"; -$a->strings["Profile"] = "Profil"; -$a->strings["Full Name:"] = "Voller Name:"; -$a->strings["Like this channel"] = "Dieser Kanal gefällt mir"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "Gefällt mir", - 1 => "Gefällt mir", +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => ", und %d andere", ); -$a->strings["j F, Y"] = "j. F Y"; -$a->strings["j F"] = "j. F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -$a->strings["Hometown:"] = "Heimatstadt:"; -$a->strings["Tags:"] = "Schlagworte:"; -$a->strings["Political Views:"] = "Politische Ansichten:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["About:"] = "Über:"; -$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; -$a->strings["Likes:"] = "Gefällt:"; -$a->strings["Dislikes:"] = "Gefällt nicht:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; -$a->strings["My other channels:"] = "Meine anderen Kanäle:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Bücher, Literatur:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebe/Romantik:"; -$a->strings["Work/employment:"] = "Arbeit/Anstellung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Like this thing"] = "Gefällt mir"; -$a->strings["New Page"] = "Neue Seite"; -$a->strings["View"] = "Ansicht"; +$a->strings["%s like this."] = "%s gefällt das."; +$a->strings["%s don't like this."] = "%s gefällt das nicht."; +$a->strings["Visible to everybody"] = "Sichtbar für jeden"; +$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; +$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; +$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; +$a->strings["Tag term:"] = "Schlagwort:"; +$a->strings["Save to Folder:"] = "Speichern in Ordner:"; +$a->strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; $a->strings["Preview"] = "Vorschau"; -$a->strings["Actions"] = "Aktionen"; -$a->strings["Page Link"] = "Seiten-Link"; -$a->strings["Title"] = "Titel"; -$a->strings["Created"] = "Erstellt"; -$a->strings["Edited"] = "Geändert"; -$a->strings["No recipient provided."] = "Kein Empfänger angegeben"; -$a->strings["[no subject]"] = "[no subject]"; -$a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; -$a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; -$a->strings["Tags"] = "Schlagwörter"; -$a->strings["Keywords"] = "Schlüsselwörter"; -$a->strings["have"] = "habe"; -$a->strings["has"] = "hat"; -$a->strings["want"] = "will"; -$a->strings["wants"] = "will"; -$a->strings["like"] = "mag"; -$a->strings["likes"] = "gefällt"; -$a->strings["dislike"] = "verurteile"; -$a->strings["dislikes"] = "missfällt"; -$a->strings["Delete this item?"] = "Dieses Element löschen?"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["[+] show all"] = "[+] Zeige alle"; -$a->strings["[-] show less"] = "[-] zeige weniger"; -$a->strings["[+] expand"] = "[+] aufklappen"; -$a->strings["[-] collapse"] = "[-] einklappen"; -$a->strings["Password too short"] = "Kennwort zu kurz"; -$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; -$a->strings["everybody"] = "alle"; -$a->strings["Secret Passphrase"] = "geheime Passphrase"; -$a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; -$a->strings["close all"] = "Alle schließen"; -$a->strings["Nothing new here"] = "Nichts Neues hier"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = " "; -$a->strings["ago"] = "her"; -$a->strings["from now"] = "von jetzt"; -$a->strings["less than a minute"] = "weniger als eine Minute"; -$a->strings["about a minute"] = "ungefähr eine Minute"; -$a->strings["%d minutes"] = "%d Minuten"; -$a->strings["about an hour"] = "ungefähr eine Stunde"; -$a->strings["about %d hours"] = "ungefähr %d Stunden"; -$a->strings["a day"] = "ein Tag"; -$a->strings["%d days"] = "%d Tage"; -$a->strings["about a month"] = "ungefähr ein Monat"; -$a->strings["%d months"] = "%d Monate"; -$a->strings["about a year"] = "ungefähr ein Jahr"; -$a->strings["%d years"] = "%d Jahre"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["Share"] = "Teilen"; +$a->strings["Page link title"] = "Seitentitel-Link"; +$a->strings["Post as"] = "Posten als"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["upload photo"] = "Foto hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anfügen"; +$a->strings["Insert web link"] = "Link einfügen"; +$a->strings["web link"] = "Web-Link"; +$a->strings["Insert video link"] = "Video-Link einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Link einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Standort"; +$a->strings["set location"] = "Standort"; +$a->strings["Clear browser location"] = "Browser-Standort löschen"; +$a->strings["clear location"] = "Standort löschen"; +$a->strings["Set title"] = "Titel"; +$a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; +$a->strings["Permission settings"] = "Berechtigungs-Einstellungen"; +$a->strings["permissions"] = "Berechtigungen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com"; +$a->strings["Set expiration date"] = "Verfallsdatum"; +$a->strings["Encrypt text"] = "Text verschlüsseln"; +$a->strings["OK"] = "Ok"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["Discover"] = "Entdecken"; +$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; +$a->strings["Commented Order"] = "Neueste Kommentare"; +$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; +$a->strings["Posted Order"] = "Neueste Beiträge"; +$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; +$a->strings["Personal"] = "Persönlich"; +$a->strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; +$a->strings["New"] = "Neu"; +$a->strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; +$a->strings["Starred"] = "Markiert"; +$a->strings["Favourite Posts"] = "Markierte Beiträge"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; +$a->strings["Channel"] = "Kanal"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["About"] = "Über"; +$a->strings["Profile Details"] = "Profil-Details"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Files and Storage"] = "Dateien und Speicher"; +$a->strings["Chatrooms"] = "Chaträume"; +$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +$a->strings["Manage Webpages"] = "Webseiten verwalten"; +$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; +$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +$a->strings["New Page"] = "Neue Seite"; +$a->strings["View"] = "Ansicht"; +$a->strings["Actions"] = "Aktionen"; +$a->strings["Page Link"] = "Seiten-Link"; +$a->strings["Title"] = "Titel"; +$a->strings["Created"] = "Erstellt"; +$a->strings["Edited"] = "Geändert"; +$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."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\\\, H:i"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["Location:"] = "Ort:"; +$a->strings["This event has been added to your calendar."] = "Dieses Ereignis wurde zu Deinem Kalender hinzugefügt"; +$a->strings["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; $a->strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; $a->strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; $a->strings["Can view my photo albums"] = "Kann meine Fotoalben betrachten"; @@ -301,9 +212,40 @@ $a->strings["Restricted"] = "Beschränkt"; $a->strings["Private"] = "Privat"; $a->strings["Community Forum"] = "Forum"; $a->strings["Feed Republish"] = "Teilen von Feeds"; +$a->strings["Special Purpose"] = "Für besondere Zwecke"; $a->strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; -$a->strings["Other"] = "Anders"; +$a->strings["Group Repository"] = "Gruppenarchiv"; +$a->strings["Other"] = "Andere"; $a->strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +$a->strings[" and "] = "und"; +$a->strings["public profile"] = "öffentliches Profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; +$a->strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; +$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["Logged out."] = "Ausgeloggt."; +$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +$a->strings["Login failed."] = "Login fehlgeschlagen."; +$a->strings["parent"] = "Übergeordnetes Verzeichnis"; +$a->strings["Collection"] = "Ordner"; +$a->strings["Principal"] = "Prinzipal"; +$a->strings["Addressbook"] = "Adressbuch"; +$a->strings["Calendar"] = "Kalender"; +$a->strings["Schedule Inbox"] = "Posteingang für überwachte Kalender"; +$a->strings["Schedule Outbox"] = "Postausgang für überwachte Kalender"; +$a->strings["%1\$s used"] = "%1\$s verwendet"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s von %2\$s verwendet (%3\$s%)"; +$a->strings["Name"] = "Name"; +$a->strings["Type"] = "Typ"; +$a->strings["Size"] = "Größe"; +$a->strings["Last Modified"] = "Zuletzt geändert"; +$a->strings["Total"] = "Summe"; +$a->strings["Create new folder"] = "Neuen Ordner anlegen"; +$a->strings["Create"] = "Erstelle"; +$a->strings["Upload file"] = "Datei hochladen"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +$a->strings["Default"] = "Standard"; $a->strings["Frequently"] = "Häufig"; $a->strings["Hourly"] = "Stündlich"; $a->strings["Twice daily"] = "Zwei Mal am Tag"; @@ -313,72 +255,36 @@ $a->strings["Monthly"] = "Monatlich"; $a->strings["Friendica"] = "Friendica"; $a->strings["OStatus"] = "OStatus"; $a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-Mail"; $a->strings["Diaspora"] = "Diaspora"; $a->strings["Facebook"] = "Facebook"; $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["MySpace"] = "MySpace"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\\\, H:i"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["This event has been added to your calendar."] = "Dieses Ereignis wurde zu Deinem Kalender hinzugefügt"; -$a->strings["Male"] = "Männlich"; -$a->strings["Female"] = "Weiblich"; -$a->strings["Currently Male"] = "Momentan männlich"; -$a->strings["Currently Female"] = "Momentan weiblich"; -$a->strings["Mostly Male"] = "Größtenteils männlich"; -$a->strings["Mostly Female"] = "Größtenteils weiblich"; -$a->strings["Transgender"] = "Transsexuell"; -$a->strings["Intersex"] = "Zwischengeschlechtlich"; -$a->strings["Transsexual"] = "Transsexuell"; -$a->strings["Hermaphrodite"] = "Zwitter"; -$a->strings["Neuter"] = "Geschlechtslos"; -$a->strings["Non-specific"] = "unklar"; -$a->strings["Undecided"] = "Unentschieden"; -$a->strings["Males"] = "Männer"; -$a->strings["Females"] = "Frauen"; -$a->strings["Gay"] = "Schwul"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Keine Bevorzugung"; -$a->strings["Bisexual"] = "Bisexuell"; -$a->strings["Autosexual"] = "Autosexuell"; -$a->strings["Abstinent"] = "Enthaltsam"; -$a->strings["Virgin"] = "Jungfräulich"; -$a->strings["Deviant"] = "Abweichend"; -$a->strings["Fetish"] = "Fetisch"; -$a->strings["Oodles"] = "Unmengen"; -$a->strings["Nonsexual"] = "Sexlos"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Einsam"; -$a->strings["Available"] = "Verfügbar"; -$a->strings["Unavailable"] = "Nicht verfügbar"; -$a->strings["Has crush"] = "Verguckt"; -$a->strings["Infatuated"] = "Verknallt"; -$a->strings["Dating"] = "Lerne gerade jemanden kennen"; -$a->strings["Unfaithful"] = "Treulos"; -$a->strings["Sex Addict"] = "Sexabhängig"; -$a->strings["Friends/Benefits"] = "Freunde/Begünstigte"; -$a->strings["Casual"] = "Lose"; -$a->strings["Engaged"] = "Verlobt"; -$a->strings["Married"] = "Verheiratet"; -$a->strings["Imaginarily married"] = "Gewissermaßen verheiratet"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "Lebensgemeinschaft"; -$a->strings["Common law"] = "Informelle Ehe"; -$a->strings["Happy"] = "Glücklich"; -$a->strings["Not looking"] = "Nicht Ausschau haltend"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Betrogen"; -$a->strings["Separated"] = "Getrennt"; -$a->strings["Unstable"] = "Labil"; -$a->strings["Divorced"] = "Geschieden"; -$a->strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; -$a->strings["Widowed"] = "Verwitwet"; -$a->strings["Uncertain"] = "Ungewiss"; -$a->strings["It's complicated"] = "Es ist kompliziert"; -$a->strings["Don't care"] = "Interessiert mich nicht"; -$a->strings["Ask me"] = "Frag mich mal"; +$a->strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +$a->strings["Advanced"] = "Fortgeschritten"; +$a->strings["Find Channels"] = "Finde Kanäle"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; +$a->strings["Find"] = "Finde"; +$a->strings["Channel Suggestions"] = "Kanal-Vorschläge"; +$a->strings["Random Profile"] = "Zufallsprofil"; +$a->strings["Invite Friends"] = "Lade Freunde ein"; +$a->strings["Exammple: name=fred and country=iceland"] = "Beispiel: name=fred and country=deutschland"; +$a->strings["Advanced Find"] = "Erweiterte Suche"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemeinsame Verbindung", + 1 => "%d gemeinsame Verbindungen", +); +$a->strings["show more"] = "mehr zeigen"; $a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; $a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt"; $a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; @@ -397,84 +303,96 @@ $a->strings["Account verified. Please login."] = "Konto geprüft. Bitte melde Di $a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; $a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; $a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -$a->strings["Invalid data packet"] = "Ungültiges Datenpaket"; -$a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; -$a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; -$a->strings["view full size"] = "In Vollbildansicht anschauen"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; -$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."] = "Ein gelöschte Gruppe mit diesem Namen wurde gefunden. Existierende Zugangsregeln für Elemente könnten für diese Gruppe angewendet werden, sowie für alle zukünftigen Elemente."; -$a->strings["Default privacy group for new contacts"] = "Standard-Privatsphärengruppe für neue Kontakte"; -$a->strings["All Channels"] = "Alle Kanäle"; -$a->strings["edit"] = "Bearbeiten"; -$a->strings["Collections"] = "Sammlungen"; -$a->strings["Edit collection"] = "Bearbeite Sammlungen"; -$a->strings["Create a new collection"] = "Neue Sammlung erzeugen"; -$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Item was not found."] = "Beitrag wurde nicht gefunden."; -$a->strings["No source file."] = "Keine Quelldatei."; -$a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; -$a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; -$a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; -$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; -$a->strings["Path not available."] = "Pfad nicht verfügbar."; -$a->strings["Empty pathname"] = "Leere Pfadangabe"; -$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; -$a->strings["Path not found."] = "Pfad nicht gefunden."; -$a->strings["mkdir failed."] = "mkdir fehlgeschlagen."; -$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -$a->strings["Private Message"] = "Private Nachricht"; -$a->strings["Select"] = "Auswählen"; -$a->strings["Save to Folder"] = "In Ordner speichern"; -$a->strings["View all"] = "Alles anzeigen"; -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "Gefällt nicht", - 1 => "Gefällt nicht", -); -$a->strings["Add Star"] = "Stern hinzufügen"; -$a->strings["Remove Star"] = "Stern entfernen"; -$a->strings["Toggle Star Status"] = "Stern-Status umschalten"; -$a->strings["starred"] = "markiert"; -$a->strings["Message signature validated"] = "Signatur überprüft"; -$a->strings["Message signature incorrect"] = "Signatur nicht korrekt"; -$a->strings["Add Tag"] = "Tag hinzufügen"; -$a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; -$a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; -$a->strings["Share This"] = "Teilen"; -$a->strings["share"] = "Teilen"; -$a->strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s"; -$a->strings["to"] = "an"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings[" from %s"] = "von %s"; -$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s"; -$a->strings["Expires: %s"] = "Verfällt: %s"; -$a->strings["Save Bookmarks"] = "Favoriten speichern"; -$a->strings["Add to Calendar"] = "Zum Kalender hinzufügen"; -$a->strings["__ctx:noun__ Likes"] = "Gefällt mir"; -$a->strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; -$a->strings["Close"] = "Schließen"; -$a->strings["Please wait"] = "Bitte warten"; -$a->strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["Install design element: "] = "Design-Element installieren:"; +$a->strings["QR code"] = "QR-Code"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +$a->strings["post"] = "Beitrag"; +$a->strings["$1 spoiler"] = "$1 Spoiler"; +$a->strings["$1 wrote:"] = "$1 schrieb:"; +$a->strings["Sort Options"] = "Sortieroptionen"; +$a->strings["Alphabetic"] = "alphabetisch"; +$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; +$a->strings["Newest to Oldest"] = "Neueste zuerst"; +$a->strings["Enable Safe Search"] = "Sichere Suche einschalten"; +$a->strings["Disable Safe Search"] = "Sichere Suche ausschalten"; +$a->strings["Safe Mode"] = "Sicherer Modus"; +$a->strings["Tags"] = "Schlagwörter"; +$a->strings["Keywords"] = "Schlüsselwörter"; +$a->strings["have"] = "habe"; +$a->strings["has"] = "hat"; +$a->strings["want"] = "will"; +$a->strings["wants"] = "will"; +$a->strings["like"] = "mag"; +$a->strings["likes"] = "gefällt"; +$a->strings["dislike"] = "verurteile"; +$a->strings["dislikes"] = "missfällt"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "Gefällt mir", + 1 => "Gefällt mir", ); -$a->strings["This is you"] = "Das bist Du"; -$a->strings["Bold"] = "Fett"; -$a->strings["Italic"] = "Kursiv"; -$a->strings["Underline"] = "Unterstrichen"; -$a->strings["Quote"] = "Zitat"; -$a->strings["Code"] = "Code"; -$a->strings["Image"] = "Bild"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Encrypt text"] = "Text verschlüsseln"; -$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."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung"; +$a->strings["redmatrix"] = "redmatrix"; +$a->strings["Thank You,"] = "Danke."; +$a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Benachrichtigung] Neue Mail auf %s empfangen"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; +$a->strings["a private message"] = "eine private Nachricht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]a %4\$s[/zrl] kommentiert"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf Deine Pinnwand auf %3\$s geschrieben"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]Deine Pinnwand[/zrl] geschrieben"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Benachrichtigung] %s hat Dich erwähnt"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Benachrichtigung] %1\$s hat Dich angestupst"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Benachrichtigung] %s hat Deinen Beitrag getaggt"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Benachrichtigung] Vorstellung erhalten"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, Du hast eine neue Verbindungsanfrage von '%2\$s' auf %3\$s erhalten"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, Du hast [zrl=%2\$s]eine neue Verbindungsanfrage[/zrl] von %3\$s erhalten."; +$a->strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten."; +$a->strings["Name:"] = "Name:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; +$a->strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; +$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen"; +$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; +$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; +$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; +$a->strings["Room is full"] = "Der Raum ist voll"; +$a->strings["Permission denied"] = "Keine Berechtigung"; +$a->strings["(Unknown)"] = "(Unbekannt)"; +$a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; +$a->strings["Visible to you only."] = "Nur für Dich sichtbar."; +$a->strings["Visible to anybody in this network."] = "Für jedes Mitglied der RedMatrix sichtbar."; +$a->strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist."; +$a->strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar."; +$a->strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; +$a->strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; +$a->strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; +$a->strings["Item not found."] = "Element nicht gefunden."; +$a->strings["Collection not found."] = "Sammlung nicht gefunden"; +$a->strings["Collection is empty."] = "Sammlung ist leer."; +$a->strings["Collection: %s"] = "Sammlung: %s"; +$a->strings["Connection: %s"] = "Verbindung: %s"; +$a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; $a->strings["prev"] = "vorherige"; $a->strings["first"] = "erste"; $a->strings["last"] = "letzte"; @@ -487,10 +405,8 @@ $a->strings["%d Connection"] = array( 1 => "%d Verbindungen", ); $a->strings["View Connections"] = "Verbindungen anzeigen"; -$a->strings["Search"] = "Suche"; $a->strings["Save"] = "Speichern"; $a->strings["poke"] = "anstupsen"; -$a->strings["poked"] = "stupste"; $a->strings["ping"] = "anpingen"; $a->strings["pinged"] = "pingte"; $a->strings["prod"] = "knuffen"; @@ -551,106 +467,236 @@ $a->strings["Select a page layout: "] = "Ein Seiten-Layout auswählen:"; $a->strings["default"] = "Standard"; $a->strings["Page content type: "] = "Content-Typ der Seite:"; $a->strings["Select an alternate language"] = "Wähle eine alternative Sprache"; -$a->strings["photo"] = "Foto"; -$a->strings["event"] = "Ereignis"; -$a->strings["status"] = "Status"; -$a->strings["comment"] = "Kommentar"; $a->strings["activity"] = "Aktivität"; $a->strings["Design"] = "Design"; $a->strings["Blocks"] = "Blöcke"; $a->strings["Menus"] = "Menüs"; $a->strings["Layouts"] = "Layouts"; $a->strings["Pages"] = "Seiten"; -$a->strings["Sort Options"] = "Sortieroptionen"; -$a->strings["Alphabetic"] = "alphabetisch"; -$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; -$a->strings["Newest to Oldest"] = "Neueste zuerst"; -$a->strings["Enable Safe Search"] = "Sichere Suche einschalten"; -$a->strings["Disable Safe Search"] = "Sichere Suche ausschalten"; -$a->strings["Safe Mode"] = "Sicherer Modus"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["Install design element: "] = "Design-Element installieren:"; -$a->strings["QR code"] = "QR-Code"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -$a->strings["post"] = "Beitrag"; -$a->strings["$1 spoiler"] = "$1 Spoiler"; -$a->strings["$1 wrote:"] = "$1 schrieb:"; -$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung"; -$a->strings["redmatrix"] = "redmatrix"; -$a->strings["Thank You,"] = "Danke."; -$a->strings["%s Administrator"] = "der Administrator von %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Benachrichtigung] Neue Mail auf %s empfangen"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; -$a->strings["a private message"] = "eine private Nachricht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]a %4\$s[/zrl] kommentiert"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf Deine Pinnwand auf %3\$s geschrieben"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]Deine Pinnwand[/zrl] geschrieben"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Benachrichtigung] %s hat Dich erwähnt"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Benachrichtigung] %1\$s hat Dich angestupst"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Benachrichtigung] %s hat Deinen Beitrag getaggt"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Benachrichtigung] Vorstellung erhalten"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, Du hast eine neue Verbindungsanfrage von '%2\$s' auf %3\$s erhalten"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, Du hast [zrl=%2\$s]eine neue Verbindungsanfrage[/zrl] von %3\$s erhalten."; -$a->strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten."; -$a->strings["Name:"] = "Name:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; -$a->strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; -$a->strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +$a->strings["General Features"] = "Allgemeine Funktionen"; +$a->strings["Content Expiration"] = "Verfall von Inhalten"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."; +$a->strings["Multiple Profiles"] = "Mehrfachprofile"; +$a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können"; +$a->strings["Advanced Profiles"] = "Erweiterte Profile"; +$a->strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; +$a->strings["Profile Import/Export"] = "Profil-Import/Export"; +$a->strings["Save and load profile details across sites/channels"] = "Speichere Dein Profil, um es in einen anderen Kanal zu importieren"; +$a->strings["Web Pages"] = "Webseiten"; +$a->strings["Provide managed web pages on your channel"] = "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"; +$a->strings["Private Notes"] = "Private Notizen"; +$a->strings["Enables a tool to store notes and reminders"] = "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"; +$a->strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Wechsle direkt über das Navigationsmenü zu anderen Kanälen"; +$a->strings["Extended Identity Sharing"] = "Erweitertes Teilen von Identitäten"; +$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt."; +$a->strings["Expert Mode"] = "Expertenmodus"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren"; +$a->strings["Premium Channel"] = "Premium-Kanal"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht Einschränkungen und Bedingungen für Kontakte dieses Kanals"; +$a->strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; +$a->strings["Use Markdown"] = "Markdown benutzen"; +$a->strings["Allow use of \"Markdown\" to format posts"] = "Erlaube Markdown zur Formatierung von Beiträgen"; +$a->strings["Post Preview"] = "Voransicht"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"; +$a->strings["Channel Sources"] = "Kanal-Quellen"; +$a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"; +$a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)"; +$a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; +$a->strings["Search by Date"] = "Suche nach Datum"; +$a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; +$a->strings["Collections Filter"] = "Filter für Sammlung"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchanfragen"; +$a->strings["Save search terms for re-use"] = "Suchbegriffe zur Wiederverwendung abspeichern"; +$a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast"; +$a->strings["Network New Tab"] = "Netzwerkreiter Neu"; +$a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"; +$a->strings["Affinity Tool"] = "Beziehungs-Tool"; +$a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung"; +$a->strings["Suggest Channels"] = "Kanäle vorschlagen"; +$a->strings["Show channel suggestions"] = "Kanal-Vorschläge anzeigen"; +$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; +$a->strings["Edit Sent Posts"] = "Bearbeite gesendete Beiträge"; +$a->strings["Edit and correct posts and comments after sending"] = "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden"; +$a->strings["Tagging"] = "Verschlagworten"; +$a->strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten"; +$a->strings["Post Categories"] = "Beitrags-Kategorien"; +$a->strings["Add categories to your posts"] = "Kategorien für Beiträge"; +$a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; +$a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge"; +$a->strings["Ability to dislike posts/comments"] = "„Gefällt mir nicht“ ermöglichen"; +$a->strings["Star Posts"] = "Beiträge mit Sternchen versehen"; +$a->strings["Ability to mark special posts with a star indicator"] = "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"; +$a->strings["Tag Cloud"] = "Schlagwort-Wolke"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen"; +$a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; +$a->strings["Channel location missing."] = "Adresse des Kanals fehlt."; +$a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; +$a->strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; +$a->strings["Protocol disabled."] = "Protokoll deaktiviert."; +$a->strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +$a->strings["local account not found."] = "Lokales Konto nicht gefunden."; +$a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; +$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."] = "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen."; +$a->strings["Default privacy group for new contacts"] = "Standard-Sammlung für neue Kontakte"; +$a->strings["All Channels"] = "Alle Kanäle"; +$a->strings["edit"] = "Bearbeiten"; +$a->strings["Collections"] = "Sammlungen"; +$a->strings["Edit collection"] = "Sammlung bearbeiten"; +$a->strings["Create a new collection"] = "Neue Sammlung erzeugen"; +$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; +$a->strings["Empty name"] = "Namensfeld leer"; +$a->strings["Name too long"] = "Name ist zu lang"; +$a->strings["No account identifier"] = "Keine Account-Kennung"; +$a->strings["Nickname is required."] = "Spitzname ist erforderlich."; +$a->strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +$a->strings["Default Profile"] = "Standard-Profil"; +$a->strings["Friends"] = "Freunde"; +$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; +$a->strings["Change profile photo"] = "Profilfoto ändern"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/bearbeiten"; +$a->strings["Create New Profile"] = "Neues Profil erstellen"; +$a->strings["Edit Profile"] = "Profile bearbeiten"; +$a->strings["Profile Image"] = "Profilfoto:"; +$a->strings["visible to everybody"] = "sichtbar für jeden"; +$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +$a->strings["Gender:"] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Online Now"] = "gerade online"; +$a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[Heute]"; +$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:"; +$a->strings["[No description]"] = "[Keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungs- Erinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen in dieser Woche:"; +$a->strings["Full Name:"] = "Voller Name:"; +$a->strings["Like this channel"] = "Dieser Kanal gefällt mir"; +$a->strings["j F, Y"] = "j. F Y"; +$a->strings["j F"] = "j. F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +$a->strings["Hometown:"] = "Heimatstadt:"; +$a->strings["Tags:"] = "Schlagworte:"; +$a->strings["Political Views:"] = "Politische Ansichten:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["About:"] = "Über:"; +$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; +$a->strings["Likes:"] = "Gefällt:"; +$a->strings["Dislikes:"] = "Gefällt nicht:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; +$a->strings["My other channels:"] = "Meine anderen Kanäle:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Bücher, Literatur:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebe/Romantik:"; +$a->strings["Work/employment:"] = "Arbeit/Anstellung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Like this thing"] = "Gefällt mir"; +$a->strings["Apps"] = "Apps"; +$a->strings["System"] = "System"; +$a->strings["Create Personal App"] = "Persönliche App erstellen"; +$a->strings["Edit Personal App"] = "Persönliche App bearbeiten"; +$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken"; +$a->strings["Suggestions"] = "Vorschläge"; +$a->strings["See more..."] = "Mehr anzeigen …"; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"; +$a->strings["Notes"] = "Notizen"; +$a->strings["Remove term"] = "Eintrag löschen"; +$a->strings["Archives"] = "Archive"; +$a->strings["Refresh"] = "Aktualisieren"; +$a->strings["Me"] = "Ich"; +$a->strings["Best Friends"] = "Beste Freunde"; +$a->strings["Co-workers"] = "Kollegen"; +$a->strings["Former Friends"] = "ehem. Freunde"; +$a->strings["Acquaintances"] = "Bekannte"; +$a->strings["Everybody"] = "Jeder"; +$a->strings["Account settings"] = "Konto-Einstellungen"; +$a->strings["Channel settings"] = "Kanal-Einstellungen"; +$a->strings["Additional features"] = "Zusätzliche Funktionen"; +$a->strings["Feature settings"] = "Funktions-Einstellungen"; +$a->strings["Display settings"] = "Anzeige-Einstellungen"; +$a->strings["Connected apps"] = "Verbundene Apps"; +$a->strings["Export channel"] = "Kanal exportieren"; +$a->strings["Export content"] = "Kanal-Inhalte exportieren"; +$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)"; +$a->strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Check Mail"] = "E-Mails abrufen"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["Chat Rooms"] = "Chaträume"; +$a->strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +$a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +$a->strings["New window"] = "Neues Fenster"; +$a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"; +$a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; +$a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["never"] = "Nie"; +$a->strings["less than a second ago"] = "Vor weniger als einer Sekunde"; +$a->strings["year"] = "Jahr"; +$a->strings["years"] = "Jahre"; +$a->strings["month"] = "Monat"; +$a->strings["months"] = "Monate"; +$a->strings["week"] = "Woche"; +$a->strings["weeks"] = "Wochen"; +$a->strings["day"] = "Tag"; +$a->strings["days"] = "Tage"; +$a->strings["hour"] = "Stunde"; +$a->strings["hours"] = "Stunden"; +$a->strings["minute"] = "Minute"; +$a->strings["minutes"] = "Minuten"; +$a->strings["second"] = "Sekunde"; +$a->strings["seconds"] = "Sekunden"; +$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +$a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +$a->strings["No recipient provided."] = "Kein Empfänger angegeben"; +$a->strings["[no subject]"] = "[no subject]"; +$a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; +$a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +$a->strings["Logout"] = "Abmelden"; $a->strings["End this session"] = "Beende diese Sitzung"; $a->strings["Home"] = "Home"; $a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["View Profile"] = "Profil ansehen"; $a->strings["Your profile page"] = "Deine Profilseite"; $a->strings["Edit Profiles"] = "Profile bearbeiten"; $a->strings["Manage/Edit profiles"] = "Profile verwalten"; $a->strings["Edit your profile"] = "Profil bearbeiten"; -$a->strings["Photos"] = "Fotos"; $a->strings["Your photos"] = "Deine Bilder"; $a->strings["Your files"] = "Deine Dateien"; -$a->strings["Chat"] = "Chat"; $a->strings["Your chatrooms"] = "Deine Chaträume"; -$a->strings["Bookmarks"] = "Lesezeichen"; $a->strings["Your bookmarks"] = "Deine Lesezeichen"; -$a->strings["Webpages"] = "Webseiten"; $a->strings["Your webpages"] = "Deine Webseiten"; $a->strings["Sign in"] = "Anmelden"; $a->strings["%s - click to logout"] = "%s - Klick zum Abmelden"; $a->strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; $a->strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; $a->strings["Home Page"] = "Homepage"; +$a->strings["Register"] = "Registrieren"; $a->strings["Create an account"] = "Erzeuge ein Konto"; -$a->strings["Help"] = "Hilfe"; $a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Apps"] = "Apps"; $a->strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; $a->strings["Search site content"] = "Durchsuche Seiten-Inhalt"; -$a->strings["Directory"] = "Verzeichnis"; $a->strings["Channel Locator"] = "Kanal-Verzeichnis"; -$a->strings["Matrix"] = "Matrix"; $a->strings["Your matrix"] = "Deine Matrix"; $a->strings["Mark all matrix notifications seen"] = "Markiere alle Matrix-Benachrichtigungen als angesehen"; -$a->strings["Channel Home"] = "Mein Kanal"; $a->strings["Channel home"] = "Mein Kanal"; $a->strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; $a->strings["Connections"] = "Verbindungen"; @@ -658,249 +704,231 @@ $a->strings["Notices"] = "Benachrichtigungen"; $a->strings["Notifications"] = "Benachrichtigungen"; $a->strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; $a->strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; -$a->strings["Mail"] = "Mail"; $a->strings["Private mail"] = "Persönliche Mail"; $a->strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; $a->strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; $a->strings["Inbox"] = "Eingang"; $a->strings["Outbox"] = "Ausgang"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["Events"] = "Veranstaltungen"; $a->strings["Event Calendar"] = "Veranstaltungskalender"; -$a->strings["See all events"] = "Alle Ereignisse ansehen"; -$a->strings["Mark all events seen"] = "Markiere alle Ereignisse als gesehen"; -$a->strings["Channel Manager"] = "Kanal-Manager"; -$a->strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -$a->strings["Admin"] = "Administration"; -$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -$a->strings["Loading..."] = "Lädt ..."; -$a->strings["Please wait..."] = "Bitte warten..."; -$a->strings["General Features"] = "Allgemeine Funktionen"; -$a->strings["Content Expiration"] = "Verfall von Inhalten"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."; -$a->strings["Multiple Profiles"] = "Mehrfachprofile"; -$a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können"; -$a->strings["Advanced Profiles"] = "Erweiterte Profile"; -$a->strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; -$a->strings["Profile Import/Export"] = "Profil-Import/Export"; -$a->strings["Save and load profile details across sites/channels"] = "Speichere Dein Profil, um es in einen anderen Kanal zu importieren"; -$a->strings["Web Pages"] = "Webseiten"; -$a->strings["Provide managed web pages on your channel"] = "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"; -$a->strings["Private Notes"] = "Private Notizen"; -$a->strings["Enables a tool to store notes and reminders"] = "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"; -$a->strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; -$a->strings["Change channels directly from within the navigation dropdown menu"] = "Wechsle direkt über das Navigationsmenü zu anderen Kanälen"; -$a->strings["Extended Identity Sharing"] = "Erweitertes Teilen von Identitäten"; -$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt."; -$a->strings["Expert Mode"] = "Expertenmodus"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren"; -$a->strings["Premium Channel"] = "Premium-Kanal"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht Einschränkungen und Bedingungen für Kontakte dieses Kanals"; -$a->strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; -$a->strings["Use Markdown"] = "Markdown benutzen"; -$a->strings["Allow use of \"Markdown\" to format posts"] = "Erlaube Markdown zur Formatierung von Beiträgen"; -$a->strings["Post Preview"] = "Voransicht"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"; -$a->strings["Channel Sources"] = "Kanal-Quellen"; -$a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"; -$a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)"; -$a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; -$a->strings["Search by Date"] = "Suche nach Datum"; -$a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; -$a->strings["Collections Filter"] = "Filter für Sammlung"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchanfragen"; -$a->strings["Save search terms for re-use"] = "Suchbegriffe zur Wiederverwendung abspeichern"; -$a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast"; -$a->strings["Network New Tab"] = "Netzwerkreiter Neu"; -$a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"; -$a->strings["Affinity Tool"] = "Beziehungs-Tool"; -$a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung"; -$a->strings["Suggest Channels"] = "Kanäle vorschlagen"; -$a->strings["Show channel suggestions"] = "Kanal-Vorschläge anzeigen"; -$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; -$a->strings["Edit Sent Posts"] = "Bearbeite gesendete Beiträge"; -$a->strings["Edit and correct posts and comments after sending"] = "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden"; -$a->strings["Tagging"] = "Verschlagworten"; -$a->strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten"; -$a->strings["Post Categories"] = "Beitrags-Kategorien"; -$a->strings["Add categories to your posts"] = "Kategorien für Beiträge"; -$a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; -$a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge"; -$a->strings["Ability to dislike posts/comments"] = "„Gefällt mir nicht“ ermöglichen"; -$a->strings["Star Posts"] = "Beiträge mit Sternchen versehen"; -$a->strings["Ability to mark special posts with a star indicator"] = "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"; -$a->strings["Tag Cloud"] = "Schlagwort-Wolke"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen"; -$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; -$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; -$a->strings["Site Admin"] = "Hub-Administration"; -$a->strings["Address Book"] = "Adressbuch"; -$a->strings["Mood"] = "Laune"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["Probe"] = "Testen"; -$a->strings["Suggest"] = "Empfehlungen"; -$a->strings["Random Channel"] = "Zufälliger Kanal"; -$a->strings["Invite"] = "Einladen"; -$a->strings["Features"] = "Funktionen"; -$a->strings["Language"] = "Sprache"; -$a->strings["Post"] = "Beitrag"; -$a->strings["Profile Photo"] = "Profilfoto"; -$a->strings["Update"] = "Aktualisieren"; -$a->strings["Install"] = "Installieren"; -$a->strings["Purchase"] = "Kaufen"; -$a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; -$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen"; -$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; -$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; -$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; -$a->strings["Room is full"] = "Der Raum ist voll"; -$a->strings["channel"] = "Kanal"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; -$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; -$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; -$a->strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Gespeichert unter:"; -$a->strings["View in context"] = "Im Zusammenhang anschauen"; -$a->strings["remove"] = "lösche"; -$a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; -$a->strings["View Source"] = "Quelle anzeigen"; -$a->strings["Follow Thread"] = "Unterhaltung folgen"; -$a->strings["View Status"] = "Status ansehen"; -$a->strings["View Photos"] = "Fotos ansehen"; -$a->strings["Matrix Activity"] = "Matrix-Aktivität"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Send PM"] = "Sende PN"; -$a->strings["%s likes this."] = "%s gefällt das."; -$a->strings["%s doesn't like this."] = "%s gefällt das nicht."; -$a->strings["%2\$d people like this."] = array( - 0 => "%2\$d Person gefällt das.", - 1 => "%2\$d Leuten gefällt das.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "%2\$d Person gefällt das nicht.", - 1 => "%2\$d Leuten gefällt das nicht.", -); -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = array( - 0 => "", - 1 => ", und %d andere", -); -$a->strings["%s like this."] = "%s gefällt das."; -$a->strings["%s don't like this."] = "%s gefällt das nicht."; -$a->strings["Visible to everybody"] = "Sichtbar für jeden"; -$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; -$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; -$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; -$a->strings["Tag term:"] = "Schlagwort:"; -$a->strings["Save to Folder:"] = "Speichern in Ordner:"; -$a->strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -$a->strings["Share"] = "Teilen"; -$a->strings["Page link title"] = "Seitentitel-Link"; -$a->strings["Post as"] = "Posten als"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["upload photo"] = "Foto hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anfügen"; -$a->strings["Insert web link"] = "Link einfügen"; -$a->strings["web link"] = "Web-Link"; -$a->strings["Insert video link"] = "Video-Link einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Link einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Standort"; -$a->strings["set location"] = "Standort"; -$a->strings["Clear browser location"] = "Browser-Standort löschen"; -$a->strings["clear location"] = "Standort löschen"; -$a->strings["Set title"] = "Titel"; -$a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; -$a->strings["Permission settings"] = "Berechtigungs-Einstellungen"; -$a->strings["permissions"] = "Berechtigungen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com"; -$a->strings["Set expiration date"] = "Verfallsdatum"; -$a->strings["OK"] = "Ok"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["Discover"] = "Entdecken"; -$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; -$a->strings["Commented Order"] = "Neueste Kommentare"; -$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; -$a->strings["Posted Order"] = "Neueste Beiträge"; -$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; -$a->strings["Personal"] = "Persönlich"; -$a->strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; -$a->strings["New"] = "Neu"; -$a->strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; -$a->strings["Starred"] = "Markiert"; -$a->strings["Favourite Posts"] = "Markierte Beiträge"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; -$a->strings["Channel"] = "Kanal"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["About"] = "Über"; -$a->strings["Profile Details"] = "Profil-Details"; -$a->strings["Files and Storage"] = "Dateien und Speicher"; -$a->strings["Chatrooms"] = "Chaträume"; -$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -$a->strings["Manage Webpages"] = "Webseiten verwalten"; -$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["See all events"] = "Alle Ereignisse ansehen"; +$a->strings["Mark all events seen"] = "Markiere alle Ereignisse als gesehen"; +$a->strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; +$a->strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +$a->strings["Admin"] = "Administration"; +$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +$a->strings["Please wait..."] = "Bitte warten..."; +$a->strings["view full size"] = "In Vollbildansicht anschauen"; +$a->strings["Invalid data packet"] = "Ungültiges Datenpaket"; +$a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; +$a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; $a->strings["Visible to your default audience"] = "Standard-Sichtbarkeit"; $a->strings["Show"] = "Zeigen"; $a->strings["Don't show"] = "Nicht zeigen"; $a->strings["Permissions"] = "Berechtigungen"; -$a->strings["System"] = "System"; -$a->strings["Create Personal App"] = "Persönliche App erstellen"; -$a->strings["Edit Personal App"] = "Persönliche App bearbeiten"; -$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken"; -$a->strings["Suggestions"] = "Vorschläge"; -$a->strings["See more..."] = "Mehr anzeigen …"; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"; -$a->strings["Notes"] = "Notizen"; -$a->strings["Remove term"] = "Eintrag löschen"; -$a->strings["Archives"] = "Archive"; -$a->strings["Refresh"] = "Aktualisieren"; -$a->strings["Me"] = "Ich"; -$a->strings["Best Friends"] = "Beste Freunde"; -$a->strings["Co-workers"] = "Kollegen"; -$a->strings["Former Friends"] = "ehem. Freunde"; -$a->strings["Acquaintances"] = "Bekannte"; -$a->strings["Everybody"] = "Jeder"; -$a->strings["Account settings"] = "Konto-Einstellungen"; -$a->strings["Channel settings"] = "Kanal-Einstellungen"; -$a->strings["Additional features"] = "Zusätzliche Funktionen"; -$a->strings["Feature settings"] = "Funktions-Einstellungen"; -$a->strings["Display settings"] = "Anzeige-Einstellungen"; -$a->strings["Connected apps"] = "Verbundene Apps"; -$a->strings["Export channel"] = "Kanal exportieren"; -$a->strings["Export content"] = "Kanal-Inhalte exportieren"; -$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)"; -$a->strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Check Mail"] = "E-Mails abrufen"; -$a->strings["Chat Rooms"] = "Chaträume"; -$a->strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -$a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -$a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; -$a->strings["Channel location missing."] = "Adresse des Kanals fehlt."; -$a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; -$a->strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; -$a->strings["Protocol disabled."] = "Protokoll deaktiviert."; -$a->strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -$a->strings["local account not found."] = "Lokales Konto nicht gefunden."; -$a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; -$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; +$a->strings["Close"] = "Schließen"; +$a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes"; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; +$a->strings["Photo storage failed."] = "Foto speichern schlug fehl"; +$a->strings["Upload New Photos"] = "Lade neue Fotos hoch"; +$a->strings["Delete this item?"] = "Dieses Element löschen?"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["[+] show all"] = "[+] Zeige alle"; +$a->strings["[-] show less"] = "[-] zeige weniger"; +$a->strings["[+] expand"] = "[+] aufklappen"; +$a->strings["[-] collapse"] = "[-] einklappen"; +$a->strings["Password too short"] = "Kennwort zu kurz"; +$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; +$a->strings["everybody"] = "alle"; +$a->strings["Secret Passphrase"] = "geheime Passphrase"; +$a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; +$a->strings["close all"] = "Alle schließen"; +$a->strings["Nothing new here"] = "Nichts Neues hier"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = " "; +$a->strings["ago"] = "her"; +$a->strings["from now"] = "von jetzt"; +$a->strings["less than a minute"] = "weniger als eine Minute"; +$a->strings["about a minute"] = "ungefähr eine Minute"; +$a->strings["%d minutes"] = "%d Minuten"; +$a->strings["about an hour"] = "ungefähr eine Stunde"; +$a->strings["about %d hours"] = "ungefähr %d Stunden"; +$a->strings["a day"] = "ein Tag"; +$a->strings["%d days"] = "%d Tage"; +$a->strings["about a month"] = "ungefähr ein Monat"; +$a->strings["%d months"] = "%d Monate"; +$a->strings["about a year"] = "ungefähr ein Jahr"; +$a->strings["%d years"] = "%d Jahre"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["Male"] = "Männlich"; +$a->strings["Female"] = "Weiblich"; +$a->strings["Currently Male"] = "Momentan männlich"; +$a->strings["Currently Female"] = "Momentan weiblich"; +$a->strings["Mostly Male"] = "Größtenteils männlich"; +$a->strings["Mostly Female"] = "Größtenteils weiblich"; +$a->strings["Transgender"] = "Transsexuell"; +$a->strings["Intersex"] = "Zwischengeschlechtlich"; +$a->strings["Transsexual"] = "Transsexuell"; +$a->strings["Hermaphrodite"] = "Zwitter"; +$a->strings["Neuter"] = "Geschlechtslos"; +$a->strings["Non-specific"] = "unklar"; +$a->strings["Undecided"] = "Unentschieden"; +$a->strings["Males"] = "Männer"; +$a->strings["Females"] = "Frauen"; +$a->strings["Gay"] = "Schwul"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Keine Bevorzugung"; +$a->strings["Bisexual"] = "Bisexuell"; +$a->strings["Autosexual"] = "Autosexuell"; +$a->strings["Abstinent"] = "Enthaltsam"; +$a->strings["Virgin"] = "Jungfräulich"; +$a->strings["Deviant"] = "Abweichend"; +$a->strings["Fetish"] = "Fetisch"; +$a->strings["Oodles"] = "Unmengen"; +$a->strings["Nonsexual"] = "Sexlos"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Einsam"; +$a->strings["Available"] = "Verfügbar"; +$a->strings["Unavailable"] = "Nicht verfügbar"; +$a->strings["Has crush"] = "Verguckt"; +$a->strings["Infatuated"] = "Verknallt"; +$a->strings["Dating"] = "Lerne gerade jemanden kennen"; +$a->strings["Unfaithful"] = "Treulos"; +$a->strings["Sex Addict"] = "Sexabhängig"; +$a->strings["Friends/Benefits"] = "Freunde/Begünstigte"; +$a->strings["Casual"] = "Lose"; +$a->strings["Engaged"] = "Verlobt"; +$a->strings["Married"] = "Verheiratet"; +$a->strings["Imaginarily married"] = "Gewissermaßen verheiratet"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "Lebensgemeinschaft"; +$a->strings["Common law"] = "Informelle Ehe"; +$a->strings["Happy"] = "Glücklich"; +$a->strings["Not looking"] = "Nicht Ausschau haltend"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrogen"; +$a->strings["Separated"] = "Getrennt"; +$a->strings["Unstable"] = "Labil"; +$a->strings["Divorced"] = "Geschieden"; +$a->strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; +$a->strings["Widowed"] = "Verwitwet"; +$a->strings["Uncertain"] = "Ungewiss"; +$a->strings["It's complicated"] = "Es ist kompliziert"; +$a->strings["Don't care"] = "Interessiert mich nicht"; +$a->strings["Ask me"] = "Frag mich mal"; +$a->strings["Save to Folder"] = "In Ordner speichern"; +$a->strings["View all"] = "Alles anzeigen"; +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "Gefällt nicht", + 1 => "Gefällt nicht", +); +$a->strings["Add Star"] = "Stern hinzufügen"; +$a->strings["Remove Star"] = "Stern entfernen"; +$a->strings["Toggle Star Status"] = "Stern-Status umschalten"; +$a->strings["starred"] = "markiert"; +$a->strings["Add Tag"] = "Tag hinzufügen"; +$a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; +$a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; +$a->strings["Share This"] = "Teilen"; +$a->strings["share"] = "Teilen"; +$a->strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s"; +$a->strings["to"] = "an"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["Save Bookmarks"] = "Favoriten speichern"; +$a->strings["Add to Calendar"] = "Zum Kalender hinzufügen"; +$a->strings["__ctx:noun__ Likes"] = "Gefällt mir"; +$a->strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; +$a->strings["%d comment"] = array( + 0 => "%d Kommentar", + 1 => "%d Kommentare", +); +$a->strings["This is you"] = "Das bist Du"; +$a->strings["Submit"] = "Bestätigen"; +$a->strings["Bold"] = "Fett"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Unterstrichen"; +$a->strings["Quote"] = "Zitat"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Bild"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; +$a->strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; +$a->strings["No photos selected"] = "Keine Fotos ausgewählt"; +$a->strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; +$a->strings["Upload Photos"] = "Fotos hochladen"; +$a->strings["Enter a new album name or select an existing one:"] = "Gib einen neuen Albumnamen ein oder wähle einen bereits existierenden:"; +$a->strings["Do not show a status post for this upload"] = "Keine Statusnachricht für diesen Upload senden"; +$a->strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; +$a->strings["Contact Photos"] = "Kontakt-Bilder"; +$a->strings["New album name: "] = "Name des neuen Albums:"; +$a->strings["Show Newest First"] = "Zeige Neueste zuerst"; +$a->strings["Show Oldest First"] = "Zeige Älteste zuerst"; +$a->strings["View Photo"] = "Foto ansehen"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["Use as profile photo"] = "Als Profilfoto verwenden"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Previous"] = "Voriges"; +$a->strings["View Full Size"] = "In voller Größe anzeigen"; +$a->strings["Next"] = "Nächste"; +$a->strings["Remove"] = "Entferne"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; +$a->strings["New album name"] = "Name des neuen Albums:"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Schlagwort hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; +$a->strings["In This Photo:"] = "Auf diesem Foto:"; +$a->strings["View Album"] = "Album ansehen"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["Menu not found."] = "Menü nicht gefunden"; +$a->strings["Menu element updated."] = "Menü-Element aktualisiert."; +$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; +$a->strings["Menu element added."] = "Menü-Bestandteil hinzugefügt."; +$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; +$a->strings["Not found."] = "Nicht gefunden."; +$a->strings["Manage Menu Elements"] = "Menü-Bestandteile verwalten"; +$a->strings["Edit menu"] = "Menü bearbeiten"; +$a->strings["Edit element"] = "Bestandteil bearbeiten"; +$a->strings["Drop element"] = "Bestandteil löschen"; +$a->strings["New element"] = "Neues Bestandteil"; +$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; +$a->strings["Add menu element"] = "Menüelement hinzufügen"; +$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; +$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; +$a->strings["New Menu Element"] = "Neues Menü-Bestandteil"; +$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; +$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; +$a->strings["Link text"] = "Link Text"; +$a->strings["URL of link"] = "URL des Links"; +$a->strings["Use Red magic-auth if available"] = "Verwende Red Magic-Auth wenn verfügbar"; +$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; +$a->strings["Order in list"] = "Reihenfolge in der Liste"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; +$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; +$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; +$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; +$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; +$a->strings["Modify"] = "Ändern"; +$a->strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; +$a->strings["sent you a private message"] = "eine private Nachricht schicken"; +$a->strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +$a->strings["posted an event"] = "hat eine Veranstaltung veröffentlicht"; +$a->strings["network"] = "Netzwerk"; $a->strings["Name is required"] = "Name ist erforderlich"; $a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; $a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; @@ -992,7 +1020,7 @@ $a->strings["0 or blank prevents expiration"] = "0 oder kein Inhalt verhindern d $a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; $a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; $a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte"; -$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; +$a->strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; $a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; $a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; $a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen"; @@ -1015,195 +1043,192 @@ $a->strings["Please enable expert mode (in Setting $a->strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; $a->strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals"; $a->strings["Remove this channel"] = "Diesen Kanal löschen"; -$a->strings["Permission Denied."] = "Zugriff verweigert."; -$a->strings["File not found."] = "Datei nicht gefunden."; -$a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; -$a->strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; -$a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; -$a->strings["Return to file list"] = "Zurück zur Dateiliste"; -$a->strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; -$a->strings["Red Matrix - "The Network""] = "RedMatrix – "Das Netzwerk""; -$a->strings["Welcome to %s"] = "Willkommen auf %s"; +$a->strings["Poke/Prod"] = "Anstupsen/Knuffen"; +$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; +$a->strings["Recipient"] = "Empfänger"; +$a->strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; +$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; +$a->strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; +$a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; +$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; +$a->strings["Item not available."] = "Element nicht verfügbar."; $a->strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; -$a->strings["Add a Channel"] = "Kanal hinzufügen"; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt."; -$a->strings["Channel Name"] = "Name des Kanals"; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; -$a->strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."; -$a->strings["Or import an existing channel from another location"] = "Oder importiere einen bestehenden Kanal von einem anderen Server"; -$a->strings["Channel Type"] = "Kanaltyp"; -$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"] = "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; -$a->strings["The error message was:"] = "Die Fehlermeldung war:"; -$a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; -$a->strings["Remote Authentication"] = "Entfernte Authentifizierung"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; -$a->strings["Authenticate"] = "Authentifizieren"; -$a->strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; -$a->strings["Site"] = "Seite"; -$a->strings["Accounts"] = "Konten"; -$a->strings["Channels"] = "Kanäle"; -$a->strings["Plugins"] = "Plug-Ins"; -$a->strings["Themes"] = "Themes"; -$a->strings["Server"] = "Server"; -$a->strings["Profile Config"] = "Profilkonfiguration"; -$a->strings["DB updates"] = "DB-Aktualisierungen"; -$a->strings["Logs"] = "Protokolle"; -$a->strings["Plugin Features"] = "Plug-In Funktionen"; -$a->strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; -$a->strings["Message queues"] = "Nachrichten-Warteschlangen"; -$a->strings["Administration"] = "Administration"; -$a->strings["Summary"] = "Zusammenfassung"; -$a->strings["Registered users"] = "Registrierte Benutzer"; -$a->strings["Pending registrations"] = "Ausstehende Registrierungen"; -$a->strings["Version"] = "Version"; -$a->strings["Active plugins"] = "Aktive Plug-Ins"; -$a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; -$a->strings["No special theme for accessibility"] = "Kein spezielles Accessibility-Theme vorhanden"; -$a->strings["Yes - with approval"] = "Ja - mit Zustimmung"; -$a->strings["My site is not a public server"] = "Meine Server ist kein öffentlicher Server"; -$a->strings["My site has paid access only"] = "Mein Server erlaubt nur bezahlten Zugang"; -$a->strings["My site has free access only"] = "Mein Server erlaubt ausschließlich freien Zugang"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; -$a->strings["Registration"] = "Registrierung"; -$a->strings["File upload"] = "Dateiupload"; -$a->strings["Policies"] = "Richtlinien"; -$a->strings["Site name"] = "Seitenname"; -$a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["Administrator Information"] = "Administrator-Informationen"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; -$a->strings["System language"] = "System-Sprache"; -$a->strings["System theme"] = "System-Theme"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; -$a->strings["Mobile system theme"] = "Mobile System-Theme:"; -$a->strings["Theme for mobile devices"] = "Theme für mobile Geräte"; -$a->strings["Accessibility system theme"] = "Accessibility-System-Theme"; -$a->strings["Accessibility theme"] = "Accessibility-Theme"; -$a->strings["Enable Diaspora Protocol"] = "Diaspora-Protokoll aktivieren"; -$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Kommunikation mit Diaspora und Friendica – experimentell"; -$a->strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; -$a->strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; -$a->strings["Maximum image size"] = "Maximale Bildgröße"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; -$a->strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; -$a->strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; -$a->strings["Register text"] = "Registrierungstext"; -$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; -$a->strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; -$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -$a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."; -$a->strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; -$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; -$a->strings["Force publish"] = "Veröffentlichung erzwingen"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; -$a->strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden"; -$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte von anderen RedMatrix-Hubs angezeigt werden können."; -$a->strings["No login on Homepage"] = "Kein Login auf der Homepage"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)."; -$a->strings["Proxy user"] = "Proxy Benutzer"; -$a->strings["Proxy URL"] = "Proxy URL"; -$a->strings["Network timeout"] = "Netzwerk-Timeout"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; -$a->strings["Delivery interval"] = "Auslieferung Intervall"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; -$a->strings["Poll interval"] = "Abfrageintervall"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; -$a->strings["Maximum Load Average"] = "Maximales Load Average"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; -$a->strings["No server found"] = "Kein Server gefunden"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "für Kanal"; -$a->strings["on server"] = "auf Server"; -$a->strings["Status"] = "Status"; -$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; -$a->strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; -$a->strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; -$a->strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; -$a->strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; -$a->strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; -$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; -$a->strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s Nutzer blockiert/freigegeben", - 1 => "%s Nutzer blockiert/freigegeben", -); -$a->strings["%s user deleted"] = array( - 0 => "%s Nutzer gelöscht", - 1 => "%s Nutzer gelöscht", -); -$a->strings["Account not found"] = "Konto nicht gefunden"; -$a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben"; -$a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert"; -$a->strings["Users"] = "Benutzer"; -$a->strings["select all"] = "Alle auswählen"; -$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; -$a->strings["Request date"] = "Antragsdatum"; -$a->strings["No registrations."] = "Keine Registrierungen."; -$a->strings["Approve"] = "Genehmigen"; -$a->strings["Deny"] = "Verweigern"; -$a->strings["Block"] = "Blockieren"; -$a->strings["Unblock"] = "Freigeben"; -$a->strings["Register date"] = "Registrierungs-Datum"; -$a->strings["Last login"] = "Letzte Anmeldung"; -$a->strings["Expires"] = "Verfällt"; -$a->strings["Service Class"] = "Service-Klasse"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; -$a->strings["%s channel censored/uncensored"] = array( - 0 => "%s Kanal gesperrt/freigegeben", - 1 => "%s Kanäle gesperrt/freigegeben", -); -$a->strings["%s channel deleted"] = array( - 0 => "%s Kanal gelöscht", - 1 => "%s Kanäle gelöscht", -); -$a->strings["Channel not found"] = "Kanal nicht gefunden"; -$a->strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; -$a->strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; -$a->strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; -$a->strings["Censor"] = "Sperren"; -$a->strings["Uncensor"] = "Freigeben"; -$a->strings["UID"] = "UID"; +$a->strings["Invalid item."] = "Ungültiges Element."; +$a->strings["Channel not found."] = "Kanal nicht gefunden."; +$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["Version %s"] = "Version %s"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; +$a->strings["Red"] = "Red"; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; +$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Besuche GetZot.com, um mehr über die Red-Matrix zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; +$a->strings["Site Administrators"] = "Administratoren"; +$a->strings["Block Name"] = "Block-Name"; +$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["Profile deleted."] = "Profil gelöscht."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Neues Profil erstellt."; +$a->strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; +$a->strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; +$a->strings["Profile Name is required."] = "Profil-Name erforderlich."; +$a->strings["Marital Status"] = "Familienstand"; +$a->strings["Romantic Partner"] = "Romantische Partner"; +$a->strings["Likes"] = "Gefällt"; +$a->strings["Dislikes"] = "Gefällt nicht"; +$a->strings["Work/Employment"] = "Arbeit/Anstellung"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Politische Ansichten"; +$a->strings["Gender"] = "Geschlecht"; +$a->strings["Sexual Preference"] = "Sexuelle Orientierung"; +$a->strings["Homepage"] = "Webseite"; +$a->strings["Interests"] = "Hobbys/Interessen"; $a->strings["Address"] = "Adresse"; -$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; -$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; -$a->strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; -$a->strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; -$a->strings["Disable"] = "Deaktivieren"; -$a->strings["Enable"] = "Aktivieren"; -$a->strings["Toggle"] = "Umschalten"; -$a->strings["Author: "] = "Autor: "; -$a->strings["Maintainer: "] = "Betreuer:"; -$a->strings["No themes found."] = "Keine Theme gefunden."; -$a->strings["Screenshot"] = "Bildschirmfoto"; -$a->strings["[Experimental]"] = "[Experimentell]"; -$a->strings["[Unsupported]"] = "[Nicht unterstützt]"; -$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; -$a->strings["Clear"] = "Leeren"; -$a->strings["Debugging"] = "Debugging"; -$a->strings["Log file"] = "Protokolldatei"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."; -$a->strings["Log level"] = "Protokollstufe"; -$a->strings["New Profile Field"] = "Neues Profilfeld"; -$a->strings["Field nickname"] = "Kurzname für das Feld"; -$a->strings["System name of field"] = "Systemname des Feldes"; -$a->strings["Input type"] = "Art des Inhalts"; -$a->strings["Field Name"] = "Feldname"; -$a->strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; -$a->strings["Help text"] = "Hilfetext"; -$a->strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; -$a->strings["Field definition not found"] = "Feld-Definition nicht gefunden"; -$a->strings["Edit Profile Field"] = "Profilfeld bearbeiten"; -$a->strings["- select -"] = "– auswählen –"; +$a->strings["Location"] = "Ort"; +$a->strings["Profile updated."] = "Profil aktualisiert."; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"; +$a->strings["Edit Profile Details"] = "Bearbeite Profil-Details"; +$a->strings["View this profile"] = "Dieses Profil ansehen"; +$a->strings["Change Profile Photo"] = "Profilfoto ändern"; +$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; +$a->strings["Clone this profile"] = "Dieses Profil klonen"; +$a->strings["Delete this profile"] = "Dieses Profil löschen"; +$a->strings["Import profile from file"] = "Profil aus einer Datei importieren"; +$a->strings["Export profile to file"] = "Profil in eine Datei exportieren"; +$a->strings["Profile Name:"] = "Profilname:"; +$a->strings["Your Full Name:"] = "Dein voller Name:"; +$a->strings["Title/Description:"] = "Titel/Stellenbeschreibung:"; +$a->strings["Your Gender:"] = "Dein Geschlecht:"; +$a->strings["Birthday :"] = "Geburtstag:"; +$a->strings["Street Address:"] = "Straße und Hausnummer:"; +$a->strings["Locality/City:"] = "Wohnort:"; +$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Region/Bundesstaat:"; +$a->strings[" Marital Status:"] = " Beziehungsstatus:"; +$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Seit [Datum]:"; +$a->strings["Homepage URL:"] = "Homepage URL:"; +$a->strings["Religious Views:"] = "Religiöse Ansichten:"; +$a->strings["Keywords:"] = "Schlüsselwörter:"; +$a->strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; +$a->strings["Used in directory listings"] = "Wird in Verzeichnis-Auflistungen verwendet"; +$a->strings["Tell us about yourself..."] = "Erzähle uns ein wenig von Dir …"; +$a->strings["Hobbies/Interests"] = "Hobbys/Interessen"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformation und soziale Netzwerke"; +$a->strings["My other channels"] = "Meine anderen Kanäle"; +$a->strings["Musical interests"] = "Musikalische Interessen"; +$a->strings["Books, literature"] = "Bücher, Literatur"; +$a->strings["Television"] = "Fernsehen"; +$a->strings["Film/dance/culture/entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; +$a->strings["Love/romance"] = "Liebe/Romantik"; +$a->strings["Work/employment"] = "Arbeit/Anstellung"; +$a->strings["School/education"] = "Schule/Ausbildung"; +$a->strings["This is your default profile."] = "Das ist Dein Standardprofil"; +$a->strings["Age: "] = "Alter:"; +$a->strings["Edit/Manage Profiles"] = "Profile bearbeiten/verwalten"; +$a->strings["Add profile things"] = "Sachen zum Profil hinzufügen"; +$a->strings["Include desirable objects in your profile"] = "Binde begehrenswerte Dinge in Dein Profil ein"; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; +$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; +$a->strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; +$a->strings["Visible To"] = "Sichtbar für"; +$a->strings["All Connections"] = "Alle Verbindungen"; +$a->strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; +$a->strings["Event title and start time are required."] = "Veranstaltungs- Titel und Startzeit sind erforderlich."; +$a->strings["Event not found."] = "Termin nicht gefunden."; +$a->strings["l, F j"] = "l, j. F"; +$a->strings["Edit event"] = "Veranstaltung bearbeiten"; +$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; +$a->strings["Event details"] = "Veranstaltungs-Details"; +$a->strings["Starting date and Title are required."] = "Startdatum und Titel sind erforderlich."; +$a->strings["Event Starts:"] = "Veranstaltung startet:"; +$a->strings["Required"] = "Benötigt"; +$a->strings["Finish date/time is not known or not relevant"] = "Ende Datum/Zeit sind unbekannt oder unwichtig"; +$a->strings["Event Finishes:"] = "Veranstaltung endet:"; +$a->strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; +$a->strings["Description:"] = "Beschreibung:"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Die Veranstaltung teilen"; +$a->strings["Public Sites"] = "Öffentliche Server"; +$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen."; +$a->strings["Site URL"] = "Server-URL"; +$a->strings["Access Type"] = "Zugangstyp"; +$a->strings["Registration Policy"] = "Registrierungsrichtlinien"; +$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; +$a->strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; +$a->strings["Save Bookmark"] = "Lesezeichen speichern"; +$a->strings["URL of bookmark"] = "URL des Lesezeichens"; +$a->strings["Description"] = "Beschreibung"; +$a->strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; +$a->strings["Room not found"] = "Chatraum nicht gefunden"; +$a->strings["Leave Room"] = "Raum verlassen"; +$a->strings["Delete This Room"] = "Diesen Raum löschen"; +$a->strings["I am away right now"] = "Ich bin gerade nicht da"; +$a->strings["I am online"] = "Ich bin online"; +$a->strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; +$a->strings["New Chatroom"] = "Neuer Chatraum"; +$a->strings["Chatroom Name"] = "Name des Chatraums"; +$a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; +$a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; +$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["Terms of Service"] = "Nutzungsbedingungen"; +$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; +$a->strings["Registration"] = "Registrierung"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; +$a->strings["Your email address"] = "Ihre E-Mail Adresse"; +$a->strings["Choose a password"] = "Passwort"; +$a->strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; +$a->strings["Away"] = "Abwesend"; +$a->strings["Online"] = "Online"; +$a->strings["Please login."] = "Bitte melde dich an."; +$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; +$a->strings["Remove This Channel"] = "Diesen Kanal löschen"; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet kann dieser Prozess nicht rückgängig gemacht werden."; +$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; +$a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; +$a->strings["Remove Channel"] = "Kanal löschen"; +$a->strings["No channel."] = "Kein Kanal."; +$a->strings["Common connections"] = "Gemeinsame Verbindungen"; +$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; +$a->strings["The error message was:"] = "Die Fehlermeldung war:"; +$a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; +$a->strings["Remote Authentication"] = "Entfernte Authentifizierung"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; +$a->strings["Authenticate"] = "Authentifizieren"; +$a->strings["Continue"] = "Fortfahren"; +$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; +$a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; +$a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; +$a->strings["No such group"] = "Sammlung nicht gefunden"; +$a->strings["Search Results For:"] = "Suchergebnisse für:"; +$a->strings["Collection is empty"] = "Sammlung ist leer"; +$a->strings["Collection: "] = "Sammlung:"; +$a->strings["Connection: "] = "Verbindung:"; +$a->strings["Invalid connection."] = "Ungültige Verbindung."; $a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; $a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; $a->strings["Connection updated."] = "Verbindung aktualisiert."; @@ -1216,7 +1241,6 @@ $a->strings["All"] = "Alle"; $a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen"; $a->strings["New Connections"] = "Neue Verbindungen"; $a->strings["Show pending (new) connections"] = "Zeige ausstehende (neue) Verbindungsanfragen"; -$a->strings["All Connections"] = "Alle Verbindungen"; $a->strings["Show all connections"] = "Zeige alle Verbindungen"; $a->strings["Unblocked"] = "Freigegeben"; $a->strings["Only show unblocked connections"] = "Zeige nur freigegebene Verbindungen"; @@ -1228,141 +1252,7 @@ $a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; $a->strings["Edit connection"] = "Verbindung bearbeiten"; $a->strings["Search your connections"] = "Verbindungen durchsuchen"; $a->strings["Finding: "] = "Ergebnisse:"; -$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; -$a->strings["Age: "] = "Alter:"; -$a->strings["Gender: "] = "Geschlecht:"; -$a->strings["Status: "] = "Status:"; -$a->strings["Sexual Preference: "] = "Sexuelle Ausrichtung:"; -$a->strings["Homepage: "] = "Webseite:"; -$a->strings["Hometown: "] = "Wohnort:"; -$a->strings["About: "] = "Über:"; -$a->strings["Keywords: "] = "Schlüsselwörter:"; -$a->strings["Not found."] = "Nicht gefunden."; -$a->strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["No photos selected"] = "Keine Fotos ausgewählt"; -$a->strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du benutzt %1$.2f MBytes Deines %2$.2f MBytes großen Bilder-Speichers."; -$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Du verwendest %1$.2f MBytes Deines Foto-Speichers."; -$a->strings["Upload Photos"] = "Fotos hochladen"; -$a->strings["New album name: "] = "Name des neuen Albums:"; -$a->strings["or existing album name: "] = "Oder bestehender Album-Name:"; -$a->strings["Do not show a status post for this upload"] = "Keine Statusnachricht für diesen Upload senden"; -$a->strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; -$a->strings["Contact Photos"] = "Kontakt-Bilder"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Show Newest First"] = "Zeige Neueste zuerst"; -$a->strings["Show Oldest First"] = "Zeige Älteste zuerst"; -$a->strings["View Photo"] = "Foto ansehen"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["Use as profile photo"] = "Als Profilfoto verwenden"; -$a->strings["View Full Size"] = "In voller Größe anzeigen"; -$a->strings["Remove"] = "Entferne"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; -$a->strings["New album name"] = "Name des neuen Albums:"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Schlagwort hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["In This Photo:"] = "Auf diesem Foto:"; -$a->strings["View Album"] = "Album ansehen"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Menu not found."] = "Menü nicht gefunden"; -$a->strings["Menu element updated."] = "Menü-Element aktualisiert."; -$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; -$a->strings["Menu element added."] = "Menü-Bestandteil hinzugefügt."; -$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; -$a->strings["Manage Menu Elements"] = "Menü-Bestandteile verwalten"; -$a->strings["Edit menu"] = "Menü bearbeiten"; -$a->strings["Edit element"] = "Bestandteil bearbeiten"; -$a->strings["Drop element"] = "Bestandteil löschen"; -$a->strings["New element"] = "Neues Bestandteil"; -$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; -$a->strings["Add menu element"] = "Menüelement hinzufügen"; -$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; -$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; -$a->strings["New Menu Element"] = "Neues Menü-Bestandteil"; -$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; -$a->strings["Link text"] = "Link Text"; -$a->strings["URL of link"] = "URL des Links"; -$a->strings["Use Red magic-auth if available"] = "Verwende Red Magic-Auth wenn verfügbar"; -$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; -$a->strings["Order in list"] = "Reihenfolge in der Liste"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; -$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; -$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; -$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; -$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; -$a->strings["Modify"] = "Ändern"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; -$a->strings["Please login."] = "Bitte melde dich an."; -$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -$a->strings["webpage"] = "Webseite"; -$a->strings["block"] = "Block"; -$a->strings["layout"] = "Layout"; -$a->strings["%s element installed"] = "Element für %s installiert"; -$a->strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; -$a->strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; -$a->strings["Save Bookmark"] = "Lesezeichen speichern"; -$a->strings["URL of bookmark"] = "URL des Lesezeichens"; -$a->strings["Description"] = "Beschreibung"; -$a->strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; -$a->strings["Layout updated."] = "Layout aktualisiert."; -$a->strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -$a->strings["Layout not found."] = "Layout nicht gefunden."; -$a->strings["Module Name:"] = "Modulname:"; -$a->strings["Layout Help"] = "Layout-Hilfe"; -$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; -$a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; -$a->strings["Image exceeds size limit of %d"] = "Bild ist größer als das Limit von %d"; -$a->strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; -$a->strings["Photo not available."] = "Foto nicht verfügbar."; -$a->strings["Upload File:"] = "Datei hochladen:"; -$a->strings["Select a profile:"] = "Wähle ein Profil:"; -$a->strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -$a->strings["skip this step"] = "diesen Schritt überspringen"; -$a->strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; -$a->strings["Crop Image"] = "Bild zuschneiden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; -$a->strings["Done Editing"] = "Bearbeitung fertigstellen"; -$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -$a->strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; -$a->strings["Image size reduction [%s] failed."] = "Reduzierung der Bildgröße [%s] fehlgeschlagen."; -$a->strings["network"] = "Netzwerk"; -$a->strings["Menu updated."] = "Menü aktualisiert."; -$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; -$a->strings["Menu created."] = "Menü erstellt."; -$a->strings["Unable to create menu."] = "Kann Menü nicht erstellen."; -$a->strings["Manage Menus"] = "Menüs verwalten"; -$a->strings["Drop"] = "Löschen"; -$a->strings["Create a new menu"] = "Neues Menü erstellen"; -$a->strings["Delete this menu"] = "Lösche dieses Menü"; -$a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; -$a->strings["Edit this menu"] = "Dieses Menü bearbeiten"; -$a->strings["New Menu"] = "Neues Menü"; -$a->strings["Menu name"] = "Menü Name"; -$a->strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; -$a->strings["Menu title"] = "Menü Titel"; -$a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; -$a->strings["Allow bookmarks"] = "Erlaube Lesezeichen"; -$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; -$a->strings["Menu deleted."] = "Menü gelöscht."; -$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; -$a->strings["Edit Menu"] = "Menü bearbeiten"; -$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; -$a->strings["Invalid item."] = "Ungültiges Element."; -$a->strings["Channel not found."] = "Kanal nicht gefunden."; -$a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; -$a->strings["Wall Photos"] = "Wall Fotos"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; +$a->strings["Edit post"] = "Bearbeite Beitrag"; $a->strings["is now connected to"] = "ist jetzt verbunden mit"; $a->strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; $a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; @@ -1383,6 +1273,8 @@ $a->strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; $a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; $a->strings["Recent Activity"] = "Kürzliche Aktivitäten"; $a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; +$a->strings["Unblock"] = "Freigeben"; +$a->strings["Block"] = "Blockieren"; $a->strings["Block or Unblock this connection"] = "Verbindung blockieren oder freigeben"; $a->strings["Unignore"] = "Nicht ignorieren"; $a->strings["Ignore"] = "Ignorieren"; @@ -1432,15 +1324,32 @@ $a->strings["Currently blocked"] = "Derzeit blockiert"; $a->strings["Currently ignored"] = "Derzeit ignoriert"; $a->strings["Currently archived"] = "Derzeit archiviert"; $a->strings["Currently pending"] = "Derzeit anstehend"; -$a->strings["Hide this contact from others"] = "Diese Verbindung vor den anderen verbergen."; -$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge können immer noch sichtbar sein"; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - G:i"; -$a->strings["sent you a private message"] = "eine private Nachricht schicken"; -$a->strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -$a->strings["posted an event"] = "hat eine Veranstaltung veröffentlicht"; +$a->strings["Hide this contact from others"] = "Diese Verbindung vor den anderen verbergen."; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge können immer noch sichtbar sein"; +$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; +$a->strings["Delegate Page Management"] = "Delegiere das Management für diese Seite"; +$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; +$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; +$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; +$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; +$a->strings["Add"] = "Hinzufügen"; +$a->strings["No entries."] = "Keine Einträge."; +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Finding:"] = "Ergebnisse:"; +$a->strings["next page"] = "nächste Seite"; +$a->strings["previous page"] = "vorherige Seite"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; +$a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +$a->strings["My Bookmarks"] = "Meine Lesezeichen"; +$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +$a->strings["Status: "] = "Status:"; +$a->strings["Sexual Preference: "] = "Sexuelle Ausrichtung:"; +$a->strings["Homepage: "] = "Webseite:"; +$a->strings["Hometown: "] = "Wohnort:"; +$a->strings["About: "] = "Über:"; +$a->strings["Keywords: "] = "Schlüsselwörter:"; +$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; +$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++"; $a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation"; $a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; $a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; @@ -1449,7 +1358,6 @@ $a->strings["Your site database has been installed."] = "Die Datenbank Deines Se $a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren."; $a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; $a->strings["System check"] = "Systemprüfung"; -$a->strings["Next"] = "Nächste"; $a->strings["Check again"] = "Bitte nochmal prüfen"; $a->strings["Database connection"] = "Datenbank Verbindung"; $a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; @@ -1520,26 +1428,262 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $a->strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; $a->strings["

    What next

    "] = "

    Was als Nächstes

    "; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; -$a->strings["Hub not found."] = "Server nicht gefunden."; -$a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; -$a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; -$a->strings["Please join us on Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers."; -$a->strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; -$a->strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", +$a->strings["Item not found"] = "Element nicht gefunden"; +$a->strings["Edit Block"] = "Block bearbeiten"; +$a->strings["Delete block?"] = "Block löschen?"; +$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; +$a->strings["Delete Block"] = "Block löschen"; +$a->strings["Layout updated."] = "Layout aktualisiert."; +$a->strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +$a->strings["Layout not found."] = "Layout nicht gefunden."; +$a->strings["Module Name:"] = "Modulname:"; +$a->strings["Layout Help"] = "Layout-Hilfe"; +$a->strings["Edit Layout"] = "Layout bearbeiten"; +$a->strings["Delete layout?"] = "Layout löschen?"; +$a->strings["Delete Layout"] = "Layout löschen"; +$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +$a->strings["Delete item?"] = "Eintrag löschen?"; +$a->strings["Edit Webpage"] = "Webseite bearbeiten"; +$a->strings["Delete webpage?"] = "Webseite löschen?"; +$a->strings["Delete Webpage"] = "Webseite löschen"; +$a->strings["webpage"] = "Webseite"; +$a->strings["block"] = "Block"; +$a->strings["layout"] = "Layout"; +$a->strings["%s element installed"] = "Element für %s installiert"; +$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; +$a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; +$a->strings["Image exceeds size limit of %d"] = "Bild ist größer als das Limit von %d"; +$a->strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; +$a->strings["Photo not available."] = "Foto nicht verfügbar."; +$a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Wähle ein Profil:"; +$a->strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +$a->strings["skip this step"] = "diesen Schritt überspringen"; +$a->strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; +$a->strings["Crop Image"] = "Bild zuschneiden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; +$a->strings["Done Editing"] = "Bearbeitung fertigstellen"; +$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; +$a->strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; +$a->strings["Image size reduction [%s] failed."] = "Reduzierung der Bildgröße [%s] fehlgeschlagen."; +$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; +$a->strings["Source created."] = "Quelle erstellt."; +$a->strings["Source updated."] = "Quelle aktualisiert."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Quellen von Inhalten Deines Kanals verwalten."; +$a->strings["New Source"] = "Neue Quelle"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; +$a->strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; +$a->strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; +$a->strings["Channel Name"] = "Name des Kanals"; +$a->strings["Source not found."] = "Quelle nicht gefunden."; +$a->strings["Edit Source"] = "Quelle bearbeiten"; +$a->strings["Delete Source"] = "Quelle löschen"; +$a->strings["Source removed"] = "Quelle gelöscht"; +$a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; +$a->strings["- select -"] = "– auswählen –"; +$a->strings["Permission Denied."] = "Zugriff verweigert."; +$a->strings["File not found."] = "Datei nicht gefunden."; +$a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; +$a->strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; +$a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; +$a->strings["Return to file list"] = "Zurück zur Dateiliste"; +$a->strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; +$a->strings["Help:"] = "Hilfe:"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["Channel added."] = "Kanal hinzugefügt."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; +$a->strings["Contact not found."] = "Kontakt nicht gefunden"; +$a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden."; +$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; +$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; +$a->strings["Collection created."] = "Sammlung erstellt."; +$a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; +$a->strings["Collection updated."] = "Sammlung aktualisiert."; +$a->strings["Create a collection of channels."] = "Erstelle eine Sammlung von Kanälen."; +$a->strings["Collection Name: "] = "Name der Sammlung:"; +$a->strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; +$a->strings["Collection removed."] = "Sammlung gelöscht."; +$a->strings["Unable to remove collection."] = "Löschen der Sammlung nicht möglich."; +$a->strings["Collection Editor"] = "Sammlung-Editor"; +$a->strings["Members"] = "Mitglieder"; +$a->strings["All Connected Channels"] = "Alle verbundenen Kanäle"; +$a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; +$a->strings["Like/Dislike"] = "Mögen/Nicht mögen"; +$a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; +$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren."; +$a->strings["Invalid request."] = "Ungültige Anfrage."; +$a->strings["thing"] = "Sache"; +$a->strings["Channel unavailable."] = "Kanal nicht vorhanden."; +$a->strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; +$a->strings["Action completed."] = "Aktion durchgeführt."; +$a->strings["Thank you."] = "Vielen Dank."; +$a->strings["Tag removed"] = "Schlagwort entfernt"; +$a->strings["Remove Item Tag"] = "Schlagwort entfernen"; +$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; +$a->strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; +$a->strings["Site"] = "Seite"; +$a->strings["Accounts"] = "Konten"; +$a->strings["Channels"] = "Kanäle"; +$a->strings["Plugins"] = "Plug-Ins"; +$a->strings["Themes"] = "Themes"; +$a->strings["Server"] = "Server"; +$a->strings["Profile Config"] = "Profilkonfiguration"; +$a->strings["DB updates"] = "DB-Aktualisierungen"; +$a->strings["Logs"] = "Protokolle"; +$a->strings["Plugin Features"] = "Plug-In Funktionen"; +$a->strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +$a->strings["Message queues"] = "Nachrichten-Warteschlangen"; +$a->strings["Administration"] = "Administration"; +$a->strings["Summary"] = "Zusammenfassung"; +$a->strings["Registered users"] = "Registrierte Benutzer"; +$a->strings["Pending registrations"] = "Ausstehende Registrierungen"; +$a->strings["Version"] = "Version"; +$a->strings["Active plugins"] = "Aktive Plug-Ins"; +$a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; +$a->strings["No special theme for accessibility"] = "Kein spezielles Accessibility-Theme vorhanden"; +$a->strings["Yes - with approval"] = "Ja - mit Zustimmung"; +$a->strings["My site is not a public server"] = "Meine Server ist kein öffentlicher Server"; +$a->strings["My site has paid access only"] = "Mein Server erlaubt nur bezahlten Zugang"; +$a->strings["My site has free access only"] = "Mein Server erlaubt ausschließlich freien Zugang"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; +$a->strings["File upload"] = "Dateiupload"; +$a->strings["Policies"] = "Richtlinien"; +$a->strings["Site name"] = "Seitenname"; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Administrator Information"] = "Administrator-Informationen"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; +$a->strings["System language"] = "System-Sprache"; +$a->strings["System theme"] = "System-Theme"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; +$a->strings["Mobile system theme"] = "Mobile System-Theme:"; +$a->strings["Theme for mobile devices"] = "Theme für mobile Geräte"; +$a->strings["Accessibility system theme"] = "Accessibility-System-Theme"; +$a->strings["Accessibility theme"] = "Accessibility-Theme"; +$a->strings["Enable Diaspora Protocol"] = "Diaspora-Protokoll aktivieren"; +$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Kommunikation mit Diaspora und Friendica – experimentell"; +$a->strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; +$a->strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; +$a->strings["Maximum image size"] = "Maximale Bildgröße"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; +$a->strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; +$a->strings["Register text"] = "Registrierungstext"; +$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; +$a->strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; +$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +$a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."; +$a->strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; +$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; +$a->strings["Force publish"] = "Veröffentlichung erzwingen"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; +$a->strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden"; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte von anderen RedMatrix-Hubs angezeigt werden können."; +$a->strings["No login on Homepage"] = "Kein Login auf der Homepage"; +$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)."; +$a->strings["Proxy user"] = "Proxy Benutzer"; +$a->strings["Proxy URL"] = "Proxy URL"; +$a->strings["Network timeout"] = "Netzwerk-Timeout"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; +$a->strings["Delivery interval"] = "Auslieferung Intervall"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; +$a->strings["Poll interval"] = "Abfrageintervall"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; +$a->strings["Maximum Load Average"] = "Maximales Load Average"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; +$a->strings["No server found"] = "Kein Server gefunden"; +$a->strings["ID"] = "ID"; +$a->strings["for channel"] = "für Kanal"; +$a->strings["on server"] = "auf Server"; +$a->strings["Status"] = "Status"; +$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; +$a->strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; +$a->strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; +$a->strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; +$a->strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; +$a->strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; +$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; +$a->strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s Nutzer blockiert/freigegeben", + 1 => "%s Nutzer blockiert/freigegeben", ); -$a->strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Please join my community on RedMatrix."] = "Schließe Dich uns in der RedMatrix an!"; -$a->strings["You will need to supply this invitation code: "] = "Gib diesen Invite-Code ein:"; -$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)"; -$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Gib meine RedMatrix-Adresse im Suchfeld ein."; -$a->strings["or visit "] = "oder besuche"; -$a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; +$a->strings["%s user deleted"] = array( + 0 => "%s Nutzer gelöscht", + 1 => "%s Nutzer gelöscht", +); +$a->strings["Account not found"] = "Konto nicht gefunden"; +$a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben"; +$a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert"; +$a->strings["Users"] = "Benutzer"; +$a->strings["select all"] = "Alle auswählen"; +$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; +$a->strings["Request date"] = "Antragsdatum"; +$a->strings["No registrations."] = "Keine Registrierungen."; +$a->strings["Approve"] = "Genehmigen"; +$a->strings["Deny"] = "Verweigern"; +$a->strings["Register date"] = "Registrierungs-Datum"; +$a->strings["Last login"] = "Letzte Anmeldung"; +$a->strings["Expires"] = "Verfällt"; +$a->strings["Service Class"] = "Service-Klasse"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "%s Kanal gesperrt/freigegeben", + 1 => "%s Kanäle gesperrt/freigegeben", +); +$a->strings["%s channel deleted"] = array( + 0 => "%s Kanal gelöscht", + 1 => "%s Kanäle gelöscht", +); +$a->strings["Channel not found"] = "Kanal nicht gefunden"; +$a->strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; +$a->strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; +$a->strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; +$a->strings["Censor"] = "Sperren"; +$a->strings["Uncensor"] = "Freigeben"; +$a->strings["UID"] = "UID"; +$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; +$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; +$a->strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; +$a->strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; +$a->strings["Disable"] = "Deaktivieren"; +$a->strings["Enable"] = "Aktivieren"; +$a->strings["Toggle"] = "Umschalten"; +$a->strings["Author: "] = "Autor: "; +$a->strings["Maintainer: "] = "Betreuer:"; +$a->strings["No themes found."] = "Keine Theme gefunden."; +$a->strings["Screenshot"] = "Bildschirmfoto"; +$a->strings["[Experimental]"] = "[Experimentell]"; +$a->strings["[Unsupported]"] = "[Nicht unterstützt]"; +$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; +$a->strings["Clear"] = "Leeren"; +$a->strings["Debugging"] = "Debugging"; +$a->strings["Log file"] = "Protokolldatei"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."; +$a->strings["Log level"] = "Protokollstufe"; +$a->strings["New Profile Field"] = "Neues Profilfeld"; +$a->strings["Field nickname"] = "Kurzname für das Feld"; +$a->strings["System name of field"] = "Systemname des Feldes"; +$a->strings["Input type"] = "Art des Inhalts"; +$a->strings["Field Name"] = "Feldname"; +$a->strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; +$a->strings["Help text"] = "Hilfetext"; +$a->strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; +$a->strings["Field definition not found"] = "Feld-Definition nicht gefunden"; +$a->strings["Edit Profile Field"] = "Profilfeld bearbeiten"; $a->strings["Thing updated"] = "Sache aktualisiert"; $a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; $a->strings["Thing added"] = "Sache hinzugefügt"; @@ -1554,173 +1698,6 @@ $a->strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; $a->strings["URL of thing (optional)"] = "URL der Sache (optional)"; $a->strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; $a->strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; -$a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -$a->strings["Post successful."] = "Veröffentlichung erfolgreich."; -$a->strings["Help:"] = "Hilfe:"; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["No connections."] = "Keine Verbindungen."; -$a->strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; -$a->strings["View Connnections"] = "Zeige Verbindungen"; -$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; -$a->strings["Remove This Account"] = "Dieses Konto löschen"; -$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden."; -$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; -$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; -$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -$a->strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; -$a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; -$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["Terms of Service"] = "Nutzungsbedingungen"; -$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; -$a->strings["Your email address"] = "Ihre E-Mail Adresse"; -$a->strings["Choose a password"] = "Passwort"; -$a->strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; -$a->strings["No such group"] = "Gruppe existiert nicht"; -$a->strings["Search Results For:"] = "Suchergebnisse für:"; -$a->strings["Collection is empty"] = "Sammlung ist leer"; -$a->strings["Collection: "] = "Sammlung:"; -$a->strings["Connection: "] = "Verbindung:"; -$a->strings["Invalid connection."] = "Ungültige Verbindung."; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$a->strings["Delegate Page Management"] = "Delegiere das Management für diese Seite"; -$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; -$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; -$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; -$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; -$a->strings["Add"] = "Hinzufügen"; -$a->strings["No entries."] = "Keine Einträge."; -$a->strings["Continue"] = "Fortfahren"; -$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; -$a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; -$a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; -$a->strings["Contact not found."] = "Kontakt nicht gefunden"; -$a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden."; -$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; -$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; -$a->strings["Create a new channel"] = "Neuen Kanal anlegen"; -$a->strings["Current Channel"] = "Aktueller Kanal"; -$a->strings["Attach to one of your channels by selecting it."] = "Wähle einen Deiner Kanäle aus, um ihn zu verwenden."; -$a->strings["Default Channel"] = "Standard Kanal"; -$a->strings["Make Default"] = "Zum Standard machen"; -$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; -$a->strings["Remove This Channel"] = "Diesen Kanal löschen"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet kann dieser Prozess nicht rückgängig gemacht werden."; -$a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; -$a->strings["Remove Channel"] = "Kanal löschen"; -$a->strings["Item not found"] = "Element nicht gefunden"; -$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -$a->strings["Edit post"] = "Bearbeite Beitrag"; -$a->strings["Delete item?"] = "Eintrag löschen?"; -$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; -$a->strings["Edit Webpage"] = "Webseite bearbeiten"; -$a->strings["Delete webpage?"] = "Webseite löschen?"; -$a->strings["Delete Webpage"] = "Webseite löschen"; -$a->strings["Poke/Prod"] = "Anstupsen/Knuffen"; -$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; -$a->strings["Recipient"] = "Empfänger"; -$a->strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; -$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; -$a->strings["Block Name"] = "Block-Name"; -$a->strings["Collection created."] = "Sammlung erstellt."; -$a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; -$a->strings["Collection updated."] = "Sammlung aktualisiert."; -$a->strings["Create a collection of channels."] = "Erstelle eine Sammlung von Kanälen."; -$a->strings["Collection Name: "] = "Name der Sammlung:"; -$a->strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; -$a->strings["Collection removed."] = "Sammlung gelöscht."; -$a->strings["Unable to remove collection."] = "Löschen der Sammlung nicht möglich."; -$a->strings["Collection Editor"] = "Sammlung-Editor"; -$a->strings["Members"] = "Mitglieder"; -$a->strings["All Connected Channels"] = "Alle verbundenen Kanäle"; -$a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; -$a->strings["Tag removed"] = "Schlagwort entfernt"; -$a->strings["Remove Item Tag"] = "Schlagwort entfernen"; -$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -$a->strings["Item not available."] = "Element nicht verfügbar."; -$a->strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; -$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; -$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++"; -$a->strings["Away"] = "Abwesend"; -$a->strings["Online"] = "Online"; -$a->strings["Finding:"] = "Ergebnisse:"; -$a->strings["next page"] = "nächste Seite"; -$a->strings["previous page"] = "vorherige Seite"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; -$a->strings["Profile Match"] = "Profil-Übereinstimmungen"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "interessiert sich für:"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; -$a->strings["Version %s"] = "Version %s"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; -$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Besuche GetZot.com, um mehr über die Red-Matrix zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; -$a->strings["Site Administrators"] = "Administratoren"; -$a->strings["App installed."] = "App installiert."; -$a->strings["Malformed app."] = "Fehlerhafte App."; -$a->strings["Embed code"] = "Code einbetten"; -$a->strings["Edit App"] = "App bearbeiten"; -$a->strings["Create App"] = "App erstellen"; -$a->strings["Name of app"] = "Name der App"; -$a->strings["Required"] = "Benötigt"; -$a->strings["Location (URL) of app"] = "Ort (URL) der App"; -$a->strings["Photo icon URL"] = "URL zum Icon"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -$a->strings["Version ID"] = "Versions-ID"; -$a->strings["Price of app"] = "Preis der App"; -$a->strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; -$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; -$a->strings["Source created."] = "Quelle erstellt."; -$a->strings["Source updated."] = "Quelle aktualisiert."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Quellen von Inhalten Deines Kanals verwalten."; -$a->strings["New Source"] = "Neue Quelle"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; -$a->strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; -$a->strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; -$a->strings["Source not found."] = "Quelle nicht gefunden."; -$a->strings["Edit Source"] = "Quelle bearbeiten"; -$a->strings["Delete Source"] = "Quelle löschen"; -$a->strings["Source removed"] = "Quelle gelöscht"; -$a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; -$a->strings["Public Sites"] = "Öffentliche Server"; -$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen."; -$a->strings["Site URL"] = "Server-URL"; -$a->strings["Access Type"] = "Zugangstyp"; -$a->strings["Registration Policy"] = "Registrierungsrichtlinien"; -$a->strings["Location"] = "Ort"; $a->strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; $a->strings["Nothing to import."] = "Nichts zu importieren."; $a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; @@ -1740,7 +1717,60 @@ $a->strings["Your old login password"] = "Dein altes Passwort"; $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."] = "Egal welche Option Du wählst, bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; $a->strings["Make this hub my primary location"] = "Dieser Red-Server ist mein primärer Server."; $a->strings["Import existing posts if possible"] = "Existierende Beiträge importieren, falls möglich"; -$a->strings["invalid target signature"] = "Ungültige Signatur des Ziels"; +$a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; +$a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; +$a->strings["Please join us on Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers."; +$a->strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; +$a->strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +$a->strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; +$a->strings["Your message:"] = "Deine Nachricht:"; +$a->strings["Please join my community on RedMatrix."] = "Schließe Dich uns in der RedMatrix an!"; +$a->strings["You will need to supply this invitation code: "] = "Gib diesen Invite-Code ein:"; +$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)"; +$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Gib meine RedMatrix-Adresse im Suchfeld ein."; +$a->strings["or visit "] = "oder besuche"; +$a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; +$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; +$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; +$a->strings["Help with this feature"] = "Hilfe zu dieser Funktion"; +$a->strings["Layout Name"] = "Layout-Name"; +$a->strings["Location not found."] = "Klon nicht gefunden."; +$a->strings["Primary location cannot be removed."] = "Der primäre Klon kann nicht gelöscht werden."; +$a->strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["No connections."] = "Keine Verbindungen."; +$a->strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; +$a->strings["View Connnections"] = "Zeige Verbindungen"; +$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; +$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; +$a->strings["Site Member (%s)"] = "Nutzer (%s)"; +$a->strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; +$a->strings["Password Reset"] = "Zurücksetzen des Kennworts"; +$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; +$a->strings["Your new password is"] = "Dein neues Passwort lautet"; +$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; +$a->strings["click here to login"] = "Klicke hier, um dich anzumelden"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; +$a->strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +$a->strings["Forgot your Password?"] = "Kennwort vergessen?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; +$a->strings["Email Address"] = "E-Mail Adresse"; +$a->strings["Reset"] = "Zurücksetzen"; +$a->strings["Hub not found."] = "Server nicht gefunden."; +$a->strings["Total votes"] = "Stimmen gesamt"; +$a->strings["Average Rating"] = "Durchschnittliche Bewertung"; $a->strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; $a->strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; $a->strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; @@ -1756,145 +1786,157 @@ $a->strings["Delete message"] = "Nachricht löschen"; $a->strings["Recall message"] = "Nachricht widerrufen"; $a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; $a->strings["Private Conversation"] = "Private Unterhaltung"; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; $a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; $a->strings["Send Reply"] = "Antwort senden"; -$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -$a->strings["Profile not found."] = "Profil nicht gefunden."; -$a->strings["Profile deleted."] = "Profil gelöscht."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Neues Profil erstellt."; -$a->strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; -$a->strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; -$a->strings["Profile Name is required."] = "Profil-Name erforderlich."; -$a->strings["Marital Status"] = "Familienstand"; -$a->strings["Romantic Partner"] = "Romantische Partner"; -$a->strings["Likes"] = "Gefällt"; -$a->strings["Dislikes"] = "Gefällt nicht"; -$a->strings["Work/Employment"] = "Arbeit/Anstellung"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Politische Ansichten"; -$a->strings["Gender"] = "Geschlecht"; -$a->strings["Sexual Preference"] = "Sexuelle Orientierung"; -$a->strings["Homepage"] = "Webseite"; -$a->strings["Interests"] = "Hobbys/Interessen"; -$a->strings["Profile updated."] = "Profil aktualisiert."; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"; -$a->strings["Edit Profile Details"] = "Bearbeite Profil-Details"; -$a->strings["View this profile"] = "Dieses Profil ansehen"; -$a->strings["Change Profile Photo"] = "Profilfoto ändern"; -$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen"; -$a->strings["Clone this profile"] = "Dieses Profil klonen"; -$a->strings["Delete this profile"] = "Dieses Profil löschen"; -$a->strings["Import profile from file"] = "Profil aus einer Datei importieren"; -$a->strings["Export profile to file"] = "Profil in eine Datei exportieren"; -$a->strings["Profile Name:"] = "Profilname:"; -$a->strings["Your Full Name:"] = "Dein voller Name:"; -$a->strings["Title/Description:"] = "Titel/Stellenbeschreibung:"; -$a->strings["Your Gender:"] = "Dein Geschlecht:"; -$a->strings["Birthday (%s):"] = "Geburtstag (%s):"; -$a->strings["Street Address:"] = "Straße und Hausnummer:"; -$a->strings["Locality/City:"] = "Wohnort:"; -$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Region/Bundesstaat:"; -$a->strings[" Marital Status:"] = " Beziehungsstatus:"; -$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Seit [Datum]:"; -$a->strings["Homepage URL:"] = "Homepage URL:"; -$a->strings["Religious Views:"] = "Religiöse Ansichten:"; -$a->strings["Keywords:"] = "Schlüsselwörter:"; -$a->strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; -$a->strings["Used in directory listings"] = "Wird in Verzeichnis-Auflistungen verwendet"; -$a->strings["Tell us about yourself..."] = "Erzähle uns ein wenig von Dir …"; -$a->strings["Hobbies/Interests"] = "Hobbys/Interessen"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformation und soziale Netzwerke"; -$a->strings["My other channels"] = "Meine anderen Kanäle"; -$a->strings["Musical interests"] = "Musikalische Interessen"; -$a->strings["Books, literature"] = "Bücher, Literatur"; -$a->strings["Television"] = "Fernsehen"; -$a->strings["Film/dance/culture/entertainment"] = "Film/Tanz/Kultur/Unterhaltung"; -$a->strings["Love/romance"] = "Liebe/Romantik"; -$a->strings["Work/employment"] = "Arbeit/Anstellung"; -$a->strings["School/education"] = "Schule/Ausbildung"; -$a->strings["This is your default profile."] = "Das ist Dein Standardprofil"; -$a->strings["Edit/Manage Profiles"] = "Profile bearbeiten/verwalten"; -$a->strings["Add profile things"] = "Sachen zum Profil hinzufügen"; -$a->strings["Include desirable objects in your profile"] = "Binde begehrenswerte Dinge in Dein Profil ein"; -$a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -$a->strings["My Bookmarks"] = "Meine Lesezeichen"; -$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; -$a->strings["No channel."] = "Kein Kanal."; -$a->strings["Common connections"] = "Gemeinsame Verbindungen"; -$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; -$a->strings["Like/Dislike"] = "Mögen/Nicht mögen"; -$a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; -$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren."; -$a->strings["Invalid request."] = "Ungültige Anfrage."; -$a->strings["thing"] = "Sache"; -$a->strings["Channel unavailable."] = "Kanal nicht vorhanden."; -$a->strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; -$a->strings["Action completed."] = "Aktion durchgeführt."; -$a->strings["Thank you."] = "Vielen Dank."; -$a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -$a->strings["System Notifications"] = "System-Benachrichtigungen"; -$a->strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; -$a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; -$a->strings["Room not found"] = "Chatraum nicht gefunden"; -$a->strings["Leave Room"] = "Raum verlassen"; -$a->strings["Delete This Room"] = "Diesen Raum löschen"; -$a->strings["I am away right now"] = "Ich bin gerade nicht da"; -$a->strings["I am online"] = "Ich bin online"; -$a->strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; -$a->strings["New Chatroom"] = "Neuer Chatraum"; -$a->strings["Chatroom Name"] = "Name des Chatraums"; -$a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -$a->strings["Event title and start time are required."] = "Veranstaltungs- Titel und Startzeit sind erforderlich."; -$a->strings["Event not found."] = "Termin nicht gefunden."; -$a->strings["l, F j"] = "l, j. F"; -$a->strings["Edit event"] = "Veranstaltung bearbeiten"; -$a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; -$a->strings["Previous"] = "Voriges"; -$a->strings["hour:minute"] = "Stunde:Minute"; -$a->strings["Event details"] = "Veranstaltungs-Details"; -$a->strings["Format is %s %s."] = "Format ist %s %s."; -$a->strings["Starting date and Title are required."] = "Startdatum und Titel sind erforderlich."; -$a->strings["Event Starts:"] = "Veranstaltung startet:"; -$a->strings["Finish date/time is not known or not relevant"] = "Ende Datum/Zeit sind unbekannt oder unwichtig"; -$a->strings["Event Finishes:"] = "Veranstaltung endet:"; -$a->strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; -$a->strings["Description:"] = "Beschreibung:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Die Veranstaltung teilen"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; +$a->strings["Create a new channel"] = "Neuen Kanal anlegen"; +$a->strings["Current Channel"] = "Aktueller Kanal"; +$a->strings["Attach to one of your channels by selecting it."] = "Wähle einen Deiner Kanäle aus, um ihn zu verwenden."; +$a->strings["Default Channel"] = "Standard Kanal"; +$a->strings["Make Default"] = "Zum Standard machen"; +$a->strings["Wall Photos"] = "Wall Fotos"; +$a->strings["Profile Match"] = "Profil-Übereinstimmungen"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "interessiert sich für:"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; +$a->strings["Menu updated."] = "Menü aktualisiert."; +$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; +$a->strings["Menu created."] = "Menü erstellt."; +$a->strings["Unable to create menu."] = "Kann Menü nicht erstellen."; +$a->strings["Manage Menus"] = "Menüs verwalten"; +$a->strings["Drop"] = "Löschen"; +$a->strings["Create a new menu"] = "Neues Menü erstellen"; +$a->strings["Delete this menu"] = "Lösche dieses Menü"; +$a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; +$a->strings["Edit this menu"] = "Dieses Menü bearbeiten"; +$a->strings["New Menu"] = "Neues Menü"; +$a->strings["Menu name"] = "Menü Name"; +$a->strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; +$a->strings["Menu title"] = "Menü Titel"; +$a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; +$a->strings["Allow bookmarks"] = "Erlaube Lesezeichen"; +$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; +$a->strings["Menu deleted."] = "Menü gelöscht."; +$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; +$a->strings["Edit Menu"] = "Menü bearbeiten"; +$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - G:i"; +$a->strings["Add a Channel"] = "Kanal hinzufügen"; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt."; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; +$a->strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."; +$a->strings["Or import an existing channel from another location"] = "Oder importiere einen bestehenden Kanal von einem anderen Server"; +$a->strings["Channel Type"] = "Kanaltyp"; +$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"] = "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können"; +$a->strings["Red Matrix - "The Network""] = "RedMatrix – "Das Netzwerk""; +$a->strings["Welcome to %s"] = "Willkommen auf %s"; $a->strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; $a->strings["Discard"] = "Verwerfen"; -$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; -$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; -$a->strings["Site Member (%s)"] = "Nutzer (%s)"; -$a->strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; -$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; -$a->strings["Your new password is"] = "Dein neues Passwort lautet"; -$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; -$a->strings["click here to login"] = "Klicke hier, um dich anzumelden"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; -$a->strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -$a->strings["Forgot your Password?"] = "Kennwort vergessen?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; -$a->strings["Email Address"] = "E-Mail Adresse"; -$a->strings["Reset"] = "Zurücksetzen"; -$a->strings["Help with this feature"] = "Hilfe zu dieser Funktion"; -$a->strings["Layout Name"] = "Layout-Name"; -$a->strings["Edit Block"] = "Block bearbeiten"; -$a->strings["Delete block?"] = "Block löschen?"; -$a->strings["Delete Block"] = "Block löschen"; -$a->strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; -$a->strings["Edit Layout"] = "Layout bearbeiten"; -$a->strings["Delete layout?"] = "Layout löschen?"; -$a->strings["Delete Layout"] = "Layout löschen"; -$a->strings["Channel added."] = "Kanal hinzugefügt."; -$a->strings["Location not found."] = "Klon nicht gefunden."; -$a->strings["Primary location cannot be removed."] = "Der primäre Klon kann nicht gelöscht werden."; +$a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; +$a->strings["System Notifications"] = "System-Benachrichtigungen"; +$a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +$a->strings["Post successful."] = "Veröffentlichung erfolgreich."; +$a->strings["invalid target signature"] = "Ungültige Signatur des Ziels"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["App installed."] = "App installiert."; +$a->strings["Malformed app."] = "Fehlerhafte App."; +$a->strings["Embed code"] = "Code einbetten"; +$a->strings["Edit App"] = "App bearbeiten"; +$a->strings["Create App"] = "App erstellen"; +$a->strings["Name of app"] = "Name der App"; +$a->strings["Location (URL) of app"] = "Ort (URL) der App"; +$a->strings["Photo icon URL"] = "URL zum Icon"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +$a->strings["Version ID"] = "Versions-ID"; +$a->strings["Price of app"] = "Preis der App"; +$a->strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +$a->strings["Poll"] = "Umfrage"; +$a->strings["View Results"] = "Ergebnisse"; +$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; +$a->strings["Remove This Account"] = "Dieses Konto löschen"; +$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden."; +$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; +$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; +$a->strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; +$a->strings["Schema Default"] = "Standard-Schema"; +$a->strings["Sans-Serif"] = "Sans-Serif"; +$a->strings["Monospace"] = "Monospace"; +$a->strings["Theme settings"] = "Theme-Einstellungen"; +$a->strings["Set scheme"] = "Schema"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare"; +$a->strings["Set font face"] = "Schriftart"; +$a->strings["Set iconset"] = "Iconset"; +$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ausmaß der großen Schatten (Default 15px 15px 15px)"; +$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ausmaß der kleinen Schatten (Default 5px 5px 5px)"; +$a->strings["Set shadow color, default #000"] = "Farbe der Schatten (Default #000)"; +$a->strings["Set radius size, default 5px"] = "Ecken-Radius (Default 5px)"; +$a->strings["Set line-height for posts and comments"] = "Zeilenhöhe in Beiträgen und Kommentaren"; +$a->strings["Set background image"] = "Hintergrundbild"; +$a->strings["Set background attachment"] = "Hintergrunddatei"; +$a->strings["Set background color"] = "Hintergrundfarbe"; +$a->strings["Set section background image"] = "Hintergrundbild für die Section"; +$a->strings["Set section background color"] = "Hintergrundfarbe für die Section"; +$a->strings["Set color of items - use hex"] = "Farbe für Beiträge – Hex benutzen"; +$a->strings["Set color of links - use hex"] = "Farbe für Links – Hex benutzen"; +$a->strings["Set max-width for items. Default 400px"] = "Maximale Breite von Beiträgen (Default 400px)"; +$a->strings["Set min-width for items. Default 240px"] = "Minimale Breite von Beiträgen (Default 240px)"; +$a->strings["Set the generic content wrapper width. Default 48%"] = "Breite des \"generic content wrapper\" (Default 48%)"; +$a->strings["Set color of fonts - use hex"] = "Schriftfarbe – Hex benutzen"; +$a->strings["Set background-size element"] = "Größe des Hintergrund-Elements"; +$a->strings["Item opacity"] = "Deckkraft der Beiträge"; +$a->strings["Display post previews only"] = "Nur Beitragsvorschau anzeigen"; +$a->strings["Display side bar on channel page"] = "Zeige die Seitenleiste auf der Kanal-Seite"; +$a->strings["Colour of the navigation bar"] = "Farbe der Navigationsleiste"; +$a->strings["Item float"] = "Beitragsfluss"; +$a->strings["Left offset of the section element"] = "Linker Rand des Section Elements"; +$a->strings["Right offset of the section element"] = "Rechter Rand des Section Elements"; +$a->strings["Section width"] = "Breite der Section"; +$a->strings["Left offset of the aside"] = "Linker Rand des Aside-Elements"; +$a->strings["Right offset of the aside element"] = "Rechter Rand des Aside-Elements"; +$a->strings["None"] = "Kein"; +$a->strings["Header image"] = "Titelbild"; +$a->strings["Header image only on profile pages"] = "Titelbild nur auf Profil-Seiten anzeigen"; +$a->strings["Light (Red Matrix default)"] = "Hell (RedMatrix-Voreinstellung)"; +$a->strings["Narrow navbar"] = "Schmale Navigationsleiste"; +$a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; +$a->strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben"; +$a->strings["Navigation bar gradient bottom color"] = "Farbverlauf der Navigationsleiste: Farbe unten"; +$a->strings["Navigation active button gradient top color"] = "Navigations-Button aktiv: Farbe für Farbverlauf oben"; +$a->strings["Navigation active button gradient bottom color"] = "Navigations-Button aktiv: Farbe für Farbverlauf unten"; +$a->strings["Navigation bar border color "] = "Farbe für den Rand der Navigationsleiste"; +$a->strings["Navigation bar icon color "] = "Farbe für die Icons der Navigationsleiste"; +$a->strings["Navigation bar active icon color "] = "Farbe für aktive Icons der Navigationsleiste"; +$a->strings["link color"] = "Farbe für Links"; +$a->strings["Set font-color for banner"] = "Farbe der Schrift des Banners"; +$a->strings["Set the background color"] = "Hintergrundfarbe"; +$a->strings["Set the background image"] = "Hintergrundbild"; +$a->strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge"; +$a->strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare"; +$a->strings["Set the border color of comments"] = "Farbe des Randes von Kommentaren"; +$a->strings["Set the indent for comments"] = "Einzug für Kommentare"; +$a->strings["Set the basic color for item icons"] = "Grundfarbe für Beitrags-Icons"; +$a->strings["Set the hover color for item icons"] = "Farbe für Beitrags-Icons unter dem Mauszeiger"; +$a->strings["Set font-size for the entire application"] = "Schriftgröße für die ganze Applikation"; +$a->strings["Set font-color for posts and comments"] = "Schriftfarbe für Posts und Kommentare"; +$a->strings["Set radius of corners"] = "Ecken-Radius"; +$a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos"; +$a->strings["Set maximum width of conversation regions"] = "Maximalbreite der Unterhaltungsbereiche"; +$a->strings["Center conversation regions"] = "Konversationsbereich zentrieren"; +$a->strings["Set minimum opacity of nav bar - to hide it"] = "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)"; +$a->strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern"; +$a->strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren"; +$a->strings["Sloppy photo albums"] = "Schräge Fotoalben"; +$a->strings["Are you a clean desk or a messy desk person?"] = "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"; +$a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; +$a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; +$a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."; +$a->strings["Password"] = "Kennwort"; +$a->strings["Remember me"] = "Angaben speichern"; +$a->strings["Forgot your password?"] = "Passwort vergessen?"; +$a->strings["permission denied"] = "Zugriff verweigert"; +$a->strings["Got Zot?"] = "Haste schon Zot?"; +$a->strings["toggle mobile"] = "auf/von mobile Ansicht wechseln"; -- cgit v1.2.3 From add493ef4dfaa84d4bb2a8eccfbc20df2c300618 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 7 Nov 2014 22:46:39 +0100 Subject: update to German help files --- doc/de/main.bb | 5 +++-- doc/de/registration.bb | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/de/main.bb b/doc/de/main.bb index a3582e17c..d458847ec 100644 --- a/doc/de/main.bb +++ b/doc/de/main.bb @@ -7,10 +7,10 @@ Die Red-Matrix ist eine dezentrale Kommunikations- und Publishing-Plattform. Sie [zrl=[baseurl]/help/features]Features der Red-Matrix[/zrl] Die Red-Matrix funktioniert schon heute als ein globales verteiltes Netzwerk und beweist täglich ihre Vielseitigkeit und Skalierbarkeit auf kleinen Privatservern wie auch auf riesigen Sites. -Kommunikationsplattformen für Familien (auf Wunsch auch ohne Verbindung zum restlichen Red-Netzwerk), verteilte Online-Communities, Support-Foren, Homepages. Oder auch professionelle Inhalte-Anbieter mit kommerziellen Premium-Kanälen und eingeschränktem Zugriff – was immer Du willst, die Red-Matrix unterstützt Dich in Deinem kreativen Schaffen. +Kommunikationsplattformen für Familien, verteilte Online-Communities, Support-Foren, Blogs und Homepages. Oder auch professionelle Inhalte-Anbieter mit kommerziellen Premium-Kanälen und eingeschränktem Zugriff – was immer Du willst, die Red-Matrix unterstützt Dich in Deinem kreativen Schaffen. [zrl=[baseurl]/help/what_is_zot]Got Zot? Hast Du schon Zot? Wenn nicht wird es Zeit.[/zrl] -Zot ist das großartige neue Kommunikationsprotokoll, das extra für die Red-Matrix entwickelt wurde. Als Teilnehmer bist Du dank „Nomadischer Identität“ nicht länger an einen Hoster gebunden. Ziehe einfach auf einen anderen Server um und behalte dabei alle Deine Kontakte, oder klone Deinen Kanal und lasse ihn auf mehreren Servern gleichzeitig laufen – sollte einer davon plötzlich geschlossen werden, ist das kein Problem für Dich. Und bist Du erst Teil der Red-Matrix, musst Du Dich nie wieder mehrfach anmelden, selbst wenn Du Seiten auf einem andere Red-Server betrachtest. Zot ist, was die Red-Matrix besonders macht. +Zot ist das großartige neue Kommunikationsprotokoll, das extra für die Red-Matrix entwickelt wurde. Als Mitglied bist Du dank „Nomadischer Identität“ nicht länger an einen einzigen Server oder Anbieter gebunden. Ziehe einfach auf einen anderen Server um und behalte dabei alle Deine Kontakte, oder klone Deinen Kanal und lasse ihn auf mehreren Servern gleichzeitig laufen – sollte einer davon plötzlich geschlossen werden, ist das kein Problem für Dich. Und bist Du erst Teil der Red-Matrix, musst Du Dich nie wieder mehrfach anmelden, selbst wenn Du Seiten auf einem andere Red-Server betrachtest. Zot ist, was die Red-Matrix besonders macht. [size=large][b]Erste Schritte[/b][/size] [zrl=[baseurl]/help/Privacy]Datenschutz[/zrl] @@ -18,6 +18,7 @@ Zot ist das großartige neue Kommunikationsprotokoll, das extra für die Red-Mat [zrl=[baseurl]/help/accounts_profiles_channels_basics]Du in der Red-Matrix: Konten, Profile und Kanäle kurz erklärt[/zrl] [zrl=[baseurl]/help/profiles]Profile[/zrl] [zrl=[baseurl]/help/channels]Kanäle[/zrl] +[zrl=[baseurl]/help/roles]Zugriffsrechte-Kategorien und Kanaltypen[/zrl] [zrl=[baseurl]/help/first-post]Dein erster Beitrag[/zrl] [zrl=[baseurl]/help/connecting_to_channels]Sich mit anderen Kanälen verbinden[/zrl] [zrl=[baseurl]/help/permissions]Zugriffsrechte und Verschlüsselung: Du hast alles unter Kontrolle[/zrl] diff --git a/doc/de/registration.bb b/doc/de/registration.bb index fa331e561..c7aaac55e 100644 --- a/doc/de/registration.bb +++ b/doc/de/registration.bb @@ -12,7 +12,7 @@ Gib ein Passwort Deiner Wahl ein und wiederhole es in der zweiten Box, um sicher [b]Nutzungsbedingungen[/b] -Klicke auf den Link, um die Nutzungsbedingungen dieses Servers zu lesen. Wenn Du sie gelesen hast, setze den Haken im Registrierungsformular, um sie zu akzeptieren. +Klicke auf den Link, um die [zrl=[baseurl]/help/TermsOfService]Nutzungsbedingungen[/zrl] dieses Servers zu lesen. Wenn Du sie gelesen hast, setze den Haken im Registrierungsformular, um sie zu akzeptieren. [b]Registrieren[/b] -- cgit v1.2.3 From b29a968be8df52cd7c9b6d5bebb618534788337c Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sat, 8 Nov 2014 00:17:53 +0000 Subject: Document reinstalling, or saying don't do that without explicitly stating don't do that. --- doc/faq_admins.bb | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/doc/faq_admins.bb b/doc/faq_admins.bb index e4541035b..ec4f8d969 100644 --- a/doc/faq_admins.bb +++ b/doc/faq_admins.bb @@ -38,11 +38,19 @@ valid SSL certificate rather than disabling port 443. [b]What do I need to do when moving my hub to a different server[/b] 1) Git clone on the new server. Repeat the process for any custom themes, and addons. -2) Copy .htconfig.php +2) Rsync .htconfig.php 3) Rsync everything in store/ -4) Rsync everything in custom/ (this will only exist if you have custom modules) +4) Rsync everything in mod/site/ and view/site (these will only exist if you have custom modules) 5) Dump and restore DB. +[*] +[b]How do I reinstall an existing hub on the same server?[/b] + +1) [code]git reset --hard HEAD[/code] will reset all files to their upstream defaults. This will not reset any local files that do not also exist upstream. Eg, if you have local changes to mod/channel.php, this will reset them - but will not reset any changes in mod/site/channel.php +2) If you absolutely must reinstall - for example, if you need to upgrade operating system - follow the steps for moving to a different server, but instead of using rsync, backup and restore some other way. + +Do not reinstall a hub with a fresh database and fresh .htconfig.php unless as a very last resort. Creating a temporary account and ask for help via a support channel for non-trivial reinstalls is preferable to reinstalling fresh. + [*] [b]How do I set the default homepage for logged out viewers?[/b] -- cgit v1.2.3