From f84453497bd5ef4eba8bca84917b8e82d784937a Mon Sep 17 00:00:00 2001 From: habeascodice Date: Tue, 7 Oct 2014 22:34:30 -0700 Subject: [PATCH 001/176] x --- include/photo/photo_driver.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php index 42997060b..15eac5a6d 100644 --- a/include/photo/photo_driver.php +++ b/include/photo/photo_driver.php @@ -8,6 +8,7 @@ function photo_factory($data, $type = null) { if(class_exists('Imagick') && !$ignore_imagick) { $v = Imagick::getVersion(); preg_match('/ImageMagick ([0-9]+\.[0-9]+\.[0-9]+)/', $v['versionString'], $m); + logger('image v='.$v.',v[ver]='.$v['versionString'].',matches='.var_export($m, true), LOGGER_DEBUG); if(version_compare($m[1],'6.6.7') >= 0) { require_once('include/photo/photo_imagick.php'); $ph = new photo_imagick($data,$type); From c854f8c238da2df08b52249142ad24ef66e422d1 Mon Sep 17 00:00:00 2001 From: habeascodice Date: Sat, 11 Oct 2014 05:44:31 -0700 Subject: [PATCH 002/176] Revert "x" This reverts commit f84453497bd5ef4eba8bca84917b8e82d784937a. --- include/photo/photo_driver.php | 1 - 1 file changed, 1 deletion(-) diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php index 9cd05e26e..508d82957 100644 --- a/include/photo/photo_driver.php +++ b/include/photo/photo_driver.php @@ -8,7 +8,6 @@ function photo_factory($data, $type = null) { if(class_exists('Imagick') && !$ignore_imagick) { $v = Imagick::getVersion(); preg_match('/ImageMagick ([0-9]+\.[0-9]+\.[0-9]+)/', $v['versionString'], $m); - logger('image v='.$v.',v[ver]='.$v['versionString'].',matches='.var_export($m, true), LOGGER_DEBUG); if(version_compare($m[1],'6.6.7') >= 0) { require_once('include/photo/photo_imagick.php'); $ph = new photo_imagick($data,$type); From fc12123329133cea39f27615a7c24c57e5b4a35d Mon Sep 17 00:00:00 2001 From: habeascodice Date: Mon, 20 Oct 2014 04:49:44 -0700 Subject: [PATCH 003/176] missing custom/ description --- doc/intro_for_developers.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/intro_for_developers.bb b/doc/intro_for_developers.bb index b44095d3d..7bd52aa12 100644 --- a/doc/intro_for_developers.bb +++ b/doc/intro_for_developers.bb @@ -6,6 +6,8 @@ [boot.php] Every process uses this to bootstrap the application structure +[custom] site-specific overrides of modules in mod/, excluded from git + [doc] Help Files [images] core required images From 2982212797dd64e1be13de20dc158842734ee5f8 Mon Sep 17 00:00:00 2001 From: marijus Date: Fri, 31 Oct 2014 14:33:41 +0100 Subject: [PATCH 004/176] more work on photo upload --- mod/photos.php | 12 ++++----- view/css/mod_photos.css | 15 +++-------- view/css/widgets.css | 3 --- view/theme/redbasic/css/style.css | 10 +++++--- view/tpl/photos_upload.tpl | 41 ++++++++++++++++++++----------- 5 files changed, 41 insertions(+), 40 deletions(-) diff --git a/mod/photos.php b/mod/photos.php index 6aacd2955..a0f11860d 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -540,12 +540,8 @@ function photos_content(&$a) { 'addon_text' => $uploader, 'default_upload' => true); - call_hooks('photo_upload_form',$ret); - $default_upload = '
-
'; - /* Show space usage */ $r = q("select sum(size) as total from photo where aid = %d and scale = 0 ", @@ -584,15 +580,17 @@ function photos_content(&$a) { '$sessid' => session_id(), '$usage' => $usage_message, '$nickname' => $a->data['channel']['channel_address'], - '$newalbum' => t('Enter a new album name or select an existing one:'), + '$newalbum_label' => t('Enter a new album name'), + '$newalbum_placeholder' => t('or select an existing one (doubleclick)'), '$nosharetext' => t('Do not show a status post for this upload'), '$albums' => $albums['albums'], '$selname' => $selname, '$permissions' => t('Permissions'), '$aclselect' => $aclselect_e, '$uploader' => $ret['addon_text'], - '$default' => (($ret['default_upload']) ? $default_upload : ''), - '$uploadurl' => $ret['post_url'] + '$default' => (($ret['default_upload']) ? true : false), + '$uploadurl' => $ret['post_url'], + '$submit' => t('Submit') )); diff --git a/view/css/mod_photos.css b/view/css/mod_photos.css index 3832ea1a6..89041bd09 100644 --- a/view/css/mod_photos.css +++ b/view/css/mod_photos.css @@ -22,24 +22,16 @@ margin-bottom: 25px; } -#photos-upload-noshare { - margin-bottom: 10px; +#photos-upload-album { + width: 100%; } -#photos-upload-spacer, -#photos-upload-new-end { - margin-top: 25px; -} #photos-upload-new-end, #photos-upload-exist-end { clear: both; } #photos-upload-exist-end { margin-bottom: 15px; } -#photos-upload-submit { - margin-top: 15px; -} - #photos-upload-select-files-text { margin-top: 15px; @@ -63,8 +55,9 @@ margin-bottom: 15px; } -#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end, #photo-edit-rotate-end { +#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 { diff --git a/view/css/widgets.css b/view/css/widgets.css index 593e051da..df113b12e 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -26,9 +26,6 @@ /* search */ #search-text { - border: 1px solid #ccc; - padding: 5px; - line-height: 1.5; border-top-right-radius: 0px; border-bottom-right-radius: 0px; } diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 31b769460..5ffc33d31 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -13,7 +13,7 @@ html { } body { - font-family: arial,freesans,sans-serif; + font-family: sans-serif, arial, freesans; font-size: $body_font_size; background-color: $bgcolour; background-image: url('$background_image'); @@ -37,7 +37,7 @@ h5, .h5, h6, .h6 { } .jslider { - font-family: arial,freesans,sans-serif; + font-family: sans-serif, arial, freesans; } abbr { @@ -84,17 +84,19 @@ a.btn-success { input[type="text"], input[type="password"], input[type="submit"], +input[type="file"], select, textarea { - font-family: arial,freesans,sans-serif; + font-family: sans-serif, arial, freesans; font-size: $body_font_size; } input { + padding: 5px; + line-height: 1.5; border: 1px solid $input_border; -moz-border-radius: $radiuspx; border-radius: $radiuspx; - padding: 3px; } input[type="submit"] { diff --git a/view/tpl/photos_upload.tpl b/view/tpl/photos_upload.tpl index 3db292f02..4c53a7c62 100755 --- a/view/tpl/photos_upload.tpl +++ b/view/tpl/photos_upload.tpl @@ -8,11 +8,11 @@
-
- -
-
- + + +
+ + {{foreach $albums as $al}} {{if $al.text}} @@ -22,27 +22,38 @@
+ {{$aclselect}} + + {{if $default}} +
+ +
+
+ + +
+ {{/if}} +
-
- - +
+
+ {{if $uploader}} +
- - {{$aclselect}} -
- -
- {{$uploader}} + {{/if}} - {{$default}}
From d9f2944565f3bc17b21ddbbde85b3083a003f477 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Fri, 31 Oct 2014 16:09:48 +0100 Subject: [PATCH 005/176] Fix problem with default birth date --- include/datetime.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/datetime.php b/include/datetime.php index fe0f29c7a..00bac8ad1 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -134,7 +134,10 @@ function dob($dob) { if(! $f) $f = 'ymd'; - $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),mktime(0,0,0,$month,$day,$year),'dob'); + if ($dob && $dob != '0000-00-00') + $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),mktime(0,0,0,$month,$day,$year),'dob'); + else + $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),false,'dob'); return $o; } From 5d1bb1b6854b4601eedaa9d39a40832b29d434e5 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 31 Oct 2014 16:09:46 +0000 Subject: [PATCH 006/176] Smarty3 now lives in store --- view/tpl/smarty3/README | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 view/tpl/smarty3/README diff --git a/view/tpl/smarty3/README b/view/tpl/smarty3/README deleted file mode 100644 index 78ff8d9a1..000000000 --- a/view/tpl/smarty3/README +++ /dev/null @@ -1,4 +0,0 @@ -view/tpl/smarty3 - -This directory must exist and be writeable by the webserver in order to store compiled template files, which are created dynamically. Please see the installation instructions. - From 5d151b988605bc5aedbef65b687a43dedbc574e9 Mon Sep 17 00:00:00 2001 From: marijus Date: Fri, 31 Oct 2014 20:25:43 +0100 Subject: [PATCH 007/176] do not reload page for photo upload --- mod/photos.php | 20 ++++++++------------ view/css/mod_photos.css | 5 ++--- view/theme/redbasic/css/style.css | 14 +++++--------- view/tpl/album_edit.tpl | 2 +- view/tpl/photo_album.tpl | 3 ++- view/tpl/photo_albums.tpl | 8 ++------ view/tpl/photo_view.tpl | 2 +- view/tpl/photos_recent.tpl | 3 ++- view/tpl/photos_upload.tpl | 12 +++--------- 9 files changed, 26 insertions(+), 43 deletions(-) diff --git a/mod/photos.php b/mod/photos.php index a0f11860d..d1f2b4993 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -476,11 +476,9 @@ function photos_content(&$a) { if(argc() > 3) { $datatype = argv(2); $datum = argv(3); - } - elseif((argc() > 2) && (argv(2) === 'upload')) - $datatype = 'upload'; - else + } else { $datatype = 'summary'; + } if(argc() > 4) $cmd = argv(4); @@ -528,11 +526,7 @@ function photos_content(&$a) { * Display upload form */ - if($datatype === 'upload') { - if(! ($can_post)) { - notice( t('Permission denied.')); - return; - } + if( $can_post) { $uploader = ''; @@ -575,7 +569,7 @@ function photos_content(&$a) { $albums = ((array_key_exists('albums', $a->data)) ? $a->data['albums'] : photos_albums_list($a->data['channel'],$a->data['observer'])); $tpl = get_markup_template('photos_upload.tpl'); - $o .= replace_macros($tpl,array( + $upload_form = replace_macros($tpl,array( '$pagename' => t('Upload Photos'), '$sessid' => session_id(), '$usage' => $usage_message, @@ -594,7 +588,6 @@ function photos_content(&$a) { )); - return $o; } /* @@ -725,7 +718,8 @@ function photos_content(&$a) { '$can_post' => $can_post, '$upload' => array(t('Upload'), $a->get_baseurl() . '/photos/' . $a->data['channel']['channel_address'] . '/upload/' . bin2hex($album)), '$order' => $order, - + '$upload_form' => $upload_form, + '$usage' => $usage_message )); } @@ -1234,6 +1228,8 @@ function photos_content(&$a) { '$can_post' => $can_post, '$upload' => array(t('Upload'), $a->get_baseurl().'/photos/'.$a->data['channel']['channel_address'].'/upload'), '$photos' => $photos, + '$upload_form' => $upload_form, + '$usage' => $usage_message )); } diff --git a/view/css/mod_photos.css b/view/css/mod_photos.css index 89041bd09..061f2f40a 100644 --- a/view/css/mod_photos.css +++ b/view/css/mod_photos.css @@ -66,10 +66,9 @@ #photo-edit-edit, -#photo-album-edit-wrapper { +#photo-album-edit-wrapper, +#photo-upload-form { display: none; - padding: 7px 10px; - margin-bottom: 3px; } #photo-album-edit-submit, #photo-album-edit-drop { diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 5ffc33d31..114098465 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -706,9 +706,7 @@ footer { cursor: pointer; } -#photo-album-edit-wrapper, -#photo-view-wrapper, -#photo-edit-edit { +#photo-view-wrapper { background-color: $item_colour; } @@ -2335,12 +2333,10 @@ aside .nav-pills > li > a { margin-bottom: 0px; } -.section-title-submenu { - margin-top: 10px; -} - -.section-title-submenu a { - margin-right: 10px; +.section-content-tools-wrapper { + padding: 7px 10px; + background-color: $comment_item_colour; + margin-bottom: 3px; } .section-content-wrapper { diff --git a/view/tpl/album_edit.tpl b/view/tpl/album_edit.tpl index a65887d3c..a6815352a 100755 --- a/view/tpl/album_edit.tpl +++ b/view/tpl/album_edit.tpl @@ -1,4 +1,4 @@ -
+
diff --git a/view/tpl/photo_album.tpl b/view/tpl/photo_album.tpl index 0a26fc367..2c0b8e5b9 100755 --- a/view/tpl/photo_album.tpl +++ b/view/tpl/photo_album.tpl @@ -5,13 +5,14 @@ {{/if}} {{if $can_post}} -  {{$upload.0}} + {{/if}}

{{$album}}

+{{$upload_form}} {{$album_edit.1}}
{{foreach $photos as $photo}} diff --git a/view/tpl/photo_albums.tpl b/view/tpl/photo_albums.tpl index 0f8b809ac..de1105bbc 100755 --- a/view/tpl/photo_albums.tpl +++ b/view/tpl/photo_albums.tpl @@ -1,17 +1,13 @@ diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl index c79cd7d56..d1b077f36 100755 --- a/view/tpl/photo_view.tpl +++ b/view/tpl/photo_view.tpl @@ -31,7 +31,7 @@
-
+
diff --git a/view/tpl/photos_recent.tpl b/view/tpl/photos_recent.tpl index 91b088c93..7727abcea 100755 --- a/view/tpl/photos_recent.tpl +++ b/view/tpl/photos_recent.tpl @@ -1,10 +1,11 @@
{{if $can_post}} -  {{$upload.0}} + {{/if}}

{{$title}}

+{{$upload_form}}
{{foreach $photos as $photo}} {{include file="photo_top.tpl"}} diff --git a/view/tpl/photos_upload.tpl b/view/tpl/photos_upload.tpl index 4c53a7c62..5bb0092d6 100755 --- a/view/tpl/photos_upload.tpl +++ b/view/tpl/photos_upload.tpl @@ -1,18 +1,12 @@ -
-
-
{{$usage}}
-

{{$pagename}}

-
-
- -
+
+
- + {{foreach $albums as $al}} {{if $al.text}} From e32a339a3d8b29434c107a759c54abffba02eed4 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 1 Nov 2014 00:36:01 -0700 Subject: [PATCH 008/176] doc updates --- doc/html/Importer_8php.html | 126 ++++++ ...Redmatrix_1_1Import_1_1Import-members.html | 132 ++++++ .../classRedmatrix_1_1Import_1_1Import.html | 407 ++++++++++++++++++ .../classRedmatrix_1_1Import_1_1Import.js | 18 + .../dir_7edbbd0f8c514efef79942dcdc21f738.html | 112 +++++ .../dir_7edbbd0f8c514efef79942dcdc21f738.js | 6 + doc/html/namespaceRedmatrix.html | 120 ++++++ doc/html/namespaceRedmatrix.js | 4 + doc/html/namespaceRedmatrix_1_1Import.html | 120 ++++++ doc/html/namespaceRedmatrix_1_1Import.js | 4 + 10 files changed, 1049 insertions(+) create mode 100644 doc/html/Importer_8php.html create mode 100644 doc/html/classRedmatrix_1_1Import_1_1Import-members.html create mode 100644 doc/html/classRedmatrix_1_1Import_1_1Import.html create mode 100644 doc/html/classRedmatrix_1_1Import_1_1Import.js create mode 100644 doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.html create mode 100644 doc/html/dir_7edbbd0f8c514efef79942dcdc21f738.js create mode 100644 doc/html/namespaceRedmatrix.html create mode 100644 doc/html/namespaceRedmatrix.js create mode 100644 doc/html/namespaceRedmatrix_1_1Import.html create mode 100644 doc/html/namespaceRedmatrix_1_1Import.js diff --git a/doc/html/Importer_8php.html b/doc/html/Importer_8php.html new file mode 100644 index 000000000..0eab9f03c --- /dev/null +++ b/doc/html/Importer_8php.html @@ -0,0 +1,126 @@ + + + + + + +The Red Matrix: include/Import/Importer.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Matrix +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
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 From a659ac8952306b5a78a468051d3c318f50294bcf Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 1 Nov 2014 00:36:21 -0700 Subject: [PATCH 009/176] 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 From 50c16c394fe2d966c62d30930600212a4e33303e Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 1 Nov 2014 01:52:27 -0700 Subject: [PATCH 010/176] 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); + if(! $x) + continue; + + 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']) + ); } - 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']) - ); } } From 30281b161c6e3089a89c5035498bb72a72e66e4a Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 1 Nov 2014 20:30:13 +0100 Subject: [PATCH 011/176] 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}}

From dc5e05d3349bc493e4c1f33fb2561bb80ddd0c7f Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 1 Nov 2014 23:55:36 +0100 Subject: [PATCH 012/176] even more photos work --- mod/photos.php | 20 +++---- view/css/mod_photos.css | 62 ++------------------- view/tpl/album_edit.tpl | 40 +++++++------- view/tpl/photo_album.tpl | 19 ++++--- view/tpl/photo_view.tpl | 109 ++++++++++++++++++------------------- view/tpl/photos_upload.tpl | 15 ++--- 6 files changed, 104 insertions(+), 161 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}} -
@@ -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 ], From 26343b8856d6145b6c1fd62ff648e34b376eddc5 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Nov 2014 05:15:28 -0800 Subject: [PATCH 050/176] rev update --- util/messages.po | 1141 +++++++++++++++++++++++++--------------------- version.inc | 2 +- 2 files changed, 615 insertions(+), 528 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:588 +#: ../../mod/photos.php:585 ../../mod/photos.php:664 ../../mod/photos.php:942 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../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:536 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../mod/connedit.php:542 -msgid "inherited" -msgstr "" - -#: ../../mod/connedit.php:544 -msgid "Connection has no individual permissions!" +#: ../../mod/connedit.php:543 +msgid "Apply the permissions indicated on this page to all new connections." msgstr "" #: ../../mod/connedit.php:545 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../mod/connedit.php:551 +msgid "inherited" +msgstr "" + +#: ../../mod/connedit.php:553 +msgid "Connection has no individual permissions!" +msgstr "" + +#: ../../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 From 1cc1bc8e811ccee8dedd340dcaa156c7c1a3fed1 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Nov 2014 05:15:39 -0800 Subject: [PATCH 051/176] 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']; + } } From 961049f5faf04edcf3dc5485e76d81460b929efb Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Nov 2014 12:16:13 -0800 Subject: [PATCH 052/176] 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); From 55f64c37364a1e4ac3e57a6af2953df196589c49 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Nov 2014 13:06:56 -0800 Subject: [PATCH 053/176] 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\]/'; From a22ba7629b809f9855c190480ebb250452dfeb16 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 7 Nov 2014 22:19:17 +0100 Subject: [PATCH 054/176] update to German strings --- view/de/messages.po | 12925 +++++++++++++++++++++--------------------- view/de/strings.php | 2688 ++++----- 2 files changed, 7919 insertions(+), 7694 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,220 +34,1002 @@ 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)" - -#: ../../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" - -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Theme-Einstellungen" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" -msgstr "Schema" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Schmale Navigationsleiste" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Hintergrundfarbe der Navigationsleiste" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Farbverlauf der Navigationsleiste: Farbe oben" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Farbverlauf der Navigationsleiste: Farbe unten" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Navigations-Button aktiv: Farbe für Farbverlauf oben" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Navigations-Button aktiv: Farbe für Farbverlauf unten" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Farbe für den Rand der Navigationsleiste" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Farbe für die Icons der Navigationsleiste" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Farbe für aktive Icons der Navigationsleiste" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "Farbe für Links" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Farbe der Schrift des Banners" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Hintergrundfarbe" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Hintergrundbild" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Hintergrundfarbe für Beiträge" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Hintergrundfarbe für Kommentare" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Farbe des Randes von Kommentaren" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Einzug für Kommentare" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Grundfarbe für Beitrags-Icons" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Schriftgröße für die ganze Applikation" - -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Schriftfarbe für Posts und Kommentare" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Ecken-Radius" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Schattentiefe von Fotos" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" -msgstr "Maximalbreite der Unterhaltungsbereiche" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" -msgstr "Konversationsbereich zentrieren" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Größe der Avatare von Themenstartern" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Größe der Avatare von Kommentatoren" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" -msgstr "Schräge Fotoalben" - -#: ../../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?" - -#: ../../boot.php:1294 +#: ../../include/dba/dba_driver.php:50 #, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../boot.php:1297 -#, php-format -msgid "Update Error at %s" -msgstr "Aktualisierungsfehler auf %s" +#: ../../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" -#: ../../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:126 +msgid "Site Admin" +msgstr "Hub-Administration" -#: ../../boot.php:1472 ../../include/nav.php:163 ../../mod/register.php:220 -msgid "Register" -msgstr "Registrieren" +#: ../../include/apps.php:127 ../../include/conversation.php:1572 +#: ../../include/nav.php:117 +msgid "Bookmarks" +msgstr "Lesezeichen" -#: ../../boot.php:1495 ../../include/nav.php:95 ../../include/nav.php:128 -msgid "Logout" -msgstr "Abmelden" +#: ../../include/apps.php:128 +msgid "Address Book" +msgstr "Adressbuch" -#: ../../boot.php:1496 ../../include/nav.php:125 ../../include/apps.php:129 +#: ../../include/apps.php:129 ../../include/nav.php:125 ../../boot.php:1496 msgid "Login" msgstr "Anmelden" -#: ../../boot.php:1498 ../../include/contact_selectors.php:79 -#: ../../mod/admin.php:728 ../../mod/admin.php:737 -msgid "Email" -msgstr "E-Mail" +#: ../../include/apps.php:130 ../../include/nav.php:216 +#: ../../mod/manage.php:148 +msgid "Channel Manager" +msgstr "Kanal-Manager" -#: ../../boot.php:1499 -msgid "Password" -msgstr "Kennwort" +#: ../../include/apps.php:131 ../../include/nav.php:190 +msgid "Matrix" +msgstr "Matrix" -#: ../../boot.php:1500 -msgid "Remember me" -msgstr "Angaben speichern" +#: ../../include/apps.php:132 ../../include/widgets.php:524 +#: ../../include/nav.php:218 ../../mod/admin.php:953 ../../mod/admin.php:1158 +msgid "Settings" +msgstr "Einstellungen" -#: ../../boot.php:1505 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" +#: ../../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" -#: ../../boot.php:1506 ../../mod/lostpass.php:85 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" +#: ../../include/apps.php:134 ../../include/conversation.php:1583 +#: ../../include/nav.php:121 ../../mod/webpages.php:129 +msgid "Webpages" +msgstr "Webseiten" -#: ../../boot.php:1570 -msgid "permission denied" -msgstr "Zugriff verweigert" +#: ../../include/apps.php:135 ../../include/nav.php:193 +msgid "Channel Home" +msgstr "Mein Kanal" -#: ../../boot.php:1571 -msgid "Got Zot?" -msgstr "Haste schon Zot?" +#: ../../include/apps.php:136 ../../include/identity.php:1115 +#: ../../include/identity.php:1233 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" -#: ../../boot.php:2001 -msgid "toggle mobile" -msgstr "auf/von mobile Ansicht wechseln" +#: ../../include/apps.php:137 ../../include/conversation.php:1537 +#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" + +#: ../../include/apps.php:138 ../../include/nav.php:212 +#: ../../mod/events.php:431 +msgid "Events" +msgstr "Veranstaltungen" + +#: ../../include/apps.php:139 ../../include/nav.php:176 +#: ../../mod/directory.php:226 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../include/apps.php:140 ../../include/nav.php:168 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" +msgstr "Hilfe" + +#: ../../include/apps.php:141 ../../include/nav.php:204 +msgid "Mail" +msgstr "Mail" + +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Laune" + +#: ../../include/apps.php:143 ../../include/conversation.php:951 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../include/apps.php:144 ../../include/nav.php:111 +msgid "Chat" +msgstr "Chat" + +#: ../../include/apps.php:145 ../../include/text.php:822 +#: ../../include/text.php:834 ../../include/nav.php:173 +#: ../../mod/search.php:30 +msgid "Search" +msgstr "Suche" + +#: ../../include/apps.php:146 +msgid "Probe" +msgstr "Testen" + +#: ../../include/apps.php:147 +msgid "Suggest" +msgstr "Empfehlungen" + +#: ../../include/apps.php:148 +msgid "Random Channel" +msgstr "Zufälliger Kanal" + +#: ../../include/apps.php:149 +msgid "Invite" +msgstr "Einladen" + +#: ../../include/apps.php:150 +msgid "Features" +msgstr "Funktionen" + +#: ../../include/apps.php:151 +msgid "Language" +msgstr "Sprache" + +#: ../../include/apps.php:152 +msgid "Post" +msgstr "Beitrag" + +#: ../../include/apps.php:153 +msgid "Profile Photo" +msgstr "Profilfoto" + +#: ../../include/apps.php:242 ../../mod/settings.php:81 +#: ../../mod/settings.php:544 +msgid "Update" +msgstr "Aktualisieren" + +#: ../../include/apps.php:242 +msgid "Install" +msgstr "Installieren" + +#: ../../include/apps.php:247 +msgid "Purchase" +msgstr "Kaufen" + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." + +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "Keine Quelldatei." + +#: ../../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 "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" + +#: ../../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/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." + +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:589 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:605 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:629 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:680 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:684 +msgid "database storage failed." +msgstr "Speichern in der Datenbank 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/conversation.php:123 ../../include/text.php:1746 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "Ereignis" + +#: ../../include/conversation.php:126 ../../mod/like.php:89 +msgid "channel" +msgstr "Kanal" + +#: ../../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/conversation.php:150 ../../include/text.php:1751 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "Kommentar" + +#: ../../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/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/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ist jetzt mit %2$s verbunden" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" + +#: ../../include/conversation.php:243 ../../include/text.php:901 +msgid "poked" +msgstr "stupste" + +#: ../../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/conversation.php:637 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Auswählen" + +#: ../../include/conversation.php:645 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Private Nachricht" + +#: ../../include/conversation.php:652 ../../include/ItemObject.php:194 +msgid "Message signature validated" +msgstr "Signatur überprüft" + +#: ../../include/conversation.php:653 ../../include/ItemObject.php:195 +msgid "Message signature incorrect" +msgstr "Signatur nicht korrekt" + +#: ../../include/conversation.php:674 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" + +#: ../../include/conversation.php:689 +msgid "Categories:" +msgstr "Kategorien:" + +#: ../../include/conversation.php:690 +msgid "Filed under:" +msgstr "Gespeichert unter:" + +#: ../../include/conversation.php:698 ../../include/ItemObject.php:265 +#, php-format +msgid " from %s" +msgstr "von %s" + +#: ../../include/conversation.php:701 ../../include/ItemObject.php:268 +#, php-format +msgid "last edited: %s" +msgstr "zuletzt bearbeitet: %s" + +#: ../../include/conversation.php:702 ../../include/ItemObject.php:269 +#, php-format +msgid "Expires: %s" +msgstr "Verfällt: %s" + +#: ../../include/conversation.php:717 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" + +#: ../../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/conversation.php:843 +msgid "remove" +msgstr "lösche" + +#: ../../include/conversation.php:847 ../../include/nav.php:257 +msgid "Loading..." +msgstr "Lädt ..." + +#: ../../include/conversation.php:848 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" + +#: ../../include/conversation.php:942 +msgid "View Source" +msgstr "Quelle anzeigen" + +#: ../../include/conversation.php:943 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" + +#: ../../include/conversation.php:944 +msgid "View Status" +msgstr "Status ansehen" + +#: ../../include/conversation.php:945 ../../include/nav.php:99 +#: ../../mod/connedit.php:421 ../../mod/connedit.php:535 +msgid "View Profile" +msgstr "Profil ansehen" + +#: ../../include/conversation.php:946 +msgid "View Photos" +msgstr "Fotos ansehen" + +#: ../../include/conversation.php:947 +msgid "Matrix Activity" +msgstr "Matrix-Aktivität" + +#: ../../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/conversation.php:949 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: ../../include/conversation.php:950 +msgid "Send PM" +msgstr "Sende PN" + +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." + +#: ../../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/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/conversation.php:1036 +msgid "and" +msgstr "und" + +#: ../../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/conversation.php:1040 +#, php-format +msgid "%s like this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1040 +#, php-format +msgid "%s don't like this." +msgstr "%s gefällt das nicht." + +#: ../../include/conversation.php:1097 +msgid "Visible to everybody" +msgstr "Sichtbar für jeden" + +#: ../../include/conversation.php:1098 ../../mod/mail.php:170 +#: ../../mod/mail.php:282 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" + +#: ../../include/conversation.php:1099 +msgid "Please enter a video link/URL:" +msgstr "Gib einen Video-Link/URL ein:" + +#: ../../include/conversation.php:1100 +msgid "Please enter an audio link/URL:" +msgstr "Gib einen Audio-Link/URL ein:" + +#: ../../include/conversation.php:1101 +msgid "Tag term:" +msgstr "Schlagwort:" + +#: ../../include/conversation.php:1102 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" + +#: ../../include/conversation.php:1103 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" + +#: ../../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/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/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/conversation.php:1130 ../../mod/editwebpage.php:139 +msgid "Page link title" +msgstr "Seitentitel-Link" + +#: ../../include/conversation.php:1133 +msgid "Post as" +msgstr "Posten als" + +#: ../../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/conversation.php:1135 +msgid "upload photo" +msgstr "Foto hochladen" + +#: ../../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/conversation.php:1137 +msgid "attach file" +msgstr "Datei anfügen" + +#: ../../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/conversation.php:1139 +msgid "web link" +msgstr "Web-Link" + +#: ../../include/conversation.php:1140 +msgid "Insert video link" +msgstr "Video-Link einfügen" + +#: ../../include/conversation.php:1141 +msgid "video link" +msgstr "Video-Link" + +#: ../../include/conversation.php:1142 +msgid "Insert audio link" +msgstr "Audio-Link einfügen" + +#: ../../include/conversation.php:1143 +msgid "audio link" +msgstr "Audio-Link" + +#: ../../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/conversation.php:1145 +msgid "set location" +msgstr "Standort" + +#: ../../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/conversation.php:1147 +msgid "clear location" +msgstr "Standort löschen" + +#: ../../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/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/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/conversation.php:1155 +msgid "permissions" +msgstr "Berechtigungen" + +#: ../../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/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/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/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/conversation.php:1181 ../../mod/events.php:569 +#: ../../mod/editpost.php:150 +msgid "OK" +msgstr "Ok" + +#: ../../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/conversation.php:1426 +msgid "Discover" +msgstr "Entdecken" + +#: ../../include/conversation.php:1429 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" + +#: ../../include/conversation.php:1434 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: ../../include/conversation.php:1437 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" + +#: ../../include/conversation.php:1441 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: ../../include/conversation.php:1444 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" + +#: ../../include/conversation.php:1449 ../../include/widgets.php:89 +msgid "Personal" +msgstr "Persönlich" + +#: ../../include/conversation.php:1452 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" + +#: ../../include/conversation.php:1458 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" +msgstr "Neu" + +#: ../../include/conversation.php:1461 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" + +#: ../../include/conversation.php:1467 +msgid "Starred" +msgstr "Markiert" + +#: ../../include/conversation.php:1470 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" + +#: ../../include/conversation.php:1477 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1480 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" + +#: ../../include/conversation.php:1516 ../../mod/admin.php:867 +msgid "Channel" +msgstr "Kanal" + +#: ../../include/conversation.php:1519 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: ../../include/conversation.php:1528 +msgid "About" +msgstr "Über" + +#: ../../include/conversation.php:1531 +msgid "Profile Details" +msgstr "Profil-Details" + +#: ../../include/conversation.php:1540 ../../include/photos.php:340 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/conversation.php:1549 +msgid "Files and Storage" +msgstr "Dateien und Speicher" + +#: ../../include/conversation.php:1559 ../../include/conversation.php:1562 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../../include/conversation.php:1575 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" + +#: ../../include/conversation.php:1586 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" + +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "Neuer Beitrag wurde erzeugt" + +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "hat %s's Beitrag kommentiert" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Neue Seite" + +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 +#: ../../mod/webpages.php:134 ../../mod/layouts.php:125 +msgid "View" +msgstr "Ansicht" + +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 +msgid "Actions" +msgstr "Aktionen" + +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 +msgid "Page Link" +msgstr "Seiten-Link" + +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 +msgid "Title" +msgstr "Titel" + +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 +msgid "Created" +msgstr "Erstellt" + +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 +msgid "Edited" +msgstr "Geändert" + +#: ../../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/event.php:11 ../../include/bb2diaspora.php:463 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\\\, H:i" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:469 +msgid "Starts:" +msgstr "Beginnt:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:477 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../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/event.php:326 +msgid "This event has been added to your calendar." +msgstr "Dieses Ereignis wurde zu Deinem Kalender hinzugefügt" + +#: ../../include/oembed.php:171 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: ../../include/oembed.php:180 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" + +#: ../../include/permissions.php:13 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" + +#: ../../include/permissions.php:14 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" + +#: ../../include/permissions.php:15 +msgid "Can view my photo albums" +msgstr "Kann meine Fotoalben betrachten" + +#: ../../include/permissions.php:16 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" + +#: ../../include/permissions.php:17 +msgid "Can view my file storage" +msgstr "Kann meine Dateiordner lesen" + +#: ../../include/permissions.php:18 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" + +#: ../../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/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../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/permissions.php:24 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" +msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" + +#: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" + +#: ../../include/permissions.php:26 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" + +#: ../../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/permissions.php:28 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" + +#: ../../include/permissions.php:29 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" + +#: ../../include/permissions.php:30 +msgid "Can write to my file storage" +msgstr "Kann in meine Dateiordner schreiben" + +#: ../../include/permissions.php:31 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" + +#: ../../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/permissions.php:33 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" + +#: ../../include/permissions.php:35 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" + +#: ../../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/permissions.php:785 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Mostly Public" +msgstr "Weitgehend öffentlich" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Restricted" +msgstr "Beschränkt" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +msgid "Private" +msgstr "Privat" + +#: ../../include/permissions.php:787 +msgid "Community Forum" +msgstr "Forum" + +#: ../../include/permissions.php:789 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../include/permissions.php:791 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../include/permissions.php:792 +msgid "Celebrity/Soapbox" +msgstr "Mitteilungs-Kanal (keine Kommentare)" + +#: ../../include/permissions.php:792 +msgid "Group Repository" +msgstr "Gruppenarchiv" + +#: ../../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/permissions.php:794 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../include/activities.php:39 +msgid " and " +msgstr "und" + +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "öffentliches Profil" + +#: ../../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/activities.php:53 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" + +#: ../../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/bb2diaspora.php:384 +msgid "Attachments:" +msgstr "Anhänge:" #: ../../include/auth.php:116 msgid "Logged out." @@ -261,10 +1043,6 @@ msgstr "Authentifizierung fehlgeschlagen" msgid "Login failed." msgstr "Login fehlgeschlagen." -#: ../../include/comanche.php:35 -msgid "Default" -msgstr "Standard" - #: ../../include/RedDAV/RedBrowser.php:106 #: ../../include/RedDAV/RedBrowser.php:249 msgid "parent" @@ -272,7 +1050,7 @@ msgstr "Übergeordnetes Verzeichnis" #: ../../include/RedDAV/RedBrowser.php:130 msgid "Collection" -msgstr "Sammlung" +msgstr "Ordner" #: ../../include/RedDAV/RedBrowser.php:133 msgid "Principal" @@ -294,12 +1072,6 @@ msgstr "Posteingang für überwachte Kalender" 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/RedDAV/RedBrowser.php:223 #, php-format msgid "%1$s used" @@ -310,14 +1082,8 @@ msgstr "%1$s verwendet" msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s von %2$s verwendet (%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 "Dateien" - -#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:521 -#: ../../mod/settings.php:547 ../../mod/admin.php:868 +#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:520 +#: ../../mod/settings.php:546 ../../mod/admin.php:868 msgid "Name" msgstr "Name" @@ -333,120 +1099,101 @@ msgstr "Größe" msgid "Last Modified" msgstr "Zuletzt 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/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/RedDAV/RedBrowser.php:252 msgid "Total" msgstr "Summe" -#: ../../include/RedDAV/RedBrowser.php:304 +#: ../../include/RedDAV/RedBrowser.php:305 msgid "Create new folder" msgstr "Neuen Ordner anlegen" -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/new_channel.php:122 -#: ../../mod/mitem.php:142 ../../mod/menu.php:84 +#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:142 +#: ../../mod/menu.php:84 ../../mod/new_channel.php:122 msgid "Create" msgstr "Erstelle" -#: ../../include/RedDAV/RedBrowser.php:306 +#: ../../include/RedDAV/RedBrowser.php:307 msgid "Upload file" msgstr "Datei hochladen" -#: ../../include/RedDAV/RedBrowser.php:307 ../../mod/photos.php:745 -#: ../../mod/photos.php:1226 ../../mod/profile_photo.php:361 +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:728 +#: ../../mod/photos.php:1237 ../../mod/profile_photo.php:361 msgid "Upload" msgstr "Hochladen" -#: ../../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/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/photos.php:104 +#: ../../include/bookmarks.php:35 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" -#: ../../include/photos.php:111 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "Standard" -#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Häufig" -#: ../../include/photos.php:212 -msgid "Photo storage failed." -msgstr "Foto speichern schlug fehl" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" -#: ../../include/photos.php:340 ../../include/conversation.php:1540 -msgid "Photo Albums" -msgstr "Fotoalben" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" -#: ../../include/photos.php:344 -msgid "Upload New Photos" -msgstr "Lade neue Fotos hoch" +#: ../../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:1498 +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 @@ -525,519 +1272,149 @@ msgstr[1] "%d gemeinsame Verbindungen" msgid "show more" msgstr "mehr zeigen" -#: ../../include/activities.php:39 -msgid " and " -msgstr "und" +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "öffentliches Profil" +#: ../../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/activities.php:52 +#: ../../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/account.php:64 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt" + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden" + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Speichern der Account-Informationen fehlgeschlagen" + +#: ../../include/account.php:245 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" -#: ../../include/activities.php:53 +#: ../../include/account.php:313 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" -#: ../../include/activities.php:56 +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Administrator" + +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" + +#: ../../include/account.php:340 ../../include/account.php:397 #, 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 "Registration details for %s" +msgstr "Registrierungsdetails für %s" -#: ../../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/account.php:406 +msgid "Account approved." +msgstr "Account bestätigt." -#: ../../include/items.php:962 ../../include/items.php:1007 -msgid "(Unknown)" -msgstr "(Unbekannt)" - -#: ../../include/items.php:1163 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." - -#: ../../include/items.php:1165 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." - -#: ../../include/items.php:1167 -msgid "Visible to anybody in this network." -msgstr "Für jedes Mitglied der RedMatrix sichtbar." - -#: ../../include/items.php:1169 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." - -#: ../../include/items.php:1171 +#: ../../include/account.php:440 #, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." +msgid "Registration revoked for %s" +msgstr "Registrierung für %s widerrufen" -#: ../../include/items.php:1173 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Konto geprüft. Bitte melde Dich an!" -#: ../../include/items.php:1175 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." +#: ../../include/account.php:647 ../../include/account.php:649 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/items.php:1177 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." +#: ../../include/account.php:655 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../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/account.php:660 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../include/items.php:4365 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Sammlung nicht gefunden" +#: ../../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/items.php:4380 -msgid "Collection is empty." -msgstr "Sammlung ist leer." +#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" -#: ../../include/items.php:4387 +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "Design-Element installieren:" + +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "QR-Code" + +#: ../../include/bbcode.php:220 #, php-format -msgid "Collection: %s" -msgstr "Sammlung: %s" +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" -#: ../../include/items.php:4398 -#, php-format -msgid "Connection: %s" -msgstr "Verbindung: %s" +#: ../../include/bbcode.php:222 +msgid "post" +msgstr "Beitrag" -#: ../../include/items.php:4401 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." +#: ../../include/bbcode.php:621 +msgid "$1 spoiler" +msgstr "$1 Spoiler" -#: ../../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/bbcode.php:641 +msgid "$1 wrote:" +msgstr "$1 schrieb:" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Neues Fenster" +#: ../../include/dir_fns.php:56 +msgid "Sort Options" +msgstr "Sortieroptionen" -#: ../../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/dir_fns.php:57 +msgid "Alphabetic" +msgstr "alphabetisch" -#: ../../include/Contact.php:211 ../../mod/admin.php:649 -#, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "Entgegengesetzt alphabetisch" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "Neueste zuerst" -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "Jahr" +#: ../../include/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "Sichere Suche einschalten" -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "Monat" +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "Sichere Suche ausschalten" -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "Tag" - -#: ../../include/datetime.php:275 -msgid "never" -msgstr "Nie" - -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../include/datetime.php:284 -msgid "years" -msgstr "Jahre" - -#: ../../include/datetime.php:285 -msgid "months" -msgstr "Monate" - -#: ../../include/datetime.php:286 -msgid "week" -msgstr "Woche" - -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "Wochen" - -#: ../../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/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" - -#: ../../include/datetime.php:504 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:505 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" - -#: ../../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/identity.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Name ist zu lang" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Keine Account-Kennung" - -#: ../../include/identity.php:181 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." - -#: ../../include/identity.php:195 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." - -#: ../../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/identity.php:342 -msgid "Default Profile" -msgstr "Standard-Profil" - -#: ../../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/identity.php:635 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." - -#: ../../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/identity.php:846 ../../mod/profiles.php:750 -msgid "Change profile photo" -msgstr "Profilfoto ändern" - -#: ../../include/identity.php:852 -msgid "Profiles" -msgstr "Profile" - -#: ../../include/identity.php:852 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/bearbeiten" - -#: ../../include/identity.php:853 ../../mod/profiles.php:751 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" - -#: ../../include/identity.php:856 ../../include/nav.php:103 -msgid "Edit Profile" -msgstr "Profile bearbeiten" - -#: ../../include/identity.php:867 ../../mod/profiles.php:762 -msgid "Profile Image" -msgstr "Profilfoto:" - -#: ../../include/identity.php:870 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: ../../include/identity.php:871 ../../mod/profiles.php:645 -#: ../../mod/profiles.php:766 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: ../../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/identity.php:885 ../../include/identity.php:1122 -#: ../../mod/directory.php:158 -msgid "Gender:" -msgstr "Geschlecht:" - -#: ../../include/identity.php:886 ../../include/identity.php:1166 -#: ../../mod/directory.php:160 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:887 ../../include/identity.php:1177 -#: ../../mod/directory.php:162 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../include/identity.php:888 ../../mod/dirprofile.php:151 -msgid "Online Now" -msgstr "gerade online" - -#: ../../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/identity.php:967 ../../include/identity.php:1047 -msgid "F d" -msgstr "d. F" - -#: ../../include/identity.php:1012 ../../include/identity.php:1087 -#: ../../mod/ping.php:320 -msgid "[today]" -msgstr "[Heute]" - -#: ../../include/identity.php:1024 -msgid "Birthday Reminders" -msgstr "Geburtstags Erinnerungen" - -#: ../../include/identity.php:1025 -msgid "Birthdays this week:" -msgstr "Geburtstage in dieser Woche:" - -#: ../../include/identity.php:1080 -msgid "[No description]" -msgstr "[Keine Beschreibung]" - -#: ../../include/identity.php:1098 -msgid "Event Reminders" -msgstr "Veranstaltungs- Erinnerungen" - -#: ../../include/identity.php:1099 -msgid "Events this week:" -msgstr "Veranstaltungen in dieser Woche:" - -#: ../../include/identity.php:1112 ../../include/identity.php:1230 -#: ../../include/apps.php:136 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/identity.php:1120 ../../mod/settings.php:953 -msgid "Full Name:" -msgstr "Voller Name:" - -#: ../../include/identity.php:1127 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" - -#: ../../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/identity.php:1151 -msgid "j F, Y" -msgstr "j. F Y" - -#: ../../include/identity.php:1152 -msgid "j F" -msgstr "j. F" - -#: ../../include/identity.php:1159 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/identity.php:1163 -msgid "Age:" -msgstr "Alter:" - -#: ../../include/identity.php:1172 -#, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" - -#: ../../include/identity.php:1175 ../../mod/profiles.php:667 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" - -#: ../../include/identity.php:1179 ../../mod/profiles.php:669 -msgid "Hometown:" -msgstr "Heimatstadt:" - -#: ../../include/identity.php:1181 -msgid "Tags:" -msgstr "Schlagworte:" - -#: ../../include/identity.php:1183 ../../mod/profiles.php:670 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: ../../include/identity.php:1185 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/identity.php:1187 ../../mod/directory.php:164 -msgid "About:" -msgstr "Über:" - -#: ../../include/identity.php:1189 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" - -#: ../../include/identity.php:1191 ../../mod/profiles.php:673 -msgid "Likes:" -msgstr "Gefällt:" - -#: ../../include/identity.php:1193 ../../mod/profiles.php:674 -msgid "Dislikes:" -msgstr "Gefällt nicht:" - -#: ../../include/identity.php:1196 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" - -#: ../../include/identity.php:1198 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" - -#: ../../include/identity.php:1200 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: ../../include/identity.php:1202 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" - -#: ../../include/identity.php:1204 -msgid "Television:" -msgstr "Fernsehen:" - -#: ../../include/identity.php:1206 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" - -#: ../../include/identity.php:1208 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" - -#: ../../include/identity.php:1210 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" - -#: ../../include/identity.php:1212 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: ../../include/identity.php:1232 -msgid "Like this thing" -msgstr "Gefällt mir" - -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" - -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:134 -#: ../../mod/blocks.php:102 ../../mod/layouts.php:125 -msgid "View" -msgstr "Ansicht" - -#: ../../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/page_widgets.php:41 ../../mod/webpages.php:136 -msgid "Actions" -msgstr "Aktionen" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 -msgid "Page Link" -msgstr "Seiten-Link" - -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 -msgid "Title" -msgstr "Titel" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 -msgid "Created" -msgstr "Erstellt" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 -msgid "Edited" -msgstr "Geändert" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[no subject]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" +msgstr "Sicherer Modus" #: ../../include/taxonomy.php:210 msgid "Tags" @@ -1079,12 +1456,1696 @@ msgstr "verurteile" msgid "dislikes" msgstr "missfällt" +#: ../../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/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "Red Matrix Benachrichtigung" + +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "redmatrix" + +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "Danke." + +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" + +#: ../../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:Benachrichtigung] Neue Mail auf %s empfangen" + +#: ../../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/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." + +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "eine private 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/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/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/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/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/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/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/text.php:904 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:905 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:905 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:906 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:906 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:915 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:916 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:917 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:918 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:919 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:920 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:921 +msgid "stupified" +msgstr "verblüfft" + +#: ../../include/text.php:922 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:923 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:924 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:925 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:926 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:927 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:928 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:929 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:930 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:931 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:932 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:933 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:934 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:935 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1099 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1099 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1099 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1099 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1099 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1099 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1099 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1103 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1103 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1103 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1103 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1103 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1103 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1103 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1103 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1103 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1103 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1103 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1103 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1181 +msgid "unknown.???" +msgstr "unbekannt.???" + +#: ../../include/text.php:1182 +msgid "bytes" +msgstr "Bytes" + +#: ../../include/text.php:1221 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1291 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1356 ../../include/text.php:1368 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" + +#: ../../include/text.php:1523 ../../mod/events.php:409 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../include/text.php:1542 +msgid "Select a page layout: " +msgstr "Ein Seiten-Layout auswählen:" + +#: ../../include/text.php:1545 ../../include/text.php:1610 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1581 +msgid "Page content type: " +msgstr "Content-Typ der Seite:" + +#: ../../include/text.php:1622 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../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/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/features.php:30 +msgid "Enables a tool to store notes and reminders" +msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren" + +#: ../../include/features.php:34 +msgid "Navigation Channel Select" +msgstr "Kanal-Auswahl in der Navigationsleiste" + +#: ../../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/features.php:38 +msgid "Extended Identity Sharing" +msgstr "Erweitertes Teilen von Identitäten" + +#: ../../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/features.php:39 +msgid "Expert Mode" +msgstr "Expertenmodus" + +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" + +#: ../../include/features.php:40 +msgid "Premium Channel" +msgstr "Premium-Kanal" + +#: ../../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/features.php:47 +msgid "Use Markdown" +msgstr "Markdown benutzen" + +#: ../../include/features.php:47 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Erlaube Markdown zur Formatierung von Beiträgen" + +#: ../../include/features.php:48 +msgid "Post Preview" +msgstr "Voransicht" + +#: ../../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/features.php:49 ../../include/widgets.php:513 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanal-Quellen" + +#: ../../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/features.php:50 +msgid "Even More Encryption" +msgstr "Noch mehr Verschlüsselung" + +#: ../../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/features.php:55 +msgid "Network and Stream Filtering" +msgstr "Netzwerk- und Stream-Filter" + +#: ../../include/features.php:56 +msgid "Search by Date" +msgstr "Suche nach Datum" + +#: ../../include/features.php:56 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" + +#: ../../include/features.php:57 +msgid "Collections Filter" +msgstr "Filter für Sammlung" + +#: ../../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/features.php:58 ../../include/widgets.php:272 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../include/features.php:58 +msgid "Save search terms for re-use" +msgstr "Suchbegriffe zur Wiederverwendung abspeichern" + +#: ../../include/features.php:59 +msgid "Network Personal Tab" +msgstr "Persönlicher Netzwerkreiter" + +#: ../../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/features.php:60 +msgid "Network New Tab" +msgstr "Netzwerkreiter Neu" + +#: ../../include/features.php:60 +msgid "Enable tab to display all new Network activity" +msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" + +#: ../../include/features.php:61 +msgid "Affinity Tool" +msgstr "Beziehungs-Tool" + +#: ../../include/features.php:61 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" + +#: ../../include/features.php:62 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" + +#: ../../include/features.php:62 +msgid "Show channel suggestions" +msgstr "Kanal-Vorschläge anzeigen" + +#: ../../include/features.php:67 +msgid "Post/Comment Tools" +msgstr "Beitrag-/Kommentar-Tools" + +#: ../../include/features.php:69 +msgid "Edit Sent Posts" +msgstr "Bearbeite gesendete Beiträge" + +#: ../../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/features.php:70 +msgid "Tagging" +msgstr "Verschlagworten" + +#: ../../include/features.php:70 +msgid "Ability to tag existing posts" +msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" + +#: ../../include/features.php:71 +msgid "Post Categories" +msgstr "Beitrags-Kategorien" + +#: ../../include/features.php:71 +msgid "Add categories to your posts" +msgstr "Kategorien für Beiträge" + +#: ../../include/features.php:72 +msgid "Ability to file posts under folders" +msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" + +#: ../../include/features.php:73 +msgid "Dislike Posts" +msgstr "Gefällt-mir-nicht Beiträge" + +#: ../../include/features.php:73 +msgid "Ability to dislike posts/comments" +msgstr "„Gefällt mir nicht“ ermöglichen" + +#: ../../include/features.php:74 +msgid "Star Posts" +msgstr "Beiträge mit Sternchen versehen" + +#: ../../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/features.php:75 +msgid "Tag Cloud" +msgstr "Schlagwort-Wolke" + +#: ../../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/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." + +#: ../../include/follow.php:86 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." + +#: ../../include/follow.php:103 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." + +#: ../../include/follow.php:139 ../../include/follow.php:208 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." + +#: ../../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/follow.php:225 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." + +#: ../../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/group.php:234 +msgid "Default privacy group for new contacts" +msgstr "Standard-Sammlung für neue Kontakte" + +#: ../../include/group.php:253 ../../mod/admin.php:737 +msgid "All Channels" +msgstr "Alle Kanäle" + +#: ../../include/group.php:275 +msgid "edit" +msgstr "Bearbeiten" + +#: ../../include/group.php:297 +msgid "Collections" +msgstr "Sammlungen" + +#: ../../include/group.php:298 +msgid "Edit collection" +msgstr "Sammlung bearbeiten" + +#: ../../include/group.php:299 +msgid "Create a new collection" +msgstr "Neue Sammlung erzeugen" + +#: ../../include/group.php:300 +msgid "Channels not in any collection" +msgstr "Kanäle, die nicht in einer Sammlung sind" + +#: ../../include/group.php:302 ../../include/widgets.php:273 +msgid "add" +msgstr "hinzufügen" + +#: ../../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/identity.php:66 +msgid "Empty name" +msgstr "Namensfeld leer" + +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "Name ist zu lang" + +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Keine Account-Kennung" + +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." + +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." + +#: ../../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/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" + +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "Standard-Profil" + +#: ../../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/identity.php:638 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." + +#: ../../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/identity.php:849 ../../mod/profiles.php:722 +msgid "Change profile photo" +msgstr "Profilfoto ändern" + +#: ../../include/identity.php:855 +msgid "Profiles" +msgstr "Profile" + +#: ../../include/identity.php:855 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/bearbeiten" + +#: ../../include/identity.php:856 ../../mod/profiles.php:723 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" + +#: ../../include/identity.php:859 ../../include/nav.php:103 +msgid "Edit Profile" +msgstr "Profile bearbeiten" + +#: ../../include/identity.php:870 ../../mod/profiles.php:734 +msgid "Profile Image" +msgstr "Profilfoto:" + +#: ../../include/identity.php:873 +msgid "visible to everybody" +msgstr "sichtbar für jeden" + +#: ../../include/identity.php:874 ../../mod/profiles.php:617 +#: ../../mod/profiles.php:738 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" + +#: ../../include/identity.php:888 ../../include/identity.php:1125 +#: ../../mod/directory.php:158 +msgid "Gender:" +msgstr "Geschlecht:" + +#: ../../include/identity.php:889 ../../include/identity.php:1169 +#: ../../mod/directory.php:160 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:890 ../../include/identity.php:1180 +#: ../../mod/directory.php:162 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../include/identity.php:891 ../../mod/dirprofile.php:151 +msgid "Online Now" +msgstr "gerade online" + +#: ../../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/identity.php:970 ../../include/identity.php:1050 +msgid "F d" +msgstr "d. F" + +#: ../../include/identity.php:1015 ../../include/identity.php:1090 +#: ../../mod/ping.php:320 +msgid "[today]" +msgstr "[Heute]" + +#: ../../include/identity.php:1027 +msgid "Birthday Reminders" +msgstr "Geburtstags Erinnerungen" + +#: ../../include/identity.php:1028 +msgid "Birthdays this week:" +msgstr "Geburtstage in dieser Woche:" + +#: ../../include/identity.php:1083 +msgid "[No description]" +msgstr "[Keine Beschreibung]" + +#: ../../include/identity.php:1101 +msgid "Event Reminders" +msgstr "Veranstaltungs- Erinnerungen" + +#: ../../include/identity.php:1102 +msgid "Events this week:" +msgstr "Veranstaltungen in dieser Woche:" + +#: ../../include/identity.php:1123 ../../mod/settings.php:947 +msgid "Full Name:" +msgstr "Voller Name:" + +#: ../../include/identity.php:1130 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" + +#: ../../include/identity.php:1154 +msgid "j F, Y" +msgstr "j. F Y" + +#: ../../include/identity.php:1155 +msgid "j F" +msgstr "j. F" + +#: ../../include/identity.php:1162 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/identity.php:1166 +msgid "Age:" +msgstr "Alter:" + +#: ../../include/identity.php:1175 +#, php-format +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" + +#: ../../include/identity.php:1178 ../../mod/profiles.php:639 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" + +#: ../../include/identity.php:1182 ../../mod/profiles.php:641 +msgid "Hometown:" +msgstr "Heimatstadt:" + +#: ../../include/identity.php:1184 +msgid "Tags:" +msgstr "Schlagworte:" + +#: ../../include/identity.php:1186 ../../mod/profiles.php:642 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: ../../include/identity.php:1188 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/identity.php:1190 ../../mod/directory.php:164 +msgid "About:" +msgstr "Über:" + +#: ../../include/identity.php:1192 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" + +#: ../../include/identity.php:1194 ../../mod/profiles.php:645 +msgid "Likes:" +msgstr "Gefällt:" + +#: ../../include/identity.php:1196 ../../mod/profiles.php:646 +msgid "Dislikes:" +msgstr "Gefällt nicht:" + +#: ../../include/identity.php:1199 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" + +#: ../../include/identity.php:1201 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" + +#: ../../include/identity.php:1203 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: ../../include/identity.php:1205 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" + +#: ../../include/identity.php:1207 +msgid "Television:" +msgstr "Fernsehen:" + +#: ../../include/identity.php:1209 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" + +#: ../../include/identity.php:1211 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" + +#: ../../include/identity.php:1213 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" + +#: ../../include/identity.php:1215 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: ../../include/identity.php:1235 +msgid "Like this thing" +msgstr "Gefällt mir" + +#: ../../include/widgets.php:86 ../../include/nav.php:171 +#: ../../mod/apps.php:33 +msgid "Apps" +msgstr "Apps" + +#: ../../include/widgets.php:87 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:90 +msgid "Create Personal App" +msgstr "Persönliche App erstellen" + +#: ../../include/widgets.php:91 +msgid "Edit Personal App" +msgstr "Persönliche App bearbeiten" + +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" + +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" +msgstr "Vorschläge" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Mehr anzeigen …" + +#: ../../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/widgets.php:172 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" + +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Adresse des Kanals eingeben" + +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" + +#: ../../include/widgets.php:191 +msgid "Notes" +msgstr "Notizen" + +#: ../../include/widgets.php:263 +msgid "Remove term" +msgstr "Eintrag löschen" + +#: ../../include/widgets.php:342 +msgid "Archives" +msgstr "Archive" + +#: ../../include/widgets.php:404 +msgid "Refresh" +msgstr "Aktualisieren" + +#: ../../include/widgets.php:405 ../../mod/connedit.php:498 +msgid "Me" +msgstr "Ich" + +#: ../../include/widgets.php:406 ../../mod/connedit.php:500 +msgid "Best Friends" +msgstr "Beste Freunde" + +#: ../../include/widgets.php:408 +msgid "Co-workers" +msgstr "Kollegen" + +#: ../../include/widgets.php:409 ../../mod/connedit.php:502 +msgid "Former Friends" +msgstr "ehem. Freunde" + +#: ../../include/widgets.php:410 ../../mod/connedit.php:503 +msgid "Acquaintances" +msgstr "Bekannte" + +#: ../../include/widgets.php:411 +msgid "Everybody" +msgstr "Jeder" + +#: ../../include/widgets.php:445 +msgid "Account settings" +msgstr "Konto-Einstellungen" + +#: ../../include/widgets.php:451 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" + +#: ../../include/widgets.php:457 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" + +#: ../../include/widgets.php:463 +msgid "Feature settings" +msgstr "Funktions-Einstellungen" + +#: ../../include/widgets.php:469 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" + +#: ../../include/widgets.php:475 +msgid "Connected apps" +msgstr "Verbundene Apps" + +#: ../../include/widgets.php:481 +msgid "Export channel" +msgstr "Kanal exportieren" + +#: ../../include/widgets.php:487 +msgid "Export content" +msgstr "Kanal-Inhalte exportieren" + +#: ../../include/widgets.php:496 +msgid "Automatic Permissions (Advanced)" +msgstr "Automatische Berechtigungen (Erweitert)" + +#: ../../include/widgets.php:504 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" + +#: ../../include/widgets.php:538 ../../mod/mail.php:124 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../include/widgets.php:543 +msgid "Check Mail" +msgstr "E-Mails abrufen" + +#: ../../include/widgets.php:548 ../../include/nav.php:209 +msgid "New Message" +msgstr "Neue Nachricht" + +#: ../../include/widgets.php:624 +msgid "Chat Rooms" +msgstr "Chaträume" + +#: ../../include/widgets.php:642 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" + +#: ../../include/widgets.php:660 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" + +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Neues Fenster" + +#: ../../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/Contact.php:211 ../../mod/admin.php:649 +#, php-format +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: ../../include/datetime.php:238 +msgid "never" +msgstr "Nie" + +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" + +#: ../../include/datetime.php:247 +msgid "year" +msgstr "Jahr" + +#: ../../include/datetime.php:247 +msgid "years" +msgstr "Jahre" + +#: ../../include/datetime.php:248 +msgid "month" +msgstr "Monat" + +#: ../../include/datetime.php:248 +msgid "months" +msgstr "Monate" + +#: ../../include/datetime.php:249 +msgid "week" +msgstr "Woche" + +#: ../../include/datetime.php:249 +msgid "weeks" +msgstr "Wochen" + +#: ../../include/datetime.php:250 +msgid "day" +msgstr "Tag" + +#: ../../include/datetime.php:250 +msgid "days" +msgstr "Tage" + +#: ../../include/datetime.php:251 +msgid "hour" +msgstr "Stunde" + +#: ../../include/datetime.php:251 +msgid "hours" +msgstr "Stunden" + +#: ../../include/datetime.php:252 +msgid "minute" +msgstr "Minute" + +#: ../../include/datetime.php:252 +msgid "minutes" +msgstr "Minuten" + +#: ../../include/datetime.php:253 +msgid "second" +msgstr "Sekunde" + +#: ../../include/datetime.php:253 +msgid "seconds" +msgstr "Sekunden" + +#: ../../include/datetime.php:262 +#, php-format +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" + +#: ../../include/datetime.php:467 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" + +#: ../../include/datetime.php:468 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[no subject]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." + +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." + +#: ../../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" +msgstr "Beende diese Sitzung" + +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:98 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: ../../include/nav.php:99 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../include/nav.php:101 +msgid "Edit Profiles" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" + +#: ../../include/nav.php:103 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "Deine Bilder" + +#: ../../include/nav.php:106 +msgid "Your files" +msgstr "Deine Dateien" + +#: ../../include/nav.php:111 +msgid "Your chatrooms" +msgstr "Deine Chaträume" + +#: ../../include/nav.php:117 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" + +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "Deine Webseiten" + +#: ../../include/nav.php:125 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" + +#: ../../include/nav.php:145 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:159 +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 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" + +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "Durchsuche Seiten-Inhalt" + +#: ../../include/nav.php:176 +msgid "Channel Locator" +msgstr "Kanal-Verzeichnis" + +#: ../../include/nav.php:190 +msgid "Your matrix" +msgstr "Deine Matrix" + +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" +msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:193 +msgid "Channel home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" +msgstr "Verbindungen" + +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:200 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:201 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" + +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" + +#: ../../include/nav.php:204 +msgid "Private mail" +msgstr "Persönliche Mail" + +#: ../../include/nav.php:205 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" + +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" + +#: ../../include/nav.php:207 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/nav.php:208 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/nav.php:212 +msgid "Event Calendar" +msgstr "Veranstaltungskalender" + +#: ../../include/nav.php:213 +msgid "See all events" +msgstr "Alle Ereignisse ansehen" + +#: ../../include/nav.php:214 +msgid "Mark all events seen" +msgstr "Markiere alle Ereignisse als gesehen" + +#: ../../include/nav.php:216 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" + +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" + +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Administration" + +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:262 +msgid "Please wait..." +msgstr "Bitte warten..." + +#: ../../include/network.php:590 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" + +#: ../../include/zot.php:661 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" + +#: ../../include/zot.php:677 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" + +#: ../../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/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/photos.php:591 +#: ../../mod/photos.php:945 ../../mod/events.php:585 ../../mod/chat.php:209 +#: ../../mod/filestorage.php:137 +msgid "Permissions" +msgstr "Berechtigungen" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 +#: ../../mod/photos.php:1141 +msgid "Close" +msgstr "Schließen" + +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" + +#: ../../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/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:344 +msgid "Upload New Photos" +msgstr "Lade neue Fotos hoch" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dieses Element löschen?" #: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 -#: ../../mod/photos.php:1013 ../../mod/photos.php:1100 +#: ../../mod/photos.php:988 ../../mod/photos.php:1098 msgid "Comment" msgstr "Kommentar" @@ -1209,212 +3270,6 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" - -#: ../../include/permissions.php:14 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" - -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" -msgstr "Kann meine Fotoalben betrachten" - -#: ../../include/permissions.php:16 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" - -#: ../../include/permissions.php:17 -msgid "Can view my file storage" -msgstr "Kann meine Dateiordner lesen" - -#: ../../include/permissions.php:18 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" - -#: ../../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/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../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/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" - -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" - -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" - -#: ../../include/permissions.php:26 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" - -#: ../../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/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" - -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" - -#: ../../include/permissions.php:30 -msgid "Can write to my file storage" -msgstr "Kann in meine Dateiordner schreiben" - -#: ../../include/permissions.php:31 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" - -#: ../../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/permissions.php:33 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" - -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" - -#: ../../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/permissions.php:738 -msgid "Social Networking" -msgstr "Soziales Netzwerk" - -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -#: ../../include/permissions.php:743 ../../include/permissions.php:745 -msgid "Mostly Public" -msgstr "Weitgehend öffentlich" - -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -#: ../../include/permissions.php:743 -msgid "Restricted" -msgstr "Beschränkt" - -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -msgid "Private" -msgstr "Privat" - -#: ../../include/permissions.php:740 -msgid "Community Forum" -msgstr "Forum" - -#: ../../include/permissions.php:742 -msgid "Feed Republish" -msgstr "Teilen von Feeds" - -#: ../../include/permissions.php:744 -msgid "Celebrity/Soapbox" -msgstr "Mitteilungs-Kanal (keine Kommentare)" - -#: ../../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 "Benutzerdefiniert/Expertenmodus" - -#: ../../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: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/event.php:11 ../../include/bb2diaspora.php:439 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\\\, H:i" - -#: ../../include/event.php:20 ../../include/bb2diaspora.php:445 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:453 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../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:6 #: ../../include/profile_selectors.php:23 msgid "Male" @@ -1651,228 +3506,16 @@ msgstr "Interessiert mich nicht" msgid "Ask me" msgstr "Frag mich mal" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" - -#: ../../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/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/account.php:64 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Speichern der Account-Informationen fehlgeschlagen" - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account bestätigt." - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s widerrufen" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Konto geprüft. Bitte melde Dich an!" - -#: ../../include/account.php:647 ../../include/account.php:649 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." - -#: ../../include/account.php:655 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." - -#: ../../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/oembed.php:171 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" - -#: ../../include/zot.php:655 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" - -#: ../../include/zot.php:671 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" - -#: ../../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/network.php:590 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" - -#: ../../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/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/group.php:234 -msgid "Default privacy group for new contacts" -msgstr "Standard-Privatsphärengruppe für neue Kontakte" - -#: ../../include/group.php:253 ../../mod/admin.php:737 -msgid "All Channels" -msgstr "Alle Kanäle" - -#: ../../include/group.php:275 -msgid "edit" -msgstr "Bearbeiten" - -#: ../../include/group.php:297 -msgid "Collections" -msgstr "Sammlungen" - -#: ../../include/group.php:298 -msgid "Edit collection" -msgstr "Bearbeite Sammlungen" - -#: ../../include/group.php:299 -msgid "Create a new collection" -msgstr "Neue Sammlung erzeugen" - -#: ../../include/group.php:300 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" - -#: ../../include/group.php:302 ../../include/widgets.php:273 -msgid "add" -msgstr "hinzufügen" - -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../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 "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../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/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:589 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:605 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:629 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:680 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:684 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:645 -#: ../../mod/photos.php:862 -msgid "Private Message" -msgstr "Private Nachricht" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:637 -msgid "Select" -msgstr "Auswählen" - #: ../../include/ItemObject.php:130 msgid "Save to Folder" msgstr "In Ordner speichern" #: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:1015 ../../mod/photos.php:1027 msgid "View all" msgstr "Alles anzeigen" -#: ../../include/ItemObject.php:151 +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1024 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -1895,23 +3538,15 @@ msgstr "Stern-Status umschalten" msgid "starred" msgstr "markiert" -#: ../../include/ItemObject.php:194 ../../include/conversation.php:652 -msgid "Message signature validated" -msgstr "Signatur überprüft" - -#: ../../include/ItemObject.php:195 ../../include/conversation.php:653 -msgid "Message signature incorrect" -msgstr "Signatur nicht korrekt" - #: ../../include/ItemObject.php:203 msgid "Add Tag" msgstr "Tag hinzufügen" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:992 +#: ../../include/ItemObject.php:221 ../../mod/photos.php:967 msgid "I like this (toggle)" msgstr "Mir gefällt das (Umschalter)" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:993 +#: ../../include/ItemObject.php:222 ../../mod/photos.php:968 msgid "I don't like this (toggle)" msgstr "Mir gefällt das nicht (Umschalter)" @@ -1944,21 +3579,6 @@ msgstr "Wall-to-Wall" msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../include/ItemObject.php:265 ../../include/conversation.php:698 -#, php-format -msgid " from %s" -msgstr "von %s" - -#: ../../include/ItemObject.php:268 ../../include/conversation.php:701 -#, php-format -msgid "last edited: %s" -msgstr "zuletzt bearbeitet: %s" - -#: ../../include/ItemObject.php:269 ../../include/conversation.php:702 -#, php-format -msgid "Expires: %s" -msgstr "Verfällt: %s" - #: ../../include/ItemObject.php:290 msgid "Save Bookmarks" msgstr "Favoriten speichern" @@ -1967,28 +3587,16 @@ msgstr "Favoriten speichern" msgid "Add to Calendar" msgstr "Zum Kalender hinzufügen" -#: ../../include/ItemObject.php:299 +#: ../../include/ItemObject.php:299 ../../mod/photos.php:1135 msgctxt "noun" msgid "Likes" msgstr "Gefällt mir" -#: ../../include/ItemObject.php:300 +#: ../../include/ItemObject.php:300 ../../mod/photos.php:1136 msgctxt "noun" msgid "Dislikes" msgstr "Gefällt nicht" -#: ../../include/ItemObject.php:305 ../../include/acl_selectors.php:249 -msgid "Close" -msgstr "Schließen" - -#: ../../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/ItemObject.php:331 #, php-format msgid "%d comment" @@ -1996,11 +3604,34 @@ msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: ../../include/ItemObject.php:596 ../../mod/photos.php:1011 -#: ../../mod/photos.php:1098 +#: ../../include/ItemObject.php:596 ../../mod/photos.php:986 +#: ../../mod/photos.php:1096 msgid "This is you" msgstr "Das bist Du" +#: ../../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/ItemObject.php:600 msgid "Bold" msgstr "Fett" @@ -2033,1798 +3664,809 @@ msgstr "Link" msgid "Video" msgstr "Video" -#: ../../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" +#: ../../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/security.php:320 +#: ../../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:662 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../mod/photos.php:159 ../../mod/photos.php:950 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../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." + +#: ../../mod/photos.php:461 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" + +#: ../../mod/photos.php:507 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." + +#: ../../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." + +#: ../../mod/photos.php:561 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." + +#: ../../mod/photos.php:583 +msgid "Upload Photos" +msgstr "Fotos hochladen" + +#: ../../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:" + +#: ../../mod/photos.php:588 +msgid "Do not show a status post for this upload" +msgstr "Keine Statusnachricht für diesen Upload senden" + +#: ../../mod/photos.php:609 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" + +#: ../../mod/photos.php:645 ../../mod/photos.php:1159 +#: ../../mod/photos.php:1174 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" + +#: ../../mod/photos.php:656 +msgid "New album name: " +msgstr "Name des neuen Albums:" + +#: ../../mod/photos.php:668 +msgid "Show Newest First" +msgstr "Zeige Neueste zuerst" + +#: ../../mod/photos.php:670 +msgid "Show Oldest First" +msgstr "Zeige Älteste zuerst" + +#: ../../mod/photos.php:697 ../../mod/photos.php:1206 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../mod/photos.php:726 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../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" + +#: ../../mod/photos.php:839 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../mod/photos.php:846 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:857 ../../mod/events.php:433 +msgid "Previous" +msgstr "Voriges" + +#: ../../mod/photos.php:861 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../mod/photos.php:866 ../../mod/events.php:434 ../../mod/setup.php:261 +msgid "Next" +msgstr "Nächste" + +#: ../../mod/photos.php:903 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Entferne" + +#: ../../mod/photos.php:933 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../mod/photos.php:935 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../mod/photos.php:936 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" + +#: ../../mod/photos.php:939 +msgid "New album name" +msgstr "Name des neuen Albums:" + +#: ../../mod/photos.php:942 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../mod/photos.php:944 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../mod/photos.php:947 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../mod/photos.php:1125 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../mod/photos.php:1212 +msgid "View Album" +msgstr "Album ansehen" + +#: ../../mod/photos.php:1235 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../mod/mitem.php:14 ../../mod/menu.php:92 +msgid "Menu not found." +msgstr "Menü nicht gefunden" + +#: ../../mod/mitem.php:47 +msgid "Menu element updated." +msgstr "Menü-Element aktualisiert." + +#: ../../mod/mitem.php:51 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." + +#: ../../mod/mitem.php:57 +msgid "Menu element added." +msgstr "Menü-Bestandteil hinzugefügt." + +#: ../../mod/mitem.php:61 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." + +#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 +#: ../../mod/xchan.php:38 +msgid "Not found." +msgstr "Nicht gefunden." + +#: ../../mod/mitem.php:96 +msgid "Manage Menu Elements" +msgstr "Menü-Bestandteile verwalten" + +#: ../../mod/mitem.php:99 +msgid "Edit menu" +msgstr "Menü bearbeiten" + +#: ../../mod/mitem.php:102 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" + +#: ../../mod/mitem.php:103 +msgid "Drop element" +msgstr "Bestandteil löschen" + +#: ../../mod/mitem.php:104 +msgid "New element" +msgstr "Neues Bestandteil" + +#: ../../mod/mitem.php:105 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" + +#: ../../mod/mitem.php:106 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" + +#: ../../mod/mitem.php:107 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" + +#: ../../mod/mitem.php:108 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" + +#: ../../mod/mitem.php:131 +msgid "New Menu Element" +msgstr "Neues Menü-Bestandteil" + +#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" + +#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:974 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" + +#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 +msgid "Link text" +msgstr "Link Text" + +#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 +msgid "URL of link" +msgstr "URL des Links" + +#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 +msgid "Use Red magic-auth if available" +msgstr "Verwende Red Magic-Auth wenn verfügbar" + +#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" + +#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" + +#: ../../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/mitem.php:154 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." + +#: ../../mod/mitem.php:163 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." + +#: ../../mod/mitem.php:165 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." + +#: ../../mod/mitem.php:174 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" + +#: ../../mod/mitem.php:186 ../../mod/menu.php:114 +msgid "Modify" +msgstr "Ändern" + +#: ../../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" + +#: ../../mod/ping.php:237 +msgid "sent you a private message" +msgstr "eine private Nachricht schicken" + +#: ../../mod/ping.php:288 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" + +#: ../../mod/ping.php:329 +msgid "posted an event" +msgstr "hat eine Veranstaltung veröffentlicht" + +#: ../../mod/acl.php:244 +msgid "network" +msgstr "Netzwerk" + +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "Name ist erforderlich" + +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "Schlüssel und Geheimnis werden benötigt" + +#: ../../mod/settings.php:197 +msgid "Passwords do not match. Password unchanged." +msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." + +#: ../../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:215 +msgid "Password changed." +msgstr "Kennwort geändert." + +#: ../../mod/settings.php:217 +msgid "Password update failed. Please try again." +msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." + +#: ../../mod/settings.php:231 +msgid "Not valid email." +msgstr "Keine gültige E-Mail Adresse." + +#: ../../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: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:448 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: ../../mod/settings.php:517 ../../mod/settings.php:543 +#: ../../mod/settings.php:579 +msgid "Add application" +msgstr "Anwendung hinzufügen" + +#: ../../mod/settings.php:520 +msgid "Name of application" +msgstr "Name der Anwendung" + +#: ../../mod/settings.php:521 ../../mod/settings.php:547 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../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:522 ../../mod/settings.php:548 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../mod/settings.php:523 ../../mod/settings.php:549 +msgid "Redirect" +msgstr "Umleitung" + +#: ../../mod/settings.php:523 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." +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert" -#: ../../include/text.php:321 -msgid "prev" -msgstr "vorherige" +#: ../../mod/settings.php:524 ../../mod/settings.php:550 +msgid "Icon url" +msgstr "Symbol-URL" -#: ../../include/text.php:323 -msgid "first" -msgstr "erste" +#: ../../mod/settings.php:524 +msgid "Optional" +msgstr "Optional" -#: ../../include/text.php:352 -msgid "last" -msgstr "letzte" +#: ../../mod/settings.php:535 +msgid "You can't edit this application." +msgstr "Diese Anwendung kann nicht bearbeitet werden." -#: ../../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:822 ../../include/text.php:834 -#: ../../include/nav.php:173 ../../include/apps.php:145 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "Suche" - -#: ../../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/text.php:901 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:901 ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" - -#: ../../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/text.php:904 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:905 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:905 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:906 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:906 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:915 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:916 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:917 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:918 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:919 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:920 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:921 -msgid "stupified" -msgstr "verblüfft" - -#: ../../include/text.php:922 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:923 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:924 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:925 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:926 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:927 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:928 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:929 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:930 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:931 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:932 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:933 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:934 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:935 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1099 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1099 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1099 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1099 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1099 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1099 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1099 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1103 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1103 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1103 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1103 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1103 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1103 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1103 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1103 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1103 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1103 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1103 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1103 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1181 -msgid "unknown.???" -msgstr "unbekannt.???" - -#: ../../include/text.php:1182 -msgid "bytes" -msgstr "Bytes" - -#: ../../include/text.php:1221 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1291 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1356 ../../include/text.php:1368 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/text.php:1523 ../../mod/events.php:414 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../include/text.php:1542 -msgid "Select a page layout: " -msgstr "Ein Seiten-Layout auswählen:" - -#: ../../include/text.php:1545 ../../include/text.php:1610 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1581 -msgid "Page content type: " -msgstr "Content-Typ der Seite:" - -#: ../../include/text.php:1622 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../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/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 -#: ../../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/bbcode.php:147 ../../include/bbcode.php:703 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "Design-Element installieren:" - -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "QR-Code" - -#: ../../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/bbcode.php:222 -msgid "post" -msgstr "Beitrag" - -#: ../../include/bbcode.php:621 -msgid "$1 spoiler" -msgstr "$1 Spoiler" - -#: ../../include/bbcode.php:641 -msgid "$1 wrote:" -msgstr "$1 schrieb:" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Red Matrix Benachrichtigung" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Danke." - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: ../../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:Benachrichtigung] Neue Mail auf %s empfangen" - -#: ../../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/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "eine private 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/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/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/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/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/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/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/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" - -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:98 -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" - -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:103 -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" - -#: ../../include/nav.php:106 -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" - -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:142 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:145 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:159 -msgid "Home Page" -msgstr "Homepage" - -#: ../../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" - -#: ../../include/nav.php:173 -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" - -#: ../../include/nav.php:191 -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" - -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Verbindungen" - -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -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" - -#: ../../include/nav.php:205 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:208 -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" - -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "Alle Ereignisse ansehen" - -#: ../../include/nav.php:214 -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" - -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:226 -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/features.php:30 -msgid "Enables a tool to store notes and reminders" -msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren" - -#: ../../include/features.php:34 -msgid "Navigation Channel Select" -msgstr "Kanal-Auswahl in der Navigationsleiste" - -#: ../../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/features.php:38 -msgid "Extended Identity Sharing" -msgstr "Erweitertes Teilen von Identitäten" - -#: ../../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/features.php:39 -msgid "Expert Mode" -msgstr "Expertenmodus" - -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" - -#: ../../include/features.php:40 -msgid "Premium Channel" -msgstr "Premium-Kanal" - -#: ../../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/features.php:47 -msgid "Use Markdown" -msgstr "Markdown benutzen" - -#: ../../include/features.php:47 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Erlaube Markdown zur Formatierung von Beiträgen" - -#: ../../include/features.php:48 -msgid "Post Preview" -msgstr "Voransicht" - -#: ../../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/features.php:49 ../../include/widgets.php:510 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanal-Quellen" - -#: ../../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/features.php:50 -msgid "Even More Encryption" -msgstr "Noch mehr Verschlüsselung" - -#: ../../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/features.php:55 -msgid "Network and Stream Filtering" -msgstr "Netzwerk- und Stream-Filter" - -#: ../../include/features.php:56 -msgid "Search by Date" -msgstr "Suche nach Datum" - -#: ../../include/features.php:56 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" - -#: ../../include/features.php:57 -msgid "Collections Filter" -msgstr "Filter für Sammlung" - -#: ../../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/features.php:58 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../include/features.php:58 -msgid "Save search terms for re-use" -msgstr "Suchbegriffe zur Wiederverwendung abspeichern" - -#: ../../include/features.php:59 -msgid "Network Personal Tab" -msgstr "Persönlicher Netzwerkreiter" - -#: ../../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/features.php:60 -msgid "Network New Tab" -msgstr "Netzwerkreiter Neu" - -#: ../../include/features.php:60 -msgid "Enable tab to display all new Network activity" -msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" - -#: ../../include/features.php:61 -msgid "Affinity Tool" -msgstr "Beziehungs-Tool" - -#: ../../include/features.php:61 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" - -#: ../../include/features.php:62 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" - -#: ../../include/features.php:62 -msgid "Show channel suggestions" -msgstr "Kanal-Vorschläge anzeigen" - -#: ../../include/features.php:67 -msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" - -#: ../../include/features.php:69 -msgid "Edit Sent Posts" -msgstr "Bearbeite gesendete Beiträge" - -#: ../../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/features.php:70 -msgid "Tagging" -msgstr "Verschlagworten" - -#: ../../include/features.php:70 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" - -#: ../../include/features.php:71 -msgid "Post Categories" -msgstr "Beitrags-Kategorien" - -#: ../../include/features.php:71 -msgid "Add categories to your posts" -msgstr "Kategorien für Beiträge" - -#: ../../include/features.php:72 -msgid "Ability to file posts under folders" -msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" - -#: ../../include/features.php:73 -msgid "Dislike Posts" -msgstr "Gefällt-mir-nicht Beiträge" - -#: ../../include/features.php:73 -msgid "Ability to dislike posts/comments" -msgstr "„Gefällt mir nicht“ ermöglichen" - -#: ../../include/features.php:74 -msgid "Star Posts" -msgstr "Beiträge mit Sternchen versehen" - -#: ../../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/features.php:75 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" - -#: ../../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/notify.php:23 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" - -#: ../../include/apps.php:126 -msgid "Site Admin" -msgstr "Hub-Administration" - -#: ../../include/apps.php:128 -msgid "Address Book" -msgstr "Adressbuch" - -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Laune" - -#: ../../include/apps.php:143 ../../include/conversation.php:951 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../include/apps.php:146 -msgid "Probe" -msgstr "Testen" - -#: ../../include/apps.php:147 -msgid "Suggest" -msgstr "Empfehlungen" - -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "Zufälliger Kanal" - -#: ../../include/apps.php:149 -msgid "Invite" -msgstr "Einladen" - -#: ../../include/apps.php:150 -msgid "Features" -msgstr "Funktionen" - -#: ../../include/apps.php:151 -msgid "Language" -msgstr "Sprache" - -#: ../../include/apps.php:152 -msgid "Post" -msgstr "Beitrag" - -#: ../../include/apps.php:153 -msgid "Profile Photo" -msgstr "Profilfoto" - -#: ../../include/apps.php:242 ../../mod/settings.php:79 -#: ../../mod/settings.php:545 -msgid "Update" -msgstr "Aktualisieren" - -#: ../../include/apps.php:242 -msgid "Install" -msgstr "Installieren" - -#: ../../include/apps.php:247 -msgid "Purchase" -msgstr "Kaufen" - -#: ../../include/api.php:1072 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" - -#: ../../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/conversation.php:126 ../../mod/like.php:89 -msgid "channel" -msgstr "Kanal" - -#: ../../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/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/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" - -#: ../../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/conversation.php:674 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" - -#: ../../include/conversation.php:689 -msgid "Categories:" -msgstr "Kategorien:" - -#: ../../include/conversation.php:690 -msgid "Filed under:" -msgstr "Gespeichert unter:" - -#: ../../include/conversation.php:717 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" - -#: ../../include/conversation.php:843 -msgid "remove" -msgstr "lösche" - -#: ../../include/conversation.php:848 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" - -#: ../../include/conversation.php:942 -msgid "View Source" -msgstr "Quelle anzeigen" - -#: ../../include/conversation.php:943 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" - -#: ../../include/conversation.php:944 -msgid "View Status" -msgstr "Status ansehen" - -#: ../../include/conversation.php:946 -msgid "View Photos" -msgstr "Fotos ansehen" - -#: ../../include/conversation.php:947 -msgid "Matrix Activity" -msgstr "Matrix-Aktivität" - -#: ../../include/conversation.php:949 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: ../../include/conversation.php:950 -msgid "Send PM" -msgstr "Sende PN" - -#: ../../include/conversation.php:1024 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1024 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." - -#: ../../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/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/conversation.php:1036 -msgid "and" -msgstr "und" - -#: ../../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/conversation.php:1040 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1040 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1097 -msgid "Visible to everybody" -msgstr "Sichtbar für jeden" - -#: ../../include/conversation.php:1098 ../../mod/mail.php:170 -#: ../../mod/mail.php:282 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" - -#: ../../include/conversation.php:1099 -msgid "Please enter a video link/URL:" -msgstr "Gib einen Video-Link/URL ein:" - -#: ../../include/conversation.php:1100 -msgid "Please enter an audio link/URL:" -msgstr "Gib einen Audio-Link/URL ein:" - -#: ../../include/conversation.php:1101 -msgid "Tag term:" -msgstr "Schlagwort:" - -#: ../../include/conversation.php:1102 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" - -#: ../../include/conversation.php:1103 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" - -#: ../../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/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/conversation.php:1130 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "Seitentitel-Link" - -#: ../../include/conversation.php:1133 -msgid "Post as" -msgstr "Posten als" - -#: ../../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/conversation.php:1135 -msgid "upload photo" -msgstr "Foto hochladen" - -#: ../../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/conversation.php:1137 -msgid "attach file" -msgstr "Datei anfügen" - -#: ../../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/conversation.php:1139 -msgid "web link" -msgstr "Web-Link" - -#: ../../include/conversation.php:1140 -msgid "Insert video link" -msgstr "Video-Link einfügen" - -#: ../../include/conversation.php:1141 -msgid "video link" -msgstr "Video-Link" - -#: ../../include/conversation.php:1142 -msgid "Insert audio link" -msgstr "Audio-Link einfügen" - -#: ../../include/conversation.php:1143 -msgid "audio link" -msgstr "Audio-Link" - -#: ../../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/conversation.php:1145 -msgid "set location" -msgstr "Standort" - -#: ../../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/conversation.php:1147 -msgid "clear location" -msgstr "Standort löschen" - -#: ../../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/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/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/conversation.php:1155 -msgid "permissions" -msgstr "Berechtigungen" - -#: ../../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/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/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/conversation.php:1181 ../../mod/editpost.php:150 -#: ../../mod/events.php:567 -msgid "OK" -msgstr "Ok" - -#: ../../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/conversation.php:1426 -msgid "Discover" -msgstr "Entdecken" - -#: ../../include/conversation.php:1429 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" - -#: ../../include/conversation.php:1434 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: ../../include/conversation.php:1437 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" - -#: ../../include/conversation.php:1441 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: ../../include/conversation.php:1444 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" - -#: ../../include/conversation.php:1449 ../../include/widgets.php:89 -msgid "Personal" -msgstr "Persönlich" - -#: ../../include/conversation.php:1452 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" - -#: ../../include/conversation.php:1458 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 -msgid "New" -msgstr "Neu" - -#: ../../include/conversation.php:1461 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" - -#: ../../include/conversation.php:1467 -msgid "Starred" -msgstr "Markiert" - -#: ../../include/conversation.php:1470 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" - -#: ../../include/conversation.php:1477 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1480 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" - -#: ../../include/conversation.php:1516 ../../mod/admin.php:867 -msgid "Channel" -msgstr "Kanal" - -#: ../../include/conversation.php:1519 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: ../../include/conversation.php:1528 -msgid "About" -msgstr "Über" - -#: ../../include/conversation.php:1531 -msgid "Profile Details" -msgstr "Profil-Details" - -#: ../../include/conversation.php:1549 -msgid "Files and Storage" -msgstr "Dateien und Speicher" - -#: ../../include/conversation.php:1558 ../../include/conversation.php:1561 -msgid "Chatrooms" -msgstr "Chaträume" - -#: ../../include/conversation.php:1573 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" - -#: ../../include/conversation.php:1584 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" - -#: ../../include/bb2diaspora.php:360 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../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/filestorage.php:137 -#: ../../mod/photos.php:604 ../../mod/photos.php:970 ../../mod/chat.php:209 -#: ../../mod/events.php:585 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../include/widgets.php:87 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:90 -msgid "Create Personal App" -msgstr "Persönliche App erstellen" - -#: ../../include/widgets.php:91 -msgid "Edit Personal App" -msgstr "Persönliche App bearbeiten" - -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" - -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../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/widgets.php:172 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../include/widgets.php:191 -msgid "Notes" -msgstr "Notizen" - -#: ../../include/widgets.php:263 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../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: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" +#: ../../mod/settings.php:578 +msgid "Connected Apps" msgstr "Verbundene Apps" -#: ../../include/widgets.php:479 -msgid "Export channel" -msgstr "Kanal exportieren" +#: ../../mod/settings.php:582 +msgid "Client key starts with" +msgstr "Client Key beginnt mit" -#: ../../include/widgets.php:485 -msgid "Export content" -msgstr "Kanal-Inhalte exportieren" +#: ../../mod/settings.php:583 +msgid "No name" +msgstr "Kein Name" -#: ../../include/widgets.php:491 -msgid "Automatic Permissions (Advanced)" -msgstr "Automatische Berechtigungen (Erweitert)" +#: ../../mod/settings.php:584 +msgid "Remove authorization" +msgstr "Authorisierung aufheben" -#: ../../include/widgets.php:501 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" +#: ../../mod/settings.php:595 +msgid "No feature settings configured" +msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../include/widgets.php:535 ../../mod/message.php:31 -#: ../../mod/mail.php:124 -msgid "Messages" -msgstr "Nachrichten" +#: ../../mod/settings.php:603 +msgid "Feature Settings" +msgstr "Funktions-Einstellungen" -#: ../../include/widgets.php:540 -msgid "Check Mail" -msgstr "E-Mails abrufen" +#: ../../mod/settings.php:626 +msgid "Account Settings" +msgstr "Konto-Einstellungen" -#: ../../include/widgets.php:621 -msgid "Chat Rooms" -msgstr "Chaträume" +#: ../../mod/settings.php:627 +msgid "Password Settings" +msgstr "Kennwort-Einstellungen" -#: ../../include/widgets.php:639 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" +#: ../../mod/settings.php:628 +msgid "New Password:" +msgstr "Neues Passwort:" -#: ../../include/widgets.php:657 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" +#: ../../mod/settings.php:629 +msgid "Confirm:" +msgstr "Bestätigen:" -#: ../../include/follow.php:26 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " +#: ../../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" -#: ../../include/follow.php:31 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." +#: ../../mod/settings.php:631 ../../mod/settings.php:948 +msgid "Email Address:" +msgstr "Email Adresse:" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." +#: ../../mod/settings.php:632 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "Konto entfernen" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." +#: ../../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" -#: ../../include/follow.php:133 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." +#: ../../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." -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" +#: ../../mod/settings.php:650 +msgid "Off" +msgstr "Aus" -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "Lokales Konto nicht gefunden." +#: ../../mod/settings.php:650 +msgid "On" +msgstr "An" -#: ../../include/follow.php:219 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." +#: ../../mod/settings.php:657 +msgid "Additional Features" +msgstr "Zusätzliche Funktionen" + +#: ../../mod/settings.php:682 +msgid "Connector Settings" +msgstr "Connector-Einstellungen" + +#: ../../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:721 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (experimentell)" + +#: ../../mod/settings.php:757 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" + +#: ../../mod/settings.php:763 +msgid "Display Theme:" +msgstr "Anzeige-Theme:" + +#: ../../mod/settings.php:764 +msgid "Mobile Theme:" +msgstr "Mobile Theme:" + +#: ../../mod/settings.php:765 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom auf Mobilgeräten aktivieren" + +#: ../../mod/settings.php:766 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: ../../mod/settings.php:766 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 Sekunden, kein Maximum" + +#: ../../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:767 +msgid "Maximum of 100 items" +msgstr "Maximum: 100 Beiträge" + +#: ../../mod/settings.php:768 +msgid "Don't show emoticons" +msgstr "Emoticons nicht zeigen" + +#: ../../mod/settings.php:769 +msgid "Link post titles to source" +msgstr "Beitragstitel zum Originalbeitrag verlinken" + +#: ../../mod/settings.php:770 +msgid "System Page Layout Editor - (advanced)" +msgstr "System-Seitenlayout-Editor (für Experten)" + +#: ../../mod/settings.php:804 +msgid "Nobody except yourself" +msgstr "Niemand außer Dir selbst" + +#: ../../mod/settings.php:805 +msgid "Only those you specifically allow" +msgstr "Nur die, denen Du es explizit erlaubst" + +#: ../../mod/settings.php:806 +msgid "Approved connections" +msgstr "Angenommene Verbindungen" + +#: ../../mod/settings.php:807 +msgid "Any connections" +msgstr "Beliebige Verbindungen" + +#: ../../mod/settings.php:808 +msgid "Anybody on this website" +msgstr "Jeder auf dieser Website" + +#: ../../mod/settings.php:809 +msgid "Anybody in this network" +msgstr "Alle Red-Nutzer" + +#: ../../mod/settings.php:810 +msgid "Anybody authenticated" +msgstr "Jeder authentifizierte" + +#: ../../mod/settings.php:811 +msgid "Anybody on the internet" +msgstr "Jeder im Internet" + +#: ../../mod/settings.php:885 +msgid "Publish your default profile in the network directory" +msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" + +#: ../../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/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/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/settings.php:894 ../../mod/profile_photo.php:365 +msgid "or" +msgstr "oder" + +#: ../../mod/settings.php:899 +msgid "Your channel address is" +msgstr "Deine Kanal-Adresse lautet" + +#: ../../mod/settings.php:937 +msgid "Channel Settings" +msgstr "Kanal-Einstellungen" + +#: ../../mod/settings.php:946 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: ../../mod/settings.php:949 +msgid "Your Timezone:" +msgstr "Ihre Zeitzone:" + +#: ../../mod/settings.php:950 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: ../../mod/settings.php:950 +msgid "Geographical location to display on your posts" +msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" + +#: ../../mod/settings.php:951 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: ../../mod/settings.php:953 +msgid "Adult Content" +msgstr "Nicht jugendfreie Inhalte" + +#: ../../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/settings.php:955 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Datenschutz-Einstellungen" + +#: ../../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/settings.php:959 +msgid "Hide my online presence" +msgstr "Meine Online-Präsenz verbergen" + +#: ../../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/settings.php:961 +msgid "Simple Privacy Settings:" +msgstr "Einfache Privatsphäre-Einstellungen" + +#: ../../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/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/settings.php:964 +msgid "Private - default private, never open or public" +msgstr "Private – Standard privat, nie offen oder öffentlich" + +#: ../../mod/settings.php:965 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockiert – Alle standardmäßig blockiert" + +#: ../../mod/settings.php:967 +msgid "Allow others to tag your posts" +msgstr "Erlaube anderen, Deine Beiträge zu taggen" + +#: ../../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/settings.php:969 +msgid "Advanced Privacy Settings" +msgstr "Fortgeschrittene Privatsphäre-Einstellungen" + +#: ../../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/settings.php:971 +msgid "0 or blank prevents expiration" +msgstr "0 oder kein Inhalt verhindern das Verfallen" + +#: ../../mod/settings.php:972 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Kontaktanfragen pro Tag:" + +#: ../../mod/settings.php:972 +msgid "May reduce spam activity" +msgstr "Kann die Spam-Aktivität verringern" + +#: ../../mod/settings.php:973 +msgid "Default Post Permissions" +msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" + +#: ../../mod/settings.php:978 +msgid "Channel permissions category:" +msgstr "Zugriffsrechte-Kategorie des Kanals:" + +#: ../../mod/settings.php:986 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" + +#: ../../mod/settings.php:986 +msgid "Useful to reduce spamming" +msgstr "Nützlich, um Spam zu verringern" + +#: ../../mod/settings.php:989 +msgid "Notification Settings" +msgstr "Benachrichtigungs-Einstellungen" + +#: ../../mod/settings.php:990 +msgid "By default post a status message when:" +msgstr "Sende standardmäßig Status-Nachrichten, wenn:" + +#: ../../mod/settings.php:991 +msgid "accepting a friend request" +msgstr "Du eine Kontaktanfrage annimmst" + +#: ../../mod/settings.php:992 +msgid "joining a forum/community" +msgstr "Du einem Forum beitrittst" + +#: ../../mod/settings.php:993 +msgid "making an interesting profile change" +msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" + +#: ../../mod/settings.php:994 +msgid "Send a notification email when:" +msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" + +#: ../../mod/settings.php:995 +msgid "You receive a connection request" +msgstr "Du eine Verbindungsanfrage erhältst" + +#: ../../mod/settings.php:996 +msgid "Your connections are confirmed" +msgstr "Eine Verbindung bestätigt wurde" + +#: ../../mod/settings.php:997 +msgid "Someone writes on your profile wall" +msgstr "Jemand auf Deine Pinnwand schreibt" + +#: ../../mod/settings.php:998 +msgid "Someone writes a followup comment" +msgstr "Jemand einen Beitrag kommentiert" + +#: ../../mod/settings.php:999 +msgid "You receive a private message" +msgstr "Du eine private Nachricht erhältst" + +#: ../../mod/settings.php:1000 +msgid "You receive a friend suggestion" +msgstr "Du einen Kontaktvorschlag erhältst" + +#: ../../mod/settings.php:1001 +msgid "You are tagged in a post" +msgstr "Du in einem Beitrag erwähnt wurdest" + +#: ../../mod/settings.php:1002 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" + +#: ../../mod/settings.php:1005 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Account- und Seitenart-Einstellungen" + +#: ../../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/settings.php:1009 +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:1010 +msgid "Miscellaneous Settings" +msgstr "Sonstige Einstellungen" + +#: ../../mod/settings.php:1012 +msgid "Personal menu to display in your channel pages" +msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" + +#: ../../mod/settings.php:1013 +msgid "Remove this channel" +msgstr "Diesen Kanal löschen" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Empfänger" + +#: ../../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/poke.php:165 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" + +#: ../../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/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/post.php:229 msgid "" @@ -3837,573 +4479,652 @@ msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angeme 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:" -msgstr "Bestätigen:" - -#: ../../mod/settings.php:630 -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 -msgid "Email Address:" -msgstr "Email Adresse:" - -#: ../../mod/settings.php:633 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Konto entfernen" - -#: ../../mod/settings.php:634 -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 -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 -msgid "Off" -msgstr "Aus" - -#: ../../mod/settings.php:651 -msgid "On" -msgstr "An" - -#: ../../mod/settings.php:658 -msgid "Additional Features" -msgstr "Zusätzliche Funktionen" - -#: ../../mod/settings.php:683 -msgid "Connector Settings" -msgstr "Connector-Einstellungen" - -#: ../../mod/settings.php:713 ../../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" - -#: ../../mod/settings.php:1003 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" - -#: ../../mod/settings.php:1004 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" - -#: ../../mod/settings.php:1005 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" - -#: ../../mod/settings.php:1006 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" - -#: ../../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:1010 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" - -#: ../../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: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:1015 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" - -#: ../../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:1018 -msgid "Remove this channel" -msgstr "Diesen Kanal löschen" - -#: ../../mod/filestorage.php:76 -msgid "Permission Denied." -msgstr "Zugriff verweigert." - -#: ../../mod/filestorage.php:92 -msgid "File not found." -msgstr "Datei nicht gefunden." - -#: ../../mod/filestorage.php:131 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" - -#: ../../mod/filestorage.php:140 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" - -#: ../../mod/filestorage.php:141 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" - -#: ../../mod/filestorage.php:142 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" - -#: ../../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/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/home.php:46 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix – "Das Netzwerk"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +#: ../../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/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:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "Ungültiges Element." -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Kanal hinzufügen" +#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." -#: ../../mod/new_channel.php:110 +#: ../../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/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 "" -"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." +"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/new_channel.php:112 ../../mod/sources.php:103 -#: ../../mod/sources.php:137 -msgid "Channel Name" -msgstr "Name des Kanals" +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" -#: ../../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 +#: ../../mod/siteinfo.php:138 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." +"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:116 -msgid "Or import an existing channel from another location" -msgstr "Oder importiere einen bestehenden Kanal von einem anderen Server" +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../mod/new_channel.php:118 -msgid "Channel Type" -msgstr "Kanaltyp" - -#: ../../mod/new_channel.php:119 +#: ../../mod/siteinfo.php:142 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" +"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/blocks.php:62 +msgid "Block Name" +msgstr "Block-Name" + +#: ../../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/profiles.php:38 +msgid "Profile deleted." +msgstr "Profil gelöscht." + +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profil-" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Neues Profil erstellt." + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profil kann nicht geklont werden." + +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Dieses Profil kann nicht exportiert werden." + +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "Profil-Name erforderlich." + +#: ../../mod/profiles.php:362 +msgid "Marital Status" +msgstr "Familienstand" + +#: ../../mod/profiles.php:366 +msgid "Romantic Partner" +msgstr "Romantische Partner" + +#: ../../mod/profiles.php:370 +msgid "Likes" +msgstr "Gefällt" + +#: ../../mod/profiles.php:374 +msgid "Dislikes" +msgstr "Gefällt nicht" + +#: ../../mod/profiles.php:378 +msgid "Work/Employment" +msgstr "Arbeit/Anstellung" + +#: ../../mod/profiles.php:381 +msgid "Religion" +msgstr "Religion" + +#: ../../mod/profiles.php:385 +msgid "Political Views" +msgstr "Politische Ansichten" + +#: ../../mod/profiles.php:389 +msgid "Gender" +msgstr "Geschlecht" + +#: ../../mod/profiles.php:393 +msgid "Sexual Preference" +msgstr "Sexuelle Orientierung" + +#: ../../mod/profiles.php:397 +msgid "Homepage" +msgstr "Webseite" + +#: ../../mod/profiles.php:401 +msgid "Interests" +msgstr "Hobbys/Interessen" + +#: ../../mod/profiles.php:405 ../../mod/admin.php:868 +msgid "Address" +msgstr "Adresse" + +#: ../../mod/profiles.php:412 ../../mod/pubsites.php:25 +msgid "Location" +msgstr "Ort" + +#: ../../mod/profiles.php:495 +msgid "Profile updated." +msgstr "Profil aktualisiert." + +#: ../../mod/profiles.php:572 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" + +#: ../../mod/profiles.php:614 +msgid "Edit Profile Details" +msgstr "Bearbeite Profil-Details" + +#: ../../mod/profiles.php:616 +msgid "View this profile" +msgstr "Dieses Profil ansehen" + +#: ../../mod/profiles.php:618 +msgid "Change Profile Photo" +msgstr "Profilfoto ändern" + +#: ../../mod/profiles.php:619 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" + +#: ../../mod/profiles.php:620 +msgid "Clone this profile" +msgstr "Dieses Profil klonen" + +#: ../../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/profiles.php:627 +msgid "Title/Description:" +msgstr "Titel/Stellenbeschreibung:" + +#: ../../mod/profiles.php:628 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" + +#: ../../mod/profiles.php:629 +msgid "Birthday :" +msgstr "Geburtstag:" + +#: ../../mod/profiles.php:630 +msgid "Street Address:" +msgstr "Straße und Hausnummer:" + +#: ../../mod/profiles.php:631 +msgid "Locality/City:" +msgstr "Wohnort:" + +#: ../../mod/profiles.php:632 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" + +#: ../../mod/profiles.php:633 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:634 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" + +#: ../../mod/profiles.php:635 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" + +#: ../../mod/profiles.php:636 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" + +#: ../../mod/profiles.php:637 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:638 +msgid "Since [date]:" +msgstr "Seit [Datum]:" + +#: ../../mod/profiles.php:640 +msgid "Homepage URL:" +msgstr "Homepage URL:" + +#: ../../mod/profiles.php:643 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" + +#: ../../mod/profiles.php:644 +msgid "Keywords:" +msgstr "Schlüsselwörter:" + +#: ../../mod/profiles.php:647 +msgid "Example: fishing photography software" +msgstr "Beispiel: Angeln Fotografie Software" + +#: ../../mod/profiles.php:648 +msgid "Used in directory listings" +msgstr "Wird in Verzeichnis-Auflistungen verwendet" + +#: ../../mod/profiles.php:649 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein wenig von Dir …" + +#: ../../mod/profiles.php:650 +msgid "Hobbies/Interests" +msgstr "Hobbys/Interessen" + +#: ../../mod/profiles.php:651 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformation und soziale Netzwerke" + +#: ../../mod/profiles.php:652 +msgid "My other channels" +msgstr "Meine anderen Kanäle" + +#: ../../mod/profiles.php:653 +msgid "Musical interests" +msgstr "Musikalische Interessen" + +#: ../../mod/profiles.php:654 +msgid "Books, literature" +msgstr "Bücher, Literatur" + +#: ../../mod/profiles.php:655 +msgid "Television" +msgstr "Fernsehen" + +#: ../../mod/profiles.php:656 +msgid "Film/dance/culture/entertainment" +msgstr "Film/Tanz/Kultur/Unterhaltung" + +#: ../../mod/profiles.php:657 +msgid "Love/romance" +msgstr "Liebe/Romantik" + +#: ../../mod/profiles.php:658 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" + +#: ../../mod/profiles.php:659 +msgid "School/education" +msgstr "Schule/Ausbildung" + +#: ../../mod/profiles.php:665 +msgid "This is your default profile." +msgstr "Das ist Dein Standardprofil" + +#: ../../mod/profiles.php:676 ../../mod/directory.php:143 +#: ../../mod/dirprofile.php:92 +msgid "Age: " +msgstr "Alter:" + +#: ../../mod/profiles.php:719 +msgid "Edit/Manage Profiles" +msgstr "Profile bearbeiten/verwalten" + +#: ../../mod/profiles.php:720 +msgid "Add profile things" +msgstr "Sachen zum Profil hinzufügen" + +#: ../../mod/profiles.php:721 +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/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" +msgstr "Alle Verbindungen" + +#: ../../mod/events.php:81 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." + +#: ../../mod/events.php:86 +msgid "Event title and start time are required." +msgstr "Veranstaltungs- Titel und Startzeit sind erforderlich." + +#: ../../mod/events.php:100 +msgid "Event not found." +msgstr "Termin nicht gefunden." + +#: ../../mod/events.php:364 +msgid "l, F j" +msgstr "l, j. F" + +#: ../../mod/events.php:386 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" + +#: ../../mod/events.php:432 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" + +#: ../../mod/events.php:560 +msgid "Event details" +msgstr "Veranstaltungs-Details" + +#: ../../mod/events.php:561 +msgid "Starting date and Title are required." +msgstr "Startdatum und Titel sind erforderlich." + +#: ../../mod/events.php:565 +msgid "Event Starts:" +msgstr "Veranstaltung startet:" + +#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" +msgstr "Benötigt" + +#: ../../mod/events.php:571 +msgid "Finish date/time is not known or not relevant" +msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" + +#: ../../mod/events.php:573 +msgid "Event Finishes:" +msgstr "Veranstaltung endet:" + +#: ../../mod/events.php:575 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" + +#: ../../mod/events.php:577 +msgid "Description:" +msgstr "Beschreibung:" + +#: ../../mod/events.php:581 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:583 +msgid "Share this event" +msgstr "Die Veranstaltung teilen" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Öffentliche Server" + +#: ../../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/pubsites.php:25 +msgid "Site URL" +msgstr "Server-URL" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Zugangstyp" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" + +#: ../../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/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Lesezeichenordner wählen" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Lesezeichen speichern" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL des Lesezeichens" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Beschreibung" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Raum verlassen" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Diesen Raum löschen" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Ich bin online" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Neuer Chatraum" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Name des Chatraums" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" + +#: ../../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/register.php:48 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." + +#: ../../mod/register.php:82 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." + +#: ../../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/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/register.php:124 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: ../../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/register.php:162 +msgid "Register at another affiliated site/hub" +msgstr "Registrierung auf einem anderen, angeschlossenen Server" + +#: ../../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/register.php:187 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" + +#: ../../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/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." + +#: ../../mod/register.php:209 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" + +#: ../../mod/register.php:212 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" + +#: ../../mod/register.php:213 +msgid "Choose a password" +msgstr "Passwort" + +#: ../../mod/register.php:214 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Abwesend" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Bitte melde dich an." + +#: ../../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/removeme.php:57 +msgid "Remove This Channel" +msgstr "Diesen Kanal löschen" + +#: ../../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/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" + +#: ../../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/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/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." #: ../../mod/rmagic.php:38 msgid "" @@ -4431,671 +5152,72 @@ msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" msgid "Authenticate" msgstr "Authentifizieren" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "Fortfahren" -#: ../../mod/admin.php:97 ../../mod/admin.php:413 -msgid "Site" -msgstr "Seite" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Konten" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" -#: ../../mod/admin.php:99 ../../mod/admin.php:860 -msgid "Channels" -msgstr "Kanäle" - -#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 -msgid "Plugins" -msgstr "Plug-Ins" - -#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 -msgid "Themes" -msgstr "Themes" - -#: ../../mod/admin.php:102 ../../mod/admin.php:515 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Profilkonfiguration" - -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "DB-Aktualisierungen" - -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 -msgid "Logs" -msgstr "Protokolle" - -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" - -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: ../../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/admin.php:212 -msgid "Summary" -msgstr "Zusammenfassung" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Registrierte Benutzer" - -#: ../../mod/admin.php:216 ../../mod/admin.php:518 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Version" - -#: ../../mod/admin.php:219 ../../mod/admin.php:519 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" - -#: ../../mod/admin.php:333 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." - -#: ../../mod/admin.php:364 -msgid "No special theme for accessibility" -msgstr "Kein spezielles Accessibility-Theme vorhanden" - -#: ../../mod/admin.php:393 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" - -#: ../../mod/admin.php:399 -msgid "My site is not a public server" -msgstr "Meine Server ist kein öffentlicher Server" - -#: ../../mod/admin.php:400 -msgid "My site has paid access only" -msgstr "Mein Server erlaubt nur bezahlten Zugang" - -#: ../../mod/admin.php:401 -msgid "My site has free access only" -msgstr "Mein Server erlaubt ausschließlich freien Zugang" - -#: ../../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/admin.php:415 ../../mod/register.php:203 -msgid "Registration" -msgstr "Registrierung" - -#: ../../mod/admin.php:416 -msgid "File upload" -msgstr "Dateiupload" - -#: ../../mod/admin.php:417 -msgid "Policies" -msgstr "Richtlinien" - -#: ../../mod/admin.php:422 -msgid "Site name" -msgstr "Seitenname" - -#: ../../mod/admin.php:423 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:424 -msgid "Administrator Information" -msgstr "Administrator-Informationen" - -#: ../../mod/admin.php:424 +#: ../../mod/connect.php:87 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 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:425 -msgid "System language" -msgstr "System-Sprache" - -#: ../../mod/admin.php:426 -msgid "System theme" -msgstr "System-Theme" - -#: ../../mod/admin.php:426 +#: ../../mod/connect.php:89 ../../mod/connect.php:109 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" +"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:427 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" - -#: ../../mod/admin.php:427 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" - -#: ../../mod/admin.php:428 -msgid "Accessibility system theme" -msgstr "Accessibility-System-Theme" - -#: ../../mod/admin.php:428 -msgid "Accessibility theme" -msgstr "Accessibility-Theme" - -#: ../../mod/admin.php:430 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-Protokoll aktivieren" - -#: ../../mod/admin.php:430 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Kommunikation mit Diaspora und Friendica – experimentell" - -#: ../../mod/admin.php:431 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" - -#: ../../mod/admin.php:431 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" - -#: ../../mod/admin.php:432 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: ../../mod/admin.php:432 +#: ../../mod/connect.php:90 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)." +"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/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/admin.php:435 -msgid "Register text" -msgstr "Registrierungstext" - -#: ../../mod/admin.php:435 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." - -#: ../../mod/admin.php:436 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" - -#: ../../mod/admin.php:436 +#: ../../mod/connect.php:91 ../../mod/connect.php:112 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." +"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:437 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" +#: ../../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: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/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" -#: ../../mod/admin.php:438 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Sammlung nicht gefunden" -#: ../../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/network.php:118 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" -#: ../../mod/admin.php:439 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "Sammlung ist leer" -#: ../../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/network.php:180 +msgid "Collection: " +msgstr "Sammlung:" -#: ../../mod/admin.php:440 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "Verbindung:" -#: ../../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/admin.php:441 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" - -#: ../../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/admin.php:442 -msgid "Disable discovery tab" -msgstr "Den „Entdecken“-Reiter ausblenden" - -#: ../../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/admin.php:443 -msgid "No login on Homepage" -msgstr "Kein Login auf der Homepage" - -#: ../../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/admin.php:445 -msgid "Proxy user" -msgstr "Proxy Benutzer" - -#: ../../mod/admin.php:446 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../mod/admin.php:447 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" - -#: ../../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/admin.php:448 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" - -#: ../../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/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/admin.php:450 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" - -#: ../../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/admin.php:506 -msgid "No server found" -msgstr "Kein Server gefunden" - -#: ../../mod/admin.php:513 ../../mod/admin.php:737 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:513 -msgid "for channel" -msgstr "für Kanal" - -#: ../../mod/admin.php:513 -msgid "on server" -msgstr "auf Server" - -#: ../../mod/admin.php:513 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:534 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: ../../mod/admin.php:544 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." - -#: ../../mod/admin.php:547 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." - -#: ../../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/admin.php:554 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." - -#: ../../mod/admin.php:569 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." - -#: ../../mod/admin.php:573 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" - -#: ../../mod/admin.php:575 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" - -#: ../../mod/admin.php:576 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" - -#: ../../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/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/admin.php:638 -msgid "Account not found" -msgstr "Konto nicht gefunden" - -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' unblocked" -msgstr "Benutzer '%s' freigegeben" - -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' blocked" -msgstr "Benutzer '%s' blockiert" - -#: ../../mod/admin.php:724 ../../mod/admin.php:736 -msgid "Users" -msgstr "Benutzer" - -#: ../../mod/admin.php:726 ../../mod/admin.php:862 -msgid "select all" -msgstr "Alle auswählen" - -#: ../../mod/admin.php:727 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: ../../mod/admin.php:728 -msgid "Request date" -msgstr "Antragsdatum" - -#: ../../mod/admin.php:729 -msgid "No registrations." -msgstr "Keine Registrierungen." - -#: ../../mod/admin.php:730 -msgid "Approve" -msgstr "Genehmigen" - -#: ../../mod/admin.php:731 -msgid "Deny" -msgstr "Verweigern" - -#: ../../mod/admin.php:733 ../../mod/connedit.php:436 -#: ../../mod/connedit.php:579 -msgid "Block" -msgstr "Blockieren" - -#: ../../mod/admin.php:734 ../../mod/connedit.php:436 -#: ../../mod/connedit.php:579 -msgid "Unblock" -msgstr "Freigeben" - -#: ../../mod/admin.php:737 -msgid "Register date" -msgstr "Registrierungs-Datum" - -#: ../../mod/admin.php:737 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: ../../mod/admin.php:737 -msgid "Expires" -msgstr "Verfällt" - -#: ../../mod/admin.php:737 -msgid "Service Class" -msgstr "Service-Klasse" - -#: ../../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/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/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/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/admin.php:799 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" - -#: ../../mod/admin.php:810 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" - -#: ../../mod/admin.php:864 -msgid "Censor" -msgstr "Sperren" - -#: ../../mod/admin.php:865 -msgid "Uncensor" -msgstr "Freigeben" - -#: ../../mod/admin.php:868 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:868 ../../mod/profiles.php:433 -msgid "Address" -msgstr "Adresse" - -#: ../../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/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/admin.php:910 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." - -#: ../../mod/admin.php:914 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." - -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 -msgid "Disable" -msgstr "Deaktivieren" - -#: ../../mod/admin.php:926 ../../mod/admin.php:1128 -msgid "Enable" -msgstr "Aktivieren" - -#: ../../mod/admin.php:952 ../../mod/admin.php:1157 -msgid "Toggle" -msgstr "Umschalten" - -#: ../../mod/admin.php:960 ../../mod/admin.php:1167 -msgid "Author: " -msgstr "Autor: " - -#: ../../mod/admin.php:961 ../../mod/admin.php:1168 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: ../../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/network.php:196 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." #: ../../mod/connections.php:37 ../../mod/connedit.php:64 msgid "Could not access contact record." @@ -5145,10 +5267,6 @@ 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" @@ -5194,21 +5312,390 @@ msgstr "Verbindungen durchsuchen" msgid "Finding: " msgstr "Ergebnisse:" -#: ../../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/rpost.php:97 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 -#: ../../mod/profiles.php:704 -msgid "Age: " -msgstr "Alter:" +#: ../../mod/connedit.php:181 +msgid "is now connected to" +msgstr "ist jetzt verbunden mit" -#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 +#: ../../mod/connedit.php:302 +msgid "Could not access address book record." +msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." + +#: ../../mod/connedit.php:316 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." + +#: ../../mod/connedit.php:323 +msgid "Channel has been unblocked" +msgstr "Kanal nicht mehr blockiert" + +#: ../../mod/connedit.php:324 +msgid "Channel has been blocked" +msgstr "Kanal blockiert" + +#: ../../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/connedit.php:335 +msgid "Channel has been unignored" +msgstr "Kanal wird nicht mehr ignoriert" + +#: ../../mod/connedit.php:336 +msgid "Channel has been ignored" +msgstr "Kanal wird ignoriert" + +#: ../../mod/connedit.php:347 +msgid "Channel has been unarchived" +msgstr "Kanal wurde aus dem Archiv zurück geholt" + +#: ../../mod/connedit.php:348 +msgid "Channel has been archived" +msgstr "Kanal wurde archiviert" + +#: ../../mod/connedit.php:359 +msgid "Channel has been unhidden" +msgstr "Kanal wird nicht mehr versteckt" + +#: ../../mod/connedit.php:360 +msgid "Channel has been hidden" +msgstr "Kanal wurde versteckt" + +#: ../../mod/connedit.php:375 +msgid "Channel has been approved" +msgstr "Kanal wurde zugelassen" + +#: ../../mod/connedit.php:376 +msgid "Channel has been unapproved" +msgstr "Zulassung des Kanals entfernt" + +#: ../../mod/connedit.php:404 +msgid "Connection has been removed." +msgstr "Verbindung wurde gelöscht." + +#: ../../mod/connedit.php:424 +#, php-format +msgid "View %s's profile" +msgstr "%ss Profil ansehen" + +#: ../../mod/connedit.php:428 +msgid "Refresh Permissions" +msgstr "Zugriffsrechte neu laden" + +#: ../../mod/connedit.php:431 +msgid "Fetch updated permissions" +msgstr "Aktualisierte Zugriffsrechte abfragen" + +#: ../../mod/connedit.php:435 +msgid "Recent Activity" +msgstr "Kürzliche Aktivitäten" + +#: ../../mod/connedit.php:438 +msgid "View recent posts and comments" +msgstr "Betrachte die neuesten Beiträge und Kommentare" + +#: ../../mod/connedit.php:442 ../../mod/connedit.php:585 +#: ../../mod/admin.php:734 +msgid "Unblock" +msgstr "Freigeben" + +#: ../../mod/connedit.php:442 ../../mod/connedit.php:585 +#: ../../mod/admin.php:733 +msgid "Block" +msgstr "Blockieren" + +#: ../../mod/connedit.php:445 +msgid "Block or Unblock this connection" +msgstr "Verbindung blockieren oder freigeben" + +#: ../../mod/connedit.php:449 ../../mod/connedit.php:586 +msgid "Unignore" +msgstr "Nicht ignorieren" + +#: ../../mod/connedit.php:449 ../../mod/connedit.php:586 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorieren" + +#: ../../mod/connedit.php:452 +msgid "Ignore or Unignore this connection" +msgstr "Verbindung ignorieren oder wieder beachten" + +#: ../../mod/connedit.php:455 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: ../../mod/connedit.php:455 +msgid "Archive" +msgstr "Archivieren" + +#: ../../mod/connedit.php:458 +msgid "Archive or Unarchive this connection" +msgstr "Verbindung archivieren oder aus dem Archiv zurückholen" + +#: ../../mod/connedit.php:461 +msgid "Unhide" +msgstr "Wieder sichtbar machen" + +#: ../../mod/connedit.php:461 +msgid "Hide" +msgstr "Verstecken" + +#: ../../mod/connedit.php:464 +msgid "Hide or Unhide this connection" +msgstr "Diese Verbindung verstecken oder wieder sichtbar machen" + +#: ../../mod/connedit.php:471 +msgid "Delete this connection" +msgstr "Verbindung löschen" + +#: ../../mod/connedit.php:514 ../../mod/connedit.php:543 +msgid "Approve this connection" +msgstr "Verbindung genehmigen" + +#: ../../mod/connedit.php:514 +msgid "Accept connection to allow communication" +msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" + +#: ../../mod/connedit.php:530 +msgid "Automatic Permissions Settings" +msgstr "Automatische Berechtigungs-Einstellungen" + +#: ../../mod/connedit.php:530 +#, php-format +msgid "Connections: settings for %s" +msgstr "Verbindungseinstellungen für %s" + +#: ../../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/connedit.php:536 +msgid "Slide to adjust your degree of friendship" +msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" + +#: ../../mod/connedit.php:542 +msgid "inherited" +msgstr "geerbt" + +#: ../../mod/connedit.php:544 +msgid "Connection has no individual permissions!" +msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" + +#: ../../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/connedit.php:547 +msgid "Profile Visibility" +msgstr "Sichtbarkeit des Profils" + +#: ../../mod/connedit.php:548 +#, 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/connedit.php:549 +msgid "Contact Information / Notes" +msgstr "Kontaktinformationen / Notizen" + +#: ../../mod/connedit.php:550 +msgid "Edit contact notes" +msgstr "Kontaktnotizen bearbeiten" + +#: ../../mod/connedit.php:552 +msgid "Their Settings" +msgstr "Deren Einstellungen" + +#: ../../mod/connedit.php:553 +msgid "My Settings" +msgstr "Meine Einstellungen" + +#: ../../mod/connedit.php:555 +msgid "Clear/Disable Automatic Permissions" +msgstr "Automatische Berechtigungen abschalten/entfernen" + +#: ../../mod/connedit.php:556 +msgid "Forum Members" +msgstr "Forum Mitglieder" + +#: ../../mod/connedit.php:557 +msgid "Soapbox" +msgstr "Marktschreier" + +#: ../../mod/connedit.php:558 +msgid "Full Sharing (typical social network permissions)" +msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" + +#: ../../mod/connedit.php:559 +msgid "Cautious Sharing " +msgstr "Vorsichtiges Teilen" + +#: ../../mod/connedit.php:560 +msgid "Follow Only" +msgstr "Nur folgen" + +#: ../../mod/connedit.php:561 +msgid "Individual Permissions" +msgstr "Individuelle Zugriffsrechte" + +#: ../../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/connedit.php:563 +msgid "Advanced Permissions" +msgstr "Zugriffsrechte für Fortgeschrittene" + +#: ../../mod/connedit.php:564 +msgid "Simple Permissions (select one and submit)" +msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" + +#: ../../mod/connedit.php:568 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "%ss Profil besuchen - %s" + +#: ../../mod/connedit.php:569 +msgid "Block/Unblock contact" +msgstr "Kontakt blockieren/freigeben" + +#: ../../mod/connedit.php:570 +msgid "Ignore contact" +msgstr "Kontakt ignorieren" + +#: ../../mod/connedit.php:571 +msgid "Repair URL settings" +msgstr "URL-Einstellungen reparieren" + +#: ../../mod/connedit.php:572 +msgid "View conversations" +msgstr "Unterhaltungen anzeigen" + +#: ../../mod/connedit.php:574 +msgid "Delete contact" +msgstr "Kontakt löschen" + +#: ../../mod/connedit.php:577 +msgid "Last update:" +msgstr "Letzte Aktualisierung:" + +#: ../../mod/connedit.php:579 +msgid "Update public posts" +msgstr "Öffentliche Beiträge aktualisieren" + +#: ../../mod/connedit.php:581 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#: ../../mod/connedit.php:587 +msgid "Currently blocked" +msgstr "Derzeit blockiert" + +#: ../../mod/connedit.php:588 +msgid "Currently ignored" +msgstr "Derzeit ignoriert" + +#: ../../mod/connedit.php:589 +msgid "Currently archived" +msgstr "Derzeit archiviert" + +#: ../../mod/connedit.php:590 +msgid "Currently pending" +msgstr "Derzeit anstehend" + +#: ../../mod/connedit.php:591 +msgid "Hide this contact from others" +msgstr "Diese Verbindung vor den anderen verbergen." + +#: ../../mod/connedit.php:591 +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:131 +msgid "Add" +msgstr "Hinzufügen" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Keine Einträge." + +#: ../../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/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/dirprofile.php:108 msgid "Status: " msgstr "Status:" @@ -5233,855 +5720,13 @@ msgstr "Über:" msgid "Keywords: " msgstr "Schlüsselwörter:" -#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:38 -#: ../../mod/menu.php:120 -msgid "Not found." -msgstr "Nicht gefunden." +#: ../../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:1148 -#: ../../mod/photos.php:1163 -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:1195 -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:924 ../../mod/delegate.php:130 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Entferne" - -#: ../../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:1201 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../mod/photos.php:1224 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." -msgstr "Menü nicht gefunden" - -#: ../../mod/mitem.php:47 -msgid "Menu element updated." -msgstr "Menü-Element aktualisiert." - -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../mod/mitem.php:57 -msgid "Menu element added." -msgstr "Menü-Bestandteil hinzugefügt." - -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" -msgstr "Menü-Bestandteile verwalten" - -#: ../../mod/mitem.php:99 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../mod/mitem.php:102 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../mod/mitem.php:103 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../mod/mitem.php:104 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../mod/mitem.php:106 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:131 -msgid "New Menu Element" -msgstr "Neues Menü-Bestandteil" - -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" -msgstr "Link Text" - -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" -msgstr "URL des Links" - -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" -msgstr "Verwende Red Magic-Auth wenn verfügbar" - -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../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/mitem.php:154 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" -msgstr "Ändern" - -#: ../../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/regmod.php:11 -msgid "Please login." -msgstr "Bitte melde dich an." - -#: ../../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/impel.php:33 -msgid "webpage" -msgstr "Webseite" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "Block" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "Layout" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "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." - -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Beschreibung" - -#: ../../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." -msgstr "Layout aktualisiert." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout nicht gefunden." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulname:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "Layout-Hilfe" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." - -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." -msgstr "Bild-Anpassung fehlgeschlagen." - -#: ../../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/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bild ist größer als das Limit von %d" - -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." -msgstr "Kann Bild nicht verarbeiten." - -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." -msgstr "Foto nicht verfügbar." - -#: ../../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/connedit.php:369 -msgid "Channel has been approved" -msgstr "Kanal wurde zugelassen" - -#: ../../mod/connedit.php:370 -msgid "Channel has been unapproved" -msgstr "Zulassung des Kanals entfernt" - -#: ../../mod/connedit.php:398 -msgid "Connection has been removed." -msgstr "Verbindung wurde gelöscht." - -#: ../../mod/connedit.php:418 -#, php-format -msgid "View %s's profile" -msgstr "%ss Profil ansehen" - -#: ../../mod/connedit.php:422 -msgid "Refresh Permissions" -msgstr "Zugriffsrechte neu laden" - -#: ../../mod/connedit.php:425 -msgid "Fetch updated permissions" -msgstr "Aktualisierte Zugriffsrechte abfragen" - -#: ../../mod/connedit.php:429 -msgid "Recent Activity" -msgstr "Kürzliche Aktivitäten" - -#: ../../mod/connedit.php:432 -msgid "View recent posts and comments" -msgstr "Betrachte die neuesten Beiträge und Kommentare" - -#: ../../mod/connedit.php:439 -msgid "Block or Unblock this connection" -msgstr "Verbindung blockieren oder freigeben" - -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 -msgid "Unignore" -msgstr "Nicht ignorieren" - -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorieren" - -#: ../../mod/connedit.php:446 -msgid "Ignore or Unignore this connection" -msgstr "Verbindung ignorieren oder wieder beachten" - -#: ../../mod/connedit.php:449 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: ../../mod/connedit.php:449 -msgid "Archive" -msgstr "Archivieren" - -#: ../../mod/connedit.php:452 -msgid "Archive or Unarchive this connection" -msgstr "Verbindung archivieren oder aus dem Archiv zurückholen" - -#: ../../mod/connedit.php:455 -msgid "Unhide" -msgstr "Wieder sichtbar machen" - -#: ../../mod/connedit.php:455 -msgid "Hide" -msgstr "Verstecken" - -#: ../../mod/connedit.php:458 -msgid "Hide or Unhide this connection" -msgstr "Diese Verbindung verstecken oder wieder sichtbar machen" - -#: ../../mod/connedit.php:465 -msgid "Delete this connection" -msgstr "Verbindung löschen" - -#: ../../mod/connedit.php:508 ../../mod/connedit.php:537 -msgid "Approve this connection" -msgstr "Verbindung genehmigen" - -#: ../../mod/connedit.php:508 -msgid "Accept connection to allow communication" -msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" - -#: ../../mod/connedit.php:524 -msgid "Automatic Permissions Settings" -msgstr "Automatische Berechtigungs-Einstellungen" - -#: ../../mod/connedit.php:524 -#, php-format -msgid "Connections: settings for %s" -msgstr "Verbindungseinstellungen für %s" - -#: ../../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/connedit.php:530 -msgid "Slide to adjust your degree of friendship" -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" - -#: ../../mod/connedit.php:536 -msgid "inherited" -msgstr "geerbt" - -#: ../../mod/connedit.php:538 -msgid "Connection has no individual permissions!" -msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" - -#: ../../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/connedit.php:541 -msgid "Profile Visibility" -msgstr "Sichtbarkeit des Profils" - -#: ../../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/connedit.php:543 -msgid "Contact Information / Notes" -msgstr "Kontaktinformationen / Notizen" - -#: ../../mod/connedit.php:544 -msgid "Edit contact notes" -msgstr "Kontaktnotizen bearbeiten" - -#: ../../mod/connedit.php:546 -msgid "Their Settings" -msgstr "Deren Einstellungen" - -#: ../../mod/connedit.php:547 -msgid "My Settings" -msgstr "Meine Einstellungen" - -#: ../../mod/connedit.php:549 -msgid "Clear/Disable Automatic Permissions" -msgstr "Automatische Berechtigungen abschalten/entfernen" - -#: ../../mod/connedit.php:550 -msgid "Forum Members" -msgstr "Forum Mitglieder" - -#: ../../mod/connedit.php:551 -msgid "Soapbox" -msgstr "Marktschreier" - -#: ../../mod/connedit.php:552 -msgid "Full Sharing (typical social network permissions)" -msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" - -#: ../../mod/connedit.php:553 -msgid "Cautious Sharing " -msgstr "Vorsichtiges Teilen" - -#: ../../mod/connedit.php:554 -msgid "Follow Only" -msgstr "Nur folgen" - -#: ../../mod/connedit.php:555 -msgid "Individual Permissions" -msgstr "Individuelle Zugriffsrechte" - -#: ../../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/connedit.php:557 -msgid "Advanced Permissions" -msgstr "Zugriffsrechte für Fortgeschrittene" - -#: ../../mod/connedit.php:558 -msgid "Simple Permissions (select one and submit)" -msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" - -#: ../../mod/connedit.php:562 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "%ss Profil besuchen - %s" - -#: ../../mod/connedit.php:563 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freigeben" - -#: ../../mod/connedit.php:564 -msgid "Ignore contact" -msgstr "Kontakt ignorieren" - -#: ../../mod/connedit.php:565 -msgid "Repair URL settings" -msgstr "URL-Einstellungen reparieren" - -#: ../../mod/connedit.php:566 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" - -#: ../../mod/connedit.php:568 -msgid "Delete contact" -msgstr "Kontakt löschen" - -#: ../../mod/connedit.php:571 -msgid "Last update:" -msgstr "Letzte Aktualisierung:" - -#: ../../mod/connedit.php:573 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" - -#: ../../mod/connedit.php:575 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: ../../mod/connedit.php:581 -msgid "Currently blocked" -msgstr "Derzeit blockiert" - -#: ../../mod/connedit.php:582 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" - -#: ../../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/message.php:41 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../mod/message.php:72 ../../mod/mail.php:329 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - G:i" - -#: ../../mod/ping.php:237 -msgid "sent you a private message" -msgstr "eine private Nachricht schicken" - -#: ../../mod/ping.php:288 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" - -#: ../../mod/ping.php:329 -msgid "posted an event" -msgstr "hat eine Veranstaltung veröffentlicht" +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" #: ../../mod/setup.php:162 msgid "Red Matrix Server - Setup" @@ -6119,10 +5764,6 @@ msgstr "Lies die Datei \"install/INSTALL.txt\"." 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" @@ -6466,78 +6107,1065 @@ msgid "" "poller." msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Server nicht gefunden." +#: ../../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/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "Block bearbeiten" -#: ../../mod/invite.php:49 +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "Block löschen?" + +#: ../../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/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/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/editblock.php:153 +msgid "Delete Block" +msgstr "Block löschen" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout aktualisiert." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout nicht gefunden." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulname:" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +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/impel.php:33 +msgid "webpage" +msgstr "Webseite" + +#: ../../mod/impel.php:38 +msgid "block" +msgstr "Block" + +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "Layout" + +#: ../../mod/impel.php:117 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Schließe Dich uns an und werde Teil der Red-Matrix" +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." +#: ../../mod/profile_photo.php:161 +msgid "Image resize failed." +msgstr "Bild-Anpassung fehlgeschlagen." -#: ../../mod/invite.php:92 +#: ../../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/profile_photo.php:232 #, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." +msgid "Image exceeds size limit of %d" +msgstr "Bild ist größer als das Limit von %d" -#: ../../mod/invite.php:96 +#: ../../mod/profile_photo.php:241 +msgid "Unable to process image." +msgstr "Kann Bild nicht verarbeiten." + +#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 +msgid "Photo not available." +msgstr "Foto nicht verfügbar." + +#: ../../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 "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." +msgid "Image size reduction [%s] failed." +msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Einladungen senden" +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Quelle erstellt." -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Quelle aktualisiert." -#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Your message:" -msgstr "Deine Nachricht:" +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Schließe Dich uns in der RedMatrix an!" +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Quellen von Inhalten Deines Kanals verwalten." -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Gib diesen Invite-Code ein:" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Neue Quelle" -#: ../../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/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/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein." +#: ../../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/invite.php:138 -msgid "or visit " -msgstr "oder besuche" +#: ../../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/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "Name des Kanals" + +#: ../../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/sources.php:131 +msgid "Delete Source" +msgstr "Quelle löschen" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Quelle gelöscht" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "– auswählen –" + +#: ../../mod/filestorage.php:76 +msgid "Permission Denied." +msgstr "Zugriff verweigert." + +#: ../../mod/filestorage.php:92 +msgid "File not found." +msgstr "Datei nicht gefunden." + +#: ../../mod/filestorage.php:131 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" + +#: ../../mod/filestorage.php:140 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" + +#: ../../mod/filestorage.php:141 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" + +#: ../../mod/filestorage.php:142 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" + +#: ../../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/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/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 +msgid "Help:" +msgstr "Hilfe:" + +#: ../../mod/help.php:67 ../../index.php:249 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal hinzugefügt." + +#: ../../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/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/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" + +#: ../../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/group.php:20 +msgid "Collection created." +msgstr "Sammlung erstellt." + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Sammlung kann nicht erstellt werden." + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Sammlung aktualisiert." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Erstelle eine Sammlung von Kanälen." + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Name der Sammlung:" + +#: ../../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/group.php:107 +msgid "Collection removed." +msgstr "Sammlung gelöscht." + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Löschen der Sammlung nicht möglich." + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Sammlung-Editor" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Mitglieder" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alle verbundenen Kanäle" + +#: ../../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/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/like.php:15 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." + +#: ../../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/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ungültige Anfrage." + +#: ../../mod/like.php:119 +msgid "thing" +msgstr "Sache" + +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." + +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." + +#: ../../mod/like.php:430 +msgid "Action completed." +msgstr "Aktion durchgeführt." + +#: ../../mod/like.php:431 +msgid "Thank you." +msgstr "Vielen Dank." + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Schlagwort entfernt" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Theme-Einstellungen aktualisiert." + +#: ../../mod/admin.php:97 ../../mod/admin.php:413 +msgid "Site" +msgstr "Seite" + +#: ../../mod/admin.php:98 +msgid "Accounts" +msgstr "Konten" + +#: ../../mod/admin.php:99 ../../mod/admin.php:860 +msgid "Channels" +msgstr "Kanäle" + +#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 +msgid "Plugins" +msgstr "Plug-Ins" + +#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 +msgid "Themes" +msgstr "Themes" + +#: ../../mod/admin.php:102 ../../mod/admin.php:515 +msgid "Server" +msgstr "Server" + +#: ../../mod/admin.php:103 +msgid "Profile Config" +msgstr "Profilkonfiguration" + +#: ../../mod/admin.php:104 +msgid "DB updates" +msgstr "DB-Aktualisierungen" + +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 +msgid "Logs" +msgstr "Protokolle" + +#: ../../mod/admin.php:124 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" + +#: ../../mod/admin.php:126 +msgid "User registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" + +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" + +#: ../../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/admin.php:212 +msgid "Summary" +msgstr "Zusammenfassung" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Registrierte Benutzer" + +#: ../../mod/admin.php:216 ../../mod/admin.php:518 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Version" + +#: ../../mod/admin.php:219 ../../mod/admin.php:519 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" + +#: ../../mod/admin.php:333 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." + +#: ../../mod/admin.php:364 +msgid "No special theme for accessibility" +msgstr "Kein spezielles Accessibility-Theme vorhanden" + +#: ../../mod/admin.php:393 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" + +#: ../../mod/admin.php:399 +msgid "My site is not a public server" +msgstr "Meine Server ist kein öffentlicher Server" + +#: ../../mod/admin.php:400 +msgid "My site has paid access only" +msgstr "Mein Server erlaubt nur bezahlten Zugang" + +#: ../../mod/admin.php:401 +msgid "My site has free access only" +msgstr "Mein Server erlaubt ausschließlich freien Zugang" + +#: ../../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/admin.php:416 +msgid "File upload" +msgstr "Dateiupload" + +#: ../../mod/admin.php:417 +msgid "Policies" +msgstr "Richtlinien" + +#: ../../mod/admin.php:422 +msgid "Site name" +msgstr "Seitenname" + +#: ../../mod/admin.php:423 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:424 +msgid "Administrator Information" +msgstr "Administrator-Informationen" + +#: ../../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/admin.php:425 +msgid "System language" +msgstr "System-Sprache" + +#: ../../mod/admin.php:426 +msgid "System theme" +msgstr "System-Theme" + +#: ../../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/admin.php:427 +msgid "Mobile system theme" +msgstr "Mobile System-Theme:" + +#: ../../mod/admin.php:427 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" + +#: ../../mod/admin.php:428 +msgid "Accessibility system theme" +msgstr "Accessibility-System-Theme" + +#: ../../mod/admin.php:428 +msgid "Accessibility theme" +msgstr "Accessibility-Theme" + +#: ../../mod/admin.php:430 +msgid "Enable Diaspora Protocol" +msgstr "Diaspora-Protokoll aktivieren" + +#: ../../mod/admin.php:430 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "Kommunikation mit Diaspora und Friendica – experimentell" + +#: ../../mod/admin.php:431 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" + +#: ../../mod/admin.php:431 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" + +#: ../../mod/admin.php:432 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" + +#: ../../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/admin.php:433 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" + +#: ../../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/admin.php:435 +msgid "Register text" +msgstr "Registrierungstext" + +#: ../../mod/admin.php:435 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." + +#: ../../mod/admin.php:436 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" + +#: ../../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/admin.php:437 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" + +#: ../../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/admin.php:438 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" + +#: ../../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/admin.php:439 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: ../../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/admin.php:440 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" + +#: ../../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/admin.php:441 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" + +#: ../../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/admin.php:442 +msgid "Disable discovery tab" +msgstr "Den „Entdecken“-Reiter ausblenden" + +#: ../../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/admin.php:443 +msgid "No login on Homepage" +msgstr "Kein Login auf der Homepage" + +#: ../../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/admin.php:445 +msgid "Proxy user" +msgstr "Proxy Benutzer" + +#: ../../mod/admin.php:446 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: ../../mod/admin.php:447 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" + +#: ../../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/admin.php:448 +msgid "Delivery interval" +msgstr "Auslieferung Intervall" + +#: ../../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/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/admin.php:450 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" + +#: ../../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/admin.php:506 +msgid "No server found" +msgstr "Kein Server gefunden" + +#: ../../mod/admin.php:513 ../../mod/admin.php:737 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:513 +msgid "for channel" +msgstr "für Kanal" + +#: ../../mod/admin.php:513 +msgid "on server" +msgstr "auf Server" + +#: ../../mod/admin.php:513 +msgid "Status" +msgstr "Status" + +#: ../../mod/admin.php:534 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" + +#: ../../mod/admin.php:544 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." + +#: ../../mod/admin.php:547 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s wurde erfolgreich ausgeführt." + +#: ../../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/admin.php:554 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-Funktion %s konnte nicht gefunden werden." + +#: ../../mod/admin.php:569 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." + +#: ../../mod/admin.php:573 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Aktualisierungen" + +#: ../../mod/admin.php:575 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" + +#: ../../mod/admin.php:576 +msgid "Attempt to execute this update step automatically" +msgstr "Versuche, diesen Updateschritt automatisch auszuführen" + +#: ../../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/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/admin.php:638 +msgid "Account not found" +msgstr "Konto nicht gefunden" + +#: ../../mod/admin.php:658 +#, php-format +msgid "User '%s' unblocked" +msgstr "Benutzer '%s' freigegeben" + +#: ../../mod/admin.php:658 +#, php-format +msgid "User '%s' blocked" +msgstr "Benutzer '%s' blockiert" + +#: ../../mod/admin.php:724 ../../mod/admin.php:736 +msgid "Users" +msgstr "Benutzer" + +#: ../../mod/admin.php:726 ../../mod/admin.php:862 +msgid "select all" +msgstr "Alle auswählen" + +#: ../../mod/admin.php:727 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" + +#: ../../mod/admin.php:728 +msgid "Request date" +msgstr "Antragsdatum" + +#: ../../mod/admin.php:729 +msgid "No registrations." +msgstr "Keine Registrierungen." + +#: ../../mod/admin.php:730 +msgid "Approve" +msgstr "Genehmigen" + +#: ../../mod/admin.php:731 +msgid "Deny" +msgstr "Verweigern" + +#: ../../mod/admin.php:737 +msgid "Register date" +msgstr "Registrierungs-Datum" + +#: ../../mod/admin.php:737 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: ../../mod/admin.php:737 +msgid "Expires" +msgstr "Verfällt" + +#: ../../mod/admin.php:737 +msgid "Service Class" +msgstr "Service-Klasse" + +#: ../../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/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/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/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/admin.php:799 +msgid "Channel not found" +msgstr "Kanal nicht gefunden" + +#: ../../mod/admin.php:810 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanal '%s' gelöscht" + +#: ../../mod/admin.php:821 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" + +#: ../../mod/admin.php:821 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' gesperrt" + +#: ../../mod/admin.php:864 +msgid "Censor" +msgstr "Sperren" + +#: ../../mod/admin.php:865 +msgid "Uncensor" +msgstr "Freigeben" + +#: ../../mod/admin.php:868 +msgid "UID" +msgstr "UID" + +#: ../../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/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/admin.php:910 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-In %s deaktiviert." + +#: ../../mod/admin.php:914 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-In %s aktiviert." + +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +msgid "Disable" +msgstr "Deaktivieren" + +#: ../../mod/admin.php:926 ../../mod/admin.php:1128 +msgid "Enable" +msgstr "Aktivieren" + +#: ../../mod/admin.php:952 ../../mod/admin.php:1157 +msgid "Toggle" +msgstr "Umschalten" + +#: ../../mod/admin.php:960 ../../mod/admin.php:1167 +msgid "Author: " +msgstr "Autor: " + +#: ../../mod/admin.php:961 ../../mod/admin.php:1168 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: ../../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/thing.php:96 msgid "Thing updated" @@ -6596,730 +7224,6 @@ msgstr "URL eines Fotos der Sache (optional)" msgid "Add Thing to your Profile" msgstr "Die Sache Deinem Profil hinzufügen" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." - -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Hilfe:" - -#: ../../mod/help.php:69 ../../index.php:237 -msgid "Not Found" -msgstr "Nicht gefunden" - -#: ../../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/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/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Dieses Konto löschen" - -#: ../../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/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" - -#: ../../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/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/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/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/register.php:48 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." - -#: ../../mod/register.php:82 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." - -#: ../../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/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/register.php:124 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: ../../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/register.php:162 -msgid "Register at another affiliated site/hub" -msgstr "Registrierung auf einem anderen, angeschlossenen Server" - -#: ../../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/register.php:187 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" - -#: ../../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/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/register.php:209 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" - -#: ../../mod/register.php:212 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" - -#: ../../mod/register.php:213 -msgid "Choose a password" -msgstr "Passwort" - -#: ../../mod/register.php:214 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Gruppe existiert nicht" - -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" - -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "Sammlung ist leer" - -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "Sammlung:" - -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "Verbindung:" - -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." - -#: ../../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:131 -msgid "Add" -msgstr "Hinzufügen" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Keine Einträge." - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Fortfahren" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" - -#: ../../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/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/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/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/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/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" - -#: ../../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/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/removeme.php:57 -msgid "Remove This Channel" -msgstr "Diesen Kanal löschen" - -#: ../../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/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/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/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanal löschen" - -#: ../../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/editpost.php:31 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." - -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" -msgstr "Bearbeite Beitrag" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eintrag löschen?" - -#: ../../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/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/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/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/poke.php:159 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../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/poke.php:165 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../mod/blocks.php:62 -msgid "Block Name" -msgstr "Block-Name" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Sammlung erstellt." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Sammlung kann nicht erstellt werden." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Sammlung aktualisiert." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Erstelle eine Sammlung von Kanälen." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Name der Sammlung:" - -#: ../../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/group.php:107 -msgid "Collection removed." -msgstr "Sammlung gelöscht." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Löschen der Sammlung nicht möglich." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Sammlung-Editor" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Mitglieder" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alle verbundenen Kanäle" - -#: ../../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/tagrm.php:41 -msgid "Tag removed" -msgstr "Schlagwort entfernt" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Element nicht verfügbar." - -#: ../../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." -msgstr "Originalbeitrag nicht gefunden." - -#: ../../mod/item.php:383 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." - -#: ../../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/item.php:855 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." - -#: ../../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/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/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Abwesend" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../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/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 "" -"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/siteinfo.php:137 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" - -#: ../../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/siteinfo.php:139 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" - -#: ../../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/sources.php:131 -msgid "Delete Source" -msgstr "Quelle löschen" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Quelle gelöscht" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Öffentliche Server" - -#: ../../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/pubsites.php:25 -msgid "Site URL" -msgstr "Server-URL" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Zugangstyp" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" - -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:440 -msgid "Location" -msgstr "Ort" - #: ../../mod/import.php:25 #, php-format msgid "Your service plan only allows %d channels." @@ -7406,9 +7310,227 @@ msgstr "Dieser Red-Server ist mein primärer Server." msgid "Import existing posts if possible" msgstr "Existierende Beiträge importieren, falls möglich" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" +#: ../../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/lostpass.php:125 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../../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,457 +7606,195 @@ 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/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." - -#: ../../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/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil gelöscht." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Neues Profil erstellt." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profil kann nicht geklont werden." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Dieses Profil kann nicht exportiert werden." - -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "Profil-Name erforderlich." - -#: ../../mod/profiles.php:390 -msgid "Marital Status" -msgstr "Familienstand" - -#: ../../mod/profiles.php:394 -msgid "Romantic Partner" -msgstr "Romantische Partner" - -#: ../../mod/profiles.php:398 -msgid "Likes" -msgstr "Gefällt" - -#: ../../mod/profiles.php:402 -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../mod/profiles.php:406 -msgid "Work/Employment" -msgstr "Arbeit/Anstellung" - -#: ../../mod/profiles.php:409 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:413 -msgid "Political Views" -msgstr "Politische Ansichten" - -#: ../../mod/profiles.php:417 -msgid "Gender" -msgstr "Geschlecht" - -#: ../../mod/profiles.php:421 -msgid "Sexual Preference" -msgstr "Sexuelle Orientierung" - -#: ../../mod/profiles.php:425 -msgid "Homepage" -msgstr "Webseite" - -#: ../../mod/profiles.php:429 -msgid "Interests" -msgstr "Hobbys/Interessen" - -#: ../../mod/profiles.php:523 -msgid "Profile updated." -msgstr "Profil aktualisiert." - -#: ../../mod/profiles.php:600 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" - -#: ../../mod/profiles.php:642 -msgid "Edit Profile Details" -msgstr "Bearbeite Profil-Details" - -#: ../../mod/profiles.php:644 -msgid "View this profile" -msgstr "Dieses Profil ansehen" - -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" -msgstr "Profilfoto ändern" - -#: ../../mod/profiles.php:647 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" - -#: ../../mod/profiles.php:648 -msgid "Clone this profile" -msgstr "Dieses Profil klonen" - -#: ../../mod/profiles.php:649 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" - -#: ../../mod/profiles.php:651 -msgid "Import profile from file" -msgstr "Profil aus einer Datei importieren" - -#: ../../mod/profiles.php:652 -msgid "Export profile to file" -msgstr "Profil in eine Datei exportieren" - -#: ../../mod/profiles.php:653 -msgid "Profile Name:" -msgstr "Profilname:" - -#: ../../mod/profiles.php:654 -msgid "Your Full Name:" -msgstr "Dein voller Name:" - -#: ../../mod/profiles.php:655 -msgid "Title/Description:" -msgstr "Titel/Stellenbeschreibung:" - -#: ../../mod/profiles.php:656 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" - -#: ../../mod/profiles.php:657 +#: ../../mod/manage.php:136 #, php-format -msgid "Birthday (%s):" -msgstr "Geburtstag (%s):" +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/profiles.php:658 -msgid "Street Address:" -msgstr "Straße und Hausnummer:" +#: ../../mod/manage.php:144 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" -#: ../../mod/profiles.php:659 -msgid "Locality/City:" -msgstr "Wohnort:" +#: ../../mod/manage.php:149 +msgid "Current Channel" +msgstr "Aktueller Kanal" -#: ../../mod/profiles.php:660 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" +#: ../../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:661 -msgid "Country:" -msgstr "Land:" +#: ../../mod/manage.php:152 +msgid "Default Channel" +msgstr "Standard Kanal" -#: ../../mod/profiles.php:662 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" +#: ../../mod/manage.php:153 +msgid "Make Default" +msgstr "Zum Standard machen" -#: ../../mod/profiles.php:663 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "Wall Fotos" -#: ../../mod/profiles.php:664 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" -#: ../../mod/profiles.php:665 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" +#: ../../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:666 -msgid "Since [date]:" -msgstr "Seit [Datum]:" +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "interessiert sich für:" -#: ../../mod/profiles.php:668 -msgid "Homepage URL:" -msgstr "Homepage URL:" +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Keine Übereinstimmungen" -#: ../../mod/profiles.php:671 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "Menü aktualisiert." -#: ../../mod/profiles.php:672 -msgid "Keywords:" -msgstr "Schlüsselwörter:" +#: ../../mod/menu.php:25 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." -#: ../../mod/profiles.php:675 -msgid "Example: fishing photography software" -msgstr "Beispiel: Angeln Fotografie Software" +#: ../../mod/menu.php:30 +msgid "Menu created." +msgstr "Menü erstellt." -#: ../../mod/profiles.php:676 -msgid "Used in directory listings" -msgstr "Wird in Verzeichnis-Auflistungen verwendet" +#: ../../mod/menu.php:34 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." -#: ../../mod/profiles.php:677 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein wenig von Dir …" +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "Menüs verwalten" -#: ../../mod/profiles.php:678 -msgid "Hobbies/Interests" -msgstr "Hobbys/Interessen" +#: ../../mod/menu.php:60 +msgid "Drop" +msgstr "Löschen" -#: ../../mod/profiles.php:679 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformation und soziale Netzwerke" +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "Neues Menü erstellen" -#: ../../mod/profiles.php:680 -msgid "My other channels" -msgstr "Meine anderen Kanäle" +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" -#: ../../mod/profiles.php:681 -msgid "Musical interests" -msgstr "Musikalische Interessen" +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" -#: ../../mod/profiles.php:682 -msgid "Books, literature" -msgstr "Bücher, Literatur" +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" -#: ../../mod/profiles.php:683 -msgid "Television" -msgstr "Fernsehen" +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "Neues Menü" -#: ../../mod/profiles.php:684 -msgid "Film/dance/culture/entertainment" -msgstr "Film/Tanz/Kultur/Unterhaltung" +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "Menü Name" -#: ../../mod/profiles.php:685 -msgid "Love/romance" -msgstr "Liebe/Romantik" +#: ../../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:686 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "Menü Titel" -#: ../../mod/profiles.php:687 -msgid "School/education" -msgstr "Schule/Ausbildung" +#: ../../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:693 -msgid "This is your default profile." -msgstr "Das ist Dein Standardprofil" +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" -#: ../../mod/profiles.php:747 -msgid "Edit/Manage Profiles" -msgstr "Profile bearbeiten/verwalten" +#: ../../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:748 -msgid "Add profile things" -msgstr "Sachen zum Profil hinzufügen" +#: ../../mod/menu.php:98 +msgid "Menu deleted." +msgstr "Menü gelöscht." -#: ../../mod/profiles.php:749 -msgid "Include desirable objects in your profile" -msgstr "Binde begehrenswerte Dinge in Dein Profil ein" +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "Menü bearbeiten" -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Kein Kanal." +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "Keine Nachrichten." -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - G:i" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Kanal hinzufügen" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." - -#: ../../mod/like.php:21 +#: ../../mod/new_channel.php:110 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." +"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/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ungültige Anfrage." +#: ../../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/like.php:119 -msgid "thing" -msgstr "Sache" +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." - -#: ../../mod/like.php:417 -msgid "Action completed." -msgstr "Aktion durchgeführt." - -#: ../../mod/like.php:418 -msgid "Thank you." -msgstr "Vielen Dank." - -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." - -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" - -#: ../../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/api.php:104 +#: ../../mod/new_channel.php:115 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?" +"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/chat.php:167 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" +#: ../../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/chat.php:178 -msgid "Leave Room" -msgstr "Raum verlassen" +#: ../../mod/new_channel.php:118 +msgid "Channel Type" +msgstr "Kanaltyp" -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Diesen Raum löschen" +#: ../../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/chat.php:180 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" +#: ../../mod/home.php:46 +msgid "Red Matrix - "The Network"" +msgstr "RedMatrix – "Das Netzwerk"" -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ich bin online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Neuer Chatraum" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Name des Chatraums" - -#: ../../mod/chat.php:225 +#: ../../mod/home.php:101 #, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" - -#: ../../mod/events.php:91 -msgid "Event title and start time are required." -msgstr "Veranstaltungs- Titel und Startzeit sind erforderlich." - -#: ../../mod/events.php:105 -msgid "Event not found." -msgstr "Termin nicht gefunden." - -#: ../../mod/events.php:369 -msgid "l, F j" -msgstr "l, j. F" - -#: ../../mod/events.php:391 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: ../../mod/events.php:437 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: ../../mod/events.php:438 -msgid "Previous" -msgstr "Voriges" - -#: ../../mod/events.php:536 -msgid "hour:minute" -msgstr "Stunde:Minute" - -#: ../../mod/events.php:556 -msgid "Event details" -msgstr "Veranstaltungs-Details" - -#: ../../mod/events.php:557 -#, php-format -msgid "Format is %s %s." -msgstr "Format ist %s %s." - -#: ../../mod/events.php:558 -msgid "Starting date and Title are required." -msgstr "Startdatum und Titel sind erforderlich." - -#: ../../mod/events.php:562 -msgid "Event Starts:" -msgstr "Veranstaltung startet:" - -#: ../../mod/events.php:570 -msgid "Finish date/time is not known or not relevant" -msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" - -#: ../../mod/events.php:572 -msgid "Event Finishes:" -msgstr "Veranstaltung endet:" - -#: ../../mod/events.php:575 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" - -#: ../../mod/events.php:577 -msgid "Description:" -msgstr "Beschreibung:" - -#: ../../mod/events.php:581 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:583 -msgid "Share this event" -msgstr "Die Veranstaltung teilen" +msgid "Welcome to %s" +msgstr "Willkommen auf %s" #: ../../mod/notifications.php:26 msgid "Invalid request identifier." @@ -7940,119 +7804,438 @@ msgstr "Ungültiger Anfrage-Identifikator." msgid "Discard" msgstr "Verwerfen" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." +#: ../../mod/notifications.php:94 ../../mod/notify.php:53 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." +#: ../../mod/notifications.php:98 ../../mod/notify.php:57 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." -#: ../../mod/lostpass.php:63 +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: ../../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: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/poll.php:64 +msgid "Poll" +msgstr "Umfrage" + +#: ../../mod/poll.php:69 +msgid "View Results" +msgstr "Ergebnisse" + +#: ../../mod/removeaccount.php:30 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." +"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/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Dieses Konto löschen" -#: ../../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 +#: ../../mod/removeaccount.php:58 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." +"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/lostpass.php:107 +#: ../../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/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/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Keine Dienstklassenbeschränkungen gefunden." + +#: ../../view/theme/apw/php/config.php:202 +#: ../../view/theme/apw/php/config.php:236 +msgid "Schema Default" +msgstr "Standard-Schema" + +#: ../../view/theme/apw/php/config.php:203 +msgid "Sans-Serif" +msgstr "Sans-Serif" + +#: ../../view/theme/apw/php/config.php:204 +msgid "Monospace" +msgstr "Monospace" + +#: ../../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" + +#: ../../view/theme/apw/php/config.php:260 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set scheme" +msgstr "Schema" + +#: ../../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" + +#: ../../view/theme/apw/php/config.php:262 +msgid "Set font face" +msgstr "Schriftart" + +#: ../../view/theme/apw/php/config.php:263 +msgid "Set iconset" +msgstr "Iconset" + +#: ../../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)" + +#: ../../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)" + +#: ../../view/theme/apw/php/config.php:266 +msgid "Set shadow color, default #000" +msgstr "Farbe der Schatten (Default #000)" + +#: ../../view/theme/apw/php/config.php:267 +msgid "Set radius size, default 5px" +msgstr "Ecken-Radius (Default 5px)" + +#: ../../view/theme/apw/php/config.php:268 +msgid "Set line-height for posts and comments" +msgstr "Zeilenhöhe in Beiträgen und Kommentaren" + +#: ../../view/theme/apw/php/config.php:269 +msgid "Set background image" +msgstr "Hintergrundbild" + +#: ../../view/theme/apw/php/config.php:270 +msgid "Set background attachment" +msgstr "Hintergrunddatei" + +#: ../../view/theme/apw/php/config.php:271 +msgid "Set background color" +msgstr "Hintergrundfarbe" + +#: ../../view/theme/apw/php/config.php:272 +msgid "Set section background image" +msgstr "Hintergrundbild für die Section" + +#: ../../view/theme/apw/php/config.php:273 +msgid "Set section background color" +msgstr "Hintergrundfarbe für die Section" + +#: ../../view/theme/apw/php/config.php:274 +msgid "Set color of items - use hex" +msgstr "Farbe für Beiträge – Hex benutzen" + +#: ../../view/theme/apw/php/config.php:275 +msgid "Set color of links - use hex" +msgstr "Farbe für Links – Hex benutzen" + +#: ../../view/theme/apw/php/config.php:276 +msgid "Set max-width for items. Default 400px" +msgstr "Maximale Breite von Beiträgen (Default 400px)" + +#: ../../view/theme/apw/php/config.php:277 +msgid "Set min-width for items. Default 240px" +msgstr "Minimale Breite von Beiträgen (Default 240px)" + +#: ../../view/theme/apw/php/config.php:278 +msgid "Set the generic content wrapper width. Default 48%" +msgstr "Breite des \"generic content wrapper\" (Default 48%)" + +#: ../../view/theme/apw/php/config.php:279 +msgid "Set color of fonts - use hex" +msgstr "Schriftfarbe – Hex benutzen" + +#: ../../view/theme/apw/php/config.php:280 +msgid "Set background-size element" +msgstr "Größe des Hintergrund-Elements" + +#: ../../view/theme/apw/php/config.php:281 +msgid "Item opacity" +msgstr "Deckkraft der Beiträge" + +#: ../../view/theme/apw/php/config.php:282 +msgid "Display post previews only" +msgstr "Nur Beitragsvorschau anzeigen" + +#: ../../view/theme/apw/php/config.php:283 +msgid "Display side bar on channel page" +msgstr "Zeige die Seitenleiste auf der Kanal-Seite" + +#: ../../view/theme/apw/php/config.php:284 +msgid "Colour of the navigation bar" +msgstr "Farbe der Navigationsleiste" + +#: ../../view/theme/apw/php/config.php:285 +msgid "Item float" +msgstr "Beitragsfluss" + +#: ../../view/theme/apw/php/config.php:286 +msgid "Left offset of the section element" +msgstr "Linker Rand des Section Elements" + +#: ../../view/theme/apw/php/config.php:287 +msgid "Right offset of the section element" +msgstr "Rechter Rand des Section Elements" + +#: ../../view/theme/apw/php/config.php:288 +msgid "Section width" +msgstr "Breite der Section" + +#: ../../view/theme/apw/php/config.php:289 +msgid "Left offset of the aside" +msgstr "Linker Rand des Aside-Elements" + +#: ../../view/theme/apw/php/config.php:290 +msgid "Right offset of the aside element" +msgstr "Rechter Rand des Aside-Elements" + +#: ../../view/theme/blogga/php/config.php:47 +#: ../../view/theme/blogga/view/theme/blog/config.php:47 +msgid "None" +msgstr "Kein" + +#: ../../view/theme/blogga/php/config.php:70 +#: ../../view/theme/blogga/view/theme/blog/config.php:70 +msgid "Header image" +msgstr "Titelbild" + +#: ../../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" + +#: ../../view/theme/redbasic/php/config.php:84 +msgid "Light (Red Matrix default)" +msgstr "Hell (RedMatrix-Voreinstellung)" + +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Narrow navbar" +msgstr "Schmale Navigationsleiste" + +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Navigation bar background color" +msgstr "Hintergrundfarbe der Navigationsleiste" + +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Navigation bar gradient top color" +msgstr "Farbverlauf der Navigationsleiste: Farbe oben" + +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Navigation bar gradient bottom color" +msgstr "Farbverlauf der Navigationsleiste: Farbe unten" + +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Navigation active button gradient top color" +msgstr "Navigations-Button aktiv: Farbe für Farbverlauf oben" + +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Navigation active button gradient bottom color" +msgstr "Navigations-Button aktiv: Farbe für Farbverlauf unten" + +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Navigation bar border color " +msgstr "Farbe für den Rand der Navigationsleiste" + +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Navigation bar icon color " +msgstr "Farbe für die Icons der Navigationsleiste" + +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Navigation bar active icon color " +msgstr "Farbe für aktive Icons der Navigationsleiste" + +#: ../../view/theme/redbasic/php/config.php:113 +msgid "link color" +msgstr "Farbe für Links" + +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set font-color for banner" +msgstr "Farbe der Schrift des Banners" + +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set the background color" +msgstr "Hintergrundfarbe" + +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set the background image" +msgstr "Hintergrundbild" + +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set the background color of items" +msgstr "Hintergrundfarbe für Beiträge" + +#: ../../view/theme/redbasic/php/config.php:118 +msgid "Set the background color of comments" +msgstr "Hintergrundfarbe für Kommentare" + +#: ../../view/theme/redbasic/php/config.php:119 +msgid "Set the border color of comments" +msgstr "Farbe des Randes von Kommentaren" + +#: ../../view/theme/redbasic/php/config.php:120 +msgid "Set the indent for comments" +msgstr "Einzug für Kommentare" + +#: ../../view/theme/redbasic/php/config.php:121 +msgid "Set the basic color for item icons" +msgstr "Grundfarbe für Beitrags-Icons" + +#: ../../view/theme/redbasic/php/config.php:122 +msgid "Set the hover color for item icons" +msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" + +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Set font-size for the entire application" +msgstr "Schriftgröße für die ganze Applikation" + +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-color for posts and comments" +msgstr "Schriftfarbe für Posts und Kommentare" + +#: ../../view/theme/redbasic/php/config.php:126 +msgid "Set radius of corners" +msgstr "Ecken-Radius" + +#: ../../view/theme/redbasic/php/config.php:127 +msgid "Set shadow depth of photos" +msgstr "Schattentiefe von Fotos" + +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Set maximum width of conversation regions" +msgstr "Maximalbreite der Unterhaltungsbereiche" + +#: ../../view/theme/redbasic/php/config.php:129 +msgid "Center conversation regions" +msgstr "Konversationsbereich zentrieren" + +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Set minimum opacity of nav bar - to hide it" +msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)" + +#: ../../view/theme/redbasic/php/config.php:131 +msgid "Set size of conversation author photo" +msgstr "Größe der Avatare von Themenstartern" + +#: ../../view/theme/redbasic/php/config.php:132 +msgid "Set size of followup author photos" +msgstr "Größe der Avatare von Kommentatoren" + +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Sloppy photo albums" +msgstr "Schräge Fotoalben" + +#: ../../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?" + +#: ../../boot.php:1294 #, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" +msgid "Update %s failed. See error logs." +msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" +#: ../../boot.php:1297 +#, php-format +msgid "Update Error at %s" +msgstr "Aktualisierungsfehler auf %s" -#: ../../mod/lostpass.php:123 +#: ../../boot.php:1471 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." +"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/lostpass.php:124 -msgid "Email Address" -msgstr "E-Mail Adresse" +#: ../../boot.php:1499 +msgid "Password" +msgstr "Kennwort" -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Zurücksetzen" +#: ../../boot.php:1500 +msgid "Remember me" +msgstr "Angaben speichern" -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "Hilfe zu dieser Funktion" +#: ../../boot.php:1505 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" -#: ../../mod/layouts.php:85 -msgid "Layout Name" -msgstr "Layout-Name" +#: ../../boot.php:1570 +msgid "permission denied" +msgstr "Zugriff verweigert" -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "Block bearbeiten" +#: ../../boot.php:1571 +msgid "Got Zot?" +msgstr "Haste schon Zot?" -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Block löschen?" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "Block löschen" - -#: ../../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" - -#: ../../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/follow.php:25 -msgid "Channel added." -msgstr "Kanal hinzugefügt." - -#: ../../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." +#: ../../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["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."; -$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["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["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["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["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["%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["Preview"] = "Vorschau"; +$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["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["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["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["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["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,132 +467,12 @@ $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["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["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"; -$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."; @@ -736,126 +532,82 @@ $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["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"; @@ -888,19 +640,295 @@ $a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen ( $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["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["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["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["Your photos"] = "Deine Bilder"; +$a->strings["Your files"] = "Deine Dateien"; +$a->strings["Your chatrooms"] = "Deine Chaträume"; +$a->strings["Your bookmarks"] = "Deine Lesezeichen"; +$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 and documentation"] = "Hilfe und Dokumentation"; +$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-Verzeichnis"; +$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["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; +$a->strings["Connections"] = "Verbindungen"; +$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["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["Event Calendar"] = "Veranstaltungskalender"; +$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["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,6 +1043,448 @@ $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["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 :"] = "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."; +$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["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."; +$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["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."; +$a->strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; +$a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; +$a->strings["libCurl PHP module"] = "libCurl-PHP-Modul"; +$a->strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; +$a->strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; +$a->strings["mysqli PHP module"] = "mysqli-PHP-Modul"; +$a->strings["mb_string PHP module"] = "mb_string-PHP-Modul"; +$a->strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; +$a->strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert."; +$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["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"; @@ -1023,25 +1493,40 @@ $a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzei $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["[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["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"; @@ -1068,7 +1553,6 @@ $a->strings["My site is not a public server"] = "Meine Server ist kein öffentli $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"; @@ -1150,8 +1634,6 @@ $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"; @@ -1173,7 +1655,6 @@ $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."; @@ -1203,138 +1684,122 @@ $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["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["Thing updated"] = "Sache aktualisiert"; +$a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +$a->strings["Thing added"] = "Sache hinzugefügt"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Sache anzeigen"; +$a->strings["item not found."] = "Eintrag nicht gefunden"; +$a->strings["Edit Thing"] = "Sache bearbeiten"; +$a->strings["Select a profile"] = "Wähle ein Profil"; +$a->strings["Post an activity"] = "Aktivitätsnachricht senden"; +$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +$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["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"; +$a->strings["Imported file is empty."] = "Die importierte Datei ist leer."; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; +$a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; +$a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; +$a->strings["Import completed."] = "Import abgeschlossen."; +$a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; +$a->strings["Import Channel"] = "Kanal importieren"; +$a->strings["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."] = "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."; +$a->strings["File to Upload"] = "Hochzuladende Datei:"; +$a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; +$a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; +$a->strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; +$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["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["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["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."; +$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."; @@ -1356,545 +1821,122 @@ $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."; -$a->strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; -$a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; -$a->strings["libCurl PHP module"] = "libCurl-PHP-Modul"; -$a->strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; -$a->strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; -$a->strings["mysqli PHP module"] = "mysqli-PHP-Modul"; -$a->strings["mb_string PHP module"] = "mb_string-PHP-Modul"; -$a->strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; -$a->strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; -$a->strings["proc_open"] = "proc_open"; -$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert."; -$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["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"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Sache anzeigen"; -$a->strings["item not found."] = "Eintrag nicht gefunden"; -$a->strings["Edit Thing"] = "Sache bearbeiten"; -$a->strings["Select a profile"] = "Wähle ein Profil"; -$a->strings["Post an activity"] = "Aktivitätsnachricht senden"; -$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -$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["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["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["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["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"; -$a->strings["Imported file is empty."] = "Die importierte Datei ist leer."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; -$a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; -$a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -$a->strings["Import completed."] = "Import abgeschlossen."; -$a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; -$a->strings["Import Channel"] = "Kanal importieren"; -$a->strings["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."] = "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."; -$a->strings["File to Upload"] = "Hochzuladende Datei:"; -$a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; -$a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; -$a->strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; -$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["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."; -$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["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["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"; From add493ef4dfaa84d4bb2a8eccfbc20df2c300618 Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 7 Nov 2014 22:46:39 +0100 Subject: [PATCH 055/176] 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] From b29a968be8df52cd7c9b6d5bebb618534788337c Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sat, 8 Nov 2014 00:17:53 +0000 Subject: [PATCH 056/176] 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] From 1a8fc73b57b7139f2ee9ecff1b1f9c1ae972329d Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Sat, 8 Nov 2014 20:06:08 +0100 Subject: [PATCH 057/176] Fix highlighting of login button --- view/tpl/nav.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index bc9d0ba37..d7d6d9d08 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -47,10 +47,10 @@
- - +
{{/if}} From adb5cec0d26bc7273a5e514721a1fa2f9124c49a Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 8 Nov 2014 13:14:08 -0800 Subject: [PATCH 060/176] add acl loading fix to menu-item edits --- version.inc | 2 +- view/tpl/mitemedit.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/version.inc b/version.inc index b0f79cf5f..efaa3c1ee 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-07.852 +2014-11-08.853 diff --git a/view/tpl/mitemedit.tpl b/view/tpl/mitemedit.tpl index 482005e44..f398cf02c 100644 --- a/view/tpl/mitemedit.tpl +++ b/view/tpl/mitemedit.tpl @@ -26,7 +26,7 @@
- +
From 28f3d7be5a104bc1f1e1eff2e22fd19b4ab3a2d1 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Sun, 9 Nov 2014 00:18:26 +0100 Subject: [PATCH 061/176] New layout for directory --- mod/directory.php | 54 +++++++++-- mod/dirprofile.php | 184 ------------------------------------ view/css/mod_directory.css | 31 +++++- view/tpl/direntry.tpl | 25 ++++- view/tpl/direntry_large.tpl | 43 --------- 5 files changed, 96 insertions(+), 241 deletions(-) delete mode 100644 mod/dirprofile.php delete mode 100755 view/tpl/direntry_large.tpl diff --git a/mod/directory.php b/mod/directory.php index 3d7632ec0..1571efcf5 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -122,6 +122,10 @@ function directory_content(&$a) { $pdesc = (($rr['description']) ? $rr['description'] . '
' : ''); $connect_link = ((local_user()) ? z_root() . '/follow?f=&url=' . urlencode($rr['address']) : ''); + // Checking status is disabled ATM until someone checks the performance impact more carefully + //$online = remote_online_status($rr['address']); + $online = ''; + if(in_array($rr['hash'],$contacts)) $connect_link = ''; @@ -142,8 +146,6 @@ function directory_content(&$a) { if(($years = age($rr['birthday'],'UTC','')) != 0) $details .= '
' . t('Age: ') . $years ; } - if(strlen($rr['gender'])) - $details .= '
' . t('Gender: ') . $rr['gender']; $page_type = ''; @@ -155,13 +157,48 @@ function directory_content(&$a) { || (x($profile,'country') == 1)) $location = t('Location:'); - $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False); + $gender = ((x($profile,'gender') == 1) ? t('Gender: ') . $profile['gender']: False); - $marital = ((x($profile,'marital') == 1) ? t('Status:') : False); + $marital = ((x($profile,'marital') == 1) ? t('Status: ') . $profile['marital']: False); - $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False); + $homepage = ((x($profile,'homepage') == 1) ? t('Homepage: ') : False); + $homepageurl = ((x($profile,'homepage') == 1) ? $profile['homepage'] : ''); - $about = ((x($profile,'about') == 1) ? t('About:') : False); + $hometown = ((x($profile,'hometown') == 1) ? t('Hometown: ') . $profile['hometown'] : False); + + $about = ((x($profile,'about') == 1) ? t('About: ') . $profile['about'] : False); + + $keywords = ((x($profile,'keywords')) ? $profile['keywords'] : ''); + +logger('keywords: '.$keywords); + if($keywords) { + $keywords = str_replace(',',' ', $keywords); + $keywords = str_replace(' ',' ', $keywords); + $karr = explode(' ', $keywords); + $out = ''; + if($karr) { + if(local_user()) { + $r = q("select keywords from profile where uid = %d and is_default = 1 limit 1", + intval(local_user()) + ); + if($r) { + $keywords = str_replace(',',' ', $r[0]['keywords']); + $keywords = str_replace(' ',' ', $keywords); + $marr = explode(' ', $keywords); + } + } + foreach($karr as $k) { + if(strlen($out)) + $out .= ', '; + if($marr && in_arrayi($k,$marr)) + $out .= '' . $k . ''; + else + $out .= $k; + } + } + + } +logger('out: '.$out); $entry = array( @@ -179,9 +216,14 @@ function directory_content(&$a) { 'pdesc' => $pdesc, 'marital' => $marital, 'homepage' => $homepage, + 'homepageurl' => $homepageurl, + 'hometown' => $hometown, 'about' => $about, 'conn_label' => t('Connect'), 'connect' => $connect_link, + 'online' => $online, + 'kw' => (($out) ? t('Keywords: ') : ''), + 'keywords' => $out, ); $arr = array('contact' => $rr, 'entry' => $entry); diff --git a/mod/dirprofile.php b/mod/dirprofile.php deleted file mode 100644 index e9b12ada7..000000000 --- a/mod/dirprofile.php +++ /dev/null @@ -1,184 +0,0 @@ -' : ''); - - $qrlink = zid($rr['url']); - $connect_link = ((local_user()) ? z_root() . '/follow?f=&url=' . urlencode($rr['address']) : ''); - - $online = remote_online_status($rr['address']); - - - if(in_array($rr['hash'],$contacts)) - $connect_link = ''; - - $details = ''; - if(strlen($rr['locale'])) - $details .= $rr['locale']; - if(strlen($rr['region'])) { - if(strlen($rr['locale'])) - $details .= ', '; - $details .= $rr['region']; - } - if(strlen($rr['country'])) { - if(strlen($details)) - $details .= ', '; - $details .= $rr['country']; - } - if(strlen($rr['birthday'])) { - if(($years = age($rr['birthday'],'UTC','')) != 0) - $details .= '
' . t('Age: ') . $years ; - } - if(strlen($rr['gender'])) - $details .= '
' . t('Gender: ') . $rr['gender']; - - $page_type = ''; - - $profile = $rr; - - if ((x($profile,'locale') == 1) - || (x($profile,'region') == 1) - || (x($profile,'postcode') == 1) - || (x($profile,'country') == 1)) - $location = t('Location:'); - - - $marital = ((x($profile,'marital') == 1) ? t('Status: ') . $profile['marital'] : False); - $sexual = ((x($profile,'sexual') == 1) ? t('Sexual Preference: ') . $profile['sexual'] : False); - - $homepage = ((x($profile,'homepage') == 1) ? t('Homepage: ') . linkify($profile['homepage']) : False); - $hometown = ((x($profile,'hometown') == 1) ? t('Hometown: ') . $profile['hometown'] : False); - - $about = ((x($profile,'about') == 1) ? t('About: ') . bbcode($profile['about']) : False); - - $keywords = ((x($profile,'keywords')) ? $profile['keywords'] : ''); - if($keywords) { - $keywords = str_replace(',',' ', $keywords); - $keywords = str_replace(' ',' ', $keywords); - $karr = explode(' ', $keywords); - $out = ''; - if($karr) { - if(local_user()) { - $r = q("select keywords from profile where uid = %d and is_default = 1 limit 1", - intval(local_user()) - ); - if($r) { - $keywords = str_replace(',',' ', $r[0]['keywords']); - $keywords = str_replace(' ',' ', $keywords); - $marr = explode(' ', $keywords); - } - } - foreach($karr as $k) { - if(strlen($out)) - $out .= ', '; - if($marr && in_arrayi($k,$marr)) - $out .= '' . $k . ''; - else - $out .= $k; - } - } - - } - $entry = replace_macros(get_markup_template('direntry_large.tpl'), array( - '$id' => ++$t, - '$profile_link' => $profile_link, - '$qrlink' => $qrlink, - '$photo' => $rr['photo_l'], - '$alttext' => $rr['name'] . ' ' . $rr['address'], - '$name' => $rr['name'], - '$online' => (($online) ? t('Online Now') : ''), - '$details' => $pdesc . $details, - '$profile' => $profile, - '$address' => $rr['address'], - '$location' => $location, - '$gender' => $gender, - '$pdesc' => $pdesc, - '$marital' => $marital, - '$homepage' => $homepage, - '$hometown' => $hometown, - '$about' => $about, - '$kw' => (($out) ? t('Keywords: ') : ''), - '$keywords' => $out, - '$conn_label' => t('Connect'), - '$connect' => $connect_link, - )); - - - echo $entry; - killme(); - - } - } - else { - info( t("Not found.") . EOL); - } - } - } - } - - - - -} \ No newline at end of file diff --git a/view/css/mod_directory.css b/view/css/mod_directory.css index bc8054937..98b99ef50 100644 --- a/view/css/mod_directory.css +++ b/view/css/mod_directory.css @@ -8,15 +8,17 @@ .directory-photo { margin-left: 25px; } +.directory-photo-img { + margin-left: auto; + margin-right: auto; + display:block; +} .directory-details { text-align: center; margin-left: 5px; margin-right: 5px; } .directory-item { - float: left; - width: 225px; - height: 260px; overflow: hidden; margin: 2px; } @@ -42,3 +44,26 @@ div.dirtagblock.widget { float: left; width: 225px; } + +.contact-photo { + float: left; + margin-right: 16px; +} + +.contact-name { + font-size: larger; +} + +.contact-info { + display: block; + overflow: hidden; +} + +.directory-item { + margin: 16px; +} +.directory-connect { + display:block; + margin-left:auto; + margin-right: auto; +} diff --git a/view/tpl/direntry.tpl b/view/tpl/direntry.tpl index a6252bb9a..691905ecd 100755 --- a/view/tpl/direntry.tpl +++ b/view/tpl/direntry.tpl @@ -3,12 +3,27 @@
{{$entry.alttext}} -
-
- -
{{$entry.name}}
{{if $entry.connect}} {{/if}} -
{{$entry.details}}
+ + + +
+
{{$entry.name}}{{if $entry.online}} {{/if}}
+ +
{{$entry.details}}
+{{if $entry.hometown}} +
{{$entry.hometown}}
+{{/if}} +{{if $entry.about}} +
{{$entry.about}}
+{{/if}} +{{if $entry.homepage}} +
{{$entry.homepage}}{{$entry.homepageurl}}
+{{/if}} +{{if $entry.kw}} +
{{$entry.kw}} {{$entry.keywords}}
+{{/if}} +
diff --git a/view/tpl/direntry_large.tpl b/view/tpl/direntry_large.tpl deleted file mode 100755 index da6ea1a44..000000000 --- a/view/tpl/direntry_large.tpl +++ /dev/null @@ -1,43 +0,0 @@ -
-
- -
-
- {{$alttext}} -
-
- QR -
-
- -
- - -
{{$name}}{{if $online}} {{/if}}
-{{if $connect}} - -{{/if}} - -
{{$address}}
- -
{{$details}}
-{{if $marital}} -
{{$marital}}
-{{/if}} -{{if $sexual}} -
{{$sexual}}
-{{/if}} -{{if $homepage}} -
{{$homepage}}
-{{/if}} -{{if $hometown}} -
{{$hometown}}
-{{/if}} -{{if $about}} -
{{$about}}
-{{/if}} -{{if $kw}} -
{{$kw}} {{$keywords}}
-{{/if}} -
-
From 24bdf58d2bd564c22c44a39f369a50df918c8c38 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Sun, 9 Nov 2014 09:37:06 +0100 Subject: [PATCH 062/176] Use consistent terminology for channel directory --- include/nav.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nav.php b/include/nav.php index f1f89db20..4c3da2195 100644 --- a/include/nav.php +++ b/include/nav.php @@ -173,7 +173,7 @@ EOT; $nav['search'] = array('search', t('Search'), "", t('Search site content')); - $nav['directory'] = array('directory', t('Directory'), "", t('Channel Locator')); + $nav['directory'] = array('directory', t('Directory'), "", t('Channel Directory')); /** From 50b9cc6f3938ffd7b64665f19449c606b6288c54 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 9 Nov 2014 16:11:03 -0800 Subject: [PATCH 063/176] directory listing shows phantom keywords --- mod/directory.php | 4 +++- version.inc | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/mod/directory.php b/mod/directory.php index 1571efcf5..88c240e58 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -170,12 +170,14 @@ function directory_content(&$a) { $keywords = ((x($profile,'keywords')) ? $profile['keywords'] : ''); + $out = ''; + logger('keywords: '.$keywords); if($keywords) { $keywords = str_replace(',',' ', $keywords); $keywords = str_replace(' ',' ', $keywords); $karr = explode(' ', $keywords); - $out = ''; +// $out = ''; if($karr) { if(local_user()) { $r = q("select keywords from profile where uid = %d and is_default = 1 limit 1", diff --git a/version.inc b/version.inc index efaa3c1ee..2859cdc11 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-08.853 +2014-11-09.854 From d5d1f655d97b389e6b2cae1c753e1377455b1721 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 9 Nov 2014 16:11:56 -0800 Subject: [PATCH 064/176] remove extraneous logging --- mod/directory.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mod/directory.php b/mod/directory.php index 88c240e58..09ff2ae09 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -172,12 +172,11 @@ function directory_content(&$a) { $out = ''; -logger('keywords: '.$keywords); if($keywords) { $keywords = str_replace(',',' ', $keywords); $keywords = str_replace(' ',' ', $keywords); $karr = explode(' ', $keywords); -// $out = ''; + if($karr) { if(local_user()) { $r = q("select keywords from profile where uid = %d and is_default = 1 limit 1", @@ -200,8 +199,6 @@ logger('keywords: '.$keywords); } } -logger('out: '.$out); - $entry = array( 'id' => ++$t, From 2e695d1da2383214995b850b7d539dfb08eb546e Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 9 Nov 2014 17:39:54 -0800 Subject: [PATCH 065/176] menu page cleanup --- mod/menu.php | 32 +++++++++++++++++--------------- view/css/mod_menu.css | 3 +++ view/tpl/menulist.tpl | 2 +- 3 files changed, 21 insertions(+), 16 deletions(-) create mode 100644 view/css/mod_menu.css diff --git a/mod/menu.php b/mod/menu.php index a2d0c2385..a43ebfee6 100644 --- a/mod/menu.php +++ b/mod/menu.php @@ -52,25 +52,27 @@ function menu_content(&$a) { if(argc() == 1) { // list menus $x = menu_list(local_user()); + if($x) { + for($y = 0; $y < count($x); $y ++) { + $x[$y]['bookmark'] = (($x[$y]['menu_flags'] & MENU_BOOKMARK) ? true : false); + } + } - $o = replace_macros(get_markup_template('menulist.tpl'),array( - '$title' => t('Manage Menus'), - '$menus' => $x, - '$edit' => t('Edit'), - '$drop' => t('Drop'), - '$new' => t('New'), - '$hintnew' => t('Create a new menu'), - '$hintdrop' => t('Delete this menu'), - '$hintcontent' => t('Edit menu contents'), - '$hintedit' => t('Edit this menu') - )); + $o = replace_macros(get_markup_template('menulist.tpl'),array( + '$title' => t('Manage Menus'), + '$menus' => $x, + '$edit' => t('Edit'), + '$drop' => t('Drop'), + '$new' => t('New'), + '$bmark' => t('Bookmarks allowed'), + '$hintnew' => t('Create a new menu'), + '$hintdrop' => t('Delete this menu'), + '$hintcontent' => t('Edit menu contents'), + '$hintedit' => t('Edit this menu') + )); return $o; - - - - } diff --git a/view/css/mod_menu.css b/view/css/mod_menu.css new file mode 100644 index 000000000..6123ea56b --- /dev/null +++ b/view/css/mod_menu.css @@ -0,0 +1,3 @@ +#menulist > li { + margin-top: 15px; +} \ No newline at end of file diff --git a/view/tpl/menulist.tpl b/view/tpl/menulist.tpl index 2feb75d90..bb862fef0 100644 --- a/view/tpl/menulist.tpl +++ b/view/tpl/menulist.tpl @@ -9,7 +9,7 @@ {{if $menus }} {{/if}} From 3b74e3c1e10ebe3cc8880b3b4ede57f919cb3d10 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 9 Nov 2014 19:24:14 -0800 Subject: [PATCH 066/176] add defaults to database tables --- install/database-w-defaults-v1131.diff | 1914 ++++++++++++++++++++++++ install/database.sql | 743 ++++++--- 2 files changed, 2467 insertions(+), 190 deletions(-) create mode 100644 install/database-w-defaults-v1131.diff diff --git a/install/database-w-defaults-v1131.diff b/install/database-w-defaults-v1131.diff new file mode 100644 index 000000000..c8870f9c4 --- /dev/null +++ b/install/database-w-defaults-v1131.diff @@ -0,0 +1,1914 @@ +*** database.sql Mon Sep 8 20:28:00 2014 +--- database-w-defaults.sql Sun Nov 9 19:20:32 2014 +*************** +*** 1,15 **** +! SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; +! +! /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +! /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +! /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +! /*!40101 SET NAMES utf8 */; + + + CREATE TABLE IF NOT EXISTS `abook` ( + `abook_id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `abook_account` int(10) unsigned NOT NULL, +! `abook_channel` int(10) unsigned NOT NULL, + `abook_xchan` char(255) NOT NULL DEFAULT '', + `abook_my_perms` int(11) NOT NULL DEFAULT '0', + `abook_their_perms` int(11) NOT NULL DEFAULT '0', +--- 1,13 ---- +! -- -------------------------------------------------------- + ++ -- ++ -- Table structure for table `abook` ++ -- + + CREATE TABLE IF NOT EXISTS `abook` ( + `abook_id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `abook_account` int(10) unsigned NOT NULL DEFAULT '0', +! `abook_channel` int(10) unsigned NOT NULL DEFAULT '0', + `abook_xchan` char(255) NOT NULL DEFAULT '', + `abook_my_perms` int(11) NOT NULL DEFAULT '0', + `abook_their_perms` int(11) NOT NULL DEFAULT '0', +*************** +*** 37,42 **** +--- 35,46 ---- + KEY `abook_rating` (`abook_rating`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `account` ++ -- ++ + CREATE TABLE IF NOT EXISTS `account` ( + `account_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `account_parent` int(10) unsigned NOT NULL DEFAULT '0', +*************** +*** 70,79 **** + KEY `account_password_changed` (`account_password_changed`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `addon` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `name` char(255) NOT NULL, +! `version` char(255) NOT NULL, + `installed` tinyint(1) NOT NULL DEFAULT '0', + `hidden` tinyint(1) NOT NULL DEFAULT '0', + `timestamp` bigint(20) NOT NULL DEFAULT '0', +--- 74,89 ---- + KEY `account_password_changed` (`account_password_changed`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `addon` ++ -- ++ + CREATE TABLE IF NOT EXISTS `addon` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `name` char(255) NOT NULL DEFAULT '', +! `version` char(255) NOT NULL DEFAULT '', + `installed` tinyint(1) NOT NULL DEFAULT '0', + `hidden` tinyint(1) NOT NULL DEFAULT '0', + `timestamp` bigint(20) NOT NULL DEFAULT '0', +*************** +*** 84,89 **** +--- 94,104 ---- + KEY `installed` (`installed`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `app` ++ -- + + CREATE TABLE IF NOT EXISTS `app` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +*************** +*** 108,115 **** + KEY `app_version` (`app_version`), + KEY `app_channel` (`app_channel`), + KEY `app_price` (`app_price`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + + CREATE TABLE IF NOT EXISTS `attach` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +--- 123,135 ---- + KEY `app_version` (`app_version`), + KEY `app_channel` (`app_channel`), + KEY `app_price` (`app_price`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +! +! -- -------------------------------------------------------- + ++ -- ++ -- Table structure for table `attach` ++ -- + + CREATE TABLE IF NOT EXISTS `attach` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +*************** +*** 145,166 **** + KEY `creator` (`creator`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `auth_codes` ( +! `id` varchar(40) NOT NULL, +! `client_id` varchar(20) NOT NULL, +! `redirect_uri` varchar(200) NOT NULL, +! `expires` int(11) NOT NULL, +! `scope` varchar(250) NOT NULL, + PRIMARY KEY (`id`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `cache` ( +! `k` char(255) NOT NULL, + `v` text NOT NULL, +! `updated` datetime NOT NULL, + PRIMARY KEY (`k`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `channel` ( + `channel_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `channel_account_id` int(10) unsigned NOT NULL DEFAULT '0', +--- 165,204 ---- + KEY `creator` (`creator`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `auth_codes` ++ -- ++ + CREATE TABLE IF NOT EXISTS `auth_codes` ( +! `id` varchar(40) NOT NULL DEFAULT '', +! `client_id` varchar(20) NOT NULL DEFAULT '', +! `redirect_uri` varchar(200) NOT NULL DEFAULT '', +! `expires` int(11) NOT NULL DEFAULT '0', +! `scope` varchar(250) NOT NULL DEFAULT '', + PRIMARY KEY (`id`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `cache` ++ -- ++ + CREATE TABLE IF NOT EXISTS `cache` ( +! `k` char(255) NOT NULL DEFAULT '', + `v` text NOT NULL, +! `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`k`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `channel` ++ -- ++ + CREATE TABLE IF NOT EXISTS `channel` ( + `channel_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `channel_account_id` int(10) unsigned NOT NULL DEFAULT '0', +*************** +*** 189,212 **** + `channel_allow_gid` mediumtext NOT NULL, + `channel_deny_cid` mediumtext NOT NULL, + `channel_deny_gid` mediumtext NOT NULL, +! `channel_r_stream` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_r_profile` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_r_photos` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_r_abook` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_w_stream` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_w_wall` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_w_tagwall` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_w_comment` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_w_mail` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_w_photos` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_w_chat` int(10) unsigned NOT NULL DEFAULT '128', + `channel_a_delegate` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_r_storage` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_w_storage` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_r_pages` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_w_pages` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_a_republish` int(10) unsigned NOT NULL DEFAULT '128', +! `channel_w_like` int(10) unsigned NOT NULL DEFAULT '128', + PRIMARY KEY (`channel_id`), + UNIQUE KEY `channel_address_unique` (`channel_address`), + KEY `channel_account_id` (`channel_account_id`), +--- 227,250 ---- + `channel_allow_gid` mediumtext NOT NULL, + `channel_deny_cid` mediumtext NOT NULL, + `channel_deny_gid` mediumtext NOT NULL, +! `channel_r_stream` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_r_profile` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_r_photos` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_r_abook` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_w_stream` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_w_wall` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_w_tagwall` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_w_comment` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_w_mail` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_w_photos` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_w_chat` int(10) unsigned NOT NULL DEFAULT '0', + `channel_a_delegate` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_r_storage` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_w_storage` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_r_pages` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_w_pages` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_a_republish` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_w_like` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`channel_id`), + UNIQUE KEY `channel_address_unique` (`channel_address`), + KEY `channel_account_id` (`channel_account_id`), +*************** +*** 241,250 **** + KEY `channel_w_pages` (`channel_w_pages`), + KEY `channel_deleted` (`channel_deleted`), + KEY `channel_a_republish` (`channel_a_republish`), +! KEY `channel_w_like` (`channel_w_like`), +! KEY `channel_dirdate` (`channel_dirdate`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `chat` ( + `chat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `chat_room` int(10) unsigned NOT NULL DEFAULT '0', +--- 279,294 ---- + KEY `channel_w_pages` (`channel_w_pages`), + KEY `channel_deleted` (`channel_deleted`), + KEY `channel_a_republish` (`channel_a_republish`), +! KEY `channel_dirdate` (`channel_dirdate`), +! KEY `channel_w_like` (`channel_w_like`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `chat` ++ -- ++ + CREATE TABLE IF NOT EXISTS `chat` ( + `chat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `chat_room` int(10) unsigned NOT NULL DEFAULT '0', +*************** +*** 255,275 **** + KEY `chat_room` (`chat_room`), + KEY `chat_xchan` (`chat_xchan`), + KEY `created` (`created`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `chatpresence` ( + `cp_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cp_room` int(10) unsigned NOT NULL DEFAULT '0', + `cp_xchan` char(255) NOT NULL DEFAULT '', + `cp_last` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `cp_status` char(255) NOT NULL, + `cp_client` char(128) NOT NULL DEFAULT '', + PRIMARY KEY (`cp_id`), + KEY `cp_room` (`cp_room`), + KEY `cp_xchan` (`cp_xchan`), + KEY `cp_last` (`cp_last`), + KEY `cp_status` (`cp_status`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `chatroom` ( + `cr_id` int(10) unsigned NOT NULL AUTO_INCREMENT, +--- 299,331 ---- + KEY `chat_room` (`chat_room`), + KEY `chat_xchan` (`chat_xchan`), + KEY `created` (`created`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +! +! -- -------------------------------------------------------- +! +! -- +! -- Table structure for table `chatpresence` +! -- + + CREATE TABLE IF NOT EXISTS `chatpresence` ( + `cp_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cp_room` int(10) unsigned NOT NULL DEFAULT '0', + `cp_xchan` char(255) NOT NULL DEFAULT '', + `cp_last` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `cp_status` char(255) NOT NULL DEFAULT '', + `cp_client` char(128) NOT NULL DEFAULT '', + PRIMARY KEY (`cp_id`), + KEY `cp_room` (`cp_room`), + KEY `cp_xchan` (`cp_xchan`), + KEY `cp_last` (`cp_last`), + KEY `cp_status` (`cp_status`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +! +! -- -------------------------------------------------------- +! +! -- +! -- Table structure for table `chatroom` +! -- + + CREATE TABLE IF NOT EXISTS `chatroom` ( + `cr_id` int(10) unsigned NOT NULL AUTO_INCREMENT, +*************** +*** 290,322 **** + KEY `cr_created` (`cr_created`), + KEY `cr_edited` (`cr_edited`), + KEY `cr_expire` (`cr_expire`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `clients` ( +! `client_id` varchar(20) NOT NULL, +! `pw` varchar(20) NOT NULL, +! `redirect_uri` varchar(200) NOT NULL, + `name` text, + `icon` text, + `uid` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`client_id`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `config` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `cat` char(255) CHARACTER SET ascii NOT NULL, +! `k` char(255) CHARACTER SET ascii NOT NULL, + `v` text NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `access` (`cat`,`k`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `conv` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `guid` char(255) NOT NULL, + `recips` mediumtext NOT NULL, +! `uid` int(11) NOT NULL, +! `creator` char(255) NOT NULL, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `subject` mediumtext NOT NULL, +--- 346,396 ---- + KEY `cr_created` (`cr_created`), + KEY `cr_edited` (`cr_edited`), + KEY `cr_expire` (`cr_expire`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +! +! -- -------------------------------------------------------- +! +! -- +! -- Table structure for table `clients` +! -- + + CREATE TABLE IF NOT EXISTS `clients` ( +! `client_id` varchar(20) NOT NULL DEFAULT '', +! `pw` varchar(20) NOT NULL DEFAULT '', +! `redirect_uri` varchar(200) NOT NULL DEFAULT '', + `name` text, + `icon` text, + `uid` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`client_id`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `config` ++ -- ++ + CREATE TABLE IF NOT EXISTS `config` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `cat` char(255) CHARACTER SET ascii NOT NULL DEFAULT '', +! `k` char(255) CHARACTER SET ascii NOT NULL DEFAULT '', + `v` text NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `access` (`cat`,`k`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `conv` ++ -- ++ + CREATE TABLE IF NOT EXISTS `conv` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `guid` char(255) NOT NULL DEFAULT '', + `recips` mediumtext NOT NULL, +! `uid` int(11) NOT NULL DEFAULT '0', +! `creator` char(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `subject` mediumtext NOT NULL, +*************** +*** 325,344 **** + KEY `updated` (`updated`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `event` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `aid` int(10) unsigned NOT NULL DEFAULT '0', +! `uid` int(11) NOT NULL, + `event_xchan` char(255) NOT NULL DEFAULT '', + `event_hash` char(255) NOT NULL DEFAULT '', +! `created` datetime NOT NULL, +! `edited` datetime NOT NULL, +! `start` datetime NOT NULL, +! `finish` datetime NOT NULL, + `summary` text NOT NULL, + `description` text NOT NULL, + `location` text NOT NULL, +! `type` char(255) NOT NULL, + `nofinish` tinyint(1) NOT NULL DEFAULT '0', + `adjust` tinyint(1) NOT NULL DEFAULT '1', + `ignore` tinyint(1) NOT NULL DEFAULT '0', +--- 399,424 ---- + KEY `updated` (`updated`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `event` ++ -- ++ + CREATE TABLE IF NOT EXISTS `event` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `aid` int(10) unsigned NOT NULL DEFAULT '0', +! `uid` int(11) NOT NULL DEFAULT '0', + `event_xchan` char(255) NOT NULL DEFAULT '', + `event_hash` char(255) NOT NULL DEFAULT '', +! `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `finish` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `summary` text NOT NULL, + `description` text NOT NULL, + `location` text NOT NULL, +! `type` char(255) NOT NULL DEFAULT '', + `nofinish` tinyint(1) NOT NULL DEFAULT '0', + `adjust` tinyint(1) NOT NULL DEFAULT '1', + `ignore` tinyint(1) NOT NULL DEFAULT '0', +*************** +*** 357,363 **** + KEY `aid` (`aid`), + KEY `event_hash` (`event_hash`), + KEY `event_xchan` (`event_xchan`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `fcontact` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +--- 437,449 ---- + KEY `aid` (`aid`), + KEY `event_hash` (`event_hash`), + KEY `event_xchan` (`event_xchan`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +! +! -- -------------------------------------------------------- +! +! -- +! -- Table structure for table `fcontact` +! -- + + CREATE TABLE IF NOT EXISTS `fcontact` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +*************** +*** 381,386 **** +--- 467,478 ---- + KEY `network` (`network`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `ffinder` ++ -- ++ + CREATE TABLE IF NOT EXISTS `ffinder` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(10) unsigned NOT NULL, +*************** +*** 392,427 **** + KEY `fid` (`fid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `fserver` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `server` char(255) NOT NULL, +! `posturl` char(255) NOT NULL, + `key` text NOT NULL, + PRIMARY KEY (`id`), + KEY `server` (`server`), + KEY `posturl` (`posturl`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `fsuggest` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `uid` int(11) NOT NULL, +! `cid` int(11) NOT NULL, +! `name` char(255) NOT NULL, +! `url` char(255) NOT NULL, +! `request` char(255) NOT NULL, +! `photo` char(255) NOT NULL, + `note` text NOT NULL, +! `created` datetime NOT NULL, + PRIMARY KEY (`id`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `groups` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `hash` char(255) NOT NULL DEFAULT '', +! `uid` int(10) unsigned NOT NULL, + `visible` tinyint(1) NOT NULL DEFAULT '0', + `deleted` tinyint(1) NOT NULL DEFAULT '0', +! `name` char(255) NOT NULL, + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `visible` (`visible`), +--- 484,537 ---- + KEY `fid` (`fid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `fserver` ++ -- ++ + CREATE TABLE IF NOT EXISTS `fserver` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `server` char(255) NOT NULL DEFAULT '', +! `posturl` char(255) NOT NULL DEFAULT '', + `key` text NOT NULL, + PRIMARY KEY (`id`), + KEY `server` (`server`), + KEY `posturl` (`posturl`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `fsuggest` ++ -- ++ + CREATE TABLE IF NOT EXISTS `fsuggest` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `uid` int(11) NOT NULL DEFAULT '0', +! `cid` int(11) NOT NULL DEFAULT '0', +! `name` char(255) NOT NULL DEFAULT '', +! `url` char(255) NOT NULL DEFAULT '', +! `request` char(255) NOT NULL DEFAULT '', +! `photo` char(255) NOT NULL DEFAULT '', + `note` text NOT NULL, +! `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `groups` ++ -- ++ + CREATE TABLE IF NOT EXISTS `groups` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `hash` char(255) NOT NULL DEFAULT '', +! `uid` int(10) unsigned NOT NULL DEFAULT '0', + `visible` tinyint(1) NOT NULL DEFAULT '0', + `deleted` tinyint(1) NOT NULL DEFAULT '0', +! `name` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `visible` (`visible`), +*************** +*** 429,438 **** + KEY `hash` (`hash`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `group_member` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `uid` int(10) unsigned NOT NULL, +! `gid` int(10) unsigned NOT NULL, + `xchan` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), +--- 539,554 ---- + KEY `hash` (`hash`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `group_member` ++ -- ++ + CREATE TABLE IF NOT EXISTS `group_member` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `uid` int(10) unsigned NOT NULL DEFAULT '0', +! `gid` int(10) unsigned NOT NULL DEFAULT '0', + `xchan` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), +*************** +*** 440,460 **** + KEY `xchan` (`xchan`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `hook` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `hook` char(255) NOT NULL, +! `file` char(255) NOT NULL, +! `function` char(255) NOT NULL, + `priority` int(11) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `hook` (`hook`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `hubloc` ( + `hubloc_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `hubloc_guid` char(255) NOT NULL DEFAULT '', + `hubloc_guid_sig` text NOT NULL, +! `hubloc_hash` char(255) NOT NULL, + `hubloc_addr` char(255) NOT NULL DEFAULT '', + `hubloc_network` char(32) NOT NULL DEFAULT '', + `hubloc_flags` int(10) unsigned NOT NULL DEFAULT '0', +--- 556,588 ---- + KEY `xchan` (`xchan`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `hook` ++ -- ++ + CREATE TABLE IF NOT EXISTS `hook` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `hook` char(255) NOT NULL DEFAULT '', +! `file` char(255) NOT NULL DEFAULT '', +! `function` char(255) NOT NULL DEFAULT '', + `priority` int(11) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `hook` (`hook`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `hubloc` ++ -- ++ + CREATE TABLE IF NOT EXISTS `hubloc` ( + `hubloc_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `hubloc_guid` char(255) NOT NULL DEFAULT '', + `hubloc_guid_sig` text NOT NULL, +! `hubloc_hash` char(255) NOT NULL DEFAULT '', + `hubloc_addr` char(255) NOT NULL DEFAULT '', + `hubloc_network` char(32) NOT NULL DEFAULT '', + `hubloc_flags` int(10) unsigned NOT NULL DEFAULT '0', +*************** +*** 474,493 **** + KEY `hubloc_connect` (`hubloc_connect`), + KEY `hubloc_host` (`hubloc_host`), + KEY `hubloc_addr` (`hubloc_addr`), +- KEY `hubloc_network` (`hubloc_network`), + KEY `hubloc_updated` (`hubloc_updated`), + KEY `hubloc_connected` (`hubloc_connected`), +! KEY `hubloc_status` (`hubloc_status`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `issue` ( + `issue_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `issue_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `issue_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `issue_assigned` char(255) NOT NULL, +! `issue_priority` int(11) NOT NULL, +! `issue_status` int(11) NOT NULL, +! `issue_component` char(255) NOT NULL, + PRIMARY KEY (`issue_id`), + KEY `issue_created` (`issue_created`), + KEY `issue_updated` (`issue_updated`), +--- 602,627 ---- + KEY `hubloc_connect` (`hubloc_connect`), + KEY `hubloc_host` (`hubloc_host`), + KEY `hubloc_addr` (`hubloc_addr`), + KEY `hubloc_updated` (`hubloc_updated`), + KEY `hubloc_connected` (`hubloc_connected`), +! KEY `hubloc_status` (`hubloc_status`), +! KEY `hubloc_network` (`hubloc_network`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `issue` ++ -- ++ + CREATE TABLE IF NOT EXISTS `issue` ( + `issue_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `issue_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `issue_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `issue_assigned` char(255) NOT NULL DEFAULT '', +! `issue_priority` int(11) NOT NULL DEFAULT '0', +! `issue_status` int(11) NOT NULL DEFAULT '0', +! `issue_component` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`issue_id`), + KEY `issue_created` (`issue_created`), + KEY `issue_updated` (`issue_updated`), +*************** +*** 497,502 **** +--- 631,642 ---- + KEY `issue_component` (`issue_component`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `item` ++ -- ++ + CREATE TABLE IF NOT EXISTS `item` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `mid` char(255) CHARACTER SET ascii NOT NULL DEFAULT '', +*************** +*** 516,549 **** + `author_xchan` char(255) NOT NULL DEFAULT '', + `source_xchan` char(255) NOT NULL DEFAULT '', + `mimetype` char(255) NOT NULL DEFAULT '', +! `title` text NOT NULL DEFAULT '', +! `body` mediumtext NOT NULL DEFAULT '', + `app` char(255) NOT NULL DEFAULT '', + `lang` char(64) NOT NULL DEFAULT '', + `revision` int(10) unsigned NOT NULL DEFAULT '0', + `verb` char(255) NOT NULL DEFAULT '', + `obj_type` char(255) NOT NULL DEFAULT '', +! `object` text NOT NULL DEFAULT '', + `tgt_type` char(255) NOT NULL DEFAULT '', +! `target` text NOT NULL DEFAULT '', + `layout_mid` char(255) NOT NULL DEFAULT '', +! `postopts` text NOT NULL DEFAULT '', +! `route` text NOT NULL DEFAULT '', + `llink` char(255) NOT NULL DEFAULT '', + `plink` char(255) NOT NULL DEFAULT '', + `resource_id` char(255) NOT NULL DEFAULT '', + `resource_type` char(16) NOT NULL DEFAULT '', +! `attach` mediumtext NOT NULL DEFAULT '', +! `sig` text NOT NULL DEFAULT '', +! `diaspora_meta` mediumtext NOT NULL DEFAULT '', + `location` char(255) NOT NULL DEFAULT '', + `coord` char(255) NOT NULL DEFAULT '', + `public_policy` char(255) NOT NULL DEFAULT '', + `comment_policy` char(255) NOT NULL DEFAULT '', +! `allow_cid` mediumtext NOT NULL DEFAULT '', +! `allow_gid` mediumtext NOT NULL DEFAULT '', +! `deny_cid` mediumtext NOT NULL DEFAULT '', +! `deny_gid` mediumtext NOT NULL DEFAULT '', + `item_restrict` int(11) NOT NULL DEFAULT '0', + `item_flags` int(11) NOT NULL DEFAULT '0', + `item_private` tinyint(4) NOT NULL DEFAULT '0', +--- 656,689 ---- + `author_xchan` char(255) NOT NULL DEFAULT '', + `source_xchan` char(255) NOT NULL DEFAULT '', + `mimetype` char(255) NOT NULL DEFAULT '', +! `title` text NOT NULL, +! `body` mediumtext NOT NULL, + `app` char(255) NOT NULL DEFAULT '', + `lang` char(64) NOT NULL DEFAULT '', + `revision` int(10) unsigned NOT NULL DEFAULT '0', + `verb` char(255) NOT NULL DEFAULT '', + `obj_type` char(255) NOT NULL DEFAULT '', +! `object` text NOT NULL, + `tgt_type` char(255) NOT NULL DEFAULT '', +! `target` text NOT NULL, + `layout_mid` char(255) NOT NULL DEFAULT '', +! `postopts` text NOT NULL, +! `route` text NOT NULL, + `llink` char(255) NOT NULL DEFAULT '', + `plink` char(255) NOT NULL DEFAULT '', + `resource_id` char(255) NOT NULL DEFAULT '', + `resource_type` char(16) NOT NULL DEFAULT '', +! `attach` mediumtext NOT NULL, +! `sig` text NOT NULL, +! `diaspora_meta` mediumtext NOT NULL, + `location` char(255) NOT NULL DEFAULT '', + `coord` char(255) NOT NULL DEFAULT '', + `public_policy` char(255) NOT NULL DEFAULT '', + `comment_policy` char(255) NOT NULL DEFAULT '', +! `allow_cid` mediumtext NOT NULL, +! `allow_gid` mediumtext NOT NULL, +! `deny_cid` mediumtext NOT NULL, +! `deny_gid` mediumtext NOT NULL, + `item_restrict` int(11) NOT NULL DEFAULT '0', + `item_flags` int(11) NOT NULL DEFAULT '0', + `item_private` tinyint(4) NOT NULL DEFAULT '0', +*************** +*** 555,562 **** + KEY `received` (`received`), + KEY `uid_commented` (`uid`,`commented`), + KEY `uid_created` (`uid`,`created`), +- KEY `changed` (`changed`), +- KEY `comments_closed` (`comments_closed`), + KEY `aid` (`aid`), + KEY `owner_xchan` (`owner_xchan`), + KEY `author_xchan` (`author_xchan`), +--- 695,700 ---- +*************** +*** 573,581 **** + KEY `mid` (`mid`), + KEY `parent_mid` (`parent_mid`), + KEY `uid_mid` (`mid`,`uid`), +- KEY `public_policy` (`public_policy`), + KEY `comment_policy` (`comment_policy`), + KEY `layout_mid` (`layout_mid`), + FULLTEXT KEY `title` (`title`), + FULLTEXT KEY `body` (`body`), + FULLTEXT KEY `allow_cid` (`allow_cid`), +--- 711,721 ---- + KEY `mid` (`mid`), + KEY `parent_mid` (`parent_mid`), + KEY `uid_mid` (`mid`,`uid`), + KEY `comment_policy` (`comment_policy`), + KEY `layout_mid` (`layout_mid`), ++ KEY `public_policy` (`public_policy`), ++ KEY `comments_closed` (`comments_closed`), ++ KEY `changed` (`changed`), + FULLTEXT KEY `title` (`title`), + FULLTEXT KEY `body` (`body`), + FULLTEXT KEY `allow_cid` (`allow_cid`), +*************** +*** 584,595 **** + FULLTEXT KEY `deny_gid` (`deny_gid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `item_id` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `iid` int(11) NOT NULL, +! `uid` int(11) NOT NULL, +! `sid` char(255) NOT NULL, +! `service` char(255) NOT NULL, + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `sid` (`sid`), +--- 724,741 ---- + FULLTEXT KEY `deny_gid` (`deny_gid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `item_id` ++ -- ++ + CREATE TABLE IF NOT EXISTS `item_id` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `iid` int(11) NOT NULL DEFAULT '0', +! `uid` int(11) NOT NULL DEFAULT '0', +! `sid` char(255) NOT NULL DEFAULT '', +! `service` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `sid` (`sid`), +*************** +*** 597,621 **** + KEY `iid` (`iid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `likes` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `channel_id` int(11) unsigned NOT NULL DEFAULT '0', + `liker` char(128) NOT NULL DEFAULT '', + `likee` char(128) NOT NULL DEFAULT '', +! `iid` int(10) unsigned NOT NULL DEFAULT '0', + `verb` char(255) NOT NULL DEFAULT '', + `target_type` char(255) NOT NULL DEFAULT '', + `target_id` char(128) NOT NULL DEFAULT '', + `target` mediumtext NOT NULL, + PRIMARY KEY (`id`), +- KEY `channel_id` (`channel_id`), + KEY `liker` (`liker`), + KEY `likee` (`likee`), + KEY `iid` (`iid`), + KEY `verb` (`verb`), + KEY `target_type` (`target_type`), + KEY `target_id` (`target_id`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `mail` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +--- 743,779 ---- + KEY `iid` (`iid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `likes` ++ -- ++ + CREATE TABLE IF NOT EXISTS `likes` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `channel_id` int(10) unsigned NOT NULL DEFAULT '0', + `liker` char(128) NOT NULL DEFAULT '', + `likee` char(128) NOT NULL DEFAULT '', +! `iid` int(11) unsigned NOT NULL DEFAULT '0', + `verb` char(255) NOT NULL DEFAULT '', + `target_type` char(255) NOT NULL DEFAULT '', + `target_id` char(128) NOT NULL DEFAULT '', + `target` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `liker` (`liker`), + KEY `likee` (`likee`), + KEY `iid` (`iid`), + KEY `verb` (`verb`), + KEY `target_type` (`target_type`), ++ KEY `channel_id` (`channel_id`), + KEY `target_id` (`target_id`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +! +! -- -------------------------------------------------------- +! +! -- +! -- Table structure for table `mail` +! -- + + CREATE TABLE IF NOT EXISTS `mail` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +*************** +*** 624,639 **** + `from_xchan` char(255) NOT NULL DEFAULT '', + `to_xchan` char(255) NOT NULL DEFAULT '', + `account_id` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_id` int(10) unsigned NOT NULL, + `title` text NOT NULL, + `body` mediumtext NOT NULL, + `attach` mediumtext NOT NULL, +! `mid` char(255) NOT NULL, +! `parent_mid` char(255) NOT NULL, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`), +- KEY `convid` (`convid`), + KEY `created` (`created`), + KEY `mail_flags` (`mail_flags`), + KEY `account_id` (`account_id`), +--- 782,796 ---- + `from_xchan` char(255) NOT NULL DEFAULT '', + `to_xchan` char(255) NOT NULL DEFAULT '', + `account_id` int(10) unsigned NOT NULL DEFAULT '0', +! `channel_id` int(10) unsigned NOT NULL DEFAULT '0', + `title` text NOT NULL, + `body` mediumtext NOT NULL, + `attach` mediumtext NOT NULL, +! `mid` char(255) NOT NULL DEFAULT '', +! `parent_mid` char(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`), + KEY `created` (`created`), + KEY `mail_flags` (`mail_flags`), + KEY `account_id` (`account_id`), +*************** +*** 642,659 **** + KEY `to_xchan` (`to_xchan`), + KEY `mid` (`mid`), + KEY `parent_mid` (`parent_mid`), +! KEY `expires` (`expires`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `manage` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `uid` int(11) NOT NULL, + `xchan` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `xchan` (`xchan`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `menu` ( + `menu_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `menu_channel_id` int(10) unsigned NOT NULL DEFAULT '0', +--- 799,829 ---- + KEY `to_xchan` (`to_xchan`), + KEY `mid` (`mid`), + KEY `parent_mid` (`parent_mid`), +! KEY `expires` (`expires`), +! KEY `convid` (`convid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `manage` ++ -- ++ + CREATE TABLE IF NOT EXISTS `manage` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `uid` int(11) NOT NULL DEFAULT '0', + `xchan` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `xchan` (`xchan`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `menu` ++ -- ++ + CREATE TABLE IF NOT EXISTS `menu` ( + `menu_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `menu_channel_id` int(10) unsigned NOT NULL DEFAULT '0', +*************** +*** 666,671 **** +--- 836,847 ---- + KEY `menu_flags` (`menu_flags`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `menu_item` ++ -- ++ + CREATE TABLE IF NOT EXISTS `menu_item` ( + `mitem_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `mitem_link` char(255) NOT NULL DEFAULT '', +*************** +*** 675,681 **** + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, +! `mitem_channel_id` int(10) unsigned NOT NULL, + `mitem_menu_id` int(10) unsigned NOT NULL DEFAULT '0', + `mitem_order` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`mitem_id`), +--- 851,857 ---- + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, +! `mitem_channel_id` int(10) unsigned NOT NULL DEFAULT '0', + `mitem_menu_id` int(10) unsigned NOT NULL DEFAULT '0', + `mitem_order` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`mitem_id`), +*************** +*** 684,705 **** + KEY `mitem_flags` (`mitem_flags`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `notify` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `hash` char(64) NOT NULL, +! `name` char(255) NOT NULL, +! `url` char(255) NOT NULL, +! `photo` char(255) NOT NULL, +! `date` datetime NOT NULL, + `msg` mediumtext NOT NULL, +! `aid` int(11) NOT NULL, +! `uid` int(11) NOT NULL, +! `link` char(255) NOT NULL, + `parent` char(255) NOT NULL DEFAULT '', + `seen` tinyint(1) NOT NULL DEFAULT '0', +! `type` int(11) NOT NULL, +! `verb` char(255) NOT NULL, +! `otype` char(16) NOT NULL, + PRIMARY KEY (`id`), + KEY `type` (`type`), + KEY `seen` (`seen`), +--- 860,887 ---- + KEY `mitem_flags` (`mitem_flags`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `notify` ++ -- ++ + CREATE TABLE IF NOT EXISTS `notify` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `hash` char(64) NOT NULL DEFAULT '', +! `name` char(255) NOT NULL DEFAULT '', +! `url` char(255) NOT NULL DEFAULT '', +! `photo` char(255) NOT NULL DEFAULT '', +! `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `msg` mediumtext NOT NULL, +! `aid` int(11) NOT NULL DEFAULT '0', +! `uid` int(11) NOT NULL DEFAULT '0', +! `link` char(255) NOT NULL DEFAULT '', + `parent` char(255) NOT NULL DEFAULT '', + `seen` tinyint(1) NOT NULL DEFAULT '0', +! `type` int(11) NOT NULL DEFAULT '0', +! `verb` char(255) NOT NULL DEFAULT '', +! `otype` char(16) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `type` (`type`), + KEY `seen` (`seen`), +*************** +*** 712,717 **** +--- 894,905 ---- + KEY `aid` (`aid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `obj` ++ -- ++ + CREATE TABLE IF NOT EXISTS `obj` ( + `obj_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `obj_page` char(64) NOT NULL DEFAULT '', +*************** +*** 731,736 **** +--- 919,930 ---- + KEY `obj_obj` (`obj_obj`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `outq` ++ -- ++ + CREATE TABLE IF NOT EXISTS `outq` ( + `outq_hash` char(255) NOT NULL, + `outq_account` int(10) unsigned NOT NULL DEFAULT '0', +*************** +*** 753,786 **** + KEY `outq_delivered` (`outq_delivered`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `pconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', +! `cat` char(255) CHARACTER SET ascii NOT NULL, +! `k` char(255) CHARACTER SET ascii NOT NULL, + `v` mediumtext NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `access` (`uid`,`cat`,`k`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `photo` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `aid` int(10) unsigned NOT NULL DEFAULT '0', +! `uid` int(10) unsigned NOT NULL, + `xchan` char(255) NOT NULL DEFAULT '', +! `resource_id` char(255) NOT NULL, +! `created` datetime NOT NULL, +! `edited` datetime NOT NULL, +! `title` char(255) NOT NULL, + `description` text NOT NULL, +! `album` char(255) NOT NULL, +! `filename` char(255) NOT NULL, + `type` char(128) NOT NULL DEFAULT 'image/jpeg', +! `height` smallint(6) NOT NULL, +! `width` smallint(6) NOT NULL, + `size` int(10) unsigned NOT NULL DEFAULT '0', + `data` mediumblob NOT NULL, +! `scale` tinyint(3) NOT NULL, + `profile` tinyint(1) NOT NULL DEFAULT '0', + `photo_flags` int(10) unsigned NOT NULL DEFAULT '0', + `allow_cid` mediumtext NOT NULL, +--- 947,992 ---- + KEY `outq_delivered` (`outq_delivered`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `pconfig` ++ -- ++ + CREATE TABLE IF NOT EXISTS `pconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', +! `cat` char(255) CHARACTER SET ascii NOT NULL DEFAULT '', +! `k` char(255) CHARACTER SET ascii NOT NULL DEFAULT '', + `v` mediumtext NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `access` (`uid`,`cat`,`k`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `photo` ++ -- ++ + CREATE TABLE IF NOT EXISTS `photo` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `aid` int(10) unsigned NOT NULL DEFAULT '0', +! `uid` int(10) unsigned NOT NULL DEFAULT '0', + `xchan` char(255) NOT NULL DEFAULT '', +! `resource_id` char(255) NOT NULL DEFAULT '', +! `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `title` char(255) NOT NULL DEFAULT '', + `description` text NOT NULL, +! `album` char(255) NOT NULL DEFAULT '', +! `filename` char(255) NOT NULL DEFAULT '', + `type` char(128) NOT NULL DEFAULT 'image/jpeg', +! `height` smallint(6) NOT NULL DEFAULT '0', +! `width` smallint(6) NOT NULL DEFAULT '0', + `size` int(10) unsigned NOT NULL DEFAULT '0', + `data` mediumblob NOT NULL, +! `scale` tinyint(3) NOT NULL DEFAULT '0', + `profile` tinyint(1) NOT NULL DEFAULT '0', + `photo_flags` int(10) unsigned NOT NULL DEFAULT '0', + `allow_cid` mediumtext NOT NULL, +*************** +*** 800,805 **** +--- 1006,1017 ---- + KEY `resource_id` (`resource_id`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `poll` ++ -- ++ + CREATE TABLE IF NOT EXISTS `poll` ( + `poll_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `poll_channel` int(10) unsigned NOT NULL DEFAULT '0', +*************** +*** 812,817 **** +--- 1024,1035 ---- + KEY `poll_votes` (`poll_votes`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `poll_elm` ++ -- ++ + CREATE TABLE IF NOT EXISTS `poll_elm` ( + `pelm_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pelm_poll` int(10) unsigned NOT NULL DEFAULT '0', +*************** +*** 823,838 **** + KEY `pelm_result` (`pelm_result`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `profdef` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `field_name` char(255) NOT NULL DEFAULT '', + `field_type` char(16) NOT NULL DEFAULT '', + `field_desc` char(255) NOT NULL DEFAULT '', + `field_help` char(255) NOT NULL DEFAULT '', +! `field_inputs` mediumtext NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `field_name` (`field_name`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `profext` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +--- 1041,1068 ---- + KEY `pelm_result` (`pelm_result`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `profdef` ++ -- ++ + CREATE TABLE IF NOT EXISTS `profdef` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `field_name` char(255) NOT NULL DEFAULT '', + `field_type` char(16) NOT NULL DEFAULT '', + `field_desc` char(255) NOT NULL DEFAULT '', + `field_help` char(255) NOT NULL DEFAULT '', +! `field_inputs` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `field_name` (`field_name`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +! +! -- -------------------------------------------------------- +! +! -- +! -- Table structure for table `profext` +! -- + + CREATE TABLE IF NOT EXISTS `profext` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +*************** +*** 844,882 **** + KEY `channel_id` (`channel_id`), + KEY `hash` (`hash`), + KEY `k` (`k`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `profile` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `profile_guid` char(64) NOT NULL DEFAULT '', + `aid` int(10) unsigned NOT NULL DEFAULT '0', +! `uid` int(11) NOT NULL, +! `profile_name` char(255) NOT NULL, + `is_default` tinyint(1) NOT NULL DEFAULT '0', + `hide_friends` tinyint(1) NOT NULL DEFAULT '0', +! `name` char(255) NOT NULL, +! `pdesc` char(255) NOT NULL, + `chandesc` text NOT NULL, + `dob` char(32) NOT NULL DEFAULT '0000-00-00', + `dob_tz` char(255) NOT NULL DEFAULT 'UTC', +! `address` char(255) NOT NULL, +! `locality` char(255) NOT NULL, +! `region` char(255) NOT NULL, +! `postal_code` char(32) NOT NULL, +! `country_name` char(255) NOT NULL, +! `hometown` char(255) NOT NULL, +! `gender` char(32) NOT NULL, +! `marital` char(255) NOT NULL, + `with` text NOT NULL, + `howlong` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `sexual` char(255) NOT NULL, +! `politic` char(255) NOT NULL, +! `religion` char(255) NOT NULL, + `keywords` text NOT NULL, + `likes` text NOT NULL, + `dislikes` text NOT NULL, + `about` text NOT NULL, +! `summary` char(255) NOT NULL, + `music` text NOT NULL, + `book` text NOT NULL, + `tv` text NOT NULL, +--- 1074,1118 ---- + KEY `channel_id` (`channel_id`), + KEY `hash` (`hash`), + KEY `k` (`k`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +! +! -- -------------------------------------------------------- +! +! -- +! -- Table structure for table `profile` +! -- + + CREATE TABLE IF NOT EXISTS `profile` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `profile_guid` char(64) NOT NULL DEFAULT '', + `aid` int(10) unsigned NOT NULL DEFAULT '0', +! `uid` int(11) NOT NULL DEFAULT '0', +! `profile_name` char(255) NOT NULL DEFAULT '', + `is_default` tinyint(1) NOT NULL DEFAULT '0', + `hide_friends` tinyint(1) NOT NULL DEFAULT '0', +! `name` char(255) NOT NULL DEFAULT '', +! `pdesc` char(255) NOT NULL DEFAULT '', + `chandesc` text NOT NULL, + `dob` char(32) NOT NULL DEFAULT '0000-00-00', + `dob_tz` char(255) NOT NULL DEFAULT 'UTC', +! `address` char(255) NOT NULL DEFAULT '', +! `locality` char(255) NOT NULL DEFAULT '', +! `region` char(255) NOT NULL DEFAULT '', +! `postal_code` char(32) NOT NULL DEFAULT '', +! `country_name` char(255) NOT NULL DEFAULT '', +! `hometown` char(255) NOT NULL DEFAULT '', +! `gender` char(32) NOT NULL DEFAULT '', +! `marital` char(255) NOT NULL DEFAULT '', + `with` text NOT NULL, + `howlong` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `sexual` char(255) NOT NULL DEFAULT '', +! `politic` char(255) NOT NULL DEFAULT '', +! `religion` char(255) NOT NULL DEFAULT '', + `keywords` text NOT NULL, + `likes` text NOT NULL, + `dislikes` text NOT NULL, + `about` text NOT NULL, +! `summary` char(255) NOT NULL DEFAULT '', + `music` text NOT NULL, + `book` text NOT NULL, + `tv` text NOT NULL, +*************** +*** 887,895 **** + `education` text NOT NULL, + `contact` text NOT NULL, + `channels` text NOT NULL, +! `homepage` char(255) NOT NULL, +! `photo` char(255) NOT NULL, +! `thumb` char(255) NOT NULL, + `publish` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `guid` (`profile_guid`,`uid`), +--- 1123,1131 ---- + `education` text NOT NULL, + `contact` text NOT NULL, + `channels` text NOT NULL, +! `homepage` char(255) NOT NULL DEFAULT '', +! `photo` char(255) NOT NULL DEFAULT '', +! `thumb` char(255) NOT NULL DEFAULT '', + `publish` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `guid` (`profile_guid`,`uid`), +*************** +*** 908,920 **** + KEY `profile_guid` (`profile_guid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `profile_check` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `uid` int(10) unsigned NOT NULL, + `cid` int(10) unsigned NOT NULL DEFAULT '0', +! `dfrn_id` char(255) NOT NULL, +! `sec` char(255) NOT NULL, +! `expire` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `cid` (`cid`), +--- 1144,1162 ---- + KEY `profile_guid` (`profile_guid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `profile_check` ++ -- ++ + CREATE TABLE IF NOT EXISTS `profile_check` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `uid` int(10) unsigned NOT NULL DEFAULT '0', + `cid` int(10) unsigned NOT NULL DEFAULT '0', +! `dfrn_id` char(255) NOT NULL DEFAULT '', +! `sec` char(255) NOT NULL DEFAULT '', +! `expire` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `cid` (`cid`), +*************** +*** 923,951 **** + KEY `expire` (`expire`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `register` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `hash` char(255) NOT NULL, +! `created` datetime NOT NULL, +! `uid` int(10) unsigned NOT NULL, +! `password` char(255) NOT NULL, +! `language` char(16) NOT NULL, + PRIMARY KEY (`id`), + KEY `hash` (`hash`), + KEY `created` (`created`), + KEY `uid` (`uid`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `session` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, +! `sid` char(255) NOT NULL, + `data` text NOT NULL, +! `expire` bigint(20) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `sid` (`sid`), + KEY `expire` (`expire`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `shares` ( + `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `share_type` int(11) NOT NULL DEFAULT '0', +--- 1165,1211 ---- + KEY `expire` (`expire`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `register` ++ -- ++ + CREATE TABLE IF NOT EXISTS `register` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `hash` char(255) NOT NULL DEFAULT '', +! `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +! `uid` int(10) unsigned NOT NULL DEFAULT '0', +! `password` char(255) NOT NULL DEFAULT '', +! `language` char(16) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `hash` (`hash`), + KEY `created` (`created`), + KEY `uid` (`uid`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +! +! -- -------------------------------------------------------- +! +! -- +! -- Table structure for table `session` +! -- + + CREATE TABLE IF NOT EXISTS `session` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, +! `sid` char(255) NOT NULL DEFAULT '', + `data` text NOT NULL, +! `expire` bigint(20) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `sid` (`sid`), + KEY `expire` (`expire`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `shares` ++ -- ++ + CREATE TABLE IF NOT EXISTS `shares` ( + `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `share_type` int(11) NOT NULL DEFAULT '0', +*************** +*** 957,974 **** + KEY `share_xchan` (`share_xchan`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `sign` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `iid` int(10) unsigned NOT NULL DEFAULT '0', + `retract_iid` int(10) unsigned NOT NULL DEFAULT '0', + `signed_text` mediumtext NOT NULL, + `signature` text NOT NULL, +! `signer` char(255) NOT NULL, + PRIMARY KEY (`id`), + KEY `iid` (`iid`), + KEY `retract_iid` (`retract_iid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `site` ( + `site_url` char(255) NOT NULL, + `site_access` int(11) NOT NULL DEFAULT '0', +--- 1217,1246 ---- + KEY `share_xchan` (`share_xchan`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `sign` ++ -- ++ + CREATE TABLE IF NOT EXISTS `sign` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `iid` int(10) unsigned NOT NULL DEFAULT '0', + `retract_iid` int(10) unsigned NOT NULL DEFAULT '0', + `signed_text` mediumtext NOT NULL, + `signature` text NOT NULL, +! `signer` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `iid` (`iid`), + KEY `retract_iid` (`retract_iid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `site` ++ -- ++ + CREATE TABLE IF NOT EXISTS `site` ( + `site_url` char(255) NOT NULL, + `site_access` int(11) NOT NULL DEFAULT '0', +*************** +*** 988,996 **** +--- 1260,1275 ---- + KEY `site_register` (`site_register`), + KEY `site_access` (`site_access`), + KEY `site_sellpage` (`site_sellpage`), ++ KEY `site_pull` (`site_pull`), + KEY `site_realm` (`site_realm`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `source` ++ -- ++ + CREATE TABLE IF NOT EXISTS `source` ( + `src_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `src_channel_id` int(10) unsigned NOT NULL DEFAULT '0', +*************** +*** 1003,1014 **** + KEY `src_xchan` (`src_xchan`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `spam` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `uid` int(11) NOT NULL, + `spam` int(11) NOT NULL DEFAULT '0', + `ham` int(11) NOT NULL DEFAULT '0', +! `term` char(255) NOT NULL, + `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), +--- 1282,1299 ---- + KEY `src_xchan` (`src_xchan`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `spam` ++ -- ++ + CREATE TABLE IF NOT EXISTS `spam` ( + `id` int(11) NOT NULL AUTO_INCREMENT, +! `uid` int(11) NOT NULL DEFAULT '0', + `spam` int(11) NOT NULL DEFAULT '0', + `ham` int(11) NOT NULL DEFAULT '0', +! `term` char(255) NOT NULL DEFAULT '', + `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), +*************** +*** 1017,1041 **** + KEY `term` (`term`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `sys_perms` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `cat` char(255) NOT NULL, +! `k` char(255) NOT NULL, + `v` mediumtext NOT NULL, +! `public_perm` tinyint(1) unsigned NOT NULL, + PRIMARY KEY (`id`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `term` ( + `tid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `aid` int(10) unsigned NOT NULL DEFAULT '0', + `uid` int(10) unsigned NOT NULL DEFAULT '0', +! `oid` int(10) unsigned NOT NULL, +! `otype` tinyint(3) unsigned NOT NULL, +! `type` tinyint(3) unsigned NOT NULL, +! `term` char(255) NOT NULL, +! `url` char(255) NOT NULL, +! `imgurl` char(255) NOT NULL, + `term_hash` char(255) NOT NULL DEFAULT '', + `parent_hash` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`tid`), +--- 1302,1338 ---- + KEY `term` (`term`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `sys_perms` ++ -- ++ + CREATE TABLE IF NOT EXISTS `sys_perms` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `cat` char(255) NOT NULL DEFAULT '', +! `k` char(255) NOT NULL DEFAULT '', + `v` mediumtext NOT NULL, +! `public_perm` tinyint(1) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `term` ++ -- ++ + CREATE TABLE IF NOT EXISTS `term` ( + `tid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `aid` int(10) unsigned NOT NULL DEFAULT '0', + `uid` int(10) unsigned NOT NULL DEFAULT '0', +! `oid` int(10) unsigned NOT NULL DEFAULT '0', +! `otype` tinyint(3) unsigned NOT NULL DEFAULT '0', +! `type` tinyint(3) unsigned NOT NULL DEFAULT '0', +! `term` char(255) NOT NULL DEFAULT '', +! `url` char(255) NOT NULL DEFAULT '', +! `imgurl` char(255) NOT NULL DEFAULT '', + `term_hash` char(255) NOT NULL DEFAULT '', + `parent_hash` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`tid`), +*************** +*** 1050,1071 **** + KEY `parent_hash` (`parent_hash`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `tokens` ( +! `id` varchar(40) NOT NULL, + `secret` text NOT NULL, +! `client_id` varchar(20) NOT NULL, +! `expires` bigint(20) unsigned NOT NULL, +! `scope` varchar(200) NOT NULL, +! `uid` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `client_id` (`client_id`), + KEY `expires` (`expires`), + KEY `uid` (`uid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `updates` ( + `ud_id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `ud_hash` char(128) NOT NULL, + `ud_guid` char(255) NOT NULL DEFAULT '', + `ud_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `ud_last` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +--- 1347,1380 ---- + KEY `parent_hash` (`parent_hash`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `tokens` ++ -- ++ + CREATE TABLE IF NOT EXISTS `tokens` ( +! `id` varchar(40) NOT NULL DEFAULT '', + `secret` text NOT NULL, +! `client_id` varchar(20) NOT NULL DEFAULT '', +! `expires` bigint(20) unsigned NOT NULL DEFAULT '0', +! `scope` varchar(200) NOT NULL DEFAULT '', +! `uid` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `client_id` (`client_id`), + KEY `expires` (`expires`), + KEY `uid` (`uid`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `updates` ++ -- ++ + CREATE TABLE IF NOT EXISTS `updates` ( + `ud_id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `ud_hash` char(128) NOT NULL DEFAULT '', + `ud_guid` char(255) NOT NULL DEFAULT '', + `ud_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `ud_last` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', +*************** +*** 1080,1085 **** +--- 1389,1400 ---- + KEY `ud_last` (`ud_last`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `verify` ++ -- ++ + CREATE TABLE IF NOT EXISTS `verify` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `channel` int(10) unsigned NOT NULL DEFAULT '0', +*************** +*** 1095,1100 **** +--- 1410,1421 ---- + KEY `created` (`created`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `vote` ++ -- ++ + CREATE TABLE IF NOT EXISTS `vote` ( + `vote_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `vote_poll` int(11) NOT NULL DEFAULT '0', +*************** +*** 1107,1112 **** +--- 1428,1439 ---- + KEY `vote_element` (`vote_element`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `xchan` ++ -- ++ + CREATE TABLE IF NOT EXISTS `xchan` ( + `xchan_hash` char(255) NOT NULL, + `xchan_guid` char(255) NOT NULL DEFAULT '', +*************** +*** 1139,1144 **** +--- 1466,1477 ---- + KEY `xchan_follow` (`xchan_follow`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `xchat` ++ -- ++ + CREATE TABLE IF NOT EXISTS `xchat` ( + `xchat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `xchat_url` char(255) NOT NULL DEFAULT '', +*************** +*** 1150,1162 **** + KEY `xchat_desc` (`xchat_desc`), + KEY `xchat_xchan` (`xchat_xchan`), + KEY `xchat_edited` (`xchat_edited`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `xconfig` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `xchan` char(255) NOT NULL, +! `cat` char(255) NOT NULL, +! `k` char(255) NOT NULL, + `v` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `xchan` (`xchan`), +--- 1483,1501 ---- + KEY `xchat_desc` (`xchat_desc`), + KEY `xchat_xchan` (`xchat_xchan`), + KEY `xchat_edited` (`xchat_edited`) +! ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +! +! -- -------------------------------------------------------- +! +! -- +! -- Table structure for table `xconfig` +! -- + + CREATE TABLE IF NOT EXISTS `xconfig` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `xchan` char(255) NOT NULL DEFAULT '', +! `cat` char(255) NOT NULL DEFAULT '', +! `k` char(255) NOT NULL DEFAULT '', + `v` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `xchan` (`xchan`), +*************** +*** 1164,1169 **** +--- 1503,1514 ---- + KEY `k` (`k`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `xign` ++ -- ++ + CREATE TABLE IF NOT EXISTS `xign` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL DEFAULT '0', +*************** +*** 1173,1178 **** +--- 1518,1529 ---- + KEY `xchan` (`xchan`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `xlink` ++ -- ++ + CREATE TABLE IF NOT EXISTS `xlink` ( + `xlink_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `xlink_xchan` char(255) NOT NULL DEFAULT '', +*************** +*** 1186,1191 **** +--- 1537,1548 ---- + KEY `xlink_rating` (`xlink_rating`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `xprof` ++ -- ++ + CREATE TABLE IF NOT EXISTS `xprof` ( + `xprof_hash` char(255) NOT NULL, + `xprof_age` tinyint(3) unsigned NOT NULL DEFAULT '0', +*************** +*** 1216,1224 **** + KEY `xprof_hometown` (`xprof_hometown`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `xtag` ( + `xtag_id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `xtag_hash` char(255) NOT NULL, + `xtag_term` char(255) NOT NULL DEFAULT '', + `xtag_flags` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`xtag_id`), +--- 1573,1587 ---- + KEY `xprof_hometown` (`xprof_hometown`) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + ++ -- -------------------------------------------------------- ++ ++ -- ++ -- Table structure for table `xtag` ++ -- ++ + CREATE TABLE IF NOT EXISTS `xtag` ( + `xtag_id` int(10) unsigned NOT NULL AUTO_INCREMENT, +! `xtag_hash` char(255) NOT NULL DEFAULT '', + `xtag_term` char(255) NOT NULL DEFAULT '', + `xtag_flags` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`xtag_id`), diff --git a/install/database.sql b/install/database.sql index a49bd377c..ce3f07a89 100644 --- a/install/database.sql +++ b/install/database.sql @@ -1,15 +1,13 @@ -SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8 */; +-- -------------------------------------------------------- +-- +-- Table structure for table `abook` +-- CREATE TABLE IF NOT EXISTS `abook` ( `abook_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `abook_account` int(10) unsigned NOT NULL, - `abook_channel` int(10) unsigned NOT NULL, + `abook_account` int(10) unsigned NOT NULL DEFAULT '0', + `abook_channel` int(10) unsigned NOT NULL DEFAULT '0', `abook_xchan` char(255) NOT NULL DEFAULT '', `abook_my_perms` int(11) NOT NULL DEFAULT '0', `abook_their_perms` int(11) NOT NULL DEFAULT '0', @@ -37,6 +35,12 @@ CREATE TABLE IF NOT EXISTS `abook` ( KEY `abook_rating` (`abook_rating`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `account` +-- + CREATE TABLE IF NOT EXISTS `account` ( `account_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `account_parent` int(10) unsigned NOT NULL DEFAULT '0', @@ -70,10 +74,16 @@ CREATE TABLE IF NOT EXISTS `account` ( KEY `account_password_changed` (`account_password_changed`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `addon` +-- + CREATE TABLE IF NOT EXISTS `addon` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `name` char(255) NOT NULL, - `version` char(255) NOT NULL, + `name` char(255) NOT NULL DEFAULT '', + `version` char(255) NOT NULL DEFAULT '', `installed` tinyint(1) NOT NULL DEFAULT '0', `hidden` tinyint(1) NOT NULL DEFAULT '0', `timestamp` bigint(20) NOT NULL DEFAULT '0', @@ -84,6 +94,11 @@ CREATE TABLE IF NOT EXISTS `addon` ( KEY `installed` (`installed`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `app` +-- CREATE TABLE IF NOT EXISTS `app` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -108,8 +123,13 @@ CREATE TABLE IF NOT EXISTS `app` ( KEY `app_version` (`app_version`), KEY `app_channel` (`app_channel`), KEY `app_price` (`app_price`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `attach` +-- CREATE TABLE IF NOT EXISTS `attach` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, @@ -145,22 +165,40 @@ CREATE TABLE IF NOT EXISTS `attach` ( KEY `creator` (`creator`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `auth_codes` +-- + CREATE TABLE IF NOT EXISTS `auth_codes` ( - `id` varchar(40) NOT NULL, - `client_id` varchar(20) NOT NULL, - `redirect_uri` varchar(200) NOT NULL, - `expires` int(11) NOT NULL, - `scope` varchar(250) NOT NULL, + `id` varchar(40) NOT NULL DEFAULT '', + `client_id` varchar(20) NOT NULL DEFAULT '', + `redirect_uri` varchar(200) NOT NULL DEFAULT '', + `expires` int(11) NOT NULL DEFAULT '0', + `scope` varchar(250) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `cache` +-- + CREATE TABLE IF NOT EXISTS `cache` ( - `k` char(255) NOT NULL, + `k` char(255) NOT NULL DEFAULT '', `v` text NOT NULL, - `updated` datetime NOT NULL, + `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`k`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `channel` +-- + CREATE TABLE IF NOT EXISTS `channel` ( `channel_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel_account_id` int(10) unsigned NOT NULL DEFAULT '0', @@ -189,24 +227,24 @@ CREATE TABLE IF NOT EXISTS `channel` ( `channel_allow_gid` mediumtext NOT NULL, `channel_deny_cid` mediumtext NOT NULL, `channel_deny_gid` mediumtext NOT NULL, - `channel_r_stream` int(10) unsigned NOT NULL DEFAULT '128', - `channel_r_profile` int(10) unsigned NOT NULL DEFAULT '128', - `channel_r_photos` int(10) unsigned NOT NULL DEFAULT '128', - `channel_r_abook` int(10) unsigned NOT NULL DEFAULT '128', - `channel_w_stream` int(10) unsigned NOT NULL DEFAULT '128', - `channel_w_wall` int(10) unsigned NOT NULL DEFAULT '128', - `channel_w_tagwall` int(10) unsigned NOT NULL DEFAULT '128', - `channel_w_comment` int(10) unsigned NOT NULL DEFAULT '128', - `channel_w_mail` int(10) unsigned NOT NULL DEFAULT '128', - `channel_w_photos` int(10) unsigned NOT NULL DEFAULT '128', - `channel_w_chat` int(10) unsigned NOT NULL DEFAULT '128', + `channel_r_stream` int(10) unsigned NOT NULL DEFAULT '0', + `channel_r_profile` int(10) unsigned NOT NULL DEFAULT '0', + `channel_r_photos` int(10) unsigned NOT NULL DEFAULT '0', + `channel_r_abook` int(10) unsigned NOT NULL DEFAULT '0', + `channel_w_stream` int(10) unsigned NOT NULL DEFAULT '0', + `channel_w_wall` int(10) unsigned NOT NULL DEFAULT '0', + `channel_w_tagwall` int(10) unsigned NOT NULL DEFAULT '0', + `channel_w_comment` int(10) unsigned NOT NULL DEFAULT '0', + `channel_w_mail` int(10) unsigned NOT NULL DEFAULT '0', + `channel_w_photos` int(10) unsigned NOT NULL DEFAULT '0', + `channel_w_chat` int(10) unsigned NOT NULL DEFAULT '0', `channel_a_delegate` int(10) unsigned NOT NULL DEFAULT '0', - `channel_r_storage` int(10) unsigned NOT NULL DEFAULT '128', - `channel_w_storage` int(10) unsigned NOT NULL DEFAULT '128', - `channel_r_pages` int(10) unsigned NOT NULL DEFAULT '128', - `channel_w_pages` int(10) unsigned NOT NULL DEFAULT '128', - `channel_a_republish` int(10) unsigned NOT NULL DEFAULT '128', - `channel_w_like` int(10) unsigned NOT NULL DEFAULT '128', + `channel_r_storage` int(10) unsigned NOT NULL DEFAULT '0', + `channel_w_storage` int(10) unsigned NOT NULL DEFAULT '0', + `channel_r_pages` int(10) unsigned NOT NULL DEFAULT '0', + `channel_w_pages` int(10) unsigned NOT NULL DEFAULT '0', + `channel_a_republish` int(10) unsigned NOT NULL DEFAULT '0', + `channel_w_like` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`channel_id`), UNIQUE KEY `channel_address_unique` (`channel_address`), KEY `channel_account_id` (`channel_account_id`), @@ -241,10 +279,16 @@ CREATE TABLE IF NOT EXISTS `channel` ( KEY `channel_w_pages` (`channel_w_pages`), KEY `channel_deleted` (`channel_deleted`), KEY `channel_a_republish` (`channel_a_republish`), - KEY `channel_w_like` (`channel_w_like`), - KEY `channel_dirdate` (`channel_dirdate`) + KEY `channel_dirdate` (`channel_dirdate`), + KEY `channel_w_like` (`channel_w_like`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `chat` +-- + CREATE TABLE IF NOT EXISTS `chat` ( `chat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `chat_room` int(10) unsigned NOT NULL DEFAULT '0', @@ -255,21 +299,33 @@ CREATE TABLE IF NOT EXISTS `chat` ( KEY `chat_room` (`chat_room`), KEY `chat_xchan` (`chat_xchan`), KEY `created` (`created`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `chatpresence` +-- CREATE TABLE IF NOT EXISTS `chatpresence` ( `cp_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cp_room` int(10) unsigned NOT NULL DEFAULT '0', `cp_xchan` char(255) NOT NULL DEFAULT '', `cp_last` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `cp_status` char(255) NOT NULL, + `cp_status` char(255) NOT NULL DEFAULT '', `cp_client` char(128) NOT NULL DEFAULT '', PRIMARY KEY (`cp_id`), KEY `cp_room` (`cp_room`), KEY `cp_xchan` (`cp_xchan`), KEY `cp_last` (`cp_last`), KEY `cp_status` (`cp_status`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `chatroom` +-- CREATE TABLE IF NOT EXISTS `chatroom` ( `cr_id` int(10) unsigned NOT NULL AUTO_INCREMENT, @@ -290,33 +346,51 @@ CREATE TABLE IF NOT EXISTS `chatroom` ( KEY `cr_created` (`cr_created`), KEY `cr_edited` (`cr_edited`), KEY `cr_expire` (`cr_expire`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `clients` +-- CREATE TABLE IF NOT EXISTS `clients` ( - `client_id` varchar(20) NOT NULL, - `pw` varchar(20) NOT NULL, - `redirect_uri` varchar(200) NOT NULL, + `client_id` varchar(20) NOT NULL DEFAULT '', + `pw` varchar(20) NOT NULL DEFAULT '', + `redirect_uri` varchar(200) NOT NULL DEFAULT '', `name` text, `icon` text, `uid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`client_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `config` +-- + CREATE TABLE IF NOT EXISTS `config` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `cat` char(255) CHARACTER SET ascii NOT NULL, - `k` char(255) CHARACTER SET ascii NOT NULL, + `cat` char(255) CHARACTER SET ascii NOT NULL DEFAULT '', + `k` char(255) CHARACTER SET ascii NOT NULL DEFAULT '', `v` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `access` (`cat`,`k`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `conv` +-- + CREATE TABLE IF NOT EXISTS `conv` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `guid` char(255) NOT NULL, + `guid` char(255) NOT NULL DEFAULT '', `recips` mediumtext NOT NULL, - `uid` int(11) NOT NULL, - `creator` char(255) NOT NULL, + `uid` int(11) NOT NULL DEFAULT '0', + `creator` char(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `subject` mediumtext NOT NULL, @@ -325,20 +399,26 @@ CREATE TABLE IF NOT EXISTS `conv` ( KEY `updated` (`updated`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `event` +-- + CREATE TABLE IF NOT EXISTS `event` ( `id` int(11) NOT NULL AUTO_INCREMENT, `aid` int(10) unsigned NOT NULL DEFAULT '0', - `uid` int(11) NOT NULL, + `uid` int(11) NOT NULL DEFAULT '0', `event_xchan` char(255) NOT NULL DEFAULT '', `event_hash` char(255) NOT NULL DEFAULT '', - `created` datetime NOT NULL, - `edited` datetime NOT NULL, - `start` datetime NOT NULL, - `finish` datetime NOT NULL, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `finish` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `summary` text NOT NULL, `description` text NOT NULL, `location` text NOT NULL, - `type` char(255) NOT NULL, + `type` char(255) NOT NULL DEFAULT '', `nofinish` tinyint(1) NOT NULL DEFAULT '0', `adjust` tinyint(1) NOT NULL DEFAULT '1', `ignore` tinyint(1) NOT NULL DEFAULT '0', @@ -357,7 +437,13 @@ CREATE TABLE IF NOT EXISTS `event` ( KEY `aid` (`aid`), KEY `event_hash` (`event_hash`), KEY `event_xchan` (`event_xchan`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `fcontact` +-- CREATE TABLE IF NOT EXISTS `fcontact` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, @@ -381,6 +467,12 @@ CREATE TABLE IF NOT EXISTS `fcontact` ( KEY `network` (`network`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `ffinder` +-- + CREATE TABLE IF NOT EXISTS `ffinder` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(10) unsigned NOT NULL, @@ -392,36 +484,54 @@ CREATE TABLE IF NOT EXISTS `ffinder` ( KEY `fid` (`fid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `fserver` +-- + CREATE TABLE IF NOT EXISTS `fserver` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `server` char(255) NOT NULL, - `posturl` char(255) NOT NULL, + `server` char(255) NOT NULL DEFAULT '', + `posturl` char(255) NOT NULL DEFAULT '', `key` text NOT NULL, PRIMARY KEY (`id`), KEY `server` (`server`), KEY `posturl` (`posturl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `fsuggest` +-- + CREATE TABLE IF NOT EXISTS `fsuggest` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, - `cid` int(11) NOT NULL, - `name` char(255) NOT NULL, - `url` char(255) NOT NULL, - `request` char(255) NOT NULL, - `photo` char(255) NOT NULL, + `uid` int(11) NOT NULL DEFAULT '0', + `cid` int(11) NOT NULL DEFAULT '0', + `name` char(255) NOT NULL DEFAULT '', + `url` char(255) NOT NULL DEFAULT '', + `request` char(255) NOT NULL DEFAULT '', + `photo` char(255) NOT NULL DEFAULT '', `note` text NOT NULL, - `created` datetime NOT NULL, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `groups` +-- + CREATE TABLE IF NOT EXISTS `groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `hash` char(255) NOT NULL DEFAULT '', - `uid` int(10) unsigned NOT NULL, + `uid` int(10) unsigned NOT NULL DEFAULT '0', `visible` tinyint(1) NOT NULL DEFAULT '0', `deleted` tinyint(1) NOT NULL DEFAULT '0', - `name` char(255) NOT NULL, + `name` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `uid` (`uid`), KEY `visible` (`visible`), @@ -429,10 +539,16 @@ CREATE TABLE IF NOT EXISTS `groups` ( KEY `hash` (`hash`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `group_member` +-- + CREATE TABLE IF NOT EXISTS `group_member` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `uid` int(10) unsigned NOT NULL, - `gid` int(10) unsigned NOT NULL, + `uid` int(10) unsigned NOT NULL DEFAULT '0', + `gid` int(10) unsigned NOT NULL DEFAULT '0', `xchan` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `uid` (`uid`), @@ -440,21 +556,33 @@ CREATE TABLE IF NOT EXISTS `group_member` ( KEY `xchan` (`xchan`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `hook` +-- + CREATE TABLE IF NOT EXISTS `hook` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `hook` char(255) NOT NULL, - `file` char(255) NOT NULL, - `function` char(255) NOT NULL, + `hook` char(255) NOT NULL DEFAULT '', + `file` char(255) NOT NULL DEFAULT '', + `function` char(255) NOT NULL DEFAULT '', `priority` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `hook` (`hook`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `hubloc` +-- + CREATE TABLE IF NOT EXISTS `hubloc` ( `hubloc_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `hubloc_guid` char(255) NOT NULL DEFAULT '', `hubloc_guid_sig` text NOT NULL, - `hubloc_hash` char(255) NOT NULL, + `hubloc_hash` char(255) NOT NULL DEFAULT '', `hubloc_addr` char(255) NOT NULL DEFAULT '', `hubloc_network` char(32) NOT NULL DEFAULT '', `hubloc_flags` int(10) unsigned NOT NULL DEFAULT '0', @@ -474,20 +602,26 @@ CREATE TABLE IF NOT EXISTS `hubloc` ( KEY `hubloc_connect` (`hubloc_connect`), KEY `hubloc_host` (`hubloc_host`), KEY `hubloc_addr` (`hubloc_addr`), - KEY `hubloc_network` (`hubloc_network`), KEY `hubloc_updated` (`hubloc_updated`), KEY `hubloc_connected` (`hubloc_connected`), - KEY `hubloc_status` (`hubloc_status`) + KEY `hubloc_status` (`hubloc_status`), + KEY `hubloc_network` (`hubloc_network`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `issue` +-- + CREATE TABLE IF NOT EXISTS `issue` ( `issue_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `issue_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `issue_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `issue_assigned` char(255) NOT NULL, - `issue_priority` int(11) NOT NULL, - `issue_status` int(11) NOT NULL, - `issue_component` char(255) NOT NULL, + `issue_assigned` char(255) NOT NULL DEFAULT '', + `issue_priority` int(11) NOT NULL DEFAULT '0', + `issue_status` int(11) NOT NULL DEFAULT '0', + `issue_component` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`issue_id`), KEY `issue_created` (`issue_created`), KEY `issue_updated` (`issue_updated`), @@ -497,6 +631,12 @@ CREATE TABLE IF NOT EXISTS `issue` ( KEY `issue_component` (`issue_component`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `item` +-- + CREATE TABLE IF NOT EXISTS `item` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `mid` char(255) CHARACTER SET ascii NOT NULL DEFAULT '', @@ -516,34 +656,34 @@ CREATE TABLE IF NOT EXISTS `item` ( `author_xchan` char(255) NOT NULL DEFAULT '', `source_xchan` char(255) NOT NULL DEFAULT '', `mimetype` char(255) NOT NULL DEFAULT '', - `title` text NOT NULL DEFAULT '', - `body` mediumtext NOT NULL DEFAULT '', + `title` text NOT NULL, + `body` mediumtext NOT NULL, `app` char(255) NOT NULL DEFAULT '', `lang` char(64) NOT NULL DEFAULT '', `revision` int(10) unsigned NOT NULL DEFAULT '0', `verb` char(255) NOT NULL DEFAULT '', `obj_type` char(255) NOT NULL DEFAULT '', - `object` text NOT NULL DEFAULT '', + `object` text NOT NULL, `tgt_type` char(255) NOT NULL DEFAULT '', - `target` text NOT NULL DEFAULT '', + `target` text NOT NULL, `layout_mid` char(255) NOT NULL DEFAULT '', - `postopts` text NOT NULL DEFAULT '', - `route` text NOT NULL DEFAULT '', + `postopts` text NOT NULL, + `route` text NOT NULL, `llink` char(255) NOT NULL DEFAULT '', `plink` char(255) NOT NULL DEFAULT '', `resource_id` char(255) NOT NULL DEFAULT '', `resource_type` char(16) NOT NULL DEFAULT '', - `attach` mediumtext NOT NULL DEFAULT '', - `sig` text NOT NULL DEFAULT '', - `diaspora_meta` mediumtext NOT NULL DEFAULT '', + `attach` mediumtext NOT NULL, + `sig` text NOT NULL, + `diaspora_meta` mediumtext NOT NULL, `location` char(255) NOT NULL DEFAULT '', `coord` char(255) NOT NULL DEFAULT '', `public_policy` char(255) NOT NULL DEFAULT '', `comment_policy` char(255) NOT NULL DEFAULT '', - `allow_cid` mediumtext NOT NULL DEFAULT '', - `allow_gid` mediumtext NOT NULL DEFAULT '', - `deny_cid` mediumtext NOT NULL DEFAULT '', - `deny_gid` mediumtext NOT NULL DEFAULT '', + `allow_cid` mediumtext NOT NULL, + `allow_gid` mediumtext NOT NULL, + `deny_cid` mediumtext NOT NULL, + `deny_gid` mediumtext NOT NULL, `item_restrict` int(11) NOT NULL DEFAULT '0', `item_flags` int(11) NOT NULL DEFAULT '0', `item_private` tinyint(4) NOT NULL DEFAULT '0', @@ -555,8 +695,6 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `received` (`received`), KEY `uid_commented` (`uid`,`commented`), KEY `uid_created` (`uid`,`created`), - KEY `changed` (`changed`), - KEY `comments_closed` (`comments_closed`), KEY `aid` (`aid`), KEY `owner_xchan` (`owner_xchan`), KEY `author_xchan` (`author_xchan`), @@ -573,9 +711,11 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `mid` (`mid`), KEY `parent_mid` (`parent_mid`), KEY `uid_mid` (`mid`,`uid`), - KEY `public_policy` (`public_policy`), KEY `comment_policy` (`comment_policy`), KEY `layout_mid` (`layout_mid`), + KEY `public_policy` (`public_policy`), + KEY `comments_closed` (`comments_closed`), + KEY `changed` (`changed`), FULLTEXT KEY `title` (`title`), FULLTEXT KEY `body` (`body`), FULLTEXT KEY `allow_cid` (`allow_cid`), @@ -584,12 +724,18 @@ CREATE TABLE IF NOT EXISTS `item` ( FULLTEXT KEY `deny_gid` (`deny_gid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `item_id` +-- + CREATE TABLE IF NOT EXISTS `item_id` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `iid` int(11) NOT NULL, - `uid` int(11) NOT NULL, - `sid` char(255) NOT NULL, - `service` char(255) NOT NULL, + `iid` int(11) NOT NULL DEFAULT '0', + `uid` int(11) NOT NULL DEFAULT '0', + `sid` char(255) NOT NULL DEFAULT '', + `service` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `uid` (`uid`), KEY `sid` (`sid`), @@ -597,25 +743,37 @@ CREATE TABLE IF NOT EXISTS `item_id` ( KEY `iid` (`iid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `likes` +-- + CREATE TABLE IF NOT EXISTS `likes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `channel_id` int(11) unsigned NOT NULL DEFAULT '0', + `channel_id` int(10) unsigned NOT NULL DEFAULT '0', `liker` char(128) NOT NULL DEFAULT '', `likee` char(128) NOT NULL DEFAULT '', - `iid` int(10) unsigned NOT NULL DEFAULT '0', + `iid` int(11) unsigned NOT NULL DEFAULT '0', `verb` char(255) NOT NULL DEFAULT '', `target_type` char(255) NOT NULL DEFAULT '', `target_id` char(128) NOT NULL DEFAULT '', `target` mediumtext NOT NULL, PRIMARY KEY (`id`), - KEY `channel_id` (`channel_id`), KEY `liker` (`liker`), KEY `likee` (`likee`), KEY `iid` (`iid`), KEY `verb` (`verb`), KEY `target_type` (`target_type`), + KEY `channel_id` (`channel_id`), KEY `target_id` (`target_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `mail` +-- CREATE TABLE IF NOT EXISTS `mail` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, @@ -624,16 +782,15 @@ CREATE TABLE IF NOT EXISTS `mail` ( `from_xchan` char(255) NOT NULL DEFAULT '', `to_xchan` char(255) NOT NULL DEFAULT '', `account_id` int(10) unsigned NOT NULL DEFAULT '0', - `channel_id` int(10) unsigned NOT NULL, + `channel_id` int(10) unsigned NOT NULL DEFAULT '0', `title` text NOT NULL, `body` mediumtext NOT NULL, `attach` mediumtext NOT NULL, - `mid` char(255) NOT NULL, - `parent_mid` char(255) NOT NULL, + `mid` char(255) NOT NULL DEFAULT '', + `parent_mid` char(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), - KEY `convid` (`convid`), KEY `created` (`created`), KEY `mail_flags` (`mail_flags`), KEY `account_id` (`account_id`), @@ -642,18 +799,31 @@ CREATE TABLE IF NOT EXISTS `mail` ( KEY `to_xchan` (`to_xchan`), KEY `mid` (`mid`), KEY `parent_mid` (`parent_mid`), - KEY `expires` (`expires`) + KEY `expires` (`expires`), + KEY `convid` (`convid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `manage` +-- + CREATE TABLE IF NOT EXISTS `manage` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, + `uid` int(11) NOT NULL DEFAULT '0', `xchan` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `uid` (`uid`), KEY `xchan` (`xchan`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `menu` +-- + CREATE TABLE IF NOT EXISTS `menu` ( `menu_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `menu_channel_id` int(10) unsigned NOT NULL DEFAULT '0', @@ -666,6 +836,12 @@ CREATE TABLE IF NOT EXISTS `menu` ( KEY `menu_flags` (`menu_flags`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `menu_item` +-- + CREATE TABLE IF NOT EXISTS `menu_item` ( `mitem_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `mitem_link` char(255) NOT NULL DEFAULT '', @@ -675,7 +851,7 @@ CREATE TABLE IF NOT EXISTS `menu_item` ( `allow_gid` mediumtext NOT NULL, `deny_cid` mediumtext NOT NULL, `deny_gid` mediumtext NOT NULL, - `mitem_channel_id` int(10) unsigned NOT NULL, + `mitem_channel_id` int(10) unsigned NOT NULL DEFAULT '0', `mitem_menu_id` int(10) unsigned NOT NULL DEFAULT '0', `mitem_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`mitem_id`), @@ -684,22 +860,28 @@ CREATE TABLE IF NOT EXISTS `menu_item` ( KEY `mitem_flags` (`mitem_flags`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `notify` +-- + CREATE TABLE IF NOT EXISTS `notify` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `hash` char(64) NOT NULL, - `name` char(255) NOT NULL, - `url` char(255) NOT NULL, - `photo` char(255) NOT NULL, - `date` datetime NOT NULL, + `hash` char(64) NOT NULL DEFAULT '', + `name` char(255) NOT NULL DEFAULT '', + `url` char(255) NOT NULL DEFAULT '', + `photo` char(255) NOT NULL DEFAULT '', + `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `msg` mediumtext NOT NULL, - `aid` int(11) NOT NULL, - `uid` int(11) NOT NULL, - `link` char(255) NOT NULL, + `aid` int(11) NOT NULL DEFAULT '0', + `uid` int(11) NOT NULL DEFAULT '0', + `link` char(255) NOT NULL DEFAULT '', `parent` char(255) NOT NULL DEFAULT '', `seen` tinyint(1) NOT NULL DEFAULT '0', - `type` int(11) NOT NULL, - `verb` char(255) NOT NULL, - `otype` char(16) NOT NULL, + `type` int(11) NOT NULL DEFAULT '0', + `verb` char(255) NOT NULL DEFAULT '', + `otype` char(16) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `type` (`type`), KEY `seen` (`seen`), @@ -712,6 +894,12 @@ CREATE TABLE IF NOT EXISTS `notify` ( KEY `aid` (`aid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `obj` +-- + CREATE TABLE IF NOT EXISTS `obj` ( `obj_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `obj_page` char(64) NOT NULL DEFAULT '', @@ -731,6 +919,12 @@ CREATE TABLE IF NOT EXISTS `obj` ( KEY `obj_obj` (`obj_obj`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `outq` +-- + CREATE TABLE IF NOT EXISTS `outq` ( `outq_hash` char(255) NOT NULL, `outq_account` int(10) unsigned NOT NULL DEFAULT '0', @@ -753,34 +947,46 @@ CREATE TABLE IF NOT EXISTS `outq` ( KEY `outq_delivered` (`outq_delivered`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `pconfig` +-- + CREATE TABLE IF NOT EXISTS `pconfig` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT '0', - `cat` char(255) CHARACTER SET ascii NOT NULL, - `k` char(255) CHARACTER SET ascii NOT NULL, + `cat` char(255) CHARACTER SET ascii NOT NULL DEFAULT '', + `k` char(255) CHARACTER SET ascii NOT NULL DEFAULT '', `v` mediumtext NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `access` (`uid`,`cat`,`k`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `photo` +-- + CREATE TABLE IF NOT EXISTS `photo` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `aid` int(10) unsigned NOT NULL DEFAULT '0', - `uid` int(10) unsigned NOT NULL, + `uid` int(10) unsigned NOT NULL DEFAULT '0', `xchan` char(255) NOT NULL DEFAULT '', - `resource_id` char(255) NOT NULL, - `created` datetime NOT NULL, - `edited` datetime NOT NULL, - `title` char(255) NOT NULL, + `resource_id` char(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `title` char(255) NOT NULL DEFAULT '', `description` text NOT NULL, - `album` char(255) NOT NULL, - `filename` char(255) NOT NULL, + `album` char(255) NOT NULL DEFAULT '', + `filename` char(255) NOT NULL DEFAULT '', `type` char(128) NOT NULL DEFAULT 'image/jpeg', - `height` smallint(6) NOT NULL, - `width` smallint(6) NOT NULL, + `height` smallint(6) NOT NULL DEFAULT '0', + `width` smallint(6) NOT NULL DEFAULT '0', `size` int(10) unsigned NOT NULL DEFAULT '0', `data` mediumblob NOT NULL, - `scale` tinyint(3) NOT NULL, + `scale` tinyint(3) NOT NULL DEFAULT '0', `profile` tinyint(1) NOT NULL DEFAULT '0', `photo_flags` int(10) unsigned NOT NULL DEFAULT '0', `allow_cid` mediumtext NOT NULL, @@ -800,6 +1006,12 @@ CREATE TABLE IF NOT EXISTS `photo` ( KEY `resource_id` (`resource_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `poll` +-- + CREATE TABLE IF NOT EXISTS `poll` ( `poll_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `poll_channel` int(10) unsigned NOT NULL DEFAULT '0', @@ -812,6 +1024,12 @@ CREATE TABLE IF NOT EXISTS `poll` ( KEY `poll_votes` (`poll_votes`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `poll_elm` +-- + CREATE TABLE IF NOT EXISTS `poll_elm` ( `pelm_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `pelm_poll` int(10) unsigned NOT NULL DEFAULT '0', @@ -823,16 +1041,28 @@ CREATE TABLE IF NOT EXISTS `poll_elm` ( KEY `pelm_result` (`pelm_result`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `profdef` +-- + CREATE TABLE IF NOT EXISTS `profdef` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `field_name` char(255) NOT NULL DEFAULT '', `field_type` char(16) NOT NULL DEFAULT '', `field_desc` char(255) NOT NULL DEFAULT '', `field_help` char(255) NOT NULL DEFAULT '', - `field_inputs` mediumtext NOT NULL DEFAULT '', + `field_inputs` mediumtext NOT NULL, PRIMARY KEY (`id`), KEY `field_name` (`field_name`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `profext` +-- CREATE TABLE IF NOT EXISTS `profext` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, @@ -844,39 +1074,45 @@ CREATE TABLE IF NOT EXISTS `profext` ( KEY `channel_id` (`channel_id`), KEY `hash` (`hash`), KEY `k` (`k`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `profile` +-- CREATE TABLE IF NOT EXISTS `profile` ( `id` int(11) NOT NULL AUTO_INCREMENT, `profile_guid` char(64) NOT NULL DEFAULT '', `aid` int(10) unsigned NOT NULL DEFAULT '0', - `uid` int(11) NOT NULL, - `profile_name` char(255) NOT NULL, + `uid` int(11) NOT NULL DEFAULT '0', + `profile_name` char(255) NOT NULL DEFAULT '', `is_default` tinyint(1) NOT NULL DEFAULT '0', `hide_friends` tinyint(1) NOT NULL DEFAULT '0', - `name` char(255) NOT NULL, - `pdesc` char(255) NOT NULL, + `name` char(255) NOT NULL DEFAULT '', + `pdesc` char(255) NOT NULL DEFAULT '', `chandesc` text NOT NULL, `dob` char(32) NOT NULL DEFAULT '0000-00-00', `dob_tz` char(255) NOT NULL DEFAULT 'UTC', - `address` char(255) NOT NULL, - `locality` char(255) NOT NULL, - `region` char(255) NOT NULL, - `postal_code` char(32) NOT NULL, - `country_name` char(255) NOT NULL, - `hometown` char(255) NOT NULL, - `gender` char(32) NOT NULL, - `marital` char(255) NOT NULL, + `address` char(255) NOT NULL DEFAULT '', + `locality` char(255) NOT NULL DEFAULT '', + `region` char(255) NOT NULL DEFAULT '', + `postal_code` char(32) NOT NULL DEFAULT '', + `country_name` char(255) NOT NULL DEFAULT '', + `hometown` char(255) NOT NULL DEFAULT '', + `gender` char(32) NOT NULL DEFAULT '', + `marital` char(255) NOT NULL DEFAULT '', `with` text NOT NULL, `howlong` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', - `sexual` char(255) NOT NULL, - `politic` char(255) NOT NULL, - `religion` char(255) NOT NULL, + `sexual` char(255) NOT NULL DEFAULT '', + `politic` char(255) NOT NULL DEFAULT '', + `religion` char(255) NOT NULL DEFAULT '', `keywords` text NOT NULL, `likes` text NOT NULL, `dislikes` text NOT NULL, `about` text NOT NULL, - `summary` char(255) NOT NULL, + `summary` char(255) NOT NULL DEFAULT '', `music` text NOT NULL, `book` text NOT NULL, `tv` text NOT NULL, @@ -887,9 +1123,9 @@ CREATE TABLE IF NOT EXISTS `profile` ( `education` text NOT NULL, `contact` text NOT NULL, `channels` text NOT NULL, - `homepage` char(255) NOT NULL, - `photo` char(255) NOT NULL, - `thumb` char(255) NOT NULL, + `homepage` char(255) NOT NULL DEFAULT '', + `photo` char(255) NOT NULL DEFAULT '', + `thumb` char(255) NOT NULL DEFAULT '', `publish` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `guid` (`profile_guid`,`uid`), @@ -908,13 +1144,19 @@ CREATE TABLE IF NOT EXISTS `profile` ( KEY `profile_guid` (`profile_guid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `profile_check` +-- + CREATE TABLE IF NOT EXISTS `profile_check` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `uid` int(10) unsigned NOT NULL, + `uid` int(10) unsigned NOT NULL DEFAULT '0', `cid` int(10) unsigned NOT NULL DEFAULT '0', - `dfrn_id` char(255) NOT NULL, - `sec` char(255) NOT NULL, - `expire` int(11) NOT NULL, + `dfrn_id` char(255) NOT NULL DEFAULT '', + `sec` char(255) NOT NULL DEFAULT '', + `expire` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `uid` (`uid`), KEY `cid` (`cid`), @@ -923,29 +1165,47 @@ CREATE TABLE IF NOT EXISTS `profile_check` ( KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `register` +-- + CREATE TABLE IF NOT EXISTS `register` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `hash` char(255) NOT NULL, - `created` datetime NOT NULL, - `uid` int(10) unsigned NOT NULL, - `password` char(255) NOT NULL, - `language` char(16) NOT NULL, + `hash` char(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `uid` int(10) unsigned NOT NULL DEFAULT '0', + `password` char(255) NOT NULL DEFAULT '', + `language` char(16) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `hash` (`hash`), KEY `created` (`created`), KEY `uid` (`uid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `session` +-- CREATE TABLE IF NOT EXISTS `session` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `sid` char(255) NOT NULL, + `sid` char(255) NOT NULL DEFAULT '', `data` text NOT NULL, - `expire` bigint(20) unsigned NOT NULL, + `expire` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `sid` (`sid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `shares` +-- + CREATE TABLE IF NOT EXISTS `shares` ( `share_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `share_type` int(11) NOT NULL DEFAULT '0', @@ -957,18 +1217,30 @@ CREATE TABLE IF NOT EXISTS `shares` ( KEY `share_xchan` (`share_xchan`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `sign` +-- + CREATE TABLE IF NOT EXISTS `sign` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `iid` int(10) unsigned NOT NULL DEFAULT '0', `retract_iid` int(10) unsigned NOT NULL DEFAULT '0', `signed_text` mediumtext NOT NULL, `signature` text NOT NULL, - `signer` char(255) NOT NULL, + `signer` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `iid` (`iid`), KEY `retract_iid` (`retract_iid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `site` +-- + CREATE TABLE IF NOT EXISTS `site` ( `site_url` char(255) NOT NULL, `site_access` int(11) NOT NULL DEFAULT '0', @@ -988,9 +1260,16 @@ CREATE TABLE IF NOT EXISTS `site` ( KEY `site_register` (`site_register`), KEY `site_access` (`site_access`), KEY `site_sellpage` (`site_sellpage`), + KEY `site_pull` (`site_pull`), KEY `site_realm` (`site_realm`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `source` +-- + CREATE TABLE IF NOT EXISTS `source` ( `src_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `src_channel_id` int(10) unsigned NOT NULL DEFAULT '0', @@ -1003,12 +1282,18 @@ CREATE TABLE IF NOT EXISTS `source` ( KEY `src_xchan` (`src_xchan`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `spam` +-- + CREATE TABLE IF NOT EXISTS `spam` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `uid` int(11) NOT NULL, + `uid` int(11) NOT NULL DEFAULT '0', `spam` int(11) NOT NULL DEFAULT '0', `ham` int(11) NOT NULL DEFAULT '0', - `term` char(255) NOT NULL, + `term` char(255) NOT NULL DEFAULT '', `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `uid` (`uid`), @@ -1017,25 +1302,37 @@ CREATE TABLE IF NOT EXISTS `spam` ( KEY `term` (`term`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `sys_perms` +-- + CREATE TABLE IF NOT EXISTS `sys_perms` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `cat` char(255) NOT NULL, - `k` char(255) NOT NULL, + `cat` char(255) NOT NULL DEFAULT '', + `k` char(255) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, - `public_perm` tinyint(1) unsigned NOT NULL, + `public_perm` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `term` +-- + CREATE TABLE IF NOT EXISTS `term` ( `tid` int(10) unsigned NOT NULL AUTO_INCREMENT, `aid` int(10) unsigned NOT NULL DEFAULT '0', `uid` int(10) unsigned NOT NULL DEFAULT '0', - `oid` int(10) unsigned NOT NULL, - `otype` tinyint(3) unsigned NOT NULL, - `type` tinyint(3) unsigned NOT NULL, - `term` char(255) NOT NULL, - `url` char(255) NOT NULL, - `imgurl` char(255) NOT NULL, + `oid` int(10) unsigned NOT NULL DEFAULT '0', + `otype` tinyint(3) unsigned NOT NULL DEFAULT '0', + `type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `term` char(255) NOT NULL DEFAULT '', + `url` char(255) NOT NULL DEFAULT '', + `imgurl` char(255) NOT NULL DEFAULT '', `term_hash` char(255) NOT NULL DEFAULT '', `parent_hash` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`tid`), @@ -1050,22 +1347,34 @@ CREATE TABLE IF NOT EXISTS `term` ( KEY `parent_hash` (`parent_hash`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `tokens` +-- + CREATE TABLE IF NOT EXISTS `tokens` ( - `id` varchar(40) NOT NULL, + `id` varchar(40) NOT NULL DEFAULT '', `secret` text NOT NULL, - `client_id` varchar(20) NOT NULL, - `expires` bigint(20) unsigned NOT NULL, - `scope` varchar(200) NOT NULL, - `uid` int(11) NOT NULL, + `client_id` varchar(20) NOT NULL DEFAULT '', + `expires` bigint(20) unsigned NOT NULL DEFAULT '0', + `scope` varchar(200) NOT NULL DEFAULT '', + `uid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `client_id` (`client_id`), KEY `expires` (`expires`), KEY `uid` (`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `updates` +-- + CREATE TABLE IF NOT EXISTS `updates` ( `ud_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `ud_hash` char(128) NOT NULL, + `ud_hash` char(128) NOT NULL DEFAULT '', `ud_guid` char(255) NOT NULL DEFAULT '', `ud_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ud_last` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', @@ -1080,6 +1389,12 @@ CREATE TABLE IF NOT EXISTS `updates` ( KEY `ud_last` (`ud_last`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `verify` +-- + CREATE TABLE IF NOT EXISTS `verify` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel` int(10) unsigned NOT NULL DEFAULT '0', @@ -1095,6 +1410,12 @@ CREATE TABLE IF NOT EXISTS `verify` ( KEY `created` (`created`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `vote` +-- + CREATE TABLE IF NOT EXISTS `vote` ( `vote_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `vote_poll` int(11) NOT NULL DEFAULT '0', @@ -1107,6 +1428,12 @@ CREATE TABLE IF NOT EXISTS `vote` ( KEY `vote_element` (`vote_element`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `xchan` +-- + CREATE TABLE IF NOT EXISTS `xchan` ( `xchan_hash` char(255) NOT NULL, `xchan_guid` char(255) NOT NULL DEFAULT '', @@ -1139,6 +1466,12 @@ CREATE TABLE IF NOT EXISTS `xchan` ( KEY `xchan_follow` (`xchan_follow`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `xchat` +-- + CREATE TABLE IF NOT EXISTS `xchat` ( `xchat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `xchat_url` char(255) NOT NULL DEFAULT '', @@ -1150,13 +1483,19 @@ CREATE TABLE IF NOT EXISTS `xchat` ( KEY `xchat_desc` (`xchat_desc`), KEY `xchat_xchan` (`xchat_xchan`), KEY `xchat_edited` (`xchat_edited`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `xconfig` +-- CREATE TABLE IF NOT EXISTS `xconfig` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `xchan` char(255) NOT NULL, - `cat` char(255) NOT NULL, - `k` char(255) NOT NULL, + `xchan` char(255) NOT NULL DEFAULT '', + `cat` char(255) NOT NULL DEFAULT '', + `k` char(255) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, PRIMARY KEY (`id`), KEY `xchan` (`xchan`), @@ -1164,6 +1503,12 @@ CREATE TABLE IF NOT EXISTS `xconfig` ( KEY `k` (`k`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `xign` +-- + CREATE TABLE IF NOT EXISTS `xign` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT '0', @@ -1173,6 +1518,12 @@ CREATE TABLE IF NOT EXISTS `xign` ( KEY `xchan` (`xchan`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `xlink` +-- + CREATE TABLE IF NOT EXISTS `xlink` ( `xlink_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `xlink_xchan` char(255) NOT NULL DEFAULT '', @@ -1186,6 +1537,12 @@ CREATE TABLE IF NOT EXISTS `xlink` ( KEY `xlink_rating` (`xlink_rating`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `xprof` +-- + CREATE TABLE IF NOT EXISTS `xprof` ( `xprof_hash` char(255) NOT NULL, `xprof_age` tinyint(3) unsigned NOT NULL DEFAULT '0', @@ -1216,9 +1573,15 @@ CREATE TABLE IF NOT EXISTS `xprof` ( KEY `xprof_hometown` (`xprof_hometown`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +-- -------------------------------------------------------- + +-- +-- Table structure for table `xtag` +-- + CREATE TABLE IF NOT EXISTS `xtag` ( `xtag_id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `xtag_hash` char(255) NOT NULL, + `xtag_hash` char(255) NOT NULL DEFAULT '', `xtag_term` char(255) NOT NULL DEFAULT '', `xtag_flags` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`xtag_id`), From e7b634f81d5c5cd85210cce7ed69ffb27470c66c Mon Sep 17 00:00:00 2001 From: zottel Date: Mon, 10 Nov 2014 12:25:35 +0100 Subject: [PATCH 067/176] set channel_w_stream to 0 for forum roles --- include/permissions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/permissions.php b/include/permissions.php index 186ba32d8..119ecc865 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -549,7 +549,7 @@ function get_role_perms($role) { $ret['channel_r_profile'] = PERMS_PUBLIC; $ret['channel_r_photos'] = PERMS_PUBLIC; $ret['channel_r_abook'] = PERMS_PUBLIC; - $ret['channel_w_stream'] = PERMS_CONTACTS; + $ret['channel_w_stream'] = 0; $ret['channel_w_wall'] = PERMS_CONTACTS; $ret['channel_w_tagwall'] = PERMS_CONTACTS; $ret['channel_w_comment'] = PERMS_CONTACTS; @@ -581,7 +581,7 @@ function get_role_perms($role) { $ret['channel_r_profile'] = PERMS_PUBLIC; $ret['channel_r_photos'] = PERMS_PUBLIC; $ret['channel_r_abook'] = PERMS_PUBLIC; - $ret['channel_w_stream'] = PERMS_CONTACTS; + $ret['channel_w_stream'] = 0; $ret['channel_w_wall'] = PERMS_CONTACTS; $ret['channel_w_tagwall'] = PERMS_SPECIFIC; $ret['channel_w_comment'] = PERMS_CONTACTS; @@ -614,7 +614,7 @@ function get_role_perms($role) { $ret['channel_r_profile'] = PERMS_CONTACTS; $ret['channel_r_photos'] = PERMS_CONTACTS; $ret['channel_r_abook'] = PERMS_CONTACTS; - $ret['channel_w_stream'] = PERMS_CONTACTS; + $ret['channel_w_stream'] = 0; $ret['channel_w_wall'] = PERMS_CONTACTS; $ret['channel_w_tagwall'] = 0; $ret['channel_w_comment'] = PERMS_CONTACTS; From 9ddf49c6616aded15a4d1615500e91ea0c4096a1 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Mon, 10 Nov 2014 19:34:39 +0000 Subject: [PATCH 068/176] Add a new theme flag - library. Not directly available to be used itself but installed as a lib for other themes. Like SDL, or GTK. Get rid of mobility - it's better done with Comanche and schemas. Describe themes instead of restricting them. Mobile themes can be used as the desktop theme and vice-versa. This deals with the problem of "but my device is something inbetween". Presently not exposed to members. --- mod/admin.php | 53 +++++++++++++++++++---------------------- view/tpl/admin_site.tpl | 1 - 2 files changed, 25 insertions(+), 29 deletions(-) diff --git a/mod/admin.php b/mod/admin.php index 06f44c89b..da76337d8 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -238,7 +238,6 @@ function admin_page_site_post(&$a){ $language = ((x($_POST,'language')) ? notags(trim($_POST['language'])) : ''); $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : ''); $theme_mobile = ((x($_POST,'theme_mobile')) ? notags(trim($_POST['theme_mobile'])) : ''); - $theme_accessibility = ((x($_POST,'theme_accessibility')) ? notags(trim($_POST['theme_accessibility'])) : ''); // $site_channel = ((x($_POST,'site_channel')) ? notags(trim($_POST['site_channel'])) : ''); $maximagesize = ((x($_POST,'maximagesize')) ? intval(trim($_POST['maximagesize'])) : 0); @@ -298,12 +297,6 @@ function admin_page_site_post(&$a){ } else { set_config('system','mobile_theme', $theme_mobile); } - if ( $theme_accessibility === '---' ) { - del_config('system','accessibility_theme'); - } else { - set_config('system','accessibility_theme', $theme_accessibility); - } - // set_config('system','site_channel', $site_channel); set_config('system','maximagesize', $maximagesize); @@ -357,27 +350,32 @@ function admin_page_site(&$a) { } /* Installed themes */ - $theme_choices = array(); - $theme_choices_mobile = array(); - $theme_choices_mobile["---"] = t("No special theme for mobile devices"); - $theme_choices_accessibility = array(); - $theme_choices_accessibility["---"] =t("No special theme for accessibility"); - $files = glob('view/theme/*'); - if($files) { - foreach($files as $file) { - $f = basename($file); - $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - Experimental", $f) : $f); - if (file_exists($file . '/mobile')) { - $theme_choices_mobile[$f] = $theme_name; + $theme_choices_mobile["---"] = t("Default"); + $theme_choices = array(); + $files = glob('view/theme/*'); + if($files) { + foreach($files as $file) { + $vars = ''; + $f = basename($file); + if (file_exists($file . '/library')) + continue; + if (file_exists($file . '/mobile')) + $vars = t('mobile'); + if (file_exists($file . '/experimental')) + $vars .= t('experimental'); + if (file_exists($file . '/unsupported')) + $vars .= t('unsupported'); + if ($vars) { + $theme_choices[$f] = $f . ' (' . $vars . ')'; + $theme_choices_mobile[$f] = $f . ' (' . $vars . ')'; } - if (file_exists($file . '/accessibility')) { - $theme_choices_accessibility[$f] = $theme_name; - } - $theme_choices[$f] = $theme_name; - } - } - - + else { + $theme_choices[$f] = $f; + $theme_choices_mobile[$f] = $f; + } + } + } + /* Banner */ $banner = get_config('system','banner'); if($banner == false) @@ -425,7 +423,6 @@ function admin_page_site(&$a) { '$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices), '$theme' => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - change theme settings"), $theme_choices), '$theme_mobile' => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile_theme'), t("Theme for mobile devices"), $theme_choices_mobile), - '$theme_accessibility' => array('theme_accessibility', t("Accessibility system theme"), get_config('system','accessibility_theme'), t("Accessibility theme"), $theme_choices_accessibility), // '$site_channel' => array('site_channel', t("Channel to use for this website's static pages"), get_config('system','site_channel'), t("Site Channel")), '$diaspora_enabled' => array('diaspora_enabled',t('Enable Diaspora Protocol'), get_config('system','diaspora_enabled'), t('Communicate with Diaspora and Friendica - experimental')), '$feed_contacts' => array('feed_contacts', t('Allow Feeds as Connections'),get_config('system','feed_contacts'),t('(Heavy system resource usage)')), diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index 8c62cb80f..0003ddfc0 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -46,7 +46,6 @@ {{include file="field_select.tpl" field=$language}} {{include file="field_select.tpl" field=$theme}} {{include file="field_select.tpl" field=$theme_mobile}} - {{include file="field_select.tpl" field=$theme_accessibility}} {{include file="field_checkbox.tpl" field=$no_login_on_homepage}} From 0b4575a40b5412f0497c50560b0510a304599086 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 10 Nov 2014 14:23:06 -0800 Subject: [PATCH 069/176] class is a reserved word --- mod/ping.php | 8 ++++---- version.inc | 2 +- view/js/main.js | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mod/ping.php b/mod/ping.php index 98584cb14..e52c162ec 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -222,7 +222,7 @@ function ping_init(&$a) { 'url' => $zz['url'], 'photo' => $zz['photo'], 'when' => relative_date($zz['date']), - 'class' => (($zz['seen']) ? 'notify-seen' : 'notify-unseen'), + 'hclass' => (($zz['seen']) ? 'notify-seen' : 'notify-unseen'), 'message' => strip_tags(bbcode($zz['msg'])) ); } @@ -251,7 +251,7 @@ function ping_init(&$a) { 'url' => $zz['xchan_url'], 'photo' => $zz['xchan_photo_s'], 'when' => relative_date($zz['created']), - 'class' => (($zz['mail_flags'] & MAIL_SEEN) ? 'notify-seen' : 'notify-unseen'), + 'hclass' => (($zz['mail_flags'] & MAIL_SEEN) ? 'notify-seen' : 'notify-unseen'), 'message' => t('sent you a private message'), ); } @@ -302,7 +302,7 @@ function ping_init(&$a) { 'url' => $rr['xchan_url'], 'photo' => $rr['xchan_photo_s'], 'when' => relative_date($rr['abook_created']), - 'class' => ('notify-unseen'), + 'hclass' => ('notify-unseen'), 'message' => t('added your channel') ); } @@ -343,7 +343,7 @@ function ping_init(&$a) { 'url' => $rr['xchan_url'], 'photo' => $rr['xchan_photo_s'], 'when' => $when, - 'class' => ('notify-unseen'), + 'hclass' => ('notify-unseen'), 'message' => t('posted an event') ); } diff --git a/version.inc b/version.inc index 2859cdc11..7bd986426 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-09.854 +2014-11-10.855 diff --git a/view/js/main.js b/view/js/main.js index beedb7f01..a55b8fbb1 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -749,7 +749,7 @@ function updateConvItems(mode,data) { $("#nav-" + notifyType + "-menu").html(notifications_all + notifications_mark); $(data.notify).each(function() { - html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.class); + html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); $("#nav-" + notifyType + "-menu").append(html); }); $(".dropdown-menu img[data-src]").each(function(i, el){ From 62094652333514e92f9f00699e14b9f49680bb64 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 10 Nov 2014 15:21:04 -0800 Subject: [PATCH 070/176] add public forum identification to libzot. No attempt is made to identify other types of forums or weird custom channel permissions. If the channel is auto-accept and taggable, it's a public forum. --- boot.php | 1 + include/zot.php | 8 ++++++-- mod/zfinger.php | 16 ++++++++++++++++ 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index f8c91dfbb..4b1c008cd 100755 --- a/boot.php +++ b/boot.php @@ -414,6 +414,7 @@ define ( 'XCHAN_FLAGS_ORPHAN', 0x0002); define ( 'XCHAN_FLAGS_CENSORED', 0x0004); define ( 'XCHAN_FLAGS_SELFCENSORED', 0x0008); define ( 'XCHAN_FLAGS_SYSTEM', 0x0010); +define ( 'XCHAN_FLAGS_PUBFORUM', 0x0020); define ( 'XCHAN_FLAGS_DELETED', 0x1000); /* * Traficlights for Administration of HubLoc diff --git a/include/zot.php b/include/zot.php index bdc1f607f..ac68c0035 100644 --- a/include/zot.php +++ b/include/zot.php @@ -699,10 +699,14 @@ function import_xchan($arr,$ud_flags = UPDATE_FLAGS_UPDATED, $ud_arr = null) { $dirmode = get_config('system','directory_mode'); - if((($arr['site']['directory_mode'] === 'standalone') || ($dirmode & DIRECTORY_MODE_STANDALONE)) -&& ($arr['site']['url'] != z_root())) + if((($arr['site']['directory_mode'] === 'standalone') || ($dirmode & DIRECTORY_MODE_STANDALONE)) && ($arr['site']['url'] != z_root())) $arr['searchable'] = false; + $public_forum = (($r[0]['xchan_flags'] & XCHAN_FLAGS_PUBFORUM) ? true : false); + $pubforum_changed = ((intval($public_forum) != intval($arr['public_forum'])) ? true : false); + if($pubforum_changed) + $new_flags = $r[0]['xchan_flags'] ^ XCHAN_FLAGS_PUBFORUM; + $hidden = (1 - intval($arr['searchable'])); // Be careful - XCHAN_FLAGS_HIDDEN should evaluate to 1 diff --git a/mod/zfinger.php b/mod/zfinger.php index 666f141ec..c2aebc675 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -108,6 +108,21 @@ function zfinger_init(&$a) { if($deleted || $censored) $searchable = false; + $public_forum = false; + + $role = get_pconfig($e['channel_id'],'system','permissions_role'); + if($role === 'forum') { + $public_forum = true; + } + else { + // check if it has characteristics of a public forum based on custom permissions. + $t = q("select abook_my_perms from abook where abook_channel = %d and (abook_flags & %d) limit 1", + intval($e['channel_id']), + intval(ABOOK_FLAG_SELF) + ); + if($t && ($t[0]['abook_my_perms'] & PERMS_W_TAGWALL)) + $public_forum = true; + } // This is for birthdays and keywords, but must check access permissions @@ -174,6 +189,7 @@ function zfinger_init(&$a) { $ret['target_sig'] = $zsig; $ret['searchable'] = $searchable; $ret['adult_content'] = $adult_channel; + $ret['public_forum'] = $public_forum; if($deleted) $ret['deleted'] = $deleted; From 56199027768a07d7f1f980df08fb9c5dc7b1278e Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 10 Nov 2014 17:44:02 -0800 Subject: [PATCH 071/176] indicate public forums in directory results (there will be some [possibly considerable] lag time before existing forums are correctly tagged). --- include/zot.php | 9 +++++---- mod/directory.php | 3 +++ mod/dirsearch.php | 2 ++ view/tpl/direntry.tpl | 6 ++++++ 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/include/zot.php b/include/zot.php index ac68c0035..2954408b9 100644 --- a/include/zot.php +++ b/include/zot.php @@ -702,10 +702,6 @@ function import_xchan($arr,$ud_flags = UPDATE_FLAGS_UPDATED, $ud_arr = null) { if((($arr['site']['directory_mode'] === 'standalone') || ($dirmode & DIRECTORY_MODE_STANDALONE)) && ($arr['site']['url'] != z_root())) $arr['searchable'] = false; - $public_forum = (($r[0]['xchan_flags'] & XCHAN_FLAGS_PUBFORUM) ? true : false); - $pubforum_changed = ((intval($public_forum) != intval($arr['public_forum'])) ? true : false); - if($pubforum_changed) - $new_flags = $r[0]['xchan_flags'] ^ XCHAN_FLAGS_PUBFORUM; $hidden = (1 - intval($arr['searchable'])); @@ -725,6 +721,11 @@ function import_xchan($arr,$ud_flags = UPDATE_FLAGS_UPDATED, $ud_arr = null) { if($deleted_changed) $new_flags = $new_flags ^ XCHAN_FLAGS_DELETED; + $public_forum = (($r[0]['xchan_flags'] & XCHAN_FLAGS_PUBFORUM) ? true : false); + $pubforum_changed = ((intval($public_forum) != intval($arr['public_forum'])) ? true : false); + if($pubforum_changed) + $new_flags = $r[0]['xchan_flags'] ^ XCHAN_FLAGS_PUBFORUM; + if(($r[0]['xchan_name_date'] != $arr['name_updated']) || ($r[0]['xchan_connurl'] != $arr['connections_url']) || ($r[0]['xchan_flags'] != $new_flags) diff --git a/mod/directory.php b/mod/directory.php index 09ff2ae09..10e90b145 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -203,6 +203,7 @@ function directory_content(&$a) { $entry = array( 'id' => ++$t, 'profile_link' => $profile_link, + 'public_forum' => $rr['public_forum'], 'photo' => $rr['photo'], 'hash' => $rr['hash'], 'alttext' => $rr['name'] . ' ' . $rr['address'], @@ -210,6 +211,7 @@ function directory_content(&$a) { 'details' => $pdesc . $details, 'profile' => $profile, 'address' => $rr['address'], + 'nickname' => substr($rr['address'],0,strpos($rr['address'],'@')), 'location' => $location, 'gender' => $gender, 'pdesc' => $pdesc, @@ -219,6 +221,7 @@ function directory_content(&$a) { 'hometown' => $hometown, 'about' => $about, 'conn_label' => t('Connect'), + 'forum_label' => t('Public Forum:'), 'connect' => $connect_link, 'online' => $online, 'kw' => (($out) ? t('Keywords: ') : ''), diff --git a/mod/dirsearch.php b/mod/dirsearch.php index d8f611e6a..516b5cc73 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -226,6 +226,8 @@ function dirsearch_content(&$a) { $entry['name'] = $rr['xchan_name']; $entry['hash'] = $rr['xchan_hash']; + $entry['public_forum'] = (($rr['xchan_flags'] & XCHAN_FLAGS_PUBFORUM) ? true : false); + $entry['url'] = $rr['xchan_url']; $entry['photo_l'] = $rr['xchan_photo_l']; $entry['photo'] = $rr['xchan_photo_m']; diff --git a/view/tpl/direntry.tpl b/view/tpl/direntry.tpl index 691905ecd..879a168c9 100755 --- a/view/tpl/direntry.tpl +++ b/view/tpl/direntry.tpl @@ -12,6 +12,12 @@
{{$entry.name}}{{if $entry.online}} {{/if}}
+{{if $entry.public_forum}} +
+{{$entry.forum_label}} @{{$entry.nickname}}+ +
+{{/if}} +
{{$entry.details}}
{{if $entry.hometown}}
{{$entry.hometown}}
From d432f4ccd5696565dbc6e726d6d06eb77fd35f77 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 10 Nov 2014 19:20:23 -0800 Subject: [PATCH 072/176] issue #683 - don't linkify homepage field without validating --- include/identity.php | 2 ++ mod/profiles.php | 2 ++ view/tpl/profile_vcard.tpl | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/include/identity.php b/include/identity.php index b9ee00623..c8b5a3679 100644 --- a/include/identity.php +++ b/include/identity.php @@ -890,6 +890,8 @@ function profile_sidebar($profile, $block = 0, $show_connect = true) { || (x($profile,'country_name') == 1)) $location = t('Location:'); + $profile['homepage'] = linkify($profile['homepage']); + $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False); $marital = ((x($profile,'marital') == 1) ? t('Status:') : False); $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False); diff --git a/mod/profiles.php b/mod/profiles.php index 14f24c5cf..86de72629 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -514,6 +514,8 @@ function profiles_post(&$a) { } if($is_default) { + // reload the info for the sidebar widget - why does this not work? + profile_load($a,$channel['channel_address']); proc_run('php','include/directory.php',local_user()); } } diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl index 3c83cd685..6904c2fec 100755 --- a/view/tpl/profile_vcard.tpl +++ b/view/tpl/profile_vcard.tpl @@ -41,7 +41,7 @@ {{if $marital}}
{{$marital}}
{{$profile.marital}}
{{/if}} - {{if $homepage}}
{{$homepage}}
{{$profile.homepage}}
{{/if}} + {{if $homepage}}
{{$homepage}}
{{$profile.homepage}}
{{/if}} {{if $diaspora}} {{include file="diaspora_vcard.tpl"}} From 325b269b224615a9c584e0ec631a11d68bb24eb8 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 11 Nov 2014 01:05:29 -0800 Subject: [PATCH 073/176] the code is a bit crufty, but this should fix issue #687 --- include/datetime.php | 13 ++++++++++--- mod/profiles.php | 16 ++++++++++++++++ version.inc | 2 +- 3 files changed, 27 insertions(+), 4 deletions(-) diff --git a/include/datetime.php b/include/datetime.php index 00bac8ad1..47c63e51d 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -134,10 +134,17 @@ function dob($dob) { if(! $f) $f = 'ymd'; - if ($dob && $dob != '0000-00-00') - $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),mktime(0,0,0,$month,$day,$year),'dob'); + if($dob === '0000-00-00') + $value = ''; else - $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),false,'dob'); + $value = (($year) ? datetime_convert('UTC','UTC',$dob,'Y-m-d') : datetime_convert('UTC','UTC',$dob,'m-d')); + + $o = ''; + +// if ($dob && $dob != '0000-00-00') +// $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),mktime(0,0,0,$month,$day,$year),'dob'); +// else +// $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),false,'dob'); return $o; } diff --git a/mod/profiles.php b/mod/profiles.php index 86de72629..bea006384 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -234,6 +234,22 @@ function profiles_post(&$a) { } $dob = $_POST['dob'] ? escape_tags(trim($_POST['dob'])) : '0000-00-00'; // FIXME: Needs to be validated? + + $y = substr($dob,0,4); + if((! ctype_digit($y)) || ($y < 1900)) + $ignore_year = true; + else + $ignore_year = false; + + if($dob != '0000-00-00') { + if(strpos($dob,'0000-') === 0) { + $ignore_year = true; + $dob = substr($dob,5); + } + $dob = datetime_convert('UTC','UTC',(($ignore_year) ? '1900-' . $dob : $dob),(($ignore_year) ? 'm-d' : 'Y-m-d')); + if($ignore_year) + $dob = '0000-' . $dob; + } $name = escape_tags(trim($_POST['name'])); diff --git a/version.inc b/version.inc index 7bd986426..6c86bf1e2 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-10.855 +2014-11-11.856 From f72035ec93c51356e9f6810fe62b4f77be09bebf Mon Sep 17 00:00:00 2001 From: marijus Date: Tue, 11 Nov 2014 21:09:05 +0100 Subject: [PATCH 074/176] tie the narrow nav-pills to .widget instead of aside --- view/css/widgets.css | 5 +++++ view/theme/redbasic/css/style.css | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/view/css/widgets.css b/view/css/widgets.css index d481a09d1..b5a99d5ae 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -7,6 +7,11 @@ margin-top: 0px; } + +.widget .nav-pills > li > a { + padding: 6px 10px; +} + /* suggest */ .suggest-widget-more { diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 06f24eedd..f3bf546ea 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2169,10 +2169,6 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { background-color: $navaside_bghover; } -aside .nav-pills > li > a { - padding: 6px 10px; -} - .dropdown-menu img { border-radius: $radiuspx; } From d145ef2021da845e257681f1dc93d274d814e90f Mon Sep 17 00:00:00 2001 From: marijus Date: Tue, 11 Nov 2014 23:09:55 +0100 Subject: [PATCH 075/176] some work on directory widgets --- view/css/widgets.css | 27 ++++---------------- view/theme/redbasic/css/style.css | 13 ---------- view/tpl/dir_sort_links.tpl | 8 +++--- view/tpl/peoplefind.tpl | 41 ++++++++++++++++++------------- view/tpl/safesearch.tpl | 4 ++- view/tpl/searchbox.tpl | 2 +- 6 files changed, 38 insertions(+), 57 deletions(-) diff --git a/view/css/widgets.css b/view/css/widgets.css index b5a99d5ae..a24f5fb29 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -12,6 +12,11 @@ padding: 6px 10px; } +.widget-input { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + /* suggest */ .suggest-widget-more { @@ -28,13 +33,6 @@ margin-top: 15px; } -/* search */ - -#search-text { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} - /* notes */ #note-text { @@ -51,21 +49,6 @@ } -/* peoplefind */ - -#peoplefind-sidebar .btn { - margin: 10px 0 10px 0; -} - -#side-peoplefind-url { - margin-top: 5px; -} - -#side-peoplefind-url { - font-size: 1em; -} - - /* fileas */ diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f3bf546ea..ea8aa3365 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2019,10 +2019,6 @@ img.mail-list-sender-photo { -moz-border-radius: $radiuspx; } -#saved-search-ul { - list-style-type: none; -} - .fileas-ul { list-style-type: none; } @@ -2032,15 +2028,6 @@ img.mail-list-sender-photo { border-radius: $radiuspx; -moz-border-radius: $radiuspx; } -/* -.categories-ul { - list-style-type: none; -} - -#sidebar-group-list ul, #posted-date-selector { - list-style-type: none; -} -*/ .profile-thing-list img, .thing-show img, .thing-edit-links a { margin-top: 8px; diff --git a/view/tpl/dir_sort_links.tpl b/view/tpl/dir_sort_links.tpl index d78aec1f5..f6d8c3454 100644 --- a/view/tpl/dir_sort_links.tpl +++ b/view/tpl/dir_sort_links.tpl @@ -1,6 +1,8 @@ diff --git a/view/tpl/peoplefind.tpl b/view/tpl/peoplefind.tpl index 55bf1575f..6ec37539b 100755 --- a/view/tpl/peoplefind.tpl +++ b/view/tpl/peoplefind.tpl @@ -1,22 +1,29 @@

{{$findpeople}}

-
{{$desc}}
- - -
- {{if $advanced_search}} - {{$advanced_search}} -
- diff --git a/view/tpl/safesearch.tpl b/view/tpl/safesearch.tpl index e0b2ab538..58ce22741 100644 --- a/view/tpl/safesearch.tpl +++ b/view/tpl/safesearch.tpl @@ -1,4 +1,6 @@

{{$safemode}}

-{{$toggle}} +
diff --git a/view/tpl/searchbox.tpl b/view/tpl/searchbox.tpl index 02b2d4a50..f4301f0f5 100644 --- a/view/tpl/searchbox.tpl +++ b/view/tpl/searchbox.tpl @@ -1,7 +1,7 @@
- +
{{if $savedsearch}} From 3fa003b5a889e2565eb64a950afabf5f6e4b3fe8 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 11 Nov 2014 15:13:18 -0800 Subject: [PATCH 076/176] add some subtle delineation to directory entries, remove forced link on homepage element (SECURITY) --- mod/directory.php | 2 +- view/css/mod_directory.css | 3 +++ view/tpl/direntry.tpl | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/mod/directory.php b/mod/directory.php index 10e90b145..b7c965289 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -217,7 +217,7 @@ function directory_content(&$a) { 'pdesc' => $pdesc, 'marital' => $marital, 'homepage' => $homepage, - 'homepageurl' => $homepageurl, + 'homepageurl' => linkify($homepageurl), 'hometown' => $hometown, 'about' => $about, 'conn_label' => t('Connect'), diff --git a/view/css/mod_directory.css b/view/css/mod_directory.css index 98b99ef50..849e8e485 100644 --- a/view/css/mod_directory.css +++ b/view/css/mod_directory.css @@ -21,6 +21,8 @@ .directory-item { overflow: hidden; margin: 2px; + border-bottom: 2px solid #f1f1f1; + padding-bottom: 3px; } #directory-search-wrapper { @@ -63,6 +65,7 @@ div.dirtagblock.widget { margin: 16px; } .directory-connect { + margin-top: 3px; display:block; margin-left:auto; margin-right: auto; diff --git a/view/tpl/direntry.tpl b/view/tpl/direntry.tpl index 879a168c9..2da920ab1 100755 --- a/view/tpl/direntry.tpl +++ b/view/tpl/direntry.tpl @@ -26,7 +26,7 @@
{{$entry.about}}
{{/if}} {{if $entry.homepage}} -
{{$entry.homepage}}{{$entry.homepageurl}}
+
{{$entry.homepage}}{{$entry.homepageurl}}
{{/if}} {{if $entry.kw}}
{{$entry.kw}} {{$entry.keywords}}
From f2d5f23d584944e4c553fb296b8f649b9be2f0c2 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 11 Nov 2014 15:50:27 -0800 Subject: [PATCH 077/176] Nothing here, move along. --- mod/directory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/directory.php b/mod/directory.php index b7c965289..256f7ca9a 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -2,7 +2,7 @@ require_once('include/dir_fns.php'); require_once('include/widgets.php'); - +require_once('include/bbcode.php'); function directory_init(&$a) { $a->set_pager_itemspage(60); @@ -166,7 +166,7 @@ function directory_content(&$a) { $hometown = ((x($profile,'hometown') == 1) ? t('Hometown: ') . $profile['hometown'] : False); - $about = ((x($profile,'about') == 1) ? t('About: ') . $profile['about'] : False); + $about = ((x($profile,'about') == 1) ? t('About: ') . bbcode($profile['about']) : False); $keywords = ((x($profile,'keywords')) ? $profile['keywords'] : ''); From 09b09dedbc3157e1859f4a777aeab54fadabfb43 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 11 Nov 2014 16:06:16 -0800 Subject: [PATCH 078/176] Most directory searches are POST. get_query_args() only handles GET so that had to be fixed or page 2 of directory search results wouldn't match the search. --- include/text.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index fca23ca22..4aa412355 100644 --- a/include/text.php +++ b/include/text.php @@ -2046,7 +2046,7 @@ function normalise_openid($s) { // used in ajax endless scroll request to find out all the args that the master page was viewing. // This was using $_REQUEST, but $_REQUEST also contains all your cookies. So we're restricting it -// to $_GET. If this is used in a post handler, that decision may need to be considered. +// to $_GET and $_POST. function extra_query_args() { $s = ''; @@ -2058,5 +2058,13 @@ function extra_query_args() { } } } + if(count($_POST)) { + foreach($_POST as $k => $v) { + // these are request vars we don't want to duplicate + if(! in_array($k, array('q','f','zid','page','PHPSESSID'))) { + $s .= '&' . $k . '=' . $v; + } + } + } return $s; } From 06e5d0798c67e8314429e475523a6a30e50bfb8e Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 11 Nov 2014 16:09:45 -0800 Subject: [PATCH 079/176] and urlencode that. --- include/text.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/text.php b/include/text.php index 4aa412355..7cb54edd3 100644 --- a/include/text.php +++ b/include/text.php @@ -2054,7 +2054,7 @@ function extra_query_args() { foreach($_GET as $k => $v) { // these are request vars we don't want to duplicate if(! in_array($k, array('q','f','zid','page','PHPSESSID'))) { - $s .= '&' . $k . '=' . $v; + $s .= '&' . $k . '=' . urlencode($v); } } } @@ -2062,7 +2062,7 @@ function extra_query_args() { foreach($_POST as $k => $v) { // these are request vars we don't want to duplicate if(! in_array($k, array('q','f','zid','page','PHPSESSID'))) { - $s .= '&' . $k . '=' . $v; + $s .= '&' . $k . '=' . urlencode($v); } } } From 570577a99089ff5bb48c5c67a612bdd874721e95 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 11 Nov 2014 18:05:50 -0800 Subject: [PATCH 080/176] a couple of places where we need to look for a sys channel euid. --- include/text.php | 7 +++++++ mod/item.php | 28 ++++++++++++++++++---------- 2 files changed, 25 insertions(+), 10 deletions(-) diff --git a/include/text.php b/include/text.php index 7cb54edd3..ba1f9e5a3 100644 --- a/include/text.php +++ b/include/text.php @@ -2021,7 +2021,14 @@ function json_decode_plus($s) { function design_tools() { + $channel = get_app()->get_channel(); + + if(array_key_exists('sys',$_REQUEST) && $_REQUEST['sys'] == 1 && is_site_admin()) { + require_once('include/identity.php'); + $channel = get_sys_channel(); + } + $who = $channel['channel_address']; return replace_macros(get_markup_template('design_tools.tpl'), array( diff --git a/mod/item.php b/mod/item.php index e7d886b00..9688dbfe1 100644 --- a/mod/item.php +++ b/mod/item.php @@ -32,9 +32,17 @@ function item_post(&$a) { require_once('include/security.php'); $uid = local_user(); - $channel = null; + if(array_key_exists('sys',$_REQUEST) && $_REQUEST['sys'] == 1 && is_site_admin()) { + require_once('include/identity.php'); + $sys = get_sys_channel(); + if($sys && intval($sys['channel_id'])) { + $uid = intval($sys['channel_id']); + $channel = $sys; + } + } + if(x($_REQUEST,'dropitems')) { require_once('include/items.php'); $arr_drop = explode(',',$_REQUEST['dropitems']); @@ -87,8 +95,8 @@ function item_post(&$a) { /* * Check service class limits */ - if (local_user() && !(x($_REQUEST,'parent')) && !(x($_REQUEST,'post_id'))) { - $ret = item_check_service_class(local_user(),x($_REQUEST,'webpage')); + if ($uid && !(x($_REQUEST,'parent')) && !(x($_REQUEST,'post_id'))) { + $ret = item_check_service_class($uid,x($_REQUEST,'webpage')); if (!$ret['success']) { notice( t($ret['message']) . EOL) ; if(x($_REQUEST,'return')) @@ -129,11 +137,11 @@ function item_post(&$a) { intval($parent) ); } - elseif($parent_mid && local_user()) { + elseif($parent_mid && $uid) { // This is coming from an API source, and we are logged in $r = q("SELECT * FROM `item` WHERE `mid` = '%s' AND `uid` = %d LIMIT 1", dbesc($parent_mid), - intval(local_user()) + intval($uid) ); } // if this isn't the real parent of the conversation, find it @@ -223,7 +231,7 @@ function item_post(&$a) { if(! $channel) { - if(local_user() && local_user() == $profile_uid) { + if($uid && $uid == $profile_uid) { $channel = $a->get_channel(); } else { @@ -446,7 +454,7 @@ function item_post(&$a) { intval($profile_uid) ); if($z && ($z[0]['account_roles'] & ACCOUNT_ROLE_ALLOWCODE)) { - if(local_user() && (get_account_id() == $z[0]['account_id'])) { + if($uid && (get_account_id() == $z[0]['account_id'])) { $execflag = true; } else { @@ -461,7 +469,7 @@ function item_post(&$a) { if($mimetype === 'text/bbcode') { - if(local_user() && local_user() == $profile_uid && feature_enabled(local_user(),'markdown')) { + if($uid && $uid == $profile_uid && feature_enabled($uid,'markdown')) { require_once('include/bb2diaspora.php'); $body = diaspora2bb(escape_tags($body),true); } @@ -594,7 +602,7 @@ function item_post(&$a) { if($fullnametagged) continue; - $success = handle_tag($a, $body, $access_tag, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag); + $success = handle_tag($a, $body, $access_tag, $str_tags, ($uid) ? $uid : $profile_uid , $tag); logger('handle_tag: ' . print_r($success,tue), LOGGER_DATA); if(($access_tag) && (! $parent_item)) { logger('access_tag: ' . $tag . ' ' . print_r($access_tag,true), LOGGER_DATA); @@ -797,7 +805,7 @@ function item_post(&$a) { $datarray['body'] = z_input_filter($datarray['uid'],$datarray['body'],$datarray['mimetype']); - if(local_user()) { + if($uid) { if($channel['channel_hash'] === $datarray['author_xchan']) { $datarray['sig'] = base64url_encode(rsa_sign($datarray['body'],$channel['channel_prvkey'])); $datarray['item_flags'] = $datarray['item_flags'] | ITEM_VERIFIED; From 37742be6af5aee1a5be8ba878379d9e21b39377d Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 11 Nov 2014 18:57:59 -0800 Subject: [PATCH 081/176] some more work on sys publishing --- mod/item.php | 21 ++++++++++--------- mod/webpages.php | 52 ++++++++++++++++++++++++++++-------------------- 2 files changed, 40 insertions(+), 33 deletions(-) diff --git a/mod/item.php b/mod/item.php index 9688dbfe1..fdfc43bf2 100644 --- a/mod/item.php +++ b/mod/item.php @@ -33,14 +33,15 @@ function item_post(&$a) { $uid = local_user(); $channel = null; + $observer = null; - if(array_key_exists('sys',$_REQUEST) && $_REQUEST['sys'] == 1 && is_site_admin()) { - require_once('include/identity.php'); - $sys = get_sys_channel(); - if($sys && intval($sys['channel_id'])) { - $uid = intval($sys['channel_id']); - $channel = $sys; - } + $profile_uid = ((x($_REQUEST,'profile_uid')) ? intval($_REQUEST['profile_uid']) : 0); + require_once('include/identity.php'); + $sys = get_sys_channel(); + if($sys && $profile_uid && ($sys['channel_id'] == $profile_uid) && is_site_admin()) { + $uid = intval($sys['channel_id']); + $channel = $sys; + $observer = $sys; } if(x($_REQUEST,'dropitems')) { @@ -78,7 +79,6 @@ function item_post(&$a) { $message_id = ((x($_REQUEST,'message_id') && $api_source) ? strip_tags($_REQUEST['message_id']) : ''); $created = ((x($_REQUEST,'created')) ? datetime_convert('UTC','UTC',$_REQUEST['created']) : datetime_convert()); - $profile_uid = ((x($_REQUEST,'profile_uid')) ? intval($_REQUEST['profile_uid']) : 0); $post_id = ((x($_REQUEST,'post_id')) ? intval($_REQUEST['post_id']) : 0); $app = ((x($_REQUEST,'source')) ? strip_tags($_REQUEST['source']) : ''); $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : ''); @@ -176,9 +176,8 @@ function item_post(&$a) { } - - $observer = $a->get_observer(); - + if(! $observer) + $observer = $a->get_observer(); if($parent) { logger('mod_item: item_post parent=' . $parent); diff --git a/mod/webpages.php b/mod/webpages.php index a5cfd00e6..e7aef5fb0 100644 --- a/mod/webpages.php +++ b/mod/webpages.php @@ -10,28 +10,37 @@ function webpages_content(&$a) { return; } + + $uid = 0; + $owner = 0; + $channel = null; + $observer = $a->get_observer(); + $profile = 0; $channel = $a->get_channel(); - if((local_user()) && (argc() > 2) && (argv(2) === 'view')) { - $which = $channel['channel_address']; - $profile = argv(1); + if($which === 'sys' && is_site_admin()) { + require_once('include/identity.php'); + $sys = get_sys_channel(); + if($sys && intval($sys['channel_id'])) { + $uid = $owner = intval($sys['channel_id']); + $channel = $sys; + $observer = $sys; + } } profile_load($a,$which,$profile); - - // Figure out who the page owner is. - $r = q("select channel_id from channel where channel_address = '%s'", - dbesc($which) - ); - if($r) { - $owner = intval($r[0]['channel_id']); + if(! $owner) { + // Figure out who the page owner is. + $r = q("select channel_id from channel where channel_address = '%s'", + dbesc($which) + ); + if($r) { + $owner = intval($r[0]['channel_id']); + } } - // Get the observer, check their permissions - - $observer = $a->get_observer(); $ob_hash = (($observer) ? $observer['xchan_hash'] : ''); $perms = get_all_perms($owner,$ob_hash); @@ -41,11 +50,6 @@ function webpages_content(&$a) { return; } -// if(local_user() && local_user() == $owner) { -// $a->set_widget('design',design_tools()); -// } - - if(feature_enabled($owner,'expert')) { $mimetype = (($_REQUEST['mimetype']) ? $_REQUEST['mimetype'] : get_pconfig($owner,'system','page_mimetype')); if(! $mimetype) @@ -60,14 +64,18 @@ function webpages_content(&$a) { $layout = 'choose'; -// Create a status editor (for now - we'll need a WYSIWYG eventually) to create pages -// Nickname is set to the observers xchan, and profile_uid to the owners. This lets you post pages at other people's channels. + // Create a status editor (for now - we'll need a WYSIWYG eventually) to create pages + // Nickname is set to the observers xchan, and profile_uid to the owner's. + // This lets you post pages at other people's channels. + require_once ('include/conversation.php'); require_once('include/acl_selectors.php'); - if(local_user() && local_user() == $a->profile_uid) { + if((! $channel) && ($uid) && ($uid == $a->profile_uid)) { $channel = $a->get_channel(); + } + if($channel) { $channel_acl = array( 'allow_cid' => $channel['channel_allow_cid'], 'allow_gid' => $channel['channel_allow_gid'], @@ -88,7 +96,7 @@ function webpages_content(&$a) { 'nickname' => $a->profile['channel_address'], 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), 'bang' => (($group || $cid) ? '!' : ''), - 'acl' => ((local_user() && local_user() == $owner) ? populate_acl($channel_acl,false) : ''), + 'acl' => (($uid && $uid == $owner) ? populate_acl($channel_acl,false) : ''), 'visitor' => true, 'profile_uid' => intval($owner), 'mimetype' => $mimetype, From b5af6679857eeafcb360d7dec69acf11af034c1d Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 11 Nov 2014 19:29:30 -0800 Subject: [PATCH 082/176] slow progress on sys publishing, making sure all the data we need is in the places we need it but validate it anyway --- boot.php | 4 ++-- include/text.php | 2 +- include/widgets.php | 2 +- mod/webpages.php | 27 +++++++++++++++++++++------ 4 files changed, 25 insertions(+), 10 deletions(-) diff --git a/boot.php b/boot.php index 4b1c008cd..fb059f8b0 100755 --- a/boot.php +++ b/boot.php @@ -677,8 +677,8 @@ class App { public $css_sources = array(); public $js_sources = array(); public $theme_info = array(); - - public $nav_sel; + public $is_sys = false; + public $nav_sel; public $category; diff --git a/include/text.php b/include/text.php index ba1f9e5a3..686dee4a2 100644 --- a/include/text.php +++ b/include/text.php @@ -2024,7 +2024,7 @@ function design_tools() { $channel = get_app()->get_channel(); - if(array_key_exists('sys',$_REQUEST) && $_REQUEST['sys'] == 1 && is_site_admin()) { + if(get_app()->is_sys && is_site_admin()) { require_once('include/identity.php'); $channel = get_sys_channel(); } diff --git a/include/widgets.php b/include/widgets.php index dcad3eff6..cb5dc6846 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -585,7 +585,7 @@ function widget_design_tools($arr) { // otherwise local_user() is sufficient for permissions. if($a->profile['profile_uid']) - if($a->profile['profile_uid'] != local_user()) + if(($a->profile['profile_uid'] != local_user()) && (! $a->is_sys)) return ''; if(! local_user()) diff --git a/mod/webpages.php b/mod/webpages.php index e7aef5fb0..d80a9a86e 100644 --- a/mod/webpages.php +++ b/mod/webpages.php @@ -1,16 +1,33 @@ 1 && argv(1) === 'sys' && is_site_admin()) { + require_once('include/identity.php'); + $sys = get_sys_channel(); + if($sys && intval($sys['channel_id'])) { + $a->is_sys = true; + } + } if(argc() > 1) $which = argv(1); - else { + else + return; + + profile_load($a,$which,$profile); + +} + + +function webpages_content(&$a) { + + if(! $a->profile) { notice( t('Requested profile is not available.') . EOL ); $a->error = 404; return; } - $uid = 0; $owner = 0; $channel = null; @@ -19,7 +36,7 @@ function webpages_content(&$a) { $profile = 0; $channel = $a->get_channel(); - if($which === 'sys' && is_site_admin()) { + if($a->is_sys && is_site_admin()) { require_once('include/identity.php'); $sys = get_sys_channel(); if($sys && intval($sys['channel_id'])) { @@ -29,8 +46,6 @@ function webpages_content(&$a) { } } - profile_load($a,$which,$profile); - if(! $owner) { // Figure out who the page owner is. $r = q("select channel_id from channel where channel_address = '%s'", From 4b9ec6645b79f4da1ad5e7dd20a04ca6ca4a3e4a Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 11 Nov 2014 20:44:43 -0800 Subject: [PATCH 083/176] cleanup --- include/conversation.php | 8 +++- include/text.php | 3 ++ mod/webpages.php | 82 +++++++++++++++++++++------------------ view/tpl/design_tools.tpl | 2 +- 4 files changed, 55 insertions(+), 40 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index a531de9ba..c2258c20a 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1493,8 +1493,12 @@ function network_tabs() { function profile_tabs($a, $is_owner=False, $nickname=Null){ - //echo "
"; var_dump($a->user); killme();
-		
+
+	// Don't provide any profile tabs if we're running as the sys channel
+	
+	if($a->is_sys)
+		return;
+	
 	$channel = $a->get_channel();
 
 	if (is_null($nickname))
diff --git a/include/text.php b/include/text.php
index 686dee4a2..d816fdb0a 100644
--- a/include/text.php
+++ b/include/text.php
@@ -2023,10 +2023,12 @@ function json_decode_plus($s) {
 function design_tools() {
 
 	$channel  = get_app()->get_channel();
+	$sys = false;
 
 	if(get_app()->is_sys && is_site_admin()) {
 		require_once('include/identity.php');
 		$channel = get_sys_channel();
+		$sys = true;
 	}
 
 	$who = $channel['channel_address'];
@@ -2034,6 +2036,7 @@ function design_tools() {
 	return replace_macros(get_markup_template('design_tools.tpl'), array(
 		'$title' => t('Design'),
 		'$who' => $who,
+		'$sys' => $sys,
 		'$blocks' => t('Blocks'),
 		'$menus' => t('Menus'),
 		'$layout' => t('Layouts'),
diff --git a/mod/webpages.php b/mod/webpages.php
index d80a9a86e..aca7559f9 100644
--- a/mod/webpages.php
+++ b/mod/webpages.php
@@ -1,9 +1,12 @@
  1 && argv(1) === 'sys' && is_site_admin()) {
-		require_once('include/identity.php');
 		$sys = get_sys_channel();
 		if($sys && intval($sys['channel_id'])) {
 			$a->is_sys = true;
@@ -15,7 +18,7 @@ function webpages_init(&$a) {
 	else
 		return;
 
-	profile_load($a,$which,$profile);
+	profile_load($a,$which);
 
 }
 
@@ -28,16 +31,16 @@ function webpages_content(&$a) {
 		return;
 	}
 
+	$which = argv(1);
+
 	$uid = 0;
 	$owner = 0;
 	$channel = null;
 	$observer = $a->get_observer();
 
-	$profile = 0;
 	$channel = $a->get_channel();
 
 	if($a->is_sys && is_site_admin()) {
-		require_once('include/identity.php');
 		$sys = get_sys_channel();
 		if($sys && intval($sys['channel_id'])) {
 			$uid = $owner = intval($sys['channel_id']);
@@ -83,8 +86,6 @@ function webpages_content(&$a) {
 	// Nickname is set to the observers xchan, and profile_uid to the owner's.  
 	// This lets you post pages at other people's channels.
 
-	require_once ('include/conversation.php');
-	require_once('include/acl_selectors.php');
 
 
 	if((! $channel) && ($uid) && ($uid == $a->profile_uid)) {
@@ -101,21 +102,20 @@ function webpages_content(&$a) {
 	else
 		$channel_acl = array();
 
-	require_once('include/conversation.php');
+
 	$o = profile_tabs($a,true);
 
-
 	$x = array(
-		'webpage' => ITEM_WEBPAGE,
-		'is_owner' => true,
-		'nickname' => $a->profile['channel_address'],
-		'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
-		'bang' => (($group || $cid) ? '!' : ''),
-		'acl' => (($uid && $uid == $owner) ? populate_acl($channel_acl,false) : ''),
-		'visitor' => true,
+		'webpage'     => ITEM_WEBPAGE,
+		'is_owner'    => true,
+		'nickname'    => $a->profile['channel_address'],
+		'lockstate'   => (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
+		'bang'        => '',
+		'acl'         => (($uid && $uid == $owner) ? populate_acl($channel_acl,false) : ''),
+		'visitor'     => true,
 		'profile_uid' => intval($owner),
-		'mimetype' => $mimetype,
-		'layout' => $layout,
+		'mimetype'    => $mimetype,
+		'layout'      => $layout,
 	);
 	
 	if($_REQUEST['title'])
@@ -127,10 +127,12 @@ function webpages_content(&$a) {
 
 	$o .= status_editor($a,$x);
 
-	// Get a list of webpages.  We can't display all them because endless scroll makes that unusable, so just list titles and an edit link.
+	// Get a list of webpages.  We can't display all them because endless scroll makes that unusable, 
+	// so just list titles and an edit link.
 	//TODO - this should be replaced with pagelist_widget
 
-	$r = q("select * from item_id left join item on item_id.iid = item.id where item_id.uid = %d and service = 'WEBPAGE' order by item.created desc",
+	$r = q("select * from item_id left join item on item_id.iid = item.id 
+		where item_id.uid = %d and service = 'WEBPAGE' order by item.created desc",
 		intval($owner)
 	);
 
@@ -140,30 +142,36 @@ function webpages_content(&$a) {
 		$pages = array();
 		foreach($r as $rr) {
 			unobscure($rr);
-			$pages[$rr['iid']][] = array('url' => $rr['iid'],'pagetitle' => $rr['sid'],'title' => $rr['title'],'created' => datetime_convert('UTC',date_default_timezone_get(),$rr['created']),'edited' => datetime_convert('UTC',date_default_timezone_get(),$rr['edited']));
+			$pages[$rr['iid']][] = array(
+				'url'       => $rr['iid'],
+				'pagetitle' => $rr['sid'],
+				'title'     => $rr['title'],
+				'created'   => datetime_convert('UTC',date_default_timezone_get(),$rr['created']),
+				'edited'    => datetime_convert('UTC',date_default_timezone_get(),$rr['edited'])
+			);
 		}
 	}
 
 
-//Build the base URL for edit links
-		$url = z_root() . "/editwebpage/" . $which;
-// This isn't pretty, but it works.  Until I figure out what to do with the UI, it's Good Enough(TM).
-	return $o . replace_macros(get_markup_template("webpagelist.tpl"), array(
-    		'$listtitle' => t('Webpages'),
-		'$baseurl' => $url,
-		'$edit' => t('Edit'),
-		'$pages' => $pages,
-		'$channel' => $which,
-		'$view' => t('View'),
-		'$preview' => t('Preview'),
-		'$actions_txt' => t('Actions'),
+	//Build the base URL for edit links
+	$url = z_root() . '/editwebpage/' . $which;
+	
+	$o .= replace_macros(get_markup_template('webpagelist.tpl'), array(
+    	'$listtitle'    => t('Webpages'),
+		'$baseurl'      => $url,
+		'$edit'         => t('Edit'),
+		'$pages'        => $pages,
+		'$channel'      => $which,
+		'$view'         => t('View'),
+		'$preview'      => t('Preview'),
+		'$actions_txt'  => t('Actions'),
 		'$pagelink_txt' => t('Page Link'),
-		'$title_txt' => t('Title'),
-		'$created_txt' => t('Created'),
-		'$edited_txt' => t('Edited')
+		'$title_txt'    => t('Title'),
+		'$created_txt'  => t('Created'),
+		'$edited_txt'   => t('Edited')
 
-));
+	));
 
-	$o .= '
'; + return $o; } diff --git a/view/tpl/design_tools.tpl b/view/tpl/design_tools.tpl index 80a538231..53d90be74 100644 --- a/view/tpl/design_tools.tpl +++ b/view/tpl/design_tools.tpl @@ -2,7 +2,7 @@

{{$title}}

From 9be4fcce551f32b19af0ba8cbbc71c6e3ef66632 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 11 Nov 2014 22:55:24 -0800 Subject: [PATCH 084/176] uid not set in webpages.php, start on editwebpage.php --- mod/editwebpage.php | 108 +++++++++++++++++++++++++++++--------------- mod/webpages.php | 2 +- 2 files changed, 72 insertions(+), 38 deletions(-) diff --git a/mod/editwebpage.php b/mod/editwebpage.php index 41b5bb3e7..7b5f9f602 100644 --- a/mod/editwebpage.php +++ b/mod/editwebpage.php @@ -1,26 +1,74 @@ 1 && argv(1) === 'sys' && is_site_admin()) { + $sys = get_sys_channel(); + if($sys && intval($sys['channel_id'])) { + $a->is_sys = true; + } + } + + if(argc() > 1) + $which = argv(1); + else + return; + + profile_load($a,$which); + +} -require_once('acl_selectors.php'); function editwebpage_content(&$a) { - // We first need to figure out who owns the webpage, grab it from an argument + if(! $a->profile) { + notice( t('Requested profile is not available.') . EOL ); + $a->error = 404; + return; + } $which = argv(1); - // $a->get_channel() and stuff don't work here, so we've got to find the owner for ourselves. - - $r = q("select channel_id from channel where channel_address = '%s'", - dbesc($which) - ); - if($r) { - $owner = intval($r[0]['channel_id']); - //logger('owner: ' . print_r($owner,true)); + $uid = local_user(); + $owner = 0; + $channel = null; + $observer = $a->get_observer(); + + $channel = $a->get_channel(); + + if($a->is_sys && is_site_admin()) { + $sys = get_sys_channel(); + if($sys && intval($sys['channel_id'])) { + $uid = $owner = intval($sys['channel_id']); + $channel = $sys; + $observer = $sys; + } } - $is_owner = ((local_user() && local_user() == $owner) ? true : false); + if(! $owner) { + // Figure out who the page owner is. + $r = q("select channel_id from channel where channel_address = '%s'", + dbesc($which) + ); + if($r) { + $owner = intval($r[0]['channel_id']); + } + } + + $ob_hash = (($observer) ? $observer['xchan_hash'] : ''); + + $perms = get_all_perms($owner,$ob_hash); + + if(! $perms['write_pages']) { + notice( t('Permission denied.') . EOL); + return; + } + + + $is_owner = (($uid && $uid == $owner) ? true : false); $o = ''; @@ -33,9 +81,6 @@ function editwebpage_content(&$a) { return; } - // Now we've got a post and an owner, let's find out if we're allowed to edit it - - $observer = $a->get_observer(); $ob_hash = (($observer) ? $observer['xchan_hash'] : ''); $perms = get_all_perms($owner,$ob_hash); @@ -45,14 +90,13 @@ function editwebpage_content(&$a) { return; } + // We've already figured out which item we want and whose copy we need, + // so we don't need anything fancy here - - // We've already figured out which item we want and whose copy we need, so we don't need anything fancy here $itm = q("SELECT * FROM `item` WHERE `id` = %d and uid = %s LIMIT 1", intval($post_id), intval($owner) - ); - + ); if($itm[0]['item_flags'] & ITEM_OBSCURED) { $key = get_config('system','prvkey'); @@ -63,23 +107,17 @@ function editwebpage_content(&$a) { } $item_id = q("select * from item_id where service = 'WEBPAGE' and iid = %d limit 1", - $itm[0]['id'] + intval($itm[0]['id']) ); if($item_id) $page_title = $item_id[0]['sid']; - - - $plaintext = true; -// if(feature_enabled($itm[0]['uid'],'richtext')) -// $plaintext = false; - $mimetype = $itm[0]['mimetype']; if($mimetype === 'application/x-php') { - if((! local_user()) || (local_user() != $itm[0]['uid'])) { + if((! $uid) || ($uid != $itm[0]['uid'])) { notice( t('Permission denied.') . EOL); return; } @@ -101,7 +139,6 @@ function editwebpage_content(&$a) { else $layoutselect = layout_select($itm[0]['uid'],$itm[0]['layout_mid']); - $o .= replace_macros(get_markup_template('edpost_head.tpl'), array( '$title' => t('Edit Webpage') )); @@ -112,7 +149,7 @@ function editwebpage_content(&$a) { '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), '$ispublic' => ' ', // t('Visible to everybody'), '$geotag' => $geotag, - '$nickname' => $a->user['nickname'], + '$nickname' => $channel['channel_address'], '$confirmdelete' => t('Delete webpage?') )); @@ -124,12 +161,9 @@ function editwebpage_content(&$a) { call_hooks('jot_tool', $jotplugins); call_hooks('jot_networks', $jotnets); - - $channel = $a->get_channel(); - - //$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins)); -//FIXME A return path with $_SESSION doesn't always work for observer - it may WSoD instead of loading a sensible page. So, send folk to the webpage list. + // FIXME A return path with $_SESSION doesn't always work for observer - it may WSoD + // instead of loading a sensible page. So, send folk to the webpage list. $rp = 'webpages/' . $which; @@ -171,16 +205,16 @@ function editwebpage_content(&$a) { 'lockstate' => (((strlen($itm[0]['allow_cid'])) || (strlen($itm[0]['allow_gid'])) || (strlen($itm[0]['deny_cid'])) || (strlen($itm[0]['deny_gid']))) ? 'lock' : 'unlock'), '$bang' => '', '$profile_uid' => (intval($owner)), - '$preview' => ((feature_enabled(local_user(),'preview')) ? t('Preview') : ''), + '$preview' => ((feature_enabled($uid,'preview')) ? t('Preview') : ''), '$jotplugins' => $jotplugins, - '$sourceapp' => t($a->sourcename), + '$sourceapp' => $a->sourcename, '$defexpire' => '', '$feature_expire' => false, '$expires' => t('Set expiration date'), )); - $ob = get_observer_hash(); + $ob = (($observer) ? $observer['xchan_hash'] : ''); if(($itm[0]['author_xchan'] === $ob) || ($itm[0]['owner_xchan'] === $ob)) $o .= '

' . t('Delete Webpage') . '
'; diff --git a/mod/webpages.php b/mod/webpages.php index aca7559f9..baddebec8 100644 --- a/mod/webpages.php +++ b/mod/webpages.php @@ -33,7 +33,7 @@ function webpages_content(&$a) { $which = argv(1); - $uid = 0; + $uid = local_user(); $owner = 0; $channel = null; $observer = $a->get_observer(); From ada2e43ea27feab8be956c01bf3ef13c8ce49049 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 12 Nov 2014 00:48:09 -0800 Subject: [PATCH 085/176] extend sys support to layouts --- mod/editlayout.php | 221 +++++++++++++++++++++++++------------------- mod/editwebpage.php | 4 +- mod/layouts.php | 119 ++++++++++++++++-------- version.inc | 2 +- 4 files changed, 213 insertions(+), 133 deletions(-) diff --git a/mod/editlayout.php b/mod/editlayout.php index 89cae2b0c..27e6ef410 100644 --- a/mod/editlayout.php +++ b/mod/editlayout.php @@ -1,34 +1,79 @@ 1 && argv(1) === 'sys' && is_site_admin()) { + $sys = get_sys_channel(); + if($sys && intval($sys['channel_id'])) { + $a->is_sys = true; + } + } + + if(argc() > 1) + $which = argv(1); + else + return; + + profile_load($a,$which); + +} function editlayout_content(&$a) { -// We first need to figure out who owns the webpage, grab it from an argument - $which = argv(1); -// $a->get_channel() and stuff don't work here, so we've got to find the owner for ourselves. - $r = q("select channel_id from channel where channel_address = '%s'", - dbesc($which) + if(! $a->profile) { + notice( t('Requested profile is not available.') . EOL ); + $a->error = 404; + return; + } + + $which = argv(1); + + $uid = local_user(); + $owner = 0; + $channel = null; + $observer = $a->get_observer(); + + $channel = $a->get_channel(); + + if($a->is_sys && is_site_admin()) { + $sys = get_sys_channel(); + if($sys && intval($sys['channel_id'])) { + $uid = $owner = intval($sys['channel_id']); + $channel = $sys; + $observer = $sys; + } + } + + if(! $owner) { + // Figure out who the page owner is. + $r = q("select channel_id from channel where channel_address = '%s'", + dbesc($which) ); - if($r) { - $owner = intval($r[0]['channel_id']); - //logger('owner: ' . print_r($owner,true)); - } + if($r) { + $owner = intval($r[0]['channel_id']); + } + } + + $ob_hash = (($observer) ? $observer['xchan_hash'] : ''); + + $perms = get_all_perms($owner,$ob_hash); + + if(! $perms['write_pages']) { + notice( t('Permission denied.') . EOL); + return; + } - - - if((local_user()) && (argc() > 2) && (argv(2) === 'view')) { - $which = $channel['channel_address']; - } - + $is_owner = (($uid && $uid == $owner) ? true : false); $o = ''; -// Figure out which post we're editing + // Figure out which post we're editing $post_id = ((argc() > 2) ? intval(argv(2)) : 0); @@ -37,48 +82,41 @@ function editlayout_content(&$a) { return; } -// Now we've got a post and an owner, let's find out if we're allowed to edit it + // Now we've got a post and an owner, let's find out if we're allowed to edit it - $observer = $a->get_observer(); - $ob_hash = (($observer) ? $observer['xchan_hash'] : ''); + $ob_hash = (($observer) ? $observer['xchan_hash'] : ''); - $perms = get_all_perms($owner,$ob_hash); + $perms = get_all_perms($owner,$ob_hash); - if(! $perms['write_pages']) { - notice( t('Permission denied.') . EOL); - return; - } + if(! $perms['write_pages']) { + notice( t('Permission denied.') . EOL); + return; + } - -// We've already figured out which item we want and whose copy we need, so we don't need anything fancy here - $itm = q("SELECT * FROM `item` WHERE `id` = %d and uid = %s LIMIT 1", - intval($post_id), - intval($owner) - ); + $itm = q("SELECT * FROM `item` WHERE `id` = %d and uid = %s LIMIT 1", + intval($post_id), + intval($owner) + ); $item_id = q("select * from item_id where service = 'PDL' and iid = %d limit 1", - $itm[0]['id'] + intval($itm[0]['id']) ); if($item_id) $layout_title = $item_id[0]['sid']; $plaintext = true; -// You may or may not be a local user. This won't work, -// if(feature_enabled(local_user(),'richtext')) -// $plaintext = false; $o .= replace_macros(get_markup_template('edpost_head.tpl'), array( '$title' => t('Edit Layout') )); - $a->page['htmlhead'] .= replace_macros(get_markup_template('jot-header.tpl'), array( - '$baseurl' => $a->get_baseurl(), - '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), - '$ispublic' => ' ', // t('Visible to everybody'), - '$geotag' => $geotag, - '$nickname' => $a->user['nickname'], + '$baseurl' => $a->get_baseurl(), + '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), + '$ispublic' => ' ', // t('Visible to everybody'), + '$geotag' => $geotag, + '$nickname' => $channel['channel_address'], '$confirmdelete' => t('Delete layout?') )); @@ -91,71 +129,68 @@ function editlayout_content(&$a) { call_hooks('jot_tool', $jotplugins); call_hooks('jot_networks', $jotnets); - $channel = $a->get_channel(); - - //$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins)); -//FIXME A return path with $_SESSION doesn't always work for observer - it may WSoD instead of loading a sensible page. So, send folk to the webpage list. + // FIXME A return path with $_SESSION doesn't always work for observer - it may WSoD + // instead of loading a sensible page. So, send folk to the webpage list. $rp = '/layouts/' . $which; $o .= replace_macros($tpl,array( - '$return_path' => $rp, - '$action' => 'item', - '$webpage' => ITEM_PDL, - '$share' => t('Edit'), - '$upload' => t('Upload photo'), - '$attach' => t('Attach file'), - '$weblink' => t('Insert web link'), - '$youtube' => t('Insert YouTube video'), - '$video' => t('Insert Vorbis [.ogg] video'), - '$audio' => t('Insert Vorbis [.ogg] audio'), - '$setloc' => t('Set your location'), - '$noloc' => t('Clear browser location'), - '$wait' => t('Please wait'), - '$permset' => t('Permission settings'), - '$ptyp' => $itm[0]['type'], - '$content' => undo_post_tagging($itm[0]['body']), - '$post_id' => $post_id, - '$baseurl' => $a->get_baseurl(), - '$defloc' => $channel['channel_location'], - '$visitor' => false, - '$public' => t('Public post'), - '$jotnets' => $jotnets, - '$title' => htmlspecialchars($itm[0]['title'],ENT_COMPAT,'UTF-8'), - '$placeholdertitle' => t('Set title'), - '$pagetitle' => $layout_title, - '$category' => '', + '$return_path' => $rp, + '$action' => 'item', + '$webpage' => ITEM_PDL, + '$share' => t('Edit'), + '$upload' => t('Upload photo'), + '$attach' => t('Attach file'), + '$weblink' => t('Insert web link'), + '$youtube' => t('Insert YouTube video'), + '$video' => t('Insert Vorbis [.ogg] video'), + '$audio' => t('Insert Vorbis [.ogg] audio'), + '$setloc' => t('Set your location'), + '$noloc' => t('Clear browser location'), + '$wait' => t('Please wait'), + '$permset' => t('Permission settings'), + '$ptyp' => $itm[0]['type'], + '$content' => undo_post_tagging($itm[0]['body']), + '$post_id' => $post_id, + '$baseurl' => $a->get_baseurl(), + '$defloc' => $channel['channel_location'], + '$visitor' => false, + '$public' => t('Public post'), + '$jotnets' => $jotnets, + '$title' => htmlspecialchars($itm[0]['title'],ENT_COMPAT,'UTF-8'), + '$placeholdertitle' => t('Set title'), + '$pagetitle' => $layout_title, + '$category' => '', '$placeholdercategory' => t('Categories (comma-separated list)'), - '$emtitle' => t('Example: bob@example.com, mary@example.com'), - '$lockstate' => $lockstate, - '$acl' => '', - '$bang' => '', - '$profile_uid' => (intval($owner)), - '$preview' => ((feature_enabled(local_user(),'preview')) ? t('Preview') : ''), - '$jotplugins' => $jotplugins, - '$sourceapp' => t($a->sourcename), - '$defexpire' => '', - '$feature_expire' => false, - '$expires' => t('Set expiration date'), + '$emtitle' => t('Example: bob@example.com, mary@example.com'), + '$lockstate' => $lockstate, + '$acl' => '', + '$bang' => '', + '$profile_uid' => (intval($owner)), + '$preview' => ((feature_enabled($uid,'preview')) ? t('Preview') : ''), + '$jotplugins' => $jotplugins, + '$sourceapp' => t($a->sourcename), + '$defexpire' => '', + '$feature_expire' => false, + '$expires' => t('Set expiration date'), )); - $ob = get_observer_hash(); - if(($itm[0]['author_xchan'] === $ob) || ($itm[0]['owner_xchan'] === $ob)) + if(($itm[0]['author_xchan'] === $ob_hash) || ($itm[0]['owner_xchan'] === $ob_hash)) $o .= '

' . t('Delete Layout') . '
'; $x = array( - 'type' => 'layout', - 'title' => $itm[0]['title'], - 'body' => $itm[0]['body'], - 'term' => $itm[0]['term'], - 'created' => $itm[0]['created'], - 'edited' => $itm[0]['edited'], - 'mimetype' => $itm[0]['mimetype'], + 'type' => 'layout', + 'title' => $itm[0]['title'], + 'body' => $itm[0]['body'], + 'term' => $itm[0]['term'], + 'created' => $itm[0]['created'], + 'edited' => $itm[0]['edited'], + 'mimetype' => $itm[0]['mimetype'], 'pagetitle' => $page_title, - 'mid' => $itm[0]['mid'] + 'mid' => $itm[0]['mid'] ); $o .= EOL . EOL . t('Share') . EOL . '' . EOL . EOL; diff --git a/mod/editwebpage.php b/mod/editwebpage.php index 7b5f9f602..8181415b8 100644 --- a/mod/editwebpage.php +++ b/mod/editwebpage.php @@ -214,9 +214,7 @@ function editwebpage_content(&$a) { )); - $ob = (($observer) ? $observer['xchan_hash'] : ''); - - if(($itm[0]['author_xchan'] === $ob) || ($itm[0]['owner_xchan'] === $ob)) + if(($itm[0]['author_xchan'] === $ob_hash) || ($itm[0]['owner_xchan'] === $ob_hash)) $o .= '

' . t('Delete Webpage') . '
'; diff --git a/mod/layouts.php b/mod/layouts.php index 2d14212cf..aaf5db0ef 100644 --- a/mod/layouts.php +++ b/mod/layouts.php @@ -1,36 +1,82 @@ 1 && argv(1) === 'sys' && is_site_admin()) { + $sys = get_sys_channel(); + if($sys && intval($sys['channel_id'])) { + $a->is_sys = true; + } + } if(argc() > 1) $which = argv(1); - else { + else + return; + + profile_load($a,$which); + +} + + +function layouts_content(&$a) { + + if(! $a->profile) { notice( t('Requested profile is not available.') . EOL ); $a->error = 404; return; } - profile_load($a,$which,0); + $which = argv(1); + $uid = local_user(); + $owner = 0; + $channel = null; + $observer = $a->get_observer(); - // Figure out who the page owner is. - $r = q("select channel_id from channel where channel_address = '%s'", - dbesc($which) - ); - if($r) { - $owner = intval($r[0]['channel_id']); + $channel = $a->get_channel(); + + if($a->is_sys && is_site_admin()) { + $sys = get_sys_channel(); + if($sys && intval($sys['channel_id'])) { + $uid = $owner = intval($sys['channel_id']); + $channel = $sys; + $observer = $sys; + } + } + + if(! $owner) { + // Figure out who the page owner is. + $r = q("select channel_id from channel where channel_address = '%s'", + dbesc($which) + ); + if($r) { + $owner = intval($r[0]['channel_id']); + } + } + + $ob_hash = (($observer) ? $observer['xchan_hash'] : ''); + + $perms = get_all_perms($owner,$ob_hash); + + if(! $perms['write_pages']) { + notice( t('Permission denied.') . EOL); + return; } // Block design features from visitors - if((! local_user()) || (local_user() != $owner)) { + if((! $uid) || ($uid != $owner)) { notice( t('Permission denied.') . EOL); return; } // Get the observer, check their permissions - $observer = $a->get_observer(); $ob_hash = (($observer) ? $observer['xchan_hash'] : ''); $perms = get_all_perms($owner,$ob_hash); @@ -41,7 +87,9 @@ function layouts_content(&$a) { } if((argc() > 3) && (argv(2) === 'share') && (argv(3))) { - $r = q("select sid, service, mimetype, title, body from item_id left join item on item.id = item_id.iid where item_id.uid = %d and item.mid = '%s' and service = 'PDL' order by sid asc", + $r = q("select sid, service, mimetype, title, body from item_id + left join item on item.id = item_id.iid + where item_id.uid = %d and item.mid = '%s' and service = 'PDL' order by sid asc", intval($owner), dbesc(argv(3)) ); @@ -63,7 +111,6 @@ function layouts_content(&$a) { 'id' => 'layout-help-tab', )); - $o .= replace_macros(get_markup_template('common_tabs.tpl'),array('$tabs' => $tabs)); @@ -71,18 +118,16 @@ function layouts_content(&$a) { // Nickname is set to the observers xchan, and profile_uid to the owners. // This lets you post pages at other people's channels. - require_once ('include/conversation.php'); - $x = array( - 'webpage' => ITEM_PDL, - 'is_owner' => true, - 'nickname' => $a->profile['channel_address'], - 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), - 'bang' => (($group || $cid) ? '!' : ''), - 'showacl' => false, - 'visitor' => false, - 'nopreview' => 1, - 'ptlabel' => t('Layout Name'), + 'webpage' => ITEM_PDL, + 'is_owner' => true, + 'nickname' => $a->profile['channel_address'], + 'lockstate' => (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), + 'bang' => '', + 'showacl' => false, + 'visitor' => false, + 'nopreview' => 1, + 'ptlabel' => t('Layout Name'), 'profile_uid' => intval($owner), ); @@ -96,10 +141,8 @@ function layouts_content(&$a) { $o .= status_editor($a,$x); - // Get a list of blocks. We can't display all them because endless scroll makes that unusable, so just list titles and an edit link. - // TODO - this should be replaced with pagelist_widget - - $r = q("select iid, sid, mid from item_id left join item on item.id = item_id.iid where item_id.uid = %d and service = 'PDL' order by sid asc", + $r = q("select iid, sid, mid from item_id left join item on item.id = item_id.iid + where item_id.uid = %d and service = 'PDL' order by sid asc", intval($owner) ); @@ -108,24 +151,28 @@ function layouts_content(&$a) { if($r) { $pages = array(); foreach($r as $rr) { - $pages[$rr['iid']][] = array('url' => $rr['iid'],'title' => $rr['sid'], 'mid' => $rr['mid']); + $pages[$rr['iid']][] = array( + 'url' => $rr['iid'], + 'title' => $rr['sid'], + 'mid' => $rr['mid'] + ); } } - //Build the base URL for edit links - $url = z_root() . "/editlayout/" . $which; + $url = z_root() . '/editlayout/' . $which; - return $o . replace_macros(get_markup_template("layoutlist.tpl"), array( + $o .= replace_macros(get_markup_template('layoutlist.tpl'), array( '$baseurl' => $url, - '$edit' => t('Edit'), - '$share' => t('Share'), - '$pages' => $pages, + '$edit' => t('Edit'), + '$share' => t('Share'), + '$pages' => $pages, '$channel' => $which, - '$view' => t('View'), + '$view' => t('View'), '$preview' => '1', )); + return $o; } diff --git a/version.inc b/version.inc index 6c86bf1e2..519095cc9 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-11.856 +2014-11-12.857 From 1ed144b83c3cefb685dfff37fd7d415bf5a2ffdb Mon Sep 17 00:00:00 2001 From: marijus Date: Wed, 12 Nov 2014 10:27:13 +0100 Subject: [PATCH 086/176] make search and advanced search use the same input form --- include/contact_widgets.php | 3 +-- mod/directory.php | 3 ++- view/tpl/peoplefind.tpl | 22 ++++++---------------- 3 files changed, 9 insertions(+), 19 deletions(-) diff --git a/include/contact_widgets.php b/include/contact_widgets.php index 28a9fcfd3..ee9394e95 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -29,8 +29,7 @@ function findpeople_widget() { '$random' => t('Random Profile'), '$inv' => t('Invite Friends'), '$advanced_search' => $advanced_search, - '$advanced_hint' => t('Exammple: name=fred and country=iceland'), - '$find_advanced' => t('Advanced Find'), + '$advanced_hint' => "\r\n" . t('Advanced example: name=fred and country=iceland'), '$loggedin' => local_user() )); diff --git a/mod/directory.php b/mod/directory.php index 256f7ca9a..d4a4c383a 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -42,7 +42,8 @@ function directory_content(&$a) { else $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : ''); - $advanced = ((x($_REQUEST,'query')) ? notags(trim($_REQUEST['query'])) : ''); + if(strpos($search,'=') && local_user() && get_pconfig(local_user(),'feature','expert')) + $advanced = $search; $keywords = (($_GET['keywords']) ? $_GET['keywords'] : ''); diff --git a/view/tpl/peoplefind.tpl b/view/tpl/peoplefind.tpl index 6ec37539b..2f23948c8 100755 --- a/view/tpl/peoplefind.tpl +++ b/view/tpl/peoplefind.tpl @@ -1,25 +1,15 @@

{{$findpeople}}

-
-
- -
- -
-
-
- {{if $advanced_search}} -
-
- +
+
+
- + +
-
- {{/if}} - +
From 109cb936632c693d3f24afb9e2ce533797ad1a7f Mon Sep 17 00:00:00 2001 From: Jeroen Date: Thu, 13 Nov 2014 16:27:33 +0000 Subject: [PATCH 100/176] update nl --- view/nl/messages.po | 4884 ++++++++++++++++++++++--------------------- view/nl/strings.php | 1061 +++++----- 2 files changed, 3038 insertions(+), 2907 deletions(-) diff --git a/view/nl/messages.po b/view/nl/messages.po index 550b18e50..49ac858c9 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-10-24 00:04-0700\n" -"PO-Revision-Date: 2014-10-27 13:39+0000\n" +"POT-Creation-Date: 2014-11-07 00:04-0800\n" +"PO-Revision-Date: 2014-11-13 16:16+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" @@ -25,149 +25,17 @@ msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:51 -#: ../../mod/photos.php:91 ../../mod/photos.php:657 ../../mod/photos.php:679 +#: ../../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" msgstr "Profielfoto's" -#: ../../include/network.php:590 -msgid "view full size" -msgstr "volledige grootte tonen" - -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Ingesloten inhoud" - -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Insluiten uitgeschakeld" - -#: ../../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 "Toegang geweigerd" - -#: ../../include/items.php:964 ../../include/items.php:1009 -msgid "(Unknown)" -msgstr "(Onbekend)" - -#: ../../include/items.php:1165 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." - -#: ../../include/items.php:1167 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." - -#: ../../include/items.php:1169 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." - -#: ../../include/items.php:1171 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." - -#: ../../include/items.php:1173 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." - -#: ../../include/items.php:1175 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." - -#: ../../include/items.php:1177 -msgid "Visible to approved connections." -msgstr "Voor alle goedgekeurde connecties zichtbaar." - -#: ../../include/items.php:1179 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." - -#: ../../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 "Item niet gevonden." - -#: ../../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 "Toegang geweigerd" - -#: ../../include/items.php:4376 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Collectie niet gevonden." - -#: ../../include/items.php:4391 -msgid "Collection is empty." -msgstr "Collectie is leeg" - -#: ../../include/items.php:4398 -#, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" - -#: ../../include/items.php:4409 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" - -#: ../../include/items.php:4412 -msgid "Connection not found." -msgstr "Connectie niet gevonden." - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "maakte een nieuw bericht aan" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "gaf een reactie op een bericht van %s" - #: ../../include/apps.php:126 msgid "Site Admin" msgstr "Hubbeheerder" -#: ../../include/apps.php:127 ../../include/conversation.php:1570 +#: ../../include/apps.php:127 ../../include/conversation.php:1572 #: ../../include/nav.php:117 msgid "Bookmarks" msgstr "Bladwijzers" @@ -176,7 +44,7 @@ msgstr "Bladwijzers" msgid "Address Book" msgstr "Connecties" -#: ../../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 "Inloggen" @@ -189,18 +57,18 @@ msgstr "Kanaalbeheer" msgid "Matrix" msgstr "Matrix" -#: ../../include/apps.php:132 ../../include/widgets.php:521 +#: ../../include/apps.php:132 ../../include/widgets.php:548 #: ../../include/nav.php:218 ../../mod/admin.php:953 ../../mod/admin.php:1158 msgid "Settings" msgstr "Instellingen" #: ../../include/apps.php:133 ../../include/conversation.php:1546 -#: ../../include/nav.php:106 ../../include/RedDAV/RedBrowser.php:241 +#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Bestanden" -#: ../../include/apps.php:134 ../../include/conversation.php:1581 +#: ../../include/apps.php:134 ../../include/conversation.php:1583 #: ../../include/nav.php:121 ../../mod/webpages.php:129 msgid "Webpages" msgstr "Webpagina's" @@ -209,8 +77,8 @@ msgstr "Webpagina's" msgid "Channel Home" msgstr "Tijdlijn kanaal" -#: ../../include/apps.php:136 ../../include/identity.php:1113 -#: ../../include/identity.php:1231 ../../mod/profperm.php:112 +#: ../../include/apps.php:136 ../../include/identity.php:1120 +#: ../../include/identity.php:1238 ../../mod/profperm.php:112 msgid "Profile" msgstr "Profiel" @@ -229,8 +97,8 @@ msgstr "Agenda" msgid "Directory" msgstr "Gids" -#: ../../include/apps.php:140 ../../include/nav.php:168 ../../mod/help.php:60 -#: ../../mod/help.php:65 +#: ../../include/apps.php:140 ../../include/nav.php:168 ../../mod/help.php:58 +#: ../../mod/help.php:63 msgid "Help" msgstr "Hulp" @@ -288,8 +156,8 @@ msgstr "Bericht" msgid "Profile Photo" msgstr "Profielfoto" -#: ../../include/apps.php:242 ../../mod/settings.php:79 -#: ../../mod/settings.php:545 +#: ../../include/apps.php:242 ../../mod/settings.php:81 +#: ../../mod/settings.php:575 msgid "Update" msgstr "Bijwerken" @@ -304,29 +172,70 @@ msgstr "Aanschaffen" #: ../../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/settings.php:611 ../../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 +#: ../../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 "Bewerken" #: ../../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/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 "Verwijderen" #: ../../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 +#: ../../mod/photos.php:711 ../../mod/photos.php:1128 +#: ../../mod/connedit.php:512 msgid "Unknown" msgstr "Onbekend" +#: ../../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/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: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 +#: ../../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: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:390 +msgid "Permission denied." +msgstr "Toegang geweigerd" + #: ../../include/attach.php:221 ../../include/attach.php:275 msgid "Item was not found." msgstr "Item niet gevonden" @@ -385,594 +294,9 @@ msgstr "directory aanmaken (mkdir) mislukt." msgid "database storage failed." msgstr "opslag in database mislukt." -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" - -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 -#: ../../mod/layouts.php:125 ../../mod/webpages.php:134 -msgid "View" -msgstr "Weergeven" - -#: ../../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 "Voorvertoning" - -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 -msgid "Actions" -msgstr "Acties" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 -msgid "Page Link" -msgstr "Paginalink" - -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 -msgid "Title" -msgstr "Titel" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 -msgid "Created" -msgstr "Aangemaakt" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 -msgid "Edited" -msgstr "Bewerkt" - -#: ../../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/widgets.php:29 ../../include/contact_widgets.php:93 -msgid "Categories" -msgstr "Categorieën" - -#: ../../include/widgets.php:86 ../../include/nav.php:171 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Apps" - -#: ../../include/widgets.php:87 -msgid "System" -msgstr "Systeem" - -#: ../../include/widgets.php:89 ../../include/conversation.php:1449 -msgid "Personal" -msgstr "Persoonlijk" - -#: ../../include/widgets.php:90 -msgid "Create Personal App" -msgstr "Persoonlijke app maken" - -#: ../../include/widgets.php:91 -msgid "Edit Personal App" -msgstr "Persoonlijke app bewerken" - -#: ../../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 "Verbinden" - -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" - -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Meer..." - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Vul het adres van het nieuwe kanaal in" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" - -#: ../../include/widgets.php:191 -msgid "Notes" -msgstr "Aantekeningen" - -#: ../../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 "Opslaan" - -#: ../../include/widgets.php:263 -msgid "Remove term" -msgstr "Verwijder zoekterm" - -#: ../../include/widgets.php:272 ../../include/features.php:58 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: ../../include/widgets.php:273 ../../include/group.php:302 -msgid "add" -msgstr "toevoegen" - -#: ../../include/widgets.php:303 ../../include/contact_widgets.php:58 -#: ../../include/features.php:72 -msgid "Saved Folders" -msgstr "Bewaarde mappen" - -#: ../../include/widgets.php:306 ../../include/contact_widgets.php:61 -#: ../../include/contact_widgets.php:96 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:342 -msgid "Archives" -msgstr "Archieven" - -#: ../../include/widgets.php:404 -msgid "Refresh" -msgstr "Vernieuwen" - -#: ../../include/widgets.php:405 ../../mod/connedit.php:492 -msgid "Me" -msgstr "Ik" - -#: ../../include/widgets.php:406 ../../mod/connedit.php:494 -msgid "Best Friends" -msgstr "Goede vrienden" - -#: ../../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 "Vrienden" - -#: ../../include/widgets.php:408 -msgid "Co-workers" -msgstr "Collega's" - -#: ../../include/widgets.php:409 ../../mod/connedit.php:496 -msgid "Former Friends" -msgstr "Oude vrienden" - -#: ../../include/widgets.php:410 ../../mod/connedit.php:497 -msgid "Acquaintances" -msgstr "Kennissen" - -#: ../../include/widgets.php:411 -msgid "Everybody" -msgstr "Iedereen" - -#: ../../include/widgets.php:443 -msgid "Account settings" -msgstr "Account" - -#: ../../include/widgets.php:449 -msgid "Channel settings" -msgstr "Kanaal" - -#: ../../include/widgets.php:455 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../include/widgets.php:461 -msgid "Feature settings" -msgstr "Plug-ins" - -#: ../../include/widgets.php:467 -msgid "Display settings" -msgstr "Weergave" - -#: ../../include/widgets.php:473 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../include/widgets.php:479 -msgid "Export channel" -msgstr "Kanaal exporteren" - -#: ../../include/widgets.php:485 -msgid "Export content" -msgstr "Inhoud exporteren" - -#: ../../include/widgets.php:491 -msgid "Automatic Permissions (Advanced)" -msgstr "Automatische permissies (geavanceerd)" - -#: ../../include/widgets.php:501 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" - -#: ../../include/widgets.php:510 ../../include/features.php:49 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanaalbronnen" - -#: ../../include/widgets.php:535 ../../mod/mail.php:124 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Berichten" - -#: ../../include/widgets.php:540 -msgid "Check Mail" -msgstr "Controleer op nieuwe berichten" - -#: ../../include/widgets.php:545 ../../include/nav.php:209 -msgid "New Message" -msgstr "Nieuw bericht" - -#: ../../include/widgets.php:621 -msgid "Chat Rooms" -msgstr "Chatkanalen" - -#: ../../include/widgets.php:639 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" - -#: ../../include/widgets.php:657 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" - -#: ../../include/zot.php:655 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" - -#: ../../include/zot.php:671 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " - -#: ../../include/zot.php:1763 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" - -#: ../../include/photos.php:104 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" - -#: ../../include/photos.php:111 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" - -#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" - -#: ../../include/photos.php:212 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" - -#: ../../include/photos.php:340 ../../include/conversation.php:1540 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../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/acl_selectors.php:241 -msgid "Show" -msgstr "Tonen" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Niet tonen" - -#: ../../include/acl_selectors.php:248 ../../mod/photos.php:604 -#: ../../mod/photos.php:968 ../../mod/events.php:585 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:137 -msgid "Permissions" -msgstr "Permissies" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 -msgid "Close" -msgstr "Sluiten" - -#: ../../include/activities.php:39 -msgid " and " -msgstr " en " - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "openbaar profiel" - -#: ../../include/activities.php:52 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../include/activities.php:53 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." - -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" - -#: ../../include/identity.php:31 ../../mod/item.php:1344 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" - -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Ontbrekende naam" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Naam te lang" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Geen account-identificator" - -#: ../../include/identity.php:181 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" - -#: ../../include/identity.php:195 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." - -#: ../../include/identity.php:200 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." - -#: ../../include/identity.php:282 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" - -#: ../../include/identity.php:342 -msgid "Default Profile" -msgstr "Standaardprofiel" - -#: ../../include/identity.php:636 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." - -#: ../../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 "Opgevraagd profiel is niet beschikbaar" - -#: ../../include/identity.php:847 ../../mod/profiles.php:722 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" - -#: ../../include/identity.php:853 -msgid "Profiles" -msgstr "Profielen" - -#: ../../include/identity.php:853 -msgid "Manage/edit profiles" -msgstr "Profielen beheren/bewerken" - -#: ../../include/identity.php:854 ../../mod/profiles.php:723 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" - -#: ../../include/identity.php:857 ../../include/nav.php:103 -msgid "Edit Profile" -msgstr "Profiel bewerken" - -#: ../../include/identity.php:868 ../../mod/profiles.php:734 -msgid "Profile Image" -msgstr "Profielfoto" - -#: ../../include/identity.php:871 -msgid "visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/identity.php:872 ../../mod/profiles.php:617 -#: ../../mod/profiles.php:738 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" - -#: ../../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 "Plaats:" - -#: ../../include/identity.php:886 ../../include/identity.php:1123 -#: ../../mod/directory.php:158 -msgid "Gender:" -msgstr "Geslacht:" - -#: ../../include/identity.php:887 ../../include/identity.php:1167 -#: ../../mod/directory.php:160 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:888 ../../include/identity.php:1178 -#: ../../mod/directory.php:162 -msgid "Homepage:" -msgstr "Homepagina:" - -#: ../../include/identity.php:889 ../../mod/dirprofile.php:151 -msgid "Online Now" -msgstr "Nu online" - -#: ../../include/identity.php:967 ../../include/identity.php:1047 -#: ../../mod/ping.php:298 -msgid "g A l F d" -msgstr "G:i, l d F" - -#: ../../include/identity.php:968 ../../include/identity.php:1048 -msgid "F d" -msgstr "d F" - -#: ../../include/identity.php:1013 ../../include/identity.php:1088 -#: ../../mod/ping.php:320 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../include/identity.php:1025 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" - -#: ../../include/identity.php:1026 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" - -#: ../../include/identity.php:1081 -msgid "[No description]" -msgstr "[Geen omschrijving]" - -#: ../../include/identity.php:1099 -msgid "Event Reminders" -msgstr "Herinneringen" - -#: ../../include/identity.php:1100 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" - -#: ../../include/identity.php:1121 ../../mod/settings.php:953 -msgid "Full Name:" -msgstr "Volledige naam:" - -#: ../../include/identity.php:1128 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" - -#: ../../include/identity.php:1139 ../../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/identity.php:1152 -msgid "j F, Y" -msgstr "F j Y" - -#: ../../include/identity.php:1153 -msgid "j F" -msgstr "F j" - -#: ../../include/identity.php:1160 -msgid "Birthday:" -msgstr "Geboortedatum:" - -#: ../../include/identity.php:1164 -msgid "Age:" -msgstr "Leeftijd:" - -#: ../../include/identity.php:1173 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: ../../include/identity.php:1176 ../../mod/profiles.php:639 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" - -#: ../../include/identity.php:1180 ../../mod/profiles.php:641 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" - -#: ../../include/identity.php:1182 -msgid "Tags:" -msgstr "Trefwoorden:" - -#: ../../include/identity.php:1184 ../../mod/profiles.php:642 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" - -#: ../../include/identity.php:1186 -msgid "Religion:" -msgstr "Religie:" - -#: ../../include/identity.php:1188 ../../mod/directory.php:164 -msgid "About:" -msgstr "Over:" - -#: ../../include/identity.php:1190 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" - -#: ../../include/identity.php:1192 ../../mod/profiles.php:645 -msgid "Likes:" -msgstr "Houdt van:" - -#: ../../include/identity.php:1194 ../../mod/profiles.php:646 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: ../../include/identity.php:1197 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: ../../include/identity.php:1199 -msgid "My other channels:" -msgstr "Mijn andere kanalen" - -#: ../../include/identity.php:1201 -msgid "Musical interests:" -msgstr "Muzikale interesses:" - -#: ../../include/identity.php:1203 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" - -#: ../../include/identity.php:1205 -msgid "Television:" -msgstr "Televisie:" - -#: ../../include/identity.php:1207 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" - -#: ../../include/identity.php:1209 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" - -#: ../../include/identity.php:1211 -msgid "Work/employment:" -msgstr "Werk/beroep:" - -#: ../../include/identity.php:1213 -msgid "School/education:" -msgstr "School/opleiding:" - -#: ../../include/identity.php:1233 -msgid "Like this thing" -msgstr "Vind dit ding leuk" - #: ../../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 +#: ../../include/diaspora.php:1923 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:298 msgid "photo" msgstr "foto" @@ -986,8 +310,8 @@ msgid "channel" msgstr "kanaal" #: ../../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 +#: ../../include/diaspora.php:1923 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:298 msgid "status" msgstr "bericht" @@ -996,13 +320,13 @@ msgstr "bericht" msgid "comment" msgstr "reactie" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1953 -#: ../../mod/like.php:331 +#: ../../include/conversation.php:164 ../../include/diaspora.php:1952 +#: ../../mod/like.php:344 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../include/conversation.php:167 ../../mod/like.php:333 +#: ../../include/conversation.php:167 ../../mod/like.php:346 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s vindt %3$s van %2$s niet leuk" @@ -1076,7 +400,7 @@ msgid "View in context" msgstr "In context bekijken" #: ../../include/conversation.php:719 ../../include/conversation.php:1153 -#: ../../include/ItemObject.php:310 ../../mod/photos.php:993 +#: ../../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 @@ -1108,7 +432,7 @@ msgid "View Status" msgstr "Status weergeven" #: ../../include/conversation.php:945 ../../include/nav.php:99 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:529 +#: ../../mod/connedit.php:429 ../../mod/connedit.php:544 msgid "View Profile" msgstr "Profiel weergeven" @@ -1120,6 +444,14 @@ msgstr "Foto's weergeven" msgid "Matrix Activity" msgstr "Activiteit in de RedMatrix" +#: ../../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 +#: ../../mod/match.php:62 +msgid "Connect" +msgstr "Verbinden" + #: ../../include/conversation.php:949 msgid "Edit Contact" msgstr "Contact bewerken" @@ -1207,7 +539,15 @@ msgstr "Waar bevind je je op dit moment?" msgid "Expires YYYY-MM-DD HH:MM" msgstr "Verloopt op DD-MM-YYYY om HH:MM" -#: ../../include/conversation.php:1128 ../../mod/photos.php:992 +#: ../../include/conversation.php:1114 ../../include/page_widgets.php:40 +#: ../../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 "Voorvertoning" + +#: ../../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" @@ -1337,10 +677,10 @@ msgstr "Tekst versleutelen" msgid "OK" msgstr "OK" -#: ../../include/conversation.php:1182 ../../mod/settings.php:520 -#: ../../mod/settings.php:546 ../../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:94 +#: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "Annuleren" @@ -1368,6 +708,10 @@ msgstr "Nieuwe berichten bovenaan" msgid "Sort by Post Date" msgstr "Nieuwe berichten bovenaan" +#: ../../include/conversation.php:1449 ../../include/widgets.php:89 +msgid "Personal" +msgstr "Persoonlijk" + #: ../../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" @@ -1413,22 +757,365 @@ msgstr "Over" msgid "Profile Details" msgstr "Profiel" +#: ../../include/conversation.php:1540 ../../include/photos.php:340 +msgid "Photo Albums" +msgstr "Fotoalbums" + #: ../../include/conversation.php:1549 msgid "Files and Storage" msgstr "Bestanden en opslagruimte" -#: ../../include/conversation.php:1558 ../../include/conversation.php:1561 +#: ../../include/conversation.php:1559 ../../include/conversation.php:1562 msgid "Chatrooms" msgstr "Chatkanalen" -#: ../../include/conversation.php:1573 +#: ../../include/conversation.php:1575 msgid "Saved Bookmarks" msgstr "Opgeslagen bladwijzers" -#: ../../include/conversation.php:1584 +#: ../../include/conversation.php:1586 msgid "Manage Webpages" msgstr "Webpagina's beheren" +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "maakte een nieuw bericht aan" + +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "gaf een reactie op een bericht van %s" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nieuwe pagina" + +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 +#: ../../mod/webpages.php:134 ../../mod/layouts.php:125 +msgid "View" +msgstr "Weergeven" + +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 +msgid "Actions" +msgstr "Acties" + +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 +msgid "Page Link" +msgstr "Paginalink" + +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 +msgid "Title" +msgstr "Titel" + +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 +msgid "Created" +msgstr "Aangemaakt" + +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 +msgid "Edited" +msgstr "Bewerkt" + +#: ../../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/event.php:11 ../../include/bb2diaspora.php:463 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:469 +msgid "Starts:" +msgstr "Start:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:477 +msgid "Finishes:" +msgstr "Einde:" + +#: ../../include/event.php:40 ../../include/bb2diaspora.php:485 +#: ../../include/identity.php:891 ../../mod/events.php:579 +#: ../../mod/directory.php:156 ../../mod/dirprofile.php:105 +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/oembed.php:171 +msgid "Embedded content" +msgstr "Ingesloten inhoud" + +#: ../../include/oembed.php:180 +msgid "Embedding disabled" +msgstr "Insluiten uitgeschakeld" + +#: ../../include/permissions.php:13 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" + +#: ../../include/permissions.php:14 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" + +#: ../../include/permissions.php:15 +msgid "Can view my photo albums" +msgstr "Kan mijn fotoalbums bekijken" + +#: ../../include/permissions.php:16 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" + +#: ../../include/permissions.php:17 +msgid "Can view my file storage" +msgstr "Kan mijn bestanden bekijken" + +#: ../../include/permissions.php:18 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" + +#: ../../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/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" + +#: ../../include/permissions.php:23 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" + +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" + +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" +msgstr "Kan foto's aan mijn fotoalbums toevoegen" + +#: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" + +#: ../../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:785 +msgid "Social Networking" +msgstr "Sociaal netwerk" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Mostly Public" +msgstr "Vrijwel alles openbaar" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Restricted" +msgstr "Beperkt zichtbaar" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +msgid "Private" +msgstr "Verborgen kanaal" + +#: ../../include/permissions.php:787 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../include/permissions.php:789 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../include/permissions.php:791 +msgid "Special Purpose" +msgstr "Speciaal doel" + +#: ../../include/permissions.php:792 +msgid "Celebrity/Soapbox" +msgstr "Beroemdheid/alleen volgen" + +#: ../../include/permissions.php:792 +msgid "Group Repository" +msgstr "Groepsopslag" + +#: ../../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 "Anders" + +#: ../../include/permissions.php:794 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" + +#: ../../include/activities.php:39 +msgid " and " +msgstr " en " + +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "openbaar profiel" + +#: ../../include/activities.php:52 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: ../../include/activities.php:53 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" + +#: ../../include/activities.php:56 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diversen" + +#: ../../include/datetime.php:241 +msgid "never" +msgstr "nooit" + +#: ../../include/datetime.php:247 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: ../../include/datetime.php:250 +msgid "year" +msgstr "jaar" + +#: ../../include/datetime.php:250 +msgid "years" +msgstr "jaren" + +#: ../../include/datetime.php:251 +msgid "month" +msgstr "maand" + +#: ../../include/datetime.php:251 +msgid "months" +msgstr "maanden" + +#: ../../include/datetime.php:252 +msgid "week" +msgstr "week" + +#: ../../include/datetime.php:252 +msgid "weeks" +msgstr "weken" + +#: ../../include/datetime.php:253 +msgid "day" +msgstr "dag" + +#: ../../include/datetime.php:253 +msgid "days" +msgstr "dagen" + +#: ../../include/datetime.php:254 +msgid "hour" +msgstr "uur" + +#: ../../include/datetime.php:254 +msgid "hours" +msgstr "uren" + +#: ../../include/datetime.php:255 +msgid "minute" +msgstr "minuut" + +#: ../../include/datetime.php:255 +msgid "minutes" +msgstr "minuten" + +#: ../../include/datetime.php:256 +msgid "second" +msgstr "seconde" + +#: ../../include/datetime.php:256 +msgid "seconds" +msgstr "seconden" + +#: ../../include/datetime.php:265 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: ../../include/datetime.php:470 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" + +#: ../../include/datetime.php:471 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" + +#: ../../include/bb2diaspora.php:384 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: ../../include/bb2diaspora.php:465 +msgid "Redmatrix event notification:" +msgstr "Notificatie RedMatrix-gebeurtenis:" + +#: ../../include/zot.php:661 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" + +#: ../../include/zot.php:677 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " + +#: ../../include/zot.php:1791 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" + #: ../../include/auth.php:116 msgid "Logged out." msgstr "Uitgelogd." @@ -1441,6 +1128,716 @@ msgstr "Mislukte authenticatie" msgid "Login failed." msgstr "Inloggen mislukt." +#: ../../include/RedDAV/RedBrowser.php:106 +#: ../../include/RedDAV/RedBrowser.php:249 +msgid "parent" +msgstr "omhoog" + +#: ../../include/RedDAV/RedBrowser.php:130 +msgid "Collection" +msgstr "map" + +#: ../../include/RedDAV/RedBrowser.php:133 +msgid "Principal" +msgstr "principal" + +#: ../../include/RedDAV/RedBrowser.php:136 +msgid "Addressbook" +msgstr "Adresboek" + +#: ../../include/RedDAV/RedBrowser.php:139 +msgid "Calendar" +msgstr "Agenda" + +#: ../../include/RedDAV/RedBrowser.php:142 +msgid "Schedule Inbox" +msgstr "Planning-postvak IN" + +#: ../../include/RedDAV/RedBrowser.php:145 +msgid "Schedule Outbox" +msgstr "Planning-postvak UIT" + +#: ../../include/RedDAV/RedBrowser.php:223 +#, php-format +msgid "%1$s used" +msgstr "%1$s gebruikt" + +#: ../../include/RedDAV/RedBrowser.php:228 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s van %2$s gebruikt (%3$s%)" + +#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:551 +#: ../../mod/settings.php:577 ../../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:252 +msgid "Total" +msgstr "Totaal" + +#: ../../include/RedDAV/RedBrowser.php:305 +msgid "Create new folder" +msgstr "Nieuwe map aanmaken" + +#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:142 +#: ../../mod/menu.php:84 ../../mod/new_channel.php:122 +msgid "Create" +msgstr "Aanmaken" + +#: ../../include/RedDAV/RedBrowser.php:307 +msgid "Upload file" +msgstr "Bestand uploaden" + +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:736 +#: ../../mod/photos.php:1241 ../../mod/profile_photo.php:361 +msgid "Upload" +msgstr "Uploaden" + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" + +#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "Standaard" + +#: ../../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" + +#: ../../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:1515 +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 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/taxonomy.php:230 +#: ../../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/account.php:23 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd." + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." + +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" + +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Beheerder" + +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" + +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" + +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Account goedgekeurd" + +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" + +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." + +#: ../../include/account.php:647 ../../include/account.php:649 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." + +#: ../../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/account.php:660 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." + +#: ../../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/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "Installeer ontwerp-onderdeel" + +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "QR-code" + +#: ../../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/bbcode.php:222 +msgid "post" +msgstr "bericht" + +#: ../../include/bbcode.php:621 +msgid "$1 spoiler" +msgstr "$1 spoiler" + +#: ../../include/bbcode.php:641 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: ../../include/dir_fns.php:56 +msgid "Sort Options" +msgstr "Sorteeropties" + +#: ../../include/dir_fns.php:57 +msgid "Alphabetic" +msgstr "Alfabetisch" + +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" + +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" + +#: ../../include/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "Veilig zoeken inschakelen" + +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "Veilig zoeken uitschakelen" + +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" +msgstr "Veilig zoeken" + +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Labels" + +#: ../../include/taxonomy.php:249 +msgid "Keywords" +msgstr "Trefwoorden" + +#: ../../include/taxonomy.php:274 +msgid "have" +msgstr "heb" + +#: ../../include/taxonomy.php:274 +msgid "has" +msgstr "heeft" + +#: ../../include/taxonomy.php:275 +msgid "want" +msgstr "wil" + +#: ../../include/taxonomy.php:275 +msgid "wants" +msgstr "wil" + +#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 +msgid "like" +msgstr "vind dit leuk" + +#: ../../include/taxonomy.php:276 +msgid "likes" +msgstr "vindt dit leuk" + +#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "vind dit niet leuk" + +#: ../../include/taxonomy.php:277 +msgid "dislikes" +msgstr "vindt dit niet leuk" + +#: ../../include/taxonomy.php:360 ../../include/identity.php:1146 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1023 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" + +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "RedMatrix-notificatie" + +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "RedMatrix" + +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "Bedankt," + +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "Beheerder %s" + +#: ../../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/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/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s zond jou %2$s." + +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "een privébericht" + +#: ../../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/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/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/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/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/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/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/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/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/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/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Notificatie] %s heeft je genoemd" + +#: ../../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/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/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Notificatie] %1$s heeft je aangestoten" + +#: ../../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/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/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Notificatie] %s heeft jouw bericht gelabeld" + +#: ../../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/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/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Notificatie] Connectieverzoek ontvangen" + +#: ../../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/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/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/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/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Notificatie] Kanaalvoorstel ontvangen" + +#: ../../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/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/enotify.php:280 +msgid "Name:" +msgstr "Naam:" + +#: ../../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 "Bezoek %s om het voorstel te accepteren of af te wijzen." + +#: ../../include/enotify.php:477 +msgid "[Red:Notify]" +msgstr "[Red:Notificatie]" + +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" + +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" + +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" + +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Chatkanaal is vol" + +#: ../../include/items.php:377 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 +#: ../../index.php:389 +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: ../../include/items.php:964 ../../include/items.php:1009 +msgid "(Unknown)" +msgstr "(Onbekend)" + +#: ../../include/items.php:1165 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." + +#: ../../include/items.php:1167 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." + +#: ../../include/items.php:1169 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." + +#: ../../include/items.php:1171 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." + +#: ../../include/items.php:1173 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." + +#: ../../include/items.php:1175 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." + +#: ../../include/items.php:1177 +msgid "Visible to approved connections." +msgstr "Voor alle goedgekeurde connecties zichtbaar." + +#: ../../include/items.php:1179 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." + +#: ../../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 "Item niet gevonden." + +#: ../../include/items.php:4394 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Collectie niet gevonden." + +#: ../../include/items.php:4409 +msgid "Collection is empty." +msgstr "Collectie is leeg" + +#: ../../include/items.php:4416 +#, php-format +msgid "Collection: %s" +msgstr "Collectie: %s" + +#: ../../include/items.php:4427 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" + +#: ../../include/items.php:4430 +msgid "Connection not found." +msgstr "Connectie niet gevonden." + #: ../../include/text.php:321 msgid "prev" msgstr "vorige" @@ -1480,6 +1877,13 @@ msgstr[1] "%d connecties" msgid "View Connections" msgstr "Connecties weergeven" +#: ../../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 "Opslaan" + #: ../../include/text.php:901 msgid "poke" msgstr "aanstoten" @@ -1748,277 +2152,748 @@ msgstr "Lay-outs" msgid "Pages" msgstr "Pagina's" -#: ../../include/bookmarks.php:35 +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Algemene functies" + +#: ../../include/features.php:25 +msgid "Content Expiration" +msgstr "Inhoud laten verlopen" + +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" + +#: ../../include/features.php:26 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" + +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" + +#: ../../include/features.php:27 +msgid "Advanced Profiles" +msgstr "Geavanceerde profielen" + +#: ../../include/features.php:27 +msgid "Additional profile sections and selections" +msgstr "Extra onderdelen en keuzes voor je profiel" + +#: ../../include/features.php:28 +msgid "Profile Import/Export" +msgstr "Profiel importen/exporteren" + +#: ../../include/features.php:28 +msgid "Save and load profile details across sites/channels" +msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." + +#: ../../include/features.php:29 +msgid "Web Pages" +msgstr "Webpagina's" + +#: ../../include/features.php:29 +msgid "Provide managed web pages on your channel" +msgstr "Sta beheerde webpagina's op jouw kanaal toe" + +#: ../../include/features.php:30 +msgid "Private Notes" +msgstr "Privé-aantekeningen" + +#: ../../include/features.php:30 +msgid "Enables a tool to store notes and reminders" +msgstr "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan" + +#: ../../include/features.php:34 +msgid "Navigation Channel Select" +msgstr "Kanaal kiezen in navigatiemenu" + +#: ../../include/features.php:34 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" + +#: ../../include/features.php:38 +msgid "Extended Identity Sharing" +msgstr "Uitgebreid identiteit delen" + +#: ../../include/features.php:38 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." +msgstr "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet." + +#: ../../include/features.php:39 +msgid "Expert Mode" +msgstr "Expertmodus" + +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Schakel de expertmodus in voor geavanceerde instellingen" + +#: ../../include/features.php:40 +msgid "Premium Channel" +msgstr "Premiumkanaal" + +#: ../../include/features.php:40 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" + +#: ../../include/features.php:45 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" + +#: ../../include/features.php:47 +msgid "Use Markdown" +msgstr "Markdown gebruiken" + +#: ../../include/features.php:47 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken." + +#: ../../include/features.php:48 +msgid "Post Preview" +msgstr "Voorvertoning" + +#: ../../include/features.php:48 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Een optie om je berichten en reacties voor het definitief publiceren voor te vertonen" + +#: ../../include/features.php:49 ../../include/widgets.php:537 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanaalbronnen" + +#: ../../include/features.php:49 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." + +#: ../../include/features.php:50 +msgid "Even More Encryption" +msgstr "Extra encryptie" + +#: ../../include/features.php:50 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." + +#: ../../include/features.php:55 +msgid "Network and Stream Filtering" +msgstr "Netwerk- en streamfilter" + +#: ../../include/features.php:56 +msgid "Search by Date" +msgstr "Zoek op datum" + +#: ../../include/features.php:56 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten op datum te filteren " + +#: ../../include/features.php:57 +msgid "Collections Filter" +msgstr "Filter op collecties" + +#: ../../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/features.php:58 ../../include/widgets.php:272 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: ../../include/features.php:58 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" + +#: ../../include/features.php:59 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" + +#: ../../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/features.php:60 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" + +#: ../../include/features.php:60 +msgid "Enable tab to display all new Network activity" +msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" + +#: ../../include/features.php:61 +msgid "Affinity Tool" +msgstr "Verwantschapsfilter" + +#: ../../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/features.php:62 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" + +#: ../../include/features.php:62 +msgid "Show channel suggestions" +msgstr "Voor jou mogelijk interessante kanalen voorstellen" + +#: ../../include/features.php:67 +msgid "Post/Comment Tools" +msgstr "Bericht- en reactiehulpmiddelen" + +#: ../../include/features.php:69 +msgid "Edit Sent Posts" +msgstr "Bewerk verzonden berichten" + +#: ../../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/features.php:70 +msgid "Tagging" +msgstr "Labelen" + +#: ../../include/features.php:70 +msgid "Ability to tag existing posts" +msgstr "Mogelijkheid om bestaande berichten te labelen" + +#: ../../include/features.php:71 +msgid "Post Categories" +msgstr "Categorieën berichten" + +#: ../../include/features.php:71 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" + +#: ../../include/features.php:72 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen op te slaan" + +#: ../../include/features.php:73 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" + +#: ../../include/features.php:73 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" + +#: ../../include/features.php:74 +msgid "Star Posts" +msgstr "Geef berichten een ster" + +#: ../../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/features.php:75 +msgid "Tag Cloud" +msgstr "Wolk met trefwoorden/labels" + +#: ../../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/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." + +#: ../../include/follow.php:135 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." + +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." + +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "lokale account niet gevonden." + +#: ../../include/follow.php:220 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" + +#: ../../include/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/group.php:234 +msgid "Default privacy group for new contacts" +msgstr "Standaard privacy-collectie voor nieuwe kanalen" + +#: ../../include/group.php:253 ../../mod/admin.php:737 +msgid "All Channels" +msgstr "Alle kanalen" + +#: ../../include/group.php:275 +msgid "edit" +msgstr "bewerken" + +#: ../../include/group.php:297 +msgid "Collections" +msgstr "Collecties" + +#: ../../include/group.php:298 +msgid "Edit collection" +msgstr "Collectie bewerken" + +#: ../../include/group.php:299 +msgid "Create a new collection" +msgstr "Nieuwe collectie aanmaken" + +#: ../../include/group.php:300 +msgid "Channels not in any collection" +msgstr "Kanalen die zich in geen enkele collectie bevinden" + +#: ../../include/group.php:302 ../../include/widgets.php:273 +msgid "add" +msgstr "toevoegen" + +#: ../../include/identity.php:31 ../../mod/item.php:1361 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Ontbrekende naam" + +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "Naam te lang" + +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Geen account-identificator" + +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" + +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." + +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." + +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" + +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "Standaardprofiel" + +#: ../../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:509 +msgid "Friends" +msgstr "Vrienden" + +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." + +#: ../../include/identity.php:691 ../../mod/achievements.php:11 +#: ../../mod/profile.php:16 ../../mod/blocks.php: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 "Opgevraagd profiel is niet beschikbaar" + +#: ../../include/identity.php:854 ../../mod/profiles.php:722 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" + +#: ../../include/identity.php:860 +msgid "Profiles" +msgstr "Profielen" + +#: ../../include/identity.php:860 +msgid "Manage/edit profiles" +msgstr "Profielen beheren/bewerken" + +#: ../../include/identity.php:861 ../../mod/profiles.php:723 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" + +#: ../../include/identity.php:864 ../../include/nav.php:103 +msgid "Edit Profile" +msgstr "Profiel bewerken" + +#: ../../include/identity.php:875 ../../mod/profiles.php:734 +msgid "Profile Image" +msgstr "Profielfoto" + +#: ../../include/identity.php:878 +msgid "visible to everybody" +msgstr "Voor iedereen zichtbaar" + +#: ../../include/identity.php:879 ../../mod/profiles.php:617 +#: ../../mod/profiles.php:738 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" + +#: ../../include/identity.php:893 ../../include/identity.php:1130 +#: ../../mod/directory.php:158 +msgid "Gender:" +msgstr "Geslacht:" + +#: ../../include/identity.php:894 ../../include/identity.php:1174 +#: ../../mod/directory.php:160 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:895 ../../include/identity.php:1185 +#: ../../mod/directory.php:162 +msgid "Homepage:" +msgstr "Homepagina:" + +#: ../../include/identity.php:896 ../../mod/dirprofile.php:151 +msgid "Online Now" +msgstr "Nu online" + +#: ../../include/identity.php:974 ../../include/identity.php:1054 +#: ../../mod/ping.php:316 +msgid "g A l F d" +msgstr "G:i, l d F" + +#: ../../include/identity.php:975 ../../include/identity.php:1055 +msgid "F d" +msgstr "d F" + +#: ../../include/identity.php:1020 ../../include/identity.php:1095 +#: ../../mod/ping.php:338 +msgid "[today]" +msgstr "[vandaag]" + +#: ../../include/identity.php:1032 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" + +#: ../../include/identity.php:1033 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" + +#: ../../include/identity.php:1088 +msgid "[No description]" +msgstr "[Geen omschrijving]" + +#: ../../include/identity.php:1106 +msgid "Event Reminders" +msgstr "Herinneringen" + +#: ../../include/identity.php:1107 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" + +#: ../../include/identity.php:1128 ../../mod/settings.php:984 +msgid "Full Name:" +msgstr "Volledige naam:" + +#: ../../include/identity.php:1135 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" + +#: ../../include/identity.php:1159 +msgid "j F, Y" +msgstr "F j Y" + +#: ../../include/identity.php:1160 +msgid "j F" +msgstr "F j" + +#: ../../include/identity.php:1167 +msgid "Birthday:" +msgstr "Geboortedatum:" + +#: ../../include/identity.php:1171 +msgid "Age:" +msgstr "Leeftijd:" + +#: ../../include/identity.php:1180 #, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Labels" +#: ../../include/identity.php:1183 ../../mod/profiles.php:639 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Trefwoorden" +#: ../../include/identity.php:1187 ../../mod/profiles.php:641 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "heb" +#: ../../include/identity.php:1189 +msgid "Tags:" +msgstr "Trefwoorden:" -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "heeft" +#: ../../include/identity.php:1191 ../../mod/profiles.php:642 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "wil" +#: ../../include/identity.php:1193 +msgid "Religion:" +msgstr "Religie:" -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "wil" +#: ../../include/identity.php:1195 ../../mod/directory.php:164 +msgid "About:" +msgstr "Over:" -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:221 -msgid "like" -msgstr "vind dit leuk" +#: ../../include/identity.php:1197 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "vindt dit leuk" +#: ../../include/identity.php:1199 ../../mod/profiles.php:645 +msgid "Likes:" +msgstr "Houdt van:" -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "vind dit niet leuk" +#: ../../include/identity.php:1201 ../../mod/profiles.php:646 +msgid "Dislikes:" +msgstr "Houdt niet van:" -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "vindt dit niet leuk" +#: ../../include/identity.php:1204 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standaard" +#: ../../include/identity.php:1206 +msgid "My other channels:" +msgstr "Mijn andere kanalen" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Regelmatig" +#: ../../include/identity.php:1208 +msgid "Musical interests:" +msgstr "Muzikale interesses:" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Elk uur" +#: ../../include/identity.php:1210 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" +#: ../../include/identity.php:1212 +msgid "Television:" +msgstr "Televisie:" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Dagelijks" +#: ../../include/identity.php:1214 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wekelijks" +#: ../../include/identity.php:1216 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Maandelijks" +#: ../../include/identity.php:1218 +msgid "Work/employment:" +msgstr "Werk/beroep:" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/identity.php:1220 +msgid "School/education:" +msgstr "School/opleiding:" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/identity.php:1240 +msgid "Like this thing" +msgstr "Vind dit ding leuk" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/widgets.php:86 ../../include/nav.php:171 +#: ../../mod/apps.php:33 +msgid "Apps" +msgstr "Apps" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:728 -#: ../../mod/admin.php:737 ../../boot.php:1498 -msgid "Email" -msgstr "E-mail" +#: ../../include/widgets.php:87 +msgid "System" +msgstr "Systeem" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/widgets.php:90 +msgid "Create Personal App" +msgstr "Persoonlijke app maken" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/widgets.php:91 +msgid "Edit Personal App" +msgstr "Persoonlijke app bewerken" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" -#: ../../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 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" +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" msgstr "Voorgestelde kanalen" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Willekeurig profiel" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Meer..." -#: ../../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:126 +#: ../../include/widgets.php:166 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." -#: ../../include/contact_widgets.php:131 -msgid "show more" -msgstr "meer connecties weergeven" +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:458 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Vul het adres van het nieuwe kanaal in" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:464 -msgid "Starts:" -msgstr "Start:" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:472 -msgid "Finishes:" -msgstr "Einde:" +#: ../../include/widgets.php:191 +msgid "Notes" +msgstr "Aantekeningen" -#: ../../include/event.php:326 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../include/widgets.php:263 +msgid "Remove term" +msgstr "Verwijder zoekterm" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" +#: ../../include/widgets.php:352 +msgid "Archives" +msgstr "Archieven" -#: ../../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/widgets.php:428 +msgid "Refresh" +msgstr "Vernieuwen" -#: ../../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/widgets.php:429 ../../mod/connedit.php:506 +msgid "Me" +msgstr "Ik" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" +#: ../../include/widgets.php:430 ../../mod/connedit.php:508 +msgid "Best Friends" +msgstr "Goede vrienden" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" +#: ../../include/widgets.php:432 +msgid "Co-workers" +msgstr "Collega's" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." +#: ../../include/widgets.php:433 ../../mod/connedit.php:510 +msgid "Former Friends" +msgstr "Oude vrienden" -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." +#: ../../include/widgets.php:434 ../../mod/connedit.php:511 +msgid "Acquaintances" +msgstr "Kennissen" -#: ../../include/account.php:245 +#: ../../include/widgets.php:435 +msgid "Everybody" +msgstr "Iedereen" + +#: ../../include/widgets.php:469 +msgid "Account settings" +msgstr "Account" + +#: ../../include/widgets.php:475 +msgid "Channel settings" +msgstr "Kanaal" + +#: ../../include/widgets.php:481 +msgid "Additional features" +msgstr "Extra functies" + +#: ../../include/widgets.php:487 +msgid "Feature settings" +msgstr "Plug-ins" + +#: ../../include/widgets.php:493 +msgid "Display settings" +msgstr "Weergave" + +#: ../../include/widgets.php:499 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: ../../include/widgets.php:505 +msgid "Export channel" +msgstr "Kanaal exporteren" + +#: ../../include/widgets.php:511 +msgid "Export content" +msgstr "Inhoud exporteren" + +#: ../../include/widgets.php:520 ../../mod/connedit.php:538 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" + +#: ../../include/widgets.php:528 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" + +#: ../../include/widgets.php:562 ../../mod/mail.php:124 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Berichten" + +#: ../../include/widgets.php:567 +msgid "Check Mail" +msgstr "Controleer op nieuwe berichten" + +#: ../../include/widgets.php:572 ../../include/nav.php:209 +msgid "New Message" +msgstr "Nieuw bericht" + +#: ../../include/widgets.php:648 +msgid "Chat Rooms" +msgstr "Chatkanalen" + +#: ../../include/widgets.php:666 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" + +#: ../../include/widgets.php:684 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" + +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Nieuw venster" + +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" + +#: ../../include/Contact.php:211 ../../mod/admin.php:649 #, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Beheerder" +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." - -#: ../../include/account.php:647 ../../include/account.php:649 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../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/account.php:660 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." - -#: ../../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 "Uitloggen" @@ -2091,7 +2966,7 @@ msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" msgid "Home Page" msgstr "Homepage" -#: ../../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 "Registreren" @@ -2203,857 +3078,71 @@ msgstr "Hub instellen en beheren" msgid "Please wait..." msgstr "Wachten aub..." -#: ../../include/dir_fns.php:56 -msgid "Sort Options" -msgstr "Sorteeropties" +#: ../../include/network.php:590 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../include/dir_fns.php:57 -msgid "Alphabetic" -msgstr "Alfabetisch" +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" -#: ../../include/dir_fns.php:58 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Tonen" -#: ../../include/dir_fns.php:59 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Niet tonen" -#: ../../include/dir_fns.php:71 -msgid "Enable Safe Search" -msgstr "Veilig zoeken inschakelen" +#: ../../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 "Permissies" -#: ../../include/dir_fns.php:73 -msgid "Disable Safe Search" -msgstr "Veilig zoeken uitschakelen" +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 +#: ../../mod/photos.php:1145 +msgid "Close" +msgstr "Sluiten" -#: ../../include/dir_fns.php:75 -msgid "Safe Mode" -msgstr "Veilig zoeken" +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" -#: ../../include/bb2diaspora.php:379 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "RedMatrix-notificatie" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "RedMatrix" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Bedankt," - -#: ../../include/enotify.php:46 +#: ../../include/photos.php:104 #, php-format -msgid "%s Administrator" -msgstr "Beheerder %s" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../include/photos.php:111 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notificatie] Nieuw privébericht ontvangen op %s" +#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" -#: ../../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/photos.php:212 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s zond jou %2$s." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "een privébericht" - -#: ../../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/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/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/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/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/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/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/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/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/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/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notificatie] %s heeft je genoemd" - -#: ../../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/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/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notificatie] %1$s heeft je aangestoten" - -#: ../../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/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/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notificatie] %s heeft jouw bericht gelabeld" - -#: ../../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/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/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notificatie] Connectieverzoek ontvangen" - -#: ../../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/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/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/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/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notificatie] Kanaalvoorstel ontvangen" - -#: ../../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/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/enotify.php:280 -msgid "Name:" -msgstr "Naam:" - -#: ../../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 "Bezoek %s om het voorstel te accepteren of af te wijzen." - -#: ../../include/enotify.php:477 -msgid "[Red:Notify]" -msgstr "[Red:Notificatie]" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Chatkanaal is vol" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Algemene functies" - -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "Inhoud laten verlopen" - -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" - -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" - -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" - -#: ../../include/features.php:27 -msgid "Advanced Profiles" -msgstr "Geavanceerde profielen" - -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" -msgstr "Extra onderdelen en keuzes voor je profiel" - -#: ../../include/features.php:28 -msgid "Profile Import/Export" -msgstr "Profiel importen/exporteren" - -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" -msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." - -#: ../../include/features.php:29 -msgid "Web Pages" -msgstr "Webpagina's" - -#: ../../include/features.php:29 -msgid "Provide managed web pages on your channel" -msgstr "Sta beheerde webpagina's op jouw kanaal toe" - -#: ../../include/features.php:30 -msgid "Private Notes" -msgstr "Privé-aantekeningen" - -#: ../../include/features.php:30 -msgid "Enables a tool to store notes and reminders" -msgstr "Schakelt een eenvoudige toepassing in om aantekeningen en herinneringen in op te slaan" - -#: ../../include/features.php:34 -msgid "Navigation Channel Select" -msgstr "Kanaal kiezen in navigatiemenu" - -#: ../../include/features.php:34 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" - -#: ../../include/features.php:38 -msgid "Extended Identity Sharing" -msgstr "Uitgebreid identiteit delen" - -#: ../../include/features.php:38 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Deel jouw RedMatrix-identiteit met alle websites op het internet. Wanneer dit is uitgeschakeld wordt je identiteit alleen binnen het RedMatrix-netwerk gedeeld. Schakel dit alleen als je weet wat je doet." - -#: ../../include/features.php:39 -msgid "Expert Mode" -msgstr "Expertmodus" - -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Schakel de expertmodus in voor geavanceerde instellingen" - -#: ../../include/features.php:40 -msgid "Premium Channel" -msgstr "Premiumkanaal" - -#: ../../include/features.php:40 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" - -#: ../../include/features.php:45 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" - -#: ../../include/features.php:47 -msgid "Use Markdown" -msgstr "Markdown gebruiken" - -#: ../../include/features.php:47 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken." - -#: ../../include/features.php:48 -msgid "Post Preview" -msgstr "Voorvertoning" - -#: ../../include/features.php:48 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Een optie om je berichten en reacties voor het definitief publiceren voor te vertonen" - -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." - -#: ../../include/features.php:50 -msgid "Even More Encryption" -msgstr "Extra encryptie" - -#: ../../include/features.php:50 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." - -#: ../../include/features.php:55 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" - -#: ../../include/features.php:56 -msgid "Search by Date" -msgstr "Zoek op datum" - -#: ../../include/features.php:56 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " - -#: ../../include/features.php:57 -msgid "Collections Filter" -msgstr "Filter op collecties" - -#: ../../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/features.php:58 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: ../../include/features.php:59 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: ../../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/features.php:60 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: ../../include/features.php:60 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" - -#: ../../include/features.php:61 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" - -#: ../../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/features.php:62 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" - -#: ../../include/features.php:62 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" - -#: ../../include/features.php:67 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" - -#: ../../include/features.php:69 -msgid "Edit Sent Posts" -msgstr "Bewerk verzonden berichten" - -#: ../../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/features.php:70 -msgid "Tagging" -msgstr "Labelen" - -#: ../../include/features.php:70 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te labelen" - -#: ../../include/features.php:71 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: ../../include/features.php:71 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: ../../include/features.php:72 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" - -#: ../../include/features.php:73 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" - -#: ../../include/features.php:73 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" - -#: ../../include/features.php:74 -msgid "Star Posts" -msgstr "Geef berichten een ster" - -#: ../../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/features.php:75 -msgid "Tag Cloud" -msgstr "Wolk met trefwoorden/labels" - -#: ../../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/follow.php:26 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." - -#: ../../include/follow.php:31 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." - -#: ../../include/follow.php:133 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." - -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." - -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "lokale account niet gevonden." - -#: ../../include/follow.php:219 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" - -#: ../../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/group.php:234 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy-collectie voor nieuwe kanalen" - -#: ../../include/group.php:253 ../../mod/admin.php:737 -msgid "All Channels" -msgstr "Alle kanalen" - -#: ../../include/group.php:275 -msgid "edit" -msgstr "bewerken" - -#: ../../include/group.php:297 -msgid "Collections" -msgstr "Collecties" - -#: ../../include/group.php:298 -msgid "Edit collection" -msgstr "Collectie bewerken" - -#: ../../include/group.php:299 -msgid "Create a new collection" -msgstr "Nieuwe collectie aanmaken" - -#: ../../include/group.php:300 -msgid "Channels not in any collection" -msgstr "Kanalen die zich in geen enkele collectie bevinden" - -#: ../../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/bbcode.php:147 ../../include/bbcode.php:703 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "Installeer ontwerp-onderdeel" - -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "QR-code" - -#: ../../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/bbcode.php:222 -msgid "post" -msgstr "bericht" - -#: ../../include/bbcode.php:621 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:641 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: ../../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:223 -#, php-format -msgid "%1$s used" -msgstr "%1$s gebruikt" - -#: ../../include/RedDAV/RedBrowser.php:228 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s van %2$s gebruikt (%3$s%)" - -#: ../../include/RedDAV/RedBrowser.php: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:252 -msgid "Total" -msgstr "Totaal" - -#: ../../include/RedDAV/RedBrowser.php:305 -msgid "Create new folder" -msgstr "Nieuwe map aanmaken" - -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:142 -#: ../../mod/menu.php:84 ../../mod/new_channel.php:122 -msgid "Create" -msgstr "Aanmaken" - -#: ../../include/RedDAV/RedBrowser.php:307 -msgid "Upload file" -msgstr "Bestand uploaden" - -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:745 -#: ../../mod/photos.php:1226 ../../mod/profile_photo.php:361 -msgid "Upload" -msgstr "Uploaden" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In map opslaan" - -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -msgid "View all" -msgstr "Toon alles" - -#: ../../include/ItemObject.php:151 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" - -#: ../../include/ItemObject.php:179 -msgid "Add Star" -msgstr "Ster toevoegen" - -#: ../../include/ItemObject.php:180 -msgid "Remove Star" -msgstr "Ster verwijderen" - -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" - -#: ../../include/ItemObject.php:185 -msgid "starred" -msgstr "met ster" - -#: ../../include/ItemObject.php:203 -msgid "Add Tag" -msgstr "Label toevoegen" - -#: ../../include/ItemObject.php:221 ../../mod/photos.php:990 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: ../../include/ItemObject.php:222 ../../mod/photos.php:991 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: ../../include/ItemObject.php:226 -msgid "Share This" -msgstr "Delen" - -#: ../../include/ItemObject.php:226 -msgid "share" -msgstr "delen" - -#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" - -#: ../../include/ItemObject.php:251 -msgid "to" -msgstr "aan" - -#: ../../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/ItemObject.php:290 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" - -#: ../../include/ItemObject.php:291 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" - -#: ../../include/ItemObject.php:299 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" - -#: ../../include/ItemObject.php:300 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" - -#: ../../include/ItemObject.php:331 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" - -#: ../../include/ItemObject.php:332 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] alle" - -#: ../../include/ItemObject.php:596 ../../mod/photos.php:1009 -#: ../../mod/photos.php:1096 -msgid "This is you" -msgstr "Dit ben jij" - -#: ../../include/ItemObject.php:598 ../../include/js_strings.php:6 -#: ../../mod/photos.php:1011 ../../mod/photos.php:1098 -msgid "Comment" -msgstr "Reactie" - -#: ../../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 "Opslaan" - -#: ../../include/ItemObject.php:600 -msgid "Bold" -msgstr "Vet" - -#: ../../include/ItemObject.php:601 -msgid "Italic" -msgstr "Cursief" - -#: ../../include/ItemObject.php:602 -msgid "Underline" -msgstr "Onderstrepen" - -#: ../../include/ItemObject.php:603 -msgid "Quote" -msgstr "Citeren" - -#: ../../include/ItemObject.php:604 -msgid "Code" -msgstr "Broncode" - -#: ../../include/ItemObject.php:605 -msgid "Image" -msgstr "Afbeelding" - -#: ../../include/ItemObject.php:606 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:607 -msgid "Video" -msgstr "Video" +#: ../../include/photos.php:344 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dit item verwijderen?" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 +#: ../../mod/photos.php:992 ../../mod/photos.php:1102 +msgid "Comment" +msgstr "Reactie" + +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:332 +msgid "[+] show all" +msgstr "[+] alle" + #: ../../include/js_strings.php:8 msgid "[-] show less" msgstr "[-] minder reacties weergeven" @@ -3171,19 +3260,6 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nieuw venster" - -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" - -#: ../../include/Contact.php:211 ../../mod/admin.php:649 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" - #: ../../include/profile_selectors.php:6 #: ../../include/profile_selectors.php:23 msgid "Male" @@ -3234,13 +3310,6 @@ msgstr "Genderneutraal" msgid "Non-specific" msgstr "Niet gespecificeerd" -#: ../../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/profile_selectors.php:6 msgid "Undecided" msgstr "Nog niet beslist" @@ -3427,211 +3496,163 @@ msgstr "Maakt mij niks uit" msgid "Ask me" msgstr "Vraag het me" -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In map opslaan" -#: ../../include/permissions.php:14 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:1019 ../../mod/photos.php:1031 +msgid "View all" +msgstr "Toon alles" -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" -msgstr "Kan mijn fotoalbums bekijken" +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1028 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" -#: ../../include/permissions.php:16 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" +#: ../../include/ItemObject.php:179 +msgid "Add Star" +msgstr "Ster toevoegen" -#: ../../include/permissions.php:17 -msgid "Can view my file storage" -msgstr "Kan mijn bestanden bekijken" +#: ../../include/ItemObject.php:180 +msgid "Remove Star" +msgstr "Ster verwijderen" -#: ../../include/permissions.php:18 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" -#: ../../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/ItemObject.php:185 +msgid "starred" +msgstr "met ster" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../include/ItemObject.php:203 +msgid "Add Tag" +msgstr "Label toevoegen" -#: ../../include/permissions.php:23 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" +#: ../../include/ItemObject.php:221 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" +#: ../../include/ItemObject.php:222 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Kan foto's aan mijn fotoalbums toevoegen" +#: ../../include/ItemObject.php:226 +msgid "Share This" +msgstr "Delen" -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../include/ItemObject.php:226 +msgid "share" +msgstr "delen" -#: ../../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:747 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" - -#: ../../include/datetime.php:238 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:247 -msgid "year" -msgstr "jaar" - -#: ../../include/datetime.php:247 -msgid "years" -msgstr "jaren" - -#: ../../include/datetime.php:248 -msgid "month" -msgstr "maand" - -#: ../../include/datetime.php:248 -msgid "months" -msgstr "maanden" - -#: ../../include/datetime.php:249 -msgid "week" -msgstr "week" - -#: ../../include/datetime.php:249 -msgid "weeks" -msgstr "weken" - -#: ../../include/datetime.php:250 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:250 -msgid "days" -msgstr "dagen" - -#: ../../include/datetime.php:251 -msgid "hour" -msgstr "uur" - -#: ../../include/datetime.php:251 -msgid "hours" -msgstr "uren" - -#: ../../include/datetime.php:252 -msgid "minute" -msgstr "minuut" - -#: ../../include/datetime.php:252 -msgid "minutes" -msgstr "minuten" - -#: ../../include/datetime.php:253 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:253 -msgid "seconds" -msgstr "seconden" - -#: ../../include/datetime.php:262 +#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" -#: ../../include/datetime.php:467 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" +#: ../../include/ItemObject.php:251 +msgid "to" +msgstr "aan" -#: ../../include/datetime.php:468 +#: ../../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/ItemObject.php:290 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" + +#: ../../include/ItemObject.php:291 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" + +#: ../../include/ItemObject.php:299 ../../mod/photos.php:1139 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" + +#: ../../include/ItemObject.php:300 ../../mod/photos.php:1140 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" + +#: ../../include/ItemObject.php:331 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" + +#: ../../include/ItemObject.php:596 ../../mod/photos.php:990 +#: ../../mod/photos.php:1100 +msgid "This is you" +msgstr "Dit ben jij" + +#: ../../include/ItemObject.php:599 ../../mod/mood.php:135 +#: ../../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: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/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 +msgid "Submit" +msgstr "Opslaan" + +#: ../../include/ItemObject.php:600 +msgid "Bold" +msgstr "Vet" + +#: ../../include/ItemObject.php:601 +msgid "Italic" +msgstr "Cursief" + +#: ../../include/ItemObject.php:602 +msgid "Underline" +msgstr "Onderstrepen" + +#: ../../include/ItemObject.php:603 +msgid "Quote" +msgstr "Citeren" + +#: ../../include/ItemObject.php:604 +msgid "Code" +msgstr "Broncode" + +#: ../../include/ItemObject.php:605 +msgid "Image" +msgstr "Afbeelding" + +#: ../../include/ItemObject.php:606 +msgid "Link" +msgstr "Link" + +#: ../../include/ItemObject.php:607 +msgid "Video" +msgstr "Video" #: ../../mod/mood.php:132 msgid "Set your current mood and tell your friends" @@ -3645,149 +3666,148 @@ msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." msgid "Album not found." msgstr "Album niet gevonden." -#: ../../mod/photos.php:119 ../../mod/photos.php:673 +#: ../../mod/photos.php:119 ../../mod/photos.php:670 msgid "Delete Album" msgstr "Verwijder album" -#: ../../mod/photos.php:159 ../../mod/photos.php:973 +#: ../../mod/photos.php:159 ../../mod/photos.php:954 msgid "Delete Photo" msgstr "Verwijder foto" -#: ../../mod/photos.php:443 ../../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 "Openbare toegang geweigerd." -#: ../../mod/photos.php:453 +#: ../../mod/photos.php:470 msgid "No photos selected" msgstr "Geen foto's geselecteerd" -#: ../../mod/photos.php:500 +#: ../../mod/photos.php:514 msgid "Access to this item is restricted." msgstr "Toegang tot dit item is beperkt." -#: ../../mod/photos.php:574 +#: ../../mod/photos.php:553 #, 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." +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." -#: ../../mod/photos.php:577 +#: ../../mod/photos.php:556 #, php-format -msgid "You have used %1$.2f Mbytes of photo storage." -msgstr "Je gebruikt %1$.2f MB aan foto-opslagruimte." +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." -#: ../../mod/photos.php:596 +#: ../../mod/photos.php:580 msgid "Upload Photos" msgstr "Foto's uploaden" -#: ../../mod/photos.php:600 ../../mod/photos.php:668 -msgid "New album name: " -msgstr "Nieuwe albumnaam: " +#: ../../mod/photos.php:584 ../../mod/photos.php:663 ../../mod/photos.php:941 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" -#: ../../mod/photos.php:601 -msgid "or existing album name: " -msgstr "of een bestaande albumnaam: " +#: ../../mod/photos.php:585 ../../mod/photos.php:664 ../../mod/photos.php:942 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../mod/photos.php:602 +#: ../../mod/photos.php:586 msgid "Do not show a status post for this upload" msgstr "Plaats geen bericht voor deze upload." -#: ../../mod/photos.php:622 +#: ../../mod/photos.php:614 msgid "Album name could not be decoded" msgstr "Albumnaam kon niet gedecodeerd worden" -#: ../../mod/photos.php:657 ../../mod/photos.php:679 ../../mod/photos.php:1148 -#: ../../mod/photos.php:1163 +#: ../../mod/photos.php:652 ../../mod/photos.php:1163 +#: ../../mod/photos.php:1178 msgid "Contact Photos" msgstr "Connectiefoto's" -#: ../../mod/photos.php:681 -msgid "Edit Album" -msgstr "Album bewerken" - -#: ../../mod/photos.php:687 +#: ../../mod/photos.php:676 msgid "Show Newest First" msgstr "Nieuwste eerst weergeven" -#: ../../mod/photos.php:689 +#: ../../mod/photos.php:678 msgid "Show Oldest First" msgstr "Oudste eerst weergeven" -#: ../../mod/photos.php:716 ../../mod/photos.php:1195 +#: ../../mod/photos.php:705 ../../mod/photos.php:1210 msgid "View Photo" msgstr "Foto weergeven" -#: ../../mod/photos.php:794 +#: ../../mod/photos.php:734 +msgid "Edit Album" +msgstr "Album bewerken" + +#: ../../mod/photos.php:779 msgid "Permission denied. Access to this item may be restricted." msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." -#: ../../mod/photos.php:796 +#: ../../mod/photos.php:781 msgid "Photo not available" msgstr "Foto niet aanwezig" -#: ../../mod/photos.php:856 +#: ../../mod/photos.php:839 msgid "Use as profile photo" msgstr "Als profielfoto gebruiken" -#: ../../mod/photos.php:863 +#: ../../mod/photos.php:846 msgid "Private Photo" msgstr "Privéfoto" -#: ../../mod/photos.php:874 ../../mod/events.php:433 +#: ../../mod/photos.php:857 ../../mod/events.php:433 msgid "Previous" msgstr "Vorige" -#: ../../mod/photos.php:878 +#: ../../mod/photos.php:861 msgid "View Full Size" msgstr "Volledige grootte weergeven" -#: ../../mod/photos.php:883 ../../mod/events.php:434 ../../mod/setup.php:261 +#: ../../mod/photos.php:866 ../../mod/events.php:434 ../../mod/setup.php:261 msgid "Next" msgstr "Volgende" -#: ../../mod/photos.php:922 ../../mod/delegate.php:130 ../../mod/tagrm.php:93 +#: ../../mod/photos.php:903 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 msgid "Remove" msgstr "Verwijderen" -#: ../../mod/photos.php:956 +#: ../../mod/photos.php:935 msgid "Edit photo" msgstr "Foto bewerken" -#: ../../mod/photos.php:958 +#: ../../mod/photos.php:937 msgid "Rotate CW (right)" msgstr "Draai met de klok mee (naar rechts)" -#: ../../mod/photos.php:959 +#: ../../mod/photos.php:938 msgid "Rotate CCW (left)" msgstr "Draai tegen de klok in (naar links)" -#: ../../mod/photos.php:962 -msgid "New album name" -msgstr "Nieuwe albumnaam" - -#: ../../mod/photos.php:965 +#: ../../mod/photos.php:945 msgid "Caption" msgstr "Bijschrift" -#: ../../mod/photos.php:967 +#: ../../mod/photos.php:947 msgid "Add a Tag" msgstr "Label toevoegen" -#: ../../mod/photos.php:970 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@example.com, #Friesland, #camping" +#: ../../mod/photos.php:950 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" -#: ../../mod/photos.php:1125 +#: ../../mod/photos.php:952 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" + +#: ../../mod/photos.php:1129 msgid "In This Photo:" msgstr "Op deze foto:" -#: ../../mod/photos.php:1201 +#: ../../mod/photos.php:1216 msgid "View Album" msgstr "Album weergeven" -#: ../../mod/photos.php:1224 +#: ../../mod/photos.php:1239 msgid "Recent Photos" msgstr "Recente foto's" @@ -3860,7 +3880,7 @@ msgstr "Nieuw menu-element" msgid "Menu Item Permissions" msgstr "Permissies menu-item" -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:980 +#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:1011 msgid "(click to open/close)" msgstr "(klik om te openen/sluiten)" @@ -3912,15 +3932,15 @@ msgstr "Wijzigen" 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 +#: ../../mod/ping.php:255 msgid "sent you a private message" msgstr "stuurde jou een privébericht" -#: ../../mod/ping.php:288 +#: ../../mod/ping.php:306 msgid "added your channel" msgstr "voegde jouw kanaal toe" -#: ../../mod/ping.php:329 +#: ../../mod/ping.php:347 msgid "posted an event" msgstr "plaatste een gebeurtenis" @@ -3928,471 +3948,540 @@ msgstr "plaatste een gebeurtenis" msgid "network" msgstr "netwerk" -#: ../../mod/settings.php:71 +#: ../../mod/settings.php:73 msgid "Name is required" msgstr "Naam is vereist" -#: ../../mod/settings.php:75 +#: ../../mod/settings.php:77 msgid "Key and Secret are required" msgstr "Key en secret zijn vereist" -#: ../../mod/settings.php:198 +#: ../../mod/settings.php:197 msgid "Passwords do not match. Password unchanged." msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../mod/settings.php:202 +#: ../../mod/settings.php:201 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../mod/settings.php:216 +#: ../../mod/settings.php:215 msgid "Password changed." msgstr "Wachtwoord veranderd." -#: ../../mod/settings.php:218 +#: ../../mod/settings.php:217 msgid "Password update failed. Please try again." msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:231 msgid "Not valid email." msgstr "Geen geldig e-mailadres." -#: ../../mod/settings.php:235 +#: ../../mod/settings.php:234 msgid "Protected email address. Cannot change to that email." msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." -#: ../../mod/settings.php:244 +#: ../../mod/settings.php:243 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 +#: ../../mod/settings.php:479 msgid "Settings updated." msgstr "Instellingen bijgewerkt." -#: ../../mod/settings.php:518 ../../mod/settings.php:544 -#: ../../mod/settings.php:580 +#: ../../mod/settings.php:548 ../../mod/settings.php:574 +#: ../../mod/settings.php:610 msgid "Add application" msgstr "Applicatie toevoegen" -#: ../../mod/settings.php:521 +#: ../../mod/settings.php:551 msgid "Name of application" msgstr "Naam van applicatie" -#: ../../mod/settings.php:522 ../../mod/settings.php:548 +#: ../../mod/settings.php:552 ../../mod/settings.php:578 msgid "Consumer Key" msgstr "Consumer key" -#: ../../mod/settings.php:522 ../../mod/settings.php:523 +#: ../../mod/settings.php:552 ../../mod/settings.php:553 msgid "Automatically generated - change if desired. Max length 20" msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" -#: ../../mod/settings.php:523 ../../mod/settings.php:549 +#: ../../mod/settings.php:553 ../../mod/settings.php:579 msgid "Consumer Secret" msgstr "Consumer secret" -#: ../../mod/settings.php:524 ../../mod/settings.php:550 +#: ../../mod/settings.php:554 ../../mod/settings.php:580 msgid "Redirect" msgstr "Redirect/doorverwijzing" -#: ../../mod/settings.php:524 +#: ../../mod/settings.php:554 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" -#: ../../mod/settings.php:525 ../../mod/settings.php:551 +#: ../../mod/settings.php:555 ../../mod/settings.php:581 msgid "Icon url" msgstr "URL van pictogram" -#: ../../mod/settings.php:525 +#: ../../mod/settings.php:555 msgid "Optional" msgstr "Optioneel" -#: ../../mod/settings.php:536 +#: ../../mod/settings.php:566 msgid "You can't edit this application." msgstr "Je kan deze applicatie niet bewerken" -#: ../../mod/settings.php:579 +#: ../../mod/settings.php:609 msgid "Connected Apps" msgstr "Verbonden applicaties" -#: ../../mod/settings.php:583 +#: ../../mod/settings.php:613 msgid "Client key starts with" msgstr "Client key begint met" -#: ../../mod/settings.php:584 +#: ../../mod/settings.php:614 msgid "No name" msgstr "Geen naam" -#: ../../mod/settings.php:585 +#: ../../mod/settings.php:615 msgid "Remove authorization" msgstr "Autorisatie verwijderen" -#: ../../mod/settings.php:596 +#: ../../mod/settings.php:626 msgid "No feature settings configured" msgstr "Geen plugin-instellingen ingesteld" -#: ../../mod/settings.php:604 +#: ../../mod/settings.php:634 msgid "Feature Settings" msgstr "Plugin-instellingen" -#: ../../mod/settings.php:627 +#: ../../mod/settings.php:657 msgid "Account Settings" msgstr "Account-instellingen" -#: ../../mod/settings.php:628 +#: ../../mod/settings.php:658 msgid "Password Settings" msgstr "Wachtwoord-instellingen" -#: ../../mod/settings.php:629 +#: ../../mod/settings.php:659 msgid "New Password:" msgstr "Nieuw wachtwoord:" -#: ../../mod/settings.php:630 +#: ../../mod/settings.php:660 msgid "Confirm:" msgstr "Bevestigen:" -#: ../../mod/settings.php:630 +#: ../../mod/settings.php:660 msgid "Leave password fields blank unless changing" msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" -#: ../../mod/settings.php:632 ../../mod/settings.php:954 +#: ../../mod/settings.php:662 ../../mod/settings.php:985 msgid "Email Address:" msgstr "E-mailadres:" -#: ../../mod/settings.php:633 ../../mod/removeaccount.php:61 +#: ../../mod/settings.php:663 ../../mod/removeaccount.php:61 msgid "Remove Account" msgstr "Account verwijderen" -#: ../../mod/settings.php:634 +#: ../../mod/settings.php:664 msgid "Remove this account from this server including all its channels" msgstr "Dit account en al zijn kanalen van deze RedMatrix-hub verwijderen" -#: ../../mod/settings.php:635 ../../mod/settings.php:1019 +#: ../../mod/settings.php:665 ../../mod/settings.php:1067 msgid "Warning: This action is permanent and cannot be reversed." msgstr "Waarschuwing: Deze handeling is van permanente aard en kan niet meer worden teruggedraaid." -#: ../../mod/settings.php:651 +#: ../../mod/settings.php:681 msgid "Off" msgstr "Uit" -#: ../../mod/settings.php:651 +#: ../../mod/settings.php:681 msgid "On" msgstr "Aan" -#: ../../mod/settings.php:658 +#: ../../mod/settings.php:688 msgid "Additional Features" msgstr "Extra functies" -#: ../../mod/settings.php:683 +#: ../../mod/settings.php:713 msgid "Connector Settings" msgstr "Instellingen externe koppelingen" -#: ../../mod/settings.php:713 ../../mod/admin.php:362 +#: ../../mod/settings.php:743 ../../mod/admin.php:362 msgid "No special theme for mobile devices" msgstr "Geen speciaal thema voor mobiele apparaten" -#: ../../mod/settings.php:722 +#: ../../mod/settings.php:752 #, php-format msgid "%s - (Experimental)" msgstr "%s - (experimenteel)" -#: ../../mod/settings.php:758 +#: ../../mod/settings.php:788 msgid "Display Settings" msgstr "Weergave-instellingen" -#: ../../mod/settings.php:764 +#: ../../mod/settings.php:794 msgid "Display Theme:" msgstr "Gebruik thema:" -#: ../../mod/settings.php:765 +#: ../../mod/settings.php:795 msgid "Mobile Theme:" msgstr "Mobiel thema:" -#: ../../mod/settings.php:766 +#: ../../mod/settings.php:796 msgid "Enable user zoom on mobile devices" msgstr "Inzoomen op smartphones en tablets toestaan" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:797 msgid "Update browser every xx seconds" msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:797 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimaal 10 seconde, geen maximum" -#: ../../mod/settings.php:768 +#: ../../mod/settings.php:798 msgid "Maximum number of conversations to load at any time:" msgstr "Maximaal aantal conversaties die per keer geladen worden:" -#: ../../mod/settings.php:768 +#: ../../mod/settings.php:798 msgid "Maximum of 100 items" msgstr "Maximaal 100 conversaties" -#: ../../mod/settings.php:769 +#: ../../mod/settings.php:799 msgid "Don't show emoticons" msgstr "Geen emoticons weergeven" -#: ../../mod/settings.php:770 +#: ../../mod/settings.php:800 msgid "Link post titles to source" msgstr "Berichtkoppen naar originele locatie linken" -#: ../../mod/settings.php:771 +#: ../../mod/settings.php:801 msgid "System Page Layout Editor - (advanced)" msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../mod/settings.php:807 +#: ../../mod/settings.php:835 msgid "Nobody except yourself" msgstr "Niemand, behalve jezelf" -#: ../../mod/settings.php:808 +#: ../../mod/settings.php:836 msgid "Only those you specifically allow" msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../mod/settings.php:809 +#: ../../mod/settings.php:837 msgid "Approved connections" msgstr "Geaccepteerde connecties" -#: ../../mod/settings.php:810 +#: ../../mod/settings.php:838 msgid "Any connections" msgstr "Alle connecties" -#: ../../mod/settings.php:811 +#: ../../mod/settings.php:839 msgid "Anybody on this website" msgstr "Iedereen op deze hub" -#: ../../mod/settings.php:812 +#: ../../mod/settings.php:840 msgid "Anybody in this network" msgstr "Iedereen in dit netwerk" -#: ../../mod/settings.php:813 +#: ../../mod/settings.php:841 msgid "Anybody authenticated" msgstr "Geauthenticeerd" -#: ../../mod/settings.php:814 +#: ../../mod/settings.php:842 msgid "Anybody on the internet" msgstr "Iedereen op het internet" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:916 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: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 "Nee" -#: ../../mod/settings.php:891 ../../mod/settings.php:896 -#: ../../mod/settings.php:973 ../../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 "Ja" -#: ../../mod/settings.php:896 +#: ../../mod/settings.php:921 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" -#: ../../mod/settings.php:900 ../../mod/profile_photo.php:365 +#: ../../mod/settings.php:925 ../../mod/profile_photo.php:365 msgid "or" msgstr "of" -#: ../../mod/settings.php:905 +#: ../../mod/settings.php:930 msgid "Your channel address is" msgstr "Jouw kanaaladres is" -#: ../../mod/settings.php:943 +#: ../../mod/settings.php:974 msgid "Channel Settings" msgstr "Kanaal-instellingen" -#: ../../mod/settings.php:952 +#: ../../mod/settings.php:983 msgid "Basic Settings" msgstr "Basis-instellingen" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:986 msgid "Your Timezone:" msgstr "Jouw tijdzone:" -#: ../../mod/settings.php:956 +#: ../../mod/settings.php:987 msgid "Default Post Location:" msgstr "Standaardlocatie bericht:" -#: ../../mod/settings.php:956 +#: ../../mod/settings.php:987 msgid "Geographical location to display on your posts" msgstr "Geografische locatie die bij het bericht moet worden vermeld" -#: ../../mod/settings.php:957 +#: ../../mod/settings.php:988 msgid "Use Browser Location:" msgstr "Locatie van webbrowser gebruiken:" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:990 msgid "Adult Content" msgstr "Inhoud voor volwassenen" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:990 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassen. (Gebruik de hashtag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" -#: ../../mod/settings.php:961 +#: ../../mod/settings.php:992 msgid "Security and Privacy Settings" -msgstr "Veiligheids- privacy-instellingen" +msgstr "Veiligheids- en privacy-instellingen" -#: ../../mod/settings.php:963 +#: ../../mod/settings.php:994 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." -#: ../../mod/settings.php:965 +#: ../../mod/settings.php:996 msgid "Hide my online presence" msgstr "Verberg mijn aanwezigheid" -#: ../../mod/settings.php:965 +#: ../../mod/settings.php:996 msgid "Prevents displaying in your profile that you are online" msgstr "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:998 msgid "Simple Privacy Settings:" msgstr "Eenvoudige privacy-instellingen:" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:999 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" -#: ../../mod/settings.php:969 +#: ../../mod/settings.php:1000 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" -#: ../../mod/settings.php:970 +#: ../../mod/settings.php:1001 msgid "Private - default private, never open or public" msgstr "Privé (standaard privé en nooit openbaar)" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:1002 msgid "Blocked - default blocked to/from everybody" msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" -#: ../../mod/settings.php:973 +#: ../../mod/settings.php:1004 msgid "Allow others to tag your posts" msgstr "Anderen toestaan om je berichten te labelen" -#: ../../mod/settings.php:973 +#: ../../mod/settings.php:1004 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:1006 msgid "Advanced Privacy Settings" msgstr "Geavanceerde privacy-instellingen" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:1008 msgid "Expire other channel content after this many days" msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:1008 msgid "0 or blank prevents expiration" msgstr "0 of leeg voorkomt het verlopen" -#: ../../mod/settings.php:978 +#: ../../mod/settings.php:1009 msgid "Maximum Friend Requests/Day:" msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../mod/settings.php:978 +#: ../../mod/settings.php:1009 msgid "May reduce spam activity" msgstr "Kan eventuele spam verminderen" -#: ../../mod/settings.php:979 +#: ../../mod/settings.php:1010 msgid "Default Post Permissions" msgstr "Standaard permissies voor nieuwe berichten" -#: ../../mod/settings.php:991 +#: ../../mod/settings.php:1015 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" + +#: ../../mod/settings.php:1023 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" -#: ../../mod/settings.php:991 +#: ../../mod/settings.php:1023 msgid "Useful to reduce spamming" msgstr "Kan eventuele spam verminderen" -#: ../../mod/settings.php:994 +#: ../../mod/settings.php:1026 msgid "Notification Settings" msgstr "Notificatie-instellingen" -#: ../../mod/settings.php:995 +#: ../../mod/settings.php:1027 msgid "By default post a status message when:" msgstr "Plaats automatisch een statusbericht wanneer:" -#: ../../mod/settings.php:996 +#: ../../mod/settings.php:1028 msgid "accepting a friend request" msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1029 msgid "joining a forum/community" msgstr "Je lid wordt van een groep/forum" -#: ../../mod/settings.php:998 +#: ../../mod/settings.php:1030 msgid "making an interesting profile change" msgstr "Er sprake is van een interessante profielwijziging" -#: ../../mod/settings.php:999 +#: ../../mod/settings.php:1031 msgid "Send a notification email when:" msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../mod/settings.php:1000 +#: ../../mod/settings.php:1032 msgid "You receive a connection request" msgstr "Je een connectieverzoek ontvangt" -#: ../../mod/settings.php:1001 +#: ../../mod/settings.php:1033 msgid "Your connections are confirmed" msgstr "Jouw connecties zijn bevestigd" -#: ../../mod/settings.php:1002 +#: ../../mod/settings.php:1034 msgid "Someone writes on your profile wall" msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../mod/settings.php:1003 +#: ../../mod/settings.php:1035 msgid "Someone writes a followup comment" msgstr "Iemand een reactie schrijft" -#: ../../mod/settings.php:1004 +#: ../../mod/settings.php:1036 msgid "You receive a private message" msgstr "Je een privé-bericht ontvangt" -#: ../../mod/settings.php:1005 +#: ../../mod/settings.php:1037 msgid "You receive a friend suggestion" msgstr "Je een kanaalvoorstel ontvangt" -#: ../../mod/settings.php:1006 +#: ../../mod/settings.php:1038 msgid "You are tagged in a post" msgstr "Je expliciet in een bericht bent genoemd" -#: ../../mod/settings.php:1007 +#: ../../mod/settings.php:1039 msgid "You are poked/prodded/etc. in a post" msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../mod/settings.php:1010 +#: ../../mod/settings.php:1042 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" + +#: ../../mod/settings.php:1044 +msgid "Unseen matrix activity" +msgstr "Niet bekeken matrix-activiteit" + +#: ../../mod/settings.php:1045 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" + +#: ../../mod/settings.php:1046 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" + +#: ../../mod/settings.php:1046 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 +msgid "Recommended" +msgstr "Aanbevolen" + +#: ../../mod/settings.php:1047 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" + +#: ../../mod/settings.php:1048 +msgid "Events today" +msgstr "Gebeurtissen van vandaag" + +#: ../../mod/settings.php:1049 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" + +#: ../../mod/settings.php:1049 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" + +#: ../../mod/settings.php:1050 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" + +#: ../../mod/settings.php:1051 +msgid "System info messages" +msgstr "Systeemmededelingen" + +#: ../../mod/settings.php:1052 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" + +#: ../../mod/settings.php:1053 +msgid "New connections" +msgstr "Nieuwe connecties" + +#: ../../mod/settings.php:1054 +msgid "System Registrations" +msgstr "Nieuwe accountregistraties op deze hub" + +#: ../../mod/settings.php:1056 +msgid "Notify me of events this many days in advance" +msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" + +#: ../../mod/settings.php:1056 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" + +#: ../../mod/settings.php:1058 msgid "Advanced Account/Page Type Settings" msgstr "Instellingen geavanceerd account/paginatype" -#: ../../mod/settings.php:1011 +#: ../../mod/settings.php:1059 msgid "Change the behaviour of this account for special situations" msgstr "Verander het gedrag van dit account voor speciale situaties" -#: ../../mod/settings.php:1014 +#: ../../mod/settings.php:1062 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" -#: ../../mod/settings.php:1015 +#: ../../mod/settings.php:1063 msgid "Miscellaneous Settings" msgstr "Diverse instellingen" -#: ../../mod/settings.php:1017 +#: ../../mod/settings.php:1065 msgid "Personal menu to display in your channel pages" msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../mod/settings.php:1018 +#: ../../mod/settings.php:1066 msgid "Remove this channel" msgstr "Verwijder dit kanaal" @@ -4458,12 +4547,12 @@ msgstr "Ophalen URL gaf een foutmelding terug: %1$s" msgid "Invalid item." msgstr "Ongeldig item." -#: ../../mod/block.php:39 ../../mod/page.php:45 ../../mod/wall_upload.php:28 +#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 msgid "Channel not found." msgstr "Kanaal niet gevonden." -#: ../../mod/block.php:75 ../../mod/page.php:81 ../../mod/display.php:102 -#: ../../mod/help.php:72 ../../index.php:240 +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 msgid "Page not found." msgstr "Pagina niet gevonden." @@ -4518,18 +4607,6 @@ msgstr "Hubbeheerders: " msgid "Block Name" msgstr "Bloknaam" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" - #: ../../mod/profiles.php:18 ../../mod/profiles.php:165 #: ../../mod/profiles.php:222 ../../mod/profiles.php:547 msgid "Profile not found." @@ -5146,7 +5223,7 @@ msgstr "Restricties voor connecties van premiumkanaal toestaan" 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." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." #: ../../mod/connect.php:89 ../../mod/connect.php:109 msgid "" @@ -5201,15 +5278,15 @@ msgstr "Ongeldige connectie." msgid "Could not access contact record." msgstr "Kon geen toegang krijgen tot de connectie-gegevens." -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 +#: ../../mod/connections.php:51 ../../mod/connedit.php:86 msgid "Could not locate selected profile." msgstr "Kon het gekozen profiel niet vinden." -#: ../../mod/connections.php:94 ../../mod/connedit.php:132 +#: ../../mod/connections.php:94 ../../mod/connedit.php:140 msgid "Connection updated." msgstr "Connectie bijgewerkt." -#: ../../mod/connections.php:96 ../../mod/connedit.php:134 +#: ../../mod/connections.php:96 ../../mod/connedit.php:142 msgid "Failed to update connection record." msgstr "Bijwerken van connectie-gegevens mislukt." @@ -5294,242 +5371,239 @@ msgstr "Zoeken naar: " msgid "Edit post" msgstr "Bericht bewerken" -#: ../../mod/connedit.php:181 +#: ../../mod/connedit.php:189 msgid "is now connected to" msgstr "is nu verbonden met" -#: ../../mod/connedit.php:296 +#: ../../mod/connedit.php:310 msgid "Could not access address book record." msgstr "Kon geen toegang krijgen tot de record van de connectie." -#: ../../mod/connedit.php:310 +#: ../../mod/connedit.php:324 msgid "Refresh failed - channel is currently unavailable." msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../mod/connedit.php:317 +#: ../../mod/connedit.php:331 msgid "Channel has been unblocked" msgstr "Kanaal is gedeblokkeerd" -#: ../../mod/connedit.php:318 +#: ../../mod/connedit.php:332 msgid "Channel has been blocked" msgstr "Kanaal is geblokkeerd" -#: ../../mod/connedit.php:322 ../../mod/connedit.php:334 -#: ../../mod/connedit.php:346 ../../mod/connedit.php:358 -#: ../../mod/connedit.php:374 +#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 +#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 +#: ../../mod/connedit.php:388 msgid "Unable to set address book parameters." msgstr "Niet in staat om de parameters van connecties in te stellen." -#: ../../mod/connedit.php:329 +#: ../../mod/connedit.php:343 msgid "Channel has been unignored" msgstr "Kanaal wordt niet meer genegeerd" -#: ../../mod/connedit.php:330 +#: ../../mod/connedit.php:344 msgid "Channel has been ignored" msgstr "Kanaal wordt genegeerd" -#: ../../mod/connedit.php:341 +#: ../../mod/connedit.php:355 msgid "Channel has been unarchived" msgstr "Kanaal is niet meer gearchiveerd" -#: ../../mod/connedit.php:342 +#: ../../mod/connedit.php:356 msgid "Channel has been archived" msgstr "Kanaal is gearchiveerd" -#: ../../mod/connedit.php:353 +#: ../../mod/connedit.php:367 msgid "Channel has been unhidden" msgstr "Kanaal is niet meer verborgen" -#: ../../mod/connedit.php:354 +#: ../../mod/connedit.php:368 msgid "Channel has been hidden" msgstr "Kanaal is verborgen" -#: ../../mod/connedit.php:369 +#: ../../mod/connedit.php:383 msgid "Channel has been approved" msgstr "Connectie/kanaal is geaccepteerd" -#: ../../mod/connedit.php:370 +#: ../../mod/connedit.php:384 msgid "Channel has been unapproved" msgstr "Connectie/kanaal is afgewezen" -#: ../../mod/connedit.php:398 +#: ../../mod/connedit.php:412 msgid "Connection has been removed." msgstr "Connectie is verwijderd" -#: ../../mod/connedit.php:418 +#: ../../mod/connedit.php:432 #, php-format msgid "View %s's profile" msgstr "Profiel van %s weergeven" -#: ../../mod/connedit.php:422 +#: ../../mod/connedit.php:436 msgid "Refresh Permissions" msgstr "Permissies vernieuwen" -#: ../../mod/connedit.php:425 +#: ../../mod/connedit.php:439 msgid "Fetch updated permissions" msgstr "Aangepaste permissies ophalen" -#: ../../mod/connedit.php:429 +#: ../../mod/connedit.php:443 msgid "Recent Activity" msgstr "Recente activiteit" -#: ../../mod/connedit.php:432 +#: ../../mod/connedit.php:446 msgid "View recent posts and comments" msgstr "Recente berichten en reacties weergeven" -#: ../../mod/connedit.php:436 ../../mod/connedit.php:579 +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 #: ../../mod/admin.php:734 msgid "Unblock" msgstr "Deblokkeren" -#: ../../mod/connedit.php:436 ../../mod/connedit.php:579 +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 #: ../../mod/admin.php:733 msgid "Block" msgstr "Blokkeren" -#: ../../mod/connedit.php:439 +#: ../../mod/connedit.php:453 msgid "Block or Unblock this connection" msgstr "Deze connectie blokkeren of deblokkeren" -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 msgid "Unignore" msgstr "Niet meer negeren" -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 #: ../../mod/notifications.php:51 msgid "Ignore" msgstr "Negeren" -#: ../../mod/connedit.php:446 +#: ../../mod/connedit.php:460 msgid "Ignore or Unignore this connection" msgstr "Deze connectie negeren of niet meer negeren" -#: ../../mod/connedit.php:449 +#: ../../mod/connedit.php:463 msgid "Unarchive" msgstr "Niet meer archiveren" -#: ../../mod/connedit.php:449 +#: ../../mod/connedit.php:463 msgid "Archive" msgstr "Archiveren" -#: ../../mod/connedit.php:452 +#: ../../mod/connedit.php:466 msgid "Archive or Unarchive this connection" msgstr "Deze connectie archiveren of niet meer archiveren" -#: ../../mod/connedit.php:455 +#: ../../mod/connedit.php:469 msgid "Unhide" msgstr "Niet meer verbergen" -#: ../../mod/connedit.php:455 +#: ../../mod/connedit.php:469 msgid "Hide" msgstr "Verbergen" -#: ../../mod/connedit.php:458 +#: ../../mod/connedit.php:472 msgid "Hide or Unhide this connection" msgstr "Deze connectie verbergen of niet meer verbergen" -#: ../../mod/connedit.php:465 +#: ../../mod/connedit.php:479 msgid "Delete this connection" msgstr "Deze connectie verwijderen" -#: ../../mod/connedit.php:508 ../../mod/connedit.php:537 +#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 msgid "Approve this connection" msgstr "Deze connectie accepteren" -#: ../../mod/connedit.php:508 +#: ../../mod/connedit.php:522 msgid "Accept connection to allow communication" msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../mod/connedit.php:524 -msgid "Automatic Permissions Settings" -msgstr "Automatische permissies" - -#: ../../mod/connedit.php:524 +#: ../../mod/connedit.php:538 #, php-format msgid "Connections: settings for %s" msgstr "Connecties: instellingen voor %s" -#: ../../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 "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/connedit.php:539 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" -#: ../../mod/connedit.php:530 +#: ../../mod/connedit.php:543 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen." + +#: ../../mod/connedit.php:545 msgid "Slide to adjust your degree of friendship" msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../mod/connedit.php:536 +#: ../../mod/connedit.php:551 msgid "inherited" msgstr "geërfd" -#: ../../mod/connedit.php:538 +#: ../../mod/connedit.php:553 msgid "Connection has no individual permissions!" msgstr "Connectie heeft geen individuele permissies!" -#: ../../mod/connedit.php:539 +#: ../../mod/connedit.php:554 msgid "" "This may be appropriate based on your privacy " "settings, though you may wish to review the \"Advanced Permissions\"." msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." -#: ../../mod/connedit.php:541 +#: ../../mod/connedit.php:556 msgid "Profile Visibility" msgstr "Zichtbaarheid profiel" -#: ../../mod/connedit.php:542 +#: ../../mod/connedit.php:557 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." -#: ../../mod/connedit.php:543 +#: ../../mod/connedit.php:558 msgid "Contact Information / Notes" msgstr "Informatie/aantekeningen over connectie" -#: ../../mod/connedit.php:544 +#: ../../mod/connedit.php:559 msgid "Edit contact notes" msgstr "Bewerk aantekeningen over contact" -#: ../../mod/connedit.php:546 +#: ../../mod/connedit.php:561 msgid "Their Settings" msgstr "Hun instellingen" -#: ../../mod/connedit.php:547 +#: ../../mod/connedit.php:562 msgid "My Settings" msgstr "Mijn instellingen" -#: ../../mod/connedit.php:549 +#: ../../mod/connedit.php:564 msgid "Clear/Disable Automatic Permissions" msgstr "Verwijderen/uitschakelen automatische permissies" -#: ../../mod/connedit.php:550 +#: ../../mod/connedit.php:565 msgid "Forum Members" msgstr "Forum/groepsleden" -#: ../../mod/connedit.php:551 +#: ../../mod/connedit.php:566 msgid "Soapbox" msgstr "Zeepkist" -#: ../../mod/connedit.php:552 +#: ../../mod/connedit.php:567 msgid "Full Sharing (typical social network permissions)" msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" -#: ../../mod/connedit.php:553 +#: ../../mod/connedit.php:568 msgid "Cautious Sharing " msgstr "Voorzichtig delen" -#: ../../mod/connedit.php:554 +#: ../../mod/connedit.php:569 msgid "Follow Only" msgstr "Alleen volgen" -#: ../../mod/connedit.php:555 +#: ../../mod/connedit.php:570 msgid "Individual Permissions" msgstr "Individuele permissies" -#: ../../mod/connedit.php:556 +#: ../../mod/connedit.php:571 msgid "" "Some permissions may be inherited from your channel privacy settings, which have higher priority than " @@ -5537,72 +5611,72 @@ msgid "" "have no effect." msgstr "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." -#: ../../mod/connedit.php:557 +#: ../../mod/connedit.php:572 msgid "Advanced Permissions" msgstr "Geavanceerde permissies" -#: ../../mod/connedit.php:558 +#: ../../mod/connedit.php:573 msgid "Simple Permissions (select one and submit)" msgstr "Eenvoudige permissies (selecteer er één en opslaan)" -#: ../../mod/connedit.php:562 +#: ../../mod/connedit.php:577 #, php-format msgid "Visit %s's profile - %s" msgstr "Profiel van %s bezoeken - %s" -#: ../../mod/connedit.php:563 +#: ../../mod/connedit.php:578 msgid "Block/Unblock contact" msgstr "Connectie blokkeren/deblokkeren" -#: ../../mod/connedit.php:564 +#: ../../mod/connedit.php:579 msgid "Ignore contact" msgstr "Connectie negeren" -#: ../../mod/connedit.php:565 +#: ../../mod/connedit.php:580 msgid "Repair URL settings" msgstr "URL-instellingen repareren" -#: ../../mod/connedit.php:566 +#: ../../mod/connedit.php:581 msgid "View conversations" msgstr "Conversaties weergeven" -#: ../../mod/connedit.php:568 +#: ../../mod/connedit.php:583 msgid "Delete contact" msgstr "Connectie verwijderen" -#: ../../mod/connedit.php:571 +#: ../../mod/connedit.php:586 msgid "Last update:" msgstr "Laatste wijziging:" -#: ../../mod/connedit.php:573 +#: ../../mod/connedit.php:588 msgid "Update public posts" msgstr "Openbare berichten updaten" -#: ../../mod/connedit.php:575 +#: ../../mod/connedit.php:590 msgid "Update now" msgstr "Nu updaten" -#: ../../mod/connedit.php:581 +#: ../../mod/connedit.php:596 msgid "Currently blocked" msgstr "Momenteel geblokkeerd" -#: ../../mod/connedit.php:582 +#: ../../mod/connedit.php:597 msgid "Currently ignored" msgstr "Momenteel genegeerd" -#: ../../mod/connedit.php:583 +#: ../../mod/connedit.php:598 msgid "Currently archived" msgstr "Momenteel gearchiveerd" -#: ../../mod/connedit.php:584 +#: ../../mod/connedit.php:599 msgid "Currently pending" msgstr "Moeten nog geaccepteerd of afgewezen worden" -#: ../../mod/connedit.php:585 +#: ../../mod/connedit.php:600 msgid "Hide this contact from others" msgstr "Verberg deze connectie voor anderen" -#: ../../mod/connedit.php:585 +#: ../../mod/connedit.php:600 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven" @@ -5662,6 +5736,18 @@ msgstr "vorige pagina" msgid "No entries (some entries may be hidden)." msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" + #: ../../mod/dirprofile.php:108 msgid "Status: " msgstr "Status: " @@ -5690,6 +5776,10 @@ msgstr "Trefwoorden: " msgid "This site is not a directory server" msgstr "Deze hub is geen kanalengidshub (directoryserver)" +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" + #: ../../mod/setup.php:162 msgid "Red Matrix Server - Setup" msgstr "RedMatrix Server - Setup" @@ -6154,9 +6244,22 @@ msgstr "Webpagina verwijderen?" msgid "Delete Webpage" msgstr "Webpagina verwijderen" -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix - gasttoegang: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++" +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "Webpagina" + +#: ../../mod/impel.php:38 +msgid "block" +msgstr "blok" + +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "lay-out" + +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" #: ../../mod/profile_photo.php:108 msgid "Image uploaded but image cropping failed." @@ -6329,6 +6432,14 @@ msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" 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/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 +msgid "Help:" +msgstr "Hulp:" + +#: ../../mod/help.php:67 ../../index.php:238 +msgid "Not Found" +msgstr "Niet gevonden" + #: ../../mod/follow.php:25 msgid "Channel added." msgstr "Kanaal toegevoegd." @@ -6414,23 +6525,53 @@ msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." 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/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Hulp:" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" -#: ../../mod/help.php:69 ../../index.php:237 -msgid "Not Found" -msgstr "Niet gevonden" +#: ../../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/tagrm.php:41 +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." + +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ongeldig verzoek" + +#: ../../mod/like.php:119 +msgid "thing" +msgstr "ding" + +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." + +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" + +#: ../../mod/like.php:430 +msgid "Action completed." +msgstr "Actie voltooid" + +#: ../../mod/like.php:431 +msgid "Thank you." +msgstr "Bedankt" + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 msgid "Tag removed" msgstr "Label verwijderd" -#: ../../mod/tagrm.php:79 +#: ../../mod/tagrm.php:119 msgid "Remove Item Tag" msgstr "Verwijder itemlabel" -#: ../../mod/tagrm.php:81 +#: ../../mod/tagrm.php:121 msgid "Select a tag to remove: " msgstr "Kies een label om te verwijderen" @@ -6579,7 +6720,7 @@ msgstr "Standaardthema" 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" +msgstr "Standaardthema voor RedMatrix-hub (kan door lid veranderd worden) - verander thema-instellingen" #: ../../mod/admin.php:427 msgid "Mobile system theme" @@ -6678,7 +6819,7 @@ msgstr "Openbare toegang blokkeren" 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." +msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor ingelogde leden." #: ../../mod/admin.php:440 msgid "Verify Email Addresses" @@ -6717,15 +6858,15 @@ 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)" +msgstr "Vink dit aan om het inlogformulier op de homepage van deze hub, die niet-ingelogde bezoekers 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" +msgstr "Gebruikersnaam proxy" #: ../../mod/admin.php:446 msgid "Proxy URL" -msgstr "Proxy-URL" +msgstr "URL proxy" #: ../../mod/admin.php:447 msgid "Network timeout" @@ -6852,7 +6993,7 @@ msgstr "Account '%s' gedeblokkeerd" #: ../../mod/admin.php:658 #, php-format msgid "User '%s' blocked" -msgstr "Gebruiker '%s' geblokkeerd" +msgstr "Lid '%s' geblokkeerd" #: ../../mod/admin.php:724 ../../mod/admin.php:736 msgid "Users" @@ -7290,28 +7431,28 @@ msgstr "of bezoek " msgid "3. Click [Connect]" msgstr "3. Klik op [+ Verbinden]" -#: ../../mod/item.php:150 +#: ../../mod/item.php:151 msgid "Unable to locate original post." msgstr "Niet in staat om de originele locatie van het bericht te vinden. " -#: ../../mod/item.php:409 +#: ../../mod/item.php:411 msgid "Empty post discarded." msgstr "Leeg bericht geannuleerd" -#: ../../mod/item.php:451 +#: ../../mod/item.php:453 msgid "Executable content type not permitted to this channel." msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../mod/item.php:881 +#: ../../mod/item.php:891 msgid "System error. Post not saved." msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../mod/item.php:1349 +#: ../../mod/item.php:1366 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." -#: ../../mod/item.php:1355 +#: ../../mod/item.php:1372 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." @@ -7329,43 +7470,33 @@ msgstr "Hulp voor dit onderdeel" msgid "Layout Name" msgstr "Naam lay-out" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" +#: ../../mod/locs.php:19 ../../mod/locs.php:46 +msgid "Location not found." +msgstr "Locatie niet gevonden." -#: ../../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/locs.php:50 +msgid "Primary location cannot be removed." +msgstr "Primaire locatie kan niet worden verwijderd." -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." +#: ../../mod/locs.php:82 +msgid "No locations found." +msgstr "Geen locaties gevonden." -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ongeldig verzoek" +#: ../../mod/locs.php:95 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" -#: ../../mod/like.php:119 -msgid "thing" -msgstr "ding" +#: ../../mod/locs.php:96 +msgid "Location (address)" +msgstr "Locatie (adres)" -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." +#: ../../mod/locs.php:97 +msgid "Primary Location" +msgstr "Primaire locatie" -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" - -#: ../../mod/like.php:417 -msgid "Action completed." -msgstr "Actie voltooid" - -#: ../../mod/like.php:418 -msgid "Thank you." -msgstr "Bedankt" +#: ../../mod/locs.php:98 +msgid "Drop location" +msgstr "Locatie verwijderen" #: ../../mod/lockview.php:31 msgid "Remote privacy information not available." @@ -7412,7 +7543,7 @@ msgid "" "Password reset failed." msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." -#: ../../mod/lostpass.php:85 ../../boot.php:1506 +#: ../../mod/lostpass.php:85 ../../boot.php:1523 msgid "Password Reset" msgstr "Wachtwoord vergeten?" @@ -7857,31 +7988,6 @@ msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het msgid "No service class restrictions found." msgstr "Geen abonnementsbeperkingen gevonden." -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webpagina" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "blok" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "lay-out" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" - -#: ../../mod/locs.php:47 ../../mod/locs.php:74 -msgid "Location not found." -msgstr "Locatie niet gevonden." - -#: ../../mod/locs.php:78 -msgid "Primary location cannot be removed." -msgstr "Primaire locatie kan niet worden verwijderd." - #: ../../view/theme/apw/php/config.php:202 #: ../../view/theme/apw/php/config.php:236 msgid "Schema Default" @@ -8167,41 +8273,41 @@ msgstr "Rommelig vormgegeven fotoalbums" msgid "Are you a clean desk or a messy desk person?" msgstr "Ben je iemand die van een opgeruimd bureau houdt of van een rommelig bureau?" -#: ../../boot.php:1294 +#: ../../boot.php:1311 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1297 +#: ../../boot.php:1314 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1471 +#: ../../boot.php:1488 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix" -#: ../../boot.php:1499 +#: ../../boot.php:1516 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1500 +#: ../../boot.php:1517 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1505 +#: ../../boot.php:1522 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:1570 +#: ../../boot.php:1587 msgid "permission denied" msgstr "toegang geweigerd" -#: ../../boot.php:1571 +#: ../../boot.php:1588 msgid "Got Zot?" msgstr "Heb je Zot?" -#: ../../boot.php:2005 +#: ../../boot.php:2021 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" diff --git a/view/nl/strings.php b/view/nl/strings.php index ead04a495..0266e732b 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -7,28 +7,6 @@ function string_plural_select_nl($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; $a->strings["Profile Photos"] = "Profielfoto's"; -$a->strings["view full size"] = "volledige grootte tonen"; -$a->strings["Embedded content"] = "Ingesloten inhoud"; -$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["(Unknown)"] = "(Onbekend)"; -$a->strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -$a->strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -$a->strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -$a->strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -$a->strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -$a->strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -$a->strings["Visible to approved connections."] = "Voor alle goedgekeurde connecties zichtbaar."; -$a->strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["Collection not found."] = "Collectie niet gevonden."; -$a->strings["Collection is empty."] = "Collectie is leeg"; -$a->strings["Collection: %s"] = "Collectie: %s"; -$a->strings["Connection: %s"] = "Connectie: %s"; -$a->strings["Connection not found."] = "Connectie niet gevonden."; -$a->strings["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"; @@ -63,6 +41,7 @@ $a->strings["Purchase"] = "Aanschaffen"; $a->strings["Edit"] = "Bewerken"; $a->strings["Delete"] = "Verwijderen"; $a->strings["Unknown"] = "Onbekend"; +$a->strings["Permission denied."] = "Toegang geweigerd"; $a->strings["Item was not found."] = "Item niet gevonden"; $a->strings["No source file."] = "Geen bronbestand."; $a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; @@ -77,144 +56,6 @@ $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["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["Categories"] = "Categorieën"; -$a->strings["Apps"] = "Apps"; -$a->strings["System"] = "Systeem"; -$a->strings["Personal"] = "Persoonlijk"; -$a->strings["Create Personal App"] = "Persoonlijke app maken"; -$a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; -$a->strings["Suggestions"] = "Voorgestelde kanalen"; -$a->strings["See more..."] = "Meer..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -$a->strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -$a->strings["Enter the channel address"] = "Vul het adres van het nieuwe kanaal in"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: bob@example.com, http://example.com/barbara"; -$a->strings["Notes"] = "Aantekeningen"; -$a->strings["Save"] = "Opslaan"; -$a->strings["Remove term"] = "Verwijder zoekterm"; -$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -$a->strings["add"] = "toevoegen"; -$a->strings["Saved Folders"] = "Bewaarde mappen"; -$a->strings["Everything"] = "Alles"; -$a->strings["Archives"] = "Archieven"; -$a->strings["Refresh"] = "Vernieuwen"; -$a->strings["Me"] = "Ik"; -$a->strings["Best Friends"] = "Goede vrienden"; -$a->strings["Friends"] = "Vrienden"; -$a->strings["Co-workers"] = "Collega's"; -$a->strings["Former Friends"] = "Oude vrienden"; -$a->strings["Acquaintances"] = "Kennissen"; -$a->strings["Everybody"] = "Iedereen"; -$a->strings["Account settings"] = "Account"; -$a->strings["Channel settings"] = "Kanaal"; -$a->strings["Additional features"] = "Extra functies"; -$a->strings["Feature settings"] = "Plug-ins"; -$a->strings["Display settings"] = "Weergave"; -$a->strings["Connected apps"] = "Verbonden applicaties"; -$a->strings["Export channel"] = "Kanaal exporteren"; -$a->strings["Export content"] = "Inhoud exporteren"; -$a->strings["Automatic Permissions (Advanced)"] = "Automatische permissies (geavanceerd)"; -$a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -$a->strings["Channel Sources"] = "Kanaalbronnen"; -$a->strings["Messages"] = "Berichten"; -$a->strings["Check Mail"] = "Controleer op nieuwe berichten"; -$a->strings["New Message"] = "Nieuw bericht"; -$a->strings["Chat Rooms"] = "Chatkanalen"; -$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -$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["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[" 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["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["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["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["Full Name:"] = "Volledige naam:"; -$a->strings["Like this channel"] = "Vind dit kanaal leuk"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Geboortedatum:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Seksuele voorkeur:"; -$a->strings["Hometown:"] = "Oorspronkelijk uit:"; -$a->strings["Tags:"] = "Trefwoorden:"; -$a->strings["Political Views:"] = "Politieke overtuigingen:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["About:"] = "Over:"; -$a->strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -$a->strings["Likes:"] = "Houdt van:"; -$a->strings["Dislikes:"] = "Houdt niet van:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["My other channels:"] = "Mijn andere kanalen"; -$a->strings["Musical interests:"] = "Muzikale interesses:"; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie:"; -$a->strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -$a->strings["Love/Romance:"] = "Liefde/romantiek:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Like this thing"] = "Vind dit ding leuk"; $a->strings["photo"] = "foto"; $a->strings["event"] = "gebeurtenis"; $a->strings["channel"] = "kanaal"; @@ -247,6 +88,7 @@ $a->strings["View Status"] = "Status weergeven"; $a->strings["View Profile"] = "Profiel weergeven"; $a->strings["View Photos"] = "Foto's weergeven"; $a->strings["Matrix Activity"] = "Activiteit in de RedMatrix"; +$a->strings["Connect"] = "Verbinden"; $a->strings["Edit Contact"] = "Contact bewerken"; $a->strings["Send PM"] = "Privébericht verzenden"; $a->strings["%s likes this."] = "%s vindt dit leuk."; @@ -274,6 +116,7 @@ $a->strings["Tag term:"] = "Label:"; $a->strings["Save to Folder:"] = "Bewaar in map: "; $a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; $a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; +$a->strings["Preview"] = "Voorvertoning"; $a->strings["Share"] = "Delen"; $a->strings["Page link title"] = "Titel van paginalink"; $a->strings["Post as"] = "Bericht plaatsen als"; @@ -307,6 +150,7 @@ $a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; $a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; $a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; $a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +$a->strings["Personal"] = "Persoonlijk"; $a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; $a->strings["New"] = "Nieuw"; $a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; @@ -318,13 +162,261 @@ $a->strings["Channel"] = "Kanaal"; $a->strings["Status Messages and Posts"] = "Berichten in dit kanaal"; $a->strings["About"] = "Over"; $a->strings["Profile Details"] = "Profiel"; +$a->strings["Photo Albums"] = "Fotoalbums"; $a->strings["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["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["New Page"] = "Nieuwe pagina"; +$a->strings["View"] = "Weergeven"; +$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["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["Embedded content"] = "Ingesloten inhoud"; +$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; +$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["Special Purpose"] = "Speciaal doel"; +$a->strings["Celebrity/Soapbox"] = "Beroemdheid/alleen volgen"; +$a->strings["Group Repository"] = "Groepsopslag"; +$a->strings["Other"] = "Anders"; +$a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +$a->strings[" 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["Miscellaneous"] = "Diversen"; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["year"] = "jaar"; +$a->strings["years"] = "jaren"; +$a->strings["month"] = "maand"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$a->strings["day"] = "dag"; +$a->strings["days"] = "dagen"; +$a->strings["hour"] = "uur"; +$a->strings["hours"] = "uren"; +$a->strings["minute"] = "minuut"; +$a->strings["minutes"] = "minuten"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "seconden"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +$a->strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; +$a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +$a->strings["Attachments:"] = "Bijlagen:"; +$a->strings["Redmatrix event notification:"] = "Notificatie RedMatrix-gebeurtenis:"; +$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["Logged out."] = "Uitgelogd."; $a->strings["Failed authentication"] = "Mislukte authenticatie"; $a->strings["Login failed."] = "Inloggen mislukt."; +$a->strings["parent"] = "omhoog"; +$a->strings["Collection"] = "map"; +$a->strings["Principal"] = "principal"; +$a->strings["Addressbook"] = "Adresboek"; +$a->strings["Calendar"] = "Agenda"; +$a->strings["Schedule Inbox"] = "Planning-postvak IN"; +$a->strings["Schedule Outbox"] = "Planning-postvak UIT"; +$a->strings["%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["Default"] = "Standaard"; +$a->strings["Frequently"] = "Regelmatig"; +$a->strings["Hourly"] = "Elk uur"; +$a->strings["Twice daily"] = "Twee keer per dag"; +$a->strings["Daily"] = "Dagelijks"; +$a->strings["Weekly"] = "Wekelijks"; +$a->strings["Monthly"] = "Maandelijks"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-mail"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["%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["Not a valid email address"] = "Geen geldig e-mailadres"; +$a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan"; +$a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd."; +$a->strings["An invitation is required."] = "Een uitnodiging is vereist"; +$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; +$a->strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +$a->strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +$a->strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +$a->strings["Administrator"] = "Beheerder"; +$a->strings["your registration password"] = "jouw registratiewachtwoord"; +$a->strings["Registration details for %s"] = "Registratiegegevens voor %s"; +$a->strings["Account approved."] = "Account goedgekeurd"; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; +$a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +$a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +$a->strings["Image/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["Sort Options"] = "Sorteeropties"; +$a->strings["Alphabetic"] = "Alfabetisch"; +$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; +$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["Tags"] = "Labels"; +$a->strings["Keywords"] = "Trefwoorden"; +$a->strings["have"] = "heb"; +$a->strings["has"] = "heeft"; +$a->strings["want"] = "wil"; +$a->strings["wants"] = "wil"; +$a->strings["like"] = "vind dit leuk"; +$a->strings["likes"] = "vindt dit leuk"; +$a->strings["dislike"] = "vind dit niet leuk"; +$a->strings["dislikes"] = "vindt dit niet leuk"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); +$a->strings["Red Matrix Notification"] = "RedMatrix-notificatie"; +$a->strings["redmatrix"] = "RedMatrix"; +$a->strings["Thank You,"] = "Bedankt,"; +$a->strings["%s Administrator"] = "Beheerder %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notificatie] Nieuw privébericht ontvangen op %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; +$a->strings["a private message"] = "een privébericht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notificatie] %s heeft je genoemd"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notificatie] %1\$s heeft je aangestoten"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notificatie] %s heeft jouw bericht gelabeld"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s labelde jouw bericht om %3\$s"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s labelde [zrl=%3\$s]jouw bericht[/zrl]"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Notificatie] Connectieverzoek ontvangen"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; +$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificatie] Kanaalvoorstel ontvangen"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; +$a->strings["Name:"] = "Naam:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; +$a->strings["[Red:Notify]"] = "[Red:Notificatie]"; +$a->strings["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["prev"] = "vorige"; $a->strings["first"] = "eerste"; $a->strings["last"] = "laatste"; @@ -337,6 +429,7 @@ $a->strings["%d Connection"] = array( 1 => "%d connecties", ); $a->strings["View Connections"] = "Connecties weergeven"; +$a->strings["Save"] = "Opslaan"; $a->strings["poke"] = "aanstoten"; $a->strings["ping"] = "ping"; $a->strings["pinged"] = "gepingd"; @@ -404,76 +497,184 @@ $a->strings["Blocks"] = "Blokken"; $a->strings["Menus"] = "Menu's"; $a->strings["Layouts"] = "Lay-outs"; $a->strings["Pages"] = "Pagina's"; -$a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -$a->strings["Tags"] = "Labels"; -$a->strings["Keywords"] = "Trefwoorden"; -$a->strings["have"] = "heb"; -$a->strings["has"] = "heeft"; -$a->strings["want"] = "wil"; -$a->strings["wants"] = "wil"; -$a->strings["like"] = "vind dit leuk"; -$a->strings["likes"] = "vindt dit leuk"; -$a->strings["dislike"] = "vind dit niet leuk"; -$a->strings["dislikes"] = "vindt dit niet leuk"; -$a->strings["Default"] = "Standaard"; -$a->strings["Frequently"] = "Regelmatig"; -$a->strings["Hourly"] = "Elk uur"; -$a->strings["Twice daily"] = "Twee keer per dag"; -$a->strings["Daily"] = "Dagelijks"; -$a->strings["Weekly"] = "Wekelijks"; -$a->strings["Monthly"] = "Maandelijks"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-mail"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["%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["%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["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"] = "Registratiebevestiging voor %s"; -$a->strings["Administrator"] = "Beheerder"; -$a->strings["your registration password"] = "jouw registratiewachtwoord"; -$a->strings["Registration details for %s"] = "Registratiegegevens voor %s"; -$a->strings["Account approved."] = "Account goedgekeurd"; -$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -$a->strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; -$a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -$a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +$a->strings["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["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["Edit Profile"] = "Profiel bewerken"; +$a->strings["Profile Image"] = "Profielfoto"; +$a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; +$a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; +$a->strings["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepagina:"; +$a->strings["Online Now"] = "Nu online"; +$a->strings["g A l F d"] = "G:i, l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[vandaag]"; +$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; +$a->strings["[No description]"] = "[Geen omschrijving]"; +$a->strings["Event Reminders"] = "Herinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["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["Apps"] = "Apps"; +$a->strings["System"] = "Systeem"; +$a->strings["Create Personal App"] = "Persoonlijke app maken"; +$a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; +$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; +$a->strings["Suggestions"] = "Voorgestelde kanalen"; +$a->strings["See more..."] = "Meer..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +$a->strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +$a->strings["Enter the channel address"] = "Vul het adres van het nieuwe kanaal in"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: bob@example.com, http://example.com/barbara"; +$a->strings["Notes"] = "Aantekeningen"; +$a->strings["Remove term"] = "Verwijder zoekterm"; +$a->strings["Archives"] = "Archieven"; +$a->strings["Refresh"] = "Vernieuwen"; +$a->strings["Me"] = "Ik"; +$a->strings["Best Friends"] = "Goede vrienden"; +$a->strings["Co-workers"] = "Collega's"; +$a->strings["Former Friends"] = "Oude vrienden"; +$a->strings["Acquaintances"] = "Kennissen"; +$a->strings["Everybody"] = "Iedereen"; +$a->strings["Account settings"] = "Account"; +$a->strings["Channel settings"] = "Kanaal"; +$a->strings["Additional features"] = "Extra functies"; +$a->strings["Feature settings"] = "Plug-ins"; +$a->strings["Display settings"] = "Weergave"; +$a->strings["Connected apps"] = "Verbonden applicaties"; +$a->strings["Export channel"] = "Kanaal exporteren"; +$a->strings["Export content"] = "Inhoud exporteren"; +$a->strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; +$a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +$a->strings["Messages"] = "Berichten"; +$a->strings["Check Mail"] = "Controleer op nieuwe berichten"; +$a->strings["New Message"] = "Nieuw bericht"; +$a->strings["Chat Rooms"] = "Chatkanalen"; +$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +$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["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["Logout"] = "Uitloggen"; $a->strings["End this session"] = "Beëindig deze sessie"; $a->strings["Home"] = "Home"; @@ -520,203 +721,21 @@ $a->strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; $a->strings["Admin"] = "Beheer"; $a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; $a->strings["Please wait..."] = "Wachten aub..."; -$a->strings["Sort Options"] = "Sorteeropties"; -$a->strings["Alphabetic"] = "Alfabetisch"; -$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; -$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["[Red:Notify] New mail received at %s"] = "[Red:Notificatie] Nieuw privébericht ontvangen op %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; -$a->strings["a private message"] = "een privébericht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notificatie] %s heeft je genoemd"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notificatie] %1\$s heeft je aangestoten"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notificatie] %s heeft jouw bericht gelabeld"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s labelde jouw bericht om %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s labelde [zrl=%3\$s]jouw bericht[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Notificatie] Connectieverzoek ontvangen"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; -$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificatie] Kanaalvoorstel ontvangen"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; -$a->strings["Name:"] = "Naam:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; -$a->strings["[Red:Notify]"] = "[Red:Notificatie]"; -$a->strings["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["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["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["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["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["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["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["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["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["view full size"] = "volledige grootte tonen"; +$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["Public Timeline"] = "Openbare tijdlijn"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; +$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; $a->strings["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"; @@ -745,9 +764,6 @@ $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"; @@ -760,7 +776,6 @@ $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"; @@ -805,56 +820,44 @@ $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["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["Miscellaneous"] = "Diversen"; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["year"] = "jaar"; -$a->strings["years"] = "jaren"; -$a->strings["month"] = "maand"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$a->strings["day"] = "dag"; -$a->strings["days"] = "dagen"; -$a->strings["hour"] = "uur"; -$a->strings["hours"] = "uren"; -$a->strings["minute"] = "minuut"; -$a->strings["minutes"] = "minuten"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "seconden"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -$a->strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; -$a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +$a->strings["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["This is you"] = "Dit ben jij"; +$a->strings["Submit"] = "Opslaan"; +$a->strings["Bold"] = "Vet"; +$a->strings["Italic"] = "Cursief"; +$a->strings["Underline"] = "Onderstrepen"; +$a->strings["Quote"] = "Citeren"; +$a->strings["Code"] = "Broncode"; +$a->strings["Image"] = "Afbeelding"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; $a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; $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."; @@ -863,18 +866,18 @@ $a->strings["Delete Photo"] = "Verwijder foto"; $a->strings["Public access denied."] = "Openbare toegang geweigerd."; $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["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; $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["Enter a new album name"] = "Vul een nieuwe albumnaam in"; +$a->strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; $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["Edit Album"] = "Album bewerken"; $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"; @@ -886,10 +889,10 @@ $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["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; +$a->strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; $a->strings["In This Photo:"] = "Op deze foto:"; $a->strings["View Album"] = "Album weergeven"; $a->strings["Recent Photos"] = "Recente foto's"; @@ -1001,7 +1004,7 @@ $a->strings["Geographical location to display on your posts"] = "Geografische lo $a->strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; $a->strings["Adult Content"] = "Inhoud voor volwassenen"; $a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassen. (Gebruik de hashtag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; -$a->strings["Security and Privacy Settings"] = "Veiligheids- privacy-instellingen"; +$a->strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; $a->strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; $a->strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; $a->strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaal te zien valt dat je momenteel op de RedMatrix aanwezig bent"; @@ -1018,6 +1021,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["Channel permissions category:"] = "Kanaaltype en -permissies:"; $a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; $a->strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; $a->strings["Notification Settings"] = "Notificatie-instellingen"; @@ -1034,6 +1038,22 @@ $a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; $a->strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; $a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; $a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; +$a->strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; +$a->strings["Unseen matrix activity"] = "Niet bekeken matrix-activiteit"; +$a->strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; +$a->strings["Unseen private messages"] = "Niet bekeken privéberichten"; +$a->strings["Recommended"] = "Aanbevolen"; +$a->strings["Upcoming events"] = "Aankomende gebeurtenissen"; +$a->strings["Events today"] = "Gebeurtissen van vandaag"; +$a->strings["Upcoming birthdays"] = "Aankomende verjaardagen"; +$a->strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; +$a->strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; +$a->strings["System info messages"] = "Systeemmededelingen"; +$a->strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; +$a->strings["New connections"] = "Nieuwe connecties"; +$a->strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; +$a->strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; +$a->strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; $a->strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; $a->strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; $a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; @@ -1067,9 +1087,6 @@ $a->strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kw $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["Block Name"] = "Bloknaam"; -$a->strings["Bookmark added"] = "Bladwijzer toegevoegd"; -$a->strings["My Bookmarks"] = "Mijn bladwijzers"; -$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; $a->strings["Profile not found."] = "Profiel niet gevonden."; $a->strings["Profile deleted."] = "Profiel verwijderd."; $a->strings["Profile-"] = "Profiel-"; @@ -1217,7 +1234,7 @@ $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["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; $a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; $a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; $a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; @@ -1288,9 +1305,9 @@ $a->strings["Hide or Unhide this connection"] = "Deze connectie verbergen of nie $a->strings["Delete this connection"] = "Deze connectie verwijderen"; $a->strings["Approve this connection"] = "Deze connectie accepteren"; $a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; -$a->strings["Automatic Permissions Settings"] = "Automatische permissies"; $a->strings["Connections: settings for %s"] = "Connecties: instellingen voor %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."] = "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."; +$a->strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; +$a->strings["Apply the permissions indicated on this page to all new connections."] = "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen."; $a->strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; $a->strings["inherited"] = "geërfd"; $a->strings["Connection has no individual permissions!"] = "Connectie heeft geen individuele permissies!"; @@ -1339,6 +1356,9 @@ $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["Bookmark added"] = "Bladwijzer toegevoegd"; +$a->strings["My Bookmarks"] = "Mijn bladwijzers"; +$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; $a->strings["Status: "] = "Status: "; $a->strings["Sexual Preference: "] = "Seksuele voorkeur: "; $a->strings["Homepage: "] = "Homepage: "; @@ -1346,6 +1366,7 @@ $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["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++"; $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."; @@ -1444,7 +1465,10 @@ $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["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Gebruikersnaam: {jouw e-mailadres}, wachtwoord: +++"; +$a->strings["webpage"] = "Webpagina"; +$a->strings["block"] = "blok"; +$a->strings["layout"] = "lay-out"; +$a->strings["%s element installed"] = "%s onderdeel geïnstalleerd"; $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."; @@ -1486,6 +1510,8 @@ $a->strings["Include all files and sub folders"] = "Toepassen op alle bestanden $a->strings["Return to file list"] = "Terugkeren naar bestandlijst "; $a->strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; $a->strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; +$a->strings["Help:"] = "Hulp:"; +$a->strings["Not Found"] = "Niet gevonden"; $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"; @@ -1506,8 +1532,15 @@ $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["Like/Dislike"] = "Leuk/niet leuk"; +$a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd."; +$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan."; +$a->strings["Invalid request."] = "Ongeldig verzoek"; +$a->strings["thing"] = "ding"; +$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +$a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; +$a->strings["Action completed."] = "Actie voltooid"; +$a->strings["Thank you."] = "Bedankt"; $a->strings["Tag removed"] = "Label verwijderd"; $a->strings["Remove Item Tag"] = "Verwijder itemlabel"; $a->strings["Select a tag to remove: "] = "Kies een label om te verwijderen"; @@ -1545,7 +1578,7 @@ $a->strings["Administrator Information"] = "Informatie over de beheerder van dez $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["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor RedMatrix-hub (kan door lid 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"; @@ -1567,7 +1600,7 @@ $a->strings["Comma separated list of domains which are allowed to establish frie $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["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 leden."; $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"; @@ -1575,9 +1608,9 @@ $a->strings["Check to force all profiles on this site to be listed in the site d $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["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 bezoekers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)"; +$a->strings["Proxy user"] = "Gebruikersnaam proxy"; +$a->strings["Proxy URL"] = "URL proxy"; $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"; @@ -1610,7 +1643,7 @@ $a->strings["%s user deleted"] = array( ); $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["User '%s' blocked"] = "Lid '%s' geblokkeerd"; $a->strings["Users"] = "Accounts"; $a->strings["select all"] = "alles selecteren"; $a->strings["User registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; @@ -1729,15 +1762,13 @@ $a->strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw l $a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; $a->strings["Help with this feature"] = "Hulp voor dit onderdeel"; $a->strings["Layout Name"] = "Naam lay-out"; -$a->strings["Like/Dislike"] = "Leuk/niet leuk"; -$a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd."; -$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan."; -$a->strings["Invalid request."] = "Ongeldig verzoek"; -$a->strings["thing"] = "ding"; -$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -$a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; -$a->strings["Action completed."] = "Actie voltooid"; -$a->strings["Thank you."] = "Bedankt"; +$a->strings["Location not found."] = "Locatie niet gevonden."; +$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; +$a->strings["No locations found."] = "Geen locaties gevonden."; +$a->strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +$a->strings["Location (address)"] = "Locatie (adres)"; +$a->strings["Primary Location"] = "Primaire locatie"; +$a->strings["Drop location"] = "Locatie verwijderen"; $a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; $a->strings["Visible to:"] = "Zichtbaar voor:"; $a->strings["No connections."] = "Geen connecties."; @@ -1853,12 +1884,6 @@ $a->strings["This will completely remove this account including all its channels $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["webpage"] = "Webpagina"; -$a->strings["block"] = "blok"; -$a->strings["layout"] = "lay-out"; -$a->strings["%s element installed"] = "%s onderdeel geïnstalleerd"; -$a->strings["Location not found."] = "Locatie niet gevonden."; -$a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; $a->strings["Schema Default"] = "Standaardschema"; $a->strings["Sans-Serif"] = "Schreefloos"; $a->strings["Monospace"] = "Monospace"; From 1a5a5c7edb8697c93f8bababbafa80245378dd7e Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Thu, 13 Nov 2014 12:21:58 -0800 Subject: [PATCH 101/176] PostgreSQL support initial commit There were 11 main types of changes: - UPDATE's and DELETE's sometimes had LIMIT 1 at the end of them. This is not only non-compliant but it would certainly not do what whoever wrote it thought it would. It is likely this mistake was just copied from Friendica. All of these instances, the LIMIT 1 was simply removed. - Bitwise operations (and even some non-zero int checks) erroneously rely on MySQL implicit integer-boolean conversion in the WHERE clauses. This is non-compliant (and bad programming practice to boot). Proper explicit boolean conversions were added. New queries should use proper conventions. - MySQL has a different operator for bitwise XOR than postgres. Rather than add yet another dba_ func, I converted them to "& ~" ("AND NOT") when turning off, and "|" ("OR") when turning on. There were no true toggles (XOR). New queries should refrain from using XOR when not necessary. - There are several fields which the schema has marked as NOT NULL, but the inserts don't specify them. The reason this works is because mysql totally ignores the constraint and adds an empty text default automatically. Again, non-compliant, obviously. In these cases a default of empty text was added. - Several statements rely on a non-standard MySQL feature (http://dev.mysql.com/doc/refman/5.5/en/group-by-handling.html). These queries can all be rewritten to be standards compliant. Interestingly enough, the newly rewritten standards compliant queries run a zillion times faster, even on MySQL. - A couple of function/operator name translations were needed (RAND/RANDOM, GROUP_CONCAT/STRING_AGG, UTC_NOW, REGEXP/~, ^/#) -- assist functions added in the dba_ - INTERVALs: postgres requires quotes around the value, mysql requires that there are not quotes around the value -- assist functions added in the dba_ - NULL_DATE's -- Postgres does not allow the invalid date '0000-00-00 00:00:00' (there is no such thing as year 0 or month 0 or day 0). We use '0001-01-01 00:00:00' for postgres. Conversions are handled in Zot/item packets automagically by quoting all dates with dbescdate(). - char(##) specifications in the schema creates fields with blank spaces that aren't trimmed in the code. MySQL apparently treats char(##) as varchar(##), again, non-compliant. Since postgres works better with text fields anyway, this ball of bugs was simply side-stepped by using 'text' datatype for all text fields in the postgres schema. varchar was used in a couple of places where it actually seemed appropriate (size constraint), but without rigorously vetting that all of the PHP code actually validates data, new bugs might come out from under the rug. - postgres doesn't store nul bytes and a few other non-printables in text fields, even when quoted. bytea fields were used when storing binary data (photo.data, attach.data). A new dbescbin() function was added to handle this transparently. - postgres does not support LIMIT #,# syntax. All databases support LIMIT # OFFSET # syntax. Statements were updated to be standard. These changes require corresponding changes in the coding standards. Please review those before adding any code going forward. Still on my TODO list: - remove quotes from non-reserved identifiers and make reserved identifiers use dba func for quoting - Rewrite search queries for better results (both MySQL and Postgres) --- boot.php | 12 +- doc/developers.bb | 3 + doc/sql_conventions.bb | 87 ++ include/Contact.php | 56 +- include/RedDAV/RedDirectory.php | 16 +- include/RedDAV/RedFile.php | 10 +- include/account.php | 31 +- include/acl_selectors.php | 2 +- include/api.php | 28 +- include/apps.php | 4 +- include/attach.php | 20 +- include/auth.php | 2 +- include/cache.php | 2 +- include/chat.php | 13 +- include/cli_startup.php | 4 +- include/config.php | 12 +- include/datetime.php | 7 +- include/dba/dba_driver.php | 135 ++- include/dba/dba_postgres.php | 112 ++ include/deliver.php | 8 +- include/diaspora.php | 4 +- include/dir_fns.php | 16 +- include/directory.php | 4 +- include/enotify.php | 4 +- include/event.php | 6 +- include/expire.php | 10 +- include/externals.php | 9 +- include/follow.php | 9 +- include/group.php | 11 +- include/hubloc.php | 8 +- include/identity.php | 20 +- include/items.php | 94 +- include/menu.php | 6 +- include/message.php | 8 +- include/nav.php | 2 +- include/network.php | 10 +- include/notifier.php | 21 +- include/onedirsync.php | 4 +- include/onepoll.php | 15 +- include/permissions.php | 4 +- include/photo/photo_driver.php | 14 +- include/photos.php | 7 +- include/plugin.php | 6 +- include/poller.php | 51 +- include/queue.php | 24 +- include/queue_fn.php | 4 +- include/reddav.php | 22 +- include/security.php | 31 +- include/session.php | 8 +- include/socgraph.php | 57 +- include/statistics_fns.php | 20 +- include/text.php | 18 +- include/widgets.php | 6 +- include/zot.php | 104 +- index.php | 4 +- install/{database.sql => schema_mysql.sql} | 0 install/schema_postgres.sql | 1190 ++++++++++++++++++++ mod/acl.php | 29 +- mod/admin.php | 37 +- mod/channel.php | 18 +- mod/chatsvc.php | 4 +- mod/connect.php | 2 +- mod/connections.php | 18 +- mod/connedit.php | 4 +- mod/contactgroup.php | 2 +- mod/delegate.php | 2 +- mod/dirsearch.php | 8 +- mod/display.php | 8 +- mod/events.php | 8 +- mod/filer.php | 2 +- mod/filerm.php | 2 +- mod/fsuggest.php | 2 +- mod/group.php | 6 +- mod/import.php | 6 +- mod/item.php | 6 +- mod/like.php | 4 +- mod/locs.php | 6 +- mod/lostpass.php | 4 +- mod/mail.php | 2 +- mod/manage.php | 12 +- mod/network.php | 22 +- mod/notifications.php | 6 +- mod/openid.php | 2 +- mod/p.php | 2 +- mod/photo.php | 4 +- mod/photos.php | 47 +- mod/ping.php | 34 +- mod/poco.php | 20 +- mod/post.php | 18 +- mod/profile_photo.php | 10 +- mod/profiles.php | 8 +- mod/profperm.php | 4 +- mod/receive.php | 2 +- mod/register.php | 10 +- mod/search.php | 36 +- mod/settings.php | 22 +- mod/setup.php | 32 +- mod/siteinfo.php | 2 +- mod/sources.php | 4 +- mod/starred.php | 2 +- mod/subthread.php | 2 +- mod/thing.php | 6 +- mod/viewconnections.php | 8 +- mod/zfinger.php | 4 +- mod/zotfeed.php | 2 +- vendor/bin/sabredav | 1 - vendor/bin/vobjectvalidate.php | 1 - view/en/htconfig.tpl | 3 +- view/tpl/install_db.tpl | 2 +- view/tpl/install_settings.tpl | 1 + 110 files changed, 2256 insertions(+), 648 deletions(-) create mode 100644 doc/sql_conventions.bb create mode 100644 include/dba/dba_postgres.php rename install/{database.sql => schema_mysql.sql} (100%) create mode 100644 install/schema_postgres.sql delete mode 120000 vendor/bin/sabredav delete mode 120000 vendor/bin/vobjectvalidate.php diff --git a/boot.php b/boot.php index abbf48636..085e6b36b 100755 --- a/boot.php +++ b/boot.php @@ -52,7 +52,7 @@ define ( 'DB_UPDATE_VERSION', 1130 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); -define ( 'NULL_DATE', '0000-00-00 00:00:00' ); +//define ( 'NULL_DATE', '0000-00-00 00:00:00' ); define ( 'TEMPLATE_BUILD_PATH', 'store/[data]/smarty3' ); define ( 'DIRECTORY_MODE_NORMAL', 0x0000); // This is technically DIRECTORY_MODE_TERTIARY, but it's the default, hence 0x0000 @@ -555,7 +555,9 @@ define ( 'ITEM_VERIFIED', 0x2000); // Signature verification was success define ( 'ITEM_RETAINED', 0x4000); // We looked at this item once to decide whether or not to expire it, and decided not to. define ( 'ITEM_RSS', 0x8000); // Item comes from a feed. Use this to decide whether to link the title // Don't make us evaluate this same item again. - +define ( 'DBTYPE_MYSQL', 0 ); +define ( 'DBTYPE_POSTGRES', 1 ); + /** * * Reverse the effect of magic_quotes_gpc if it is enabled. @@ -1417,7 +1419,7 @@ function fix_system_urls($oldurl,$newurl) { $replace_xchan_url = ((strpos($rr['xchan_url'],$oldurl) !== false) ? true : false); - $x = q("update xchan set xchan_addr = '%s', xchan_url = '%s', xchan_connurl = '%s', xchan_follow = '%s', xchan_connpage = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s', xchan_photo_date = '%s' where xchan_hash = '%s' limit 1", + $x = q("update xchan set xchan_addr = '%s', xchan_url = '%s', xchan_connurl = '%s', xchan_follow = '%s', xchan_connpage = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s', xchan_photo_date = '%s' where xchan_hash = '%s'", dbesc($channel_address . '@' . $rhs), dbesc(($replace_xchan_url) ? str_replace($oldurl,$newurl,$rr['xchan_url']) : $rr['xchan_url']), dbesc(str_replace($oldurl,$newurl,$rr['xchan_connurl'])), @@ -1430,7 +1432,7 @@ function fix_system_urls($oldurl,$newurl) { dbesc($rr['xchan_hash']) ); - $y = q("update hubloc set hubloc_addr = '%s', hubloc_url = '%s', hubloc_url_sig = '%s', hubloc_host = '%s', hubloc_callback = '%s' where hubloc_hash = '%s' and hubloc_url = '%s' limit 1", + $y = q("update hubloc set hubloc_addr = '%s', hubloc_url = '%s', hubloc_url_sig = '%s', hubloc_host = '%s', hubloc_callback = '%s' where hubloc_hash = '%s' and hubloc_url = '%s'", dbesc($channel_address . '@' . $rhs), dbesc($newurl), dbesc(base64url_encode(rsa_sign($newurl,$c[0]['channel_prvkey']))), @@ -1787,7 +1789,7 @@ 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) ", + $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)>0 ", intval($uid), intval(ABOOK_FLAG_SELF) ); diff --git a/doc/developers.bb b/doc/developers.bb index 18e39c4ea..5365fd77a 100644 --- a/doc/developers.bb +++ b/doc/developers.bb @@ -64,4 +64,7 @@ In the interests of consistency we adopt the following code styling. We may acce [li] Generally speaking, opening braces go on the same line as the thing which opens the brace. They are the last character on the line. Closing braces are on a line by themselves. [/li] +[b]See Also[/b] +[zrl=[baseurl]/help/sql_conventions]SQL Conventions[/zrl] + #include doc/macros/main_footer.bb; diff --git a/doc/sql_conventions.bb b/doc/sql_conventions.bb new file mode 100644 index 000000000..88539ae19 --- /dev/null +++ b/doc/sql_conventions.bb @@ -0,0 +1,87 @@ +[h1]SQL Conventions[/h1] +[b]Intro[/b] +The following common SQL conventions appear throughout the code in many places. We use a simple DBA (DataBase Abstraction layer) to handle differences between databases. Please be sure to use only standards-compliant SQL. + +[b]Rule One[/b] +Worth Repeating: Don't use non-standard SQL. This goes for addons as well. If you do use non-standard SQL, and the dba funcs are insufficient, do a if()/switch() or similar for all currently supported databases. Currently nothing red# does requires non-standard SQL. + +[b]Using a format string[/b] +[li]Uses sprintf() +To be written +[code]// Example +$r = q("SELECT * FROM profile WHERE uid = %d", + local_user() +); +[/code][/li] + +[b]Checking bit flags in a where clause[/b] +[li]You must explicitly convert integers to booleans. The easiest way to do this is to compare to 0. +[code]// Example +$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)>0 ", + intval($uid), + intval(ABOOK_FLAG_SELF) +); +[/code] +[/li] +[li]Turning off a flag +[code]$y = q("update xchan set xchan_flags = (xchan_flags & ~%d) where (xchan_flags & %d)>0 and xchan_hash = '%s'", + intval(XCHAN_FLAGS_ORPHAN), + intval(XCHAN_FLAGS_ORPHAN), + dbesc($rr['hubloc_hash']) +);[/code] +[/li] +[li]Turning on a flag +[code]$y = q("update xchan set xchan_flags = (xchan_flags | %d) where xchan_hash = '%s'", + intval(XCHAN_FLAGS_ORPHAN), + dbesc($rr['hubloc_hash']) +);[/code] +[/li] + +[b]Using relative times (INTERVALs)[/b] +[li]Sometimes you want to compare something, like less than x days old. +[code]// Example +$r = q("SELECT * FROM abook left join xchan on abook_xchan = xchan_hash + WHERE abook_dob > %s + interval %s and abook_dob < %s + interval %s", + db_utcnow(), db_quoteinterval('7 day'), + db_utcnow(), db_quoteinterval('14 day') +);[/code] +[/li] +[b]Paged results[/b] +[li]To be written +[code]// Example +$r = q("SELECT * FROM mail WHERE uid=%d AND $sql_extra ORDER BY created DESC LIMIT %d OFFSET %d", + intval(api_user()), + intval($count), intval($start) +);[/code][/li] + +[b]NULL dates[/b] +[li]To be written +[code]Example[/code][/li] + +[b]Storing binary data[/b] +[li]To be written +[code]// Example +$x = q("update photo set data = '%s', height = %d, width = %d where resource_id = '%s' and uid = %d and scale = 0", + dbescbin($ph->imageString()), + intval($height), + intval($width), + dbesc($resource_id), + intval($page_owner_uid) +);[/code][/li] + +[b]Current timestamp[/b] +[li][code]// Example +$randfunc = db_getfunc('rand'); +$r = q("select xchan_url from xchan left join hubloc on hubloc_hash = xchan_hash where hubloc_connected > %s - interval %s order by $randfunc limit 1", + db_utcnow(), db_quoteinterval('30 day') +);[/code][/li] + +[b]SQL Function and Operator Abstraction[/b] +[li]Sometimes the same function or operator has a different name/symbol in each database. You use db_getfunc('funcname') to look them up. The string is [i]not[/i] case-sensitive; do [i]not[/i] include parens. +[code]// Example +$randfunc = db_getfunc('rand'); +$r = q("select xchan_url from xchan left join hubloc on hubloc_hash = xchan_hash where hubloc_connected > %s - interval %s order by $randfunc limit 1", + db_utcnow(), db_quoteinterval('30 day') +);[/code][/li] + +#include doc/macros/main_footer.bb; \ No newline at end of file diff --git a/include/Contact.php b/include/Contact.php index 20e5e1a1e..f0c7cd737 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -22,7 +22,7 @@ function rconnect_url($channel_id,$xchan) { if(($r) && ($r[0]['xchan_follow'])) return $r[0]['xchan_follow']; - $r = q("select hubloc_url from hubloc where hubloc_hash = '%s' and ( hubloc_flags & %d ) limit 1", + $r = q("select hubloc_url from hubloc where hubloc_hash = '%s' and ( hubloc_flags & %d )>0 limit 1", dbesc($xchan), intval(HUBLOC_FLAGS_PRIMARY) ); @@ -35,7 +35,7 @@ function rconnect_url($channel_id,$xchan) { function abook_connections($channel_id, $sql_conditions = '') { $r = q("select * from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d - and not ( abook_flags & %d ) $sql_conditions", + and not ( abook_flags & %d )>0 $sql_conditions", intval($channel_id), intval(ABOOK_FLAG_SELF) ); @@ -44,7 +44,7 @@ function abook_connections($channel_id, $sql_conditions = '') { function abook_self($channel_id) { $r = q("select * from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d - and ( abook_flags & %d ) limit 1", + and ( abook_flags & %d )>0 limit 1", intval($channel_id), intval(ABOOK_FLAG_SELF) ); @@ -52,7 +52,7 @@ function abook_self($channel_id) { } function channelx_by_nick($nick) { - $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_address = '%s' and not ( channel_pageflags & %d ) LIMIT 1", + $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_address = '%s' and not ( channel_pageflags & %d )>0 LIMIT 1", dbesc($nick), intval(PAGE_REMOVED) ); @@ -60,7 +60,7 @@ function channelx_by_nick($nick) { } function channelx_by_hash($hash) { - $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_hash = '%s' and not ( channel_pageflags & %d ) LIMIT 1", + $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_hash = '%s' and not ( channel_pageflags & %d )>0 LIMIT 1", dbesc($hash), intval(PAGE_REMOVED) ); @@ -68,7 +68,7 @@ function channelx_by_hash($hash) { } function channelx_by_n($id) { - $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_id = %d and not ( channel_pageflags & %d ) LIMIT 1", + $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_id = %d and not ( channel_pageflags & %d )>0 LIMIT 1", dbesc($id), intval(PAGE_REMOVED) ); @@ -128,7 +128,7 @@ function vcard_from_xchan($xchan, $observer = null, $mode = '') { function abook_toggle_flag($abook,$flag) { - $r = q("UPDATE abook set abook_flags = (abook_flags ^ %d) where abook_id = %d and abook_channel = %d limit 1", + $r = q("UPDATE abook set abook_flags = (abook_flags & ~%d) where abook_id = %d and abook_channel = %d", intval($flag), intval($abook['abook_id']), intval($abook['abook_channel']) @@ -138,7 +138,7 @@ function abook_toggle_flag($abook,$flag) { if(($flag === ABOOK_FLAG_ARCHIVED) && ($abook['abook_flags'] & ABOOK_FLAG_ARCHIVED)) { $r = q("update abook set abook_connected = '%s', abook_updated = '%s' - where abook_id = %d and abook_channel = %d limit 1", + where abook_id = %d and abook_channel = %d", dbesc(datetime_convert()), dbesc(datetime_convert()), intval($abook['abook_id']), @@ -173,7 +173,7 @@ function account_remove($account_id,$local = true,$unset_session=true) { // Don't let anybody nuke the only admin account. - $r = q("select account_id from account where (account_roles & %d)", + $r = q("select account_id from account where (account_roles & %d)>0", intval(ACCOUNT_ROLE_ADMIN) ); @@ -201,7 +201,7 @@ function account_remove($account_id,$local = true,$unset_session=true) { } } - $r = q("delete from account where account_id = %d limit 1", + $r = q("delete from account where account_id = %d", intval($account_id) ); @@ -239,7 +239,7 @@ function channel_remove($channel_id, $local = true, $unset_session=true) { channel_r_photos = 0, channel_r_abook = 0, channel_w_stream = 0, channel_w_wall = 0, channel_w_tagwall = 0, channel_w_comment = 0, channel_w_mail = 0, channel_w_photos = 0, channel_w_chat = 0, channel_a_delegate = 0, channel_r_storage = 0, channel_w_storage = 0, channel_r_pages = 0, channel_w_pages = 0, channel_a_republish = 0 - where channel_id = %d limit 1", + where channel_id = %d", dbesc(datetime_convert()), intval(PAGE_REMOVED), intval($channel_id) @@ -275,12 +275,12 @@ function channel_remove($channel_id, $local = true, $unset_session=true) { q("DELETE FROM `spam` WHERE `uid` = %d", intval($channel_id)); - q("delete from abook where abook_xchan = '%s' and (abook_flags & %d) limit 1", + q("delete from abook where abook_xchan = '%s' and (abook_flags & %d)>0", dbesc($channel['channel_hash']), dbesc(ABOOK_FLAG_SELF) ); - $r = q("update channel set channel_deleted = '%s', channel_pageflags = (channel_pageflags | %d) where channel_id = %d limit 1", + $r = q("update channel set channel_deleted = '%s', channel_pageflags = (channel_pageflags | %d) where channel_id = %d", dbesc(datetime_convert()), intval(PAGE_REMOVED), intval($channel_id) @@ -296,7 +296,7 @@ function channel_remove($channel_id, $local = true, $unset_session=true) { $hublocs = 0; - $r = q("select hubloc_id from hubloc where hubloc_hash = '%s' and not (hubloc_flags & %d)", + $r = q("select hubloc_id from hubloc where hubloc_hash = '%s' and not (hubloc_flags & %d)>0", dbesc($channel['channel_hash']), intval(HUBLOC_FLAGS_DELETED) ); @@ -335,10 +335,11 @@ function mark_orphan_hubsxchans() { if($dirmode == DIRECTORY_MODE_NORMAL) return; - $r = q("update hubloc set hubloc_status = (hubloc_status | %d) where not (hubloc_status & %d) - and hubloc_network = 'zot' and hubloc_connected < utc_timestamp() - interval 36 day", + $r = q("update hubloc set hubloc_status = (hubloc_status | %d) where not (hubloc_status & %d)>0 + and hubloc_network = 'zot' and hubloc_connected < %s - interval %s", intval(HUBLOC_OFFLINE), - intval(HUBLOC_OFFLINE) + intval(HUBLOC_OFFLINE), + db_utcnow(), db_quoteinterval('36 day') ); // $realm = get_directory_realm(); @@ -354,7 +355,7 @@ function mark_orphan_hubsxchans() { // } - $r = q("select hubloc_id, hubloc_hash from hubloc where (hubloc_status & %d) and not (hubloc_flags & %d)", + $r = q("select hubloc_id, hubloc_hash from hubloc where (hubloc_status & %d)>0 and not (hubloc_flags & %d)>0", intval(HUBLOC_OFFLINE), intval(HUBLOC_FLAGS_ORPHANCHECK) ); @@ -364,7 +365,7 @@ function mark_orphan_hubsxchans() { // see if any other hublocs are still alive for this channel - $x = q("select * from hubloc where hubloc_hash = '%s' and not (hubloc_status & %d)", + $x = q("select * from hubloc where hubloc_hash = '%s' and not (hubloc_status & %d)>0", dbesc($rr['hubloc_hash']), intval(HUBLOC_OFFLINE) ); @@ -372,7 +373,7 @@ function mark_orphan_hubsxchans() { // yes - if the xchan was marked as an orphan, undo it - $y = q("update xchan set xchan_flags = (xchan_flags ^ %d) where (xchan_flags & %d) and xchan_hash = '%s' limit 1", + $y = q("update xchan set xchan_flags = (xchan_flags & ~%d) where (xchan_flags & %d)>0 and xchan_hash = '%s'", intval(XCHAN_FLAGS_ORPHAN), intval(XCHAN_FLAGS_ORPHAN), dbesc($rr['hubloc_hash']) @@ -383,7 +384,7 @@ function mark_orphan_hubsxchans() { // nope - mark the xchan as an orphan - $y = q("update xchan set xchan_flags = (xchan_flags | %d) where xchan_hash = '%s' limit 1", + $y = q("update xchan set xchan_flags = (xchan_flags | %d) where xchan_hash = '%s'", intval(XCHAN_FLAGS_ORPHAN), dbesc($rr['hubloc_hash']) ); @@ -391,7 +392,7 @@ function mark_orphan_hubsxchans() { // mark that we've checked this entry so we don't need to do it again - $y = q("update hubloc set hubloc_flags = (hubloc_flags | %d) where hubloc_id = %d limit 1", + $y = q("update hubloc set hubloc_flags = (hubloc_flags | %d) where hubloc_id = %d", intval(HUBLOC_FLAGS_ORPHANCHECK), dbesc($rr['hubloc_id']) ); @@ -449,7 +450,7 @@ function remove_all_xchan_resources($xchan, $channel_id = 0) { if($dirmode === false || $dirmode == DIRECTORY_MODE_NORMAL) { - $r = q("delete from xchan where xchan_hash = '%s' limit 1", + $r = q("delete from xchan where xchan_hash = '%s'", dbesc($xchan) ); $r = q("delete from hubloc where hubloc_hash = '%s'", @@ -482,7 +483,7 @@ function contact_remove($channel_id, $abook_id) { $archive = get_pconfig($channel_id, 'system','archive_removed_contacts'); if($archive) { - q("update abook set abook_flags = ( abook_flags | %d ) where abook_id = %d and abook_channel = %d limit 1", + q("update abook set abook_flags = ( abook_flags | %d ) where abook_id = %d and abook_channel = %d", intval(ABOOK_FLAG_ARCHIVED), intval($abook_id), intval($channel_id) @@ -514,7 +515,7 @@ function contact_remove($channel_id, $abook_id) { } } - q("delete from abook where abook_id = %d and abook_channel = %d limit 1", + q("delete from abook where abook_id = %d and abook_channel = %d", intval($abook['abook_id']), intval($channel_id) ); @@ -541,7 +542,10 @@ function contact_remove($channel_id, $abook_id) { function random_profile() { - $r = q("select xchan_url from xchan left join hubloc on hubloc_hash = xchan_hash where hubloc_connected > UTC_TIMESTAMP() - interval 30 day order by rand() limit 1"); + $randfunc = db_getfunc('rand'); + $r = q("select xchan_url from xchan left join hubloc on hubloc_hash = xchan_hash where hubloc_connected > %s - interval %s order by $randfunc limit 1", + db_utcnow(), db_quoteinterval('30 day') + ); if($r) return $r[0]['xchan_url']; return ''; diff --git a/include/RedDAV/RedDirectory.php b/include/RedDAV/RedDirectory.php index a46b77f5f..85af0d57f 100644 --- a/include/RedDAV/RedDirectory.php +++ b/include/RedDAV/RedDirectory.php @@ -159,7 +159,7 @@ class RedDirectory extends DAV\Node implements DAV\ICollection, DAV\IQuota { list($parent_path, ) = DAV\URLUtil::splitPath($this->red_path); $new_path = $parent_path . '/' . $name; - $r = q("UPDATE attach SET filename = '%s' WHERE hash = '%s' AND uid = %d LIMIT 1", + $r = q("UPDATE attach SET filename = '%s' WHERE hash = '%s' AND uid = %d", dbesc($name), dbesc($this->folder_hash), intval($this->auth->owner_id) @@ -197,7 +197,7 @@ class RedDirectory extends DAV\Node implements DAV\ICollection, DAV\IQuota { $mimetype = z_mime_content_type($name); - $c = q("SELECT * FROM channel WHERE channel_id = %d AND NOT (channel_pageflags & %d) LIMIT 1", + $c = q("SELECT * FROM channel WHERE channel_id = %d AND NOT (channel_pageflags & %d)>0 LIMIT 1", intval($this->auth->owner_id), intval(PAGE_REMOVED) ); @@ -246,7 +246,7 @@ class RedDirectory extends DAV\Node implements DAV\ICollection, DAV\IQuota { $edited = datetime_convert(); // updates entry with filesize and timestamp - $d = q("UPDATE attach SET filesize = '%s', edited = '%s' WHERE hash = '%s' AND uid = %d LIMIT 1", + $d = q("UPDATE attach SET filesize = '%s', edited = '%s' WHERE hash = '%s' AND uid = %d", dbesc($size), dbesc($edited), dbesc($hash), @@ -254,7 +254,7 @@ class RedDirectory extends DAV\Node implements DAV\ICollection, DAV\IQuota { ); // update the folder's lastmodified timestamp - $e = q("UPDATE attach SET edited = '%s' WHERE hash = '%s' AND uid = %d LIMIT 1", + $e = q("UPDATE attach SET edited = '%s' WHERE hash = '%s' AND uid = %d", dbesc($edited), dbesc($this->folder_hash), intval($c[0]['channel_id']) @@ -293,7 +293,7 @@ class RedDirectory extends DAV\Node implements DAV\ICollection, DAV\IQuota { throw new DAV\Exception\Forbidden('Permission denied.'); } - $r = q("SELECT * FROM channel WHERE channel_id = %d AND NOT (channel_pageflags & %d) LIMIT 1", + $r = q("SELECT * FROM channel WHERE channel_id = %d AND NOT (channel_pageflags & %d)>0 LIMIT 1", intval($this->auth->owner_id), intval(PAGE_REMOVED) ); @@ -362,7 +362,7 @@ class RedDirectory extends DAV\Node implements DAV\ICollection, DAV\IQuota { $channel_name = $path_arr[0]; - $r = q("SELECT channel_id FROM channel WHERE channel_address = '%s' AND NOT ( channel_pageflags & %d ) LIMIT 1", + $r = q("SELECT channel_id FROM channel WHERE channel_address = '%s' AND NOT ( channel_pageflags & %d )>0 LIMIT 1", dbesc($channel_name), intval(PAGE_REMOVED) ); @@ -380,7 +380,7 @@ class RedDirectory extends DAV\Node implements DAV\ICollection, DAV\IQuota { $os_path = ''; for ($x = 1; $x < count($path_arr); $x++) { - $r = q("select id, hash, filename, flags from attach where folder = '%s' and filename = '%s' and uid = %d and (flags & %d)", + $r = q("select id, hash, filename, flags from attach where folder = '%s' and filename = '%s' and uid = %d and (flags & %d)>0", dbesc($folder), dbesc($path_arr[$x]), intval($channel_id), @@ -440,7 +440,7 @@ class RedDirectory extends DAV\Node implements DAV\ICollection, DAV\IQuota { $free = disk_free_space('store'); if ($this->auth->owner_id) { - $c = q("select * from channel where channel_id = %d and not (channel_pageflags & %d) limit 1", + $c = q("select * from channel where channel_id = %d and not (channel_pageflags & %d)>0 limit 1", intval($this->auth->owner_id), intval(PAGE_REMOVED) ); diff --git a/include/RedDAV/RedFile.php b/include/RedDAV/RedFile.php index f96790631..3a5230dc1 100644 --- a/include/RedDAV/RedFile.php +++ b/include/RedDAV/RedFile.php @@ -79,7 +79,7 @@ class RedFile extends DAV\Node implements DAV\IFile { $newName = str_replace('/', '%2F', $newName); - $r = q("UPDATE attach SET filename = '%s' WHERE hash = '%s' AND id = %d LIMIT 1", + $r = q("UPDATE attach SET filename = '%s' WHERE hash = '%s' AND id = %d", dbesc($this->data['filename']), intval($this->data['id']) ); @@ -96,7 +96,7 @@ class RedFile extends DAV\Node implements DAV\IFile { $size = 0; // @todo only 3 values are needed - $c = q("SELECT * FROM channel WHERE channel_id = %d AND NOT (channel_pageflags & %d) LIMIT 1", + $c = q("SELECT * FROM channel WHERE channel_id = %d AND NOT (channel_pageflags & %d)>0 LIMIT 1", intval($this->auth->owner_id), intval(PAGE_REMOVED) ); @@ -113,7 +113,7 @@ class RedFile extends DAV\Node implements DAV\IFile { $size = @filesize($f); logger('filename: ' . $f . ' size: ' . $size, LOGGER_DEBUG); } else { - $r = q("UPDATE attach SET data = '%s' WHERE hash = '%s' AND uid = %d LIMIT 1", + $r = q("UPDATE attach SET data = '%s' WHERE hash = '%s' AND uid = %d", dbesc(stream_get_contents($data)), dbesc($this->data['hash']), intval($this->data['uid']) @@ -131,7 +131,7 @@ class RedFile extends DAV\Node implements DAV\IFile { // returns now() $edited = datetime_convert(); - $d = q("UPDATE attach SET filesize = '%s', edited = '%s' WHERE hash = '%s' AND uid = %d LIMIT 1", + $d = q("UPDATE attach SET filesize = '%s', edited = '%s' WHERE hash = '%s' AND uid = %d", dbesc($size), dbesc($edited), dbesc($this->data['hash']), @@ -139,7 +139,7 @@ class RedFile extends DAV\Node implements DAV\IFile { ); // update the folder's lastmodified timestamp - $e = q("UPDATE attach SET edited = '%s' WHERE hash = '%s' AND uid = %d LIMIT 1", + $e = q("UPDATE attach SET edited = '%s' WHERE hash = '%s' AND uid = %d", dbesc($edited), dbesc($r[0]['folder']), intval($c[0]['channel_id']) diff --git a/include/account.php b/include/account.php index df484e608..8df44acba 100644 --- a/include/account.php +++ b/include/account.php @@ -202,7 +202,7 @@ function create_account($arr) { // Set the parent record to the current record_id if no parent was provided if(! $parent) { - $r = q("update account set account_parent = %d where account_id = %d limit 1", + $r = q("update account set account_parent = %d where account_id = %d", intval($result['account']['account_id']), intval($result['account']['account_id']) ); @@ -367,16 +367,16 @@ function user_allow($hash) { if(! $account) return $ret; - $r = q("DELETE FROM register WHERE hash = '%s' LIMIT 1", + $r = q("DELETE FROM register WHERE hash = '%s'", dbesc($register[0]['hash']) ); - $r = q("update account set account_flags = (account_flags ^ %d) where (account_flags & %d) and account_id = %d limit 1", + $r = q("update account set account_flags = (account_flags & ~%d) where (account_flags & %d)>0 and account_id = %d", intval(ACCOUNT_BLOCKED), intval(ACCOUNT_BLOCKED), intval($register[0]['uid']) ); - $r = q("update account set account_flags = (account_flags ^ %d) where (account_flags & %d) and account_id = %d limit 1", + $r = q("update account set account_flags = (account_flags & ~%d) where (account_flags & %d)>0 and account_id = %d", intval(ACCOUNT_PENDING), intval(ACCOUNT_PENDING), intval($register[0]['uid']) @@ -430,11 +430,11 @@ function user_deny($hash) { if(! $account) return false; - $r = q("DELETE FROM account WHERE account_id = %d LIMIT 1", + $r = q("DELETE FROM account WHERE account_id = %d", intval($register[0]['uid']) ); - $r = q("DELETE FROM `register` WHERE id = %d LIMIT 1", + $r = q("DELETE FROM `register` WHERE id = %d", dbesc($register[0]['id']) ); notice( sprintf(t('Registration revoked for %s'), $account[0]['account_email']) . EOL); @@ -463,21 +463,21 @@ function user_approve($hash) { if(! $account) return $ret; - $r = q("DELETE FROM register WHERE hash = '%s' and password = 'verify' LIMIT 1", + $r = q("DELETE FROM register WHERE hash = '%s' and password = 'verify'", dbesc($register[0]['hash']) ); - $r = q("update account set account_flags = (account_flags ^ %d) where (account_flags & %d) and account_id = %d limit 1", + $r = q("update account set account_flags = (account_flags & ~%d) where (account_flags & %d)>0 and account_id = %d", intval(ACCOUNT_BLOCKED), intval(ACCOUNT_BLOCKED), intval($register[0]['uid']) ); - $r = q("update account set account_flags = (account_flags ^ %d) where (account_flags & %d) and account_id = %d limit 1", + $r = q("update account set account_flags = (account_flags & ~%d) where (account_flags & %d)>0 and account_id = %d", intval(ACCOUNT_PENDING), intval(ACCOUNT_PENDING), intval($register[0]['uid']) ); - $r = q("update account set account_flags = (account_flags ^ %d) where (account_flags & %d) and account_id = %d limit 1", + $r = q("update account set account_flags = (account_flags & ~%d) where (account_flags & %d)>0 and account_id = %d", intval(ACCOUNT_UNVERIFIED), intval(ACCOUNT_UNVERIFIED), intval($register[0]['uid']) @@ -510,11 +510,12 @@ function user_approve($hash) { function downgrade_accounts() { - $r = q("select * from account where not ( account_flags & %d ) + $r = q("select * from account where not ( account_flags & %d )>0 and account_expires != '%s' - and account_expires < UTC_TIMESTAMP() ", + and account_expires < %s ", intval(ACCOUNT_EXPIRED), - dbesc(NULL_DATE) + dbesc(NULL_DATE), + db_getfunc('UTC_TIMESTAMP') ); if(! $r) @@ -527,7 +528,7 @@ function downgrade_accounts() { if(($basic) && ($rr['account_service_class']) && ($rr['account_service_class'] != $basic)) { $x = q("UPDATE account set account_service_class = '%s', account_expires = '%s' - where account_id = %d limit 1", + where account_id = %d", dbesc($basic), dbesc(NULL_DATE), intval($rr['account_id']) @@ -537,7 +538,7 @@ function downgrade_accounts() { logger('downgrade_accounts: Account id ' . $rr['account_id'] . ' downgraded.'); } else { - $x = q("UPDATE account SET account_flags = (account_flags | %d) where account_id = %d limit 1", + $x = q("UPDATE account SET account_flags = (account_flags | %d) where account_id = %d", intval(ACCOUNT_EXPIRED), intval($rr['account_id']) ); diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 5adafff2c..243e7a549 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -171,7 +171,7 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p $o .= " + {{include file="field_input.tpl" field=$adminmail}} From e4859d4bd70b1649e7ebe4cbb285a0993a837f85 Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Thu, 13 Nov 2014 22:40:06 +0100 Subject: [PATCH 102/176] Changed two strange looking places in boot.php. There have been two places that looked wrong, but I don't know how I can test them. So please review and test if I am not wrong. --- boot.php | 43 ++++++++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 19 deletions(-) diff --git a/boot.php b/boot.php index d883dcc28..0feedf7a1 100755 --- a/boot.php +++ b/boot.php @@ -76,7 +76,7 @@ $DIRECTORY_FALLBACK_SERVERS = array( 'https://redmatrix.nl', 'https://whogotzot.com', 'https://red.zottel.red', - 'https://red.pixelbits.de' + 'https://red.pixelbits.de' ); @@ -635,7 +635,7 @@ class App { private $perms = null; // observer permissions private $widgets = array(); // widgets for this page - private $widgetlist = null; // widget ordering and inclusion directives + //private $widgetlist = null; // widget ordering and inclusion directives public $groups; public $language; @@ -712,13 +712,6 @@ class App { private $hostname; private $baseurl; private $path; - private $db; - - private $curl_code; - private $curl_headers; - - private $cached_profile_image; - private $cached_profile_picdate; function __construct() { @@ -847,12 +840,14 @@ class App { && array_key_exists('baseurl',$this->config['system']) && strlen($this->config['system']['baseurl'])) { $url = $this->config['system']['baseurl']; + return $url; } $scheme = $this->scheme; $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' ); + return $this->baseurl; } @@ -879,7 +874,6 @@ class App { if(x($parsed,'path')) $this->path = trim($parsed['path'],'\\/'); } - } function get_hostname() { @@ -953,9 +947,10 @@ class App { function get_widgets($location = '') { if($location && count($this->widgets)) { $ret = array(); - foreach($widgets as $w) - if($w['location'] == $location) + foreach($this->widgets as $w) { + if ($w['location'] == $location) $ret[] = $w; + } $arr = array('location' => $location, 'widgets' => $ret); call_hooks('get_widgets', $arr); return $arr['widgets']; @@ -1007,7 +1002,6 @@ class App { // always put main.js at the end $this->page['htmlhead'] .= head_get_main_js(); - } /** @@ -1017,11 +1011,11 @@ class App { * @param string $name */ function register_template_engine($class, $name = '') { - if ($name===""){ + if ($name === ""){ $v = get_class_vars( $class ); - if(x($v,"name")) $name = $v['name']; + if(x($v, "name")) $name = $v['name']; } - if ($name===""){ + if ($name === ""){ echo "template engine $class cannot be registered without a name.\n"; killme(); } @@ -1032,11 +1026,11 @@ class App { * return template engine instance. If $name is not defined, * return engine defined by theme, or default * - * @param strin $name Template engine name + * @param string $name Template engine name * @return object Template Engine instance */ function template_engine($name = ''){ - if ($name!=="") { + if ($name !== "") { $template_engine = $name; } else { $template_engine = 'smarty3'; @@ -1886,6 +1880,17 @@ function curPageURL() { return $pageURL; } +/** + * @brief Returns a custom navigation by name??? + * + * If no $navname provided load default page['nav'] + * + * @todo not fully implemented yet + * + * @param App $a global application object + * @param string $navname + * @return mixed + */ function get_custom_nav(&$a, $navname) { if(! $navname) return $a->page['nav']; @@ -1940,7 +1945,7 @@ function construct_page(&$a) { if($comanche) { if($a->layout['nav']) { - $a->page['nav'] = get_custom_nav($a->layout['nav']); + $a->page['nav'] = get_custom_nav($a, $a->layout['nav']); } } From a2d9dd18821d4e7717438f4addb41ed310819b8b Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Thu, 13 Nov 2014 13:58:04 -0800 Subject: [PATCH 103/176] violates new sql standards missed during merge --- mod/zfinger.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/zfinger.php b/mod/zfinger.php index a1a62dd3f..6f4febc6f 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -116,7 +116,7 @@ function zfinger_init(&$a) { } else { // check if it has characteristics of a public forum based on custom permissions. - $t = q("select abook_my_perms from abook where abook_channel = %d and (abook_flags & %d) limit 1", + $t = q("select abook_my_perms from abook where abook_channel = %d and (abook_flags & %d)>0 limit 1", intval($e['channel_id']), intval(ABOOK_FLAG_SELF) ); From b5da015789876cda5581044647f2e4f8b7ee4e4c Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 13 Nov 2014 15:34:35 -0800 Subject: [PATCH 104/176] put timeout code in place but don't turn it on. --- include/zot.php | 13 +++++++------ view/js/acl.js | 16 +++++++++------- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/include/zot.php b/include/zot.php index 2fd950acc..3ffc9b43f 100644 --- a/include/zot.php +++ b/include/zot.php @@ -202,7 +202,7 @@ function zot_finger($webbie,$channel,$autofallback = true) { $r = q("select xchan.*, hubloc.* from xchan left join hubloc on xchan_hash = hubloc_hash - where xchan_addr = '%s' and (hubloc_flags & %d)>0 limit 1", + where xchan_addr = '%s' and (hubloc_flags & %d) > 0 limit 1", dbesc($xchan_addr), intval(HUBLOC_FLAGS_PRIMARY) ); @@ -301,7 +301,7 @@ function zot_refresh($them,$channel = null, $force = false) { if($them['hubloc_url']) $url = $them['hubloc_url']; else { - $r = q("select hubloc_url from hubloc where hubloc_hash = '%s' and ( hubloc_flags & %d )>0 limit 1", + $r = q("select hubloc_url from hubloc where hubloc_hash = '%s' and ( hubloc_flags & %d ) > 0 limit 1", dbesc($them['xchan_hash']), intval(HUBLOC_FLAGS_PRIMARY) ); @@ -383,7 +383,7 @@ function zot_refresh($them,$channel = null, $force = false) { } } - $r = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and not (abook_flags & %d)>0 limit 1", + $r = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and not (abook_flags & %d) > 0 limit 1", dbesc($x['hash']), intval($channel['channel_id']), intval(ABOOK_FLAG_SELF) @@ -409,7 +409,7 @@ function zot_refresh($them,$channel = null, $force = false) { $y = q("update abook set abook_their_perms = %d, abook_dob = '%s' where abook_xchan = '%s' and abook_channel = %d - and not (abook_flags & %d)>0 ", + and not (abook_flags & %d) > 0 ", intval($their_perms), dbesc($next_birthday), dbesc($x['hash']), @@ -421,7 +421,8 @@ function zot_refresh($them,$channel = null, $force = false) { // if they are in your address book but you aren't in theirs, and/or this does not // match your current connected state setting, toggle it. - + // FIXME: uncoverted to postgres + // FIXME: when this was enabled, all contacts became unconnected. Currently disabled intentionally // $y1 = q("update abook set abook_flags = (abook_flags ^ %d) // where abook_xchan = '%s' and abook_channel = %d // and not (abook_flags & %d) limit 1", @@ -471,7 +472,7 @@ function zot_refresh($them,$channel = null, $force = false) { $new_perms = get_all_perms($channel['channel_id'],$x['hash']); if($new_perms != $previous_perms) { // Send back a permissions update if permissions have changed - $z = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and not (abook_flags & %d)>0 limit 1", + $z = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and not (abook_flags & %d) > 0 limit 1", dbesc($x['hash']), intval($channel['channel_id']), intval(ABOOK_FLAG_SELF) diff --git a/view/js/acl.js b/view/js/acl.js index eb702d2b0..f9fd66bab 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -25,14 +25,16 @@ function ACL(backend_url, preset){ /*events*/ $(document).ready(function() { - that.showall.click(that.on_showall); - $(document).on('click','.acl-button-show',that.on_button_show); - $(document).on('click','.acl-button-hide',that.on_button_hide); - $("#acl-search").keypress(that.on_search); +// setTimeout( function() { + that.showall.click(that.on_showall); + $(document).on('click','.acl-button-show',that.on_button_show); + $(document).on('click','.acl-button-hide',that.on_button_hide); + $("#acl-search").keypress(that.on_search); - /* startup! */ - that.get(0,100); - that.on_submit(); + /* startup! */ + that.get(0,100); + that.on_submit(); +// }, 5000 ); }); } From e8b77fbdff6cfd9455db378b5edb00fece74fea2 Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Fri, 14 Nov 2014 00:45:25 +0100 Subject: [PATCH 105/176] Fixed a variable conflict in mod/xchan.php. A variable $rr inside the foreachs was used twice. Add translation to mod/xchan.php. --- boot.php | 2 +- mod/xchan.php | 19 +++++++++---------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/boot.php b/boot.php index 0feedf7a1..55ae3cc66 100755 --- a/boot.php +++ b/boot.php @@ -950,7 +950,7 @@ class App { foreach($this->widgets as $w) { if ($w['location'] == $location) $ret[] = $w; - } + } $arr = array('location' => $location, 'widgets' => $ret); call_hooks('get_widgets', $arr); return $arr['widgets']; diff --git a/mod/xchan.php b/mod/xchan.php index 714603f6e..69fbdb77d 100644 --- a/mod/xchan.php +++ b/mod/xchan.php @@ -3,16 +3,15 @@ function xchan_content(&$a) { - - $o .= '

Xchan Lookup

'; + $o = '

' . t('Xchan Lookup') . '

'; $o .= '
'; - $o .= 'Lookup xchan beginning with (or webbie): '; - $o .= '
'; + $o .= t('Lookup xchan beginning with (or webbie): '); + $o .= ''; + $o .= ''; + $o .= '

'; - $o .= '

'; - - if(x($_GET,'addr')) { + if(x($_GET, 'addr')) { $addr = trim($_GET['addr']); $r = q("select * from xchan where xchan_hash like '%s%%' or xchan_addr = '%s' group by xchan_hash", @@ -22,15 +21,15 @@ function xchan_content(&$a) { if($r) { foreach($r as $rr) { - $o .= str_replace(array("\n"," "),array("
"," "),print_r($rr,true)) . EOL; + $o .= str_replace(array("\n", " "), array("
", " "), print_r($rr, true)) . EOL; $s = q("select * from hubloc where hubloc_hash like '%s'", dbesc($r[0]['xchan_hash']) ); if($s) { - foreach($s as $rr) - $o .= str_replace(array("\n"," "),array("
"," "),print_r($rr,true)) . EOL; + foreach($s as $rrr) + $o .= str_replace(array("\n", " "), array("
", " "), print_r($rrr, true)) . EOL; } } } From edda931197c9e4d2642c60ab5ec2f1a80ce0e910 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 13 Nov 2014 16:34:36 -0800 Subject: [PATCH 106/176] mysql driver - in debug mode for statements that return true/false report the sql along with the result so we can match it to an offending statement. This has bugged me for some time but never got around to fixing it until now. --- include/dba/dba_mysqli.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dba/dba_mysqli.php b/include/dba/dba_mysqli.php index 19907705b..c71f493b0 100755 --- a/include/dba/dba_mysqli.php +++ b/include/dba/dba_mysqli.php @@ -40,7 +40,7 @@ class dba_mysqli extends dba_driver { if(($result === true) || ($result === false)) { if($this->debug) { - logger('dba_mysqli: DEBUG: returns ' . (($result) ? 'true' : 'false')); + logger('dba_mysqli: DEBUG: ' . printable($sql) . ' returns ' . (($result) ? 'true' : 'false')); } return $result; } From ee38bebbd6a641eb953eacf493c085053442d972 Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Thu, 13 Nov 2014 17:57:21 -0800 Subject: [PATCH 107/176] Add bitwise xor to db_getfunc() --- include/dba/dba_driver.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php index ddff80d7c..103dc8fcc 100755 --- a/include/dba/dba_driver.php +++ b/include/dba/dba_driver.php @@ -361,6 +361,10 @@ function db_getfunc($f) { 'regexp'=>array( DBTYPE_MYSQL=>'REGEXP', DBTYPE_POSTGRES=>'~' + ), + '^'=>array( + DBTYPE_MYSQL=>'^', + DBTYPE_POSTGRES=>'#' ) ); $f = strtolower($f); From 3d55c9da861f892e53d4303f83da37de7d12996f Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 13 Nov 2014 18:50:46 -0800 Subject: [PATCH 108/176] buttonify some design elements that had not yet been buttonified --- view/tpl/blocklist.tpl | 6 +++--- view/tpl/layoutlist.tpl | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/view/tpl/blocklist.tpl b/view/tpl/blocklist.tpl index adf61f788..4068375cb 100644 --- a/view/tpl/blocklist.tpl +++ b/view/tpl/blocklist.tpl @@ -4,9 +4,9 @@ {{foreach $pages as $key => $items}} {{foreach $items as $item}}
- {{if $edit}} {{/if}} - {{if $view}} {{/if}} - {{if $preview}} {{/if}} + {{if $edit}} {{/if}} + {{if $view}} {{/if}} + {{*if $preview}} {{/if*}} {{$item.title}}
{{/foreach}} diff --git a/view/tpl/layoutlist.tpl b/view/tpl/layoutlist.tpl index 96c692c1c..0a0085497 100644 --- a/view/tpl/layoutlist.tpl +++ b/view/tpl/layoutlist.tpl @@ -4,10 +4,10 @@ {{foreach $pages as $key => $items}} {{foreach $items as $item}}
- {{if $edit}} {{/if}} - {{if $view}} {{/if}} - {{if $share}} {{/if}} - {{if $preview}} {{/if}} + {{if $edit}} {{/if}} + {{if $view}} {{/if}} + {{if $share}} {{/if}} + {{*if $preview}} {{/if*}} {{$item.title}}
{{/foreach}} From 8b1e83128a1a9db1c5438dadb407bed18f168e0c Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 15 Nov 2014 14:39:36 +0100 Subject: [PATCH 109/176] fix lost $sql_extra in recent sql query changes --- mod/photos.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/photos.php b/mod/photos.php index 95fa162c9..ab1e4b48a 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1175,7 +1175,7 @@ function photos_content(&$a) { $r = q("SELECT p.resource_id, p.id, p.filename, p.type, p.album, p.scale, p.created FROM photo p INNER JOIN (SELECT resource_id, max(scale) scale FROM photo WHERE uid=%d AND album != '%s' AND album != '%s' - AND (photo_flags = %d or photo_flags = %d ) group by resource_id) ph + AND (photo_flags = %d or photo_flags = %d ) $sql_extra group by resource_id) ph ON (p.resource_id = ph.resource_id and p.scale = ph.scale) ORDER by p.created DESC LIMIT %d OFFSET %d", intval($a->data['channel']['channel_id']), dbesc('Contact Photos'), From 87cdfc1751d1e2f16cf651393049c5f6fb1a8efb Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 15 Nov 2014 14:03:28 -0800 Subject: [PATCH 110/176] doc updates --- doc/html/annotated.html | 29 +- doc/html/annotated.js | 1 + doc/html/apw_2php_2style_8php.html | 14 +- doc/html/auth_8php.html | 12 +- doc/html/bbcode_8php.html | 2 +- doc/html/blocks_8php.html | 18 + doc/html/blocks_8php.js | 3 +- doc/html/boot_8php.html | 202 ++++++-- doc/html/boot_8php.js | 6 +- doc/html/classApp-members.html | 89 ++-- doc/html/classApp.html | 150 +----- doc/html/classApp.js | 7 +- ...lassRedMatrix_1_1RedDAV_1_1RedBrowser.html | 4 +- ...ssRedMatrix_1_1RedDAV_1_1RedDirectory.html | 4 +- doc/html/classdba__driver-members.html | 19 +- doc/html/classdba__driver.html | 260 +++++++++- doc/html/classdba__driver.js | 13 +- doc/html/classdba__driver.png | Bin 591 -> 823 bytes doc/html/classdba__mysql-members.html | 19 +- doc/html/classdba__mysql.html | 29 +- doc/html/classdba__mysqli-members.html | 19 +- doc/html/classdba__mysqli.html | 29 +- doc/html/classdba__postgres-members.html | 141 ++++++ doc/html/classdba__postgres.html | 457 ++++++++++++++++++ doc/html/classdba__postgres.js | 16 + doc/html/classdba__postgres.png | Bin 0 -> 460 bytes doc/html/classes.html | 16 +- doc/html/classphoto__driver.html | 2 +- doc/html/classphoto__gd.html | 4 +- doc/html/classphoto__imagick.html | 4 +- doc/html/cloud_8php.html | 6 +- doc/html/conversation_8php.html | 4 +- doc/html/crypto_8php.html | 2 +- doc/html/datetime_8php.html | 6 +- doc/html/dba__driver_8php.html | 275 ++++++++++- doc/html/dba__driver_8php.js | 11 +- doc/html/dba__postgres_8php.html | 120 +++++ .../dir_21bc5169ff11430004758be31dcfc6c4.html | 3 + .../dir_21bc5169ff11430004758be31dcfc6c4.js | 3 + doc/html/dir__fns_8php.html | 2 +- .../dir_d41ce877eb409a4791b288730010abe2.html | 2 - .../dir_d41ce877eb409a4791b288730010abe2.js | 1 - doc/html/editblock_8php.html | 18 + doc/html/editblock_8php.js | 3 +- doc/html/editlayout_8php.html | 18 + doc/html/editlayout_8php.js | 3 +- doc/html/editwebpage_8php.html | 18 + doc/html/editwebpage_8php.js | 3 +- doc/html/extract_8php.html | 4 +- doc/html/features_8php.html | 2 +- doc/html/files.html | 246 +++++----- doc/html/full_8php.html | 4 +- doc/html/functions.html | 21 +- doc/html/functions_0x63.html | 12 +- doc/html/functions_0x65.html | 10 +- doc/html/functions_0x67.html | 12 +- doc/html/functions_0x69.html | 8 +- doc/html/functions_0x6e.html | 4 + doc/html/functions_0x6f.html | 4 + doc/html/functions_0x71.html | 7 +- doc/html/functions_0x75.html | 11 + doc/html/functions_func_0x63.html | 12 +- doc/html/functions_func_0x65.html | 10 +- doc/html/functions_func_0x67.html | 12 +- doc/html/functions_func_0x6f.html | 4 + doc/html/functions_func_0x71.html | 7 +- doc/html/functions_func_0x75.html | 7 + doc/html/functions_vars.html | 48 +- doc/html/globals_0x62.html | 7 +- doc/html/globals_0x64.html | 38 +- doc/html/globals_0x65.html | 13 +- doc/html/globals_0x6c.html | 3 + doc/html/globals_0x6e.html | 3 - doc/html/globals_0x77.html | 3 + doc/html/globals_0x78.html | 5 +- doc/html/globals_func_0x62.html | 7 +- doc/html/globals_func_0x64.html | 32 +- doc/html/globals_func_0x65.html | 9 + doc/html/globals_func_0x6c.html | 3 + doc/html/globals_func_0x77.html | 3 + doc/html/globals_func_0x78.html | 2 +- doc/html/globals_vars_0x64.html | 6 + doc/html/globals_vars_0x6e.html | 3 - doc/html/globals_vars_0x78.html | 3 + doc/html/hierarchy.html | 75 +-- doc/html/hierarchy.js | 3 +- doc/html/identity_8php.html | 10 +- doc/html/include_2config_8php.html | 8 +- doc/html/include_2network_8php.html | 4 +- doc/html/items_8php.html | 14 +- doc/html/language_8php.html | 2 +- doc/html/layouts_8php.html | 18 + doc/html/layouts_8php.js | 3 +- doc/html/navtree.js | 18 +- doc/html/navtreeindex0.js | 138 +++--- doc/html/navtreeindex1.js | 314 ++++++------ doc/html/navtreeindex2.js | 240 ++++----- doc/html/navtreeindex3.js | 236 ++++----- doc/html/navtreeindex4.js | 140 +++--- doc/html/navtreeindex5.js | 108 ++--- doc/html/navtreeindex6.js | 156 +++--- doc/html/navtreeindex7.js | 242 +++++----- doc/html/navtreeindex8.js | 184 +++---- doc/html/navtreeindex9.js | 122 +++-- doc/html/permissions_8php.html | 2 +- doc/html/php2po_8php.html | 4 +- doc/html/php_2default_8php.html | 4 +- doc/html/plugin_8php.html | 2 +- doc/html/redable_8php.html | 4 +- doc/html/reddav_8php.html | 6 +- doc/html/search/all_24.js | 8 +- doc/html/search/all_62.js | 1 + doc/html/search/all_63.js | 5 +- doc/html/search/all_64.js | 19 +- doc/html/search/all_65.js | 7 +- doc/html/search/all_67.js | 2 + doc/html/search/all_69.js | 1 + doc/html/search/all_6c.js | 1 + doc/html/search/all_6e.js | 2 +- doc/html/search/all_6f.js | 1 + doc/html/search/all_71.js | 3 +- doc/html/search/all_75.js | 3 + doc/html/search/all_77.js | 1 + doc/html/search/all_78.js | 3 +- doc/html/search/classes_64.js | 3 +- doc/html/search/files_64.js | 4 +- doc/html/search/functions_62.js | 1 + doc/html/search/functions_63.js | 5 +- doc/html/search/functions_64.js | 12 +- doc/html/search/functions_65.js | 7 +- doc/html/search/functions_67.js | 2 + doc/html/search/functions_6c.js | 1 + doc/html/search/functions_6f.js | 1 + doc/html/search/functions_71.js | 3 +- doc/html/search/functions_75.js | 4 +- doc/html/search/functions_77.js | 1 + doc/html/search/functions_78.js | 2 +- doc/html/search/variables_24.js | 8 +- doc/html/search/variables_64.js | 2 + doc/html/search/variables_69.js | 1 + doc/html/search/variables_6e.js | 2 +- doc/html/search/variables_75.js | 3 +- doc/html/search/variables_78.js | 1 + doc/html/setup_8php.html | 2 - doc/html/text_8php.html | 16 +- .../theme_2mytheme_2php_2default_8php.html | 4 +- doc/html/todo.html | 18 +- doc/html/typo_8php.html | 2 +- doc/html/typohelper_8php.html | 2 +- doc/html/webpages_8php.html | 18 + doc/html/webpages_8php.js | 3 +- doc/html/zot_8php.html | 2 +- 152 files changed, 3305 insertions(+), 1591 deletions(-) create mode 100644 doc/html/classdba__postgres-members.html create mode 100644 doc/html/classdba__postgres.html create mode 100644 doc/html/classdba__postgres.js create mode 100644 doc/html/classdba__postgres.png create mode 100644 doc/html/dba__postgres_8php.html diff --git a/doc/html/annotated.html b/doc/html/annotated.html index 8ccd006ba..e56263af5 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -129,22 +129,23 @@ $(document).ready(function(){initNavTree('annotated.html','');}); oCBaseObject oCCache oCConversation -oCdba_driver +oCdba_driverAbstract database driver class oCdba_mysql oCdba_mysqli -oCenotify -oCFKOAuth1 -oCFKOAuthDataStore -oCFriendicaSmarty -oCFriendicaSmartyEngine -oCItem -oCITemplateEngine -oCphoto_driver -oCphoto_gd -oCphoto_imagick -oCProtoDriver -oCTemplate -\CZotDriver +oCdba_postgres +oCenotify +oCFKOAuth1 +oCFKOAuthDataStore +oCFriendicaSmarty +oCFriendicaSmartyEngine +oCItem +oCITemplateEngine +oCphoto_driver +oCphoto_gd +oCphoto_imagick +oCProtoDriver +oCTemplate +\CZotDriver
diff --git a/doc/html/annotated.js b/doc/html/annotated.js index 79baf4d64..d812058de 100644 --- a/doc/html/annotated.js +++ b/doc/html/annotated.js @@ -14,6 +14,7 @@ var annotated = [ "dba_driver", "classdba__driver.html", "classdba__driver" ], [ "dba_mysql", "classdba__mysql.html", "classdba__mysql" ], [ "dba_mysqli", "classdba__mysqli.html", "classdba__mysqli" ], + [ "dba_postgres", "classdba__postgres.html", "classdba__postgres" ], [ "enotify", "classenotify.html", null ], [ "FKOAuth1", "classFKOAuth1.html", "classFKOAuth1" ], [ "FKOAuthDataStore", "classFKOAuthDataStore.html", "classFKOAuthDataStore" ], diff --git a/doc/html/apw_2php_2style_8php.html b/doc/html/apw_2php_2style_8php.html index 86bcb312b..6c183a3a5 100644 --- a/doc/html/apw_2php_2style_8php.html +++ b/doc/html/apw_2php_2style_8php.html @@ -118,9 +118,9 @@ Variables    $x = splitFilename($font)   - $fname = $x[0] + $fname = $x[0]   - $fext = $x[1] + $fext = $x[1]   if(file_exists('view/theme/apw/font/'.$fname.
'i.'.$fext)) if(file_exists('view/theme/apw/font/'.$fname.
@@ -143,7 +143,7 @@ Variables
- +
$fext = $x[1]$fext = $x[1]
@@ -155,7 +155,7 @@ Variables
- +
$fname = $x[0]$fname = $x[0]
@@ -246,7 +246,7 @@ Variables
-

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

+

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

@@ -255,12 +255,12 @@ Variables
- +
$x = splitFilename($font)$x = splitFilename($font)
-

Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_channels(), admin_page_themes(), advanced_profile(), aes_encapsulate(), api_group_members(), api_login(), app_decode(), app_install(), app_list(), app_render(), app_store(), app_update(), apps_content(), argv(), array_sanitise(), attach_change_permissions(), attach_delete(), attach_store(), autoname(), bb_parse_crypt(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), change_channel(), channel_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_item_source(), check_list_permissions(), check_webbie(), RedMatrix\RedDAV\RedDirectory\childExists(), cloud_init(), common_init(), connedit_content(), construct_page(), consume_feed(), conversation(), RedMatrix\RedDAV\RedDirectory\createFile(), photo_gd\cropImage(), photo_imagick\cropImage(), decode_tags(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_mention_callback(), diaspora_request(), dir_tagadelic(), directory_content(), directory_run(), 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(), locs_content(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), mark_orphan_hubsxchans(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), netgrowth_content(), network_content(), new_channel_init(), new_contact(), notification(), notifications_off(), notifications_on(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_init(), parse_app_description(), parse_xml_string(), pdledit_content(), pemtome(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), reflect_comment_store(), reflect_find_user(), reflect_photo_callback(), remote_online_status(), remove_community_tag(), remove_obsolete_hublocs(), rpost_content(), photo_driver\save(), scrape_feed(), scrape_vcard(), search_ac_init(), send_status_notifications(), service_limits_content(), share_init(), share_unshield(), site_default_perms(), smilies(), sources_content(), sslify_init(), photo_driver\store(), store_diaspora_comment_sig(), string_splitter(), stringify_array_elms(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), thing_content(), toggle_theme(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_directory_entry(), update_imported_item(), upgrade_bool_message(), upgrade_message(), valid_email(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), webpages_content(), what_next(), widget_affinity(), widget_bookmarkedchats(), widget_suggestedchats(), widget_suggestions(), xchan_query(), xmlify(), zfinger_init(), zot_build_packet(), zot_encode_locations(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

+

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

diff --git a/doc/html/auth_8php.html b/doc/html/auth_8php.html index 6df3cfea4..644e47434 100644 --- a/doc/html/auth_8php.html +++ b/doc/html/auth_8php.html @@ -122,15 +122,15 @@ Functions  account_verify_password ($email, $pass)  Verify login credentials. More...
  -if((x($_POST, 'auth-params'))&&$_POST['auth-params']===
+if((x($_POST, 'auth-params'))&&$_POST['auth-params']===
'login') match_openid ($authid)  Returns the channel_id for a given openid_identity. More...
  - @@ -183,7 +183,7 @@ Variables

Variables

if((isset($_SESSION))&&(x($_SESSION,
-'authenticated'))&&((!(x($_POST,
+
if((isset($_SESSION))&&(x($_SESSION,
+'authenticated'))&&((!(x($_POST,
'auth-params')))||($_POST['auth-params']!==
'login'))) 
else
 
- + @@ -233,7 +233,7 @@ Variables
if ((x($_POST, 'auth-params'))&&$_POST['auth-params']=== 'login') match_openid if ((x($_POST, 'auth-params'))&&$_POST['auth-params']=== 'login') match_openid (   $authid)
- +
if ((isset($_SESSION))&&(x($_SESSION, 'authenticated'))&&((!(x($_POST, 'auth-params')))||($_POST['auth-params']!== 'login'))) elseif ((isset($_SESSION))&&(x($_SESSION, 'authenticated'))&&((!(x($_POST, 'auth-params')))||($_POST['auth-params']!== 'login'))) else
@@ -245,7 +245,7 @@ Variables
-
if((x($_POST, 'password')) && strlen($_POST['password']))
+
if((x($_POST, 'password')) && strlen($_POST['password']))
$encrypted = hash('whirlpool', trim($_POST['password']))

Inline - not a function look for auth parameters or re-validate an existing session also handles logout

diff --git a/doc/html/bbcode_8php.html b/doc/html/bbcode_8php.html index 0134be28f..59de1d660 100644 --- a/doc/html/bbcode_8php.html +++ b/doc/html/bbcode_8php.html @@ -337,7 +337,7 @@ Functions diff --git a/doc/html/blocks_8php.html b/doc/html/blocks_8php.html index 8993de9ed..d6ab862e3 100644 --- a/doc/html/blocks_8php.html +++ b/doc/html/blocks_8php.html @@ -112,6 +112,8 @@ $(document).ready(function(){initNavTree('blocks_8php.html','');}); + +

Functions

 blocks_init (&$a)
 
 blocks_content (&$a)
 
@@ -130,6 +132,22 @@ Functions
+
+ + +
+
+ + + + + + + + +
blocks_init ($a)
+
+
diff --git a/doc/html/blocks_8php.js b/doc/html/blocks_8php.js index b2123aa00..c10da1ce2 100644 --- a/doc/html/blocks_8php.js +++ b/doc/html/blocks_8php.js @@ -1,4 +1,5 @@ var blocks_8php = [ - [ "blocks_content", "blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12", null ] + [ "blocks_content", "blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12", null ], + [ "blocks_init", "blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9", null ] ]; \ No newline at end of file diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index 78676f571..c5ff918aa 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -123,8 +123,9 @@ Functions    get_app ()   - x ($s, $k=NULL) -  + x ($s, $k=null) + Multi-purpose function to check variable state. More...
+   system_unavailable ()    clean_urls () @@ -150,8 +151,10 @@ Functions  goaway ($s)    get_account_id () + Returns the entity id of locally logged in account or false. More...
   local_user () + Returns the entity id of locally logged in user or false. More...
   remote_user ()   @@ -160,26 +163,31 @@ Functions  info ($s)    get_max_import_size () + Wrapper around config to limit the text length of an incoming message. More...
   proc_run ($cmd)    is_windows () + Checks if we are running on M$ Windows. More...
   current_theme ()    current_theme_url ($installing=false)    is_site_admin () + Check if current user has admin role. More...
   is_developer () + Check if current user has developer role. More...
   load_contact_links ($uid)    build_querystring ($params, $name=null) + Returns querystring as string from a mapped array. More...
   argc ()   - argv ($x) + argv ($x)    dba_timer ()   @@ -188,10 +196,13 @@ Functions  curPageURL ()    get_custom_nav (&$a, $navname) + Returns a custom navigation by name??? More...
   load_pdl (&$a) + Loads a page definition file for a module. More...
   construct_page (&$a) + build the page. More...
   appdirpath ()   @@ -212,12 +223,10 @@ Variables   const DB_UPDATE_VERSION 1131   -const EOL '<br />' . "\r\n" +const EOL '<br>' . "\r\n"   const ATOM_TIME 'Y-m-d\TH:i:s\Z'   -const NULL_DATE '0000-00-00 00:00:00' -  const TEMPLATE_BUILD_PATH 'store/[data]/smarty3'   const DIRECTORY_MODE_NORMAL 0x0000 @@ -532,6 +541,8 @@ Variables   const XCHAN_FLAGS_SYSTEM 0x0010   +const XCHAN_FLAGS_PUBFORUM 0x0020 +  const XCHAN_FLAGS_DELETED 0x1000   const HUBLOC_NOTUSED 0x0000 @@ -744,8 +755,14 @@ Variables   const ITEM_RSS 0x8000   +const DBTYPE_MYSQL 0 +  +const DBTYPE_POSTGRES 1 +  -

Function Documentation

+

Detailed Description

+

This file defines some global constants and includes the central App class.

+

Function Documentation

@@ -792,7 +809,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_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(), tagrm_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_init(), 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(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), hcard_init(), help_content(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_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(), tagrm_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_init(), xref_init(), and zotfeed_init().

@@ -810,7 +827,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_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(), tagrm_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(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), get_online_status(), group_content(), group_post(), hcard_init(), help_content(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_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(), tagrm_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(), webpages_init(), widget_collections(), widget_mailmenu(), widget_settings_menu(), xref_init(), and zotfeed_init().

@@ -837,10 +854,12 @@ Variables
-

returns querystring as string from a mapped array

+ +

Returns querystring as string from a mapped array.

Parameters
- + +
paramsArray
array$paramsmapped array with query parameters
string$nameof parameter, default null
@@ -896,7 +915,15 @@ Variables
+ +

build the page.

Build the page - now that we have all the components

+
Parameters
+ + +
App&$aglobal application object
+
+

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

@@ -1015,6 +1042,10 @@ Variables
+

Returns the entity id of locally logged in account or false.

+

Returns numeric account_id if authenticated or 0. It is possible to be authenticated and not connected to a channel.

+
Returns
int|bool account_id or false
+

Referenced by api_user(), change_channel(), channel_content(), events_post(), feed_init(), home_init(), identity_selector(), import_content(), import_post(), item_post(), manage_content(), mimetype_select(), mood_init(), nav(), new_channel_content(), new_channel_post(), new_contact(), profile_content(), profile_photo_post(), profiles_init(), removeaccount_post(), rpost_content(), settings_post(), z_input_filter(), and zotfeed_init().

@@ -1060,6 +1091,18 @@ Variables
+

Returns a custom navigation by name???

+

If no $navname provided load default page['nav']

+
Todo:
not fully implemented yet
+
Parameters
+ + + +
App$aglobal application object
string$navname
+
+
+
Returns
mixed
+

Referenced by construct_page().

@@ -1094,6 +1137,9 @@ Variables
+

Wrapper around config to limit the text length of an incoming message.

+
Returns
int
+

Referenced by get_item_elements(), and limit_body_size().

@@ -1111,7 +1157,7 @@ Variables
-

Referenced by advanced_profile(), api_statuses_user_timeline(), app_store(), app_update(), attach_by_hash(), attach_by_hash_nodata(), attach_mkdir(), attach_store(), block_content(), bookmarks_content(), chat_content(), chatsvc_content(), chatsvc_init(), chatsvc_post(), cloud_init(), comanche_menu(), common_content(), common_friends_visitor_widget(), contact_block(), dir_safe_mode(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_post(), get_public_feed(), impel_init(), importelm_post(), item_content(), item_permissions_sql(), magic_init(), mitem_content(), new_contact(), notice(), permissions_sql(), photo_init(), photos_content(), photos_post(), ping_init(), poll_post(), prepare_body(), profile_content(), profile_sidebar(), RedMatrix\RedDAV\RedBrowser\set_writeable(), stream_perms_xchans(), suggest_content(), tagger_content(), thing_init(), toggle_safesearch_init(), viewconnections_content(), vote_content(), vote_post(), wall_attach_post(), widget_archive(), widget_bookmarkedchats(), widget_catcloud_wall(), widget_categories(), widget_item(), widget_photo_albums(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud_wall(), and z_readdir().

+

Referenced by advanced_profile(), api_statuses_user_timeline(), app_store(), app_update(), attach_by_hash(), attach_by_hash_nodata(), attach_mkdir(), attach_store(), block_content(), bookmarks_content(), chat_content(), chatsvc_content(), chatsvc_init(), chatsvc_post(), cloud_init(), comanche_menu(), common_content(), common_friends_visitor_widget(), contact_block(), dir_safe_mode(), directory_content(), display_content(), editpost_content(), events_post(), get_public_feed(), impel_init(), importelm_post(), item_content(), item_permissions_sql(), magic_init(), new_contact(), notice(), permissions_sql(), photo_init(), photos_content(), photos_post(), ping_init(), poll_post(), prepare_body(), profile_content(), profile_sidebar(), RedMatrix\RedDAV\RedBrowser\set_writeable(), stream_perms_xchans(), suggest_content(), tagger_content(), thing_init(), toggle_safesearch_init(), viewconnections_content(), vote_content(), vote_post(), wall_attach_post(), widget_archive(), widget_bookmarkedchats(), widget_catcloud_wall(), widget_categories(), widget_item(), widget_photo_albums(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud_wall(), and z_readdir().

@@ -1180,7 +1226,7 @@ Variables
-

Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_post(), appman_post(), bookmarks_init(), connections_post(), connedit_content(), connedit_post(), directory_content(), dirprofile_init(), filestorage_content(), follow_init(), fsuggest_post(), group_content(), group_post(), impel_init(), item_post(), lostpass_content(), lostpass_post(), mail_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), network_content(), oexchange_content(), openid_content(), pdledit_post(), post_init(), profile_photo_post(), profiles_init(), profiles_post(), register_post(), regmod_content(), settings_post(), sources_content(), sources_post(), suggest_content(), tagrm_content(), tagrm_post(), thing_init(), user_allow(), user_approve(), and viewconnections_content().

+

Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_post(), appman_post(), bookmarks_init(), connections_post(), connedit_content(), connedit_post(), directory_content(), filestorage_content(), follow_init(), fsuggest_post(), group_content(), group_post(), impel_init(), item_post(), lostpass_content(), lostpass_post(), mail_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), network_content(), oexchange_content(), openid_content(), pdledit_post(), post_init(), profile_photo_post(), profiles_init(), profiles_post(), register_post(), regmod_content(), settings_post(), sources_content(), sources_post(), suggest_content(), tagrm_content(), tagrm_post(), thing_init(), user_allow(), user_approve(), and viewconnections_content().

@@ -1214,6 +1260,10 @@ Variables
+

Check if current user has developer role.

+

Check if the current user has ACCOUNT_ROLE_DEVELOPER.

+
Returns
bool true if user is a developer
+

Referenced by achievements_content(), and change_channel().

@@ -1231,7 +1281,11 @@ Variables @@ -1248,6 +1302,9 @@ Variables
+

Checks if we are running on M$ Windows.

+
Returns
bool true if we run on M$ Windows
+

Referenced by check_php(), and proc_run().

@@ -1265,7 +1322,7 @@ Variables
-

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

+

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

@@ -1301,6 +1358,15 @@ Variables
+

Loads a page definition file for a module.

+

If there is no parsed Comanche template already load a module's pdl file and parse it with Comanche.

+
Parameters
+ + +
App&$aglobal application object
+
+
+

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

@@ -1318,7 +1384,11 @@ Variables
-

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

+

Returns the entity id of locally logged in user or false.

+

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

+
Returns
int|bool channel_id or false
+ +

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

@@ -1370,7 +1440,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_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().

+

Referenced by account_remove(), achievements_content(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_hubloc(), admin_page_plugins(), admin_page_profs(), admin_page_themes(), admin_page_users(), admin_page_users_post(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_enter(), check_form_security_token_redirectOnErr(), common_content(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_content(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), locs_content(), locs_post(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_init(), pdledit_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), 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().

@@ -1443,7 +1513,7 @@ Variables @@ -1480,7 +1550,7 @@ Variables - +
@@ -1494,7 +1564,7 @@ Variables - + @@ -1504,7 +1574,19 @@ Variables
 $k = NULL $k = null 
-

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

+

Multi-purpose function to check variable state.

+

Usage: x($var) or $x($array, 'key')

+

returns false if variable/key is not set if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0. e.g. x('') or x(0) returns 0;

+
Parameters
+ + + +
string | array$svariable to check
string$kkey inside the array to check
+
+
+
Returns
bool
+ +

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

@@ -1538,7 +1620,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(), reflect_article_callback(), reflect_comment_store(), reflect_photo_callback(), register_post(), remove_obsolete_hublocs(), removeaccount_content(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), verify_email_address(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xchan_store(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

+

Referenced by admin_content(), admin_page_profs(), admin_page_profs_post(), allowed_public_recips(), app_render(), app_store(), app_update(), appman_post(), authenticate_success(), bb_parse_crypt(), bbcode(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), channel_remove(), chat_content(), chat_post(), chatsvc_content(), check_config(), connect_post(), connections_content(), connections_post(), conversation(), create_identity(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_post(), diaspora_request(), diaspora_reshare(), directory_content(), discover_by_url(), discover_by_webbie(), display_content(), event_store_item(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), get_parent_cloudpath(), 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(), reflect_article_callback(), reflect_comment_store(), reflect_photo_callback(), register_post(), remove_obsolete_hublocs(), removeaccount_content(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), verify_email_address(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xchan_store(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

@@ -1659,7 +1741,7 @@ Variables @@ -2356,6 +2438,32 @@ Variables

Referenced by api_statusnet_config(), check_config(), identity_basic_export(), and zfinger_init().

+ + + +
+
+ + + + +
const DBTYPE_MYSQL 0
+
+ +
+
+ +
+
+ + + + +
const DBTYPE_POSTGRES 1
+
@@ -2409,7 +2517,7 @@ Variables @@ -2437,7 +2545,7 @@ Variables @@ -2502,12 +2610,12 @@ Variables
- +
const EOL '<br />' . "\r\n"const EOL '<br>' . "\r\n"
-

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_content(), locs_post(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_init(), pdledit_content(), pdledit_post(), photos_content(), photos_post(), poke_content(), post_init(), post_post(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), refimport_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_content(), tagrm_post(), thing_content(), thing_init(), user_allow(), user_approve(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), xchan_content(), and zot_process_message_request().

+

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

@@ -2832,7 +2940,7 @@ Variables @@ -3138,7 +3246,7 @@ Variables
-

Referenced by admin_page_logs(), bb2diaspora_itemwallwall(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), deliver_run(), detect_language(), diaspora_decode(), 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().

+

Referenced by admin_page_logs(), bb2diaspora_itemwallwall(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), deliver_run(), detect_language(), diaspora_decode(), 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(), 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_finger(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

@@ -3152,7 +3260,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(), Item\remove_child(), remove_obsolete_hublocs(), scale_external_images(), scrape_feed(), enotify\send(), Conversation\set_mode(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), sync_locations(), tag_deliver(), unload_plugin(), z_fetch_url(), z_post_url(), zot_feed(), zot_finger(), zot_gethub(), zot_register_hub(), and zotfeed_init().

+

Referenced by Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_page_logs(), admin_post(), api_login(), api_statuses_user_timeline(), avatar_img(), bb2diaspora_itemwallwall(), bookmark_add(), consume_feed(), conversation(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), RedMatrix\RedDAV\RedFile\delete(), delete_imported_item(), deliver_run(), diaspora_conversation(), diaspora_handle_from_contact(), diaspora_like(), diaspora_message(), diaspora_photo(), diaspora_reshare(), diaspora_transmit(), directory_content(), directory_run(), discover_by_webbie(), expire_run(), externals_run(), fetch_lrdd_template(), fix_private_photos(), RedMatrix\RedDAV\RedFile\get(), get_diaspora_key(), get_diaspora_reshare_xml(), 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().

@@ -3914,20 +4022,6 @@ Variables

Referenced by item_post(), and notification().

- - - - @@ -4412,7 +4506,7 @@ Variables @@ -4455,7 +4549,7 @@ Variables @@ -4469,7 +4563,7 @@ Variables @@ -5219,6 +5313,20 @@ Variables

Referenced by connections_content(), contact_block(), dirsearch_content(), manage_content(), mark_orphan_hubsxchans(), ping_init(), post_post(), sync_locations(), and viewconnections_content().

+ + + +
+
+ + + + +
const XCHAN_FLAGS_PUBFORUM 0x0020
+
+ +

Referenced by dirsearch_content(), and import_xchan().

+
diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js index bebc6f291..b460c9fee 100644 --- a/doc/html/boot_8php.js +++ b/doc/html/boot_8php.js @@ -39,7 +39,7 @@ var boot_8php = [ "remote_user", "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209", null ], [ "startup", "boot_8php.html#aca47505b8732177f52bb2d647eb2741c", null ], [ "system_unavailable", "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0", null ], - [ "x", "boot_8php.html#a01353c9abebc3544ea080ac161729632", null ], + [ "x", "boot_8php.html#ae97836b0547953be182a2334c9c91d3c", null ], [ "z_path", "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda", null ], [ "z_root", "boot_8php.html#add517a0958ac684792c62142a3877f81", null ], [ "$DIRECTORY_FALLBACK_SERVERS", "boot_8php.html#a107d53f96acf5319905a34b1870db09a", null ], @@ -101,6 +101,8 @@ var boot_8php = [ "CONTACT_IS_FRIEND", "boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f", null ], [ "CONTACT_IS_SHARING", "boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9", null ], [ "DB_UPDATE_VERSION", "boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03", null ], + [ "DBTYPE_MYSQL", "boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f", null ], + [ "DBTYPE_POSTGRES", "boot_8php.html#a37ddabc112db443b4c67fbc0f708817e", null ], [ "DEFAULT_DB_ENGINE", "boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d", null ], [ "DIRECTORY_FALLBACK_MASTER", "boot_8php.html#abedd940e664017c61b48c6efa31d0cb8", null ], [ "DIRECTORY_MODE_NORMAL", "boot_8php.html#ab7d65a7e7417825a4db62906bb600729", null ], @@ -214,7 +216,6 @@ var boot_8php = [ "NOTIFY_TAGSELF", "boot_8php.html#ab724491497ab2618b23a01d5da60aec0", null ], [ "NOTIFY_TAGSHARE", "boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461", null ], [ "NOTIFY_WALL", "boot_8php.html#a505410c7edc5f5bb5fa227b98359793e", null ], - [ "NULL_DATE", "boot_8php.html#a6cd1b4081630b2bf7be38836cd9f410c", null ], [ "PAGE_ADULT", "boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32", null ], [ "PAGE_APPLICATION", "boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed", null ], [ "PAGE_AUTOCONNECT", "boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9", null ], @@ -308,6 +309,7 @@ var boot_8php = [ "XCHAN_FLAGS_HIDDEN", "boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2", null ], [ "XCHAN_FLAGS_NORMAL", "boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6", null ], [ "XCHAN_FLAGS_ORPHAN", "boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f", null ], + [ "XCHAN_FLAGS_PUBFORUM", "boot_8php.html#a0209e605028a5bb492683951ab30d49d", null ], [ "XCHAN_FLAGS_SELFCENSORED", "boot_8php.html#a5a681a672e007cdc22b43345d71f07c6", null ], [ "XCHAN_FLAGS_SYSTEM", "boot_8php.html#afef254290febac854c85fc698d9483a6", null ], [ "ZCURL_TIMEOUT", "boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af", null ], diff --git a/doc/html/classApp-members.html b/doc/html/classApp-members.html index 6e2218d84..199120188 100644 --- a/doc/html/classApp-members.html +++ b/doc/html/classApp-members.html @@ -117,8 +117,6 @@ $(document).ready(function(){initNavTree('classApp.html','');}); $argcApp $argvApp $baseurlAppprivate - $cached_profile_imageAppprivate - $cached_profile_picdateAppprivate $categoryApp $channelApp $cidApp @@ -128,18 +126,16 @@ $(document).ready(function(){initNavTree('classApp.html','');}); $contactsApp $contentApp $css_sourcesApp - $curl_codeAppprivate - $curl_headersAppprivate $dataApp - $dbAppprivate - $errorApp - $force_max_itemsApp - $groupsApp - $hooksApp - $hostnameAppprivate - $identitiesApp - $installApp - $interactiveApp + $errorApp + $force_max_itemsApp + $groupsApp + $hooksApp + $hostnameAppprivate + $identitiesApp + $installApp + $interactiveApp + $is_sysApp $js_sourcesApp $languageApp $layoutApp @@ -170,40 +166,39 @@ $(document).ready(function(){initNavTree('classApp.html','');}); $userApp $videoheightApp $videowidthApp - $widgetlistAppprivate - $widgetsAppprivate - __construct()App - build_pagehead()App - get_account()App - get_apps()App - get_baseurl($ssl=false)App - get_channel()App - get_groups()App - get_hostname()App - get_observer()App - get_path()App - get_perms()App - get_template_engine()App - get_template_ldelim($engine= 'smarty3')App - get_template_rdelim($engine= 'smarty3')App - get_widgets($location= '')App - head_get_icon()App - head_set_icon($icon)App - register_template_engine($class, $name= '')App - set_account($acct)App - set_apps($arr)App - set_baseurl($url)App - set_channel($channel)App - set_groups($g)App - set_hostname($h)App - set_observer($xchan)App - set_pager_itemspage($n)App - set_pager_total($n)App - set_path($p)App - set_perms($perms)App - set_template_engine($engine= 'smarty3')App - set_widget($title, $html, $location= 'aside')App - template_engine($name= '')App + $widgetsAppprivate + __construct()App + build_pagehead()App + get_account()App + get_apps()App + get_baseurl($ssl=false)App + get_channel()App + get_groups()App + get_hostname()App + get_observer()App + get_path()App + get_perms()App + get_template_engine()App + get_template_ldelim($engine= 'smarty3')App + get_template_rdelim($engine= 'smarty3')App + get_widgets($location= '')App + head_get_icon()App + head_set_icon($icon)App + register_template_engine($class, $name= '')App + set_account($acct)App + set_apps($arr)App + set_baseurl($url)App + set_channel($channel)App + set_groups($g)App + set_hostname($h)App + set_observer($xchan)App + set_pager_itemspage($n)App + set_pager_total($n)App + set_path($p)App + set_perms($perms)App + set_template_engine($engine= 'smarty3')App + set_widget($title, $html, $location= 'aside')App + template_engine($name= '')App diff --git a/doc/html/classApp.html b/doc/html/classApp.html index bd8e6bbf0..c0a79a04e 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -254,6 +254,8 @@ Public Attributes    $theme_info = array()   + $is_sys = false +   $nav_sel    $category @@ -279,8 +281,6 @@ Private Attributes    $widgets = array()   - $widgetlist = null -   $apps = array()    $theme @@ -297,16 +297,6 @@ Private Attributes    $path   - $db -  - $curl_code -  - $curl_headers -  - $cached_profile_image -  - $cached_profile_picdate

Detailed Description

class: App

@@ -861,7 +851,7 @@ Private Attributes

return template engine instance. If $name is not defined, return engine defined by theme, or default

Parameters
- +
strin$nameTemplate engine name
string$nameTemplate engine name
@@ -950,46 +940,6 @@ Private Attributes

Referenced by get_baseurl().

-
- - -
-
- - - - - -
- - - - -
App::$cached_profile_image
-
-private
-
- -
-
- -
-
- - - - - -
- - - - -
App::$cached_profile_picdate
-
-private
-
-
@@ -1100,46 +1050,6 @@ Private Attributes
-
- - -
-
- - - - - -
- - - - -
App::$curl_code
-
-private
-
- -
-
- -
-
- - - - - -
- - - - -
App::$curl_headers
-
-private
-
-
@@ -1152,26 +1062,6 @@ Private Attributes
-
- - -
-
- - - - - -
- - - - -
App::$db
-
-private
-
-
@@ -1280,6 +1170,18 @@ Private Attributes
+
+ + +
+
+ + + + +
App::$is_sys = false
+
+
@@ -1713,26 +1615,6 @@ Private Attributes
-
- - -
-
- - - - - -
- - - - -
App::$widgetlist = null
-
-private
-
-
@@ -1753,8 +1635,6 @@ Private Attributes
-

Referenced by get_widgets().

-

The documentation for this class was generated from the following file: diff --git a/doc/html/functions_0x65.html b/doc/html/functions_0x65.html index f9b5ba9bd..efb086291 100644 --- a/doc/html/functions_0x65.html +++ b/doc/html/functions_0x65.html @@ -142,8 +142,16 @@ $(document).ready(function(){initNavTree('functions_0x65.html','');});

- e -

diff --git a/doc/html/functions_0x67.html b/doc/html/functions_0x67.html index 744665c6b..b4867d63e 100644 --- a/doc/html/functions_0x67.html +++ b/doc/html/functions_0x67.html @@ -205,6 +205,9 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');});
  • get_id() : Item
  • +
  • get_install_script() +: dba_driver +
  • get_intltext_template() : FriendicaSmartyEngine
  • @@ -225,6 +228,9 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');});
  • get_mode() : Conversation
  • +
  • get_null_date() +: dba_driver +
  • get_observer() : App , Conversation @@ -307,16 +313,16 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');});
  • getImage() : photo_imagick -, photo_gd , photo_driver +, photo_gd
  • getLastModified() : RedMatrix\RedDAV\RedDirectory , RedMatrix\RedDAV\RedFile
  • getName() -: RedMatrix\RedDAV\RedFile -, RedMatrix\RedDAV\RedDirectory +: RedMatrix\RedDAV\RedDirectory +, RedMatrix\RedDAV\RedFile
  • getQuotaInfo() : RedMatrix\RedDAV\RedDirectory diff --git a/doc/html/functions_0x69.html b/doc/html/functions_0x69.html index 5c919b259..3d44a81a4 100644 --- a/doc/html/functions_0x69.html +++ b/doc/html/functions_0x69.html @@ -148,9 +148,13 @@ $(document).ready(function(){initNavTree('functions_0x69.html','');});
  • install() : dba_driver
  • +
  • INSTALL_SCRIPT +: dba_driver +, dba_postgres +
  • is_commentable() -: Conversation -, Item +: Item +, Conversation
  • is_preview() : Conversation diff --git a/doc/html/functions_0x6e.html b/doc/html/functions_0x6e.html index 72fb064ff..5fde22d13 100644 --- a/doc/html/functions_0x6e.html +++ b/doc/html/functions_0x6e.html @@ -146,6 +146,10 @@ $(document).ready(function(){initNavTree('functions_0x6e.html','');});
  • new_request_token() : FKOAuthDataStore
  • +
  • NULL_DATE +: dba_driver +, dba_postgres +
  • diff --git a/doc/html/functions_0x6f.html b/doc/html/functions_0x6f.html index cff96e18b..0d3b556fc 100644 --- a/doc/html/functions_0x6f.html +++ b/doc/html/functions_0x6f.html @@ -140,6 +140,10 @@ $(document).ready(function(){initNavTree('functions_0x6f.html','');});
    Here is a list of all class members with links to the classes they belong to:

    - o -

    diff --git a/doc/html/functions_func_0x65.html b/doc/html/functions_func_0x65.html index 2add8b68a..8fa81466f 100644 --- a/doc/html/functions_func_0x65.html +++ b/doc/html/functions_func_0x65.html @@ -141,8 +141,16 @@ $(document).ready(function(){initNavTree('functions_func_0x65.html','');});

    - e -

    diff --git a/doc/html/functions_func_0x67.html b/doc/html/functions_func_0x67.html index 2e4957360..f8f8d7154 100644 --- a/doc/html/functions_func_0x67.html +++ b/doc/html/functions_func_0x67.html @@ -204,6 +204,9 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');});
  • get_id() : Item
  • +
  • get_install_script() +: dba_driver +
  • get_intltext_template() : FriendicaSmartyEngine
  • @@ -224,6 +227,9 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');});
  • get_mode() : Conversation
  • +
  • get_null_date() +: dba_driver +
  • get_observer() : App , Conversation @@ -306,16 +312,16 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');});
  • getImage() : photo_imagick -, photo_gd , photo_driver +, photo_gd
  • getLastModified() : RedMatrix\RedDAV\RedDirectory , RedMatrix\RedDAV\RedFile
  • getName() -: RedMatrix\RedDAV\RedFile -, RedMatrix\RedDAV\RedDirectory +: RedMatrix\RedDAV\RedDirectory +, RedMatrix\RedDAV\RedFile
  • getQuotaInfo() : RedMatrix\RedDAV\RedDirectory diff --git a/doc/html/functions_func_0x6f.html b/doc/html/functions_func_0x6f.html index c955abd89..382222e6f 100644 --- a/doc/html/functions_func_0x6f.html +++ b/doc/html/functions_func_0x6f.html @@ -139,6 +139,10 @@ $(document).ready(function(){initNavTree('functions_func_0x6f.html','');});  

    - o -

      +
    • optimize_table() +: dba_driver +, dba_postgres +
    • orient() : photo_driver
    • diff --git a/doc/html/functions_func_0x71.html b/doc/html/functions_func_0x71.html index df5b7d285..186454586 100644 --- a/doc/html/functions_func_0x71.html +++ b/doc/html/functions_func_0x71.html @@ -141,8 +141,13 @@ $(document).ready(function(){initNavTree('functions_func_0x71.html','');});

      - q -

      diff --git a/doc/html/functions_func_0x75.html b/doc/html/functions_func_0x75.html index 00d4ae0f4..7996cb15c 100644 --- a/doc/html/functions_func_0x75.html +++ b/doc/html/functions_func_0x75.html @@ -139,9 +139,16 @@ $(document).ready(function(){initNavTree('functions_func_0x75.html','');});  

      - u -

      diff --git a/doc/html/functions_vars.html b/doc/html/functions_vars.html index 18ed219ed..d9445bd4d 100644 --- a/doc/html/functions_vars.html +++ b/doc/html/functions_vars.html @@ -85,6 +85,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); @@ -146,12 +149,6 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
    • $browser : RedMatrix\RedDAV\RedBasicAuth
    • -
    • $cached_profile_image -: App -
    • -
    • $cached_profile_picdate -: App -
    • $category : App
    • @@ -211,12 +208,6 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
    • $css_sources : App
    • -
    • $curl_code -: App -
    • -
    • $curl_headers -: App -
    • $d : Template
    • @@ -226,8 +217,7 @@ $(document).ready(function(){initNavTree('functions_vars.html','');}); , RedMatrix\RedDAV\RedFile
    • $db -: App -, dba_driver +: dba_driver
    • $debug : dba_driver @@ -276,6 +266,9 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
    • $interactive : App
    • +
    • $is_sys +: App +
    • $itemlist : Redmatrix\Import\Import
    • @@ -470,9 +463,6 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
    • $wall_to_wall : Item
    • -
    • $widgetlist -: App -
    • $widgets : App
    • @@ -483,6 +473,30 @@ $(document).ready(function(){initNavTree('functions_vars.html','');}); : Conversation
    + + +

    - i -

    + + +

    - n -

    + + +

    - u -

    diff --git a/doc/html/globals_0x62.html b/doc/html/globals_0x62.html index 64384e429..5e4fffd45 100644 --- a/doc/html/globals_0x62.html +++ b/doc/html/globals_0x62.html @@ -222,8 +222,11 @@ $(document).ready(function(){initNavTree('globals_0x62.html','');});
  • blocks_content() : blocks.php
  • +
  • blocks_init() +: blocks.php +
  • blog_init() -: theme.php +: theme.php
  • blog_install() : theme.php @@ -235,7 +238,7 @@ $(document).ready(function(){initNavTree('globals_0x62.html','');}); : theme.php
  • blogtheme_form() -: config.php +: config.php
  • blogtheme_imgurl() : theme.php diff --git a/doc/html/globals_0x64.html b/doc/html/globals_0x64.html index 52b9313da..1474f98ba 100644 --- a/doc/html/globals_0x64.html +++ b/doc/html/globals_0x64.html @@ -156,11 +156,26 @@ $(document).ready(function(){initNavTree('globals_0x64.html','');});
  • day_translate() : text.php
  • +
  • db_concat() +: dba_driver.php +
  • +
  • db_getfunc() +: dba_driver.php +
  • +
  • db_optimizetable() +: dba_driver.php +
  • +
  • db_quoteinterval() +: dba_driver.php +
  • DB_UPDATE_VERSION : boot.php
  • +
  • db_utcnow() +: dba_driver.php +
  • dba_factory() -: dba_driver.php +: dba_driver.php
  • dba_timer() : boot.php @@ -174,12 +189,30 @@ $(document).ready(function(){initNavTree('globals_0x64.html','');});
  • dbesc_array_cb() : dba_driver.php
  • +
  • dbesc_identifier() +: dba_driver.php +
  • +
  • dbescbin() +: dba_driver.php +
  • +
  • dbescdate() +: dba_driver.php +
  • dbg() : dba_driver.php
  • dbq() : dba_driver.php
  • +
  • DBTYPE_MYSQL +: boot.php +
  • +
  • DBTYPE_POSTGRES +: boot.php +
  • +
  • dbunescbin() +: dba_driver.php +
  • decode_tags() : items.php
  • @@ -372,9 +405,6 @@ $(document).ready(function(){initNavTree('globals_0x64.html','');});
  • directory_run() : directory.php
  • -
  • dirprofile_init() -: dirprofile.php -
  • dirsearch_content() : dirsearch.php
  • diff --git a/doc/html/globals_0x65.html b/doc/html/globals_0x65.html index ddd15a2ec..15f68dbbc 100644 --- a/doc/html/globals_0x65.html +++ b/doc/html/globals_0x65.html @@ -147,20 +147,29 @@ $(document).ready(function(){initNavTree('globals_0x65.html','');});
  • editblock_content() : editblock.php
  • +
  • editblock_init() +: editblock.php +
  • editlayout_content() : editlayout.php
  • +
  • editlayout_init() +: editlayout.php +
  • editpost_content() : editpost.php
  • editwebpage_content() : editwebpage.php
  • +
  • editwebpage_init() +: editwebpage.php +
  • else -: style.php -, auth.php +: auth.php , fpostit.php , tpldebug.php +, style.php
  • email_header_encode() : network.php diff --git a/doc/html/globals_0x6c.html b/doc/html/globals_0x6c.html index 7aef7b38d..57ca38e8b 100644 --- a/doc/html/globals_0x6c.html +++ b/doc/html/globals_0x6c.html @@ -162,6 +162,9 @@ $(document).ready(function(){initNavTree('globals_0x6c.html','');});
  • layouts_content() : layouts.php
  • +
  • layouts_init() +: layouts.php +
  • legal_webbie() : text.php
  • diff --git a/doc/html/globals_0x6e.html b/doc/html/globals_0x6e.html index 9e373f1d8..4d5aa9883 100644 --- a/doc/html/globals_0x6e.html +++ b/doc/html/globals_0x6e.html @@ -363,9 +363,6 @@ $(document).ready(function(){initNavTree('globals_0x6e.html','');});
  • nuke_session() : auth.php
  • -
  • NULL_DATE -: boot.php -
  • diff --git a/doc/html/globals_0x77.html b/doc/html/globals_0x77.html index 466a1efb7..ad5b01942 100644 --- a/doc/html/globals_0x77.html +++ b/doc/html/globals_0x77.html @@ -159,6 +159,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
  • webpages_content() : webpages.php
  • +
  • webpages_init() +: webpages.php +
  • wfinger_init() : wfinger.php
  • diff --git a/doc/html/globals_0x78.html b/doc/html/globals_0x78.html index dc2845bd9..e3a2f782c 100644 --- a/doc/html/globals_0x78.html +++ b/doc/html/globals_0x78.html @@ -145,7 +145,7 @@ $(document).ready(function(){initNavTree('globals_0x78.html','');});

    - x -

    • x() -: boot.php +: boot.php
    • xchan_content() : xchan.php @@ -168,6 +168,9 @@ $(document).ready(function(){initNavTree('globals_0x78.html','');});
    • XCHAN_FLAGS_ORPHAN : boot.php
    • +
    • XCHAN_FLAGS_PUBFORUM +: boot.php +
    • XCHAN_FLAGS_SELFCENSORED : boot.php
    • diff --git a/doc/html/globals_func_0x62.html b/doc/html/globals_func_0x62.html index 099922e7d..e141975a7 100644 --- a/doc/html/globals_func_0x62.html +++ b/doc/html/globals_func_0x62.html @@ -221,8 +221,11 @@ $(document).ready(function(){initNavTree('globals_func_0x62.html','');});
    • blocks_content() : blocks.php
    • +
    • blocks_init() +: blocks.php +
    • blog_init() -: theme.php +: theme.php
    • blog_install() : theme.php @@ -234,7 +237,7 @@ $(document).ready(function(){initNavTree('globals_func_0x62.html','');}); : theme.php
    • blogtheme_form() -: config.php +: config.php
    • blogtheme_imgurl() : theme.php diff --git a/doc/html/globals_func_0x64.html b/doc/html/globals_func_0x64.html index c788e8a9f..44261db96 100644 --- a/doc/html/globals_func_0x64.html +++ b/doc/html/globals_func_0x64.html @@ -155,8 +155,23 @@ $(document).ready(function(){initNavTree('globals_func_0x64.html','');});
    • day_translate() : text.php
    • +
    • db_concat() +: dba_driver.php +
    • +
    • db_getfunc() +: dba_driver.php +
    • +
    • db_optimizetable() +: dba_driver.php +
    • +
    • db_quoteinterval() +: dba_driver.php +
    • +
    • db_utcnow() +: dba_driver.php +
    • dba_factory() -: dba_driver.php +: dba_driver.php
    • dba_timer() : boot.php @@ -170,12 +185,24 @@ $(document).ready(function(){initNavTree('globals_func_0x64.html','');});
    • dbesc_array_cb() : dba_driver.php
    • +
    • dbesc_identifier() +: dba_driver.php +
    • +
    • dbescbin() +: dba_driver.php +
    • +
    • dbescdate() +: dba_driver.php +
    • dbg() : dba_driver.php
    • dbq() : dba_driver.php
    • +
    • dbunescbin() +: dba_driver.php +
    • decode_tags() : items.php
    • @@ -347,9 +374,6 @@ $(document).ready(function(){initNavTree('globals_func_0x64.html','');});
    • directory_run() : directory.php
    • -
    • dirprofile_init() -: dirprofile.php -
    • dirsearch_content() : dirsearch.php
    • diff --git a/doc/html/globals_func_0x65.html b/doc/html/globals_func_0x65.html index d52e7eb3c..fc927e91c 100644 --- a/doc/html/globals_func_0x65.html +++ b/doc/html/globals_func_0x65.html @@ -146,15 +146,24 @@ $(document).ready(function(){initNavTree('globals_func_0x65.html','');});
    • editblock_content() : editblock.php
    • +
    • editblock_init() +: editblock.php +
    • editlayout_content() : editlayout.php
    • +
    • editlayout_init() +: editlayout.php +
    • editpost_content() : editpost.php
    • editwebpage_content() : editwebpage.php
    • +
    • editwebpage_init() +: editwebpage.php +
    • email_header_encode() : network.php
    • diff --git a/doc/html/globals_func_0x6c.html b/doc/html/globals_func_0x6c.html index 43986657d..9cdb99640 100644 --- a/doc/html/globals_func_0x6c.html +++ b/doc/html/globals_func_0x6c.html @@ -155,6 +155,9 @@ $(document).ready(function(){initNavTree('globals_func_0x6c.html','');});
    • layouts_content() : layouts.php
    • +
    • layouts_init() +: layouts.php +
    • legal_webbie() : text.php
    • diff --git a/doc/html/globals_func_0x77.html b/doc/html/globals_func_0x77.html index 374fcd7dc..9985b26a1 100644 --- a/doc/html/globals_func_0x77.html +++ b/doc/html/globals_func_0x77.html @@ -158,6 +158,9 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
    • webpages_content() : webpages.php
    • +
    • webpages_init() +: webpages.php +
    • wfinger_init() : wfinger.php
    • diff --git a/doc/html/globals_func_0x78.html b/doc/html/globals_func_0x78.html index d20431ab2..133418043 100644 --- a/doc/html/globals_func_0x78.html +++ b/doc/html/globals_func_0x78.html @@ -144,7 +144,7 @@ $(document).ready(function(){initNavTree('globals_func_0x78.html','');});

      - x -

      • x() -: boot.php +: boot.php
      • xchan_content() : xchan.php diff --git a/doc/html/globals_vars_0x64.html b/doc/html/globals_vars_0x64.html index dd0bf4e87..eeee1c304 100644 --- a/doc/html/globals_vars_0x64.html +++ b/doc/html/globals_vars_0x64.html @@ -143,6 +143,12 @@ $(document).ready(function(){initNavTree('globals_vars_0x64.html','');});
      • DB_UPDATE_VERSION : boot.php
      • +
      • DBTYPE_MYSQL +: boot.php +
      • +
      • DBTYPE_POSTGRES +: boot.php +
      • DEFAULT_DB_ENGINE : boot.php
      • diff --git a/doc/html/globals_vars_0x6e.html b/doc/html/globals_vars_0x6e.html index 45c9f9743..645094fe8 100644 --- a/doc/html/globals_vars_0x6e.html +++ b/doc/html/globals_vars_0x6e.html @@ -263,9 +263,6 @@ $(document).ready(function(){initNavTree('globals_vars_0x6e.html','');});
      • NOTIFY_WALL : boot.php
      • -
      • NULL_DATE -: boot.php -
      diff --git a/doc/html/globals_vars_0x78.html b/doc/html/globals_vars_0x78.html index c229b615f..41525e813 100644 --- a/doc/html/globals_vars_0x78.html +++ b/doc/html/globals_vars_0x78.html @@ -155,6 +155,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x78.html','');});
    • XCHAN_FLAGS_ORPHAN : boot.php
    • +
    • XCHAN_FLAGS_PUBFORUM +: boot.php +
    • XCHAN_FLAGS_SELFCENSORED : boot.php
    • diff --git a/doc/html/hierarchy.html b/doc/html/hierarchy.html index 76f606ace..bab370cec 100644 --- a/doc/html/hierarchy.html +++ b/doc/html/hierarchy.html @@ -118,44 +118,45 @@ $(document).ready(function(){initNavTree('hierarchy.html','');}); |oCConversation |\CItem oCCache -oCdba_driver +oCdba_driverAbstract database driver class |oCdba_mysql -|\Cdba_mysqli -oCenotify -oCICollection -|\CRedMatrix\RedDAV\RedDirectoryRedDirectory class -oCIFile -|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV -oCRedmatrix\Import\Import -oCIQuota -|\CRedMatrix\RedDAV\RedDirectoryRedDirectory class -oCITemplateEngine -|oCFriendicaSmartyEngine -|\CTemplate -oCNode -|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class -|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV -oCOAuthDataStore -|\CFKOAuthDataStore -oCOAuthServer -|\CFKOAuth1 -oCphoto_driver -|oCphoto_gd -|\Cphoto_imagick -oCPlugin -|\CRedMatrix\RedDAV\RedBrowserProvides a DAV frontend for the webbrowser -oCProtoDriver -|\CZotDriver -oCSabre -|oCRedMatrix\RedDAV\RedBasicAuthAuthentication backend class for RedDAV -|oCRedMatrix\RedDAV\RedBrowserProvides a DAV frontend for the webbrowser -|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class -|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class -|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class -|oCRedMatrix\RedDAV\RedFileThis class represents a file in DAV -|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV -\CSmarty - \CFriendicaSmarty +|oCdba_mysqli +|\Cdba_postgres +oCenotify +oCICollection +|\CRedMatrix\RedDAV\RedDirectoryRedDirectory class +oCIFile +|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV +oCRedmatrix\Import\Import +oCIQuota +|\CRedMatrix\RedDAV\RedDirectoryRedDirectory class +oCITemplateEngine +|oCFriendicaSmartyEngine +|\CTemplate +oCNode +|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class +|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV +oCOAuthDataStore +|\CFKOAuthDataStore +oCOAuthServer +|\CFKOAuth1 +oCphoto_driver +|oCphoto_gd +|\Cphoto_imagick +oCPlugin +|\CRedMatrix\RedDAV\RedBrowserProvides a DAV frontend for the webbrowser +oCProtoDriver +|\CZotDriver +oCSabre +|oCRedMatrix\RedDAV\RedBasicAuthAuthentication backend class for RedDAV +|oCRedMatrix\RedDAV\RedBrowserProvides a DAV frontend for the webbrowser +|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class +|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class +|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class +|oCRedMatrix\RedDAV\RedFileThis class represents a file in DAV +|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV +\CSmarty + \CFriendicaSmarty diff --git a/doc/html/hierarchy.js b/doc/html/hierarchy.js index cad7823d1..e8df755d6 100644 --- a/doc/html/hierarchy.js +++ b/doc/html/hierarchy.js @@ -11,7 +11,8 @@ var hierarchy = [ "Cache", "classCache.html", null ], [ "dba_driver", "classdba__driver.html", [ [ "dba_mysql", "classdba__mysql.html", null ], - [ "dba_mysqli", "classdba__mysqli.html", null ] + [ "dba_mysqli", "classdba__mysqli.html", null ], + [ "dba_postgres", "classdba__postgres.html", null ] ] ], [ "enotify", "classenotify.html", null ], [ "ICollection", null, [ diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html index fed3e46d6..e6956b904 100644 --- a/doc/html/identity_8php.html +++ b/doc/html/identity_8php.html @@ -290,7 +290,7 @@ Functions @@ -454,7 +454,7 @@ Functions @@ -759,7 +759,7 @@ Functions

      The channel default theme is also selected for use, unless over-riden elsewhere.

      load/reload current theme info

      -

      Referenced by achievements_content(), block_init(), blocks_content(), channel_init(), chat_init(), cloud_init(), common_init(), connect_init(), hcard_init(), layouts_content(), page_init(), photos_init(), profile_init(), profile_photo_init(), profiles_init(), profperm_init(), viewconnections_init(), and webpages_content().

      +

      Referenced by achievements_content(), block_init(), blocks_init(), channel_init(), chat_init(), cloud_init(), common_init(), connect_init(), editblock_init(), editlayout_init(), editwebpage_init(), hcard_init(), layouts_init(), page_init(), photos_init(), profile_init(), profile_photo_init(), profiles_init(), profiles_post(), profperm_init(), viewconnections_init(), and webpages_init().

      @@ -815,8 +815,6 @@ Functions
      -

      Referenced by dirprofile_init().

      -
      @@ -924,7 +922,7 @@ Functions
      Returns
      string

      'zid' string url - url to accept zid string zid - urlencoded zid string result - the return string we calculated, change it if you want to return something else

      -

      Referenced by advanced_profile(), app_render(), chanview_content(), chatsvc_content(), conversation(), dirprofile_init(), format_categories(), format_hashtags(), format_mentions(), get_plink(), get_things(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), parse_app_description(), tryzrlaudio(), tryzrlvideo(), widget_bookmarkedchats(), widget_photo(), and widget_suggestedchats().

      +

      Referenced by advanced_profile(), app_render(), chanview_content(), chatsvc_content(), conversation(), format_categories(), format_hashtags(), format_mentions(), get_plink(), get_things(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), parse_app_description(), tryzrlaudio(), tryzrlvideo(), widget_bookmarkedchats(), widget_photo(), and widget_suggestedchats().

      diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index 6c68d2138..091ea54ec 100644 --- a/doc/html/include_2config_8php.html +++ b/doc/html/include_2config_8php.html @@ -159,10 +159,10 @@ Functions

      Arbitrary configuration storage.

      Note: Please do not store booleans - convert to 0/1 integer values The get_?config() functions return boolean false for keys that are unset, and this could lead to subtle bugs.

      Arrays get stored as serialize strings.

      -
      Todo:
      There are a few places in the code (such as the admin panel) where boolean configurations need to be fixed as of 10/08/2011.
      +
      Todo:
      There are a few places in the code (such as the admin panel) where boolean configurations need to be fixed as of 10/08/2011.
      @@ -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(), 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().

      +

      Referenced by Conversation\__construct(), acl_init(), bb2diaspora_itembody(), blocks_content(), App\build_pagehead(), change_channel(), channel_content(), connect_content(), connedit_content(), connedit_post(), contact_block(), contact_remove(), conversation(), current_theme(), diaspora_request(), directory_content(), 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(), zfinger_init(), and zot_refresh().

      diff --git a/doc/html/include_2network_8php.html b/doc/html/include_2network_8php.html index dc050e058..56a0aadea 100644 --- a/doc/html/include_2network_8php.html +++ b/doc/html/include_2network_8php.html @@ -120,7 +120,7 @@ Functions    z_post_url_json ($url, $params, $redirects=0, $opts=array())   - json_return_and_die ($x) + json_return_and_die ($x)    xml_status ($st, $message= '')   @@ -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(), reflect_photo_callback(), remote_online_status(), scale_external_images(), scrape_feed(), scrape_vcard(), setup_post(), sslify_init(), sync_directories(), update_suggestions(), webfinger_rfc7033(), z_post_url(), zot_finger(), and zot_register_hub().

      +

      Referenced by check_htaccess(), directory_content(), discover_by_url(), discover_by_webbie(), externals_run(), fetch_xrd_links(), get_diaspora_reshare_xml(), handle_feed(), import_post(), import_profile_photo(), import_site(), import_xchan(), navbar_complete(), oembed_fetch_url(), oexchange_content(), onepoll_run(), parseurl_getsiteinfo(), poco_load(), 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/items_8php.html b/doc/html/items_8php.html index cfe6a12b6..b6fe1692b 100644 --- a/doc/html/items_8php.html +++ b/doc/html/items_8php.html @@ -148,15 +148,15 @@ Functions    title_is_body ($title, $body)   - get_item_elements ($x) + get_item_elements ($x)   - import_author_xchan ($x) + import_author_xchan ($x)   - import_author_diaspora ($x) + import_author_diaspora ($x)   - import_author_rss ($x) + import_author_rss ($x)   - import_author_unknown ($x) + import_author_unknown ($x)    encode_item ($item, $mirror=false)   @@ -180,9 +180,9 @@ Functions    encode_mail ($item)   - get_mail_elements ($x) + get_mail_elements ($x)   - get_profile_elements ($x) + get_profile_elements ($x)    get_atom_elements ($feed, $item, &$author)   diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index 3e1fd3824..3e8307803 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(), 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().

      +

      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(), dirsearch_content(), display_content(), dob(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store_item(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), foofoo(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), gender_selector_min(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), Item\get_template_data(), group_add(), group_content(), group_post(), group_side(), hcard_init(), help_content(), home_content(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_check_service_class(), impel_init(), import_author_rss(), import_author_unknown(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_content(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), like_puller(), load_database(), localize_item(), lockview_content(), locs_content(), locs_post(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), marital_selector_min(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_init(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), poll_content(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), role_selector(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_scope(), translate_system_apps(), update_birthdays(), update_channel_content(), update_display_content(), update_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/layouts_8php.html b/doc/html/layouts_8php.html index 01db274f4..7287e9147 100644 --- a/doc/html/layouts_8php.html +++ b/doc/html/layouts_8php.html @@ -112,6 +112,8 @@ $(document).ready(function(){initNavTree('layouts_8php.html','');}); + +

      Functions

       layouts_init (&$a)
       
       layouts_content (&$a)
       
      @@ -130,6 +132,22 @@ Functions
      +
      + + +
      +
      + + + + + + + + +
      layouts_init ($a)
      +
      +
      diff --git a/doc/html/layouts_8php.js b/doc/html/layouts_8php.js index ee929d2fc..5c56bc6c3 100644 --- a/doc/html/layouts_8php.js +++ b/doc/html/layouts_8php.js @@ -1,4 +1,5 @@ var layouts_8php = [ - [ "layouts_content", "layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50", null ] + [ "layouts_content", "layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50", null ], + [ "layouts_init", "layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa", null ] ]; \ No newline at end of file diff --git a/doc/html/navtree.js b/doc/html/navtree.js index cc61fa4f9..ae229089f 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#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" +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115", +"classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f", +"classTemplate.html#a37c15f6d1ade500943629f27a62808b7", +"dba__driver_8php.html", +"globals_0x67.html", +"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941", +"mod_2bookmarks_8php.html", +"refimport_8php.html", +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index 0deb6b75f..4c0766557 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -144,6 +144,7 @@ var NAVTREEINDEX0 = "block_8php.html#a9b61c96044ed2a068f18c10370a78d5c":[6,0,1,8,1], "blocks_8php.html":[6,0,1,9], "blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12":[6,0,1,9,0], +"blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9":[6,0,1,9,1], "blogga_2php_2theme_8php.html":[6,0,3,1,1,0,2], "blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b":[6,0,3,1,1,0,2,0], "blogga_2view_2theme_2blog_2theme_8php.html":[6,0,3,1,1,1,0,0,2], @@ -153,101 +154,100 @@ 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,146], -"boot_8php.html#a01353c9abebc3544ea080ac161729632":[6,0,4,39], -"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,160], -"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,266], -"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,138], +"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[6,0,4,148], +"boot_8php.html#a0209e605028a5bb492683951ab30d49d":[6,0,4,309], +"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,162], +"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,267], +"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,140], "boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[6,0,4,58], -"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,179], +"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,181], "boot_8php.html#a0450389f24c632906fbc24347700a543":[6,0,4,49], -"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[6,0,4,111], +"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[6,0,4,113], "boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[6,0,4,1], -"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,222], +"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,223], "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,286], -"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,282], -"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,285], +"boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3":[6,0,4,300], +"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[6,0,4,185], +"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,287], +"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,283], +"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,286], "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,271], -"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,140], -"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,270], +"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,272], +"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,142], +"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,271], "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#a14d44d4a00223dc3db4ea962325db192":[6,0,4,212], "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#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#a17b4ea23d9ecf628d9c8f53b7abcb805":[6,0,4,161], +"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[6,0,4,157], +"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[6,0,4,184], +"boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[6,0,4,151], +"boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71":[6,0,4,299], +"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,306], +"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,261], +"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,308], +"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[6,0,4,188], "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,262], +"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[6,0,4,238], +"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[6,0,4,115], +"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[6,0,4,168], +"boot_8php.html#a205d013103997adfa72953d2f20c01e1":[6,0,4,232], +"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[6,0,4,205], +"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,263], "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#a25476eec71fceda237f7dc1d78b0adb8":[6,0,4,108], "boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[6,0,4,98], -"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,274], -"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,206], +"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,275], +"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,208], "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,258], -"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,202], -"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,135], +"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[6,0,4,141], +"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[6,0,4,236], +"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[6,0,4,116], +"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,259], +"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,204], +"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,137], "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,242], -"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[6,0,4,153], +"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[6,0,4,243], +"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[6,0,4,155], "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,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,310], -"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,188], -"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,233], +"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[6,0,4,130], +"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[6,0,4,170], +"boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[6,0,4,219], +"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,313], +"boot_8php.html#a37281c30bd92cecb499878d6778c570f":[6,0,4,298], +"boot_8php.html#a37ddabc112db443b4c67fbc0f708817e":[6,0,4,102], +"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[6,0,4,193], +"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[6,0,4,119], +"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[6,0,4,124], +"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,312], +"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,190], +"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,234], "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[6,0,4,12], "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#a40d885b2cfd736aab4234ae641ca4dfb":[6,0,4,144], +"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[6,0,4,227], +"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[6,0,4,203], "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#a444ce608ce34efb82ee11852f36e825f":[6,0,4,178], +"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[6,0,4,165], "boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[6,0,4,77], -"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,169], -"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,252], -"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,187], +"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,171], +"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,284], +"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[6,0,4,191], +"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[6,0,4,114], +"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,253], +"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,189], "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#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,225], +"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,62] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index 49933455f..e5c55b0c2 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,219 +1,222 @@ var NAVTREEINDEX1 = { +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,248], +"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,215], "boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,30], -"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,167], +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,169], "boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,44], "boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,88], "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,36], -"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,205], -"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,246], -"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,308], +"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,207], +"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,247], +"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,310], "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[6,0,4,20], "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#a5b043b7fdcfd4e8c9c3747574afc6caa":[6,0,4,197], +"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[6,0,4,220], "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#a5df5359090d1f8e898c36d7cf8878ad2":[6,0,4,176], +"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[6,0,4,221], "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,81], -"boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,110], -"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#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,112], +"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,280], +"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[6,0,4,182], +"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[6,0,4,153], +"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[6,0,4,156], "boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[6,0,4,48], -"boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,157], -"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], +"boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,159], +"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,265], +"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[6,0,4,251], +"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[6,0,4,245], +"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[6,0,4,109], "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,263], -"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,173], +"boot_8php.html#a6df1102664f64b274810db85197c2755":[6,0,4,231], +"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[6,0,4,139], +"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[6,0,4,226], +"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[6,0,4,110], +"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,264], +"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,175], "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#a7236b2cdcf59f02a42302e893a99013b":[6,0,4,198], +"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[6,0,4,146], "boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[6,0,4,78], "boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[6,0,4,2], -"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,287], -"boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9":[6,0,4,296], +"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,288], +"boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9":[6,0,4,297], "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,254], -"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,123], +"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,255], +"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,125], "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#a7af107fab8d62b9a73801713b774ed30":[6,0,4,145], +"boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe":[6,0,4,295], +"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[6,0,4,177], "boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[6,0,4,75], -"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,115], +"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,117], "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#a7e5627b5ca4b7464feb0f08663b19ea1":[6,0,4,303], +"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[6,0,4,179], "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#a7fc4b291a7cdaa48b38e27344ea183cf":[6,0,4,128], +"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[6,0,4,217], "boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[6,0,4,57], -"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[6,0,4,120], +"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[6,0,4,122], "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,278], -"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,277], -"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,194], +"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[6,0,4,229], +"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[6,0,4,135], +"boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[6,0,4,127], +"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,279], +"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,278], +"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,196], "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,256], -"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,306], -"boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0":[6,0,4,251], +"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[6,0,4,106], +"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[6,0,4,249], +"boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f":[6,0,4,101], +"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[6,0,4,138], +"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[6,0,4,132], +"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,257], +"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,307], +"boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0":[6,0,4,252], "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,290], -"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,261], +"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[6,0,4,160], +"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[6,0,4,136], +"boot_8php.html#a949116d9a295b214293006c060ca4848":[6,0,4,134], +"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,291], +"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,262], "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#a981d46380f9f23c308bac1f9cb00dc5b":[6,0,4,210], +"boot_8php.html#a997614f25e58f8313641e1eb0109fd10":[6,0,4,301], +"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[6,0,4,250], "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,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#a9cc986b4f9dd6558cbb2e25aadbfd964":[6,0,4,241], +"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[6,0,4,211], +"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,305], +"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,281], +"boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f":[6,0,4,293], +"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[6,0,4,240], +"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[6,0,4,199], "boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[6,0,4,26], -"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[6,0,4,217], +"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[6,0,4,218], "boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[6,0,4,47], -"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[6,0,4,165], +"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[6,0,4,167], "boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[6,0,4,9], -"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[6,0,4,162], -"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[6,0,4,119], +"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[6,0,4,164], +"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[6,0,4,121], "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#aa8a2b61e70900139d1ca28e46f1da49d":[6,0,4,103], +"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[6,0,4,246], +"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[6,0,4,150], +"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[6,0,4,228], "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#ab21fb0f3e6b962419955c6fc7f26734f":[6,0,4,202], +"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[6,0,4,126], +"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[6,0,4,230], "boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[6,0,4,35], -"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,223], -"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], -"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[6,0,4,150], +"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,224], +"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,254], +"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[6,0,4,195], +"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[6,0,4,235], +"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[6,0,4,120], +"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[6,0,4,152], "boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[6,0,4,59], -"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,211], +"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,213], "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[6,0,4,7], -"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,103], -"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,289], +"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,105], +"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,290], "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[6,0,4,40], -"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,257], +"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,258], "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[6,0,4,3], -"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,284], +"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,285], "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#abeb4d86e17cefa8584f1244e2183b0e1":[6,0,4,123], +"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[6,0,4,104], +"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[6,0,4,133], "boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[6,0,4,24], -"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,178], -"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,255], -"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,141], +"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,180], +"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,256], +"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,143], "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,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#ac86615ddc0763a00f5311c90e991730c":[6,0,4,292], +"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[6,0,4,129], +"boot_8php.html#ac89396b9144391acd08d6d0f9b332220":[6,0,4,294], +"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[6,0,4,131], +"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[6,0,4,209], "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,303], -"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,241], -"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,276], -"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,215], +"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[6,0,4,183], +"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,304], +"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,242], +"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,277], +"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,216], "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#ad0876e837cf3fad8a26417e315f6e2c8":[6,0,4,163], +"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[6,0,4,173], "boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13":[6,0,4,10], "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,265], -"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,259], -"boot_8php.html#ad94aca4c260b8a892397786201dc4664":[6,0,4,295], +"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[6,0,4,237], +"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,266], +"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,260], +"boot_8php.html#ad94aca4c260b8a892397786201dc4664":[6,0,4,296], "boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[6,0,4,97], -"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,145], -"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,268], +"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,147], +"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,269], "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#ae09767b94688657978ff9366ec63684b":[6,0,4,302], "boot_8php.html#ae0d9527117cd87dcba11986047ae336e":[6,0,4,45], -"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,109], -"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,288], +"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,111], +"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,276], +"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[6,0,4,192], +"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[6,0,4,166], +"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[6,0,4,200], +"boot_8php.html#ae97836b0547953be182a2334c9c91d3c":[6,0,4,39], +"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,289], "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[6,0,4,28], -"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,281], +"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,282], "boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[6,0,4,54], -"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,238], -"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], -"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#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,239], +"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,270], +"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[6,0,4,174], +"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[6,0,4,107], +"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[6,0,4,186], +"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[6,0,4,201], +"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[6,0,4,149], +"boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[6,0,4,118], "boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[6,0,4,32], -"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,272], -"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,192], +"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,273], +"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,194], "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#af3ff14985bffbd951a6ea356b7ec3007":[6,0,4,244], +"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[6,0,4,154], +"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[6,0,4,214], +"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[6,0,4,172], "boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[6,0,4,94], -"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,273], +"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,268], +"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[6,0,4,206], +"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[6,0,4,187], +"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,274], "boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[6,0,4,51], -"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,221], +"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,222], "boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[6,0,4,86], -"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,156], +"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,158], "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[6,0,4,14], -"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,309], -"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,232], +"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,311], +"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,233], "boxy_8php.html":[6,0,3,1,4,1,0], "cache_8php.html":[6,0,0,15], "chanman_8php.html":[6,0,0,16], @@ -229,25 +232,22 @@ var NAVTREEINDEX1 = "chatsvc_8php.html#a7c9a9b9c24a2b02eed8efd6b09632d03":[6,0,1,14,2], "choklet_8php.html":[6,0,3,0,0], "classApp.html":[5,0,7], -"classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3":[5,0,7,56], -"classApp.html#a050b0696118da47e8b30859ad1a2c149":[5,0,7,40], +"classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3":[5,0,7,51], +"classApp.html#a050b0696118da47e8b30859ad1a2c149":[5,0,7,38], "classApp.html#a084e03c77686d8c13390fef3f7428a2b":[5,0,7,5], "classApp.html#a08bc87aff64f39fbc084e9d6545cee4d":[5,0,7,2], -"classApp.html#a08c24d6a6fc52fcc784b0f765f13b820":[5,0,7,75], +"classApp.html#a08c24d6a6fc52fcc784b0f765f13b820":[5,0,7,71], "classApp.html#a08f0537964d98958d218066364cff785":[5,0,7,1], -"classApp.html#a0ce85be198e46570366cb3344f3c55b8":[5,0,7,50], -"classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d":[5,0,7,60], +"classApp.html#a0ce85be198e46570366cb3344f3c55b8":[5,0,7,46], +"classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d":[5,0,7,56], "classApp.html#a123b903dfe5d3488cc68db3471d36fd2":[5,0,7,30], -"classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11":[5,0,7,79], +"classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11":[5,0,7,75], "classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3":[5,0,7,32], -"classApp.html#a1936f2afce0dc0d1bbed15ae1f2ee81a":[5,0,7,73], -"classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f":[5,0,7,61], +"classApp.html#a1936f2afce0dc0d1bbed15ae1f2ee81a":[5,0,7,69], +"classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f":[5,0,7,57], "classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2":[5,0,7,8], +"classApp.html#a1f60d19d47021629faac7a0a6d917e94":[5,0,7,55], "classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7":[5,0,7,29], "classApp.html#a230e975296cf164da2fee35ef720964f":[5,0,7,33], -"classApp.html#a244b2d53b21be269aad2269d23192f95":[5,0,7,77], -"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#a244b2d53b21be269aad2269d23192f95":[5,0,7,73] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 6f46ad030..933ac1c64 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,74 +1,72 @@ var NAVTREEINDEX2 = { -"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,7,66], +"classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f":[5,0,7,72], +"classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a":[5,0,7,12], +"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,7,62], "classApp.html#a344d2b7dc2f276648d521aee4da1731c":[5,0,7,23], -"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,7,55], +"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,7,50], "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#a487332f8de40414ca1a54a4265570b70":[5,0,7,81], +"classApp.html#a495ec082c2719314e536070ca1ce073d":[5,0,7,40], +"classApp.html#a4b67935096f66d1f14b657399a8461ac":[5,0,7,64], "classApp.html#a4bdd7bfed62f50515fce652127bf481b":[5,0,7,25], -"classApp.html#a4c7cfc62d39508086cf300dc2e39c4df":[5,0,7,59], -"classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f":[5,0,7,67], +"classApp.html#a4c7cfc62d39508086cf300dc2e39c4df":[5,0,7,54], +"classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f":[5,0,7,63], "classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be":[5,0,7,9], "classApp.html#a557d7b779d8259027f4724ebf7b248dc":[5,0,7,28], "classApp.html#a560189f048d3db2f526841963cc43e97":[5,0,7,26], -"classApp.html#a56b1a432c96aef8b1971f779c9d93c8c":[5,0,7,88], -"classApp.html#a576ecb1c5b4a283221e6f2f0ec248251":[5,0,7,58], -"classApp.html#a57d041fcc003d08c127dfa99a02bc192":[5,0,7,74], -"classApp.html#a58ac598544892ff7c32890291b72635e":[5,0,7,62], -"classApp.html#a59dd4b665c70e7dbd80682c014ff7145":[5,0,7,63], +"classApp.html#a56b1a432c96aef8b1971f779c9d93c8c":[5,0,7,84], +"classApp.html#a576ecb1c5b4a283221e6f2f0ec248251":[5,0,7,53], +"classApp.html#a57d041fcc003d08c127dfa99a02bc192":[5,0,7,70], +"classApp.html#a58ac598544892ff7c32890291b72635e":[5,0,7,58], +"classApp.html#a59dd4b665c70e7dbd80682c014ff7145":[5,0,7,59], "classApp.html#a5c63eabdc7fdd8b6e3348980ec16a3ad":[5,0,7,3], -"classApp.html#a5cfc098c061b7d765add58fd2ca97445":[5,0,7,39], -"classApp.html#a5f64620473a9727a48ebe9cf6f335a98":[5,0,7,80], +"classApp.html#a5cfc098c061b7d765add58fd2ca97445":[5,0,7,37], +"classApp.html#a5f64620473a9727a48ebe9cf6f335a98":[5,0,7,76], "classApp.html#a604d659d6977a99de42a160343e5289a":[5,0,7,4], -"classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2":[5,0,7,45], +"classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2":[5,0,7,43], "classApp.html#a622eace13f8fc9f4b5672a68e2bc4396":[5,0,7,7], -"classApp.html#a6844aedad10e201b8c3d80cfc9e876d3":[5,0,7,81], -"classApp.html#a6859a4848a5c0049b4134cc4b34228b6":[5,0,7,82], -"classApp.html#a6bcb19cdc4907077da72864686d5a780":[5,0,7,69], -"classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165":[5,0,7,65], -"classApp.html#a6f55d087e1ff4710132c1b0863faa2ee":[5,0,7,47], -"classApp.html#a764cc6cd7578132c21d2b4545de9301c":[5,0,7,83], +"classApp.html#a6844aedad10e201b8c3d80cfc9e876d3":[5,0,7,77], +"classApp.html#a6859a4848a5c0049b4134cc4b34228b6":[5,0,7,78], +"classApp.html#a6bcb19cdc4907077da72864686d5a780":[5,0,7,65], +"classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165":[5,0,7,61], +"classApp.html#a6f55d087e1ff4710132c1b0863faa2ee":[5,0,7,45], +"classApp.html#a764cc6cd7578132c21d2b4545de9301c":[5,0,7,79], "classApp.html#a78788f6e9d8b713b138f81e457c5cd08":[5,0,7,20], -"classApp.html#a7954862f44f606b0ff83d4c74d15e792":[5,0,7,57], +"classApp.html#a7954862f44f606b0ff83d4c74d15e792":[5,0,7,52], "classApp.html#a871898becd0697d778f36d9336253ae8":[5,0,7,14], "classApp.html#a8863703a0305eaa45eb970dbd2046291":[5,0,7,16], "classApp.html#a89e9feb2bfb5253883a9720beaffe876":[5,0,7,21], -"classApp.html#a91fd3c8b89016113b05f3be24805ccff":[5,0,7,87], +"classApp.html#a91fd3c8b89016113b05f3be24805ccff":[5,0,7,83], "classApp.html#a94a1ed2dc493c58612d17035b74ae736":[5,0,7,31], -"classApp.html#a98ef4cfd36693a3457c879b76bc6d694":[5,0,7,44], -"classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d":[5,0,7,64], -"classApp.html#aa5a87c46ab3fee21362c466bf78042ef":[5,0,7,91], +"classApp.html#a98ef4cfd36693a3457c879b76bc6d694":[5,0,7,42], +"classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d":[5,0,7,60], +"classApp.html#aa5a87c46ab3fee21362c466bf78042ef":[5,0,7,86], "classApp.html#aab23c59172310fd30f2d60dc039d3eea":[5,0,7,13], -"classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e":[5,0,7,38], -"classApp.html#ab35b01a366a2ea95725e97af278f87ab":[5,0,7,86], +"classApp.html#ab35b01a366a2ea95725e97af278f87ab":[5,0,7,82], "classApp.html#ab3da757abe5cb45bf88f07cc51a73b58":[5,0,7,35], -"classApp.html#ab47de68fa39806d1fb0976407e188b77":[5,0,7,71], -"classApp.html#abe0e4fa91097f7a6588e1213a834121c":[5,0,7,37], +"classApp.html#ab47de68fa39806d1fb0976407e188b77":[5,0,7,67], "classApp.html#abea5a4f77dcd53c928dc4eed86616637":[5,0,7,19], "classApp.html#abf46a653d8499e7c253cc1be894a6d83":[5,0,7,17], -"classApp.html#ac1a8b2cd40609b231a560201a08852ba":[5,0,7,52], -"classApp.html#ac1d80a14492acc932715d54567d8a589":[5,0,7,46], -"classApp.html#ac6e6b1c7d6df408580ff79977fcfa656":[5,0,7,54], -"classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88":[5,0,7,43], -"classApp.html#acad5896b7a79ae31433ad8f89606c728":[5,0,7,70], +"classApp.html#ac1a8b2cd40609b231a560201a08852ba":[5,0,7,47], +"classApp.html#ac1d80a14492acc932715d54567d8a589":[5,0,7,44], +"classApp.html#ac6e6b1c7d6df408580ff79977fcfa656":[5,0,7,49], +"classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88":[5,0,7,41], +"classApp.html#acad5896b7a79ae31433ad8f89606c728":[5,0,7,66], "classApp.html#acb27e607fe4c82603444676e25c36b70":[5,0,7,11], -"classApp.html#ad082d63acc078e5bf23825a03bdd6a76":[5,0,7,78], -"classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0":[5,0,7,41], +"classApp.html#ad082d63acc078e5bf23825a03bdd6a76":[5,0,7,74], +"classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0":[5,0,7,39], "classApp.html#ad5175536561021548ae8188e24c7b80c":[5,0,7,36], "classApp.html#adb060d5c7f35a521ec7ec0effbe08097":[5,0,7,27], "classApp.html#adb5a4bb657881e553978ff390babd01f":[5,0,7,10], -"classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8":[5,0,7,89], -"classApp.html#ae3f47830543d0d902f66913def8db66b":[5,0,7,53], -"classApp.html#ae9f96338f32187d308b67b980eea0008":[5,0,7,72], +"classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8":[5,0,7,85], +"classApp.html#ae3f47830543d0d902f66913def8db66b":[5,0,7,48], +"classApp.html#ae9f96338f32187d308b67b980eea0008":[5,0,7,68], "classApp.html#aeb1fe1c8ad9aa639909bd183ce578536":[5,0,7,18], -"classApp.html#aeca29fd4f7192ca07369b3c598c36e67":[5,0,7,84], +"classApp.html#aeca29fd4f7192ca07369b3c598c36e67":[5,0,7,80], "classApp.html#af17df107f2216ddf5ad2a7e0f2ba2166":[5,0,7,15], -"classApp.html#af5007c42a693afd9c4899c243b2e1363":[5,0,7,49], "classApp.html#af58db526040829b1c8bd95561b329262":[5,0,7,34], "classApp.html#af6d39f63fb7116bbeb04e51696f99474":[5,0,7,0], "classBaseObject.html":[5,0,8], @@ -97,80 +95,80 @@ var NAVTREEINDEX2 = "classConversation.html#af84ea6ccd72214c9bb4c504461cc8b09":[5,0,10,0], "classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a":[5,0,10,15], "classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6":[5,0,10,14], -"classFKOAuth1.html":[5,0,15], -"classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f":[5,0,15,1], -"classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6":[5,0,15,0], -"classFKOAuthDataStore.html":[5,0,16], -"classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1":[5,0,16,1], -"classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050":[5,0,16,5], -"classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934":[5,0,16,4], -"classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599":[5,0,16,2], -"classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab":[5,0,16,3], -"classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819":[5,0,16,0], -"classFriendicaSmarty.html":[5,0,17], -"classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690":[5,0,17,2], -"classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9":[5,0,17,1], -"classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6":[5,0,17,0], -"classFriendicaSmartyEngine.html":[5,0,18], -"classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118":[5,0,18,1], -"classFriendicaSmartyEngine.html#aab5994077fc3a64222e41b28e2bd8d88":[5,0,18,2], -"classFriendicaSmartyEngine.html#ab7c305bd8c386c2944e4dc9136cea5b6":[5,0,18,0], -"classFriendicaSmartyEngine.html#ad62f1181d2f02b54b46731ad2bd46db2":[5,0,18,3], -"classItem.html":[5,0,19], -"classItem.html#a007424e3e3171dcfb4312a02161da6cd":[5,0,19,34], -"classItem.html#a078f95b4134ce3a1df344cf8d386f986":[5,0,19,37], -"classItem.html#a0c301aaed2b7d682728d18db3a22afa3":[5,0,19,8], -"classItem.html#a1a1e42877e6ac7af50286142ceb483d2":[5,0,19,39], -"classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2":[5,0,19,42], -"classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2":[5,0,19,0], -"classItem.html#a2ce70ef63f9f4d86a09c351678806925":[5,0,19,24], -"classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf":[5,0,19,6], -"classItem.html#a428f448f89a8629055ea3294eb942aea":[5,0,19,16], -"classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8":[5,0,19,44], -"classItem.html#a4b92e3a9d6212c553aa2661489bd95d8":[5,0,19,15], -"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[5,0,19,20], -"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[5,0,19,40], -"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[5,0,19,43], -"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[5,0,19,45], -"classItem.html#a632185dd25c5caf277067c76230a4320":[5,0,19,4], -"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[5,0,19,12], -"classItem.html#a7f7bc059de377319282cb4ef4a828480":[5,0,19,41], -"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[5,0,19,31], -"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[5,0,19,1], -"classItem.html#a904421c7a427411bb2ab473bca872f63":[5,0,19,7], -"classItem.html#a90743c8348b13213275c223bb9333aa0":[5,0,19,32], -"classItem.html#a9594df6014b0b6f45364ea7a34510130":[5,0,19,36], -"classItem.html#a97c7feeea7f26a73176cb19faa455e12":[5,0,19,22], -"classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7":[5,0,19,28], -"classItem.html#a9f2d219da712390f59012fc32a342074":[5,0,19,14], -"classItem.html#aa0ee775ec94abccec6c798428835d001":[5,0,19,5], -"classItem.html#aa1bd19fc8b5577078530265a7bf64123":[5,0,19,26], -"classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304":[5,0,19,33], -"classItem.html#aa452b5bcd8dea12119b09212c615cb41":[5,0,19,25], -"classItem.html#aa49e40f961dff66da32c5ae110e32993":[5,0,19,21], -"classItem.html#aa541bc4290e51bfd688d6921bebabc73":[5,0,19,13], -"classItem.html#aa8b1bbc4236890694635295e46d7fd72":[5,0,19,27], -"classItem.html#aabf87ded59c25b5fe2b2296678e70509":[5,0,19,23], -"classItem.html#aba23a0a9d89e316d2b343cc46d695d91":[5,0,19,17], -"classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8":[5,0,19,2], -"classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967":[5,0,19,19], -"classItem.html#ac0f27e58532612f6e7a54c8a621b9b92":[5,0,19,11], -"classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c":[5,0,19,10], -"classItem.html#aca1e66988ed00cd627b2a359b72cd0ae":[5,0,19,3], -"classItem.html#acc32426c0f465391be8a99ad810c7b8e":[5,0,19,30], -"classItem.html#ad3638f93065693c1f69eb349feb1b7aa":[5,0,19,9], -"classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8":[5,0,19,18], -"classItem.html#aec24e233f9098f902b1e57e60dcb2019":[5,0,19,35], -"classItem.html#af1b73df9b7c4b927e26b7e243b491f42":[5,0,19,29], -"classItem.html#afa54851df82962c7c42dea3cc9f5c92c":[5,0,19,38], -"classProtoDriver.html":[5,0,24], -"classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a":[5,0,24,0], -"classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d":[5,0,24,2], -"classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67":[5,0,24,1], -"classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337":[5,0,24,6], -"classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b":[5,0,24,4], -"classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181":[5,0,24,5], -"classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b":[5,0,24,3], +"classFKOAuth1.html":[5,0,16], +"classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f":[5,0,16,1], +"classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6":[5,0,16,0], +"classFKOAuthDataStore.html":[5,0,17], +"classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1":[5,0,17,1], +"classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050":[5,0,17,5], +"classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934":[5,0,17,4], +"classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599":[5,0,17,2], +"classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab":[5,0,17,3], +"classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819":[5,0,17,0], +"classFriendicaSmarty.html":[5,0,18], +"classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690":[5,0,18,2], +"classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9":[5,0,18,1], +"classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6":[5,0,18,0], +"classFriendicaSmartyEngine.html":[5,0,19], +"classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118":[5,0,19,1], +"classFriendicaSmartyEngine.html#aab5994077fc3a64222e41b28e2bd8d88":[5,0,19,2], +"classFriendicaSmartyEngine.html#ab7c305bd8c386c2944e4dc9136cea5b6":[5,0,19,0], +"classFriendicaSmartyEngine.html#ad62f1181d2f02b54b46731ad2bd46db2":[5,0,19,3], +"classItem.html":[5,0,20], +"classItem.html#a007424e3e3171dcfb4312a02161da6cd":[5,0,20,34], +"classItem.html#a078f95b4134ce3a1df344cf8d386f986":[5,0,20,37], +"classItem.html#a0c301aaed2b7d682728d18db3a22afa3":[5,0,20,8], +"classItem.html#a1a1e42877e6ac7af50286142ceb483d2":[5,0,20,39], +"classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2":[5,0,20,42], +"classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2":[5,0,20,0], +"classItem.html#a2ce70ef63f9f4d86a09c351678806925":[5,0,20,24], +"classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf":[5,0,20,6], +"classItem.html#a428f448f89a8629055ea3294eb942aea":[5,0,20,16], +"classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8":[5,0,20,44], +"classItem.html#a4b92e3a9d6212c553aa2661489bd95d8":[5,0,20,15], +"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[5,0,20,20], +"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[5,0,20,40], +"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[5,0,20,43], +"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[5,0,20,45], +"classItem.html#a632185dd25c5caf277067c76230a4320":[5,0,20,4], +"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[5,0,20,12], +"classItem.html#a7f7bc059de377319282cb4ef4a828480":[5,0,20,41], +"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[5,0,20,31], +"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[5,0,20,1], +"classItem.html#a904421c7a427411bb2ab473bca872f63":[5,0,20,7], +"classItem.html#a90743c8348b13213275c223bb9333aa0":[5,0,20,32], +"classItem.html#a9594df6014b0b6f45364ea7a34510130":[5,0,20,36], +"classItem.html#a97c7feeea7f26a73176cb19faa455e12":[5,0,20,22], +"classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7":[5,0,20,28], +"classItem.html#a9f2d219da712390f59012fc32a342074":[5,0,20,14], +"classItem.html#aa0ee775ec94abccec6c798428835d001":[5,0,20,5], +"classItem.html#aa1bd19fc8b5577078530265a7bf64123":[5,0,20,26], +"classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304":[5,0,20,33], +"classItem.html#aa452b5bcd8dea12119b09212c615cb41":[5,0,20,25], +"classItem.html#aa49e40f961dff66da32c5ae110e32993":[5,0,20,21], +"classItem.html#aa541bc4290e51bfd688d6921bebabc73":[5,0,20,13], +"classItem.html#aa8b1bbc4236890694635295e46d7fd72":[5,0,20,27], +"classItem.html#aabf87ded59c25b5fe2b2296678e70509":[5,0,20,23], +"classItem.html#aba23a0a9d89e316d2b343cc46d695d91":[5,0,20,17], +"classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8":[5,0,20,2], +"classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967":[5,0,20,19], +"classItem.html#ac0f27e58532612f6e7a54c8a621b9b92":[5,0,20,11], +"classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c":[5,0,20,10], +"classItem.html#aca1e66988ed00cd627b2a359b72cd0ae":[5,0,20,3], +"classItem.html#acc32426c0f465391be8a99ad810c7b8e":[5,0,20,30], +"classItem.html#ad3638f93065693c1f69eb349feb1b7aa":[5,0,20,9], +"classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8":[5,0,20,18], +"classItem.html#aec24e233f9098f902b1e57e60dcb2019":[5,0,20,35], +"classItem.html#af1b73df9b7c4b927e26b7e243b491f42":[5,0,20,29], +"classItem.html#afa54851df82962c7c42dea3cc9f5c92c":[5,0,20,38], +"classProtoDriver.html":[5,0,25], +"classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a":[5,0,25,0], +"classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d":[5,0,25,2], +"classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67":[5,0,25,1], +"classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337":[5,0,25,6], +"classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b":[5,0,25,4], +"classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181":[5,0,25,5], +"classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b":[5,0,25,3], "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html":[5,0,3,0,0], "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a112ad78a863dc0e598b5f02c596798c0":[5,0,3,0,0,9], "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3":[5,0,3,0,0,8], @@ -247,7 +245,9 @@ var NAVTREEINDEX2 = "classRedmatrix_1_1Import_1_1Import.html#ae705dd1deb245b1d06baa73062330e43":[5,0,4,0,0,5], "classRedmatrix_1_1Import_1_1Import.html#af432ecbc45b812a03d58dfb378a212f7":[5,0,4,0,0,9], "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":[5,0,26], +"classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b":[5,0,26,13], +"classTemplate.html#a285b5b2007dbbf733476273df3fed4ef":[5,0,26,12], +"classTemplate.html#a317d535946dc065c35dd5cd38380e6c6":[5,0,26,22], +"classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[5,0,26,2] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index a855bf2c7..3efe3732e 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,48 +1,57 @@ 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], -"classTemplate.html#abf71098c80fd1f218a59452b3408309e":[5,0,25,7], -"classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4":[5,0,25,0], -"classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8":[5,0,25,18], -"classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228":[5,0,25,8], -"classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934":[5,0,25,5], -"classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a":[5,0,25,16], -"classTemplate.html#afd97b4b1e7754a550e67c0ea79159059":[5,0,25,11], -"classZotDriver.html":[5,0,26], -"classZotDriver.html#a2e15ff09772f0608203dad1c98299394":[5,0,26,3], -"classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2":[5,0,26,0], -"classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514":[5,0,26,6], -"classZotDriver.html#a6776935156accb0f170e2e24577133db":[5,0,26,1], -"classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f":[5,0,26,4], -"classZotDriver.html#af65febb26031eb7f39871b9e2a539797":[5,0,26,2], -"classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6":[5,0,26,5], +"classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[5,0,26,3], +"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[5,0,26,6], +"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[5,0,26,21], +"classTemplate.html#a6f0efc256688c36110180b501067ff11":[5,0,26,23], +"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[5,0,26,15], +"classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677":[5,0,26,9], +"classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1":[5,0,26,19], +"classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29":[5,0,26,4], +"classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee":[5,0,26,10], +"classTemplate.html#aac9a4638f11271e1b1dcc9f247242718":[5,0,26,20], +"classTemplate.html#aae9c4d761ea1298e745e8052d7910194":[5,0,26,1], +"classTemplate.html#abbc484016ddf5d818f55b823cae6feb0":[5,0,26,14], +"classTemplate.html#abda4c8d049f70553338eae7c905e9d5c":[5,0,26,17], +"classTemplate.html#abf71098c80fd1f218a59452b3408309e":[5,0,26,7], +"classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4":[5,0,26,0], +"classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8":[5,0,26,18], +"classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228":[5,0,26,8], +"classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934":[5,0,26,5], +"classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a":[5,0,26,16], +"classTemplate.html#afd97b4b1e7754a550e67c0ea79159059":[5,0,26,11], +"classZotDriver.html":[5,0,27], +"classZotDriver.html#a2e15ff09772f0608203dad1c98299394":[5,0,27,3], +"classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2":[5,0,27,0], +"classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514":[5,0,27,6], +"classZotDriver.html#a6776935156accb0f170e2e24577133db":[5,0,27,1], +"classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f":[5,0,27,4], +"classZotDriver.html#af65febb26031eb7f39871b9e2a539797":[5,0,27,2], +"classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6":[5,0,27,5], "classdba__driver.html":[5,0,11], "classdba__driver.html#a1a8bc9dc839a6320a0e07d8047a6b721":[5,0,11,1], -"classdba__driver.html#a205f6535e399700b6fca2492f96f2229":[5,0,11,8], -"classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6":[5,0,11,9], -"classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746":[5,0,11,6], -"classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555":[5,0,11,7], +"classdba__driver.html#a205f6535e399700b6fca2492f96f2229":[5,0,11,16], +"classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6":[5,0,11,17], +"classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746":[5,0,11,10], +"classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555":[5,0,11,12], "classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975":[5,0,11,2], -"classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c":[5,0,11,11], -"classdba__driver.html#adcc1f8955120fec0708bce39202d0422":[5,0,11,4], -"classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc":[5,0,11,3], +"classdba__driver.html#a65a5c7b355ab5529a43049e160006426":[5,0,11,9], +"classdba__driver.html#a77e59dcbeab30ca6000131d2e9ad4092":[5,0,11,11], +"classdba__driver.html#a7dbe8318587ff1694825042bf58f4fbd":[5,0,11,7], +"classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c":[5,0,11,19], +"classdba__driver.html#a8d6a79d39d7eaee5aea4e952c4529d48":[5,0,11,8], +"classdba__driver.html#a98d8523dcedda316085b4d4f856b6583":[5,0,11,20], +"classdba__driver.html#aa3325d982d4ee5d1114fd7e02a4356e8":[5,0,11,22], +"classdba__driver.html#ab43184239e1d6eb00a98319f4a3df155":[5,0,11,14], +"classdba__driver.html#ab9982f38a02f008b127a0f3ccc1e99f4":[5,0,11,3], +"classdba__driver.html#ac9127e9c55fcc93bcfbb323b9b99b9d9":[5,0,11,13], +"classdba__driver.html#ad700712879719bee23752b8f424d97d0":[5,0,11,15], +"classdba__driver.html#adcc1f8955120fec0708bce39202d0422":[5,0,11,5], +"classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc":[5,0,11,4], "classdba__driver.html#af3541d13ccb7a3eddfc03e253c746186":[5,0,11,0], -"classdba__driver.html#af48e2afeded5285766bf92e22123ed03":[5,0,11,10], -"classdba__driver.html#afc95ffa103a3290581b537670cde5311":[5,0,11,5], +"classdba__driver.html#af48e2afeded5285766bf92e22123ed03":[5,0,11,18], +"classdba__driver.html#afc95ffa103a3290581b537670cde5311":[5,0,11,6], +"classdba__driver.html#afce39394c010ea589d99a21579b2c31e":[5,0,11,21], "classdba__mysql.html":[5,0,12], "classdba__mysql.html#a1887338627ce0e28786839363014bd0b":[5,0,12,1], "classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e":[5,0,12,0], @@ -53,62 +62,76 @@ var NAVTREEINDEX3 = "classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec":[5,0,13,3], "classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55":[5,0,13,0], "classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1":[5,0,13,1], -"classenotify.html":[5,0,14], +"classdba__postgres.html":[5,0,14], +"classdba__postgres.html#a3de1ac375e98886dfc38fd0066e88f90":[5,0,14,6], +"classdba__postgres.html#a56f926f218155c88807e0e06f6817a72":[5,0,14,8], +"classdba__postgres.html#a677f850211975c9ab89602c67e2dcad9":[5,0,14,9], +"classdba__postgres.html#a70352880231fba0b859f82cd5b290a9a":[5,0,14,7], +"classdba__postgres.html#a7108eaaae7cc2fb236212041afc9ac0f":[5,0,14,3], +"classdba__postgres.html#a7267f91c3f87f600b30d7560de62dfd7":[5,0,14,10], +"classdba__postgres.html#a731d8648b41b8a126f6b99bdd5414058":[5,0,14,0], +"classdba__postgres.html#a7ea3f24ad260c1e21588f8b5af595caa":[5,0,14,1], +"classdba__postgres.html#a8d2c6d8c92fe6f074452876483dd17fc":[5,0,14,5], +"classdba__postgres.html#ab2e44e9f41d05e585afd873d18e8c127":[5,0,14,4], +"classdba__postgres.html#ab36244320f5b71dba92d9318ccf3f34e":[5,0,14,2], +"classdba__postgres.html#ace80a204e34b20b9907650399cce02a3":[5,0,14,12], +"classdba__postgres.html#aeb404a85974d6c5df30c21650888000b":[5,0,14,11], +"classenotify.html":[5,0,15], "classes.html":[5,1], -"classphoto__driver.html":[5,0,21], -"classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03":[5,0,21,27], -"classphoto__driver.html#a01d28d43b404d6f6de219dc9c5069dc9":[5,0,21,28], -"classphoto__driver.html#a19e1af2b6af4c63aa6230abe69f83712":[5,0,21,13], -"classphoto__driver.html#a1a63c4ae17e892a115ab9cf6efb960ce":[5,0,21,20], -"classphoto__driver.html#a22ecb8c696de65a5a10bd185be9d90c3":[5,0,21,17], -"classphoto__driver.html#a2b2a99021fc63ed6465d703ddddcb832":[5,0,21,5], -"classphoto__driver.html#a2e6e61f1e356a90bc978f4404a77137e":[5,0,21,2], -"classphoto__driver.html#a2f2b6337cf9aa0688d10b422123f0eec":[5,0,21,15], -"classphoto__driver.html#a3e4215890f4a4894bf3799a7d2e0c0b1":[5,0,21,29], -"classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03":[5,0,21,26], -"classphoto__driver.html#a4de5bac8daea8f291a33c80788019d0d":[5,0,21,14], -"classphoto__driver.html#a56634842b071b96502716e9843ea5361":[5,0,21,19], -"classphoto__driver.html#a5864fae7d8389372955a8e78cec527ac":[5,0,21,16], -"classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b":[5,0,21,22], -"classphoto__driver.html#a6c6c16dbc4f517ce799f9143ed61f0e3":[5,0,21,9], -"classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da":[5,0,21,23], -"classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55":[5,0,21,25], -"classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab":[5,0,21,12], -"classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba":[5,0,21,6], -"classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5":[5,0,21,8], -"classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd":[5,0,21,11], -"classphoto__driver.html#ac6e85f8e507cab4e755ed7acdec401ae":[5,0,21,0], -"classphoto__driver.html#acc30486acee9e89e32701f44a1738117":[5,0,21,10], -"classphoto__driver.html#ae18716018afcf362c7c24586b53e9e2f":[5,0,21,4], -"classphoto__driver.html#ae1a9edaf846983780dc65ea77d99e813":[5,0,21,3], -"classphoto__driver.html#ae4501abdc9651359f81d036b63625686":[5,0,21,1], -"classphoto__driver.html#ae663867d2c4eaa2fae50d60670920143":[5,0,21,21], -"classphoto__driver.html#aea560be5dfba09117d36c12bacbf3b80":[5,0,21,24], -"classphoto__driver.html#af0f7ec48a31ae9b557b6e3f8bd5b4af0":[5,0,21,18], -"classphoto__driver.html#af769e9abb144e57002c59aa2aa8f3468":[5,0,21,7], -"classphoto__gd.html":[5,0,22], -"classphoto__gd.html#a0795fc029be382557ae3f6e285f40e00":[5,0,22,5], -"classphoto__gd.html#a16f3dd7d3559f715aa2fe3f7880836dd":[5,0,22,9], -"classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e":[5,0,22,8], -"classphoto__gd.html#a2f2e5900e6d8b1667892ac631b1d4754":[5,0,22,2], -"classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9":[5,0,22,6], -"classphoto__gd.html#a44cedef376044018702d9355ddc813ce":[5,0,22,3], -"classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1":[5,0,22,1], -"classphoto__gd.html#a77f87730b11093b76980c541159df37d":[5,0,22,7], -"classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484":[5,0,22,4], -"classphoto__gd.html#ab2232d775c8bacf66773a03308105f0c":[5,0,22,0], -"classphoto__imagick.html":[5,0,23], -"classphoto__imagick.html#a27596faca6108d9d563674d1b654a0b7":[5,0,23,10], -"classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8":[5,0,23,7], -"classphoto__imagick.html#a2f33a03a89497a2b2768e29736d4a8a4":[5,0,23,0], -"classphoto__imagick.html#a3047c68bb4de7f66c2893fe451db2b66":[5,0,23,2], -"classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019":[5,0,23,6], -"classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f":[5,0,23,8], -"classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc":[5,0,23,5], -"classphoto__imagick.html#aef020d929f66f4370e33fc158c8eebd4":[5,0,23,4], -"classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb":[5,0,23,9], -"classphoto__imagick.html#afd49d64751ee3a298eac0c0ce0ba0207":[5,0,23,1], -"classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393":[5,0,23,3], +"classphoto__driver.html":[5,0,22], +"classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03":[5,0,22,27], +"classphoto__driver.html#a01d28d43b404d6f6de219dc9c5069dc9":[5,0,22,28], +"classphoto__driver.html#a19e1af2b6af4c63aa6230abe69f83712":[5,0,22,13], +"classphoto__driver.html#a1a63c4ae17e892a115ab9cf6efb960ce":[5,0,22,20], +"classphoto__driver.html#a22ecb8c696de65a5a10bd185be9d90c3":[5,0,22,17], +"classphoto__driver.html#a2b2a99021fc63ed6465d703ddddcb832":[5,0,22,5], +"classphoto__driver.html#a2e6e61f1e356a90bc978f4404a77137e":[5,0,22,2], +"classphoto__driver.html#a2f2b6337cf9aa0688d10b422123f0eec":[5,0,22,15], +"classphoto__driver.html#a3e4215890f4a4894bf3799a7d2e0c0b1":[5,0,22,29], +"classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03":[5,0,22,26], +"classphoto__driver.html#a4de5bac8daea8f291a33c80788019d0d":[5,0,22,14], +"classphoto__driver.html#a56634842b071b96502716e9843ea5361":[5,0,22,19], +"classphoto__driver.html#a5864fae7d8389372955a8e78cec527ac":[5,0,22,16], +"classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b":[5,0,22,22], +"classphoto__driver.html#a6c6c16dbc4f517ce799f9143ed61f0e3":[5,0,22,9], +"classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da":[5,0,22,23], +"classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55":[5,0,22,25], +"classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab":[5,0,22,12], +"classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba":[5,0,22,6], +"classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5":[5,0,22,8], +"classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd":[5,0,22,11], +"classphoto__driver.html#ac6e85f8e507cab4e755ed7acdec401ae":[5,0,22,0], +"classphoto__driver.html#acc30486acee9e89e32701f44a1738117":[5,0,22,10], +"classphoto__driver.html#ae18716018afcf362c7c24586b53e9e2f":[5,0,22,4], +"classphoto__driver.html#ae1a9edaf846983780dc65ea77d99e813":[5,0,22,3], +"classphoto__driver.html#ae4501abdc9651359f81d036b63625686":[5,0,22,1], +"classphoto__driver.html#ae663867d2c4eaa2fae50d60670920143":[5,0,22,21], +"classphoto__driver.html#aea560be5dfba09117d36c12bacbf3b80":[5,0,22,24], +"classphoto__driver.html#af0f7ec48a31ae9b557b6e3f8bd5b4af0":[5,0,22,18], +"classphoto__driver.html#af769e9abb144e57002c59aa2aa8f3468":[5,0,22,7], +"classphoto__gd.html":[5,0,23], +"classphoto__gd.html#a0795fc029be382557ae3f6e285f40e00":[5,0,23,5], +"classphoto__gd.html#a16f3dd7d3559f715aa2fe3f7880836dd":[5,0,23,9], +"classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e":[5,0,23,8], +"classphoto__gd.html#a2f2e5900e6d8b1667892ac631b1d4754":[5,0,23,2], +"classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9":[5,0,23,6], +"classphoto__gd.html#a44cedef376044018702d9355ddc813ce":[5,0,23,3], +"classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1":[5,0,23,1], +"classphoto__gd.html#a77f87730b11093b76980c541159df37d":[5,0,23,7], +"classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484":[5,0,23,4], +"classphoto__gd.html#ab2232d775c8bacf66773a03308105f0c":[5,0,23,0], +"classphoto__imagick.html":[5,0,24], +"classphoto__imagick.html#a27596faca6108d9d563674d1b654a0b7":[5,0,24,10], +"classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8":[5,0,24,7], +"classphoto__imagick.html#a2f33a03a89497a2b2768e29736d4a8a4":[5,0,24,0], +"classphoto__imagick.html#a3047c68bb4de7f66c2893fe451db2b66":[5,0,24,2], +"classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019":[5,0,24,6], +"classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f":[5,0,24,8], +"classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc":[5,0,24,5], +"classphoto__imagick.html#aef020d929f66f4370e33fc158c8eebd4":[5,0,24,4], +"classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb":[5,0,24,9], +"classphoto__imagick.html#afd49d64751ee3a298eac0c0ce0ba0207":[5,0,24,1], +"classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393":[5,0,24,3], "cli__startup_8php.html":[6,0,0,18], "cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b":[6,0,0,18,0], "cli__suggest_8php.html":[6,0,0,19], @@ -226,28 +249,5 @@ var NAVTREEINDEX3 = "datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[6,0,0,29,3], "datetime_8php.html#aea356409ba69f9de412298c998595dd2":[6,0,0,29,1], "datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826":[6,0,0,29,13], -"db__update_8php.html":[6,0,2,1], -"dba__driver_8php.html":[6,0,0,0,0], -"dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f":[6,0,0,0,0,8], -"dba__driver_8php.html#a55bf30d8176967e682656b5be4ad9249":[6,0,0,0,0,7], -"dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4":[6,0,0,0,0,3], -"dba__driver_8php.html#aa377074e70981e8c4e82ca0accd068ee":[6,0,0,0,0,6], -"dba__driver_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb":[6,0,0,0,0,5], -"dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e":[6,0,0,0,0,2], -"dba__driver_8php.html#ac10e60f6e5b95bcf67bd82cb88f37947":[6,0,0,0,0,1], -"dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930":[6,0,0,0,0,4], -"dba__mysql_8php.html":[6,0,0,0,1], -"dba__mysqli_8php.html":[6,0,0,0,2], -"delegate_8php.html":[6,0,1,21], -"delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[6,0,1,21,0], -"deliver_8php.html":[6,0,0,30], -"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[6,0,0,30,0], -"diaspora_8php.html":[6,0,0,31], -"diaspora_8php.html#a006731620a5242d410358b32678e48e3":[6,0,0,31,0], -"diaspora_8php.html#a0b3628a5e53332c3d3196b689fe2b94d":[6,0,0,31,24], -"diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829":[6,0,0,31,1], -"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] +"db__update_8php.html":[6,0,2,1] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index f296d3fe2..41a1f286a 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,5 +1,38 @@ var NAVTREEINDEX4 = { +"dba__driver_8php.html":[6,0,0,0,0], +"dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67":[6,0,0,0,0,2], +"dba__driver_8php.html#a2a38996670c2936b5769270c49c57593":[6,0,0,0,0,11], +"dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f":[6,0,0,0,0,17], +"dba__driver_8php.html#a2c8a72ec73f39b17a167c90737693f78":[6,0,0,0,0,12], +"dba__driver_8php.html#a30e9a643be804e905f5614a3279d2645":[6,0,0,0,0,5], +"dba__driver_8php.html#a55bf30d8176967e682656b5be4ad9249":[6,0,0,0,0,16], +"dba__driver_8php.html#a5df8499634c47b30191f34069d7b98c0":[6,0,0,0,0,6], +"dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4":[6,0,0,0,0,8], +"dba__driver_8php.html#a75098bf1d59ea57f7ebae657a369137e":[6,0,0,0,0,3], +"dba__driver_8php.html#a7c1b98a710ead27382c958ad3216c4ee":[6,0,0,0,0,1], +"dba__driver_8php.html#aa051799567690a124a3b865bf902f58a":[6,0,0,0,0,10], +"dba__driver_8php.html#aa377074e70981e8c4e82ca0accd068ee":[6,0,0,0,0,14], +"dba__driver_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb":[6,0,0,0,0,13], +"dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e":[6,0,0,0,0,7], +"dba__driver_8php.html#acec84a8fb75d78daf657cbe5df74e25a":[6,0,0,0,0,4], +"dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930":[6,0,0,0,0,9], +"dba__driver_8php.html#afaaa1a7eff9c1b65b3b8c464ae37640e":[6,0,0,0,0,15], +"dba__mysql_8php.html":[6,0,0,0,1], +"dba__mysqli_8php.html":[6,0,0,0,2], +"dba__postgres_8php.html":[6,0,0,0,3], +"delegate_8php.html":[6,0,1,21], +"delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[6,0,1,21,0], +"deliver_8php.html":[6,0,0,30], +"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[6,0,0,30,0], +"diaspora_8php.html":[6,0,0,31], +"diaspora_8php.html#a006731620a5242d410358b32678e48e3":[6,0,0,31,0], +"diaspora_8php.html#a0b3628a5e53332c3d3196b689fe2b94d":[6,0,0,31,24], +"diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829":[6,0,0,31,1], +"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], @@ -68,16 +101,14 @@ var NAVTREEINDEX4 = "dir_d520c5cf583201d9437764f209363c22.html":[6,0,3,1,0], "dir_e7f045be8bb383d8447c6a6b84145083.html":[6,0,0,3], "dir_f19da925ee886ec38f19b0e8c19779bc.html":[6,0,3,1,0,0], -"dirprofile_8php.html":[6,0,1,23], -"dirprofile_8php.html#a3e1d30d3d93863ff5615f2df4ac7f052":[6,0,1,23,0], -"dirsearch_8php.html":[6,0,1,24], -"dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[6,0,1,24,3], -"dirsearch_8php.html#a52bcac49b0e35cc8c6b70066143c2ee2":[6,0,1,24,1], -"dirsearch_8php.html#a7d4cd9890d5ed23c3efc58e2a778a305":[6,0,1,24,0], -"dirsearch_8php.html#a985d410a170549429857af6ff2673149":[6,0,1,24,4], -"dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c":[6,0,1,24,2], -"display_8php.html":[6,0,1,25], -"display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0":[6,0,1,25,0], +"dirsearch_8php.html":[6,0,1,23], +"dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[6,0,1,23,3], +"dirsearch_8php.html#a52bcac49b0e35cc8c6b70066143c2ee2":[6,0,1,23,1], +"dirsearch_8php.html#a7d4cd9890d5ed23c3efc58e2a778a305":[6,0,1,23,0], +"dirsearch_8php.html#a985d410a170549429857af6ff2673149":[6,0,1,23,4], +"dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c":[6,0,1,23,2], +"display_8php.html":[6,0,1,24], +"display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0":[6,0,1,24,0], "docblox__errorchecker_8php.html":[6,0,2,2], "docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62":[6,0,2,2,3], "docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec":[6,0,2,2,2], @@ -90,14 +121,17 @@ var NAVTREEINDEX4 = "docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6":[6,0,2,2,4], "docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f":[6,0,2,2,1], "docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d":[6,0,2,2,10], -"editblock_8php.html":[6,0,1,26], -"editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6":[6,0,1,26,0], -"editlayout_8php.html":[6,0,1,27], -"editlayout_8php.html#aa877e4157a26b099de904164181dd386":[6,0,1,27,0], -"editpost_8php.html":[6,0,1,28], -"editpost_8php.html#a34011690864d122680c802e9e748ccfb":[6,0,1,28,0], -"editwebpage_8php.html":[6,0,1,29], -"editwebpage_8php.html#a375e945255fad79a71036528f7480650":[6,0,1,29,0], +"editblock_8php.html":[6,0,1,25], +"editblock_8php.html#ab7806bb42ae5e93f0330d7bd179d4b3e":[6,0,1,25,1], +"editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6":[6,0,1,25,0], +"editlayout_8php.html":[6,0,1,26], +"editlayout_8php.html#a97c1e93d9e75ad8cd2c2f9a7f77341a7":[6,0,1,26,1], +"editlayout_8php.html#aa877e4157a26b099de904164181dd386":[6,0,1,26,0], +"editpost_8php.html":[6,0,1,27], +"editpost_8php.html#a34011690864d122680c802e9e748ccfb":[6,0,1,27,0], +"editwebpage_8php.html":[6,0,1,28], +"editwebpage_8php.html#a375e945255fad79a71036528f7480650":[6,0,1,28,0], +"editwebpage_8php.html#a94109f9c796fbe92508bf9574e35d19f":[6,0,1,28,1], "enotify_8php.html":[6,0,0,35], "enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc":[6,0,0,35,1], "event_8php.html":[6,0,0,36], @@ -110,9 +144,9 @@ var NAVTREEINDEX4 = "event_8php.html#abb74206cf42d694307c3d7abb7af9869":[6,0,0,36,6], "event_8php.html#ac9f206819186b65952ac1869f0da8c6e":[6,0,0,36,3], "event_8php.html#af5ac41e7ea3f7131088fe6333fd2846c":[6,0,0,36,4], -"events_8php.html":[6,0,1,30], -"events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[6,0,1,30,0], -"events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[6,0,1,30,1], +"events_8php.html":[6,0,1,29], +"events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[6,0,1,29,0], +"events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[6,0,1,29,1], "expire_8php.html":[6,0,0,37], "expire_8php.html#a444e45c9b67727b27db4c779fd51a298":[6,0,0,37,0], "externals_8php.html":[6,0,0,38], @@ -122,21 +156,21 @@ var NAVTREEINDEX4 = "extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634":[6,0,2,3,2], "extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb":[6,0,2,3,0], "extract_8php.html#a9590b15215a21e9b42eb546aeef79704":[6,0,2,3,1], -"fbrowser_8php.html":[6,0,1,31], -"fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[6,0,1,31,0], +"fbrowser_8php.html":[6,0,1,30], +"fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[6,0,1,30,0], "features_8php.html":[6,0,0,39], "features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0":[6,0,0,39,0], "features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c":[6,0,0,39,1], -"feed_8php.html":[6,0,1,32], -"feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[6,0,1,32,0], -"filer_8php.html":[6,0,1,33], -"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[6,0,1,33,0], -"filerm_8php.html":[6,0,1,34], -"filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[6,0,1,34,0], +"feed_8php.html":[6,0,1,31], +"feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[6,0,1,31,0], +"filer_8php.html":[6,0,1,32], +"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[6,0,1,32,0], +"filerm_8php.html":[6,0,1,33], +"filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[6,0,1,33,0], "files.html":[6,0], -"filestorage_8php.html":[6,0,1,35], -"filestorage_8php.html#a61bb1be78472555df4ce619f51014040":[6,0,1,35,0], -"filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd":[6,0,1,35,1], +"filestorage_8php.html":[6,0,1,34], +"filestorage_8php.html#a61bb1be78472555df4ce619f51014040":[6,0,1,34,0], +"filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd":[6,0,1,34,1], "fpostit_8php.html":[6,0,2,0,0], "fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443":[6,0,2,0,0,0], "fpostit_8php.html#a501b5ca82f287509fc691c88524064c1":[6,0,2,0,0,1], @@ -156,9 +190,9 @@ var NAVTREEINDEX4 = "friendica-to-smarty-tpl_8py.html#ae74419b16516956c66f7db714a93a6ac":[6,0,2,4,7], "friendica-to-smarty-tpl_8py.html#aecf730e0884bb4ddc6c0deb1ef85f8eb":[6,0,2,4,4], "friendica-to-smarty-tpl_8py.html#af6b2c793958aae2aadc294577431f749":[6,0,2,4,3], -"fsuggest_8php.html":[6,0,1,37], -"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[6,0,1,37,1], -"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[6,0,1,37,0], +"fsuggest_8php.html":[6,0,1,36], +"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[6,0,1,36,1], +"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[6,0,1,36,0], "full_8php.html":[6,0,3,0,2], "full_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,0,2,0], "functions.html":[5,3,0], @@ -215,39 +249,5 @@ var NAVTREEINDEX4 = "globals_0x63.html":[6,1,0,4], "globals_0x64.html":[6,1,0,5], "globals_0x65.html":[6,1,0,6], -"globals_0x66.html":[6,1,0,7], -"globals_0x67.html":[6,1,0,8], -"globals_0x68.html":[6,1,0,9], -"globals_0x69.html":[6,1,0,10], -"globals_0x6a.html":[6,1,0,11], -"globals_0x6b.html":[6,1,0,12], -"globals_0x6c.html":[6,1,0,13], -"globals_0x6d.html":[6,1,0,14], -"globals_0x6e.html":[6,1,0,15], -"globals_0x6f.html":[6,1,0,16], -"globals_0x70.html":[6,1,0,17], -"globals_0x71.html":[6,1,0,18], -"globals_0x72.html":[6,1,0,19], -"globals_0x73.html":[6,1,0,20], -"globals_0x74.html":[6,1,0,21], -"globals_0x75.html":[6,1,0,22], -"globals_0x76.html":[6,1,0,23], -"globals_0x77.html":[6,1,0,24], -"globals_0x78.html":[6,1,0,25], -"globals_0x7a.html":[6,1,0,26], -"globals_func.html":[6,1,1], -"globals_func.html":[6,1,1,0], -"globals_func_0x61.html":[6,1,1,1], -"globals_func_0x62.html":[6,1,1,2], -"globals_func_0x63.html":[6,1,1,3], -"globals_func_0x64.html":[6,1,1,4], -"globals_func_0x65.html":[6,1,1,5], -"globals_func_0x66.html":[6,1,1,6], -"globals_func_0x67.html":[6,1,1,7], -"globals_func_0x68.html":[6,1,1,8], -"globals_func_0x69.html":[6,1,1,9], -"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_0x66.html":[6,1,0,7] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index ed6a6c92d..0dfd8348f 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,5 +1,39 @@ var NAVTREEINDEX5 = { +"globals_0x67.html":[6,1,0,8], +"globals_0x68.html":[6,1,0,9], +"globals_0x69.html":[6,1,0,10], +"globals_0x6a.html":[6,1,0,11], +"globals_0x6b.html":[6,1,0,12], +"globals_0x6c.html":[6,1,0,13], +"globals_0x6d.html":[6,1,0,14], +"globals_0x6e.html":[6,1,0,15], +"globals_0x6f.html":[6,1,0,16], +"globals_0x70.html":[6,1,0,17], +"globals_0x71.html":[6,1,0,18], +"globals_0x72.html":[6,1,0,19], +"globals_0x73.html":[6,1,0,20], +"globals_0x74.html":[6,1,0,21], +"globals_0x75.html":[6,1,0,22], +"globals_0x76.html":[6,1,0,23], +"globals_0x77.html":[6,1,0,24], +"globals_0x78.html":[6,1,0,25], +"globals_0x7a.html":[6,1,0,26], +"globals_func.html":[6,1,1], +"globals_func.html":[6,1,1,0], +"globals_func_0x61.html":[6,1,1,1], +"globals_func_0x62.html":[6,1,1,2], +"globals_func_0x63.html":[6,1,1,3], +"globals_func_0x64.html":[6,1,1,4], +"globals_func_0x65.html":[6,1,1,5], +"globals_func_0x66.html":[6,1,1,6], +"globals_func_0x67.html":[6,1,1,7], +"globals_func_0x68.html":[6,1,1,8], +"globals_func_0x69.html":[6,1,1,9], +"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], @@ -12,8 +46,8 @@ var NAVTREEINDEX5 = "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], @@ -39,21 +73,21 @@ var NAVTREEINDEX5 = "gprobe_8php.html":[6,0,0,41], "gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[6,0,0,41,0], "greenthumbnails_8php.html":[6,0,3,1,0,2,3], -"hcard_8php.html":[6,0,1,39], -"hcard_8php.html#a3663012f1549849af88aba2bb87388e3":[6,0,1,39,0], -"hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d":[6,0,1,39,1], -"help_8php.html":[6,0,1,40], -"help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[6,0,1,40,1], -"help_8php.html#af055e15f600ffa6fbca9386fdf715224":[6,0,1,40,0], +"hcard_8php.html":[6,0,1,38], +"hcard_8php.html#a3663012f1549849af88aba2bb87388e3":[6,0,1,38,0], +"hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d":[6,0,1,38,1], +"help_8php.html":[6,0,1,39], +"help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[6,0,1,39,1], +"help_8php.html#af055e15f600ffa6fbca9386fdf715224":[6,0,1,39,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], -"hostxrd_8php.html":[6,0,1,42], -"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[6,0,1,42,0], +"home_8php.html":[6,0,1,40], +"home_8php.html#aa1cf697851a646755baf537f75334c46":[6,0,1,40,0], +"home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[6,0,1,40,1], +"hostxrd_8php.html":[6,0,1,41], +"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[6,0,1,41,0], "html2bbcode_8php.html":[6,0,0,43], "html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[6,0,0,43,3], "html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[6,0,0,43,1], @@ -105,13 +139,13 @@ var NAVTREEINDEX5 = "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], -"import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[6,0,1,44,1], -"import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[6,0,1,44,0], -"importelm_8php.html":[6,0,1,45], -"importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f":[6,0,1,45,0], +"impel_8php.html":[6,0,1,42], +"impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b":[6,0,1,42,0], +"import_8php.html":[6,0,1,43], +"import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[6,0,1,43,1], +"import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[6,0,1,43,0], +"importelm_8php.html":[6,0,1,44], +"importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f":[6,0,1,44,0], "include_2api_8php.html":[6,0,0,7], "include_2api_8php.html#a0991f72554f821255397d615e76f3203":[6,0,0,7,12], "include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5":[6,0,0,7,5], @@ -215,39 +249,5 @@ var NAVTREEINDEX5 = "include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[6,0,0,21,7], "include_2config_8php.html#a549910227348003efc3c05c9105c42da":[6,0,0,21,0], "include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b":[6,0,0,21,8], -"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[6,0,0,21,11], -"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[6,0,0,21,1], -"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[6,0,0,21,2], -"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[6,0,0,21,6], -"include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[6,0,0,21,5], -"include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[6,0,0,21,10], -"include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52":[6,0,0,21,9], -"include_2config_8php.html#af02c96e6b37335774b548914ede1d22e":[6,0,0,21,3], -"include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74":[6,0,0,21,4], -"include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[6,0,0,21,12], -"include_2directory_8php.html":[6,0,0,34], -"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[6,0,0,34,0], -"include_2follow_8php.html":[6,0,0,40], -"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[6,0,0,40,0], -"include_2group_8php.html":[6,0,0,42], -"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[6,0,0,42,2], -"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[6,0,0,42,10], -"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[6,0,0,42,1], -"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[6,0,0,42,0], -"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[6,0,0,42,6], -"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[6,0,0,42,7], -"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[6,0,0,42,4], -"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[6,0,0,42,8], -"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[6,0,0,42,5], -"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[6,0,0,42,11], -"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[6,0,0,42,3], -"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[6,0,0,42,9], -"include_2menu_8php.html":[6,0,0,51], -"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[6,0,0,51,11], -"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[6,0,0,51,1], -"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[6,0,0,51,10], -"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[6,0,0,51,9], -"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[6,0,0,51,3], -"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[6,0,0,51,8], -"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[6,0,0,51,7] +"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[6,0,0,21,11] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index 4976e91e3..24f45fa52 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,5 +1,39 @@ var NAVTREEINDEX6 = { +"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[6,0,0,21,1], +"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[6,0,0,21,2], +"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[6,0,0,21,6], +"include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[6,0,0,21,5], +"include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[6,0,0,21,10], +"include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52":[6,0,0,21,9], +"include_2config_8php.html#af02c96e6b37335774b548914ede1d22e":[6,0,0,21,3], +"include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74":[6,0,0,21,4], +"include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[6,0,0,21,12], +"include_2directory_8php.html":[6,0,0,34], +"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[6,0,0,34,0], +"include_2follow_8php.html":[6,0,0,40], +"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[6,0,0,40,0], +"include_2group_8php.html":[6,0,0,42], +"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[6,0,0,42,2], +"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[6,0,0,42,10], +"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[6,0,0,42,1], +"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[6,0,0,42,0], +"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[6,0,0,42,6], +"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[6,0,0,42,7], +"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[6,0,0,42,4], +"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[6,0,0,42,8], +"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[6,0,0,42,5], +"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[6,0,0,42,11], +"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[6,0,0,42,3], +"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[6,0,0,42,9], +"include_2menu_8php.html":[6,0,0,51], +"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[6,0,0,51,11], +"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[6,0,0,51,1], +"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[6,0,0,51,10], +"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[6,0,0,51,9], +"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[6,0,0,51,3], +"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[6,0,0,51,8], +"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[6,0,0,51,7], "include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[6,0,0,51,5], "include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[6,0,0,51,2], "include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[6,0,0,51,6], @@ -69,19 +103,19 @@ var NAVTREEINDEX6 = "include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[6,0,0,66,7], "include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[6,0,0,66,5], "index.html":[], -"interfaceITemplateEngine.html":[5,0,20], -"interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[5,0,20,1], -"interfaceITemplateEngine.html#aaf2698adbf46c073c24b162fe1b1c442":[5,0,20,0], -"invite_8php.html":[6,0,1,46], -"invite_8php.html#a244385b28cfd021d308715f01158bfd9":[6,0,1,46,0], -"invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5":[6,0,1,46,1], -"item_8php.html":[6,0,1,47], -"item_8php.html#a3daae7944f737bd30412a0d042207c0f":[6,0,1,47,0], -"item_8php.html#a5b1b36cb301a94b38150074f0d424e74":[6,0,1,47,3], -"item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[6,0,1,47,5], -"item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[6,0,1,47,4], -"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[6,0,1,47,1], -"item_8php.html#aa22feef4de326e1d7078dedd892e615c":[6,0,1,47,2], +"interfaceITemplateEngine.html":[5,0,21], +"interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[5,0,21,1], +"interfaceITemplateEngine.html#aaf2698adbf46c073c24b162fe1b1c442":[5,0,21,0], +"invite_8php.html":[6,0,1,45], +"invite_8php.html#a244385b28cfd021d308715f01158bfd9":[6,0,1,45,0], +"invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5":[6,0,1,45,1], +"item_8php.html":[6,0,1,46], +"item_8php.html#a3daae7944f737bd30412a0d042207c0f":[6,0,1,46,0], +"item_8php.html#a5b1b36cb301a94b38150074f0d424e74":[6,0,1,46,3], +"item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[6,0,1,46,5], +"item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[6,0,1,46,4], +"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[6,0,1,46,1], +"item_8php.html#aa22feef4de326e1d7078dedd892e615c":[6,0,1,46,2], "items_8php.html":[6,0,0,49], "items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[6,0,0,49,3], "items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df":[6,0,0,49,42], @@ -156,8 +190,8 @@ var NAVTREEINDEX6 = "items_8php.html#af6237605c60d69abdd959ddbbee3420c":[6,0,0,49,61], "items_8php.html#af94c281016c6c912d06e064113336c5c":[6,0,0,49,50], "items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[6,0,0,49,24], -"lang_8php.html":[6,0,1,48], -"lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[6,0,1,48,0], +"lang_8php.html":[6,0,1,47], +"lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[6,0,1,47,0], "language_8php.html":[6,0,0,50], "language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[6,0,0,50,7], "language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[6,0,0,50,3], @@ -169,29 +203,30 @@ var NAVTREEINDEX6 = "language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96":[6,0,0,50,8], "language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[6,0,0,50,6], "language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[6,0,0,50,2], -"layouts_8php.html":[6,0,1,49], -"layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[6,0,1,49,0], -"like_8php.html":[6,0,1,50], -"like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538":[6,0,1,50,0], -"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,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], -"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[6,0,1,54,0], -"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[6,0,1,54,1], -"magic_8php.html":[6,0,1,55], -"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[6,0,1,55,0], -"mail_8php.html":[6,0,1,56], -"mail_8php.html#a3c7c485fc69f92371e8b20936040eca1":[6,0,1,56,0], -"mail_8php.html#acfc2cc0bf4e0b178207758384977f25a":[6,0,1,56,1], -"manage_8php.html":[6,0,1,57], -"manage_8php.html#a2bca247b5296827638959138367db4f5":[6,0,1,57,0], -"match_8php.html":[6,0,1,58], -"match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[6,0,1,58,0], +"layouts_8php.html":[6,0,1,48], +"layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa":[6,0,1,48,1], +"layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[6,0,1,48,0], +"like_8php.html":[6,0,1,49], +"like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538":[6,0,1,49,0], +"lockview_8php.html":[6,0,1,50], +"lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44":[6,0,1,50,0], +"locs_8php.html":[6,0,1,51], +"locs_8php.html#a6b43654592919ac863d67a1f787a69b9":[6,0,1,51,1], +"locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44":[6,0,1,51,0], +"login_8php.html":[6,0,1,52], +"login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[6,0,1,52,0], +"lostpass_8php.html":[6,0,1,53], +"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[6,0,1,53,0], +"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[6,0,1,53,1], +"magic_8php.html":[6,0,1,54], +"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[6,0,1,54,0], +"mail_8php.html":[6,0,1,55], +"mail_8php.html#a3c7c485fc69f92371e8b20936040eca1":[6,0,1,55,0], +"mail_8php.html#acfc2cc0bf4e0b178207758384977f25a":[6,0,1,55,1], +"manage_8php.html":[6,0,1,56], +"manage_8php.html#a2bca247b5296827638959138367db4f5":[6,0,1,56,0], +"match_8php.html":[6,0,1,57], +"match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[6,0,1,57,0], "md_README.html":[2], "md_config.html":[0], "md_fresh.html":[1], @@ -203,10 +238,10 @@ var NAVTREEINDEX6 = "minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf":[6,0,3,1,0,2,4,0], "minimalisticdarkness_8php.html#a70bb13be8f23ec47839da81e0796f1cb":[6,0,3,1,0,2,4,2], "minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b":[6,0,3,1,0,2,4,1], -"mitem_8php.html":[6,0,1,61], -"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[6,0,1,61,2], -"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[6,0,1,61,0], -"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[6,0,1,61,1], +"mitem_8php.html":[6,0,1,60], +"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[6,0,1,60,2], +"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[6,0,1,60,0], +"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[6,0,1,60,1], "mod_2api_8php.html":[6,0,1,4], "mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[6,0,1,4,2], "mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[6,0,1,4,0], @@ -214,40 +249,5 @@ var NAVTREEINDEX6 = "mod_2apps_8php.html":[6,0,1,6], "mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[6,0,1,6,0], "mod_2attach_8php.html":[6,0,1,7], -"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[6,0,1,7,0], -"mod_2bookmarks_8php.html":[6,0,1,10], -"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[6,0,1,10,1], -"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[6,0,1,10,0], -"mod_2chat_8php.html":[6,0,1,13], -"mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f":[6,0,1,13,0], -"mod_2chat_8php.html#a999d594745597c656c9760253ae297ad":[6,0,1,13,2], -"mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e":[6,0,1,13,1], -"mod_2directory_8php.html":[6,0,1,22], -"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[6,0,1,22,1], -"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[6,0,1,22,0], -"mod_2follow_8php.html":[6,0,1,36], -"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[6,0,1,36,1], -"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[6,0,1,36,0], -"mod_2group_8php.html":[6,0,1,38], -"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[6,0,1,38,0], -"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[6,0,1,38,1], -"mod_2menu_8php.html":[6,0,1,59], -"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[6,0,1,59,0], -"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[6,0,1,59,1], -"mod_2message_8php.html":[6,0,1,60], -"mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f":[6,0,1,60,0], -"mod_2network_8php.html":[6,0,1,65], -"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[6,0,1,65,1], -"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[6,0,1,65,0], -"mod_2notify_8php.html":[6,0,1,69], -"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[6,0,1,69,1], -"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[6,0,1,69,0], -"mod_2oembed_8php.html":[6,0,1,70], -"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[6,0,1,70,0], -"mod_2photos_8php.html":[6,0,1,80], -"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[6,0,1,80,2], -"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[6,0,1,80,0], -"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[6,0,1,80,1], -"mod_2probe_8php.html":[6,0,1,88], -"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[6,0,1,88,0] +"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[6,0,1,7,0] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index 750d36362..95e51661f 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,92 +1,127 @@ var NAVTREEINDEX7 = { +"mod_2bookmarks_8php.html":[6,0,1,10], +"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[6,0,1,10,1], +"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[6,0,1,10,0], +"mod_2chat_8php.html":[6,0,1,13], +"mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f":[6,0,1,13,0], +"mod_2chat_8php.html#a999d594745597c656c9760253ae297ad":[6,0,1,13,2], +"mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e":[6,0,1,13,1], +"mod_2directory_8php.html":[6,0,1,22], +"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[6,0,1,22,1], +"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[6,0,1,22,0], +"mod_2follow_8php.html":[6,0,1,35], +"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[6,0,1,35,1], +"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[6,0,1,35,0], +"mod_2group_8php.html":[6,0,1,37], +"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[6,0,1,37,0], +"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[6,0,1,37,1], +"mod_2menu_8php.html":[6,0,1,58], +"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[6,0,1,58,0], +"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[6,0,1,58,1], +"mod_2message_8php.html":[6,0,1,59], +"mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f":[6,0,1,59,0], +"mod_2network_8php.html":[6,0,1,64], +"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[6,0,1,64,1], +"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[6,0,1,64,0], +"mod_2notify_8php.html":[6,0,1,68], +"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[6,0,1,68,1], +"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[6,0,1,68,0], +"mod_2oembed_8php.html":[6,0,1,69], +"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[6,0,1,69,0], +"mod_2photos_8php.html":[6,0,1,79], +"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[6,0,1,79,2], +"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[6,0,1,79,0], +"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[6,0,1,79,1], +"mod_2probe_8php.html":[6,0,1,87], +"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[6,0,1,87,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], +"mood_8php.html":[6,0,1,61], +"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[6,0,1,61,0], +"mood_8php.html#a7ae136dd7476865b4828136175db5022":[6,0,1,61,1], +"msearch_8php.html":[6,0,1,62], +"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[6,0,1,62,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], +"namespaceFriendica.html":[4,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_1_1RedDAV.html":[4,0,3,0], "namespaceRedmatrix.html":[5,0,4], "namespaceRedmatrix.html":[4,0,4], "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], +"namespaceacl__selectors.html":[4,0,0], "namespacefriendica-to-smarty-tpl.html":[4,0,2], "namespacefriendica-to-smarty-tpl.html":[5,0,2], "namespacemembers.html":[4,1,0], "namespacemembers_func.html":[4,1,1], "namespacemembers_vars.html":[4,1,2], "namespaces.html":[4,0], -"namespaceupdatetpl.html":[4,0,5], "namespaceupdatetpl.html":[5,0,5], +"namespaceupdatetpl.html":[4,0,5], "namespaceutil.html":[4,0,6], "namespaceutil.html":[5,0,6], "nav_8php.html":[6,0,0,53], "nav_8php.html#a43be0df73b90647ea70947ce004e231e":[6,0,0,53,0], "nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[6,0,0,53,1], -"netgrowth_8php.html":[6,0,1,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], +"netgrowth_8php.html":[6,0,1,63], +"netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919":[6,0,1,63,0], +"new__channel_8php.html":[6,0,1,65], +"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[6,0,1,65,2], +"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[6,0,1,65,1], +"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[6,0,1,65,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], +"notes_8php.html":[6,0,1,66], +"notes_8php.html#a4dbd7b1f906440746af48b484d66535a":[6,0,1,66,0], +"notifications_8php.html":[6,0,1,67], +"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[6,0,1,67,1], +"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[6,0,1,67,0], "notifier_8php.html":[6,0,0,55], "notifier_8php.html#a568c502f626cff95e344c0748938b85d":[6,0,0,55,0], "notred_8php.html":[6,0,3,1,4,1,3], "oauth_8php.html":[6,0,0,57], "oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[6,0,0,57,3], "oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[6,0,0,57,2], -"oexchange_8php.html":[6,0,1,71], -"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[6,0,1,71,0], -"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[6,0,1,71,1], +"oexchange_8php.html":[6,0,1,70], +"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[6,0,1,70,0], +"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[6,0,1,70,1], "olddefault_8php.html":[6,0,3,1,0,2,5], "onedirsync_8php.html":[6,0,0,59], "onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[6,0,0,59,0], "onepoll_8php.html":[6,0,0,60], "onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[6,0,0,60,0], -"online_8php.html":[6,0,1,72], -"online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[6,0,1,72,0], -"openid_8php.html":[6,0,1,73], -"openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43":[6,0,1,73,0], -"opensearch_8php.html":[6,0,1,74], -"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[6,0,1,74,0], -"p_8php.html":[6,0,1,75], -"p_8php.html#af9d5530ca0b3dc9409cf591c39e2480e":[6,0,1,75,0], -"page_8php.html":[6,0,1,76], -"page_8php.html#a4d89800c0366a239191b1692c09635cf":[6,0,1,76,1], -"page_8php.html#a91a5f649f68406149108bded1dc90b22":[6,0,1,76,0], +"online_8php.html":[6,0,1,71], +"online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[6,0,1,71,0], +"openid_8php.html":[6,0,1,72], +"openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43":[6,0,1,72,0], +"opensearch_8php.html":[6,0,1,73], +"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[6,0,1,73,0], +"p_8php.html":[6,0,1,74], +"p_8php.html#af9d5530ca0b3dc9409cf591c39e2480e":[6,0,1,74,0], +"page_8php.html":[6,0,1,75], +"page_8php.html#a4d89800c0366a239191b1692c09635cf":[6,0,1,75,1], +"page_8php.html#a91a5f649f68406149108bded1dc90b22":[6,0,1,75,0], "page__widgets_8php.html":[6,0,0,61], "page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[6,0,0,61,1], "page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[6,0,0,61,0], "pages.html":[], -"parse__url_8php.html":[6,0,1,77], -"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[6,0,1,77,2], -"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[6,0,1,77,3], -"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[6,0,1,77,1], -"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[6,0,1,77,0], +"parse__url_8php.html":[6,0,1,76], +"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[6,0,1,76,2], +"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[6,0,1,76,3], +"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[6,0,1,76,1], +"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[6,0,1,76,0], "passion_8php.html":[6,0,3,1,0,2,6], "passionwide_8php.html":[6,0,3,1,0,2,7], -"pdledit_8php.html":[6,0,1,78], -"pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[6,0,1,78,0], -"pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[6,0,1,78,1], +"pdledit_8php.html":[6,0,1,77], +"pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[6,0,1,77,0], +"pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[6,0,1,77,1], "permissions_8php.html":[6,0,0,62], "permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[6,0,0,62,2], "permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[6,0,0,62,0], @@ -95,8 +130,8 @@ var NAVTREEINDEX7 = "permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe":[6,0,0,62,3], "permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[6,0,0,62,6], "permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[6,0,0,62,1], -"photo_8php.html":[6,0,1,79], -"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[6,0,1,79,0], +"photo_8php.html":[6,0,1,78], +"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[6,0,1,78,0], "photo__driver_8php.html":[6,0,0,2,0], "photo__driver_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a":[6,0,0,2,0,2], "photo__driver_8php.html#a243cee492ce443afb6a7d77d54b6c4aa":[6,0,0,2,0,1], @@ -117,11 +152,11 @@ var NAVTREEINDEX7 = "php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,0,1,0], "php_2theme__init_8php.html":[6,0,3,0,7], "php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[6,0,3,0,7,0], -"php_8php.html":[6,0,1,81], -"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[6,0,1,81,0], +"php_8php.html":[6,0,1,80], +"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[6,0,1,80,0], "pine_8php.html":[6,0,3,1,0,2,8], -"ping_8php.html":[6,0,1,82], -"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[6,0,1,82,0], +"ping_8php.html":[6,0,1,81], +"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[6,0,1,81,0], "plugin_8php.html":[6,0,0,64], "plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[6,0,0,64,24], "plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[6,0,0,64,22], @@ -152,29 +187,29 @@ var NAVTREEINDEX7 = "plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[6,0,0,64,5], "po2php_8php.html":[6,0,2,6], "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[6,0,2,6,0], -"poco_8php.html":[6,0,1,83], -"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[6,0,1,83,0], -"poke_8php.html":[6,0,1,84], -"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[6,0,1,84,1], -"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[6,0,1,84,0], -"poll_8php.html":[6,0,1,85], -"poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77":[6,0,1,85,2], -"poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263":[6,0,1,85,0], -"poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930":[6,0,1,85,1], +"poco_8php.html":[6,0,1,82], +"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[6,0,1,82,0], +"poke_8php.html":[6,0,1,83], +"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[6,0,1,83,1], +"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[6,0,1,83,0], +"poll_8php.html":[6,0,1,84], +"poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77":[6,0,1,84,2], +"poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263":[6,0,1,84,0], +"poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930":[6,0,1,84,1], "poller_8php.html":[6,0,0,65], "poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[6,0,0,65,0], -"post_8php.html":[6,0,1,86], -"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[6,0,1,86,0], -"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[6,0,1,86,1], -"pretheme_8php.html":[6,0,1,87], -"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[6,0,1,87,0], -"profile_8php.html":[6,0,1,89], -"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[6,0,1,89,0], -"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[6,0,1,89,1], -"profile__photo_8php.html":[6,0,1,90], -"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[6,0,1,90,0], -"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[6,0,1,90,1], -"profile__photo_8php.html#a561103564199da56e58061a4196eb102":[6,0,1,90,2], +"post_8php.html":[6,0,1,85], +"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[6,0,1,85,0], +"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[6,0,1,85,1], +"pretheme_8php.html":[6,0,1,86], +"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[6,0,1,86,0], +"profile_8php.html":[6,0,1,88], +"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[6,0,1,88,0], +"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[6,0,1,88,1], +"profile__photo_8php.html":[6,0,1,89], +"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[6,0,1,89,0], +"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[6,0,1,89,1], +"profile__photo_8php.html#a561103564199da56e58061a4196eb102":[6,0,1,89,2], "profile__selectors_8php.html":[6,0,0,67], "profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[6,0,0,67,4], "profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[6,0,0,67,2], @@ -182,27 +217,27 @@ var NAVTREEINDEX7 = "profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074":[6,0,0,67,5], "profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534":[6,0,0,67,3], "profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[6,0,0,67,0], -"profiles_8php.html":[6,0,1,91], -"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[6,0,1,91,1], -"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[6,0,1,91,0], -"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[6,0,1,91,2], -"profperm_8php.html":[6,0,1,92], -"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[6,0,1,92,1], -"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[6,0,1,92,0], -"pubsites_8php.html":[6,0,1,93], -"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[6,0,1,93,0], +"profiles_8php.html":[6,0,1,90], +"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[6,0,1,90,1], +"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[6,0,1,90,0], +"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[6,0,1,90,2], +"profperm_8php.html":[6,0,1,91], +"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[6,0,1,91,1], +"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[6,0,1,91,0], +"pubsites_8php.html":[6,0,1,92], +"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[6,0,1,92,0], "queue_8php.html":[6,0,0,69], "queue_8php.html#af8c93de86d866c3200174c8450a0f341":[6,0,0,69,0], "queue__fn_8php.html":[6,0,0,70], "queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[6,0,0,70,1], "queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[6,0,0,70,0], -"randprof_8php.html":[6,0,1,94], -"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[6,0,1,94,0], -"rbmark_8php.html":[6,0,1,95], -"rbmark_8php.html#a43fec4960b50926251574762cc491f76":[6,0,1,95,0], -"rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c":[6,0,1,95,1], -"receive_8php.html":[6,0,1,96], -"receive_8php.html#a03d8fa26e77844020ba5602deca7d494":[6,0,1,96,0], +"randprof_8php.html":[6,0,1,93], +"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[6,0,1,93,0], +"rbmark_8php.html":[6,0,1,94], +"rbmark_8php.html#a43fec4960b50926251574762cc491f76":[6,0,1,94,0], +"rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c":[6,0,1,94,1], +"receive_8php.html":[6,0,1,95], +"receive_8php.html#a03d8fa26e77844020ba5602deca7d494":[6,0,1,95,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,4,0,1], @@ -214,40 +249,5 @@ var NAVTREEINDEX7 = "reddav_8php.html":[6,0,0,71], "reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[6,0,0,71,1], "reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[6,0,0,71,2], -"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[6,0,0,71,0], -"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], -"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[6,0,1,97,1], -"regmod_8php.html":[6,0,1,98], -"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[6,0,1,98,0], -"regver_8php.html":[6,0,1,99], -"regver_8php.html#ad2c5f644fd1b099abd7c715b7df6f50f":[6,0,1,99,0], -"removeaccount_8php.html":[6,0,1,100], -"removeaccount_8php.html#a26a3325292e932c59793430ab737126a":[6,0,1,100,1], -"removeaccount_8php.html#a516e7380b9e5796054aa8245f3509695":[6,0,1,100,0], -"removeme_8php.html":[6,0,1,101], -"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[6,0,1,101,0], -"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[6,0,1,101,1], -"rmagic_8php.html":[6,0,1,102], -"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[6,0,1,102,0], -"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[6,0,1,102,2], -"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] +"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[6,0,0,71,0] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index 75e8fbe66..41348f01c 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,11 +1,46 @@ 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], +"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,96], +"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[6,0,1,96,0], +"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[6,0,1,96,2], +"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[6,0,1,96,1], +"regmod_8php.html":[6,0,1,97], +"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[6,0,1,97,0], +"regver_8php.html":[6,0,1,98], +"regver_8php.html#ad2c5f644fd1b099abd7c715b7df6f50f":[6,0,1,98,0], +"removeaccount_8php.html":[6,0,1,99], +"removeaccount_8php.html#a26a3325292e932c59793430ab737126a":[6,0,1,99,1], +"removeaccount_8php.html#a516e7380b9e5796054aa8245f3509695":[6,0,1,99,0], +"removeme_8php.html":[6,0,1,100], +"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[6,0,1,100,0], +"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[6,0,1,100,1], +"rmagic_8php.html":[6,0,1,101], +"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[6,0,1,101,0], +"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[6,0,1,101,2], +"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[6,0,1,101,1], +"rpost_8php.html":[6,0,1,102], +"rpost_8php.html#a8190354d789000806d9879aea276728f":[6,0,1,102,0], +"rsd__xml_8php.html":[6,0,1,103], +"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[6,0,1,103,0], +"search_8php.html":[6,0,1,104], +"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[6,0,1,104,0], +"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[6,0,1,104,1], +"search__ac_8php.html":[6,0,1,105], +"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[6,0,1,105,0], "security_8php.html":[6,0,0,72], "security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[6,0,0,72,2], "security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[6,0,0,72,11], @@ -19,8 +54,8 @@ var NAVTREEINDEX8 = "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], +"service__limits_8php.html":[6,0,1,106], +"service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[6,0,1,106,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], @@ -32,41 +67,41 @@ var NAVTREEINDEX8 = "session_8php.html#ac95373f4966862a028033dd2f94d4da1":[6,0,0,73,3], "session_8php.html#af0100a2642a5268594bbd5742a03d885":[6,0,0,73,9], "session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[6,0,0,73,2], -"settings_8php.html":[6,0,1,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], -"setup_8php.html#a2b375ddc555140236fc500135de99371":[6,0,1,109,10], -"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[6,0,1,109,3], -"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[6,0,1,109,1], -"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[6,0,1,109,8], -"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[6,0,1,109,12], -"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[6,0,1,109,4], -"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[6,0,1,109,7], -"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[6,0,1,109,11], -"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[6,0,1,109,9], -"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[6,0,1,109,16], -"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[6,0,1,109,0], -"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[6,0,1,109,15], -"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], +"settings_8php.html":[6,0,1,107], +"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[6,0,1,107,0], +"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[6,0,1,107,1], +"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[6,0,1,107,2], +"setup_8php.html":[6,0,1,108], +"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[6,0,1,108,2], +"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[6,0,1,108,14], +"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[6,0,1,108,5], +"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[6,0,1,108,13], +"setup_8php.html#a2b375ddc555140236fc500135de99371":[6,0,1,108,10], +"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[6,0,1,108,3], +"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[6,0,1,108,1], +"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[6,0,1,108,8], +"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[6,0,1,108,12], +"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[6,0,1,108,4], +"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[6,0,1,108,7], +"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[6,0,1,108,11], +"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[6,0,1,108,9], +"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[6,0,1,108,16], +"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[6,0,1,108,0], +"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[6,0,1,108,15], +"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[6,0,1,108,6], +"share_8php.html":[6,0,1,109], +"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[6,0,1,109,0], "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], -"sitelist_8php.html":[6,0,1,112], -"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[6,0,1,112,0], +"siteinfo_8php.html":[6,0,1,110], +"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[6,0,1,110,1], +"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[6,0,1,110,0], +"sitelist_8php.html":[6,0,1,111], +"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[6,0,1,111,0], "smarty_8php.html":[6,0,0,74], -"smilies_8php.html":[6,0,1,113], -"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[6,0,1,113,0], +"smilies_8php.html":[6,0,1,112], +"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[6,0,1,112,0], "socgraph_8php.html":[6,0,0,75], "socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[6,0,0,75,0], "socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[6,0,0,75,6], @@ -77,16 +112,16 @@ var NAVTREEINDEX8 = "socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[6,0,0,75,2], "socgraph_8php.html#af175807406d94407a5e11742a3287746":[6,0,0,75,5], "socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[6,0,0,75,3], -"sources_8php.html":[6,0,1,114], -"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[6,0,1,114,0], -"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[6,0,1,114,1], +"sources_8php.html":[6,0,1,113], +"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[6,0,1,113,0], +"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[6,0,1,113,1], "spam_8php.html":[6,0,0,76], "spam_8php.html#a05861201147b9a538d006f0269255cf9":[6,0,0,76,1], "spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[6,0,0,76,0], -"sslify_8php.html":[6,0,1,115], -"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[6,0,1,115,0], -"starred_8php.html":[6,0,1,116], -"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[6,0,1,116,0], +"sslify_8php.html":[6,0,1,114], +"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[6,0,1,114,0], +"starred_8php.html":[6,0,1,115], +"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[6,0,1,115,0], "statistics__fns_8php.html":[6,0,0,77], "statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c":[6,0,0,77,2], "statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[6,0,0,77,0], @@ -95,21 +130,21 @@ var NAVTREEINDEX8 = "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], +"subthread_8php.html":[6,0,1,116], +"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[6,0,1,116,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], +"suggest_8php.html":[6,0,1,117], +"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[6,0,1,117,0], +"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[6,0,1,117,1], "system__unavailable_8php.html":[6,0,0,78], "system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[6,0,0,78,0], -"tagger_8php.html":[6,0,1,119], -"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[6,0,1,119,0], -"tagrm_8php.html":[6,0,1,120], -"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[6,0,1,120,1], -"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[6,0,1,120,0], +"tagger_8php.html":[6,0,1,118], +"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[6,0,1,118,0], +"tagrm_8php.html":[6,0,1,119], +"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[6,0,1,119,1], +"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[6,0,1,119,0], "taxonomy_8php.html":[6,0,0,79], "taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[6,0,0,79,10], "taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[6,0,0,79,1], @@ -214,40 +249,5 @@ var NAVTREEINDEX8 = "text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[6,0,0,81,13], "text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[6,0,0,81,66], "text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[6,0,0,81,27], -"text_8php.html#adba17ec946f4285285dc100f7860bf51":[6,0,0,81,53], -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[6,0,0,81,40], -"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[6,0,0,81,68], -"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[6,0,0,81,18], -"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[6,0,0,81,59], -"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[6,0,0,81,0], -"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[6,0,0,81,79], -"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[6,0,0,81,64], -"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[6,0,0,81,23], -"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[6,0,0,81,12], -"text_8php.html#afe54312607d92f7ce9593f5760831f80":[6,0,0,81,60], -"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[6,0,0,81,55], -"theme_2apw_2php_2theme__init_8php.html":[6,0,3,1,0,1,4], -"theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[6,0,3,1,0,1,4,0], -"theme_2blogga_2php_2default_8php.html":[6,0,3,1,1,0,1], -"theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[6,0,3,1,1,0,1,2], -"theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a":[6,0,3,1,1,0,1,0], -"theme_2blogga_2php_2default_8php.html#ac7062908d1eb80c0735270f7997c4527":[6,0,3,1,1,0,1,1], -"theme_2blogga_2php_2theme__init_8php.html":[6,0,3,1,1,0,3], -"theme_2blogga_2view_2theme_2blog_2default_8php.html":[6,0,3,1,1,1,0,0,1], -"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,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], -"todo.html":[3], -"toggle__mobile_8php.html":[6,0,1,122], -"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[6,0,1,122,0], -"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] +"text_8php.html#adba17ec946f4285285dc100f7860bf51":[6,0,0,81,53] }; diff --git a/doc/html/navtreeindex9.js b/doc/html/navtreeindex9.js index 431de1608..fa4f62489 100644 --- a/doc/html/navtreeindex9.js +++ b/doc/html/navtreeindex9.js @@ -1,5 +1,40 @@ var NAVTREEINDEX9 = { +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[6,0,0,81,40], +"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[6,0,0,81,68], +"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[6,0,0,81,18], +"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[6,0,0,81,59], +"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[6,0,0,81,0], +"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[6,0,0,81,79], +"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[6,0,0,81,64], +"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[6,0,0,81,23], +"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[6,0,0,81,12], +"text_8php.html#afe54312607d92f7ce9593f5760831f80":[6,0,0,81,60], +"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[6,0,0,81,55], +"theme_2apw_2php_2theme__init_8php.html":[6,0,3,1,0,1,4], +"theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[6,0,3,1,0,1,4,0], +"theme_2blogga_2php_2default_8php.html":[6,0,3,1,1,0,1], +"theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[6,0,3,1,1,0,1,2], +"theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a":[6,0,3,1,1,0,1,0], +"theme_2blogga_2php_2default_8php.html#ac7062908d1eb80c0735270f7997c4527":[6,0,3,1,1,0,1,1], +"theme_2blogga_2php_2theme__init_8php.html":[6,0,3,1,1,0,3], +"theme_2blogga_2view_2theme_2blog_2default_8php.html":[6,0,3,1,1,1,0,0,1], +"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,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,120], +"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[6,0,1,120,0], +"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[6,0,1,120,1], +"todo.html":[3], +"toggle__mobile_8php.html":[6,0,1,121], +"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[6,0,1,121,0], +"toggle__safesearch_8php.html":[6,0,1,122], +"toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[6,0,1,122,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], @@ -11,16 +46,16 @@ var NAVTREEINDEX9 = "typohelper_8php.html":[6,0,2,9], "typohelper_8php.html#a7542d95618011800c61773127fa625cf":[6,0,2,9,0], "typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[6,0,2,9,1], -"uexport_8php.html":[6,0,1,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], +"uexport_8php.html":[6,0,1,123], +"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[6,0,1,123,0], +"update__channel_8php.html":[6,0,1,124], +"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[6,0,1,124,0], +"update__display_8php.html":[6,0,1,125], +"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[6,0,1,125,0], +"update__network_8php.html":[6,0,1,126], +"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[6,0,1,126,0], +"update__search_8php.html":[6,0,1,127], +"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[6,0,1,127,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], @@ -48,27 +83,28 @@ var NAVTREEINDEX9 = "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], -"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[6,0,1,130,1], -"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[6,0,1,130,0], -"viewsrc_8php.html":[6,0,1,131], -"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[6,0,1,131,0], -"vote_8php.html":[6,0,1,132], -"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[6,0,1,132,2], -"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[6,0,1,132,0], -"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[6,0,1,132,1], -"wall__attach_8php.html":[6,0,1,133], -"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[6,0,1,133,0], -"wall__upload_8php.html":[6,0,1,134], -"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[6,0,1,134,0], -"webfinger_8php.html":[6,0,1,135], -"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[6,0,1,135,0], -"webpages_8php.html":[6,0,1,136], -"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[6,0,1,136,0], -"wfinger_8php.html":[6,0,1,137], -"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[6,0,1,137,0], +"view_8php.html":[6,0,1,128], +"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[6,0,1,128,0], +"viewconnections_8php.html":[6,0,1,129], +"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[6,0,1,129,1], +"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[6,0,1,129,0], +"viewsrc_8php.html":[6,0,1,130], +"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[6,0,1,130,0], +"vote_8php.html":[6,0,1,131], +"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[6,0,1,131,2], +"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[6,0,1,131,0], +"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[6,0,1,131,1], +"wall__attach_8php.html":[6,0,1,132], +"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[6,0,1,132,0], +"wall__upload_8php.html":[6,0,1,133], +"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[6,0,1,133,0], +"webfinger_8php.html":[6,0,1,134], +"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[6,0,1,134,0], +"webpages_8php.html":[6,0,1,135], +"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[6,0,1,135,0], +"webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7":[6,0,1,135,1], +"wfinger_8php.html":[6,0,1,136], +"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[6,0,1,136,0], "widedarkness_8php.html":[6,0,3,1,0,2,10], "widgets_8php.html":[6,0,0,82], "widgets_8php.html#a08035db02ff6a23260146b4c64153422":[6,0,0,82,12], @@ -102,14 +138,14 @@ var NAVTREEINDEX9 = "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], -"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[6,0,1,139,0], -"xref_8php.html":[6,0,1,140], -"xref_8php.html#a9bee399213b8de8226b0d60834307473":[6,0,1,140,0], -"zfinger_8php.html":[6,0,1,141], -"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[6,0,1,141,0], +"xchan_8php.html":[6,0,1,137], +"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[6,0,1,137,0], +"xrd_8php.html":[6,0,1,138], +"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[6,0,1,138,0], +"xref_8php.html":[6,0,1,139], +"xref_8php.html#a9bee399213b8de8226b0d60834307473":[6,0,1,139,0], +"zfinger_8php.html":[6,0,1,140], +"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[6,0,1,140,0], "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], @@ -144,8 +180,8 @@ var NAVTREEINDEX9 = "zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca":[6,0,0,83,21], "zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[6,0,0,83,24], "zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[6,0,0,83,26], -"zotfeed_8php.html":[6,0,1,142], -"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[6,0,1,142,0], -"zping_8php.html":[6,0,1,143], -"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[6,0,1,143,0] +"zotfeed_8php.html":[6,0,1,141], +"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[6,0,1,141,0], +"zping_8php.html":[6,0,1,142], +"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[6,0,1,142,0] }; diff --git a/doc/html/permissions_8php.html b/doc/html/permissions_8php.html index bd92a66d0..379a93a75 100644 --- a/doc/html/permissions_8php.html +++ b/doc/html/permissions_8php.html @@ -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_catcloud_wall(), 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(), editlayout_content(), editwebpage_content(), get_feed_for(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), item_post(), like_content(), local_dir_update(), p_init(), photo_init(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), poco_init(), post_activity_item(), post_post(), process_delivery(), process_mail_delivery(), profile_content(), profile_load(), profile_sidebar(), RedChannelList(), search_content(), Conversation\set_mode(), RedMatrix\RedDAV\RedBrowser\set_writeable(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), subthread_content(), tag_deliver(), tgroup_check(), update_birthdays(), viewconnections_content(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_item(), widget_photo_albums(), widget_tagcloud_wall(), z_readdir(), and zot_feed().

      diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html index 445b81280..ec2862d4c 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(), xchan_fetch(), zfinger_init(), zot_build_packet(), and zot_refresh().

      +

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

      @@ -182,7 +182,7 @@ Variables diff --git a/doc/html/php_2default_8php.html b/doc/html/php_2default_8php.html index 19e67f2d6..35a9b50f1 100644 --- a/doc/html/php_2default_8php.html +++ b/doc/html/php_2default_8php.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('php_2default_8php.html','');}); - +

      Variables

       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       

      Variable Documentation

      @@ -121,7 +121,7 @@ Variables
      - +
      if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($pageif(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
      diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index 1557daf08..cb93f3a10 100644 --- a/doc/html/plugin_8php.html +++ b/doc/html/plugin_8php.html @@ -298,7 +298,7 @@ Functions
      -

      Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), 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().

      +

      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(), 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/redable_8php.html b/doc/html/redable_8php.html index 11a11e977..549b7af78 100644 --- a/doc/html/redable_8php.html +++ b/doc/html/redable_8php.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('redable_8php.html','');}); - +

      Variables

       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       

      Variable Documentation

      @@ -121,7 +121,7 @@ Variables
      - +
      if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($pageif(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
      diff --git a/doc/html/reddav_8php.html b/doc/html/reddav_8php.html index ac5e204bb..4b92ec899 100644 --- a/doc/html/reddav_8php.html +++ b/doc/html/reddav_8php.html @@ -129,7 +129,7 @@ Functions

      some DAV related functions for RedMatrix.

      This file contains some functions which did not fit into one of the RedDAV classes.

      The extended SabreDAV classes you will find in the RedDAV namespace under includes/RedDAV/. The original SabreDAV classes you can find under vendor/sabre/dav/. We need to use SabreDAV 1.8.x for PHP5.3 compatibility. SabreDAV >= 2.0 requires PHP >= 5.4.

      -
      Todo:
      split up the classes into own files.
      +
      Todo:
      split up the classes into own files.

      http://opensource.org/licenses/mit-license.php The MIT License (MIT)

      Function Documentation

      @@ -148,7 +148,7 @@ Functions

      Returns an array with viewable channels.

      Get a list of RedDirectory objects with all the channels where the visitor has view_storage perms.

      -
      Todo:
      Is there any reason why this is not inside RedDirectory class? function name looks like a class name, should we rename it?
      +
      Todo:
      Is there any reason why this is not inside RedDirectory class? function name looks like a class name, should we rename it?
      Parameters
      @@ -187,7 +187,7 @@ Functions

      TODO what exactly does this function?

      Array with all RedDirectory and RedFile DAV items for the given path.

      -
      Todo:
      Is there any reason why this is not inside RedDirectory class? Seems only to be used there and we could simplify it a bit there. function name looks like a class name, should we rename it?
      +
      Todo:
      Is there any reason why this is not inside RedDirectory class? Seems only to be used there and we could simplify it a bit there. function name looks like a class name, should we rename it?
      Parameters
      RedBasicAuth&$auth
      diff --git a/doc/html/search/all_24.js b/doc/html/search/all_24.js index 364451b79..f01fe1c9d 100644 --- a/doc/html/search/all_24.js +++ b/doc/html/search/all_24.js @@ -13,8 +13,6 @@ var searchData= ['_24baseurl',['$baseurl',['../classApp.html#ad5175536561021548ae8188e24c7b80c',1,'App']]], ['_24bodyclass',['$bodyclass',['../theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php'],['../theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php']]], ['_24browser',['$browser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24cached_5fprofile_5fimage',['$cached_profile_image',['../classApp.html#abe0e4fa91097f7a6588e1213a834121c',1,'App']]], - ['_24cached_5fprofile_5fpicdate',['$cached_profile_picdate',['../classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e',1,'App']]], ['_24called_5fapi',['$called_api',['../include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d',1,'api.php']]], ['_24category',['$category',['../classApp.html#a5cfc098c061b7d765add58fd2ca97445',1,'App']]], ['_24channel',['$channel',['../classApp.html#a050b0696118da47e8b30859ad1a2c149',1,'App\$channel()'],['../classItem.html#acc32426c0f465391be8a99ad810c7b8e',1,'Item\$channel()'],['../php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864',1,'$channel(): theme_init.php'],['../theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864',1,'$channel(): theme_init.php']]], @@ -35,11 +33,9 @@ var searchData= ['_24conversation',['$conversation',['../classItem.html#a007424e3e3171dcfb4312a02161da6cd',1,'Item']]], ['_24credentials',['$credentials',['../classRedmatrix_1_1Import_1_1Import.html#afd251e6e5a18516bac4d1a40435602f1',1,'Redmatrix::Import::Import']]], ['_24css_5fsources',['$css_sources',['../classApp.html#a6f55d087e1ff4710132c1b0863faa2ee',1,'App']]], - ['_24curl_5fcode',['$curl_code',['../classApp.html#a256360c9184fed6d7556e0bc0a835d7f',1,'App']]], - ['_24curl_5fheaders',['$curl_headers',['../classApp.html#af5007c42a693afd9c4899c243b2e1363',1,'App']]], ['_24d',['$d',['../classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38',1,'Template']]], ['_24data',['$data',['../classApp.html#a0ce85be198e46570366cb3344f3c55b8',1,'App\$data()'],['../classItem.html#aec24e233f9098f902b1e57e60dcb2019',1,'Item\$data()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a235700e2dfbe21dc41613d36e30e8acc',1,'RedMatrix\RedDAV\RedFile\$data()']]], - ['_24db',['$db',['../classApp.html#a330410a288f3393d53772f5e98f857ea',1,'App\$db()'],['../classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6',1,'dba_driver\$db()']]], + ['_24db',['$db',['../classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6',1,'dba_driver']]], ['_24debug',['$debug',['../classdba__driver.html#af48e2afeded5285766bf92e22123ed03',1,'dba_driver\$debug()'],['../classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a',1,'Template\$debug()']]], ['_24dir',['$dir',['../docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62',1,'docblox_errorchecker.php']]], ['_24directory_5ffallback_5fservers',['$DIRECTORY_FALLBACK_SERVERS',['../boot_8php.html#a107d53f96acf5319905a34b1870db09a',1,'boot.php']]], @@ -71,6 +67,7 @@ var searchData= ['_24install',['$install',['../classApp.html#a576ecb1c5b4a283221e6f2f0ec248251',1,'App']]], ['_24install_5fwizard_5fpass',['$install_wizard_pass',['../setup_8php.html#addb24714bc2542aa4f4215e98fe48432',1,'setup.php']]], ['_24interactive',['$interactive',['../classApp.html#a4c7cfc62d39508086cf300dc2e39c4df',1,'App']]], + ['_24is_5fsys',['$is_sys',['../classApp.html#a1f60d19d47021629faac7a0a6d917e94',1,'App']]], ['_24itemfloat',['$itemfloat',['../minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b',1,'minimalisticdarkness.php']]], ['_24itemlist',['$itemlist',['../classRedmatrix_1_1Import_1_1Import.html#a2f69f16ecb7de1fb1daffbc38e68c9f1',1,'Redmatrix::Import::Import']]], ['_24items',['$items',['../classRedmatrix_1_1Import_1_1Import.html#a31d73d48e1aa93319159c692d0197a3a',1,'Redmatrix::Import::Import']]], @@ -156,7 +153,6 @@ var searchData= ['_24videowidth',['$videowidth',['../classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8',1,'App']]], ['_24visiting',['$visiting',['../classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8',1,'Item']]], ['_24wall_5fto_5fwall',['$wall_to_wall',['../classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189',1,'Item']]], - ['_24widgetlist',['$widgetlist',['../classApp.html#a4833bee2eae4ad1691a04fa19e11a766',1,'App']]], ['_24widgets',['$widgets',['../classApp.html#aa5a87c46ab3fee21362c466bf78042ef',1,'App']]], ['_24width',['$width',['../classphoto__driver.html#a3e4215890f4a4894bf3799a7d2e0c0b1',1,'photo_driver\$width()'],['../minimalisticdarkness_8php.html#a5795120b4b324bc4ca83f1e6fdce7d57',1,'$width(): minimalisticdarkness.php']]], ['_24writable',['$writable',['../classConversation.html#ae81221251307e315f566a11f921ce0a9',1,'Conversation']]], diff --git a/doc/html/search/all_62.js b/doc/html/search/all_62.js index a310a24fc..815f865f4 100644 --- a/doc/html/search/all_62.js +++ b/doc/html/search/all_62.js @@ -32,6 +32,7 @@ var searchData= ['block_5finit',['block_init',['../block_8php.html#a9b61c96044ed2a068f18c10370a78d5c',1,'block.php']]], ['blocks_2ephp',['blocks.php',['../blocks_8php.html',1,'']]], ['blocks_5fcontent',['blocks_content',['../blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12',1,'blocks.php']]], + ['blocks_5finit',['blocks_init',['../blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9',1,'blocks.php']]], ['blog_5finit',['blog_init',['../blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php'],['../blogga_2view_2theme_2blog_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php']]], ['blog_5finstall',['blog_install',['../blogga_2view_2theme_2blog_2theme_8php.html#aae58cc837fe56473d9f3370abfe533ae',1,'theme.php']]], ['blog_5funinstall',['blog_uninstall',['../blogga_2view_2theme_2blog_2theme_8php.html#a3e77dbe111f330c64a1ff6c741cd515c',1,'theme.php']]], diff --git a/doc/html/search/all_63.js b/doc/html/search/all_63.js index 04912f004..115c8a876 100644 --- a/doc/html/search/all_63.js +++ b/doc/html/search/all_63.js @@ -74,7 +74,7 @@ var searchData= ['client_5fmode_5fload',['CLIENT_MODE_LOAD',['../boot_8php.html#af6f6f6f40139f12fc09ec47373b30919',1,'boot.php']]], ['client_5fmode_5fnormal',['CLIENT_MODE_NORMAL',['../boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731',1,'boot.php']]], ['client_5fmode_5fupdate',['CLIENT_MODE_UPDATE',['../boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77',1,'boot.php']]], - ['close',['close',['../classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975',1,'dba_driver\close()'],['../classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e',1,'dba_mysql\close()'],['../classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55',1,'dba_mysqli\close()']]], + ['close',['close',['../classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975',1,'dba_driver\close()'],['../classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e',1,'dba_mysql\close()'],['../classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55',1,'dba_mysqli\close()'],['../classdba__postgres.html#a731d8648b41b8a126f6b99bdd5414058',1,'dba_postgres\close()']]], ['cloud_2ephp',['cloud.php',['../cloud_8php.html',1,'']]], ['cloud_5finit',['cloud_init',['../cloud_8php.html#ad2e96e917852f27dedfc263d37e13756',1,'cloud.php']]], ['collect',['collect',['../classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d',1,'ProtoDriver\collect()'],['../classZotDriver.html#af65febb26031eb7f39871b9e2a539797',1,'ZotDriver\collect()']]], @@ -99,13 +99,14 @@ var searchData= ['common_5finit',['common_init',['../common_8php.html#aca62f113655809f41f49042ce9b123c2',1,'common.php']]], ['compare_5fpermissions',['compare_permissions',['../items_8php.html#a0790a4550b829e85504af548623002ca',1,'items.php']]], ['completeurl',['completeurl',['../parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a',1,'parse_url.php']]], + ['concat',['concat',['../classdba__driver.html#ab9982f38a02f008b127a0f3ccc1e99f4',1,'dba_driver\concat()'],['../classdba__postgres.html#a7ea3f24ad260c1e21588f8b5af595caa',1,'dba_postgres\concat()']]], ['config_2emd',['config.md',['../config_8md.html',1,'']]], ['config_2ephp',['config.php',['../include_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2apw_2php_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2blogga_2php_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2redbasic_2php_2config_8php.html',1,'']]], - ['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()']]], + ['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()'],['../classdba__postgres.html#ab36244320f5b71dba92d9318ccf3f34e',1,'dba_postgres\connect()']]], ['connect_2ephp',['connect.php',['../connect_8php.html',1,'']]], ['connect_5fcontent',['connect_content',['../connect_8php.html#a489f0a66c660de6ec4d6917b27674f07',1,'connect.php']]], ['connect_5finit',['connect_init',['../connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36',1,'connect.php']]], diff --git a/doc/html/search/all_64.js b/doc/html/search/all_64.js index 5805f8a1c..27baec009 100644 --- a/doc/html/search/all_64.js +++ b/doc/html/search/all_64.js @@ -9,21 +9,34 @@ var searchData= ['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_5fconcat',['db_concat',['../dba__driver_8php.html#a7c1b98a710ead27382c958ad3216c4ee',1,'dba_driver.php']]], + ['db_5fgetfunc',['db_getfunc',['../dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67',1,'dba_driver.php']]], + ['db_5foptimizetable',['db_optimizetable',['../dba__driver_8php.html#a75098bf1d59ea57f7ebae657a369137e',1,'dba_driver.php']]], + ['db_5fquoteinterval',['db_quoteinterval',['../dba__driver_8php.html#acec84a8fb75d78daf657cbe5df74e25a',1,'dba_driver.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']]], + ['db_5futcnow',['db_utcnow',['../dba__driver_8php.html#a30e9a643be804e905f5614a3279d2645',1,'dba_driver.php']]], ['dba_5fdriver',['dba_driver',['../classdba__driver.html',1,'']]], ['dba_5fdriver_2ephp',['dba_driver.php',['../dba__driver_8php.html',1,'']]], - ['dba_5ffactory',['dba_factory',['../dba__driver_8php.html#ac10e60f6e5b95bcf67bd82cb88f37947',1,'dba_driver.php']]], + ['dba_5ffactory',['dba_factory',['../dba__driver_8php.html#a5df8499634c47b30191f34069d7b98c0',1,'dba_driver.php']]], ['dba_5fmysql',['dba_mysql',['../classdba__mysql.html',1,'']]], ['dba_5fmysql_2ephp',['dba_mysql.php',['../dba__mysql_8php.html',1,'']]], ['dba_5fmysqli',['dba_mysqli',['../classdba__mysqli.html',1,'']]], ['dba_5fmysqli_2ephp',['dba_mysqli.php',['../dba__mysqli_8php.html',1,'']]], + ['dba_5fpostgres',['dba_postgres',['../classdba__postgres.html',1,'']]], + ['dba_5fpostgres_2ephp',['dba_postgres.php',['../dba__postgres_8php.html',1,'']]], ['dba_5ftimer',['dba_timer',['../boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4',1,'boot.php']]], ['dbesc',['dbesc',['../dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e',1,'dba_driver.php']]], ['dbesc_5farray',['dbesc_array',['../dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4',1,'dba_driver.php']]], ['dbesc_5farray_5fcb',['dbesc_array_cb',['../dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930',1,'dba_driver.php']]], + ['dbesc_5fidentifier',['dbesc_identifier',['../dba__driver_8php.html#aa051799567690a124a3b865bf902f58a',1,'dba_driver.php']]], + ['dbescbin',['dbescbin',['../dba__driver_8php.html#a2a38996670c2936b5769270c49c57593',1,'dba_driver.php']]], + ['dbescdate',['dbescdate',['../dba__driver_8php.html#a2c8a72ec73f39b17a167c90737693f78',1,'dba_driver.php']]], ['dbg',['dbg',['../classdba__driver.html#adcc1f8955120fec0708bce39202d0422',1,'dba_driver\dbg()'],['../dba__driver_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb',1,'dbg(): dba_driver.php']]], ['dbq',['dbq',['../dba__driver_8php.html#aa377074e70981e8c4e82ca0accd068ee',1,'dba_driver.php']]], + ['dbtype_5fmysql',['DBTYPE_MYSQL',['../boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f',1,'boot.php']]], + ['dbtype_5fpostgres',['DBTYPE_POSTGRES',['../boot_8php.html#a37ddabc112db443b4c67fbc0f708817e',1,'boot.php']]], + ['dbunescbin',['dbunescbin',['../dba__driver_8php.html#afaaa1a7eff9c1b65b3b8c464ae37640e',1,'dba_driver.php']]], ['decode_5ftags',['decode_tags',['../items_8php.html#a56b2a4abcadfac71175cd50555528cc3',1,'items.php']]], ['default_2ephp',['default.php',['../php_2default_8php.html',1,'']]], ['default_2ephp',['default.php',['../theme_2blogga_2php_2default_8php.html',1,'']]], @@ -92,8 +105,8 @@ var searchData= ['dir_5fsort_5flinks',['dir_sort_links',['../dir__fns_8php.html#ae56881d69bb6f8e828c9e35454386774',1,'dir_fns.php']]], ['dir_5ftagadelic',['dir_tagadelic',['../taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332',1,'taxonomy.php']]], ['dir_5ftagblock',['dir_tagblock',['../taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1',1,'taxonomy.php']]], - ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], ['directory_2ephp',['directory.php',['../include_2directory_8php.html',1,'']]], + ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], ['directory_5fcontent',['directory_content',['../mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44',1,'directory.php']]], ['directory_5ffallback_5fmaster',['DIRECTORY_FALLBACK_MASTER',['../boot_8php.html#abedd940e664017c61b48c6efa31d0cb8',1,'boot.php']]], ['directory_5finit',['directory_init',['../mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf',1,'directory.php']]], @@ -103,8 +116,6 @@ var searchData= ['directory_5fmode_5fstandalone',['DIRECTORY_MODE_STANDALONE',['../boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8',1,'boot.php']]], ['directory_5frealm',['DIRECTORY_REALM',['../boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd',1,'boot.php']]], ['directory_5frun',['directory_run',['../include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0',1,'directory.php']]], - ['dirprofile_2ephp',['dirprofile.php',['../dirprofile_8php.html',1,'']]], - ['dirprofile_5finit',['dirprofile_init',['../dirprofile_8php.html#a3e1d30d3d93863ff5615f2df4ac7f052',1,'dirprofile.php']]], ['dirsearch_2ephp',['dirsearch.php',['../dirsearch_8php.html',1,'']]], ['dirsearch_5fcontent',['dirsearch_content',['../dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c',1,'dirsearch.php']]], ['dirsearch_5finit',['dirsearch_init',['../dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752',1,'dirsearch.php']]], diff --git a/doc/html/search/all_65.js b/doc/html/search/all_65.js index c8412e9e0..7efea7c31 100644 --- a/doc/html/search/all_65.js +++ b/doc/html/search/all_65.js @@ -2,12 +2,15 @@ var searchData= [ ['editblock_2ephp',['editblock.php',['../editblock_8php.html',1,'']]], ['editblock_5fcontent',['editblock_content',['../editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6',1,'editblock.php']]], + ['editblock_5finit',['editblock_init',['../editblock_8php.html#ab7806bb42ae5e93f0330d7bd179d4b3e',1,'editblock.php']]], ['editlayout_2ephp',['editlayout.php',['../editlayout_8php.html',1,'']]], ['editlayout_5fcontent',['editlayout_content',['../editlayout_8php.html#aa877e4157a26b099de904164181dd386',1,'editlayout.php']]], + ['editlayout_5finit',['editlayout_init',['../editlayout_8php.html#a97c1e93d9e75ad8cd2c2f9a7f77341a7',1,'editlayout.php']]], ['editpost_2ephp',['editpost.php',['../editpost_8php.html',1,'']]], ['editpost_5fcontent',['editpost_content',['../editpost_8php.html#a34011690864d122680c802e9e748ccfb',1,'editpost.php']]], ['editwebpage_2ephp',['editwebpage.php',['../editwebpage_8php.html',1,'']]], ['editwebpage_5fcontent',['editwebpage_content',['../editwebpage_8php.html#a375e945255fad79a71036528f7480650',1,'editwebpage.php']]], + ['editwebpage_5finit',['editwebpage_init',['../editwebpage_8php.html#a94109f9c796fbe92508bf9574e35d19f',1,'editwebpage.php']]], ['else',['else',['../auth_8php.html#a6f60fb54f60cd36c2430d6615a7b4f3f',1,'else(): auth.php'],['../fpostit_8php.html#a501b5ca82f287509fc691c88524064c1',1,'else(): fpostit.php'],['../tpldebug_8php.html#afbc7aadb3f7ff1edf0aaaa326a42179c',1,'else(): tpldebug.php'],['../redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459',1,'else(): style.php']]], ['email_5fheader_5fencode',['email_header_encode',['../include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b',1,'network.php']]], ['email_5fsend',['email_send',['../include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0',1,'network.php']]], @@ -22,8 +25,10 @@ var searchData= ['enumerate_5fpermissions',['enumerate_permissions',['../items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67',1,'items.php']]], ['eol',['EOL',['../boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b',1,'boot.php']]], ['eot',['EOT',['../typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805',1,'typohelper.php']]], - ['escape',['escape',['../classdba__driver.html#afc95ffa103a3290581b537670cde5311',1,'dba_driver\escape()'],['../classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e',1,'dba_mysql\escape()'],['../classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64',1,'dba_mysqli\escape()']]], + ['escape',['escape',['../classdba__driver.html#afc95ffa103a3290581b537670cde5311',1,'dba_driver\escape()'],['../classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e',1,'dba_mysql\escape()'],['../classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64',1,'dba_mysqli\escape()'],['../classdba__postgres.html#a7108eaaae7cc2fb236212041afc9ac0f',1,'dba_postgres\escape()']]], + ['escape_5fidentifier',['escape_identifier',['../classdba__postgres.html#ab2e44e9f41d05e585afd873d18e8c127',1,'dba_postgres']]], ['escape_5ftags',['escape_tags',['../text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64',1,'text.php']]], + ['escapebin',['escapebin',['../classdba__driver.html#a7dbe8318587ff1694825042bf58f4fbd',1,'dba_driver\escapebin()'],['../classdba__postgres.html#a8d2c6d8c92fe6f074452876483dd17fc',1,'dba_postgres\escapebin()']]], ['ev_5fcompare',['ev_compare',['../event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850',1,'event.php']]], ['event_2ephp',['event.php',['../event_8php.html',1,'']]], ['event_5faddtocal',['event_addtocal',['../event_8php.html#ac9f206819186b65952ac1869f0da8c6e',1,'event.php']]], diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js index 40d52a6c9..75b5d2797 100644 --- a/doc/html/search/all_67.js +++ b/doc/html/search/all_67.js @@ -49,6 +49,7 @@ var searchData= ['get_5fgroups',['get_groups',['../classApp.html#a4659785d13e4bac0bed50dbb1b0d4299',1,'App']]], ['get_5fhostname',['get_hostname',['../classApp.html#a622eace13f8fc9f4b5672a68e2bc4396',1,'App']]], ['get_5fid',['get_id',['../classItem.html#ac0f27e58532612f6e7a54c8a621b9b92',1,'Item']]], + ['get_5finstall_5fscript',['get_install_script',['../classdba__driver.html#a8d6a79d39d7eaee5aea4e952c4529d48',1,'dba_driver']]], ['get_5fintltext_5ftemplate',['get_intltext_template',['../classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118',1,'FriendicaSmartyEngine\get_intltext_template()'],['../plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295',1,'get_intltext_template(): plugin.php']]], ['get_5fitem',['get_item',['../classRedmatrix_1_1Import_1_1Import.html#ae705dd1deb245b1d06baa73062330e43',1,'Redmatrix::Import::Import']]], ['get_5fitem_5fchildren',['get_item_children',['../conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67',1,'conversation.php']]], @@ -65,6 +66,7 @@ var searchData= ['get_5fmood_5fverbs',['get_mood_verbs',['../text_8php.html#a736db13a966b8abaf8c9198faa35911a',1,'text.php']]], ['get_5fmy_5faddress',['get_my_address',['../identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2',1,'identity.php']]], ['get_5fmy_5furl',['get_my_url',['../identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec',1,'identity.php']]], + ['get_5fnull_5fdate',['get_null_date',['../classdba__driver.html#a65a5c7b355ab5529a43049e160006426',1,'dba_driver']]], ['get_5fobserver',['get_observer',['../classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2',1,'App\get_observer()'],['../classConversation.html#ae3d4190142e12b57051f11f2911f77a0',1,'Conversation\get_observer()']]], ['get_5fobserver_5fhash',['get_observer_hash',['../boot_8php.html#a623e49c79943f3e7bdb770d021683cf7',1,'boot.php']]], ['get_5fonline_5fstatus',['get_online_status',['../identity_8php.html#a332df795f684788002f5a6424abacfd7',1,'identity.php']]], diff --git a/doc/html/search/all_69.js b/doc/html/search/all_69.js index 94963daa8..082e86f72 100644 --- a/doc/html/search/all_69.js +++ b/doc/html/search/all_69.js @@ -32,6 +32,7 @@ var searchData= ['insert_5fhook',['insert_hook',['../plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b',1,'plugin.php']]], ['install',['install',['../classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746',1,'dba_driver']]], ['install_5fplugin',['install_plugin',['../plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5',1,'plugin.php']]], + ['install_5fscript',['INSTALL_SCRIPT',['../classdba__driver.html#a98d8523dcedda316085b4d4f856b6583',1,'dba_driver\INSTALL_SCRIPT()'],['../classdba__postgres.html#a7267f91c3f87f600b30d7560de62dfd7',1,'dba_postgres\INSTALL_SCRIPT()']]], ['invite_2ephp',['invite.php',['../invite_8php.html',1,'']]], ['invite_5fcontent',['invite_content',['../invite_8php.html#a244385b28cfd021d308715f01158bfd9',1,'invite.php']]], ['invite_5fpost',['invite_post',['../invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5',1,'invite.php']]], diff --git a/doc/html/search/all_6c.js b/doc/html/search/all_6c.js index 3c3de04df..d55d22589 100644 --- a/doc/html/search/all_6c.js +++ b/doc/html/search/all_6c.js @@ -9,6 +9,7 @@ var searchData= ['layout_5fselect',['layout_select',['../text_8php.html#a3999a0b3e22e440f280ee791ce34d384',1,'text.php']]], ['layouts_2ephp',['layouts.php',['../layouts_8php.html',1,'']]], ['layouts_5fcontent',['layouts_content',['../layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50',1,'layouts.php']]], + ['layouts_5finit',['layouts_init',['../layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa',1,'layouts.php']]], ['ldelim',['ldelim',['../namespacefriendica-to-smarty-tpl.html#a0b4cf73d1a8d201a28d269eeb62a5d5c',1,'friendica-to-smarty-tpl']]], ['legal_5fwebbie',['legal_webbie',['../text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728',1,'text.php']]], ['like_2ephp',['like.php',['../like_8php.html',1,'']]], diff --git a/doc/html/search/all_6e.js b/doc/html/search/all_6e.js index 1cd1e0dd5..f9de281e1 100644 --- a/doc/html/search/all_6e.js +++ b/doc/html/search/all_6e.js @@ -89,5 +89,5 @@ var searchData= ['notify_5fwall',['NOTIFY_WALL',['../boot_8php.html#a505410c7edc5f5bb5fa227b98359793e',1,'boot.php']]], ['notred_2ephp',['notred.php',['../notred_8php.html',1,'']]], ['nuke_5fsession',['nuke_session',['../auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a',1,'auth.php']]], - ['null_5fdate',['NULL_DATE',['../boot_8php.html#a6cd1b4081630b2bf7be38836cd9f410c',1,'boot.php']]] + ['null_5fdate',['NULL_DATE',['../classdba__driver.html#afce39394c010ea589d99a21579b2c31e',1,'dba_driver\NULL_DATE()'],['../classdba__postgres.html#aeb404a85974d6c5df30c21650888000b',1,'dba_postgres\NULL_DATE()']]] ]; diff --git a/doc/html/search/all_6f.js b/doc/html/search/all_6f.js index 65f262de1..dfad733d0 100644 --- a/doc/html/search/all_6f.js +++ b/doc/html/search/all_6f.js @@ -30,6 +30,7 @@ var searchData= ['openid_5fcontent',['openid_content',['../openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43',1,'openid.php']]], ['opensearch_2ephp',['opensearch.php',['../opensearch_8php.html',1,'']]], ['opensearch_5finit',['opensearch_init',['../opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9',1,'opensearch.php']]], + ['optimize_5ftable',['optimize_table',['../classdba__driver.html#a77e59dcbeab30ca6000131d2e9ad4092',1,'dba_driver\optimize_table()'],['../classdba__postgres.html#a3de1ac375e98886dfc38fd0066e88f90',1,'dba_postgres\optimize_table()']]], ['orient',['orient',['../classphoto__driver.html#a4de5bac8daea8f291a33c80788019d0d',1,'photo_driver']]], ['os_5fmkdir',['os_mkdir',['../boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c',1,'boot.php']]], ['outf',['outf',['../namespacefriendica-to-smarty-tpl.html#a87182a9bab47640428bd0b2b9946bef9',1,'friendica-to-smarty-tpl']]], diff --git a/doc/html/search/all_71.js b/doc/html/search/all_71.js index c1c1f6ba7..be0700f6d 100644 --- a/doc/html/search/all_71.js +++ b/doc/html/search/all_71.js @@ -1,9 +1,10 @@ var searchData= [ - ['q',['q',['../classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555',1,'dba_driver\q()'],['../classdba__mysql.html#ac3fd60c278f400907322dac578754a99',1,'dba_mysql\q()'],['../classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec',1,'dba_mysqli\q()'],['../dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f',1,'q(): dba_driver.php']]], + ['q',['q',['../classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555',1,'dba_driver\q()'],['../classdba__mysql.html#ac3fd60c278f400907322dac578754a99',1,'dba_mysql\q()'],['../classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec',1,'dba_mysqli\q()'],['../classdba__postgres.html#a70352880231fba0b859f82cd5b290a9a',1,'dba_postgres\q()'],['../dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f',1,'q(): dba_driver.php']]], ['qp',['qp',['../text_8php.html#afc998d2796a6b2a08e96f7cc061e7221',1,'text.php']]], ['queue_2ephp',['queue.php',['../queue_8php.html',1,'']]], ['queue_5ffn_2ephp',['queue_fn.php',['../queue__fn_8php.html',1,'']]], ['queue_5frun',['queue_run',['../queue_8php.html#af8c93de86d866c3200174c8450a0f341',1,'queue.php']]], + ['quote_5finterval',['quote_interval',['../classdba__driver.html#ac9127e9c55fcc93bcfbb323b9b99b9d9',1,'dba_driver\quote_interval()'],['../classdba__postgres.html#a56f926f218155c88807e0e06f6817a72',1,'dba_postgres\quote_interval()']]], ['quotelevel',['quotelevel',['../html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0',1,'html2plain.php']]] ]; diff --git a/doc/html/search/all_75.js b/doc/html/search/all_75.js index 8ed7368d2..15e56d3ec 100644 --- a/doc/html/search/all_75.js +++ b/doc/html/search/all_75.js @@ -5,6 +5,7 @@ var searchData= ['unamp',['unamp',['../text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7',1,'text.php']]], ['undo_5fpost_5ftagging',['undo_post_tagging',['../text_8php.html#a740ad03e00459039a2c0992246c4e727',1,'text.php']]], ['unescape_5funderscores_5fin_5flinks',['unescape_underscores_in_links',['../bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747',1,'bb2diaspora.php']]], + ['unescapebin',['unescapebin',['../classdba__driver.html#ab43184239e1d6eb00a98319f4a3df155',1,'dba_driver\unescapebin()'],['../classdba__postgres.html#a677f850211975c9ab89602c67e2dcad9',1,'dba_postgres\unescapebin()']]], ['uninstall_5fplugin',['uninstall_plugin',['../plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76',1,'plugin.php']]], ['unload_5fplugin',['unload_plugin',['../plugin_8php.html#a90538627db68605aeb6db17a8ead6523',1,'plugin.php']]], ['unobscure',['unobscure',['../text_8php.html#a8264348059abd1d4d5bb521323d3b19a',1,'text.php']]], @@ -45,5 +46,7 @@ var searchData= ['user_5fdeny',['user_deny',['../account_8php.html#ac1653efba62493b9d87513e1b6c04c83',1,'account.php']]], ['user_5fremove',['user_remove',['../Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15',1,'Contact.php']]], ['userreadablesize',['userReadableSize',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a242ce69a2fe5a5fdf9c2b8d3954accfd',1,'RedMatrix::RedDAV::RedBrowser']]], + ['utc_5fnow',['UTC_NOW',['../classdba__driver.html#aa3325d982d4ee5d1114fd7e02a4356e8',1,'dba_driver\UTC_NOW()'],['../classdba__postgres.html#ace80a204e34b20b9907650399cce02a3',1,'dba_postgres\UTC_NOW()']]], + ['utcnow',['utcnow',['../classdba__driver.html#ad700712879719bee23752b8f424d97d0',1,'dba_driver']]], ['util',['util',['../namespaceutil.html',1,'']]] ]; diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js index 621b0aed7..897083582 100644 --- a/doc/html/search/all_77.js +++ b/doc/html/search/all_77.js @@ -9,6 +9,7 @@ var searchData= ['webfinger_5frfc7033',['webfinger_rfc7033',['../include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a',1,'network.php']]], ['webpages_2ephp',['webpages.php',['../webpages_8php.html',1,'']]], ['webpages_5fcontent',['webpages_content',['../webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d',1,'webpages.php']]], + ['webpages_5finit',['webpages_init',['../webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7',1,'webpages.php']]], ['wfinger_2ephp',['wfinger.php',['../wfinger_8php.html',1,'']]], ['wfinger_5finit',['wfinger_init',['../wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3',1,'wfinger.php']]], ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]], diff --git a/doc/html/search/all_78.js b/doc/html/search/all_78.js index 12730655a..11483478c 100644 --- a/doc/html/search/all_78.js +++ b/doc/html/search/all_78.js @@ -1,6 +1,6 @@ var searchData= [ - ['x',['x',['../boot_8php.html#a01353c9abebc3544ea080ac161729632',1,'boot.php']]], + ['x',['x',['../boot_8php.html#ae97836b0547953be182a2334c9c91d3c',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']]], @@ -9,6 +9,7 @@ var searchData= ['xchan_5fflags_5fhidden',['XCHAN_FLAGS_HIDDEN',['../boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2',1,'boot.php']]], ['xchan_5fflags_5fnormal',['XCHAN_FLAGS_NORMAL',['../boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6',1,'boot.php']]], ['xchan_5fflags_5forphan',['XCHAN_FLAGS_ORPHAN',['../boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f',1,'boot.php']]], + ['xchan_5fflags_5fpubforum',['XCHAN_FLAGS_PUBFORUM',['../boot_8php.html#a0209e605028a5bb492683951ab30d49d',1,'boot.php']]], ['xchan_5fflags_5fselfcensored',['XCHAN_FLAGS_SELFCENSORED',['../boot_8php.html#a5a681a672e007cdc22b43345d71f07c6',1,'boot.php']]], ['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']]], diff --git a/doc/html/search/classes_64.js b/doc/html/search/classes_64.js index c52174855..439607209 100644 --- a/doc/html/search/classes_64.js +++ b/doc/html/search/classes_64.js @@ -2,5 +2,6 @@ var searchData= [ ['dba_5fdriver',['dba_driver',['../classdba__driver.html',1,'']]], ['dba_5fmysql',['dba_mysql',['../classdba__mysql.html',1,'']]], - ['dba_5fmysqli',['dba_mysqli',['../classdba__mysqli.html',1,'']]] + ['dba_5fmysqli',['dba_mysqli',['../classdba__mysqli.html',1,'']]], + ['dba_5fpostgres',['dba_postgres',['../classdba__postgres.html',1,'']]] ]; diff --git a/doc/html/search/files_64.js b/doc/html/search/files_64.js index 9f149a278..56d04b982 100644 --- a/doc/html/search/files_64.js +++ b/doc/html/search/files_64.js @@ -9,6 +9,7 @@ var searchData= ['dba_5fdriver_2ephp',['dba_driver.php',['../dba__driver_8php.html',1,'']]], ['dba_5fmysql_2ephp',['dba_mysql.php',['../dba__mysql_8php.html',1,'']]], ['dba_5fmysqli_2ephp',['dba_mysqli.php',['../dba__mysqli_8php.html',1,'']]], + ['dba_5fpostgres_2ephp',['dba_postgres.php',['../dba__postgres_8php.html',1,'']]], ['default_2ephp',['default.php',['../theme_2blogga_2view_2theme_2blog_2default_8php.html',1,'']]], ['default_2ephp',['default.php',['../php_2default_8php.html',1,'']]], ['default_2ephp',['default.php',['../theme_2blogga_2php_2default_8php.html',1,'']]], @@ -18,9 +19,8 @@ var searchData= ['diaspora_2ephp',['diaspora.php',['../diaspora_8php.html',1,'']]], ['dimport_2ephp',['dimport.php',['../dimport_8php.html',1,'']]], ['dir_5ffns_2ephp',['dir_fns.php',['../dir__fns_8php.html',1,'']]], - ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], ['directory_2ephp',['directory.php',['../include_2directory_8php.html',1,'']]], - ['dirprofile_2ephp',['dirprofile.php',['../dirprofile_8php.html',1,'']]], + ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], ['dirsearch_2ephp',['dirsearch.php',['../dirsearch_8php.html',1,'']]], ['display_2ephp',['display.php',['../display_8php.html',1,'']]], ['docblox_5ferrorchecker_2ephp',['docblox_errorchecker.php',['../docblox__errorchecker_8php.html',1,'']]] diff --git a/doc/html/search/functions_62.js b/doc/html/search/functions_62.js index 34fc83be3..a3a830a4d 100644 --- a/doc/html/search/functions_62.js +++ b/doc/html/search/functions_62.js @@ -26,6 +26,7 @@ var searchData= ['block_5fcontent',['block_content',['../block_8php.html#a8a82a470acdfbc7a8e749509caeeea45',1,'block.php']]], ['block_5finit',['block_init',['../block_8php.html#a9b61c96044ed2a068f18c10370a78d5c',1,'block.php']]], ['blocks_5fcontent',['blocks_content',['../blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12',1,'blocks.php']]], + ['blocks_5finit',['blocks_init',['../blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9',1,'blocks.php']]], ['blog_5finit',['blog_init',['../blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php'],['../blogga_2view_2theme_2blog_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php']]], ['blog_5finstall',['blog_install',['../blogga_2view_2theme_2blog_2theme_8php.html#aae58cc837fe56473d9f3370abfe533ae',1,'theme.php']]], ['blog_5funinstall',['blog_uninstall',['../blogga_2view_2theme_2blog_2theme_8php.html#a3e77dbe111f330c64a1ff6c741cd515c',1,'theme.php']]], diff --git a/doc/html/search/functions_63.js b/doc/html/search/functions_63.js index 7b5abcc2f..6a5e70b0b 100644 --- a/doc/html/search/functions_63.js +++ b/doc/html/search/functions_63.js @@ -60,7 +60,7 @@ var searchData= ['cleardiv',['cleardiv',['../text_8php.html#afe18627c4983ee5f7c940a0992818cd5',1,'text.php']]], ['cli_5fstartup',['cli_startup',['../cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b',1,'cli_startup.php']]], ['cli_5fsuggest_5frun',['cli_suggest_run',['../cli__suggest_8php.html#a8f3a60fc96f4bec7d3837c4efc7725f2',1,'cli_suggest.php']]], - ['close',['close',['../classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975',1,'dba_driver\close()'],['../classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e',1,'dba_mysql\close()'],['../classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55',1,'dba_mysqli\close()']]], + ['close',['close',['../classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975',1,'dba_driver\close()'],['../classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e',1,'dba_mysql\close()'],['../classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55',1,'dba_mysqli\close()'],['../classdba__postgres.html#a731d8648b41b8a126f6b99bdd5414058',1,'dba_postgres\close()']]], ['cloud_5finit',['cloud_init',['../cloud_8php.html#ad2e96e917852f27dedfc263d37e13756',1,'cloud.php']]], ['collect',['collect',['../classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d',1,'ProtoDriver\collect()'],['../classZotDriver.html#af65febb26031eb7f39871b9e2a539797',1,'ZotDriver\collect()']]], ['collect_5fprivate',['collect_private',['../classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b',1,'ProtoDriver\collect_private()'],['../classZotDriver.html#a2e15ff09772f0608203dad1c98299394',1,'ZotDriver\collect_private()']]], @@ -82,7 +82,8 @@ var searchData= ['common_5finit',['common_init',['../common_8php.html#aca62f113655809f41f49042ce9b123c2',1,'common.php']]], ['compare_5fpermissions',['compare_permissions',['../items_8php.html#a0790a4550b829e85504af548623002ca',1,'items.php']]], ['completeurl',['completeurl',['../parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a',1,'parse_url.php']]], - ['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()']]], + ['concat',['concat',['../classdba__driver.html#ab9982f38a02f008b127a0f3ccc1e99f4',1,'dba_driver\concat()'],['../classdba__postgres.html#a7ea3f24ad260c1e21588f8b5af595caa',1,'dba_postgres\concat()']]], + ['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()'],['../classdba__postgres.html#ab36244320f5b71dba92d9318ccf3f34e',1,'dba_postgres\connect()']]], ['connect_5fcontent',['connect_content',['../connect_8php.html#a489f0a66c660de6ec4d6917b27674f07',1,'connect.php']]], ['connect_5finit',['connect_init',['../connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36',1,'connect.php']]], ['connect_5fpost',['connect_post',['../connect_8php.html#a417ec27afe33f21a929667a665e32ee2',1,'connect.php']]], diff --git a/doc/html/search/functions_64.js b/doc/html/search/functions_64.js index 1c6e9fc31..a331c9ee7 100644 --- a/doc/html/search/functions_64.js +++ b/doc/html/search/functions_64.js @@ -4,13 +4,22 @@ var searchData= ['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']]], + ['db_5fconcat',['db_concat',['../dba__driver_8php.html#a7c1b98a710ead27382c958ad3216c4ee',1,'dba_driver.php']]], + ['db_5fgetfunc',['db_getfunc',['../dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67',1,'dba_driver.php']]], + ['db_5foptimizetable',['db_optimizetable',['../dba__driver_8php.html#a75098bf1d59ea57f7ebae657a369137e',1,'dba_driver.php']]], + ['db_5fquoteinterval',['db_quoteinterval',['../dba__driver_8php.html#acec84a8fb75d78daf657cbe5df74e25a',1,'dba_driver.php']]], + ['db_5futcnow',['db_utcnow',['../dba__driver_8php.html#a30e9a643be804e905f5614a3279d2645',1,'dba_driver.php']]], + ['dba_5ffactory',['dba_factory',['../dba__driver_8php.html#a5df8499634c47b30191f34069d7b98c0',1,'dba_driver.php']]], ['dba_5ftimer',['dba_timer',['../boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4',1,'boot.php']]], ['dbesc',['dbesc',['../dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e',1,'dba_driver.php']]], ['dbesc_5farray',['dbesc_array',['../dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4',1,'dba_driver.php']]], ['dbesc_5farray_5fcb',['dbesc_array_cb',['../dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930',1,'dba_driver.php']]], + ['dbesc_5fidentifier',['dbesc_identifier',['../dba__driver_8php.html#aa051799567690a124a3b865bf902f58a',1,'dba_driver.php']]], + ['dbescbin',['dbescbin',['../dba__driver_8php.html#a2a38996670c2936b5769270c49c57593',1,'dba_driver.php']]], + ['dbescdate',['dbescdate',['../dba__driver_8php.html#a2c8a72ec73f39b17a167c90737693f78',1,'dba_driver.php']]], ['dbg',['dbg',['../classdba__driver.html#adcc1f8955120fec0708bce39202d0422',1,'dba_driver\dbg()'],['../dba__driver_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb',1,'dbg(): dba_driver.php']]], ['dbq',['dbq',['../dba__driver_8php.html#aa377074e70981e8c4e82ca0accd068ee',1,'dba_driver.php']]], + ['dbunescbin',['dbunescbin',['../dba__driver_8php.html#afaaa1a7eff9c1b65b3b8c464ae37640e',1,'dba_driver.php']]], ['decode_5ftags',['decode_tags',['../items_8php.html#a56b2a4abcadfac71175cd50555528cc3',1,'items.php']]], ['del_5fconfig',['del_config',['../include_2config_8php.html#a549910227348003efc3c05c9105c42da',1,'config.php']]], ['del_5fpconfig',['del_pconfig',['../include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941',1,'config.php']]], @@ -72,7 +81,6 @@ var searchData= ['directory_5fcontent',['directory_content',['../mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44',1,'directory.php']]], ['directory_5finit',['directory_init',['../mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf',1,'directory.php']]], ['directory_5frun',['directory_run',['../include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0',1,'directory.php']]], - ['dirprofile_5finit',['dirprofile_init',['../dirprofile_8php.html#a3e1d30d3d93863ff5615f2df4ac7f052',1,'dirprofile.php']]], ['dirsearch_5fcontent',['dirsearch_content',['../dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c',1,'dirsearch.php']]], ['dirsearch_5finit',['dirsearch_init',['../dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752',1,'dirsearch.php']]], ['discover',['discover',['../classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337',1,'ProtoDriver\discover()'],['../classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514',1,'ZotDriver\discover()']]], diff --git a/doc/html/search/functions_65.js b/doc/html/search/functions_65.js index fdeeb2099..e912fd337 100644 --- a/doc/html/search/functions_65.js +++ b/doc/html/search/functions_65.js @@ -1,9 +1,12 @@ var searchData= [ ['editblock_5fcontent',['editblock_content',['../editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6',1,'editblock.php']]], + ['editblock_5finit',['editblock_init',['../editblock_8php.html#ab7806bb42ae5e93f0330d7bd179d4b3e',1,'editblock.php']]], ['editlayout_5fcontent',['editlayout_content',['../editlayout_8php.html#aa877e4157a26b099de904164181dd386',1,'editlayout.php']]], + ['editlayout_5finit',['editlayout_init',['../editlayout_8php.html#a97c1e93d9e75ad8cd2c2f9a7f77341a7',1,'editlayout.php']]], ['editpost_5fcontent',['editpost_content',['../editpost_8php.html#a34011690864d122680c802e9e748ccfb',1,'editpost.php']]], ['editwebpage_5fcontent',['editwebpage_content',['../editwebpage_8php.html#a375e945255fad79a71036528f7480650',1,'editwebpage.php']]], + ['editwebpage_5finit',['editwebpage_init',['../editwebpage_8php.html#a94109f9c796fbe92508bf9574e35d19f',1,'editwebpage.php']]], ['email_5fheader_5fencode',['email_header_encode',['../include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b',1,'network.php']]], ['email_5fsend',['email_send',['../include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0',1,'network.php']]], ['encode_5fitem',['encode_item',['../items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86',1,'items.php']]], @@ -13,8 +16,10 @@ var searchData= ['encode_5fmail',['encode_mail',['../items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7',1,'items.php']]], ['encode_5frel_5flinks',['encode_rel_links',['../items_8php.html#aa723c0571e314a1853a24c5854b4f54f',1,'items.php']]], ['enumerate_5fpermissions',['enumerate_permissions',['../items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67',1,'items.php']]], - ['escape',['escape',['../classdba__driver.html#afc95ffa103a3290581b537670cde5311',1,'dba_driver\escape()'],['../classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e',1,'dba_mysql\escape()'],['../classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64',1,'dba_mysqli\escape()']]], + ['escape',['escape',['../classdba__driver.html#afc95ffa103a3290581b537670cde5311',1,'dba_driver\escape()'],['../classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e',1,'dba_mysql\escape()'],['../classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64',1,'dba_mysqli\escape()'],['../classdba__postgres.html#a7108eaaae7cc2fb236212041afc9ac0f',1,'dba_postgres\escape()']]], + ['escape_5fidentifier',['escape_identifier',['../classdba__postgres.html#ab2e44e9f41d05e585afd873d18e8c127',1,'dba_postgres']]], ['escape_5ftags',['escape_tags',['../text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64',1,'text.php']]], + ['escapebin',['escapebin',['../classdba__driver.html#a7dbe8318587ff1694825042bf58f4fbd',1,'dba_driver\escapebin()'],['../classdba__postgres.html#a8d2c6d8c92fe6f074452876483dd17fc',1,'dba_postgres\escapebin()']]], ['ev_5fcompare',['ev_compare',['../event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850',1,'event.php']]], ['event_5faddtocal',['event_addtocal',['../event_8php.html#ac9f206819186b65952ac1869f0da8c6e',1,'event.php']]], ['event_5fstore_5fevent',['event_store_event',['../event_8php.html#af5ac41e7ea3f7131088fe6333fd2846c',1,'event.php']]], diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js index 835416938..fb3c90c50 100644 --- a/doc/html/search/functions_67.js +++ b/doc/html/search/functions_67.js @@ -49,6 +49,7 @@ var searchData= ['get_5fgroups',['get_groups',['../classApp.html#a4659785d13e4bac0bed50dbb1b0d4299',1,'App']]], ['get_5fhostname',['get_hostname',['../classApp.html#a622eace13f8fc9f4b5672a68e2bc4396',1,'App']]], ['get_5fid',['get_id',['../classItem.html#ac0f27e58532612f6e7a54c8a621b9b92',1,'Item']]], + ['get_5finstall_5fscript',['get_install_script',['../classdba__driver.html#a8d6a79d39d7eaee5aea4e952c4529d48',1,'dba_driver']]], ['get_5fintltext_5ftemplate',['get_intltext_template',['../classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118',1,'FriendicaSmartyEngine\get_intltext_template()'],['../plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295',1,'get_intltext_template(): plugin.php']]], ['get_5fitem',['get_item',['../classRedmatrix_1_1Import_1_1Import.html#ae705dd1deb245b1d06baa73062330e43',1,'Redmatrix::Import::Import']]], ['get_5fitem_5fchildren',['get_item_children',['../conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67',1,'conversation.php']]], @@ -65,6 +66,7 @@ var searchData= ['get_5fmood_5fverbs',['get_mood_verbs',['../text_8php.html#a736db13a966b8abaf8c9198faa35911a',1,'text.php']]], ['get_5fmy_5faddress',['get_my_address',['../identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2',1,'identity.php']]], ['get_5fmy_5furl',['get_my_url',['../identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec',1,'identity.php']]], + ['get_5fnull_5fdate',['get_null_date',['../classdba__driver.html#a65a5c7b355ab5529a43049e160006426',1,'dba_driver']]], ['get_5fobserver',['get_observer',['../classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2',1,'App\get_observer()'],['../classConversation.html#ae3d4190142e12b57051f11f2911f77a0',1,'Conversation\get_observer()']]], ['get_5fobserver_5fhash',['get_observer_hash',['../boot_8php.html#a623e49c79943f3e7bdb770d021683cf7',1,'boot.php']]], ['get_5fonline_5fstatus',['get_online_status',['../identity_8php.html#a332df795f684788002f5a6424abacfd7',1,'identity.php']]], diff --git a/doc/html/search/functions_6c.js b/doc/html/search/functions_6c.js index bae096081..15d34398b 100644 --- a/doc/html/search/functions_6c.js +++ b/doc/html/search/functions_6c.js @@ -4,6 +4,7 @@ var searchData= ['lang_5fselector',['lang_selector',['../text_8php.html#a71f6952243d3fe1c5a8154f78027e29c',1,'text.php']]], ['layout_5fselect',['layout_select',['../text_8php.html#a3999a0b3e22e440f280ee791ce34d384',1,'text.php']]], ['layouts_5fcontent',['layouts_content',['../layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50',1,'layouts.php']]], + ['layouts_5finit',['layouts_init',['../layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa',1,'layouts.php']]], ['legal_5fwebbie',['legal_webbie',['../text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728',1,'text.php']]], ['like_5fcontent',['like_content',['../like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538',1,'like.php']]], ['like_5fpuller',['like_puller',['../conversation_8php.html#afe5b2f38d8b803edb0d7ec5fa2868db0',1,'conversation.php']]], diff --git a/doc/html/search/functions_6f.js b/doc/html/search/functions_6f.js index 4d843de13..6e1766c1d 100644 --- a/doc/html/search/functions_6f.js +++ b/doc/html/search/functions_6f.js @@ -20,6 +20,7 @@ var searchData= ['online_5finit',['online_init',['../online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7',1,'online.php']]], ['openid_5fcontent',['openid_content',['../openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43',1,'openid.php']]], ['opensearch_5finit',['opensearch_init',['../opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9',1,'opensearch.php']]], + ['optimize_5ftable',['optimize_table',['../classdba__driver.html#a77e59dcbeab30ca6000131d2e9ad4092',1,'dba_driver\optimize_table()'],['../classdba__postgres.html#a3de1ac375e98886dfc38fd0066e88f90',1,'dba_postgres\optimize_table()']]], ['orient',['orient',['../classphoto__driver.html#a4de5bac8daea8f291a33c80788019d0d',1,'photo_driver']]], ['os_5fmkdir',['os_mkdir',['../boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c',1,'boot.php']]] ]; diff --git a/doc/html/search/functions_71.js b/doc/html/search/functions_71.js index 11b357b31..ce23278cf 100644 --- a/doc/html/search/functions_71.js +++ b/doc/html/search/functions_71.js @@ -1,7 +1,8 @@ var searchData= [ - ['q',['q',['../classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555',1,'dba_driver\q()'],['../classdba__mysql.html#ac3fd60c278f400907322dac578754a99',1,'dba_mysql\q()'],['../classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec',1,'dba_mysqli\q()'],['../dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f',1,'q(): dba_driver.php']]], + ['q',['q',['../classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555',1,'dba_driver\q()'],['../classdba__mysql.html#ac3fd60c278f400907322dac578754a99',1,'dba_mysql\q()'],['../classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec',1,'dba_mysqli\q()'],['../classdba__postgres.html#a70352880231fba0b859f82cd5b290a9a',1,'dba_postgres\q()'],['../dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f',1,'q(): dba_driver.php']]], ['qp',['qp',['../text_8php.html#afc998d2796a6b2a08e96f7cc061e7221',1,'text.php']]], ['queue_5frun',['queue_run',['../queue_8php.html#af8c93de86d866c3200174c8450a0f341',1,'queue.php']]], + ['quote_5finterval',['quote_interval',['../classdba__driver.html#ac9127e9c55fcc93bcfbb323b9b99b9d9',1,'dba_driver\quote_interval()'],['../classdba__postgres.html#a56f926f218155c88807e0e06f6817a72',1,'dba_postgres\quote_interval()']]], ['quotelevel',['quotelevel',['../html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0',1,'html2plain.php']]] ]; diff --git a/doc/html/search/functions_75.js b/doc/html/search/functions_75.js index ed15e2e95..52f05caea 100644 --- a/doc/html/search/functions_75.js +++ b/doc/html/search/functions_75.js @@ -4,6 +4,7 @@ var searchData= ['unamp',['unamp',['../text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7',1,'text.php']]], ['undo_5fpost_5ftagging',['undo_post_tagging',['../text_8php.html#a740ad03e00459039a2c0992246c4e727',1,'text.php']]], ['unescape_5funderscores_5fin_5flinks',['unescape_underscores_in_links',['../bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747',1,'bb2diaspora.php']]], + ['unescapebin',['unescapebin',['../classdba__driver.html#ab43184239e1d6eb00a98319f4a3df155',1,'dba_driver\unescapebin()'],['../classdba__postgres.html#a677f850211975c9ab89602c67e2dcad9',1,'dba_postgres\unescapebin()']]], ['uninstall_5fplugin',['uninstall_plugin',['../plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76',1,'plugin.php']]], ['unload_5fplugin',['unload_plugin',['../plugin_8php.html#a90538627db68605aeb6db17a8ead6523',1,'plugin.php']]], ['unobscure',['unobscure',['../text_8php.html#a8264348059abd1d4d5bb521323d3b19a',1,'text.php']]], @@ -32,5 +33,6 @@ var searchData= ['user_5fapprove',['user_approve',['../account_8php.html#ad07be417ac7eda939768804106ddea3d',1,'account.php']]], ['user_5fdeny',['user_deny',['../account_8php.html#ac1653efba62493b9d87513e1b6c04c83',1,'account.php']]], ['user_5fremove',['user_remove',['../Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15',1,'Contact.php']]], - ['userreadablesize',['userReadableSize',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a242ce69a2fe5a5fdf9c2b8d3954accfd',1,'RedMatrix::RedDAV::RedBrowser']]] + ['userreadablesize',['userReadableSize',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a242ce69a2fe5a5fdf9c2b8d3954accfd',1,'RedMatrix::RedDAV::RedBrowser']]], + ['utcnow',['utcnow',['../classdba__driver.html#ad700712879719bee23752b8f424d97d0',1,'dba_driver']]] ]; diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js index 23a414c07..7d2339a7a 100644 --- a/doc/html/search/functions_77.js +++ b/doc/html/search/functions_77.js @@ -5,6 +5,7 @@ var searchData= ['webfinger_5fcontent',['webfinger_content',['../webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3',1,'webfinger.php']]], ['webfinger_5frfc7033',['webfinger_rfc7033',['../include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a',1,'network.php']]], ['webpages_5fcontent',['webpages_content',['../webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d',1,'webpages.php']]], + ['webpages_5finit',['webpages_init',['../webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7',1,'webpages.php']]], ['wfinger_5finit',['wfinger_init',['../wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3',1,'wfinger.php']]], ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]], ['widget_5faffinity',['widget_affinity',['../widgets_8php.html#add9b24d3304e529a7975e96122315554',1,'widgets.php']]], diff --git a/doc/html/search/functions_78.js b/doc/html/search/functions_78.js index 78d52f21a..80f9b5f99 100644 --- a/doc/html/search/functions_78.js +++ b/doc/html/search/functions_78.js @@ -1,6 +1,6 @@ var searchData= [ - ['x',['x',['../boot_8php.html#a01353c9abebc3544ea080ac161729632',1,'boot.php']]], + ['x',['x',['../boot_8php.html#ae97836b0547953be182a2334c9c91d3c',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']]], diff --git a/doc/html/search/variables_24.js b/doc/html/search/variables_24.js index 364451b79..f01fe1c9d 100644 --- a/doc/html/search/variables_24.js +++ b/doc/html/search/variables_24.js @@ -13,8 +13,6 @@ var searchData= ['_24baseurl',['$baseurl',['../classApp.html#ad5175536561021548ae8188e24c7b80c',1,'App']]], ['_24bodyclass',['$bodyclass',['../theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php'],['../theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php']]], ['_24browser',['$browser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24cached_5fprofile_5fimage',['$cached_profile_image',['../classApp.html#abe0e4fa91097f7a6588e1213a834121c',1,'App']]], - ['_24cached_5fprofile_5fpicdate',['$cached_profile_picdate',['../classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e',1,'App']]], ['_24called_5fapi',['$called_api',['../include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d',1,'api.php']]], ['_24category',['$category',['../classApp.html#a5cfc098c061b7d765add58fd2ca97445',1,'App']]], ['_24channel',['$channel',['../classApp.html#a050b0696118da47e8b30859ad1a2c149',1,'App\$channel()'],['../classItem.html#acc32426c0f465391be8a99ad810c7b8e',1,'Item\$channel()'],['../php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864',1,'$channel(): theme_init.php'],['../theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864',1,'$channel(): theme_init.php']]], @@ -35,11 +33,9 @@ var searchData= ['_24conversation',['$conversation',['../classItem.html#a007424e3e3171dcfb4312a02161da6cd',1,'Item']]], ['_24credentials',['$credentials',['../classRedmatrix_1_1Import_1_1Import.html#afd251e6e5a18516bac4d1a40435602f1',1,'Redmatrix::Import::Import']]], ['_24css_5fsources',['$css_sources',['../classApp.html#a6f55d087e1ff4710132c1b0863faa2ee',1,'App']]], - ['_24curl_5fcode',['$curl_code',['../classApp.html#a256360c9184fed6d7556e0bc0a835d7f',1,'App']]], - ['_24curl_5fheaders',['$curl_headers',['../classApp.html#af5007c42a693afd9c4899c243b2e1363',1,'App']]], ['_24d',['$d',['../classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38',1,'Template']]], ['_24data',['$data',['../classApp.html#a0ce85be198e46570366cb3344f3c55b8',1,'App\$data()'],['../classItem.html#aec24e233f9098f902b1e57e60dcb2019',1,'Item\$data()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a235700e2dfbe21dc41613d36e30e8acc',1,'RedMatrix\RedDAV\RedFile\$data()']]], - ['_24db',['$db',['../classApp.html#a330410a288f3393d53772f5e98f857ea',1,'App\$db()'],['../classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6',1,'dba_driver\$db()']]], + ['_24db',['$db',['../classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6',1,'dba_driver']]], ['_24debug',['$debug',['../classdba__driver.html#af48e2afeded5285766bf92e22123ed03',1,'dba_driver\$debug()'],['../classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a',1,'Template\$debug()']]], ['_24dir',['$dir',['../docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62',1,'docblox_errorchecker.php']]], ['_24directory_5ffallback_5fservers',['$DIRECTORY_FALLBACK_SERVERS',['../boot_8php.html#a107d53f96acf5319905a34b1870db09a',1,'boot.php']]], @@ -71,6 +67,7 @@ var searchData= ['_24install',['$install',['../classApp.html#a576ecb1c5b4a283221e6f2f0ec248251',1,'App']]], ['_24install_5fwizard_5fpass',['$install_wizard_pass',['../setup_8php.html#addb24714bc2542aa4f4215e98fe48432',1,'setup.php']]], ['_24interactive',['$interactive',['../classApp.html#a4c7cfc62d39508086cf300dc2e39c4df',1,'App']]], + ['_24is_5fsys',['$is_sys',['../classApp.html#a1f60d19d47021629faac7a0a6d917e94',1,'App']]], ['_24itemfloat',['$itemfloat',['../minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b',1,'minimalisticdarkness.php']]], ['_24itemlist',['$itemlist',['../classRedmatrix_1_1Import_1_1Import.html#a2f69f16ecb7de1fb1daffbc38e68c9f1',1,'Redmatrix::Import::Import']]], ['_24items',['$items',['../classRedmatrix_1_1Import_1_1Import.html#a31d73d48e1aa93319159c692d0197a3a',1,'Redmatrix::Import::Import']]], @@ -156,7 +153,6 @@ var searchData= ['_24videowidth',['$videowidth',['../classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8',1,'App']]], ['_24visiting',['$visiting',['../classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8',1,'Item']]], ['_24wall_5fto_5fwall',['$wall_to_wall',['../classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189',1,'Item']]], - ['_24widgetlist',['$widgetlist',['../classApp.html#a4833bee2eae4ad1691a04fa19e11a766',1,'App']]], ['_24widgets',['$widgets',['../classApp.html#aa5a87c46ab3fee21362c466bf78042ef',1,'App']]], ['_24width',['$width',['../classphoto__driver.html#a3e4215890f4a4894bf3799a7d2e0c0b1',1,'photo_driver\$width()'],['../minimalisticdarkness_8php.html#a5795120b4b324bc4ca83f1e6fdce7d57',1,'$width(): minimalisticdarkness.php']]], ['_24writable',['$writable',['../classConversation.html#ae81221251307e315f566a11f921ce0a9',1,'Conversation']]], diff --git a/doc/html/search/variables_64.js b/doc/html/search/variables_64.js index ea1a85e2a..172029abf 100644 --- a/doc/html/search/variables_64.js +++ b/doc/html/search/variables_64.js @@ -1,6 +1,8 @@ var searchData= [ ['db_5fupdate_5fversion',['DB_UPDATE_VERSION',['../boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03',1,'boot.php']]], + ['dbtype_5fmysql',['DBTYPE_MYSQL',['../boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f',1,'boot.php']]], + ['dbtype_5fpostgres',['DBTYPE_POSTGRES',['../boot_8php.html#a37ddabc112db443b4c67fbc0f708817e',1,'boot.php']]], ['default_5fdb_5fengine',['DEFAULT_DB_ENGINE',['../boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d',1,'boot.php']]], ['directory_5ffallback_5fmaster',['DIRECTORY_FALLBACK_MASTER',['../boot_8php.html#abedd940e664017c61b48c6efa31d0cb8',1,'boot.php']]], ['directory_5fmode_5fnormal',['DIRECTORY_MODE_NORMAL',['../boot_8php.html#ab7d65a7e7417825a4db62906bb600729',1,'boot.php']]], diff --git a/doc/html/search/variables_69.js b/doc/html/search/variables_69.js index 5b64986c8..fb77c49eb 100644 --- a/doc/html/search/variables_69.js +++ b/doc/html/search/variables_69.js @@ -1,6 +1,7 @@ var searchData= [ ['if',['if',['../php2po_8php.html#a45b05625748f412ec97afcd61cf7980b',1,'if(): php2po.php'],['../php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): default.php'],['../full_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): full.php'],['../redable_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): redable.php'],['../apw_2php_2style_8php.html#a2f71e817b8fac88ce7f0ec5c0fb88b8d',1,'if(): style.php'],['../theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): default.php']]], + ['install_5fscript',['INSTALL_SCRIPT',['../classdba__driver.html#a98d8523dcedda316085b4d4f856b6583',1,'dba_driver\INSTALL_SCRIPT()'],['../classdba__postgres.html#a7267f91c3f87f600b30d7560de62dfd7',1,'dba_postgres\INSTALL_SCRIPT()']]], ['item_5fblocked',['ITEM_BLOCKED',['../boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f',1,'boot.php']]], ['item_5fbug',['ITEM_BUG',['../boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34',1,'boot.php']]], ['item_5fbuildblock',['ITEM_BUILDBLOCK',['../boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf',1,'boot.php']]], diff --git a/doc/html/search/variables_6e.js b/doc/html/search/variables_6e.js index 303b5c11f..0045afbae 100644 --- a/doc/html/search/variables_6e.js +++ b/doc/html/search/variables_6e.js @@ -43,5 +43,5 @@ var searchData= ['notify_5ftagself',['NOTIFY_TAGSELF',['../boot_8php.html#ab724491497ab2618b23a01d5da60aec0',1,'boot.php']]], ['notify_5ftagshare',['NOTIFY_TAGSHARE',['../boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461',1,'boot.php']]], ['notify_5fwall',['NOTIFY_WALL',['../boot_8php.html#a505410c7edc5f5bb5fa227b98359793e',1,'boot.php']]], - ['null_5fdate',['NULL_DATE',['../boot_8php.html#a6cd1b4081630b2bf7be38836cd9f410c',1,'boot.php']]] + ['null_5fdate',['NULL_DATE',['../classdba__driver.html#afce39394c010ea589d99a21579b2c31e',1,'dba_driver\NULL_DATE()'],['../classdba__postgres.html#aeb404a85974d6c5df30c21650888000b',1,'dba_postgres\NULL_DATE()']]] ]; diff --git a/doc/html/search/variables_75.js b/doc/html/search/variables_75.js index 3ba76224d..0cf257ad6 100644 --- a/doc/html/search/variables_75.js +++ b/doc/html/search/variables_75.js @@ -4,5 +4,6 @@ var searchData= ['update_5fflags_5fdeleted',['UPDATE_FLAGS_DELETED',['../boot_8php.html#aea392cb26ed617f3a8cde648385b5df0',1,'boot.php']]], ['update_5fflags_5fforced',['UPDATE_FLAGS_FORCED',['../boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d',1,'boot.php']]], ['update_5fflags_5fupdated',['UPDATE_FLAGS_UPDATED',['../boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0',1,'boot.php']]], - ['update_5fsuccess',['UPDATE_SUCCESS',['../boot_8php.html#ac86615ddc0763a00f5311c90e991730c',1,'boot.php']]] + ['update_5fsuccess',['UPDATE_SUCCESS',['../boot_8php.html#ac86615ddc0763a00f5311c90e991730c',1,'boot.php']]], + ['utc_5fnow',['UTC_NOW',['../classdba__driver.html#aa3325d982d4ee5d1114fd7e02a4356e8',1,'dba_driver\UTC_NOW()'],['../classdba__postgres.html#ace80a204e34b20b9907650399cce02a3',1,'dba_postgres\UTC_NOW()']]] ]; diff --git a/doc/html/search/variables_78.js b/doc/html/search/variables_78.js index 75be51da5..312bf2391 100644 --- a/doc/html/search/variables_78.js +++ b/doc/html/search/variables_78.js @@ -5,6 +5,7 @@ var searchData= ['xchan_5fflags_5fhidden',['XCHAN_FLAGS_HIDDEN',['../boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2',1,'boot.php']]], ['xchan_5fflags_5fnormal',['XCHAN_FLAGS_NORMAL',['../boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6',1,'boot.php']]], ['xchan_5fflags_5forphan',['XCHAN_FLAGS_ORPHAN',['../boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f',1,'boot.php']]], + ['xchan_5fflags_5fpubforum',['XCHAN_FLAGS_PUBFORUM',['../boot_8php.html#a0209e605028a5bb492683951ab30d49d',1,'boot.php']]], ['xchan_5fflags_5fselfcensored',['XCHAN_FLAGS_SELFCENSORED',['../boot_8php.html#a5a681a672e007cdc22b43345d71f07c6',1,'boot.php']]], ['xchan_5fflags_5fsystem',['XCHAN_FLAGS_SYSTEM',['../boot_8php.html#afef254290febac854c85fc698d9483a6',1,'boot.php']]] ]; diff --git a/doc/html/setup_8php.html b/doc/html/setup_8php.html index 3537830f1..8c57c8058 100644 --- a/doc/html/setup_8php.html +++ b/doc/html/setup_8php.html @@ -348,8 +348,6 @@ Variables
      string$filepath to a directory
      -

      Referenced by setup_post().

      -
      diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index 25a8ad3d5..2f7400c3b 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -181,7 +181,7 @@ Functions    searchbox ($s, $id='search-box', $url='/search', $save=false)   - valid_email ($x) + valid_email ($x)    linkify ($s)   @@ -197,7 +197,7 @@ Functions    smile_unshield ($m)   - preg_heart ($x) + preg_heart ($x)    day_translate ($s)   @@ -561,7 +561,7 @@ Variables @@ -700,7 +700,7 @@ Variables
      Returns
      string
      -

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

      +

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

      @@ -1103,7 +1103,7 @@ Variables @@ -1311,7 +1311,7 @@ Variables

      Function: linkify

      Replace naked text hyperlink with HTML formatted hyperlink

      -

      Referenced by advanced_profile(), dirprofile_init(), and profile_activity().

      +

      Referenced by advanced_profile(), directory_content(), profile_activity(), and profile_sidebar().

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

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

      +

      Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), 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(), 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/theme_2mytheme_2php_2default_8php.html b/doc/html/theme_2mytheme_2php_2default_8php.html index e3ebc868e..ea01d8615 100644 --- a/doc/html/theme_2mytheme_2php_2default_8php.html +++ b/doc/html/theme_2mytheme_2php_2default_8php.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('theme_2mytheme_2php_2default_8php.html - +

      Variables

       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       

      Variable Documentation

      @@ -121,7 +121,7 @@ Variables
      - +
      if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($pageif(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
      diff --git a/doc/html/todo.html b/doc/html/todo.html index 375fff1d9..f09357862 100644 --- a/doc/html/todo.html +++ b/doc/html/todo.html @@ -102,21 +102,23 @@ $(document).ready(function(){initNavTree('todo.html','');});
      -
      File config.php
      +
      File config.php
      There are a few places in the code (such as the admin panel) where boolean configurations need to be fixed as of 10/08/2011.
      -
      Member RedChannelList (&$auth)
      +
      Member get_custom_nav (&$a, $navname)
      +
      not fully implemented yet
      +
      Member RedChannelList (&$auth)
      Is there any reason why this is not inside RedDirectory class? function name looks like a class name, should we rename it?
      -
      Member RedCollectionData ($file, &$auth)
      +
      Member RedCollectionData ($file, &$auth)
      Is there any reason why this is not inside RedDirectory class? Seems only to be used there and we could simplify it a bit there. function name looks like a class name, should we rename it?
      -
      File reddav.php
      +
      File reddav.php
      split up the classes into own files.
      -
      Member RedMatrix::__construct (&$auth)
      +
      Member RedMatrix::__construct (&$auth)
      disable enablePost by default and only activate if permissions grant edit rights.
      -
      Member RedMatrix::set_writeable ()
      +
      Member RedMatrix::set_writeable ()
      Maybe this whole way of doing this can be solved with some $server->subscribeEvent().
      -
      Member RedMatrix::getDir ()
      +
      Member RedMatrix::getDir ()
      add description of what this function does.
      -
      Member RedMatrix::setName ($name)
      +
      Member RedMatrix::setName ($name)
      handle duplicate directory name
      diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index 3d285d710..c9190a281 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_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().

      +

      Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), advanced_profile(), allowed_email(), allowed_url(), alt_pager(), api_account_verify_credentials(), api_albums(), api_apply_template(), api_call(), api_content(), api_direct_messages_all(), api_direct_messages_box(), api_direct_messages_conversation(), api_direct_messages_inbox(), api_direct_messages_new(), api_direct_messages_sentbox(), api_favorites(), api_followers_ids(), api_format_as(), api_format_items(), api_friends_ids(), api_get_user(), api_item_get_user(), api_login(), api_photos(), api_post(), api_rss_extra(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_followers(), api_statuses_friends(), api_statuses_home_timeline(), api_statuses_mediap(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_statusnet_config(), api_users_show(), app_name_compare(), appman_content(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), block_content(), block_init(), blocks_content(), blocks_init(), 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(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), ev_compare(), event_store_item(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_init(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), hivenet_init(), home_content(), home_init(), hostxrd_init(), impel_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), layouts_init(), like_content(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_pdl(), load_translation_table(), load_xconfig(), locs_content(), locs_post(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), p_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), regver_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), search_ac_init(), search_content(), search_init(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_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(), webpages_init(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_item(), widget_mailmenu(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

      diff --git a/doc/html/typohelper_8php.html b/doc/html/typohelper_8php.html index 8ff068709..775f1fde8 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(), dba_mysql\escape(), dba_mysqli\escape(), dba_postgres\escape(), dba_postgres\escape_identifier(), dba_postgres\escapebin(), filter_insecure(), head_get_css(), head_get_js(), head_get_main_js(), item_store_update(), list_post_dates(), load_database(), photos_album_get_db_idstr(), photos_post(), posted_dates(), relative_date(), stream_perms_api_uids(), stream_perms_xchans(), thing_init(), dba_postgres\unescapebin(), and xmlify().

      diff --git a/doc/html/webpages_8php.html b/doc/html/webpages_8php.html index 303ce4718..f82e10ed4 100644 --- a/doc/html/webpages_8php.html +++ b/doc/html/webpages_8php.html @@ -112,6 +112,8 @@ $(document).ready(function(){initNavTree('webpages_8php.html','');}); + +

      Functions

       webpages_init (&$a)
       
       webpages_content (&$a)
       
      @@ -130,6 +132,22 @@ Functions
      +
      + + +
      +
      + + + + + + + + +
      webpages_init ($a)
      +
      +
      diff --git a/doc/html/webpages_8php.js b/doc/html/webpages_8php.js index 8e145305c..961f9a5e8 100644 --- a/doc/html/webpages_8php.js +++ b/doc/html/webpages_8php.js @@ -1,4 +1,5 @@ var webpages_8php = [ - [ "webpages_content", "webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d", null ] + [ "webpages_content", "webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d", null ], + [ "webpages_init", "webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7", null ] ]; \ No newline at end of file diff --git a/doc/html/zot_8php.html b/doc/html/zot_8php.html index d570d5a79..9d79e4f17 100644 --- a/doc/html/zot_8php.html +++ b/doc/html/zot_8php.html @@ -174,7 +174,7 @@ Functions    get_rpost_path ($observer)   - import_author_zot ($x) + import_author_zot ($x)    zot_process_message_request ($data)   From f299922df3fe1bdb55feca0e20ae3111ab3317b9 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 15 Nov 2014 14:03:41 -0800 Subject: [PATCH 111/176] minor changes to support forum mode --- include/ItemObject.php | 24 +- include/conversation.php | 4 +- mod/wall_upload.php | 4 - util/messages.po | 8654 +++++++++++++++++++------------------- version.inc | 2 +- 5 files changed, 4342 insertions(+), 4346 deletions(-) diff --git a/include/ItemObject.php b/include/ItemObject.php index 90c036def..9e694b8ac 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -64,8 +64,6 @@ class Item extends BaseObject { public function get_template_data($alike, $dlike, $thread_level=1) { - $t1 = dba_timer(); - $result = array(); $a = $this->get_app(); @@ -228,15 +226,12 @@ class Item extends BaseObject { if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0) $indent .= ' shiny'; - $t2 = dba_timer(); - localize_item($item); - $t3 = dba_timer(); - $body = prepare_body($item,true); - $t4 = dba_timer(); + $comment_count_txt = sprintf( tt('%d comment','%d comments',$total_children),$total_children ); + $children = $this->get_children(); $tmp_item = array( 'template' => $this->get_template(), @@ -292,6 +287,8 @@ class Item extends BaseObject { 'drop' => $drop, 'multidrop' => ((feature_enabled($conv->get_profile_owner(),'multi_delete')) ? $multidrop : ''), // end toolbar buttons + 'comment_count' => $total_children, + 'comment_count_txt' => $comment_count_txt, 'like_count' => $like_count, 'like_list' => $like_list, 'like_list_part' => $like_list_part, @@ -311,15 +308,12 @@ class Item extends BaseObject { 'thread_level' => $thread_level ); - $t5 = dba_timer(); - $arr = array('item' => $item, 'output' => $tmp_item); call_hooks('display_item', $arr); $result = $arr['output']; $result['children'] = array(); - $children = $this->get_children(); $nb_children = count($children); if($nb_children > 0) { foreach($children as $child) { @@ -328,7 +322,7 @@ class Item extends BaseObject { // Collapse if(($nb_children > 2) || ($thread_level > 1)) { $result['children'][0]['comment_firstcollapsed'] = true; - $result['children'][0]['num_comments'] = sprintf( tt('%d comment','%d comments',$total_children),$total_children ); + $result['children'][0]['num_comments'] = $comment_count_txt; $result['children'][0]['hide_text'] = t('[+] show all'); if($thread_level > 1) { $result['children'][$nb_children - 1]['comment_lastcollapsed'] = true; @@ -350,14 +344,6 @@ class Item extends BaseObject { $result['flatten'] = true; $result['threaded'] = false; } - $t6 = dba_timer(); - -// profiler($t1,$t2,'t2'); -// profiler($t2,$t3,'t3'); -// profiler($t3,$t4,'t4'); -// profiler($t4,$t5,'t5'); -// profiler($t5,$t6,'t6'); -// profiler($t1,$t6,'item total'); return $result; } diff --git a/include/conversation.php b/include/conversation.php index c2258c20a..af8780549 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -853,8 +853,8 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ profiler($t3,$t4,'conversation template'); } - if($page_mode === 'preview') - logger('preview: ' . $o); +// if($page_mode === 'preview') +// logger('preview: ' . $o, LOGGER_DATA); return $o; diff --git a/mod/wall_upload.php b/mod/wall_upload.php index f83f4f7cf..97840a180 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -43,10 +43,6 @@ function wall_upload_post(&$a) { killme(); } - $m = $ret['body']; - - - if($using_api) return("\n\n" . $ret['body'] . "\n\n"); else diff --git a/util/messages.po b/util/messages.po index 892817b74..0ebff50f2 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-11-07.852\n" +"Project-Id-Version: 2014-11-14.859\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-07 00:04-0800\n" +"POT-Creation-Date: 2014-11-14 00:04-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,288 +17,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../include/dba/dba_driver.php:50 +#: ../../include/dba/dba_driver.php:132 #, php-format 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:652 +#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 +#: ../../mod/photos.php:91 ../../mod/photos.php:654 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 #: ../../mod/profile_photo.php:423 msgid "Profile Photos" msgstr "" -#: ../../include/apps.php:126 -msgid "Site Admin" -msgstr "" - -#: ../../include/apps.php:127 ../../include/conversation.php:1572 -#: ../../include/nav.php:117 -msgid "Bookmarks" -msgstr "" - -#: ../../include/apps.php:128 -msgid "Address Book" -msgstr "" - -#: ../../include/apps.php:129 ../../include/nav.php:125 ../../boot.php:1513 -msgid "Login" -msgstr "" - -#: ../../include/apps.php:130 ../../include/nav.php:216 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "" - -#: ../../include/apps.php:131 ../../include/nav.php:190 -msgid "Matrix" -msgstr "" - -#: ../../include/apps.php:132 ../../include/widgets.php:548 -#: ../../include/nav.php:218 ../../mod/admin.php:953 ../../mod/admin.php:1158 -msgid "Settings" -msgstr "" - -#: ../../include/apps.php:133 ../../include/conversation.php:1546 -#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "" - -#: ../../include/apps.php:134 ../../include/conversation.php:1583 -#: ../../include/nav.php:121 ../../mod/webpages.php:129 -msgid "Webpages" -msgstr "" - -#: ../../include/apps.php:135 ../../include/nav.php:193 -msgid "Channel Home" -msgstr "" - -#: ../../include/apps.php:136 ../../include/identity.php:1120 -#: ../../include/identity.php:1238 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "" - -#: ../../include/apps.php:137 ../../include/conversation.php:1537 -#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "" - -#: ../../include/apps.php:138 ../../include/nav.php:212 -#: ../../mod/events.php:431 -msgid "Events" -msgstr "" - -#: ../../include/apps.php:139 ../../include/nav.php:176 -#: ../../mod/directory.php:226 -msgid "Directory" -msgstr "" - -#: ../../include/apps.php:140 ../../include/nav.php:168 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" -msgstr "" - -#: ../../include/apps.php:141 ../../include/nav.php:204 -msgid "Mail" -msgstr "" - -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" -msgstr "" - -#: ../../include/apps.php:143 ../../include/conversation.php:951 -msgid "Poke" -msgstr "" - -#: ../../include/apps.php:144 ../../include/nav.php:111 -msgid "Chat" -msgstr "" - -#: ../../include/apps.php:145 ../../include/text.php:822 -#: ../../include/text.php:834 ../../include/nav.php:173 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "" - -#: ../../include/apps.php:146 -msgid "Probe" -msgstr "" - -#: ../../include/apps.php:147 -msgid "Suggest" -msgstr "" - -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "" - -#: ../../include/apps.php:149 -msgid "Invite" -msgstr "" - -#: ../../include/apps.php:150 -msgid "Features" -msgstr "" - -#: ../../include/apps.php:151 -msgid "Language" -msgstr "" - -#: ../../include/apps.php:152 -msgid "Post" -msgstr "" - -#: ../../include/apps.php:153 -msgid "Profile Photo" -msgstr "" - -#: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:575 -msgid "Update" -msgstr "" - -#: ../../include/apps.php:242 -msgid "Install" -msgstr "" - -#: ../../include/apps.php:247 -msgid "Purchase" -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: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 -#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 -#: ../../mod/thing.php:233 ../../mod/layouts.php:121 ../../mod/menu.php:59 -msgid "Edit" -msgstr "" - -#: ../../include/apps.php:250 ../../include/conversation.php:638 -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/ItemObject.php:120 -#: ../../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:711 ../../mod/photos.php:1128 -#: ../../mod/connedit.php:512 -msgid "Unknown" -msgstr "" - -#: ../../include/attach.php:116 ../../include/attach.php:163 -#: ../../include/attach.php:226 ../../include/attach.php:240 -#: ../../include/attach.php:280 ../../include/attach.php:294 -#: ../../include/attach.php:318 ../../include/attach.php:511 -#: ../../include/attach.php:584 ../../include/chat.php:116 -#: ../../include/items.php:4005 ../../include/photos.php:15 -#: ../../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: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 -#: ../../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: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:390 -msgid "Permission denied." -msgstr "" - -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:589 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:605 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:629 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:680 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:684 -msgid "database storage failed." -msgstr "" - -#: ../../include/conversation.php:120 ../../include/text.php:1743 -#: ../../include/diaspora.php:1923 ../../mod/subthread.php:72 +#: ../../include/conversation.php:120 ../../include/diaspora.php:1923 +#: ../../include/text.php:1747 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:298 msgid "photo" msgstr "" -#: ../../include/conversation.php:123 ../../include/text.php:1746 +#: ../../include/conversation.php:123 ../../include/text.php:1750 #: ../../mod/tagger.php:49 msgid "event" msgstr "" @@ -307,13 +44,13 @@ msgstr "" msgid "channel" msgstr "" -#: ../../include/conversation.php:148 ../../include/text.php:1749 -#: ../../include/diaspora.php:1923 ../../mod/subthread.php:72 +#: ../../include/conversation.php:148 ../../include/diaspora.php:1923 +#: ../../include/text.php:1753 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:298 msgid "status" msgstr "" -#: ../../include/conversation.php:150 ../../include/text.php:1751 +#: ../../include/conversation.php:150 ../../include/text.php:1755 #: ../../mod/tagger.php:55 msgid "comment" msgstr "" @@ -339,7 +76,7 @@ msgstr "" msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:243 ../../include/text.php:901 +#: ../../include/conversation.php:243 ../../include/text.php:905 msgid "poked" msgstr "" @@ -353,6 +90,14 @@ msgstr "" msgid "Select" msgstr "" +#: ../../include/conversation.php:638 ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/apps.php:250 ../../include/ItemObject.php:120 +#: ../../mod/photos.php:1069 ../../mod/connedit.php:476 +#: ../../mod/thing.php:234 ../../mod/settings.php:612 ../../mod/group.php:176 +#: ../../mod/admin.php:730 ../../mod/admin.php:861 +msgid "Delete" +msgstr "" + #: ../../include/conversation.php:645 ../../include/ItemObject.php:89 msgid "Private Message" msgstr "" @@ -398,9 +143,9 @@ msgid "View in context" msgstr "" #: ../../include/conversation.php:719 ../../include/conversation.php:1153 -#: ../../include/ItemObject.php:310 ../../mod/photos.php:974 -#: ../../mod/editblock.php:120 ../../mod/editlayout.php:115 -#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 +#: ../../include/ItemObject.php:310 ../../mod/photos.php:977 +#: ../../mod/editblock.php:152 ../../mod/editlayout.php:148 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:183 #: ../../mod/mail.php:234 ../../mod/mail.php:349 msgid "Please wait" msgstr "" @@ -442,11 +187,10 @@ msgstr "" msgid "Matrix Activity" msgstr "" -#: ../../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 -#: ../../mod/match.php:62 +#: ../../include/conversation.php:948 ../../include/widgets.php:135 +#: ../../include/widgets.php:175 ../../include/Contact.php:107 +#: ../../include/identity.php:840 ../../mod/directory.php:224 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 msgid "Connect" msgstr "" @@ -458,6 +202,17 @@ msgstr "" msgid "Send PM" msgstr "" +#: ../../include/conversation.php:951 ../../include/apps.php:143 +msgid "Poke" +msgstr "" + +#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 +#: ../../include/apps.php:331 ../../include/apps.php:382 +#: ../../mod/photos.php:713 ../../mod/photos.php:1131 +#: ../../mod/connedit.php:512 +msgid "Unknown" +msgstr "" + #: ../../include/conversation.php:1024 #, php-format msgid "%s likes this." @@ -538,20 +293,20 @@ msgid "Expires YYYY-MM-DD HH:MM" msgstr "" #: ../../include/conversation.php:1114 ../../include/page_widgets.php:40 -#: ../../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 +#: ../../include/ItemObject.php:608 ../../mod/photos.php:997 +#: ../../mod/webpages.php:166 ../../mod/editblock.php:173 +#: ../../mod/editlayout.php:168 ../../mod/editpost.php:140 +#: ../../mod/editwebpage.php:205 msgid "Preview" msgstr "" -#: ../../include/conversation.php:1128 ../../mod/photos.php:973 -#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 +#: ../../include/conversation.php:1128 ../../mod/photos.php:976 +#: ../../mod/editblock.php:198 ../../mod/editlayout.php:193 +#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 msgid "Share" msgstr "" -#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:139 +#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:170 msgid "Page link title" msgstr "" @@ -559,9 +314,9 @@ msgstr "" msgid "Post as" msgstr "" -#: ../../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 +#: ../../include/conversation.php:1134 ../../mod/editblock.php:144 +#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:231 ../../mod/mail.php:345 msgid "Upload photo" msgstr "" @@ -569,9 +324,9 @@ msgstr "" msgid "upload photo" msgstr "" -#: ../../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 +#: ../../include/conversation.php:1136 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:232 ../../mod/mail.php:346 msgid "Attach file" msgstr "" @@ -579,9 +334,9 @@ msgstr "" msgid "attach file" msgstr "" -#: ../../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 +#: ../../include/conversation.php:1138 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:142 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:233 ../../mod/mail.php:347 msgid "Insert web link" msgstr "" @@ -605,9 +360,9 @@ msgstr "" msgid "audio link" msgstr "" -#: ../../include/conversation.php:1144 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 +#: ../../include/conversation.php:1144 ../../mod/editblock.php:150 +#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:181 msgid "Set your location" msgstr "" @@ -615,9 +370,9 @@ msgstr "" msgid "set location" msgstr "" -#: ../../include/conversation.php:1146 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 +#: ../../include/conversation.php:1146 ../../mod/editblock.php:151 +#: ../../mod/editlayout.php:147 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:182 msgid "Clear browser location" msgstr "" @@ -625,21 +380,21 @@ msgstr "" msgid "clear location" msgstr "" -#: ../../include/conversation.php:1149 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 +#: ../../include/conversation.php:1149 ../../mod/editblock.php:164 +#: ../../mod/editlayout.php:159 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:198 msgid "Set title" msgstr "" #: ../../include/conversation.php:1152 ../../mod/events.php:563 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 -#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:169 +#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 +#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:200 msgid "Categories (comma-separated list)" msgstr "" -#: ../../include/conversation.php:1154 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 +#: ../../include/conversation.php:1154 ../../mod/editblock.php:153 +#: ../../mod/editlayout.php:149 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:184 msgid "Permission settings" msgstr "" @@ -647,21 +402,21 @@ msgstr "" msgid "permissions" msgstr "" -#: ../../include/conversation.php:1162 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 +#: ../../include/conversation.php:1162 ../../mod/editblock.php:161 +#: ../../mod/editlayout.php:156 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:193 msgid "Public post" msgstr "" -#: ../../include/conversation.php:1164 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 +#: ../../include/conversation.php:1164 ../../mod/editblock.php:168 +#: ../../mod/editlayout.php:163 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:201 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../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 +#: ../../include/conversation.php:1177 ../../mod/editblock.php:178 +#: ../../mod/editlayout.php:173 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:238 ../../mod/mail.php:352 msgid "Set expiration date" msgstr "" @@ -675,9 +430,9 @@ msgstr "" msgid "OK" msgstr "" -#: ../../include/conversation.php:1182 ../../mod/settings.php:550 -#: ../../mod/settings.php:576 ../../mod/events.php:568 -#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 +#: ../../include/conversation.php:1182 ../../mod/events.php:568 +#: ../../mod/editpost.php:151 ../../mod/settings.php:550 +#: ../../mod/settings.php:576 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "" @@ -715,7 +470,7 @@ msgid "Posts that mention or involve you" msgstr "" #: ../../include/conversation.php:1458 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 +#: ../../mod/connections.php:224 ../../mod/menu.php:80 msgid "New" msgstr "" @@ -739,39 +494,60 @@ msgstr "" msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1516 ../../mod/admin.php:867 +#: ../../include/conversation.php:1520 ../../mod/admin.php:865 msgid "Channel" msgstr "" -#: ../../include/conversation.php:1519 +#: ../../include/conversation.php:1523 msgid "Status Messages and Posts" msgstr "" -#: ../../include/conversation.php:1528 +#: ../../include/conversation.php:1532 msgid "About" msgstr "" -#: ../../include/conversation.php:1531 +#: ../../include/conversation.php:1535 msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1540 ../../include/photos.php:340 +#: ../../include/conversation.php:1541 ../../include/nav.php:105 +#: ../../include/apps.php:137 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "" + +#: ../../include/conversation.php:1544 ../../include/photos.php:341 msgid "Photo Albums" msgstr "" -#: ../../include/conversation.php:1549 +#: ../../include/conversation.php:1550 ../../include/RedDAV/RedBrowser.php:241 +#: ../../include/nav.php:106 ../../include/apps.php:133 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "" + +#: ../../include/conversation.php:1553 msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1559 ../../include/conversation.php:1562 +#: ../../include/conversation.php:1563 ../../include/conversation.php:1566 msgid "Chatrooms" msgstr "" -#: ../../include/conversation.php:1575 +#: ../../include/conversation.php:1576 ../../include/nav.php:117 +#: ../../include/apps.php:127 +msgid "Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1579 msgid "Saved Bookmarks" msgstr "" -#: ../../include/conversation.php:1586 +#: ../../include/conversation.php:1587 ../../include/nav.php:121 +#: ../../include/apps.php:134 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "" + +#: ../../include/conversation.php:1590 msgid "Manage Webpages" msgstr "" @@ -784,61 +560,135 @@ msgstr "" msgid "commented on %s's post" msgstr "" +#: ../../include/dir_fns.php:56 +msgid "Sort Options" +msgstr "" + +#: ../../include/dir_fns.php:57 +msgid "Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "" + +#: ../../include/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" +msgstr "" + #: ../../include/page_widgets.php:6 msgid "New Page" msgstr "" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 -#: ../../mod/webpages.php:134 ../../mod/layouts.php:125 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:250 ../../include/menu.php:42 +#: ../../include/apps.php:249 ../../include/ItemObject.php:100 +#: ../../mod/blocks.php:132 ../../mod/connections.php:381 +#: ../../mod/connections.php:394 ../../mod/connections.php:413 +#: ../../mod/thing.php:233 ../../mod/webpages.php:162 +#: ../../mod/editblock.php:143 ../../mod/editlayout.php:139 +#: ../../mod/editpost.php:112 ../../mod/settings.php:611 +#: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 +#: ../../mod/menu.php:78 +msgid "Edit" +msgstr "" + +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 msgid "View" msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 msgid "Actions" msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 msgid "Page Link" msgstr "" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 msgid "Title" msgstr "" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 msgid "Created" msgstr "" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 msgid "Edited" 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/chat.php:10 +msgid "Missing room name" msgstr "" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:463 -msgid "l F d, Y \\@ g:i A" +#: ../../include/chat.php:19 +msgid "Duplicate room name" msgstr "" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:469 -msgid "Starts:" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." msgstr "" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:477 -msgid "Finishes:" +#: ../../include/chat.php:105 +msgid "Room not found." msgstr "" -#: ../../include/event.php:40 ../../include/bb2diaspora.php:485 -#: ../../include/identity.php:891 ../../mod/events.php:579 -#: ../../mod/directory.php:156 ../../mod/dirprofile.php:105 -msgid "Location:" +#: ../../include/chat.php:116 ../../include/items.php:4013 +#: ../../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 +#: ../../mod/mood.php:112 ../../mod/mitem.php:106 +#: ../../mod/achievements.php:30 ../../mod/profiles.php:179 +#: ../../mod/profiles.php:550 ../../mod/setup.php:207 ../../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/sources.php:66 ../../mod/blocks.php:67 +#: ../../mod/blocks.php:75 ../../mod/register.php:72 ../../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/regmod.php:17 ../../mod/network.php:12 ../../mod/common.php:35 +#: ../../mod/photos.php:68 ../../mod/connections.php:169 +#: ../../mod/manage.php:6 ../../mod/connedit.php:266 ../../mod/thing.php:247 +#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/webpages.php:67 +#: ../../mod/bookmarks.php:46 ../../mod/editblock.php:65 +#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:64 +#: ../../mod/editlayout.php:89 ../../mod/editpost.php:13 +#: ../../mod/settings.php:526 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 +#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/item.php:191 +#: ../../mod/item.php:199 ../../mod/item.php:971 ../../mod/like.php:154 +#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:71 +#: ../../mod/layouts.php:67 ../../mod/layouts.php:74 ../../mod/layouts.php:85 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/viewsrc.php:14 ../../mod/mail.php:111 ../../mod/menu.php:61 +#: ../../mod/message.php:16 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 +#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/appman.php:66 +#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 +msgid "Permission denied." msgstr "" -#: ../../include/event.php:326 -msgid "This event has been added to your calendar." +#: ../../include/chat.php:126 +msgid "Room is full" msgstr "" #: ../../include/oembed.php:171 @@ -849,141 +699,216 @@ msgstr "" msgid "Embedding disabled" msgstr "" -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 +#: ../../include/taxonomy.php:230 +msgid "Categories" msgstr "" -#: ../../include/permissions.php:14 -msgid "Can view my default channel profile" +#: ../../include/widgets.php:86 ../../include/nav.php:171 +#: ../../mod/apps.php:33 +msgid "Apps" msgstr "" -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" +#: ../../include/widgets.php:87 +msgid "System" msgstr "" -#: ../../include/permissions.php:16 -msgid "Can view my connections" +#: ../../include/widgets.php:90 +msgid "Create Personal App" msgstr "" -#: ../../include/permissions.php:17 -msgid "Can view my file storage" +#: ../../include/widgets.php:91 +msgid "Edit Personal App" msgstr "" -#: ../../include/permissions.php:18 -msgid "Can view my webpages" +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" msgstr "" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" msgstr "" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/widgets.php:144 +msgid "See more..." msgstr "" -#: ../../include/permissions.php:23 -msgid "Can comment on or like my posts" +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" +#: ../../include/widgets.php:172 +msgid "Add New Connection" msgstr "" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" msgstr "" -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../include/permissions.php:26 -msgid "Profiles and things other than posts/comments" +#: ../../include/widgets.php:191 +msgid "Notes" msgstr "" -#: ../../include/permissions.php:28 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/widgets.php:193 ../../include/text.php:827 +#: ../../include/text.php:839 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Save" msgstr "" -#: ../../include/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/widgets.php:263 +msgid "Remove term" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" +#: ../../include/widgets.php:272 ../../include/features.php:58 +msgid "Saved Searches" msgstr "" -#: ../../include/permissions.php:30 -msgid "Can write to my file storage" +#: ../../include/widgets.php:273 ../../include/group.php:303 +msgid "add" msgstr "" -#: ../../include/permissions.php:31 -msgid "Can edit my webpages" +#: ../../include/widgets.php:303 ../../include/contact_widgets.php:57 +#: ../../include/features.php:72 +msgid "Saved Folders" msgstr "" -#: ../../include/permissions.php:33 -msgid "Can source my public posts in derived channels" +#: ../../include/widgets.php:306 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" msgstr "" -#: ../../include/permissions.php:33 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/widgets.php:352 +msgid "Archives" msgstr "" -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" +#: ../../include/widgets.php:428 +msgid "Refresh" msgstr "" -#: ../../include/permissions.php:35 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/widgets.php:429 ../../mod/connedit.php:506 +msgid "Me" msgstr "" -#: ../../include/permissions.php:785 -msgid "Social Networking" +#: ../../include/widgets.php:430 ../../mod/connedit.php:508 +msgid "Best Friends" msgstr "" -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -#: ../../include/permissions.php:790 -msgid "Mostly Public" +#: ../../include/widgets.php:431 ../../include/identity.php:387 +#: ../../include/identity.php:388 ../../include/identity.php:395 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:509 +#: ../../mod/settings.php:304 ../../mod/settings.php:308 +#: ../../mod/settings.php:309 ../../mod/settings.php:312 +#: ../../mod/settings.php:323 +msgid "Friends" msgstr "" -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -#: ../../include/permissions.php:790 -msgid "Restricted" +#: ../../include/widgets.php:432 +msgid "Co-workers" msgstr "" -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -msgid "Private" +#: ../../include/widgets.php:433 ../../mod/connedit.php:510 +msgid "Former Friends" msgstr "" -#: ../../include/permissions.php:787 -msgid "Community Forum" +#: ../../include/widgets.php:434 ../../mod/connedit.php:511 +msgid "Acquaintances" msgstr "" -#: ../../include/permissions.php:789 -msgid "Feed Republish" +#: ../../include/widgets.php:435 +msgid "Everybody" msgstr "" -#: ../../include/permissions.php:791 -msgid "Special Purpose" +#: ../../include/widgets.php:469 +msgid "Account settings" msgstr "" -#: ../../include/permissions.php:792 -msgid "Celebrity/Soapbox" +#: ../../include/widgets.php:475 +msgid "Channel settings" msgstr "" -#: ../../include/permissions.php:792 -msgid "Group Repository" +#: ../../include/widgets.php:481 +msgid "Additional features" msgstr "" -#: ../../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" +#: ../../include/widgets.php:487 +msgid "Feature settings" msgstr "" -#: ../../include/permissions.php:794 -msgid "Custom/Expert Mode" +#: ../../include/widgets.php:493 +msgid "Display settings" +msgstr "" + +#: ../../include/widgets.php:499 +msgid "Connected apps" +msgstr "" + +#: ../../include/widgets.php:505 +msgid "Export channel" +msgstr "" + +#: ../../include/widgets.php:511 +msgid "Export content" +msgstr "" + +#: ../../include/widgets.php:520 ../../mod/connedit.php:538 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../include/widgets.php:528 +msgid "Premium Channel Settings" +msgstr "" + +#: ../../include/widgets.php:537 ../../include/features.php:49 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "" + +#: ../../include/widgets.php:548 ../../include/nav.php:218 +#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 +msgid "Settings" +msgstr "" + +#: ../../include/widgets.php:562 ../../mod/mail.php:124 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "" + +#: ../../include/widgets.php:567 +msgid "Check Mail" +msgstr "" + +#: ../../include/widgets.php:572 ../../include/nav.php:209 +msgid "New Message" +msgstr "" + +#: ../../include/widgets.php:648 +msgid "Chat Rooms" +msgstr "" + +#: ../../include/widgets.php:666 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:684 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/zot.php:664 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:1799 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" #: ../../include/activities.php:39 @@ -1009,120 +934,30 @@ 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:463 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "" + #: ../../include/bb2diaspora.php:465 msgid "Redmatrix event notification:" msgstr "" -#: ../../include/zot.php:661 -msgid "Invalid data packet" +#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 +msgid "Starts:" msgstr "" -#: ../../include/zot.php:677 -msgid "Unable to verify channel signature" +#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 +msgid "Finishes:" msgstr "" -#: ../../include/zot.php:1791 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." +#: ../../include/bb2diaspora.php:485 ../../include/event.php:40 +#: ../../include/identity.php:891 ../../mod/directory.php:159 +#: ../../mod/events.php:579 +msgid "Location:" msgstr "" #: ../../include/RedDAV/RedBrowser.php:106 @@ -1165,7 +1000,7 @@ msgid "%1$s used of %2$s (%3$s%)" msgstr "" #: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:551 -#: ../../mod/settings.php:577 ../../mod/admin.php:868 +#: ../../mod/settings.php:577 ../../mod/admin.php:866 msgid "Name" msgstr "" @@ -1189,8 +1024,8 @@ msgstr "" msgid "Create new folder" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:142 -#: ../../mod/menu.php:84 ../../mod/new_channel.php:122 +#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:169 +#: ../../mod/menu.php:100 ../../mod/new_channel.php:122 msgid "Create" msgstr "" @@ -1198,8 +1033,8 @@ msgstr "" msgid "Upload file" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:736 -#: ../../mod/photos.php:1241 ../../mod/profile_photo.php:361 +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:738 +#: ../../mod/photos.php:1245 ../../mod/profile_photo.php:361 msgid "Upload" msgstr "" @@ -1208,7 +1043,40 @@ msgstr "" msgid "%1$s's bookmarks" msgstr "" -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:135 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "" + +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "" + +#: ../../include/follow.php:220 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../include/comanche.php:35 ../../mod/admin.php:353 +#: ../../view/theme/apw/php/config.php:185 msgid "Default" msgstr "" @@ -1248,8 +1116,8 @@ msgstr "" msgid "RSS/Atom" msgstr "" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:728 -#: ../../mod/admin.php:737 ../../boot.php:1515 +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 +#: ../../mod/admin.php:735 ../../boot.php:1488 msgid "Email" msgstr "" @@ -1284,7 +1152,7 @@ msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 msgid "Advanced" msgstr "" @@ -1304,8 +1172,8 @@ msgstr "" msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:222 ../../mod/directory.php:227 +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:267 +#: ../../mod/directory.php:272 ../../mod/connections.php:412 msgid "Find" msgstr "" @@ -1322,231 +1190,20 @@ msgid "Invite Friends" msgstr "" #: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" +msgid "Advanced example: name=fred and country=iceland" msgstr "" -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "" - -#: ../../include/contact_widgets.php:58 ../../include/features.php:72 -#: ../../include/widgets.php:303 -msgid "Saved Folders" -msgstr "" - -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96 -#: ../../include/widgets.php:306 -msgid "Everything" -msgstr "" - -#: ../../include/contact_widgets.php:93 ../../include/taxonomy.php:230 -#: ../../include/widgets.php:29 -msgid "Categories" -msgstr "" - -#: ../../include/contact_widgets.php:126 +#: ../../include/contact_widgets.php:125 #, php-format msgid "%d connection in common" msgid_plural "%d connections in common" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:131 +#: ../../include/contact_widgets.php:130 msgid "show more" msgstr "" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "" - -#: ../../include/account.php:647 ../../include/account.php:649 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:655 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:660 -msgid "This action is not available under your subscription plan." -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:" -msgstr "" - -#: ../../include/dir_fns.php:56 -msgid "Sort Options" -msgstr "" - -#: ../../include/dir_fns.php:57 -msgid "Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:58 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:59 -msgid "Newest to Oldest" -msgstr "" - -#: ../../include/dir_fns.php:71 -msgid "Enable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:73 -msgid "Disable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:75 -msgid "Safe Mode" -msgstr "" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:249 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:274 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:274 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:275 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:275 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 -msgid "like" -msgstr "" - -#: ../../include/taxonomy.php:276 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "" - -#: ../../include/taxonomy.php:277 -msgid "dislikes" -msgstr "" - -#: ../../include/taxonomy.php:360 ../../include/identity.php:1146 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1023 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - #: ../../include/enotify.php:41 msgid "Red Matrix Notification" msgstr "" @@ -1742,410 +1399,515 @@ msgstr "" msgid "[Red:Notify]" msgstr "" -#: ../../include/chat.php:10 -msgid "Missing room name" +#: ../../include/event.php:326 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/chat.php:19 -msgid "Duplicate room name" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/chat.php:105 -msgid "Room not found." +#: ../../include/group.php:254 ../../mod/admin.php:735 +msgid "All Channels" msgstr "" -#: ../../include/chat.php:126 -msgid "Room is full" +#: ../../include/group.php:276 +msgid "edit" msgstr "" -#: ../../include/items.php:377 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 -#: ../../index.php:389 -msgid "Permission denied" +#: ../../include/group.php:298 +msgid "Collections" msgstr "" -#: ../../include/items.php:964 ../../include/items.php:1009 -msgid "(Unknown)" +#: ../../include/group.php:299 +msgid "Edit collection" msgstr "" -#: ../../include/items.php:1165 -msgid "Visible to anybody on the internet." +#: ../../include/group.php:300 +msgid "Create a new collection" msgstr "" -#: ../../include/items.php:1167 -msgid "Visible to you only." +#: ../../include/group.php:301 +msgid "Channels not in any collection" msgstr "" -#: ../../include/items.php:1169 -msgid "Visible to anybody in this network." +#: ../../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/items.php:1171 -msgid "Visible to anybody authenticated." +#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" msgstr "" -#: ../../include/items.php:1173 +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "" + +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "" + +#: ../../include/bbcode.php:220 #, php-format -msgid "Visible to anybody on %s." +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/items.php:1175 -msgid "Visible to all connections." +#: ../../include/bbcode.php:222 +msgid "post" msgstr "" -#: ../../include/items.php:1177 -msgid "Visible to approved connections." +#: ../../include/bbcode.php:621 +msgid "$1 spoiler" msgstr "" -#: ../../include/items.php:1179 -msgid "Visible to specific connections." +#: ../../include/bbcode.php:641 +msgid "$1 wrote:" msgstr "" -#: ../../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." +#: ../../include/taxonomy.php:210 +msgid "Tags" msgstr "" -#: ../../include/items.php:4394 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." +#: ../../include/taxonomy.php:249 +msgid "Keywords" msgstr "" -#: ../../include/items.php:4409 -msgid "Collection is empty." +#: ../../include/taxonomy.php:274 +msgid "have" msgstr "" -#: ../../include/items.php:4416 -#, php-format -msgid "Collection: %s" +#: ../../include/taxonomy.php:274 +msgid "has" msgstr "" -#: ../../include/items.php:4427 -#, php-format -msgid "Connection: %s" +#: ../../include/taxonomy.php:275 +msgid "want" msgstr "" -#: ../../include/items.php:4430 -msgid "Connection not found." +#: ../../include/taxonomy.php:275 +msgid "wants" msgstr "" -#: ../../include/text.php:321 -msgid "prev" +#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 +msgid "like" msgstr "" -#: ../../include/text.php:323 -msgid "first" +#: ../../include/taxonomy.php:276 +msgid "likes" msgstr "" -#: ../../include/text.php:352 -msgid "last" +#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 +msgid "dislike" msgstr "" -#: ../../include/text.php:355 -msgid "next" +#: ../../include/taxonomy.php:277 +msgid "dislikes" msgstr "" -#: ../../include/text.php:367 -msgid "older" -msgstr "" - -#: ../../include/text.php:369 -msgid "newer" -msgstr "" - -#: ../../include/text.php:736 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:749 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" +#: ../../include/taxonomy.php:360 ../../include/identity.php:1148 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1026 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: ../../include/text.php:762 -msgid "View Connections" +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1485 +msgid "Logout" msgstr "" -#: ../../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" +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" msgstr "" -#: ../../include/text.php:901 -msgid "poke" +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" msgstr "" -#: ../../include/text.php:902 -msgid "ping" +#: ../../include/nav.php:98 +msgid "Your posts and conversations" msgstr "" -#: ../../include/text.php:902 -msgid "pinged" +#: ../../include/nav.php:99 +msgid "Your profile page" msgstr "" -#: ../../include/text.php:903 -msgid "prod" +#: ../../include/nav.php:101 +msgid "Edit Profiles" msgstr "" -#: ../../include/text.php:903 -msgid "prodded" +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/text.php:904 -msgid "slap" +#: ../../include/nav.php:103 ../../include/identity.php:864 +msgid "Edit Profile" msgstr "" -#: ../../include/text.php:904 -msgid "slapped" +#: ../../include/nav.php:103 +msgid "Edit your profile" msgstr "" -#: ../../include/text.php:905 -msgid "finger" +#: ../../include/nav.php:105 +msgid "Your photos" msgstr "" -#: ../../include/text.php:905 -msgid "fingered" +#: ../../include/nav.php:106 +msgid "Your files" msgstr "" -#: ../../include/text.php:906 -msgid "rebuff" +#: ../../include/nav.php:111 ../../include/apps.php:144 +msgid "Chat" msgstr "" -#: ../../include/text.php:906 -msgid "rebuffed" +#: ../../include/nav.php:111 +msgid "Your chatrooms" msgstr "" -#: ../../include/text.php:915 -msgid "happy" +#: ../../include/nav.php:117 +msgid "Your bookmarks" msgstr "" -#: ../../include/text.php:916 -msgid "sad" +#: ../../include/nav.php:121 +msgid "Your webpages" msgstr "" -#: ../../include/text.php:917 -msgid "mellow" +#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1486 +msgid "Login" msgstr "" -#: ../../include/text.php:918 -msgid "tired" +#: ../../include/nav.php:125 +msgid "Sign in" msgstr "" -#: ../../include/text.php:919 -msgid "perky" +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/text.php:920 -msgid "angry" +#: ../../include/nav.php:145 +msgid "Remote authentication" msgstr "" -#: ../../include/text.php:921 -msgid "stupified" +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/text.php:922 -msgid "puzzled" +#: ../../include/nav.php:159 +msgid "Home Page" msgstr "" -#: ../../include/text.php:923 -msgid "interested" +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1464 +msgid "Register" msgstr "" -#: ../../include/text.php:924 -msgid "bitter" +#: ../../include/nav.php:163 +msgid "Create an account" msgstr "" -#: ../../include/text.php:925 -msgid "cheerful" +#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" msgstr "" -#: ../../include/text.php:926 -msgid "alive" +#: ../../include/nav.php:168 +msgid "Help and documentation" msgstr "" -#: ../../include/text.php:927 -msgid "annoyed" +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/text.php:928 -msgid "anxious" +#: ../../include/nav.php:173 ../../include/text.php:826 +#: ../../include/text.php:838 ../../include/apps.php:145 +#: ../../mod/search.php:30 +msgid "Search" msgstr "" -#: ../../include/text.php:929 -msgid "cranky" +#: ../../include/nav.php:173 +msgid "Search site content" msgstr "" -#: ../../include/text.php:930 -msgid "disturbed" +#: ../../include/nav.php:176 ../../include/apps.php:139 +#: ../../mod/directory.php:271 +msgid "Directory" msgstr "" -#: ../../include/text.php:931 -msgid "frustrated" +#: ../../include/nav.php:176 +msgid "Channel Directory" msgstr "" -#: ../../include/text.php:932 -msgid "depressed" +#: ../../include/nav.php:190 ../../include/apps.php:131 +msgid "Matrix" msgstr "" -#: ../../include/text.php:933 -msgid "motivated" +#: ../../include/nav.php:190 +msgid "Your matrix" msgstr "" -#: ../../include/text.php:934 -msgid "relaxed" +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" msgstr "" -#: ../../include/text.php:935 -msgid "surprised" +#: ../../include/nav.php:193 ../../include/apps.php:135 +msgid "Channel Home" msgstr "" -#: ../../include/text.php:1099 -msgid "Monday" +#: ../../include/nav.php:193 +msgid "Channel home" msgstr "" -#: ../../include/text.php:1099 -msgid "Tuesday" +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/text.php:1099 -msgid "Wednesday" +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" msgstr "" -#: ../../include/text.php:1099 -msgid "Thursday" +#: ../../include/nav.php:200 +msgid "Notices" msgstr "" -#: ../../include/text.php:1099 -msgid "Friday" +#: ../../include/nav.php:200 +msgid "Notifications" msgstr "" -#: ../../include/text.php:1099 -msgid "Saturday" +#: ../../include/nav.php:201 +msgid "See all notifications" msgstr "" -#: ../../include/text.php:1099 -msgid "Sunday" +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" msgstr "" -#: ../../include/text.php:1103 -msgid "January" +#: ../../include/nav.php:204 ../../include/apps.php:141 +msgid "Mail" msgstr "" -#: ../../include/text.php:1103 -msgid "February" +#: ../../include/nav.php:204 +msgid "Private mail" msgstr "" -#: ../../include/text.php:1103 -msgid "March" +#: ../../include/nav.php:205 +msgid "See all private messages" msgstr "" -#: ../../include/text.php:1103 -msgid "April" +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/text.php:1103 -msgid "May" +#: ../../include/nav.php:207 +msgid "Inbox" msgstr "" -#: ../../include/text.php:1103 -msgid "June" +#: ../../include/nav.php:208 +msgid "Outbox" msgstr "" -#: ../../include/text.php:1103 -msgid "July" +#: ../../include/nav.php:212 ../../include/apps.php:138 +#: ../../mod/events.php:431 +msgid "Events" msgstr "" -#: ../../include/text.php:1103 -msgid "August" +#: ../../include/nav.php:212 +msgid "Event Calendar" msgstr "" -#: ../../include/text.php:1103 -msgid "September" +#: ../../include/nav.php:213 +msgid "See all events" msgstr "" -#: ../../include/text.php:1103 -msgid "October" +#: ../../include/nav.php:214 +msgid "Mark all events seen" msgstr "" -#: ../../include/text.php:1103 -msgid "November" +#: ../../include/nav.php:216 ../../include/apps.php:130 +#: ../../mod/manage.php:148 +msgid "Channel Manager" msgstr "" -#: ../../include/text.php:1103 -msgid "December" +#: ../../include/nav.php:216 +msgid "Manage Your Channels" msgstr "" -#: ../../include/text.php:1181 -msgid "unknown.???" +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/text.php:1182 -msgid "bytes" +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" msgstr "" -#: ../../include/text.php:1221 -msgid "remove category" +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/text.php:1291 -msgid "remove from file" +#: ../../include/nav.php:262 +msgid "Please wait..." msgstr "" -#: ../../include/text.php:1356 ../../include/text.php:1368 -msgid "Click to open/close" +#: ../../include/permissions.php:13 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/text.php:1523 ../../mod/events.php:409 -msgid "Link to Source" +#: ../../include/permissions.php:14 +msgid "Can view my default channel profile" msgstr "" -#: ../../include/text.php:1542 -msgid "Select a page layout: " +#: ../../include/permissions.php:15 +msgid "Can view my photo albums" msgstr "" -#: ../../include/text.php:1545 ../../include/text.php:1610 -msgid "default" +#: ../../include/permissions.php:16 +msgid "Can view my connections" msgstr "" -#: ../../include/text.php:1581 -msgid "Page content type: " +#: ../../include/permissions.php:17 +msgid "Can view my file storage" msgstr "" -#: ../../include/text.php:1622 -msgid "Select an alternate language" +#: ../../include/permissions.php:18 +msgid "Can view my webpages" msgstr "" -#: ../../include/text.php:1756 -msgid "activity" +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/text.php:2028 -msgid "Design" +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/text.php:2030 -msgid "Blocks" +#: ../../include/permissions.php:23 +msgid "Can comment on or like my posts" msgstr "" -#: ../../include/text.php:2031 -msgid "Menus" +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/text.php:2032 -msgid "Layouts" +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" msgstr "" -#: ../../include/text.php:2033 -msgid "Pages" +#: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" +msgstr "" + +#: ../../include/permissions.php:26 +msgid "Profiles and things other than posts/comments" +msgstr "" + +#: ../../include/permissions.php:28 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "" + +#: ../../include/permissions.php:28 +msgid "Advanced - useful for creating group forum channels" +msgstr "" + +#: ../../include/permissions.php:29 +msgid "Can chat with me (when available)" +msgstr "" + +#: ../../include/permissions.php:30 +msgid "Can write to my file storage" +msgstr "" + +#: ../../include/permissions.php:31 +msgid "Can edit my webpages" +msgstr "" + +#: ../../include/permissions.php:33 +msgid "Can source my public posts in derived channels" +msgstr "" + +#: ../../include/permissions.php:33 +msgid "Somewhat advanced - very useful in open communities" +msgstr "" + +#: ../../include/permissions.php:35 +msgid "Can administer my channel resources" +msgstr "" + +#: ../../include/permissions.php:35 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "" + +#: ../../include/permissions.php:785 +msgid "Social Networking" +msgstr "" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Mostly Public" +msgstr "" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Restricted" +msgstr "" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +msgid "Private" +msgstr "" + +#: ../../include/permissions.php:787 +msgid "Community Forum" +msgstr "" + +#: ../../include/permissions.php:789 +msgid "Feed Republish" +msgstr "" + +#: ../../include/permissions.php:791 +msgid "Special Purpose" +msgstr "" + +#: ../../include/permissions.php:792 +msgid "Celebrity/Soapbox" +msgstr "" + +#: ../../include/permissions.php:792 +msgid "Group Repository" +msgstr "" + +#: ../../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 "" + +#: ../../include/permissions.php:794 +msgid "Custom/Expert Mode" +msgstr "" + +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "" + +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/Contact.php:211 ../../mod/admin.php:646 +#, php-format +msgid "User '%s' deleted" msgstr "" #: ../../include/features.php:23 @@ -2256,11 +2018,6 @@ msgstr "" msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:49 ../../include/widgets.php:537 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "" - #: ../../include/features.php:49 msgid "Automatically import channel content from other channels or feeds" msgstr "" @@ -2294,10 +2051,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 "" @@ -2390,78 +2143,84 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." +#: ../../include/account.php:23 +msgid "Not a valid email address" msgstr "" -#: ../../include/follow.php:33 -msgid "Channel location missing." +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." +#: ../../include/account.php:64 +msgid "An invitation is required." msgstr "" -#: ../../include/follow.php:135 ../../include/follow.php:202 -msgid "Protocol disabled." +#: ../../include/account.php:68 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/follow.php:176 -msgid "Channel discovery failed." +#: ../../include/account.php:119 +msgid "Please enter the required information." msgstr "" -#: ../../include/follow.php:192 -msgid "local account not found." +#: ../../include/account.php:187 +msgid "Failed to store account information." msgstr "" -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" 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/account.php:313 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/group.php:234 -msgid "Default privacy group for new contacts" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" msgstr "" -#: ../../include/group.php:253 ../../mod/admin.php:737 -msgid "All Channels" +#: ../../include/account.php:337 +msgid "your registration password" msgstr "" -#: ../../include/group.php:275 -msgid "edit" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/group.php:297 -msgid "Collections" +#: ../../include/account.php:406 +msgid "Account approved." msgstr "" -#: ../../include/group.php:298 -msgid "Edit collection" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/group.php:299 -msgid "Create a new collection" +#: ../../include/account.php:486 +msgid "Account verified. Please login." msgstr "" -#: ../../include/group.php:300 -msgid "Channels not in any collection" +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." msgstr "" -#: ../../include/group.php:302 ../../include/widgets.php:273 -msgid "add" +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/identity.php:31 ../../mod/item.php:1361 +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/identity.php:31 ../../mod/item.php:1368 msgid "Unable to obtain identity information from database" msgstr "" @@ -2498,27 +2257,19 @@ msgstr "" msgid "Default Profile" msgstr "" -#: ../../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:509 -msgid "Friends" -msgstr "" - #: ../../include/identity.php:643 msgid "Requested channel is not available." msgstr "" #: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/webpages.php:8 ../../mod/filestorage.php:48 -#: ../../mod/layouts.php:8 ../../mod/hcard.php:8 +#: ../../mod/connect.php:13 ../../mod/profile.php:16 ../../mod/blocks.php:29 +#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 +#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 msgid "Requested profile is not available." msgstr "" -#: ../../include/identity.php:854 ../../mod/profiles.php:722 +#: ../../include/identity.php:854 ../../mod/profiles.php:740 msgid "Change profile photo" msgstr "" @@ -2530,15 +2281,11 @@ msgstr "" msgid "Manage/edit profiles" msgstr "" -#: ../../include/identity.php:861 ../../mod/profiles.php:723 +#: ../../include/identity.php:861 ../../mod/profiles.php:741 msgid "Create New Profile" msgstr "" -#: ../../include/identity.php:864 ../../include/nav.php:103 -msgid "Edit Profile" -msgstr "" - -#: ../../include/identity.php:875 ../../mod/profiles.php:734 +#: ../../include/identity.php:875 ../../mod/profiles.php:752 msgid "Profile Image" msgstr "" @@ -2546,331 +2293,241 @@ msgstr "" msgid "visible to everybody" msgstr "" -#: ../../include/identity.php:879 ../../mod/profiles.php:617 -#: ../../mod/profiles.php:738 +#: ../../include/identity.php:879 ../../mod/profiles.php:635 +#: ../../mod/profiles.php:756 msgid "Edit visibility" msgstr "" -#: ../../include/identity.php:893 ../../include/identity.php:1130 -#: ../../mod/directory.php:158 +#: ../../include/identity.php:895 ../../include/identity.php:1132 msgid "Gender:" msgstr "" -#: ../../include/identity.php:894 ../../include/identity.php:1174 -#: ../../mod/directory.php:160 +#: ../../include/identity.php:896 ../../include/identity.php:1176 msgid "Status:" msgstr "" -#: ../../include/identity.php:895 ../../include/identity.php:1185 -#: ../../mod/directory.php:162 +#: ../../include/identity.php:897 ../../include/identity.php:1187 msgid "Homepage:" msgstr "" -#: ../../include/identity.php:896 ../../mod/dirprofile.php:151 +#: ../../include/identity.php:898 msgid "Online Now" msgstr "" -#: ../../include/identity.php:974 ../../include/identity.php:1054 -#: ../../mod/ping.php:316 +#: ../../include/identity.php:976 ../../include/identity.php:1056 +#: ../../mod/ping.php:318 msgid "g A l F d" msgstr "" -#: ../../include/identity.php:975 ../../include/identity.php:1055 +#: ../../include/identity.php:977 ../../include/identity.php:1057 msgid "F d" msgstr "" -#: ../../include/identity.php:1020 ../../include/identity.php:1095 -#: ../../mod/ping.php:338 +#: ../../include/identity.php:1022 ../../include/identity.php:1097 +#: ../../mod/ping.php:340 msgid "[today]" msgstr "" -#: ../../include/identity.php:1032 +#: ../../include/identity.php:1034 msgid "Birthday Reminders" msgstr "" -#: ../../include/identity.php:1033 +#: ../../include/identity.php:1035 msgid "Birthdays this week:" msgstr "" -#: ../../include/identity.php:1088 +#: ../../include/identity.php:1090 msgid "[No description]" msgstr "" -#: ../../include/identity.php:1106 +#: ../../include/identity.php:1108 msgid "Event Reminders" msgstr "" -#: ../../include/identity.php:1107 +#: ../../include/identity.php:1109 msgid "Events this week:" msgstr "" -#: ../../include/identity.php:1128 ../../mod/settings.php:984 +#: ../../include/identity.php:1122 ../../include/identity.php:1240 +#: ../../include/apps.php:136 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "" + +#: ../../include/identity.php:1130 ../../mod/settings.php:984 msgid "Full Name:" msgstr "" -#: ../../include/identity.php:1135 +#: ../../include/identity.php:1137 msgid "Like this channel" msgstr "" -#: ../../include/identity.php:1159 +#: ../../include/identity.php:1161 msgid "j F, Y" msgstr "" -#: ../../include/identity.php:1160 +#: ../../include/identity.php:1162 msgid "j F" msgstr "" -#: ../../include/identity.php:1167 +#: ../../include/identity.php:1169 msgid "Birthday:" msgstr "" -#: ../../include/identity.php:1171 +#: ../../include/identity.php:1173 msgid "Age:" msgstr "" -#: ../../include/identity.php:1180 +#: ../../include/identity.php:1182 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/identity.php:1183 ../../mod/profiles.php:639 +#: ../../include/identity.php:1185 ../../mod/profiles.php:657 msgid "Sexual Preference:" msgstr "" -#: ../../include/identity.php:1187 ../../mod/profiles.php:641 +#: ../../include/identity.php:1189 ../../mod/profiles.php:659 msgid "Hometown:" msgstr "" -#: ../../include/identity.php:1189 +#: ../../include/identity.php:1191 msgid "Tags:" msgstr "" -#: ../../include/identity.php:1191 ../../mod/profiles.php:642 +#: ../../include/identity.php:1193 ../../mod/profiles.php:660 msgid "Political Views:" msgstr "" -#: ../../include/identity.php:1193 +#: ../../include/identity.php:1195 msgid "Religion:" msgstr "" -#: ../../include/identity.php:1195 ../../mod/directory.php:164 +#: ../../include/identity.php:1197 msgid "About:" msgstr "" -#: ../../include/identity.php:1197 +#: ../../include/identity.php:1199 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/identity.php:1199 ../../mod/profiles.php:645 +#: ../../include/identity.php:1201 ../../mod/profiles.php:663 msgid "Likes:" msgstr "" -#: ../../include/identity.php:1201 ../../mod/profiles.php:646 +#: ../../include/identity.php:1203 ../../mod/profiles.php:664 msgid "Dislikes:" msgstr "" -#: ../../include/identity.php:1204 +#: ../../include/identity.php:1206 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/identity.php:1206 +#: ../../include/identity.php:1208 msgid "My other channels:" msgstr "" -#: ../../include/identity.php:1208 +#: ../../include/identity.php:1210 msgid "Musical interests:" msgstr "" -#: ../../include/identity.php:1210 +#: ../../include/identity.php:1212 msgid "Books, literature:" msgstr "" -#: ../../include/identity.php:1212 +#: ../../include/identity.php:1214 msgid "Television:" msgstr "" -#: ../../include/identity.php:1214 +#: ../../include/identity.php:1216 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/identity.php:1216 +#: ../../include/identity.php:1218 msgid "Love/Romance:" msgstr "" -#: ../../include/identity.php:1218 +#: ../../include/identity.php:1220 msgid "Work/employment:" msgstr "" -#: ../../include/identity.php:1220 +#: ../../include/identity.php:1222 msgid "School/education:" msgstr "" -#: ../../include/identity.php:1240 +#: ../../include/identity.php:1242 msgid "Like this thing" msgstr "" -#: ../../include/widgets.php:86 ../../include/nav.php:171 -#: ../../mod/apps.php:33 -msgid "Apps" +#: ../../include/items.php:377 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 +#: ../../index.php:389 +msgid "Permission denied" msgstr "" -#: ../../include/widgets.php:87 -msgid "System" +#: ../../include/items.php:964 ../../include/items.php:1009 +msgid "(Unknown)" msgstr "" -#: ../../include/widgets.php:90 -msgid "Create Personal App" +#: ../../include/items.php:1165 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/widgets.php:91 -msgid "Edit Personal App" +#: ../../include/items.php:1167 +msgid "Visible to you only." msgstr "" -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" +#: ../../include/items.php:1169 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" +#: ../../include/items.php:1171 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "" - -#: ../../include/widgets.php:166 +#: ../../include/items.php:1173 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/widgets.php:172 -msgid "Add New Connection" +#: ../../include/items.php:1175 +msgid "Visible to all connections." msgstr "" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" +#: ../../include/items.php:1177 +msgid "Visible to approved connections." msgstr "" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../include/items.php:1179 +msgid "Visible to specific connections." msgstr "" -#: ../../include/widgets.php:191 -msgid "Notes" +#: ../../include/items.php:3946 ../../mod/thing.php:76 +#: ../../mod/display.php:32 ../../mod/filestorage.php:26 +#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." msgstr "" -#: ../../include/widgets.php:263 -msgid "Remove term" +#: ../../include/items.php:4402 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." msgstr "" -#: ../../include/widgets.php:352 -msgid "Archives" +#: ../../include/items.php:4417 +msgid "Collection is empty." msgstr "" -#: ../../include/widgets.php:428 -msgid "Refresh" -msgstr "" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:506 -msgid "Me" -msgstr "" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:508 -msgid "Best Friends" -msgstr "" - -#: ../../include/widgets.php:432 -msgid "Co-workers" -msgstr "" - -#: ../../include/widgets.php:433 ../../mod/connedit.php:510 -msgid "Former Friends" -msgstr "" - -#: ../../include/widgets.php:434 ../../mod/connedit.php:511 -msgid "Acquaintances" -msgstr "" - -#: ../../include/widgets.php:435 -msgid "Everybody" -msgstr "" - -#: ../../include/widgets.php:469 -msgid "Account settings" -msgstr "" - -#: ../../include/widgets.php:475 -msgid "Channel settings" -msgstr "" - -#: ../../include/widgets.php:481 -msgid "Additional features" -msgstr "" - -#: ../../include/widgets.php:487 -msgid "Feature settings" -msgstr "" - -#: ../../include/widgets.php:493 -msgid "Display settings" -msgstr "" - -#: ../../include/widgets.php:499 -msgid "Connected apps" -msgstr "" - -#: ../../include/widgets.php:505 -msgid "Export channel" -msgstr "" - -#: ../../include/widgets.php:511 -msgid "Export content" -msgstr "" - -#: ../../include/widgets.php:520 ../../mod/connedit.php:538 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../include/widgets.php:528 -msgid "Premium Channel Settings" -msgstr "" - -#: ../../include/widgets.php:562 ../../mod/mail.php:124 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "" - -#: ../../include/widgets.php:567 -msgid "Check Mail" -msgstr "" - -#: ../../include/widgets.php:572 ../../include/nav.php:209 -msgid "New Message" -msgstr "" - -#: ../../include/widgets.php:648 -msgid "Chat Rooms" -msgstr "" - -#: ../../include/widgets.php:666 -msgid "Bookmarked Chatrooms" -msgstr "" - -#: ../../include/widgets.php:684 -msgid "Suggested Chatrooms" -msgstr "" - -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "" - -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/Contact.php:211 ../../mod/admin.php:649 +#: ../../include/items.php:4424 #, php-format -msgid "User '%s' deleted" +msgid "Collection: %s" +msgstr "" + +#: ../../include/items.php:4435 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../include/items.php:4438 +msgid "Connection not found." msgstr "" #: ../../include/message.php:18 @@ -2889,249 +2546,200 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1512 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:98 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:99 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:103 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:105 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:106 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:117 -msgid "Your bookmarks" -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 ../../mod/register.php:220 ../../boot.php:1489 -msgid "Register" -msgstr "" - -#: ../../include/nav.php:163 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:168 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" -msgstr "" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "" - -#: ../../include/nav.php:176 -msgid "Channel Locator" -msgstr "" - -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "" - -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -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 -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: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 -msgid "Manage Your Channels" -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:262 -msgid "Please wait..." -msgstr "" - #: ../../include/network.php:590 msgid "view full size" msgstr "" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." msgstr "" -#: ../../include/acl_selectors.php:241 -msgid "Show" +#: ../../include/attach.php:331 +msgid "No source file." msgstr "" -#: ../../include/acl_selectors.php:242 -msgid "Don't show" +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" msgstr "" -#: ../../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" +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 -#: ../../mod/photos.php:1145 -msgid "Close" +#: ../../include/attach.php:377 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/api.php:1084 -msgid "Public Timeline" +#: ../../include/attach.php:389 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/photos.php:104 +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:589 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:605 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:629 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:680 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:684 +msgid "database storage failed." +msgstr "" + +#: ../../include/auth.php:116 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:257 +msgid "Failed authentication" +msgstr "" + +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:142 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:248 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:254 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:257 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:257 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:258 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:258 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:259 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:259 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:260 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:260 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:261 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:261 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:262 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:262 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:263 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:263 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:272 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:480 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:481 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + +#: ../../include/photos.php:105 #, php-format msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/photos.php:111 +#: ../../include/photos.php:112 msgid "Image file is empty." msgstr "" -#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 +#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 msgid "Unable to process image" msgstr "" -#: ../../include/photos.php:212 +#: ../../include/photos.php:213 msgid "Photo storage failed." msgstr "" -#: ../../include/photos.php:344 +#: ../../include/photos.php:345 msgid "Upload New Photos" msgstr "" +#: ../../include/security.php:323 +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/js_strings.php:5 msgid "Delete this item?" msgstr "" #: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 -#: ../../mod/photos.php:992 ../../mod/photos.php:1102 +#: ../../mod/photos.php:995 ../../mod/photos.php:1105 msgid "Comment" msgstr "" @@ -3492,16 +3100,407 @@ msgstr "" msgid "Ask me" msgstr "" +#: ../../include/text.php:321 +msgid "prev" +msgstr "" + +#: ../../include/text.php:323 +msgid "first" +msgstr "" + +#: ../../include/text.php:352 +msgid "last" +msgstr "" + +#: ../../include/text.php:355 +msgid "next" +msgstr "" + +#: ../../include/text.php:367 +msgid "older" +msgstr "" + +#: ../../include/text.php:369 +msgid "newer" +msgstr "" + +#: ../../include/text.php:736 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:753 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:766 +msgid "View Connections" +msgstr "" + +#: ../../include/text.php:905 +msgid "poke" +msgstr "" + +#: ../../include/text.php:906 +msgid "ping" +msgstr "" + +#: ../../include/text.php:906 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:907 +msgid "prod" +msgstr "" + +#: ../../include/text.php:907 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:908 +msgid "slap" +msgstr "" + +#: ../../include/text.php:908 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:909 +msgid "finger" +msgstr "" + +#: ../../include/text.php:909 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:910 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:910 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:919 +msgid "happy" +msgstr "" + +#: ../../include/text.php:920 +msgid "sad" +msgstr "" + +#: ../../include/text.php:921 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:922 +msgid "tired" +msgstr "" + +#: ../../include/text.php:923 +msgid "perky" +msgstr "" + +#: ../../include/text.php:924 +msgid "angry" +msgstr "" + +#: ../../include/text.php:925 +msgid "stupified" +msgstr "" + +#: ../../include/text.php:926 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:927 +msgid "interested" +msgstr "" + +#: ../../include/text.php:928 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:929 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:930 +msgid "alive" +msgstr "" + +#: ../../include/text.php:931 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:932 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:933 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:934 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:935 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:936 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:937 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:938 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:939 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Monday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Tuesday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Wednesday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Thursday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Friday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Saturday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Sunday" +msgstr "" + +#: ../../include/text.php:1107 +msgid "January" +msgstr "" + +#: ../../include/text.php:1107 +msgid "February" +msgstr "" + +#: ../../include/text.php:1107 +msgid "March" +msgstr "" + +#: ../../include/text.php:1107 +msgid "April" +msgstr "" + +#: ../../include/text.php:1107 +msgid "May" +msgstr "" + +#: ../../include/text.php:1107 +msgid "June" +msgstr "" + +#: ../../include/text.php:1107 +msgid "July" +msgstr "" + +#: ../../include/text.php:1107 +msgid "August" +msgstr "" + +#: ../../include/text.php:1107 +msgid "September" +msgstr "" + +#: ../../include/text.php:1107 +msgid "October" +msgstr "" + +#: ../../include/text.php:1107 +msgid "November" +msgstr "" + +#: ../../include/text.php:1107 +msgid "December" +msgstr "" + +#: ../../include/text.php:1185 +msgid "unknown.???" +msgstr "" + +#: ../../include/text.php:1186 +msgid "bytes" +msgstr "" + +#: ../../include/text.php:1225 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1295 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1360 ../../include/text.php:1372 +msgid "Click to open/close" +msgstr "" + +#: ../../include/text.php:1527 ../../mod/events.php:409 +msgid "Link to Source" +msgstr "" + +#: ../../include/text.php:1546 +msgid "Select a page layout: " +msgstr "" + +#: ../../include/text.php:1549 ../../include/text.php:1614 +msgid "default" +msgstr "" + +#: ../../include/text.php:1585 +msgid "Page content type: " +msgstr "" + +#: ../../include/text.php:1626 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/text.php:1760 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2041 +msgid "Design" +msgstr "" + +#: ../../include/text.php:2044 +msgid "Blocks" +msgstr "" + +#: ../../include/text.php:2045 +msgid "Menus" +msgstr "" + +#: ../../include/text.php:2046 +msgid "Layouts" +msgstr "" + +#: ../../include/text.php:2047 +msgid "Pages" +msgstr "" + +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "" + +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:248 ../../mod/events.php:585 +#: ../../mod/chat.php:209 ../../mod/photos.php:588 ../../mod/photos.php:950 +#: ../../mod/filestorage.php:137 +msgid "Permissions" +msgstr "" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 +#: ../../mod/photos.php:1148 +msgid "Close" +msgstr "" + +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "" + +#: ../../include/apps.php:126 +msgid "Site Admin" +msgstr "" + +#: ../../include/apps.php:128 +msgid "Address Book" +msgstr "" + +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" +msgstr "" + +#: ../../include/apps.php:146 +msgid "Probe" +msgstr "" + +#: ../../include/apps.php:147 +msgid "Suggest" +msgstr "" + +#: ../../include/apps.php:148 +msgid "Random Channel" +msgstr "" + +#: ../../include/apps.php:149 +msgid "Invite" +msgstr "" + +#: ../../include/apps.php:150 +msgid "Features" +msgstr "" + +#: ../../include/apps.php:151 +msgid "Language" +msgstr "" + +#: ../../include/apps.php:152 +msgid "Post" +msgstr "" + +#: ../../include/apps.php:153 +msgid "Profile Photo" +msgstr "" + +#: ../../include/apps.php:242 ../../mod/settings.php:81 +#: ../../mod/settings.php:575 +msgid "Update" +msgstr "" + +#: ../../include/apps.php:242 +msgid "Install" +msgstr "" + +#: ../../include/apps.php:247 +msgid "Purchase" +msgstr "" + #: ../../include/ItemObject.php:130 msgid "Save to Folder" msgstr "" #: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1019 ../../mod/photos.php:1031 +#: ../../mod/photos.php:1022 ../../mod/photos.php:1034 msgid "View all" msgstr "" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1028 +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1031 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -3528,11 +3527,11 @@ msgstr "" msgid "Add Tag" msgstr "" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:971 +#: ../../include/ItemObject.php:221 ../../mod/photos.php:974 msgid "I like this (toggle)" msgstr "" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:972 +#: ../../include/ItemObject.php:222 ../../mod/photos.php:975 msgid "I don't like this (toggle)" msgstr "" @@ -3573,12 +3572,12 @@ msgstr "" msgid "Add to Calendar" msgstr "" -#: ../../include/ItemObject.php:299 ../../mod/photos.php:1139 +#: ../../include/ItemObject.php:299 ../../mod/photos.php:1142 msgctxt "noun" msgid "Likes" msgstr "" -#: ../../include/ItemObject.php:300 ../../mod/photos.php:1140 +#: ../../include/ItemObject.php:300 ../../mod/photos.php:1143 msgctxt "noun" msgid "Dislikes" msgstr "" @@ -3590,27 +3589,27 @@ msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:596 ../../mod/photos.php:990 -#: ../../mod/photos.php:1100 +#: ../../include/ItemObject.php:596 ../../mod/photos.php:993 +#: ../../mod/photos.php:1103 msgid "This is you" msgstr "" #: ../../include/ItemObject.php:599 ../../mod/mood.php:135 -#: ../../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: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/locs.php:99 ../../mod/mail.php:348 ../../mod/appman.php:99 +#: ../../mod/profiles.php:633 ../../mod/connect.php:92 ../../mod/setup.php:313 +#: ../../mod/setup.php:358 ../../mod/poke.php:166 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/events.php:587 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/photos.php:594 ../../mod/photos.php:671 +#: ../../mod/photos.php:956 ../../mod/photos.php:996 ../../mod/photos.php:1106 +#: ../../mod/connedit.php:555 ../../mod/thing.php:284 ../../mod/thing.php:327 +#: ../../mod/pdledit.php:58 ../../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/fsuggest.php:108 +#: ../../mod/filestorage.php:146 ../../mod/group.php:81 +#: ../../mod/import.php:480 ../../mod/admin.php:412 ../../mod/admin.php:723 +#: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 +#: ../../mod/admin.php:1278 ../../mod/invite.php:142 ../../mod/locs.php:99 +#: ../../mod/mail.php:348 ../../mod/xchan.php:11 ../../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 @@ -3654,6 +3653,1436 @@ msgstr "" msgid "Set your current mood and tell your friends" msgstr "" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "" + +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "" + +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "" + +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" +msgstr "" + +#: ../../mod/mitem.php:24 ../../mod/menu.php:108 +msgid "Menu not found." +msgstr "" + +#: ../../mod/mitem.php:67 +msgid "Menu element updated." +msgstr "" + +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." +msgstr "" + +#: ../../mod/mitem.php:77 +msgid "Menu element added." +msgstr "" + +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." +msgstr "" + +#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "" + +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" +msgstr "" + +#: ../../mod/mitem.php:130 +msgid "Edit menu" +msgstr "" + +#: ../../mod/mitem.php:133 +msgid "Edit element" +msgstr "" + +#: ../../mod/mitem.php:134 +msgid "Drop element" +msgstr "" + +#: ../../mod/mitem.php:135 +msgid "New element" +msgstr "" + +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" +msgstr "" + +#: ../../mod/mitem.php:137 +msgid "Add menu element" +msgstr "" + +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" +msgstr "" + +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" +msgstr "" + +#: ../../mod/mitem.php:158 +msgid "New Menu Element" +msgstr "" + +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" +msgstr "" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1011 +msgid "(click to open/close)" +msgstr "" + +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" +msgstr "" + +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" +msgstr "" + +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "" + +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" +msgstr "" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" +msgstr "" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" +msgstr "" + +#: ../../mod/mitem.php:181 +msgid "Menu item not found." +msgstr "" + +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." +msgstr "" + +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." +msgstr "" + +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" +msgstr "" + +#: ../../mod/mitem.php:213 ../../mod/menu.php:130 +msgid "Modify" +msgstr "" + +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "" + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 +msgid "Profile not found." +msgstr "" + +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "" + +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "" + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "" + +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "" + +#: ../../mod/profiles.php:378 +msgid "Marital Status" +msgstr "" + +#: ../../mod/profiles.php:382 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:386 +msgid "Likes" +msgstr "" + +#: ../../mod/profiles.php:390 +msgid "Dislikes" +msgstr "" + +#: ../../mod/profiles.php:394 +msgid "Work/Employment" +msgstr "" + +#: ../../mod/profiles.php:397 +msgid "Religion" +msgstr "" + +#: ../../mod/profiles.php:401 +msgid "Political Views" +msgstr "" + +#: ../../mod/profiles.php:405 +msgid "Gender" +msgstr "" + +#: ../../mod/profiles.php:409 +msgid "Sexual Preference" +msgstr "" + +#: ../../mod/profiles.php:413 +msgid "Homepage" +msgstr "" + +#: ../../mod/profiles.php:417 +msgid "Interests" +msgstr "" + +#: ../../mod/profiles.php:421 ../../mod/admin.php:866 +msgid "Address" +msgstr "" + +#: ../../mod/profiles.php:428 ../../mod/pubsites.php:25 +msgid "Location" +msgstr "" + +#: ../../mod/profiles.php:511 +msgid "Profile updated." +msgstr "" + +#: ../../mod/profiles.php:590 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: ../../mod/profiles.php:591 ../../mod/api.php:105 ../../mod/settings.php:916 +#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/admin.php:392 +msgid "Yes" +msgstr "" + +#: ../../mod/profiles.php:592 ../../mod/api.php:106 ../../mod/settings.php:916 +#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/admin.php:390 +msgid "No" +msgstr "" + +#: ../../mod/profiles.php:632 +msgid "Edit Profile Details" +msgstr "" + +#: ../../mod/profiles.php:634 +msgid "View this profile" +msgstr "" + +#: ../../mod/profiles.php:636 +msgid "Change Profile Photo" +msgstr "" + +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" +msgstr "" + +#: ../../mod/profiles.php:638 +msgid "Clone this profile" +msgstr "" + +#: ../../mod/profiles.php:639 +msgid "Delete this profile" +msgstr "" + +#: ../../mod/profiles.php:641 +msgid "Import profile from file" +msgstr "" + +#: ../../mod/profiles.php:642 +msgid "Export profile to file" +msgstr "" + +#: ../../mod/profiles.php:643 +msgid "Profile Name:" +msgstr "" + +#: ../../mod/profiles.php:644 +msgid "Your Full Name:" +msgstr "" + +#: ../../mod/profiles.php:645 +msgid "Title/Description:" +msgstr "" + +#: ../../mod/profiles.php:646 +msgid "Your Gender:" +msgstr "" + +#: ../../mod/profiles.php:647 +msgid "Birthday :" +msgstr "" + +#: ../../mod/profiles.php:648 +msgid "Street Address:" +msgstr "" + +#: ../../mod/profiles.php:649 +msgid "Locality/City:" +msgstr "" + +#: ../../mod/profiles.php:650 +msgid "Postal/Zip Code:" +msgstr "" + +#: ../../mod/profiles.php:651 +msgid "Country:" +msgstr "" + +#: ../../mod/profiles.php:652 +msgid "Region/State:" +msgstr "" + +#: ../../mod/profiles.php:653 +msgid " Marital Status:" +msgstr "" + +#: ../../mod/profiles.php:654 +msgid "Who: (if applicable)" +msgstr "" + +#: ../../mod/profiles.php:655 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: ../../mod/profiles.php:656 +msgid "Since [date]:" +msgstr "" + +#: ../../mod/profiles.php:658 +msgid "Homepage URL:" +msgstr "" + +#: ../../mod/profiles.php:661 +msgid "Religious Views:" +msgstr "" + +#: ../../mod/profiles.php:662 +msgid "Keywords:" +msgstr "" + +#: ../../mod/profiles.php:665 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../mod/profiles.php:666 +msgid "Used in directory listings" +msgstr "" + +#: ../../mod/profiles.php:667 +msgid "Tell us about yourself..." +msgstr "" + +#: ../../mod/profiles.php:668 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../mod/profiles.php:669 +msgid "Contact information and Social Networks" +msgstr "" + +#: ../../mod/profiles.php:670 +msgid "My other channels" +msgstr "" + +#: ../../mod/profiles.php:671 +msgid "Musical interests" +msgstr "" + +#: ../../mod/profiles.php:672 +msgid "Books, literature" +msgstr "" + +#: ../../mod/profiles.php:673 +msgid "Television" +msgstr "" + +#: ../../mod/profiles.php:674 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: ../../mod/profiles.php:675 +msgid "Love/romance" +msgstr "" + +#: ../../mod/profiles.php:676 +msgid "Work/employment" +msgstr "" + +#: ../../mod/profiles.php:677 +msgid "School/education" +msgstr "" + +#: ../../mod/profiles.php:683 +msgid "This is your default profile." +msgstr "" + +#: ../../mod/profiles.php:694 ../../mod/directory.php:148 +msgid "Age: " +msgstr "" + +#: ../../mod/profiles.php:737 +msgid "Edit/Manage Profiles" +msgstr "" + +#: ../../mod/profiles.php:738 +msgid "Add profile things" +msgstr "" + +#: ../../mod/profiles.php:739 +msgid "Include desirable objects in your profile" +msgstr "" + +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "" + +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "" + +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "" + +#: ../../mod/connect.php:87 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +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:" +msgstr "" + +#: ../../mod/connect.php:90 +msgid "" +"Potential connections will then see the following text before proceeding:" +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." +msgstr "" + +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "" + +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "" + +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." +msgstr "" + +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "" + +#: ../../mod/setup.php:166 +msgid "Red Matrix Server - Setup" +msgstr "" + +#: ../../mod/setup.php:172 +msgid "Could not connect to database." +msgstr "" + +#: ../../mod/setup.php:176 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "" + +#: ../../mod/setup.php:183 +msgid "Could not create table." +msgstr "" + +#: ../../mod/setup.php:189 +msgid "Your site database has been installed." +msgstr "" + +#: ../../mod/setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "" + +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "" + +#: ../../mod/setup.php:261 +msgid "System check" +msgstr "" + +#: ../../mod/setup.php:265 ../../mod/events.php:434 ../../mod/photos.php:868 +msgid "Next" +msgstr "" + +#: ../../mod/setup.php:266 +msgid "Check again" +msgstr "" + +#: ../../mod/setup.php:289 +msgid "Database connection" +msgstr "" + +#: ../../mod/setup.php:290 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." +msgstr "" + +#: ../../mod/setup.php:291 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: ../../mod/setup.php:292 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: ../../mod/setup.php:296 +msgid "Database Server Name" +msgstr "" + +#: ../../mod/setup.php:296 +msgid "Default is localhost" +msgstr "" + +#: ../../mod/setup.php:297 +msgid "Database Port" +msgstr "" + +#: ../../mod/setup.php:297 +msgid "Communication port number - use 0 for default" +msgstr "" + +#: ../../mod/setup.php:298 +msgid "Database Login Name" +msgstr "" + +#: ../../mod/setup.php:299 +msgid "Database Login Password" +msgstr "" + +#: ../../mod/setup.php:300 +msgid "Database Name" +msgstr "" + +#: ../../mod/setup.php:301 +msgid "Database Type" +msgstr "" + +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "Site administrator email address" +msgstr "" + +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Website URL" +msgstr "" + +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Please use SSL (https) URL if available." +msgstr "" + +#: ../../mod/setup.php:307 ../../mod/setup.php:352 +msgid "Please select a default timezone for your website" +msgstr "" + +#: ../../mod/setup.php:335 +msgid "Site settings" +msgstr "" + +#: ../../mod/setup.php:395 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../mod/setup.php:396 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "" + +#: ../../mod/setup.php:400 +msgid "PHP executable path" +msgstr "" + +#: ../../mod/setup.php:400 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../mod/setup.php:405 +msgid "Command line PHP" +msgstr "" + +#: ../../mod/setup.php:414 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../mod/setup.php:415 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../mod/setup.php:417 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../mod/setup.php:438 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../mod/setup.php:439 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../mod/setup.php:441 +msgid "Generate encryption keys" +msgstr "" + +#: ../../mod/setup.php:448 +msgid "libCurl PHP module" +msgstr "" + +#: ../../mod/setup.php:449 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../mod/setup.php:450 +msgid "OpenSSL PHP module" +msgstr "" + +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" +msgstr "" + +#: ../../mod/setup.php:452 +msgid "mb_string PHP module" +msgstr "" + +#: ../../mod/setup.php:453 +msgid "mcrypt PHP module" +msgstr "" + +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../mod/setup.php:458 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../mod/setup.php:464 ../../mod/setup.php:467 +msgid "proc_open" +msgstr "" + +#: ../../mod/setup.php:464 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "" + +#: ../../mod/setup.php:472 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../mod/setup.php:476 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../mod/setup.php:480 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "" + +#: ../../mod/setup.php:488 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../mod/setup.php:492 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: ../../mod/setup.php:508 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" + +#: ../../mod/setup.php:509 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: ../../mod/setup.php:510 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "" + +#: ../../mod/setup.php:511 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/setup.php:514 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../mod/setup.php:524 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../mod/setup.php:525 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." +msgstr "" + +#: ../../mod/setup.php:526 ../../mod/setup.php:544 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." +msgstr "" + +#: ../../mod/setup.php:527 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "" + +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" +msgstr "" + +#: ../../mod/setup.php:543 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to " +"have write access to the store directory under the Red top level folder" +msgstr "" + +#: ../../mod/setup.php:547 +msgid "store is writable" +msgstr "" + +#: ../../mod/setup.php:577 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." +msgstr "" + +#: ../../mod/setup.php:578 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "" + +#: ../../mod/setup.php:579 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "" + +#: ../../mod/setup.php:580 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "" + +#: ../../mod/setup.php:581 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "" + +#: ../../mod/setup.php:582 +msgid "" +"Providers are available that issue free certificates which are browser-valid." +msgstr "" + +#: ../../mod/setup.php:584 +msgid "SSL certificate validation" +msgstr "" + +#: ../../mod/setup.php:590 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr "" + +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" +msgstr "" + +#: ../../mod/setup.php:602 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: ../../mod/setup.php:626 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../mod/setup.php:661 +msgid "

      What next

      " +msgstr "" + +#: ../../mod/setup.php:662 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: ../../mod/siteinfo.php:90 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: ../../mod/siteinfo.php:132 +msgid "Red" +msgstr "" + +#: ../../mod/siteinfo.php:133 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "" + +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" +msgstr "" + +#: ../../mod/siteinfo.php:138 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "" + +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../mod/siteinfo.php:142 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +msgstr "" + +#: ../../mod/siteinfo.php:144 +msgid "Site Administrators" +msgstr "" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +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?" +msgstr "" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "" + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "" + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "" + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "" + +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "" + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "" + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "" + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "" + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "" + +#: ../../mod/blocks.php:99 +msgid "Block Name" +msgstr "" + +#: ../../mod/search.php:13 ../../mod/directory.php:15 ../../mod/photos.php:458 +#: ../../mod/display.php:9 ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "" + +#: ../../mod/directory.php:161 +msgid "Gender: " +msgstr "" + +#: ../../mod/directory.php:163 +msgid "Status: " +msgstr "" + +#: ../../mod/directory.php:165 +msgid "Homepage: " +msgstr "" + +#: ../../mod/directory.php:168 +msgid "Hometown: " +msgstr "" + +#: ../../mod/directory.php:170 +msgid "About: " +msgstr "" + +#: ../../mod/directory.php:225 +msgid "Public Forum:" +msgstr "" + +#: ../../mod/directory.php:228 +msgid "Keywords: " +msgstr "" + +#: ../../mod/directory.php:268 +msgid "Finding:" +msgstr "" + +#: ../../mod/directory.php:273 +msgid "next page" +msgstr "" + +#: ../../mod/directory.php:273 +msgid "previous page" +msgstr "" + +#: ../../mod/directory.php:290 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "" + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "" + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "" + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "" + +#: ../../mod/register.php:207 ../../mod/admin.php:413 +msgid "Registration" +msgstr "" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "" + +#: ../../mod/events.php:81 +msgid "Event can not end before it has started." +msgstr "" + +#: ../../mod/events.php:86 +msgid "Event title and start time are required." +msgstr "" + +#: ../../mod/events.php:100 +msgid "Event not found." +msgstr "" + +#: ../../mod/events.php:364 +msgid "l, F j" +msgstr "" + +#: ../../mod/events.php:386 +msgid "Edit event" +msgstr "" + +#: ../../mod/events.php:432 +msgid "Create New Event" +msgstr "" + +#: ../../mod/events.php:433 ../../mod/photos.php:859 +msgid "Previous" +msgstr "" + +#: ../../mod/events.php:560 +msgid "Event details" +msgstr "" + +#: ../../mod/events.php:561 +msgid "Starting date and Title are required." +msgstr "" + +#: ../../mod/events.php:565 +msgid "Event Starts:" +msgstr "" + +#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" +msgstr "" + +#: ../../mod/events.php:571 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: ../../mod/events.php:573 +msgid "Event Finishes:" +msgstr "" + +#: ../../mod/events.php:575 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../mod/events.php:577 +msgid "Description:" +msgstr "" + +#: ../../mod/events.php:581 +msgid "Title:" +msgstr "" + +#: ../../mod/events.php:583 +msgid "Share this event" +msgstr "" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in " +"the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "" + +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "" + +#: ../../mod/network.php:118 +msgid "Search Results For:" +msgstr "" + +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "" + +#: ../../mod/network.php:180 +msgid "Collection: " +msgstr "" + +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "" + +#: ../../mod/network.php:196 +msgid "Invalid connection." +msgstr "" + +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "" + +#: ../../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/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "" + +#: ../../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/removeme.php:61 +msgid "Remove Channel" +msgstr "" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "" + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "" + +#: ../../mod/common.php:44 +msgid "No connections in common." +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." +msgstr "" + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "" + +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "" + +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "" + #: ../../mod/photos.php:77 msgid "Page owner information could not be retrieved." msgstr "" @@ -3662,286 +5091,805 @@ msgstr "" msgid "Album not found." msgstr "" -#: ../../mod/photos.php:119 ../../mod/photos.php:670 +#: ../../mod/photos.php:119 ../../mod/photos.php:672 msgid "Delete Album" msgstr "" -#: ../../mod/photos.php:159 ../../mod/photos.php:954 +#: ../../mod/photos.php:159 ../../mod/photos.php:957 msgid "Delete Photo" msgstr "" -#: ../../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:470 +#: ../../mod/photos.php:469 msgid "No photos selected" msgstr "" -#: ../../mod/photos.php:514 +#: ../../mod/photos.php:513 msgid "Access to this item is restricted." msgstr "" -#: ../../mod/photos.php:553 +#: ../../mod/photos.php:552 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../mod/photos.php:556 +#: ../../mod/photos.php:555 #, php-format msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../mod/photos.php:580 +#: ../../mod/photos.php:579 msgid "Upload Photos" msgstr "" -#: ../../mod/photos.php:584 ../../mod/photos.php:663 ../../mod/photos.php:941 +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 msgid "Enter a new album name" msgstr "" -#: ../../mod/photos.php:585 ../../mod/photos.php:664 ../../mod/photos.php:942 +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../mod/photos.php:586 +#: ../../mod/photos.php:585 msgid "Do not show a status post for this upload" msgstr "" -#: ../../mod/photos.php:614 +#: ../../mod/photos.php:613 msgid "Album name could not be decoded" msgstr "" -#: ../../mod/photos.php:652 ../../mod/photos.php:1163 -#: ../../mod/photos.php:1178 +#: ../../mod/photos.php:654 ../../mod/photos.php:1166 +#: ../../mod/photos.php:1182 msgid "Contact Photos" msgstr "" -#: ../../mod/photos.php:676 +#: ../../mod/photos.php:678 msgid "Show Newest First" msgstr "" -#: ../../mod/photos.php:678 +#: ../../mod/photos.php:680 msgid "Show Oldest First" msgstr "" -#: ../../mod/photos.php:705 ../../mod/photos.php:1210 +#: ../../mod/photos.php:707 ../../mod/photos.php:1214 msgid "View Photo" msgstr "" -#: ../../mod/photos.php:734 +#: ../../mod/photos.php:736 msgid "Edit Album" msgstr "" -#: ../../mod/photos.php:779 +#: ../../mod/photos.php:781 msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/photos.php:781 +#: ../../mod/photos.php:783 msgid "Photo not available" msgstr "" -#: ../../mod/photos.php:839 +#: ../../mod/photos.php:841 msgid "Use as profile photo" msgstr "" -#: ../../mod/photos.php:846 +#: ../../mod/photos.php:848 msgid "Private Photo" msgstr "" -#: ../../mod/photos.php:857 ../../mod/events.php:433 -msgid "Previous" -msgstr "" - -#: ../../mod/photos.php:861 +#: ../../mod/photos.php:863 msgid "View Full Size" msgstr "" -#: ../../mod/photos.php:866 ../../mod/events.php:434 ../../mod/setup.php:261 -msgid "Next" -msgstr "" - -#: ../../mod/photos.php:903 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 +#: ../../mod/photos.php:905 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 msgid "Remove" msgstr "" -#: ../../mod/photos.php:935 +#: ../../mod/photos.php:937 msgid "Edit photo" msgstr "" -#: ../../mod/photos.php:937 +#: ../../mod/photos.php:939 msgid "Rotate CW (right)" msgstr "" -#: ../../mod/photos.php:938 +#: ../../mod/photos.php:940 msgid "Rotate CCW (left)" msgstr "" -#: ../../mod/photos.php:945 +#: ../../mod/photos.php:947 msgid "Caption" msgstr "" -#: ../../mod/photos.php:947 +#: ../../mod/photos.php:949 msgid "Add a Tag" msgstr "" -#: ../../mod/photos.php:950 +#: ../../mod/photos.php:953 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../mod/photos.php:952 +#: ../../mod/photos.php:955 msgid "Flag as adult in album view" msgstr "" -#: ../../mod/photos.php:1129 +#: ../../mod/photos.php:1132 msgid "In This Photo:" msgstr "" -#: ../../mod/photos.php:1216 +#: ../../mod/photos.php:1220 msgid "View Album" msgstr "" -#: ../../mod/photos.php:1239 +#: ../../mod/photos.php:1243 msgid "Recent Photos" msgstr "" -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." +#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +msgid "Could not access contact record." msgstr "" -#: ../../mod/mitem.php:47 -msgid "Menu element updated." +#: ../../mod/connections.php:51 ../../mod/connedit.php:86 +msgid "Could not locate selected profile." msgstr "" -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." +#: ../../mod/connections.php:94 ../../mod/connedit.php:140 +msgid "Connection updated." msgstr "" -#: ../../mod/mitem.php:57 -msgid "Menu element added." +#: ../../mod/connections.php:96 ../../mod/connedit.php:142 +msgid "Failed to update connection record." msgstr "" -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." +#: ../../mod/connections.php:191 ../../mod/connections.php:292 +msgid "Blocked" msgstr "" -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:38 -msgid "Not found." +#: ../../mod/connections.php:196 ../../mod/connections.php:299 +msgid "Ignored" msgstr "" -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" +#: ../../mod/connections.php:201 ../../mod/connections.php:313 +msgid "Hidden" msgstr "" -#: ../../mod/mitem.php:99 -msgid "Edit menu" +#: ../../mod/connections.php:206 ../../mod/connections.php:306 +msgid "Archived" msgstr "" -#: ../../mod/mitem.php:102 -msgid "Edit element" +#: ../../mod/connections.php:230 ../../mod/connections.php:245 +msgid "All" msgstr "" -#: ../../mod/mitem.php:103 -msgid "Drop element" +#: ../../mod/connections.php:270 +msgid "Suggest new connections" msgstr "" -#: ../../mod/mitem.php:104 -msgid "New element" +#: ../../mod/connections.php:273 +msgid "New Connections" msgstr "" -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" +#: ../../mod/connections.php:276 +msgid "Show pending (new) connections" msgstr "" -#: ../../mod/mitem.php:106 -msgid "Add menu element" +#: ../../mod/connections.php:282 +msgid "Show all connections" msgstr "" -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" +#: ../../mod/connections.php:285 +msgid "Unblocked" msgstr "" -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" +#: ../../mod/connections.php:288 +msgid "Only show unblocked connections" msgstr "" -#: ../../mod/mitem.php:131 -msgid "New Menu Element" +#: ../../mod/connections.php:295 +msgid "Only show blocked connections" msgstr "" -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" +#: ../../mod/connections.php:302 +msgid "Only show ignored connections" msgstr "" -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:1011 -msgid "(click to open/close)" +#: ../../mod/connections.php:309 +msgid "Only show archived connections" msgstr "" -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" +#: ../../mod/connections.php:316 +msgid "Only show hidden connections" msgstr "" -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" +#: ../../mod/connections.php:371 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" +#: ../../mod/connections.php:372 +msgid "Edit connection" msgstr "" -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" +#: ../../mod/connections.php:410 +msgid "Search your connections" msgstr "" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" +#: ../../mod/connections.php:411 +msgid "Finding: " msgstr "" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../mod/mitem.php:154 -msgid "Menu item not found." +#: ../../mod/manage.php:144 +msgid "Create a new channel" msgstr "" -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." +#: ../../mod/manage.php:149 +msgid "Current Channel" msgstr "" -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." msgstr "" -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" +#: ../../mod/manage.php:152 +msgid "Default Channel" msgstr "" -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" +#: ../../mod/manage.php:153 +msgid "Make Default" msgstr "" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" +#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 +msgid "Edit post" msgstr "" -#: ../../mod/ping.php:255 +#: ../../mod/connedit.php:189 +msgid "is now connected to" +msgstr "" + +#: ../../mod/connedit.php:310 +msgid "Could not access address book record." +msgstr "" + +#: ../../mod/connedit.php:324 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../mod/connedit.php:331 +msgid "Channel has been unblocked" +msgstr "" + +#: ../../mod/connedit.php:332 +msgid "Channel has been blocked" +msgstr "" + +#: ../../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:343 +msgid "Channel has been unignored" +msgstr "" + +#: ../../mod/connedit.php:344 +msgid "Channel has been ignored" +msgstr "" + +#: ../../mod/connedit.php:355 +msgid "Channel has been unarchived" +msgstr "" + +#: ../../mod/connedit.php:356 +msgid "Channel has been archived" +msgstr "" + +#: ../../mod/connedit.php:367 +msgid "Channel has been unhidden" +msgstr "" + +#: ../../mod/connedit.php:368 +msgid "Channel has been hidden" +msgstr "" + +#: ../../mod/connedit.php:383 +msgid "Channel has been approved" +msgstr "" + +#: ../../mod/connedit.php:384 +msgid "Channel has been unapproved" +msgstr "" + +#: ../../mod/connedit.php:412 +msgid "Connection has been removed." +msgstr "" + +#: ../../mod/connedit.php:432 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../mod/connedit.php:436 +msgid "Refresh Permissions" +msgstr "" + +#: ../../mod/connedit.php:439 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../mod/connedit.php:443 +msgid "Recent Activity" +msgstr "" + +#: ../../mod/connedit.php:446 +msgid "View recent posts and comments" +msgstr "" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:732 +msgid "Unblock" +msgstr "" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:731 +msgid "Block" +msgstr "" + +#: ../../mod/connedit.php:453 +msgid "Block or Unblock this connection" +msgstr "" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +msgid "Unignore" +msgstr "" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "" + +#: ../../mod/connedit.php:460 +msgid "Ignore or Unignore this connection" +msgstr "" + +#: ../../mod/connedit.php:463 +msgid "Unarchive" +msgstr "" + +#: ../../mod/connedit.php:463 +msgid "Archive" +msgstr "" + +#: ../../mod/connedit.php:466 +msgid "Archive or Unarchive this connection" +msgstr "" + +#: ../../mod/connedit.php:469 +msgid "Unhide" +msgstr "" + +#: ../../mod/connedit.php:469 +msgid "Hide" +msgstr "" + +#: ../../mod/connedit.php:472 +msgid "Hide or Unhide this connection" +msgstr "" + +#: ../../mod/connedit.php:479 +msgid "Delete this connection" +msgstr "" + +#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 +msgid "Approve this connection" +msgstr "" + +#: ../../mod/connedit.php:522 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../mod/connedit.php:538 +#, php-format +msgid "Connections: settings for %s" +msgstr "" + +#: ../../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:545 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../mod/connedit.php:551 +msgid "inherited" +msgstr "" + +#: ../../mod/connedit.php:553 +msgid "Connection has no individual permissions!" +msgstr "" + +#: ../../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:556 +msgid "Profile Visibility" +msgstr "" + +#: ../../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:558 +msgid "Contact Information / Notes" +msgstr "" + +#: ../../mod/connedit.php:559 +msgid "Edit contact notes" +msgstr "" + +#: ../../mod/connedit.php:561 +msgid "Their Settings" +msgstr "" + +#: ../../mod/connedit.php:562 +msgid "My Settings" +msgstr "" + +#: ../../mod/connedit.php:564 +msgid "Clear/Disable Automatic Permissions" +msgstr "" + +#: ../../mod/connedit.php:565 +msgid "Forum Members" +msgstr "" + +#: ../../mod/connedit.php:566 +msgid "Soapbox" +msgstr "" + +#: ../../mod/connedit.php:567 +msgid "Full Sharing (typical social network permissions)" +msgstr "" + +#: ../../mod/connedit.php:568 +msgid "Cautious Sharing " +msgstr "" + +#: ../../mod/connedit.php:569 +msgid "Follow Only" +msgstr "" + +#: ../../mod/connedit.php:570 +msgid "Individual Permissions" +msgstr "" + +#: ../../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:572 +msgid "Advanced Permissions" +msgstr "" + +#: ../../mod/connedit.php:573 +msgid "Simple Permissions (select one and submit)" +msgstr "" + +#: ../../mod/connedit.php:577 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "" + +#: ../../mod/connedit.php:578 +msgid "Block/Unblock contact" +msgstr "" + +#: ../../mod/connedit.php:579 +msgid "Ignore contact" +msgstr "" + +#: ../../mod/connedit.php:580 +msgid "Repair URL settings" +msgstr "" + +#: ../../mod/connedit.php:581 +msgid "View conversations" +msgstr "" + +#: ../../mod/connedit.php:583 +msgid "Delete contact" +msgstr "" + +#: ../../mod/connedit.php:586 +msgid "Last update:" +msgstr "" + +#: ../../mod/connedit.php:588 +msgid "Update public posts" +msgstr "" + +#: ../../mod/connedit.php:590 +msgid "Update now" +msgstr "" + +#: ../../mod/connedit.php:596 +msgid "Currently blocked" +msgstr "" + +#: ../../mod/connedit.php:597 +msgid "Currently ignored" +msgstr "" + +#: ../../mod/connedit.php:598 +msgid "Currently archived" +msgstr "" + +#: ../../mod/connedit.php:599 +msgid "Currently pending" +msgstr "" + +#: ../../mod/connedit.php:600 +msgid "Hide this contact from others" +msgstr "" + +#: ../../mod/connedit.php:600 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "" + +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "" + +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "" + +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "" + +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "" + +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "" + +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "" + +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "" + +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "" + +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "" + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../mod/lostpass.php:85 ../../boot.php:1494 +msgid "Password Reset" +msgstr "" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "" + +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "" + +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "" + +#: ../../mod/ping.php:257 msgid "sent you a private message" msgstr "" -#: ../../mod/ping.php:306 +#: ../../mod/ping.php:308 msgid "added your channel" msgstr "" -#: ../../mod/ping.php:347 +#: ../../mod/ping.php:349 msgid "posted an event" msgstr "" -#: ../../mod/acl.php:244 -msgid "network" +#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 +#: ../../mod/editlayout.php:78 ../../mod/editpost.php:20 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "" + +#: ../../mod/editblock.php:115 +msgid "Edit Block" +msgstr "" + +#: ../../mod/editblock.php:125 +msgid "Delete block?" +msgstr "" + +#: ../../mod/editblock.php:147 ../../mod/editlayout.php:143 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" +msgstr "" + +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:144 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" +msgstr "" + +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:145 +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" +msgstr "" + +#: ../../mod/editblock.php:183 +msgid "Delete Block" +msgstr "" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "" + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "" + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" +msgstr "" + +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" +msgstr "" + +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" +msgstr "" + +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" +msgstr "" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" msgstr "" #: ../../mod/settings.php:73 @@ -4102,7 +6050,7 @@ msgstr "" msgid "Connector Settings" msgstr "" -#: ../../mod/settings.php:743 ../../mod/admin.php:362 +#: ../../mod/settings.php:743 msgid "No special theme for mobile devices" msgstr "" @@ -4191,18 +6139,6 @@ msgstr "" msgid "Publish your default profile in the network directory" msgstr "" -#: ../../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: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:921 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" @@ -4480,1757 +6416,15 @@ msgstr "" msgid "Remove this channel" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -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?" -msgstr "" - -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." -msgstr "" - -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "" - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "" - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "" - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "" - -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "" - -#: ../../mod/siteinfo.php:90 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../mod/siteinfo.php:111 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/siteinfo.php:124 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/siteinfo.php:132 -msgid "Red" -msgstr "" - -#: ../../mod/siteinfo.php:133 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "" - -#: ../../mod/siteinfo.php:137 -msgid "Running at web location" -msgstr "" - -#: ../../mod/siteinfo.php:138 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "" - -#: ../../mod/siteinfo.php:139 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:142 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" -msgstr "" - -#: ../../mod/siteinfo.php:144 -msgid "Site Administrators" -msgstr "" - -#: ../../mod/blocks.php:62 -msgid "Block Name" -msgstr "" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:547 -msgid "Profile not found." -msgstr "" - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "" - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "" - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "" - -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "" - -#: ../../mod/profiles.php:362 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:366 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:370 -msgid "Likes" -msgstr "" - -#: ../../mod/profiles.php:374 -msgid "Dislikes" -msgstr "" - -#: ../../mod/profiles.php:378 -msgid "Work/Employment" -msgstr "" - -#: ../../mod/profiles.php:381 -msgid "Religion" -msgstr "" - -#: ../../mod/profiles.php:385 -msgid "Political Views" -msgstr "" - -#: ../../mod/profiles.php:389 -msgid "Gender" -msgstr "" - -#: ../../mod/profiles.php:393 -msgid "Sexual Preference" -msgstr "" - -#: ../../mod/profiles.php:397 -msgid "Homepage" -msgstr "" - -#: ../../mod/profiles.php:401 -msgid "Interests" -msgstr "" - -#: ../../mod/profiles.php:405 ../../mod/admin.php:868 -msgid "Address" -msgstr "" - -#: ../../mod/profiles.php:412 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "" - -#: ../../mod/profiles.php:495 -msgid "Profile updated." -msgstr "" - -#: ../../mod/profiles.php:572 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: ../../mod/profiles.php:614 -msgid "Edit Profile Details" -msgstr "" - -#: ../../mod/profiles.php:616 -msgid "View this profile" -msgstr "" - -#: ../../mod/profiles.php:618 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:619 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../mod/profiles.php:620 -msgid "Clone this profile" -msgstr "" - -#: ../../mod/profiles.php:621 -msgid "Delete this profile" -msgstr "" - -#: ../../mod/profiles.php:623 -msgid "Import profile from file" -msgstr "" - -#: ../../mod/profiles.php:624 -msgid "Export profile to file" -msgstr "" - -#: ../../mod/profiles.php:625 -msgid "Profile Name:" -msgstr "" - -#: ../../mod/profiles.php:626 -msgid "Your Full Name:" -msgstr "" - -#: ../../mod/profiles.php:627 -msgid "Title/Description:" -msgstr "" - -#: ../../mod/profiles.php:628 -msgid "Your Gender:" -msgstr "" - -#: ../../mod/profiles.php:629 -msgid "Birthday :" -msgstr "" - -#: ../../mod/profiles.php:630 -msgid "Street Address:" -msgstr "" - -#: ../../mod/profiles.php:631 -msgid "Locality/City:" -msgstr "" - -#: ../../mod/profiles.php:632 -msgid "Postal/Zip Code:" -msgstr "" - -#: ../../mod/profiles.php:633 -msgid "Country:" -msgstr "" - -#: ../../mod/profiles.php:634 -msgid "Region/State:" -msgstr "" - -#: ../../mod/profiles.php:635 -msgid " Marital Status:" -msgstr "" - -#: ../../mod/profiles.php:636 -msgid "Who: (if applicable)" -msgstr "" - -#: ../../mod/profiles.php:637 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: ../../mod/profiles.php:638 -msgid "Since [date]:" -msgstr "" - -#: ../../mod/profiles.php:640 -msgid "Homepage URL:" -msgstr "" - -#: ../../mod/profiles.php:643 -msgid "Religious Views:" -msgstr "" - -#: ../../mod/profiles.php:644 -msgid "Keywords:" -msgstr "" - -#: ../../mod/profiles.php:647 -msgid "Example: fishing photography software" -msgstr "" - -#: ../../mod/profiles.php:648 -msgid "Used in directory listings" -msgstr "" - -#: ../../mod/profiles.php:649 -msgid "Tell us about yourself..." -msgstr "" - -#: ../../mod/profiles.php:650 -msgid "Hobbies/Interests" -msgstr "" - -#: ../../mod/profiles.php:651 -msgid "Contact information and Social Networks" -msgstr "" - -#: ../../mod/profiles.php:652 -msgid "My other channels" -msgstr "" - -#: ../../mod/profiles.php:653 -msgid "Musical interests" -msgstr "" - -#: ../../mod/profiles.php:654 -msgid "Books, literature" -msgstr "" - -#: ../../mod/profiles.php:655 -msgid "Television" -msgstr "" - -#: ../../mod/profiles.php:656 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: ../../mod/profiles.php:657 -msgid "Love/romance" -msgstr "" - -#: ../../mod/profiles.php:658 -msgid "Work/employment" -msgstr "" - -#: ../../mod/profiles.php:659 -msgid "School/education" -msgstr "" - -#: ../../mod/profiles.php:665 -msgid "This is your default profile." -msgstr "" - -#: ../../mod/profiles.php:676 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "" - -#: ../../mod/profiles.php:719 -msgid "Edit/Manage Profiles" -msgstr "" - -#: ../../mod/profiles.php:720 -msgid "Add profile things" -msgstr "" - -#: ../../mod/profiles.php:721 -msgid "Include desirable objects in your profile" -msgstr "" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "" - -#: ../../mod/events.php:81 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../mod/events.php:86 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:100 -msgid "Event not found." -msgstr "" - -#: ../../mod/events.php:364 -msgid "l, F j" -msgstr "" - -#: ../../mod/events.php:386 -msgid "Edit event" -msgstr "" - -#: ../../mod/events.php:432 -msgid "Create New Event" -msgstr "" - -#: ../../mod/events.php:560 -msgid "Event details" -msgstr "" - -#: ../../mod/events.php:561 -msgid "Starting date and Title are required." -msgstr "" - -#: ../../mod/events.php:565 -msgid "Event Starts:" -msgstr "" - -#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "" - -#: ../../mod/events.php:571 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: ../../mod/events.php:573 -msgid "Event Finishes:" -msgstr "" - -#: ../../mod/events.php:575 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../mod/events.php:577 -msgid "Description:" -msgstr "" - -#: ../../mod/events.php:581 -msgid "Title:" -msgstr "" - -#: ../../mod/events.php:583 -msgid "Share this event" -msgstr "" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in " -"the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "" - -#: ../../mod/register.php:42 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:48 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../mod/register.php:82 -msgid "Passwords do not match." -msgstr "" - -#: ../../mod/register.php:115 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "" - -#: ../../mod/register.php:121 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:124 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:161 -msgid "Registration on this site/hub is by approval only." -msgstr "" - -#: ../../mod/register.php:162 -msgid "Register at another affiliated site/hub" -msgstr "" - -#: ../../mod/register.php:170 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:181 -msgid "Terms of Service" -msgstr "" - -#: ../../mod/register.php:187 -#, php-format -msgid "I accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:189 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:203 ../../mod/admin.php:415 -msgid "Registration" -msgstr "" - -#: ../../mod/register.php:208 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../mod/register.php:209 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../mod/register.php:212 -msgid "Your email address" -msgstr "" - -#: ../../mod/register.php:213 -msgid "Choose a password" -msgstr "" - -#: ../../mod/register.php:214 -msgid "Please re-enter your password" -msgstr "" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "" - -#: ../../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/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../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/removeme.php:61 -msgid "Remove Channel" -msgstr "" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "" - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "" - -#: ../../mod/common.php:44 -msgid "No connections in common." -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." -msgstr "" - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "" - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -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:" -msgstr "" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -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." -msgstr "" - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "" - -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "" - -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "" - -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "" - -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "" - -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "" - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." -msgstr "" - -#: ../../mod/connections.php:51 ../../mod/connedit.php:86 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../mod/connections.php:94 ../../mod/connedit.php:140 -msgid "Connection updated." -msgstr "" - -#: ../../mod/connections.php:96 ../../mod/connedit.php:142 -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 [%2$s]" -msgstr "" - -#: ../../mod/connections.php:372 -msgid "Edit connection" -msgstr "" - -#: ../../mod/connections.php:410 -msgid "Search your connections" -msgstr "" - -#: ../../mod/connections.php:411 -msgid "Finding: " -msgstr "" - -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "" - -#: ../../mod/connedit.php:189 -msgid "is now connected to" -msgstr "" - -#: ../../mod/connedit.php:310 -msgid "Could not access address book record." -msgstr "" - -#: ../../mod/connedit.php:324 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" - -#: ../../mod/connedit.php:331 -msgid "Channel has been unblocked" -msgstr "" - -#: ../../mod/connedit.php:332 -msgid "Channel has been blocked" -msgstr "" - -#: ../../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:343 -msgid "Channel has been unignored" -msgstr "" - -#: ../../mod/connedit.php:344 -msgid "Channel has been ignored" -msgstr "" - -#: ../../mod/connedit.php:355 -msgid "Channel has been unarchived" -msgstr "" - -#: ../../mod/connedit.php:356 -msgid "Channel has been archived" -msgstr "" - -#: ../../mod/connedit.php:367 -msgid "Channel has been unhidden" -msgstr "" - -#: ../../mod/connedit.php:368 -msgid "Channel has been hidden" -msgstr "" - -#: ../../mod/connedit.php:383 -msgid "Channel has been approved" -msgstr "" - -#: ../../mod/connedit.php:384 -msgid "Channel has been unapproved" -msgstr "" - -#: ../../mod/connedit.php:412 -msgid "Connection has been removed." -msgstr "" - -#: ../../mod/connedit.php:432 -#, php-format -msgid "View %s's profile" -msgstr "" - -#: ../../mod/connedit.php:436 -msgid "Refresh Permissions" -msgstr "" - -#: ../../mod/connedit.php:439 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../mod/connedit.php:443 -msgid "Recent Activity" -msgstr "" - -#: ../../mod/connedit.php:446 -msgid "View recent posts and comments" -msgstr "" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 -#: ../../mod/admin.php:734 -msgid "Unblock" -msgstr "" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 -#: ../../mod/admin.php:733 -msgid "Block" -msgstr "" - -#: ../../mod/connedit.php:453 -msgid "Block or Unblock this connection" -msgstr "" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 -msgid "Unignore" -msgstr "" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "" - -#: ../../mod/connedit.php:460 -msgid "Ignore or Unignore this connection" -msgstr "" - -#: ../../mod/connedit.php:463 -msgid "Unarchive" -msgstr "" - -#: ../../mod/connedit.php:463 -msgid "Archive" -msgstr "" - -#: ../../mod/connedit.php:466 -msgid "Archive or Unarchive this connection" -msgstr "" - -#: ../../mod/connedit.php:469 -msgid "Unhide" -msgstr "" - -#: ../../mod/connedit.php:469 -msgid "Hide" -msgstr "" - -#: ../../mod/connedit.php:472 -msgid "Hide or Unhide this connection" -msgstr "" - -#: ../../mod/connedit.php:479 -msgid "Delete this connection" -msgstr "" - -#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 -msgid "Approve this connection" -msgstr "" - -#: ../../mod/connedit.php:522 -msgid "Accept connection to allow communication" -msgstr "" - -#: ../../mod/connedit.php:538 -#, php-format -msgid "Connections: settings for %s" -msgstr "" - -#: ../../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:545 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../mod/connedit.php:551 -msgid "inherited" -msgstr "" - -#: ../../mod/connedit.php:553 -msgid "Connection has no individual permissions!" -msgstr "" - -#: ../../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:556 -msgid "Profile Visibility" -msgstr "" - -#: ../../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:558 -msgid "Contact Information / Notes" -msgstr "" - -#: ../../mod/connedit.php:559 -msgid "Edit contact notes" -msgstr "" - -#: ../../mod/connedit.php:561 -msgid "Their Settings" -msgstr "" - -#: ../../mod/connedit.php:562 -msgid "My Settings" -msgstr "" - -#: ../../mod/connedit.php:564 -msgid "Clear/Disable Automatic Permissions" -msgstr "" - -#: ../../mod/connedit.php:565 -msgid "Forum Members" -msgstr "" - -#: ../../mod/connedit.php:566 -msgid "Soapbox" -msgstr "" - -#: ../../mod/connedit.php:567 -msgid "Full Sharing (typical social network permissions)" -msgstr "" - -#: ../../mod/connedit.php:568 -msgid "Cautious Sharing " -msgstr "" - -#: ../../mod/connedit.php:569 -msgid "Follow Only" -msgstr "" - -#: ../../mod/connedit.php:570 -msgid "Individual Permissions" -msgstr "" - -#: ../../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:572 -msgid "Advanced Permissions" -msgstr "" - -#: ../../mod/connedit.php:573 -msgid "Simple Permissions (select one and submit)" -msgstr "" - -#: ../../mod/connedit.php:577 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "" - -#: ../../mod/connedit.php:578 -msgid "Block/Unblock contact" -msgstr "" - -#: ../../mod/connedit.php:579 -msgid "Ignore contact" -msgstr "" - -#: ../../mod/connedit.php:580 -msgid "Repair URL settings" -msgstr "" - -#: ../../mod/connedit.php:581 -msgid "View conversations" -msgstr "" - -#: ../../mod/connedit.php:583 -msgid "Delete contact" -msgstr "" - -#: ../../mod/connedit.php:586 -msgid "Last update:" -msgstr "" - -#: ../../mod/connedit.php:588 -msgid "Update public posts" -msgstr "" - -#: ../../mod/connedit.php:590 -msgid "Update now" -msgstr "" - -#: ../../mod/connedit.php:596 -msgid "Currently blocked" -msgstr "" - -#: ../../mod/connedit.php:597 -msgid "Currently ignored" -msgstr "" - -#: ../../mod/connedit.php:598 -msgid "Currently archived" -msgstr "" - -#: ../../mod/connedit.php:599 -msgid "Currently pending" -msgstr "" - -#: ../../mod/connedit.php:600 -msgid "Hide this contact from others" -msgstr "" - -#: ../../mod/connedit.php:600 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "" - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -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." -msgstr "" - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "" - -#: ../../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/bookmarks.php:38 -msgid "Bookmark added" -msgstr "" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -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/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "" - -#: ../../mod/setup.php:162 -msgid "Red Matrix Server - Setup" -msgstr "" - -#: ../../mod/setup.php:168 -msgid "Could not connect to database." -msgstr "" - -#: ../../mod/setup.php:172 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "" - -#: ../../mod/setup.php:179 -msgid "Could not create table." -msgstr "" - -#: ../../mod/setup.php:185 -msgid "Your site database has been installed." -msgstr "" - -#: ../../mod/setup.php:190 -msgid "" -"You may need to import the file \"install/database.sql\" manually using " -"phpmyadmin or mysql." -msgstr "" - -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" - -#: ../../mod/setup.php:257 -msgid "System check" -msgstr "" - -#: ../../mod/setup.php:262 -msgid "Check again" -msgstr "" - -#: ../../mod/setup.php:284 -msgid "Database connection" -msgstr "" - -#: ../../mod/setup.php:285 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." -msgstr "" - -#: ../../mod/setup.php:286 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: ../../mod/setup.php:287 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: ../../mod/setup.php:291 -msgid "Database Server Name" -msgstr "" - -#: ../../mod/setup.php:291 -msgid "Default is localhost" -msgstr "" - -#: ../../mod/setup.php:292 -msgid "Database Port" -msgstr "" - -#: ../../mod/setup.php:292 -msgid "Communication port number - use 0 for default" -msgstr "" - -#: ../../mod/setup.php:293 -msgid "Database Login Name" -msgstr "" - -#: ../../mod/setup.php:294 -msgid "Database Login Password" -msgstr "" - -#: ../../mod/setup.php:295 -msgid "Database Name" -msgstr "" - -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "Site administrator email address" -msgstr "" - -#: ../../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 "" - -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Website URL" -msgstr "" - -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Please use SSL (https) URL if available." -msgstr "" - -#: ../../mod/setup.php:301 ../../mod/setup.php:344 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../mod/setup.php:328 -msgid "Site settings" -msgstr "" - -#: ../../mod/setup.php:387 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../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 "" - -#: ../../mod/setup.php:392 -msgid "PHP executable path" -msgstr "" - -#: ../../mod/setup.php:392 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../mod/setup.php:397 -msgid "Command line PHP" -msgstr "" - -#: ../../mod/setup.php:406 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../mod/setup.php:407 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../mod/setup.php:409 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../mod/setup.php:430 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../mod/setup.php:431 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../mod/setup.php:433 -msgid "Generate encryption keys" -msgstr "" - -#: ../../mod/setup.php:440 -msgid "libCurl PHP module" -msgstr "" - -#: ../../mod/setup.php:441 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../mod/setup.php:442 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../mod/setup.php:443 -msgid "mysqli PHP module" -msgstr "" - -#: ../../mod/setup.php:444 -msgid "mb_string PHP module" -msgstr "" - -#: ../../mod/setup.php:445 -msgid "mcrypt PHP module" -msgstr "" - -#: ../../mod/setup.php:450 ../../mod/setup.php:452 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../mod/setup.php:450 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../mod/setup.php:456 ../../mod/setup.php:459 -msgid "proc_open" -msgstr "" - -#: ../../mod/setup.php:456 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../mod/setup.php:464 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:468 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../mod/setup.php:472 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:476 -msgid "Error: mysqli PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:480 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:484 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../mod/setup.php:506 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../mod/setup.php:522 -#, php-format -msgid "%s is writable" -msgstr "" - -#: ../../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 "" - -#: ../../mod/setup.php:539 -msgid "store is writable" -msgstr "" - -#: ../../mod/setup.php:569 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../mod/setup.php:574 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../mod/setup.php:576 -msgid "SSL certificate validation" -msgstr "" - -#: ../../mod/setup.php:582 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: ../../mod/setup.php:584 -msgid "Url rewrite is working" -msgstr "" - -#: ../../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 "" - -#: ../../mod/setup.php:618 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../mod/setup.php:653 -msgid "

      What next

      " -msgstr "" - -#: ../../mod/setup.php:654 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../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/editblock.php:77 -msgid "Edit Block" -msgstr "" - -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "" - -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "" - -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "" - -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "" - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "" - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "" - -#: ../../mod/editwebpage.php:106 +#: ../../mod/editwebpage.php:140 msgid "Edit Webpage" msgstr "" -#: ../../mod/editwebpage.php:116 +#: ../../mod/editwebpage.php:150 msgid "Delete webpage?" msgstr "" -#: ../../mod/editwebpage.php:186 +#: ../../mod/editwebpage.php:215 msgid "Delete Webpage" msgstr "" @@ -6323,71 +6517,21 @@ msgstr "" msgid "Image size reduction [%s] failed." msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." msgstr "" -#: ../../mod/sources.php:45 -msgid "Source created." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../mod/sources.php:57 -msgid "Source updated." +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "" - -#: ../../mod/filer.php:49 -msgid "- select -" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" msgstr "" #: ../../mod/filestorage.php:76 @@ -6430,36 +6574,47 @@ msgstr "" msgid "Not Found" msgstr "" +#: ../../mod/acl.php:245 +msgid "network" +msgstr "" + #: ../../mod/follow.php:25 msgid "Channel added." msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." msgstr "" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" msgstr "" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "" - -#: ../../mod/suggest.php:35 +#: ../../mod/delegate.php:123 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +"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/delegate.php:124 +msgid "Existing Page Managers" +msgstr "" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "" + +#: ../../mod/delegate.php:132 +msgid "No entries." msgstr "" #: ../../mod/group.php:20 @@ -6510,760 +6665,10 @@ msgstr "" msgid "Click on a channel to add or remove." msgstr "" -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "" - -#: ../../mod/like.php:21 +#: ../../mod/suggest.php:35 msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "" - -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "" - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "" - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "" - -#: ../../mod/like.php:430 -msgid "Action completed." -msgstr "" - -#: ../../mod/like.php:431 -msgid "Thank you." -msgstr "" - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:97 ../../mod/admin.php:413 -msgid "Site" -msgstr "" - -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "" - -#: ../../mod/admin.php:99 ../../mod/admin.php:860 -msgid "Channels" -msgstr "" - -#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 -msgid "Plugins" -msgstr "" - -#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 -msgid "Themes" -msgstr "" - -#: ../../mod/admin.php:102 ../../mod/admin.php:515 -msgid "Server" -msgstr "" - -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "" - -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "" - -#: ../../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/admin.php:573 -msgid "Failed Updates" -msgstr "" - -#: ../../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 "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -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?" -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" -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 "" -"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/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/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 "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "" - -#: ../../mod/admin.php:1289 -msgid "Log level" -msgstr "" - -#: ../../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/admin.php:1340 ../../mod/admin.php:1361 -msgid "Additional info (optional)" -msgstr "" - -#: ../../mod/admin.php:1351 -msgid "Field definition not found" -msgstr "" - -#: ../../mod/admin.php:1357 -msgid "Edit Profile Field" -msgstr "" - -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "" - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" #: ../../mod/import.php:25 @@ -7352,6 +6757,731 @@ msgstr "" msgid "Import existing posts if possible" msgstr "" +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "" + +#: ../../mod/admin.php:97 ../../mod/admin.php:411 +msgid "Site" +msgstr "" + +#: ../../mod/admin.php:98 +msgid "Accounts" +msgstr "" + +#: ../../mod/admin.php:99 ../../mod/admin.php:858 +msgid "Channels" +msgstr "" + +#: ../../mod/admin.php:100 ../../mod/admin.php:949 ../../mod/admin.php:991 +msgid "Plugins" +msgstr "" + +#: ../../mod/admin.php:101 ../../mod/admin.php:1154 ../../mod/admin.php:1190 +msgid "Themes" +msgstr "" + +#: ../../mod/admin.php:102 ../../mod/admin.php:512 +msgid "Server" +msgstr "" + +#: ../../mod/admin.php:103 +msgid "Profile Config" +msgstr "" + +#: ../../mod/admin.php:104 +msgid "DB updates" +msgstr "" + +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1277 +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:410 ../../mod/admin.php:511 +#: ../../mod/admin.php:721 ../../mod/admin.php:857 ../../mod/admin.php:948 +#: ../../mod/admin.php:990 ../../mod/admin.php:1153 ../../mod/admin.php:1189 +#: ../../mod/admin.php:1276 +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:515 +msgid "Pending registrations" +msgstr "" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "" + +#: ../../mod/admin.php:219 ../../mod/admin.php:516 +msgid "Active plugins" +msgstr "" + +#: ../../mod/admin.php:326 +msgid "Site settings updated." +msgstr "" + +#: ../../mod/admin.php:363 +msgid "mobile" +msgstr "" + +#: ../../mod/admin.php:365 +msgid "experimental" +msgstr "" + +#: ../../mod/admin.php:367 +msgid "unsupported" +msgstr "" + +#: ../../mod/admin.php:391 +msgid "Yes - with approval" +msgstr "" + +#: ../../mod/admin.php:397 +msgid "My site is not a public server" +msgstr "" + +#: ../../mod/admin.php:398 +msgid "My site has paid access only" +msgstr "" + +#: ../../mod/admin.php:399 +msgid "My site has free access only" +msgstr "" + +#: ../../mod/admin.php:400 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "" + +#: ../../mod/admin.php:414 +msgid "File upload" +msgstr "" + +#: ../../mod/admin.php:415 +msgid "Policies" +msgstr "" + +#: ../../mod/admin.php:420 +msgid "Site name" +msgstr "" + +#: ../../mod/admin.php:421 +msgid "Banner/Logo" +msgstr "" + +#: ../../mod/admin.php:422 +msgid "Administrator Information" +msgstr "" + +#: ../../mod/admin.php:422 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../mod/admin.php:423 +msgid "System language" +msgstr "" + +#: ../../mod/admin.php:424 +msgid "System theme" +msgstr "" + +#: ../../mod/admin.php:424 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../mod/admin.php:425 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:425 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:427 +msgid "Enable Diaspora Protocol" +msgstr "" + +#: ../../mod/admin.php:427 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "" + +#: ../../mod/admin.php:428 +msgid "Allow Feeds as Connections" +msgstr "" + +#: ../../mod/admin.php:428 +msgid "(Heavy system resource usage)" +msgstr "" + +#: ../../mod/admin.php:429 +msgid "Maximum image size" +msgstr "" + +#: ../../mod/admin.php:429 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../mod/admin.php:430 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../mod/admin.php:431 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../mod/admin.php:432 +msgid "Register text" +msgstr "" + +#: ../../mod/admin.php:432 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../mod/admin.php:433 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../mod/admin.php:434 +msgid "Allowed friend domains" +msgstr "" + +#: ../../mod/admin.php:434 +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:435 +msgid "Allowed email domains" +msgstr "" + +#: ../../mod/admin.php:435 +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:436 +msgid "Block public" +msgstr "" + +#: ../../mod/admin.php:436 +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:437 +msgid "Verify Email Addresses" +msgstr "" + +#: ../../mod/admin.php:437 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "" + +#: ../../mod/admin.php:438 +msgid "Force publish" +msgstr "" + +#: ../../mod/admin.php:438 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:439 +msgid "Disable discovery tab" +msgstr "" + +#: ../../mod/admin.php:439 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "" + +#: ../../mod/admin.php:440 +msgid "No login on Homepage" +msgstr "" + +#: ../../mod/admin.php:440 +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:442 +msgid "Proxy user" +msgstr "" + +#: ../../mod/admin.php:443 +msgid "Proxy URL" +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Network timeout" +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:445 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:445 +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:446 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:446 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:447 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:447 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:503 +msgid "No server found" +msgstr "" + +#: ../../mod/admin.php:510 ../../mod/admin.php:735 +msgid "ID" +msgstr "" + +#: ../../mod/admin.php:510 +msgid "for channel" +msgstr "" + +#: ../../mod/admin.php:510 +msgid "on server" +msgstr "" + +#: ../../mod/admin.php:510 +msgid "Status" +msgstr "" + +#: ../../mod/admin.php:531 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:541 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../mod/admin.php:544 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:548 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:551 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:566 +msgid "No failed updates." +msgstr "" + +#: ../../mod/admin.php:570 +msgid "Failed Updates" +msgstr "" + +#: ../../mod/admin.php:572 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:573 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:599 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:606 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:635 +msgid "Account not found" +msgstr "" + +#: ../../mod/admin.php:655 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: ../../mod/admin.php:655 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: ../../mod/admin.php:722 ../../mod/admin.php:734 +msgid "Users" +msgstr "" + +#: ../../mod/admin.php:724 ../../mod/admin.php:860 +msgid "select all" +msgstr "" + +#: ../../mod/admin.php:725 +msgid "User registrations waiting for confirm" +msgstr "" + +#: ../../mod/admin.php:726 +msgid "Request date" +msgstr "" + +#: ../../mod/admin.php:727 +msgid "No registrations." +msgstr "" + +#: ../../mod/admin.php:728 +msgid "Approve" +msgstr "" + +#: ../../mod/admin.php:729 +msgid "Deny" +msgstr "" + +#: ../../mod/admin.php:735 +msgid "Register date" +msgstr "" + +#: ../../mod/admin.php:735 +msgid "Last login" +msgstr "" + +#: ../../mod/admin.php:735 +msgid "Expires" +msgstr "" + +#: ../../mod/admin.php:735 +msgid "Service Class" +msgstr "" + +#: ../../mod/admin.php:737 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:738 +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/admin.php:771 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:778 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:797 +msgid "Channel not found" +msgstr "" + +#: ../../mod/admin.php:808 +#, php-format +msgid "Channel '%s' deleted" +msgstr "" + +#: ../../mod/admin.php:819 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "" + +#: ../../mod/admin.php:819 +#, php-format +msgid "Channel '%s' censored" +msgstr "" + +#: ../../mod/admin.php:862 +msgid "Censor" +msgstr "" + +#: ../../mod/admin.php:863 +msgid "Uncensor" +msgstr "" + +#: ../../mod/admin.php:866 +msgid "UID" +msgstr "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../mod/admin.php:908 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../mod/admin.php:912 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../mod/admin.php:922 ../../mod/admin.php:1124 +msgid "Disable" +msgstr "" + +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +msgid "Enable" +msgstr "" + +#: ../../mod/admin.php:950 ../../mod/admin.php:1155 +msgid "Toggle" +msgstr "" + +#: ../../mod/admin.php:958 ../../mod/admin.php:1165 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:959 ../../mod/admin.php:1166 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:1088 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:1147 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1195 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:1196 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1223 +msgid "Log settings updated." +msgstr "" + +#: ../../mod/admin.php:1279 +msgid "Clear" +msgstr "" + +#: ../../mod/admin.php:1285 +msgid "Debugging" +msgstr "" + +#: ../../mod/admin.php:1286 +msgid "Log file" +msgstr "" + +#: ../../mod/admin.php:1286 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "" + +#: ../../mod/admin.php:1287 +msgid "Log level" +msgstr "" + +#: ../../mod/admin.php:1334 +msgid "New Profile Field" +msgstr "" + +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "Field nickname" +msgstr "" + +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "System name of field" +msgstr "" + +#: ../../mod/admin.php:1336 ../../mod/admin.php:1357 +msgid "Input type" +msgstr "" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Field Name" +msgstr "" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Label on profile pages" +msgstr "" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Help text" +msgstr "" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Additional info (optional)" +msgstr "" + +#: ../../mod/admin.php:1349 +msgid "Field definition not found" +msgstr "" + +#: ../../mod/admin.php:1355 +msgid "Edit Profile Field" +msgstr "" + +#: ../../mod/item.php:159 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:418 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:460 +msgid "Executable content type not permitted to this channel." +msgstr "" + +#: ../../mod/item.php:898 +msgid "System error. Post not saved." +msgstr "" + +#: ../../mod/item.php:1373 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../mod/item.php:1379 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "" + +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "" + +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "" + +#: ../../mod/like.php:119 +msgid "thing" +msgstr "" + +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "" + +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "" + +#: ../../mod/like.php:430 +msgid "Action completed." +msgstr "" + +#: ../../mod/like.php:431 +msgid "Thank you." +msgstr "" + #: ../../mod/invite.php:25 msgid "Total invitation limit exceeded." msgstr "" @@ -7421,45 +7551,6 @@ msgstr "" msgid "3. Click [Connect]" msgstr "" -#: ../../mod/item.php:151 -msgid "Unable to locate original post." -msgstr "" - -#: ../../mod/item.php:411 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:453 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../mod/item.php:891 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:1366 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../mod/item.php:1372 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../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/layouts.php:62 -msgid "Help with this feature" -msgstr "" - -#: ../../mod/layouts.php:85 -msgid "Layout Name" -msgstr "" - #: ../../mod/locs.php:19 ../../mod/locs.php:46 msgid "Location not found." msgstr "" @@ -7488,6 +7579,19 @@ msgstr "" msgid "Drop location" msgstr "" +#: ../../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/layouts.php:110 +msgid "Help with this feature" +msgstr "" + +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "" + #: ../../mod/lockview.php:31 msgid "Remote privacy information not available." msgstr "" @@ -7509,79 +7613,6 @@ msgstr "" msgid "View Connnections" msgstr "" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:85 ../../boot.php:1523 -msgid "Password Reset" -msgstr "" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "" - #: ../../mod/magic.php:70 msgid "Hub not found." msgstr "" @@ -7668,31 +7699,6 @@ msgstr "" msgid "Send Reply" msgstr "" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "" - #: ../../mod/wall_upload.php:34 msgid "Wall Photos" msgstr "" @@ -7713,87 +7719,91 @@ msgstr "" msgid "No matches" msgstr "" -#: ../../mod/menu.php:21 +#: ../../mod/menu.php:31 msgid "Menu updated." msgstr "" -#: ../../mod/menu.php:25 +#: ../../mod/menu.php:35 msgid "Unable to update menu." msgstr "" -#: ../../mod/menu.php:30 +#: ../../mod/menu.php:40 msgid "Menu created." msgstr "" -#: ../../mod/menu.php:34 +#: ../../mod/menu.php:44 msgid "Unable to create menu." msgstr "" -#: ../../mod/menu.php:57 +#: ../../mod/menu.php:76 msgid "Manage Menus" msgstr "" -#: ../../mod/menu.php:60 +#: ../../mod/menu.php:79 msgid "Drop" msgstr "" -#: ../../mod/menu.php:62 +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" +msgstr "" + +#: ../../mod/menu.php:82 msgid "Create a new menu" msgstr "" -#: ../../mod/menu.php:63 +#: ../../mod/menu.php:83 msgid "Delete this menu" msgstr "" -#: ../../mod/menu.php:64 ../../mod/menu.php:109 +#: ../../mod/menu.php:84 ../../mod/menu.php:125 msgid "Edit menu contents" msgstr "" -#: ../../mod/menu.php:65 +#: ../../mod/menu.php:85 msgid "Edit this menu" msgstr "" -#: ../../mod/menu.php:80 +#: ../../mod/menu.php:96 msgid "New Menu" msgstr "" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 +#: ../../mod/menu.php:97 ../../mod/menu.php:126 msgid "Menu name" msgstr "" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 +#: ../../mod/menu.php:97 ../../mod/menu.php:126 msgid "Must be unique, only seen by you" msgstr "" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 +#: ../../mod/menu.php:98 ../../mod/menu.php:127 msgid "Menu title" msgstr "" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 +#: ../../mod/menu.php:98 ../../mod/menu.php:127 msgid "Menu title as seen by others" msgstr "" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 +#: ../../mod/menu.php:99 ../../mod/menu.php:128 msgid "Allow bookmarks" msgstr "" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 +#: ../../mod/menu.php:99 ../../mod/menu.php:128 msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../mod/menu.php:98 +#: ../../mod/menu.php:114 msgid "Menu deleted." msgstr "" -#: ../../mod/menu.php:100 +#: ../../mod/menu.php:116 msgid "Menu could not be deleted." msgstr "" -#: ../../mod/menu.php:106 +#: ../../mod/menu.php:122 msgid "Edit Menu" msgstr "" -#: ../../mod/menu.php:108 +#: ../../mod/menu.php:124 msgid "Add or remove entries to this menu" msgstr "" @@ -7877,6 +7887,14 @@ msgstr "" msgid "System Notifications" msgstr "" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "" + +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "" + #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "" @@ -7889,10 +7907,6 @@ msgstr "" msgid "invalid target signature" msgstr "" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "" - #: ../../mod/appman.php:28 ../../mod/appman.php:44 msgid "App installed." msgstr "" @@ -8266,41 +8280,41 @@ msgstr "" msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../boot.php:1311 +#: ../../boot.php:1293 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1314 +#: ../../boot.php:1296 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1488 +#: ../../boot.php:1463 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../boot.php:1516 +#: ../../boot.php:1489 msgid "Password" msgstr "" -#: ../../boot.php:1517 +#: ../../boot.php:1490 msgid "Remember me" msgstr "" -#: ../../boot.php:1522 +#: ../../boot.php:1493 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1587 +#: ../../boot.php:1567 msgid "permission denied" msgstr "" -#: ../../boot.php:1588 +#: ../../boot.php:1568 msgid "Got Zot?" msgstr "" -#: ../../boot.php:2021 +#: ../../boot.php:2030 msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index d86614502..0ea73e309 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-13.858 +2014-11-15.860 From c1b8608940055adabc8bf4bb85b843eb5cb95412 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Sun, 16 Nov 2014 13:56:45 +0100 Subject: [PATCH 112/176] Switch to a better datetime picker widget --- include/datetime.php | 45 +- .../css/bootstrap-datetimepicker.css | 238 --- .../css/bootstrap-datetimepicker.min.css | 5 - .../js/bootstrap-datetimepicker.min.js | 1 - .../bootstrap-datetimepicker/js/moment.min.js | 6 - library/datetimepicker/.gitignore | 1 + library/datetimepicker/MIT-LICENSE.txt | 19 + library/datetimepicker/README.md | 20 + .../datetimepicker/jquery.datetimepicker.css | 418 +++++ .../datetimepicker/jquery.datetimepicker.js | 1661 +++++++++++++++++ mod/events.php | 9 +- view/theme/redbasic/php/theme_init.php | 5 +- 12 files changed, 2153 insertions(+), 275 deletions(-) delete mode 100755 library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css delete mode 100755 library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css delete mode 100644 library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js delete mode 100644 library/bootstrap-datetimepicker/js/moment.min.js create mode 100644 library/datetimepicker/.gitignore create mode 100644 library/datetimepicker/MIT-LICENSE.txt create mode 100644 library/datetimepicker/README.md create mode 100644 library/datetimepicker/jquery.datetimepicker.css create mode 100644 library/datetimepicker/jquery.datetimepicker.js diff --git a/include/datetime.php b/include/datetime.php index 270be5e3d..59dad2045 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -163,12 +163,12 @@ function dob($dob) { * @param $id * id and name of datetimepicker (defaults to "datetimepicker") */ -function datesel($format, $min, $max, $default,$id = 'datepicker') { - return datetimesel($format,$min,$max,$default,$id,true,false); +function datesel($format, $min, $max, $default, $id = 'datepicker') { + return datetimesel($format,$min,$max,$default,$id,true,false, '',''); } /** - * returns a date selector + * returns a time selector * @param $format * format string, e.g. 'ymd' or 'mdy'. Not currently supported * @param $h @@ -178,8 +178,8 @@ function datesel($format, $min, $max, $default,$id = 'datepicker') { * @param $id * id and name of datetimepicker (defaults to "timepicker") */ -function timesel($format,$h,$m,$id='timepicker') { - return datetimesel($format,mktime(),mktime(),mktime($h,$m),$id,false,true); +function timesel($format, $h, $m, $id='timepicker') { + return datetimesel($format,new DateTime(),new DateTime(),new DateTime("$h:$m"),$id,false,true); } /** @@ -204,31 +204,42 @@ function timesel($format,$h,$m,$id='timepicker') { * set maximum date from picker with id $maxfrom (none by default) */ function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pickdate = true, $picktime = true, $minfrom = '', $maxfrom = '') { + // Once browser support is better this could probably be replaced with native HTML5 date picker $o = ''; $dateformat = ''; - if($pickdate) $dateformat .= 'YYYY-MM-DD'; - if($pickdate && $picktime) $dateformat .= ' '; - if($picktime) $dateformat .= 'HH:mm'; - $mindate = $min ? "new Date($min*1000)" : ''; - $maxdate = $max ? "new Date($max*1000)" : ''; + if($pickdate) $dateformat .= 'Y-m-d'; + if($pickdate && $picktime) $dateformat .= ' '; + if($picktime) $dateformat .= 'H:i'; + + $minjs = $min ? ",minDate: new Date({$min->getTimestamp()}*1000), yearStart: " . $min->format('Y') : ''; + $maxjs = $max ? ",maxDate: new Date({$max->getTimestamp()}*1000), yearEnd: " . $max->format('Y') : ''; - $defaultDate = $default ? ", defaultDate: new Date($default*1000)" : ''; + $input_text = $default ? 'value="' . date($dateformat, $default->getTimestamp()) . '"' : ''; + $defaultdatejs = $default ? ",defaultDate: new Date({$default->getTimestamp()}*1000)" : ''; $pickers = ''; - if(!$pickdate) $pickers .= 'pickDate: false,'; - if(!$picktime) $pickers .= 'pickTime: false,'; + if(!$pickdate) $pickers .= ',datepicker: false'; + if(!$picktime) $pickers .= ',timepicker: false'; $extra_js = ''; if($minfrom != '') - $extra_js .= "\$('#$minfrom').on('dp.change',function (e) { \$('#$id').data('DateTimePicker').setMinDate(e.date); });"; + $extra_js .= "\$('#$minfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#$id').data('xdsoft_datetimepicker').setOptions({minDate: currentDateTime})}})"; if($maxfrom != '') - $extra_js .= "\$('#$maxfrom').on('dp.change',function (e) { \$('#$id').data('DateTimePicker').setMaxDate(e.date); });"; + $extra_js .= "\$('#$maxfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#$id').data('xdsoft_datetimepicker').setOptions({maxDate: currentDateTime})}})"; - $o .= "
      "; - $o .= ""; + $readable_format = $dateformat; + $readable_format = str_replace('Y','yyyy',$readable_format); + $readable_format = str_replace('m','mm',$readable_format); + $readable_format = str_replace('d','dd',$readable_format); + $readable_format = str_replace('H','HH',$readable_format); + $readable_format = str_replace('i','MM',$readable_format); + + $o .= "
      "; + $o .= '
      '; + $o .= ""; return $o; } diff --git a/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css b/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css deleted file mode 100755 index 80df7d86f..000000000 --- a/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css +++ /dev/null @@ -1,238 +0,0 @@ -/*! -* Datetimepicker for Bootstrap v3 -//! version : 3.1.3 -* https://github.com/Eonasdan/bootstrap-datetimepicker/ -*/ -.bootstrap-datetimepicker-widget { -top: 0; -left: 0; -width: 250px; -padding: 4px; -margin-top: 1px; -z-index: 99999 !important; -border-radius: 4px; -} -.bootstrap-datetimepicker-widget.timepicker-sbs { -width: 600px; -} -.bootstrap-datetimepicker-widget.bottom:before { -content: ''; -display: inline-block; -border-left: 7px solid transparent; -border-right: 7px solid transparent; -border-bottom: 7px solid #ccc; -border-bottom-color: rgba(0, 0, 0, 0.2); -position: absolute; -top: -7px; -left: 7px; -} -.bootstrap-datetimepicker-widget.bottom:after { -content: ''; -display: inline-block; -border-left: 6px solid transparent; -border-right: 6px solid transparent; -border-bottom: 6px solid white; -position: absolute; -top: -6px; -left: 8px; -} -.bootstrap-datetimepicker-widget.top:before { -content: ''; -display: inline-block; -border-left: 7px solid transparent; -border-right: 7px solid transparent; -border-top: 7px solid #ccc; -border-top-color: rgba(0, 0, 0, 0.2); -position: absolute; -bottom: -7px; -left: 6px; -} -.bootstrap-datetimepicker-widget.top:after { -content: ''; -display: inline-block; -border-left: 6px solid transparent; -border-right: 6px solid transparent; -border-top: 6px solid white; -position: absolute; -bottom: -6px; -left: 7px; -} -.bootstrap-datetimepicker-widget .dow { -width: 14.2857%; -} -.bootstrap-datetimepicker-widget.pull-right:before { -left: auto; -right: 6px; -} -.bootstrap-datetimepicker-widget.pull-right:after { -left: auto; -right: 7px; -} -.bootstrap-datetimepicker-widget > ul { -list-style-type: none; -margin: 0; -} -.bootstrap-datetimepicker-widget a[data-action] { -padding: 6px 0; -} -.bootstrap-datetimepicker-widget a[data-action]:active { -box-shadow: none; -} -.bootstrap-datetimepicker-widget .timepicker-hour, -.bootstrap-datetimepicker-widget .timepicker-minute, -.bootstrap-datetimepicker-widget .timepicker-second { -width: 54px; -font-weight: bold; -font-size: 1.2em; -margin: 0; -} -.bootstrap-datetimepicker-widget button[data-action] { -padding: 6px; -} -.bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator { -width: 4px; -padding: 0; -margin: 0; -} -.bootstrap-datetimepicker-widget .datepicker > div { -display: none; -} -.bootstrap-datetimepicker-widget .picker-switch { -text-align: center; -} -.bootstrap-datetimepicker-widget table { -width: 100%; -margin: 0; -} -.bootstrap-datetimepicker-widget td, -.bootstrap-datetimepicker-widget th { -text-align: center; -border-radius: 4px; -} -.bootstrap-datetimepicker-widget td { -height: 54px; -line-height: 54px; -width: 54px; -} -.bootstrap-datetimepicker-widget td.cw { -font-size: 10px; -height: 20px; -line-height: 20px; -color: #777777; -} -.bootstrap-datetimepicker-widget td.day { -height: 20px; -line-height: 20px; -width: 20px; -} -.bootstrap-datetimepicker-widget td.day:hover, -.bootstrap-datetimepicker-widget td.hour:hover, -.bootstrap-datetimepicker-widget td.minute:hover, -.bootstrap-datetimepicker-widget td.second:hover { -background: #eeeeee; -cursor: pointer; -} -.bootstrap-datetimepicker-widget td.old, -.bootstrap-datetimepicker-widget td.new { -color: #777777; -} -.bootstrap-datetimepicker-widget td.today { -position: relative; -} -.bootstrap-datetimepicker-widget td.today:before { -content: ''; -display: inline-block; -border-left: 7px solid transparent; -border-bottom: 7px solid #428bca; -border-top-color: rgba(0, 0, 0, 0.2); -position: absolute; -bottom: 4px; -right: 4px; -} -.bootstrap-datetimepicker-widget td.active, -.bootstrap-datetimepicker-widget td.active:hover { -background-color: #428bca; -color: #ffffff; -text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} -.bootstrap-datetimepicker-widget td.active.today:before { -border-bottom-color: #fff; -} -.bootstrap-datetimepicker-widget td.disabled, -.bootstrap-datetimepicker-widget td.disabled:hover { -background: none; -color: #777777; -cursor: not-allowed; -} -.bootstrap-datetimepicker-widget td span { -display: inline-block; -width: 54px; -height: 54px; -line-height: 54px; -margin: 2px 1.5px; -cursor: pointer; -border-radius: 4px; -} -.bootstrap-datetimepicker-widget td span:hover { -background: #eeeeee; -} -.bootstrap-datetimepicker-widget td span.active { -background-color: #428bca; -color: #ffffff; -text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} -.bootstrap-datetimepicker-widget td span.old { -color: #777777; -} -.bootstrap-datetimepicker-widget td span.disabled, -.bootstrap-datetimepicker-widget td span.disabled:hover { -background: none; -color: #777777; -cursor: not-allowed; -} -.bootstrap-datetimepicker-widget th { -height: 20px; -line-height: 20px; -width: 20px; -} -.bootstrap-datetimepicker-widget th.picker-switch { -width: 145px; -} -.bootstrap-datetimepicker-widget th.next, -.bootstrap-datetimepicker-widget th.prev { -font-size: 21px; -} -.bootstrap-datetimepicker-widget th.disabled, -.bootstrap-datetimepicker-widget th.disabled:hover { -background: none; -color: #777777; -cursor: not-allowed; -} -.bootstrap-datetimepicker-widget thead tr:first-child th { -cursor: pointer; -} -.bootstrap-datetimepicker-widget thead tr:first-child th:hover { -background: #eeeeee; -} -.input-group.date .input-group-addon span { -display: block; -cursor: pointer; -width: 16px; -height: 16px; -} -.bootstrap-datetimepicker-widget.left-oriented:before { -left: auto; -right: 6px; -} -.bootstrap-datetimepicker-widget.left-oriented:after { -left: auto; -right: 7px; -} -.bootstrap-datetimepicker-widget ul.list-unstyled li div.timepicker div.timepicker-picker table.table-condensed tbody > tr > td { -padding: 0px !important; -} -@media screen and (max-width: 767px) { -.bootstrap-datetimepicker-widget.timepicker-sbs { -width: 283px; -} -} diff --git a/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css b/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css deleted file mode 100755 index 8136d3975..000000000 --- a/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! -* Datetimepicker for Bootstrap v3 -//! version : 3.1.3 -* https://github.com/Eonasdan/bootstrap-datetimepicker/ -*/.bootstrap-datetimepicker-widget{top:0;left:0;width:250px;padding:4px;margin-top:1px;z-index:99999!important;border-radius:4px}.bootstrap-datetimepicker-widget.timepicker-sbs{width:600px}.bootstrap-datetimepicker-widget.bottom:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);position:absolute;top:-7px;left:7px}.bootstrap-datetimepicker-widget.bottom:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:8px}.bootstrap-datetimepicker-widget.top:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.top:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;position:absolute;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget .dow{width:14.2857%}.bootstrap-datetimepicker-widget.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget>ul{list-style-type:none;margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator{width:4px;padding:0;margin:0}.bootstrap-datetimepicker-widget .datepicker>div{display:none}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget td,.bootstrap-datetimepicker-widget th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget td.cw{font-size:10px;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget td.day:hover,.bootstrap-datetimepicker-widget td.hour:hover,.bootstrap-datetimepicker-widget td.minute:hover,.bootstrap-datetimepicker-widget td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget td.old,.bootstrap-datetimepicker-widget td.new{color:#777}.bootstrap-datetimepicker-widget td.today{position:relative}.bootstrap-datetimepicker-widget td.today:before{content:'';display:inline-block;border-left:7px solid transparent;border-bottom:7px solid #428bca;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget td.active,.bootstrap-datetimepicker-widget td.active:hover{background-color:#428bca;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget td.disabled,.bootstrap-datetimepicker-widget td.disabled:hover{background:0 0;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget td span:hover{background:#eee}.bootstrap-datetimepicker-widget td span.active{background-color:#428bca;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget td span.old{color:#777}.bootstrap-datetimepicker-widget td span.disabled,.bootstrap-datetimepicker-widget td span.disabled:hover{background:0 0;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget th.picker-switch{width:145px}.bootstrap-datetimepicker-widget th.next,.bootstrap-datetimepicker-widget th.prev{font-size:21px}.bootstrap-datetimepicker-widget th.disabled,.bootstrap-datetimepicker-widget th.disabled:hover{background:0 0;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget thead tr:first-child th:hover{background:#eee}.input-group.date .input-group-addon span{display:block;cursor:pointer;width:16px;height:16px}.bootstrap-datetimepicker-widget.left-oriented:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.left-oriented:after{left:auto;right:7px}.bootstrap-datetimepicker-widget ul.list-unstyled li div.timepicker div.timepicker-picker table.table-condensed tbody>tr>td{padding:0!important}@media screen and (max-width:767px){.bootstrap-datetimepicker-widget.timepicker-sbs{width:283px}} diff --git a/library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js b/library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js deleted file mode 100644 index 20ad225b1..000000000 --- a/library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(a,b){"use strict";if("function"==typeof define&&define.amd)define(["jquery","moment"],b);else if("object"==typeof exports)b(require("jquery"),require("moment"));else{if(!jQuery)throw new Error("bootstrap-datetimepicker requires jQuery to be loaded first");if(!moment)throw new Error("bootstrap-datetimepicker requires moment.js to be loaded first");b(a.jQuery,moment)}}(this,function(a,b){"use strict";if("undefined"==typeof b)throw new Error("momentjs is required");var c=0,d=function(d,e){var f,g=a.fn.datetimepicker.defaults,h={time:"glyphicon glyphicon-time",date:"glyphicon glyphicon-calendar",up:"glyphicon glyphicon-chevron-up",down:"glyphicon glyphicon-chevron-down"},i=this,j=!1,k=function(){var f,j,k=!1;if(i.options=a.extend({},g,e),i.options.icons=a.extend({},h,i.options.icons),i.element=a(d),m(),!i.options.pickTime&&!i.options.pickDate)throw new Error("Must choose at least one picker");if(i.id=c++,b.locale(i.options.language),i.date=b(),i.unset=!1,i.isInput=i.element.is("input"),i.component=!1,i.element.hasClass("input-group")&&(i.component=i.element.find(0===i.element.find(".datepickerbutton").size()?'[class^="input-group-"]':".datepickerbutton")),i.format=i.options.format,f=b().localeData(),i.format||(i.format=i.options.pickDate?f.longDateFormat("L"):"",i.options.pickDate&&i.options.pickTime&&(i.format+=" "),i.format+=i.options.pickTime?f.longDateFormat("LT"):"",i.options.useSeconds&&(-1!==f.longDateFormat("LT").indexOf(" A")?i.format=i.format.split(" A")[0]+":ss A":i.format+=":ss")),i.use24hours=i.format.toLowerCase().indexOf("a")<0&&i.format.indexOf("h")<0,i.component&&(k=i.component.find("span")),i.options.pickTime&&k&&k.addClass(i.options.icons.time),i.options.pickDate&&k&&(k.removeClass(i.options.icons.time),k.addClass(i.options.icons.date)),i.options.widgetParent="string"==typeof i.options.widgetParent&&i.options.widgetParent||i.element.parents().filter(function(){return"scroll"===a(this).css("overflow-y")}).get(0)||"body",i.widget=a(Q()).appendTo(i.options.widgetParent),i.minViewMode=i.options.minViewMode||0,"string"==typeof i.minViewMode)switch(i.minViewMode){case"months":i.minViewMode=1;break;case"years":i.minViewMode=2;break;default:i.minViewMode=0}if(i.viewMode=i.options.viewMode||0,"string"==typeof i.viewMode)switch(i.viewMode){case"months":i.viewMode=1;break;case"years":i.viewMode=2;break;default:i.viewMode=0}i.viewMode=Math.max(i.viewMode,i.minViewMode),i.options.disabledDates=O(i.options.disabledDates),i.options.enabledDates=O(i.options.enabledDates),i.startViewMode=i.viewMode,i.setMinDate(i.options.minDate),i.setMaxDate(i.options.maxDate),r(),s(),u(),v(),w(),q(),E(),l().prop("disabled")||F(),""!==i.options.defaultDate&&""===l().val()&&i.setValue(i.options.defaultDate),1!==i.options.minuteStepping&&(j=i.options.minuteStepping,i.date.minutes(Math.round(i.date.minutes()/j)*j%60).seconds(0))},l=function(){var a;if(i.isInput)return i.element;if(a=i.element.find(".datepickerinput"),0===a.size())a=i.element.find("input");else if(!a.is("input"))throw new Error('CSS class "datepickerinput" cannot be applied to non input element');return a},m=function(){var a;a=i.element.is("input")?i.element.data():i.element.find("input").data(),void 0!==a.dateFormat&&(i.options.format=a.dateFormat),void 0!==a.datePickdate&&(i.options.pickDate=a.datePickdate),void 0!==a.datePicktime&&(i.options.pickTime=a.datePicktime),void 0!==a.dateUseminutes&&(i.options.useMinutes=a.dateUseminutes),void 0!==a.dateUseseconds&&(i.options.useSeconds=a.dateUseseconds),void 0!==a.dateUsecurrent&&(i.options.useCurrent=a.dateUsecurrent),void 0!==a.calendarWeeks&&(i.options.calendarWeeks=a.calendarWeeks),void 0!==a.dateMinutestepping&&(i.options.minuteStepping=a.dateMinutestepping),void 0!==a.dateMindate&&(i.options.minDate=a.dateMindate),void 0!==a.dateMaxdate&&(i.options.maxDate=a.dateMaxdate),void 0!==a.dateShowtoday&&(i.options.showToday=a.dateShowtoday),void 0!==a.dateCollapse&&(i.options.collapse=a.dateCollapse),void 0!==a.dateLanguage&&(i.options.language=a.dateLanguage),void 0!==a.dateDefaultdate&&(i.options.defaultDate=a.dateDefaultdate),void 0!==a.dateDisableddates&&(i.options.disabledDates=a.dateDisableddates),void 0!==a.dateEnableddates&&(i.options.enabledDates=a.dateEnableddates),void 0!==a.dateIcons&&(i.options.icons=a.dateIcons),void 0!==a.dateUsestrict&&(i.options.useStrict=a.dateUsestrict),void 0!==a.dateDirection&&(i.options.direction=a.dateDirection),void 0!==a.dateSidebyside&&(i.options.sideBySide=a.dateSidebyside),void 0!==a.dateDaysofweekdisabled&&(i.options.daysOfWeekDisabled=a.dateDaysofweekdisabled)},n=function(){var b,c="absolute",d=i.component?i.component.offset():i.element.offset(),e=a(window);i.width=i.component?i.component.outerWidth():i.element.outerWidth(),d.top=d.top+i.element.outerHeight(),"up"===i.options.direction?b="top":"bottom"===i.options.direction?b="bottom":"auto"===i.options.direction&&(b=d.top+i.widget.height()>e.height()+e.scrollTop()&&i.widget.height()+i.element.outerHeight()"),e=b.weekdaysMin();if(i.options.calendarWeeks===!0&&d.append('#'),0===b().localeData()._week.dow)for(c=0;7>c;c++)d.append(''+e[c]+"");else for(c=1;8>c;c++)d.append(7===c?''+e[0]+"":''+e[c]+"");i.widget.find(".datepicker-days thead").append(d)},s=function(){b.locale(i.options.language);var a,c="",d=b.monthsShort();for(a=0;12>a;a++)c+=''+d[a]+"";i.widget.find(".datepicker-months td").append(c)},t=function(){if(i.options.pickDate){b.locale(i.options.language);var c,d,e,f,g,h,j,k,l,m=i.viewDate.year(),n=i.viewDate.month(),o=i.options.minDate.year(),p=i.options.minDate.month(),q=i.options.maxDate.year(),r=i.options.maxDate.month(),s=[],t=b.months();for(i.widget.find(".datepicker-days").find(".disabled").removeClass("disabled"),i.widget.find(".datepicker-months").find(".disabled").removeClass("disabled"),i.widget.find(".datepicker-years").find(".disabled").removeClass("disabled"),i.widget.find(".datepicker-days th:eq(1)").text(t[n]+" "+m),d=b(i.viewDate,i.format,i.options.useStrict).subtract(1,"months"),j=d.daysInMonth(),d.date(j).startOf("week"),(m===o&&p>=n||o>m)&&i.widget.find(".datepicker-days th:eq(0)").addClass("disabled"),(m===q&&n>=r||m>q)&&i.widget.find(".datepicker-days th:eq(2)").addClass("disabled"),e=b(d).add(42,"d");d.isBefore(e);){if(d.weekday()===b().startOf("week").weekday()&&(f=a(""),s.push(f),i.options.calendarWeeks===!0&&f.append(''+d.week()+"")),g="",d.year()m||d.year()===m&&d.month()>n)&&(g+=" new"),d.isSame(b({y:i.date.year(),M:i.date.month(),d:i.date.date()}))&&(g+=" active"),(M(d,"day")||!N(d))&&(g+=" disabled"),i.options.showToday===!0&&d.isSame(b(),"day")&&(g+=" today"),i.options.daysOfWeekDisabled)for(h=0;h'+d.date()+""),c=d.date(),d.add(1,"d"),c===d.date()&&d.add(1,"d")}for(i.widget.find(".datepicker-days tbody").empty().append(s),l=i.date.year(),t=i.widget.find(".datepicker-months").find("th:eq(1)").text(m).end().find("span").removeClass("active"),l===m&&t.eq(i.date.month()).addClass("active"),o>m-1&&i.widget.find(".datepicker-months th:eq(0)").addClass("disabled"),m+1>q&&i.widget.find(".datepicker-months th:eq(2)").addClass("disabled"),h=0;12>h;h++)m===o&&p>h||o>m?a(t[h]).addClass("disabled"):(m===q&&h>r||m>q)&&a(t[h]).addClass("disabled");for(s="",m=10*parseInt(m/10,10),k=i.widget.find(".datepicker-years").find("th:eq(1)").text(m+"-"+(m+9)).parents("table").find("td"),i.widget.find(".datepicker-years").find("th").removeClass("disabled"),o>m&&i.widget.find(".datepicker-years").find("th:eq(0)").addClass("disabled"),m+9>q&&i.widget.find(".datepicker-years").find("th:eq(2)").addClass("disabled"),m-=1,h=-1;11>h;h++)s+='m||m>q?" disabled":"")+'">'+m+"",m+=1;k.html(s)}},u=function(){b.locale(i.options.language);var a,c,d,e=i.widget.find(".timepicker .timepicker-hours table"),f="";if(e.parent().hide(),i.use24hours)for(a=0,c=0;6>c;c+=1){for(f+="",d=0;4>d;d+=1)f+=''+P(a.toString())+"",a++;f+=""}else for(a=1,c=0;3>c;c+=1){for(f+="",d=0;4>d;d+=1)f+=''+P(a.toString())+"",a++;f+=""}e.html(f)},v=function(){var a,b,c=i.widget.find(".timepicker .timepicker-minutes table"),d="",e=0,f=i.options.minuteStepping;for(c.parent().hide(),1===f&&(f=5),a=0;ab;b+=1)60>e?(d+=''+P(e.toString())+"",e+=f):d+="";d+=""}c.html(d)},w=function(){var a,b,c=i.widget.find(".timepicker .timepicker-seconds table"),d="",e=0;for(c.parent().hide(),a=0;3>a;a++){for(d+="",b=0;4>b;b+=1)d+=''+P(e.toString())+"",e+=5;d+=""}c.html(d)},x=function(){if(i.date){var a=i.widget.find(".timepicker span[data-time-component]"),b=i.date.hours(),c=i.date.format("A");i.use24hours||(0===b?b=12:12!==b&&(b%=12),i.widget.find(".timepicker [data-action=togglePeriod]").text(c)),a.filter("[data-time-component=hours]").text(P(b)),a.filter("[data-time-component=minutes]").text(P(i.date.minutes())),a.filter("[data-time-component=seconds]").text(P(i.date.second()))}},y=function(c){c.stopPropagation(),c.preventDefault(),i.unset=!1;var d,e,f,g,h=a(c.target).closest("span, td, th"),j=b(i.date);if(1===h.length&&!h.is(".disabled"))switch(h[0].nodeName.toLowerCase()){case"th":switch(h[0].className){case"picker-switch":E(1);break;case"prev":case"next":f=R.modes[i.viewMode].navStep,"prev"===h[0].className&&(f=-1*f),i.viewDate.add(f,R.modes[i.viewMode].navFnc),t()}break;case"span":h.is(".month")?(d=h.parent().find("span").index(h),i.viewDate.month(d)):(e=parseInt(h.text(),10)||0,i.viewDate.year(e)),i.viewMode===i.minViewMode&&(i.date=b({y:i.viewDate.year(),M:i.viewDate.month(),d:i.viewDate.date(),h:i.date.hours(),m:i.date.minutes(),s:i.date.seconds()}),K(),o(j,c.type)),E(-1),t();break;case"td":h.is(".day")&&(g=parseInt(h.text(),10)||1,d=i.viewDate.month(),e=i.viewDate.year(),h.is(".old")?0===d?(d=11,e-=1):d-=1:h.is(".new")&&(11===d?(d=0,e+=1):d+=1),i.date=b({y:e,M:d,d:g,h:i.date.hours(),m:i.date.minutes(),s:i.date.seconds()}),i.viewDate=b({y:e,M:d,d:Math.min(28,g)}),t(),K(),o(j,c.type))}},z={incrementHours:function(){L("add","hours",1)},incrementMinutes:function(){L("add","minutes",i.options.minuteStepping)},incrementSeconds:function(){L("add","seconds",1)},decrementHours:function(){L("subtract","hours",1)},decrementMinutes:function(){L("subtract","minutes",i.options.minuteStepping)},decrementSeconds:function(){L("subtract","seconds",1)},togglePeriod:function(){var a=i.date.hours();a>=12?a-=12:a+=12,i.date.hours(a)},showPicker:function(){i.widget.find(".timepicker > div:not(.timepicker-picker)").hide(),i.widget.find(".timepicker .timepicker-picker").show()},showHours:function(){i.widget.find(".timepicker .timepicker-picker").hide(),i.widget.find(".timepicker .timepicker-hours").show()},showMinutes:function(){i.widget.find(".timepicker .timepicker-picker").hide(),i.widget.find(".timepicker .timepicker-minutes").show()},showSeconds:function(){i.widget.find(".timepicker .timepicker-picker").hide(),i.widget.find(".timepicker .timepicker-seconds").show()},selectHour:function(b){var c=parseInt(a(b.target).text(),10);i.use24hours||(i.date.hours()>=12?12!==c&&(c+=12):12===c&&(c=0)),i.date.hours(c),z.showPicker.call(i)},selectMinute:function(b){i.date.minutes(parseInt(a(b.target).text(),10)),z.showPicker.call(i)},selectSecond:function(b){i.date.seconds(parseInt(a(b.target).text(),10)),z.showPicker.call(i)}},A=function(c){var d=b(i.date),e=a(c.currentTarget).data("action"),f=z[e].apply(i,arguments);return B(c),i.date||(i.date=b({y:1970})),K(),x(),o(d,c.type),f},B=function(a){a.stopPropagation(),a.preventDefault()},C=function(a){27===a.keyCode&&i.hide()},D=function(c){b.locale(i.options.language);var d=a(c.target),e=b(i.date),f=b(d.val(),i.format,i.options.useStrict);f.isValid()&&!M(f)&&N(f)?(q(),i.setValue(f),o(e,c.type),K()):(i.viewDate=e,i.unset=!0,o(e,c.type),p(f))},E=function(a){a&&(i.viewMode=Math.max(i.minViewMode,Math.min(2,i.viewMode+a))),i.widget.find(".datepicker > div").hide().filter(".datepicker-"+R.modes[i.viewMode].clsName).show()},F=function(){var b,c,d,e,f;i.widget.on("click",".datepicker *",a.proxy(y,this)),i.widget.on("click","[data-action]",a.proxy(A,this)),i.widget.on("mousedown",a.proxy(B,this)),i.element.on("keydown",a.proxy(C,this)),i.options.pickDate&&i.options.pickTime&&i.widget.on("click.togglePicker",".accordion-toggle",function(g){if(g.stopPropagation(),b=a(this),c=b.closest("ul"),d=c.find(".in"),e=c.find(".collapse:not(.in)"),d&&d.length){if(f=d.data("collapse"),f&&f.transitioning)return;d.collapse("hide"),e.collapse("show"),b.find("span").toggleClass(i.options.icons.time+" "+i.options.icons.date),i.component&&i.component.find("span").toggleClass(i.options.icons.time+" "+i.options.icons.date)}}),i.isInput?i.element.on({click:a.proxy(i.show,this),focus:a.proxy(i.show,this),change:a.proxy(D,this),blur:a.proxy(i.hide,this)}):(i.element.on({change:a.proxy(D,this)},"input"),i.component?(i.component.on("click",a.proxy(i.show,this)),i.component.on("mousedown",a.proxy(B,this))):i.element.on("click",a.proxy(i.show,this)))},G=function(){a(window).on("resize.datetimepicker"+i.id,a.proxy(n,this)),i.isInput||a(document).on("mousedown.datetimepicker"+i.id,a.proxy(i.hide,this))},H=function(){i.widget.off("click",".datepicker *",i.click),i.widget.off("click","[data-action]"),i.widget.off("mousedown",i.stopEvent),i.options.pickDate&&i.options.pickTime&&i.widget.off("click.togglePicker"),i.isInput?i.element.off({focus:i.show,change:D,click:i.show,blur:i.hide}):(i.element.off({change:D},"input"),i.component?(i.component.off("click",i.show),i.component.off("mousedown",i.stopEvent)):i.element.off("click",i.show))},I=function(){a(window).off("resize.datetimepicker"+i.id),i.isInput||a(document).off("mousedown.datetimepicker"+i.id)},J=function(){if(i.element){var b,c=i.element.parents(),d=!1;for(b=0;b0?d:!1},P=function(a){return a=a.toString(),a.length>=2?a:"0"+a},Q=function(){var a='‹›',b='',c='
      '+a+'
      '+a+b+'
      '+a+b+"
      ",d="";return i.options.pickDate&&i.options.pickTime?(d='
      ',d+=i.options.sideBySide?'
      '+c+'
      '+S.getTemplate()+"
      ":'
        '+c+'
      • '+S.getTemplate()+"
      ",d+="
      "):i.options.pickTime?'":'"},R={modes:[{clsName:"days",navFnc:"month",navStep:1},{clsName:"months",navFnc:"year",navStep:1},{clsName:"years",navFnc:"year",navStep:10}]},S={hourTemplate:'',minuteTemplate:'',secondTemplate:''};S.getTemplate=function(){return'
      "+(i.options.useSeconds?'':"")+(i.use24hours?"":'')+" "+(i.options.useSeconds?'":"")+(i.use24hours?"":'')+'"+(i.options.useSeconds?'':"")+(i.use24hours?"":'')+'
      '+(i.options.useMinutes?'':"")+"
      "+S.hourTemplate+' :'+(i.options.useMinutes?S.minuteTemplate:'00')+":'+S.secondTemplate+"
      '+(i.options.useMinutes?'':"")+"
      '+(i.options.useSeconds?'
      ':"")},i.destroy=function(){H(),I(),i.widget.remove(),i.element.removeData("DateTimePicker"),i.component&&i.component.removeData("DateTimePicker")},i.show=function(a){if(!l().prop("disabled")){if(i.options.useCurrent&&""===l().val()){if(1!==i.options.minuteStepping){var c=b(),d=i.options.minuteStepping;c.minutes(Math.round(c.minutes()/d)*d%60).seconds(0),i.setValue(c.format(i.format))}else i.setValue(b().format(i.format));o("",a.type)}a&&"click"===a.type&&i.isInput&&i.widget.hasClass("picker-open")||(i.widget.hasClass("picker-open")?(i.widget.hide(),i.widget.removeClass("picker-open")):(i.widget.show(),i.widget.addClass("picker-open")),i.height=i.component?i.component.outerHeight():i.element.outerHeight(),n(),i.element.trigger({type:"dp.show",date:b(i.date)}),G(),a&&B(a))}},i.disable=function(){var a=l();a.prop("disabled")||(a.prop("disabled",!0),H())},i.enable=function(){var a=l();a.prop("disabled")&&(a.prop("disabled",!1),F())},i.hide=function(){var a,c,d=i.widget.find(".collapse");for(a=0;a0)for(c in Fb)d=Fb[c],e=b[d],"undefined"!=typeof e&&(a[d]=e);return a}function n(a){return 0>a?Math.ceil(a):Math.floor(a)}function o(a,b,c){for(var d=""+Math.abs(a),e=a>=0;d.lengthd;d++)(c&&a[d]!==b[d]||!c&&z(a[d])!==z(b[d]))&&g++;return g+f}function w(a){if(a){var b=a.toLowerCase().replace(/(.)s$/,"$1");a=gc[a]||hc[b]||b}return a}function x(a){var b,c,d={};for(c in a)a.hasOwnProperty(c)&&(b=w(c),b&&(d[b]=a[c]));return d}function y(b){var c,d;if(0===b.indexOf("week"))c=7,d="day";else{if(0!==b.indexOf("month"))return;c=12,d="month"}rb[b]=function(e,f){var g,h,i=rb._locale[b],j=[];if("number"==typeof e&&(f=e,e=a),h=function(a){var b=rb().utc().set(d,a);return i.call(rb._locale,b,e||"")},null!=f)return h(f);for(g=0;c>g;g++)j.push(h(g));return j}}function z(a){var b=+a,c=0;return 0!==b&&isFinite(b)&&(c=b>=0?Math.floor(b):Math.ceil(b)),c}function A(a,b){return new Date(Date.UTC(a,b+1,0)).getUTCDate()}function B(a,b,c){return fb(rb([a,11,31+b-c]),b,c).week}function C(a){return D(a)?366:365}function D(a){return a%4===0&&a%100!==0||a%400===0}function E(a){var b;a._a&&-2===a._pf.overflow&&(b=a._a[yb]<0||a._a[yb]>11?yb:a._a[zb]<1||a._a[zb]>A(a._a[xb],a._a[yb])?zb:a._a[Ab]<0||a._a[Ab]>23?Ab:a._a[Bb]<0||a._a[Bb]>59?Bb:a._a[Cb]<0||a._a[Cb]>59?Cb:a._a[Db]<0||a._a[Db]>999?Db:-1,a._pf._overflowDayOfYear&&(xb>b||b>zb)&&(b=zb),a._pf.overflow=b)}function F(a){return null==a._isValid&&(a._isValid=!isNaN(a._d.getTime())&&a._pf.overflow<0&&!a._pf.empty&&!a._pf.invalidMonth&&!a._pf.nullInput&&!a._pf.invalidFormat&&!a._pf.userInvalidated,a._strict&&(a._isValid=a._isValid&&0===a._pf.charsLeftOver&&0===a._pf.unusedTokens.length)),a._isValid}function G(a){return a?a.toLowerCase().replace("_","-"):a}function H(a){for(var b,c,d,e,f=0;f0;){if(d=I(e.slice(0,b).join("-")))return d;if(c&&c.length>=b&&v(e,c,!0)>=b-1)break;b--}f++}return null}function I(a){var b=null;if(!Eb[a]&&Gb)try{b=rb.locale(),require("./locale/"+a),rb.locale(b)}catch(c){}return Eb[a]}function J(a,b){return b._isUTC?rb(a).zone(b._offset||0):rb(a).local()}function K(a){return a.match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"")}function L(a){var b,c,d=a.match(Kb);for(b=0,c=d.length;c>b;b++)d[b]=mc[d[b]]?mc[d[b]]:K(d[b]);return function(e){var f="";for(b=0;c>b;b++)f+=d[b]instanceof Function?d[b].call(e,a):d[b];return f}}function M(a,b){return a.isValid()?(b=N(b,a.localeData()),ic[b]||(ic[b]=L(b)),ic[b](a)):a.localeData().invalidDate()}function N(a,b){function c(a){return b.longDateFormat(a)||a}var d=5;for(Lb.lastIndex=0;d>=0&&Lb.test(a);)a=a.replace(Lb,c),Lb.lastIndex=0,d-=1;return a}function O(a,b){var c,d=b._strict;switch(a){case"Q":return Wb;case"DDDD":return Yb;case"YYYY":case"GGGG":case"gggg":return d?Zb:Ob;case"Y":case"G":case"g":return _b;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return d?$b:Pb;case"S":if(d)return Wb;case"SS":if(d)return Xb;case"SSS":if(d)return Yb;case"DDD":return Nb;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Rb;case"a":case"A":return b._locale._meridiemParse;case"X":return Ub;case"Z":case"ZZ":return Sb;case"T":return Tb;case"SSSS":return Qb;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return d?Xb:Mb;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Mb;case"Do":return Vb;default:return c=new RegExp(X(W(a.replace("\\","")),"i"))}}function P(a){a=a||"";var b=a.match(Sb)||[],c=b[b.length-1]||[],d=(c+"").match(ec)||["-",0,0],e=+(60*d[1])+z(d[2]);return"+"===d[0]?-e:e}function Q(a,b,c){var d,e=c._a;switch(a){case"Q":null!=b&&(e[yb]=3*(z(b)-1));break;case"M":case"MM":null!=b&&(e[yb]=z(b)-1);break;case"MMM":case"MMMM":d=c._locale.monthsParse(b),null!=d?e[yb]=d:c._pf.invalidMonth=b;break;case"D":case"DD":null!=b&&(e[zb]=z(b));break;case"Do":null!=b&&(e[zb]=z(parseInt(b,10)));break;case"DDD":case"DDDD":null!=b&&(c._dayOfYear=z(b));break;case"YY":e[xb]=rb.parseTwoDigitYear(b);break;case"YYYY":case"YYYYY":case"YYYYYY":e[xb]=z(b);break;case"a":case"A":c._isPm=c._locale.isPM(b);break;case"H":case"HH":case"h":case"hh":e[Ab]=z(b);break;case"m":case"mm":e[Bb]=z(b);break;case"s":case"ss":e[Cb]=z(b);break;case"S":case"SS":case"SSS":case"SSSS":e[Db]=z(1e3*("0."+b));break;case"X":c._d=new Date(1e3*parseFloat(b));break;case"Z":case"ZZ":c._useUTC=!0,c._tzm=P(b);break;case"dd":case"ddd":case"dddd":d=c._locale.weekdaysParse(b),null!=d?(c._w=c._w||{},c._w.d=d):c._pf.invalidWeekday=b;break;case"w":case"ww":case"W":case"WW":case"d":case"e":case"E":a=a.substr(0,1);case"gggg":case"GGGG":case"GGGGG":a=a.substr(0,2),b&&(c._w=c._w||{},c._w[a]=z(b));break;case"gg":case"GG":c._w=c._w||{},c._w[a]=rb.parseTwoDigitYear(b)}}function R(a){var c,d,e,f,g,h,i;c=a._w,null!=c.GG||null!=c.W||null!=c.E?(g=1,h=4,d=b(c.GG,a._a[xb],fb(rb(),1,4).year),e=b(c.W,1),f=b(c.E,1)):(g=a._locale._week.dow,h=a._locale._week.doy,d=b(c.gg,a._a[xb],fb(rb(),g,h).year),e=b(c.w,1),null!=c.d?(f=c.d,g>f&&++e):f=null!=c.e?c.e+g:g),i=gb(d,e,f,h,g),a._a[xb]=i.year,a._dayOfYear=i.dayOfYear}function S(a){var c,d,e,f,g=[];if(!a._d){for(e=U(a),a._w&&null==a._a[zb]&&null==a._a[yb]&&R(a),a._dayOfYear&&(f=b(a._a[xb],e[xb]),a._dayOfYear>C(f)&&(a._pf._overflowDayOfYear=!0),d=bb(f,0,a._dayOfYear),a._a[yb]=d.getUTCMonth(),a._a[zb]=d.getUTCDate()),c=0;3>c&&null==a._a[c];++c)a._a[c]=g[c]=e[c];for(;7>c;c++)a._a[c]=g[c]=null==a._a[c]?2===c?1:0:a._a[c];a._d=(a._useUTC?bb:ab).apply(null,g),null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()+a._tzm)}}function T(a){var b;a._d||(b=x(a._i),a._a=[b.year,b.month,b.day,b.hour,b.minute,b.second,b.millisecond],S(a))}function U(a){var b=new Date;return a._useUTC?[b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate()]:[b.getFullYear(),b.getMonth(),b.getDate()]}function V(a){if(a._f===rb.ISO_8601)return void Z(a);a._a=[],a._pf.empty=!0;var b,c,d,e,f,g=""+a._i,h=g.length,i=0;for(d=N(a._f,a._locale).match(Kb)||[],b=0;b0&&a._pf.unusedInput.push(f),g=g.slice(g.indexOf(c)+c.length),i+=c.length),mc[e]?(c?a._pf.empty=!1:a._pf.unusedTokens.push(e),Q(e,c,a)):a._strict&&!c&&a._pf.unusedTokens.push(e);a._pf.charsLeftOver=h-i,g.length>0&&a._pf.unusedInput.push(g),a._isPm&&a._a[Ab]<12&&(a._a[Ab]+=12),a._isPm===!1&&12===a._a[Ab]&&(a._a[Ab]=0),S(a),E(a)}function W(a){return a.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(a,b,c,d,e){return b||c||d||e})}function X(a){return a.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function Y(a){var b,d,e,f,g;if(0===a._f.length)return a._pf.invalidFormat=!0,void(a._d=new Date(0/0));for(f=0;fg)&&(e=g,d=b));l(a,d||b)}function Z(a){var b,c,d=a._i,e=ac.exec(d);if(e){for(a._pf.iso=!0,b=0,c=cc.length;c>b;b++)if(cc[b][1].exec(d)){a._f=cc[b][0]+(e[6]||" ");break}for(b=0,c=dc.length;c>b;b++)if(dc[b][1].exec(d)){a._f+=dc[b][0];break}d.match(Sb)&&(a._f+="Z"),V(a)}else a._isValid=!1}function $(a){Z(a),a._isValid===!1&&(delete a._isValid,rb.createFromInputFallback(a))}function _(b){var c,d=b._i;d===a?b._d=new Date:u(d)?b._d=new Date(+d):null!==(c=Hb.exec(d))?b._d=new Date(+c[1]):"string"==typeof d?$(b):t(d)?(b._a=d.slice(0),S(b)):"object"==typeof d?T(b):"number"==typeof d?b._d=new Date(d):rb.createFromInputFallback(b)}function ab(a,b,c,d,e,f,g){var h=new Date(a,b,c,d,e,f,g);return 1970>a&&h.setFullYear(a),h}function bb(a){var b=new Date(Date.UTC.apply(null,arguments));return 1970>a&&b.setUTCFullYear(a),b}function cb(a,b){if("string"==typeof a)if(isNaN(a)){if(a=b.weekdaysParse(a),"number"!=typeof a)return null}else a=parseInt(a,10);return a}function db(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function eb(a,b,c){var d=rb.duration(a).abs(),e=wb(d.as("s")),f=wb(d.as("m")),g=wb(d.as("h")),h=wb(d.as("d")),i=wb(d.as("M")),j=wb(d.as("y")),k=e0,k[4]=c,db.apply({},k)}function fb(a,b,c){var d,e=c-b,f=c-a.day();return f>e&&(f-=7),e-7>f&&(f+=7),d=rb(a).add(f,"d"),{week:Math.ceil(d.dayOfYear()/7),year:d.year()}}function gb(a,b,c,d,e){var f,g,h=bb(a,0,1).getUTCDay();return h=0===h?7:h,c=null!=c?c:e,f=e-h+(h>d?7:0)-(e>h?7:0),g=7*(b-1)+(c-e)+f+1,{year:g>0?a:a-1,dayOfYear:g>0?g:C(a-1)+g}}function hb(b){var c=b._i,d=b._f;return b._locale=b._locale||rb.localeData(b._l),null===c||d===a&&""===c?rb.invalid({nullInput:!0}):("string"==typeof c&&(b._i=c=b._locale.preparse(c)),rb.isMoment(c)?new j(c,!0):(d?t(d)?Y(b):V(b):_(b),new j(b)))}function ib(a,b){var c,d;if(1===b.length&&t(b[0])&&(b=b[0]),!b.length)return rb();for(c=b[0],d=1;d=0?"+":"-";return b+o(Math.abs(a),6)},gg:function(){return o(this.weekYear()%100,2)},gggg:function(){return o(this.weekYear(),4)},ggggg:function(){return o(this.weekYear(),5)},GG:function(){return o(this.isoWeekYear()%100,2)},GGGG:function(){return o(this.isoWeekYear(),4)},GGGGG:function(){return o(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return z(this.milliseconds()/100)},SS:function(){return o(z(this.milliseconds()/10),2)},SSS:function(){return o(this.milliseconds(),3)},SSSS:function(){return o(this.milliseconds(),3)},Z:function(){var a=-this.zone(),b="+";return 0>a&&(a=-a,b="-"),b+o(z(a/60),2)+":"+o(z(a)%60,2)},ZZ:function(){var a=-this.zone(),b="+";return 0>a&&(a=-a,b="-"),b+o(z(a/60),2)+o(z(a)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},X:function(){return this.unix()},Q:function(){return this.quarter()}},nc={},oc=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"];kc.length;)tb=kc.pop(),mc[tb+"o"]=h(mc[tb],tb);for(;lc.length;)tb=lc.pop(),mc[tb+tb]=g(mc[tb],2);mc.DDDD=g(mc.DDD,3),l(i.prototype,{set:function(a){var b,c;for(c in a)b=a[c],"function"==typeof b?this[c]=b:this["_"+c]=b},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(a){return this._months[a.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(a){return this._monthsShort[a.month()]},monthsParse:function(a){var b,c,d;for(this._monthsParse||(this._monthsParse=[]),b=0;12>b;b++)if(this._monthsParse[b]||(c=rb.utc([2e3,b]),d="^"+this.months(c,"")+"|^"+this.monthsShort(c,""),this._monthsParse[b]=new RegExp(d.replace(".",""),"i")),this._monthsParse[b].test(a))return b},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(a){return this._weekdays[a.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(a){return this._weekdaysShort[a.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(a){return this._weekdaysMin[a.day()]},weekdaysParse:function(a){var b,c,d;for(this._weekdaysParse||(this._weekdaysParse=[]),b=0;7>b;b++)if(this._weekdaysParse[b]||(c=rb([2e3,1]).day(b),d="^"+this.weekdays(c,"")+"|^"+this.weekdaysShort(c,"")+"|^"+this.weekdaysMin(c,""),this._weekdaysParse[b]=new RegExp(d.replace(".",""),"i")),this._weekdaysParse[b].test(a))return b},_longDateFormat:{LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY LT",LLLL:"dddd, MMMM D, YYYY LT"},longDateFormat:function(a){var b=this._longDateFormat[a];return!b&&this._longDateFormat[a.toUpperCase()]&&(b=this._longDateFormat[a.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(a){return a.slice(1)}),this._longDateFormat[a]=b),b},isPM:function(a){return"p"===(a+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(a,b,c){return a>11?c?"pm":"PM":c?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(a,b){var c=this._calendar[a];return"function"==typeof c?c.apply(b):c},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(a,b,c,d){var e=this._relativeTime[c];return"function"==typeof e?e(a,b,c,d):e.replace(/%d/i,a)},pastFuture:function(a,b){var c=this._relativeTime[a>0?"future":"past"];return"function"==typeof c?c(b):c.replace(/%s/i,b)},ordinal:function(a){return this._ordinal.replace("%d",a)},_ordinal:"%d",preparse:function(a){return a},postformat:function(a){return a},week:function(a){return fb(a,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),rb=function(b,d,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._i=b,g._f=d,g._l=e,g._strict=f,g._isUTC=!1,g._pf=c(),hb(g)},rb.suppressDeprecationWarnings=!1,rb.createFromInputFallback=e("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(a){a._d=new Date(a._i)}),rb.min=function(){var a=[].slice.call(arguments,0);return ib("isBefore",a)},rb.max=function(){var a=[].slice.call(arguments,0);return ib("isAfter",a)},rb.utc=function(b,d,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._useUTC=!0,g._isUTC=!0,g._l=e,g._i=b,g._f=d,g._strict=f,g._pf=c(),hb(g).utc()},rb.unix=function(a){return rb(1e3*a)},rb.duration=function(a,b){var c,d,e,f,g=a,h=null;return rb.isDuration(a)?g={ms:a._milliseconds,d:a._days,M:a._months}:"number"==typeof a?(g={},b?g[b]=a:g.milliseconds=a):(h=Ib.exec(a))?(c="-"===h[1]?-1:1,g={y:0,d:z(h[zb])*c,h:z(h[Ab])*c,m:z(h[Bb])*c,s:z(h[Cb])*c,ms:z(h[Db])*c}):(h=Jb.exec(a))?(c="-"===h[1]?-1:1,e=function(a){var b=a&&parseFloat(a.replace(",","."));return(isNaN(b)?0:b)*c},g={y:e(h[2]),M:e(h[3]),d:e(h[4]),h:e(h[5]),m:e(h[6]),s:e(h[7]),w:e(h[8])}):"object"==typeof g&&("from"in g||"to"in g)&&(f=q(rb(g.from),rb(g.to)),g={},g.ms=f.milliseconds,g.M=f.months),d=new k(g),rb.isDuration(a)&&a.hasOwnProperty("_locale")&&(d._locale=a._locale),d},rb.version=ub,rb.defaultFormat=bc,rb.ISO_8601=function(){},rb.momentProperties=Fb,rb.updateOffset=function(){},rb.relativeTimeThreshold=function(b,c){return jc[b]===a?!1:c===a?jc[b]:(jc[b]=c,!0)},rb.lang=e("moment.lang is deprecated. Use moment.locale instead.",function(a,b){return rb.locale(a,b)}),rb.locale=function(a,b){var c;return a&&(c="undefined"!=typeof b?rb.defineLocale(a,b):rb.localeData(a),c&&(rb.duration._locale=rb._locale=c)),rb._locale._abbr},rb.defineLocale=function(a,b){return null!==b?(b.abbr=a,Eb[a]||(Eb[a]=new i),Eb[a].set(b),rb.locale(a),Eb[a]):(delete Eb[a],null)},rb.langData=e("moment.langData is deprecated. Use moment.localeData instead.",function(a){return rb.localeData(a)}),rb.localeData=function(a){var b;if(a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr),!a)return rb._locale;if(!t(a)){if(b=I(a))return b;a=[a]}return H(a)},rb.isMoment=function(a){return a instanceof j||null!=a&&a.hasOwnProperty("_isAMomentObject")},rb.isDuration=function(a){return a instanceof k};for(tb=oc.length-1;tb>=0;--tb)y(oc[tb]);rb.normalizeUnits=function(a){return w(a)},rb.invalid=function(a){var b=rb.utc(0/0);return null!=a?l(b._pf,a):b._pf.userInvalidated=!0,b},rb.parseZone=function(){return rb.apply(null,arguments).parseZone()},rb.parseTwoDigitYear=function(a){return z(a)+(z(a)>68?1900:2e3)},l(rb.fn=j.prototype,{clone:function(){return rb(this)},valueOf:function(){return+this._d+6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var a=rb(this).utc();return 00:!1},parsingFlags:function(){return l({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(a){return this.zone(0,a)},local:function(a){return this._isUTC&&(this.zone(0,a),this._isUTC=!1,a&&this.add(this._d.getTimezoneOffset(),"m")),this},format:function(a){var b=M(this,a||rb.defaultFormat);return this.localeData().postformat(b)},add:r(1,"add"),subtract:r(-1,"subtract"),diff:function(a,b,c){var d,e,f=J(a,this),g=6e4*(this.zone()-f.zone());return b=w(b),"year"===b||"month"===b?(d=432e5*(this.daysInMonth()+f.daysInMonth()),e=12*(this.year()-f.year())+(this.month()-f.month()),e+=(this-rb(this).startOf("month")-(f-rb(f).startOf("month")))/d,e-=6e4*(this.zone()-rb(this).startOf("month").zone()-(f.zone()-rb(f).startOf("month").zone()))/d,"year"===b&&(e/=12)):(d=this-f,e="second"===b?d/1e3:"minute"===b?d/6e4:"hour"===b?d/36e5:"day"===b?(d-g)/864e5:"week"===b?(d-g)/6048e5:d),c?e:n(e)},from:function(a,b){return rb.duration({to:this,from:a}).locale(this.locale()).humanize(!b)},fromNow:function(a){return this.from(rb(),a)},calendar:function(a){var b=a||rb(),c=J(b,this).startOf("day"),d=this.diff(c,"days",!0),e=-6>d?"sameElse":-1>d?"lastWeek":0>d?"lastDay":1>d?"sameDay":2>d?"nextDay":7>d?"nextWeek":"sameElse";return this.format(this.localeData().calendar(e,this))},isLeapYear:function(){return D(this.year())},isDST:function(){return this.zone()+rb(a).startOf(b)},isBefore:function(a,b){return b="undefined"!=typeof b?b:"millisecond",+this.clone().startOf(b)<+rb(a).startOf(b)},isSame:function(a,b){return b=b||"ms",+this.clone().startOf(b)===+J(a,this).startOf(b)},min:e("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(a){return a=rb.apply(null,arguments),this>a?this:a}),max:e("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(a){return a=rb.apply(null,arguments),a>this?this:a}),zone:function(a,b){var c,d=this._offset||0;return null==a?this._isUTC?d:this._d.getTimezoneOffset():("string"==typeof a&&(a=P(a)),Math.abs(a)<16&&(a=60*a),!this._isUTC&&b&&(c=this._d.getTimezoneOffset()),this._offset=a,this._isUTC=!0,null!=c&&this.subtract(c,"m"),d!==a&&(!b||this._changeInProgress?s(this,rb.duration(d-a,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,rb.updateOffset(this,!0),this._changeInProgress=null)),this)},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.zone(this._tzm):"string"==typeof this._i&&this.zone(this._i),this},hasAlignedHourOffset:function(a){return a=a?rb(a).zone():0,(this.zone()-a)%60===0},daysInMonth:function(){return A(this.year(),this.month())},dayOfYear:function(a){var b=wb((rb(this).startOf("day")-rb(this).startOf("year"))/864e5)+1;return null==a?b:this.add(a-b,"d")},quarter:function(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)},weekYear:function(a){var b=fb(this,this.localeData()._week.dow,this.localeData()._week.doy).year;return null==a?b:this.add(a-b,"y")},isoWeekYear:function(a){var b=fb(this,1,4).year;return null==a?b:this.add(a-b,"y")},week:function(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")},isoWeek:function(a){var b=fb(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")},weekday:function(a){var b=(this.day()+7-this.localeData()._week.dow)%7;return null==a?b:this.add(a-b,"d")},isoWeekday:function(a){return null==a?this.day()||7:this.day(this.day()%7?a:a-7)},isoWeeksInYear:function(){return B(this.year(),1,4)},weeksInYear:function(){var a=this.localeData()._week;return B(this.year(),a.dow,a.doy)},get:function(a){return a=w(a),this[a]()},set:function(a,b){return a=w(a),"function"==typeof this[a]&&this[a](b),this},locale:function(b){return b===a?this._locale._abbr:(this._locale=rb.localeData(b),this)},lang:e("moment().lang() is deprecated. Use moment().localeData() instead.",function(b){return b===a?this.localeData():(this._locale=rb.localeData(b),this)}),localeData:function(){return this._locale}}),rb.fn.millisecond=rb.fn.milliseconds=mb("Milliseconds",!1),rb.fn.second=rb.fn.seconds=mb("Seconds",!1),rb.fn.minute=rb.fn.minutes=mb("Minutes",!1),rb.fn.hour=rb.fn.hours=mb("Hours",!0),rb.fn.date=mb("Date",!0),rb.fn.dates=e("dates accessor is deprecated. Use date instead.",mb("Date",!0)),rb.fn.year=mb("FullYear",!0),rb.fn.years=e("years accessor is deprecated. Use year instead.",mb("FullYear",!0)),rb.fn.days=rb.fn.day,rb.fn.months=rb.fn.month,rb.fn.weeks=rb.fn.week,rb.fn.isoWeeks=rb.fn.isoWeek,rb.fn.quarters=rb.fn.quarter,rb.fn.toJSON=rb.fn.toISOString,l(rb.duration.fn=k.prototype,{_bubble:function(){var a,b,c,d=this._milliseconds,e=this._days,f=this._months,g=this._data,h=0;g.milliseconds=d%1e3,a=n(d/1e3),g.seconds=a%60,b=n(a/60),g.minutes=b%60,c=n(b/60),g.hours=c%24,e+=n(c/24),h=n(nb(e)),e-=n(ob(h)),f+=n(e/30),e%=30,h+=n(f/12),f%=12,g.days=e,g.months=f,g.years=h},abs:function(){return this._milliseconds=Math.abs(this._milliseconds),this._days=Math.abs(this._days),this._months=Math.abs(this._months),this._data.milliseconds=Math.abs(this._data.milliseconds),this._data.seconds=Math.abs(this._data.seconds),this._data.minutes=Math.abs(this._data.minutes),this._data.hours=Math.abs(this._data.hours),this._data.months=Math.abs(this._data.months),this._data.years=Math.abs(this._data.years),this},weeks:function(){return n(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*z(this._months/12)},humanize:function(a){var b=eb(this,!a,this.localeData());return a&&(b=this.localeData().pastFuture(+this,b)),this.localeData().postformat(b)},add:function(a,b){var c=rb.duration(a,b);return this._milliseconds+=c._milliseconds,this._days+=c._days,this._months+=c._months,this._bubble(),this},subtract:function(a,b){var c=rb.duration(a,b);return this._milliseconds-=c._milliseconds,this._days-=c._days,this._months-=c._months,this._bubble(),this},get:function(a){return a=w(a),this[a.toLowerCase()+"s"]()},as:function(a){var b,c;if(a=w(a),b=this._days+this._milliseconds/864e5,"month"===a||"year"===a)return c=this._months+12*nb(b),"month"===a?c:c/12;switch(b+=ob(this._months/12),a){case"week":return b/7;case"day":return b;case"hour":return 24*b;case"minute":return 24*b*60;case"second":return 24*b*60*60;case"millisecond":return 24*b*60*60*1e3;default:throw new Error("Unknown unit "+a)}},lang:rb.fn.lang,locale:rb.fn.locale,toIsoString:e("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",function(){return this.toISOString()}),toISOString:function(){var a=Math.abs(this.years()),b=Math.abs(this.months()),c=Math.abs(this.days()),d=Math.abs(this.hours()),e=Math.abs(this.minutes()),f=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(a?a+"Y":"")+(b?b+"M":"")+(c?c+"D":"")+(d||e||f?"T":"")+(d?d+"H":"")+(e?e+"M":"")+(f?f+"S":""):"P0D"},localeData:function(){return this._locale}});for(tb in fc)fc.hasOwnProperty(tb)&&pb(tb.toLowerCase());rb.duration.fn.asMilliseconds=function(){return this.as("ms")},rb.duration.fn.asSeconds=function(){return this.as("s")},rb.duration.fn.asMinutes=function(){return this.as("m")},rb.duration.fn.asHours=function(){return this.as("h")},rb.duration.fn.asDays=function(){return this.as("d")},rb.duration.fn.asWeeks=function(){return this.as("weeks")},rb.duration.fn.asMonths=function(){return this.as("M")},rb.duration.fn.asYears=function(){return this.as("y")},rb.locale("en",{ordinal:function(a){var b=a%10,c=1===z(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}}),Gb?module.exports=rb:"function"==typeof define&&define.amd?(define("moment",function(a,b,c){return c.config&&c.config()&&c.config().noGlobal===!0&&(vb.moment=sb),rb}),qb(!0)):qb()}).call(this); \ No newline at end of file diff --git a/library/datetimepicker/.gitignore b/library/datetimepicker/.gitignore new file mode 100644 index 000000000..0012f7d23 --- /dev/null +++ b/library/datetimepicker/.gitignore @@ -0,0 +1 @@ +index.php \ No newline at end of file diff --git a/library/datetimepicker/MIT-LICENSE.txt b/library/datetimepicker/MIT-LICENSE.txt new file mode 100644 index 000000000..2e68e7d6a --- /dev/null +++ b/library/datetimepicker/MIT-LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (c) 2013 http://xdsoft.net + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/library/datetimepicker/README.md b/library/datetimepicker/README.md new file mode 100644 index 000000000..f0d3f40e3 --- /dev/null +++ b/library/datetimepicker/README.md @@ -0,0 +1,20 @@ +datetimepicker +============== +[Documentation][doc] + + +jQuery Plugin Date and Time Picker + +DateTimePicker + +![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/1.png) + +DatePicker + +![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/2.png) + +TimePicker + +![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/3.png) + +[doc]: http://xdsoft.net/jqplugins/datetimepicker/ diff --git a/library/datetimepicker/jquery.datetimepicker.css b/library/datetimepicker/jquery.datetimepicker.css new file mode 100644 index 000000000..acf674af7 --- /dev/null +++ b/library/datetimepicker/jquery.datetimepicker.css @@ -0,0 +1,418 @@ +.xdsoft_datetimepicker{ + box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.506); + background: #FFFFFF; + border-bottom: 1px solid #BBBBBB; + border-left: 1px solid #CCCCCC; + border-right: 1px solid #CCCCCC; + border-top: 1px solid #CCCCCC; + color: #333333; + font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif; + padding: 8px; + padding-left: 0px; + padding-top: 2px; + position: absolute; + z-index: 9999; + -moz-box-sizing: border-box; + box-sizing: border-box; + display:none; +} + +.xdsoft_datetimepicker iframe { + position: absolute; + left: 0; + top: 0; + width: 75px; + height: 210px; + background: transparent; + border:none; +} +/*For IE8 or lower*/ +.xdsoft_datetimepicker button { + border:none !important; +} + +.xdsoft_noselect{ + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; +} +.xdsoft_noselect::selection { background: transparent; } +.xdsoft_noselect::-moz-selection { background: transparent; } +.xdsoft_datetimepicker.xdsoft_inline{ + display: inline-block; + position: static; + box-shadow: none; +} +.xdsoft_datetimepicker *{ + -moz-box-sizing: border-box; + box-sizing: border-box; + padding:0px; + margin:0px; +} +.xdsoft_datetimepicker .xdsoft_datepicker, .xdsoft_datetimepicker .xdsoft_timepicker{ + display:none; +} +.xdsoft_datetimepicker .xdsoft_datepicker.active, .xdsoft_datetimepicker .xdsoft_timepicker.active{ + display:block; +} +.xdsoft_datetimepicker .xdsoft_datepicker{ + width: 224px; + float:left; + margin-left:8px; +} +.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker{ + width: 256px; +} +.xdsoft_datetimepicker .xdsoft_timepicker{ + width: 58px; + float:left; + text-align:center; + margin-left:8px; + margin-top:0px; +} +.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{ + margin-top:8px; + margin-bottom:3px +} +.xdsoft_datetimepicker .xdsoft_mounthpicker{ + position: relative; + text-align: center; +} + +.xdsoft_datetimepicker .xdsoft_label i, +.xdsoft_datetimepicker .xdsoft_prev, +.xdsoft_datetimepicker .xdsoft_next, +.xdsoft_datetimepicker .xdsoft_today_button{ + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC); +} + +.xdsoft_datetimepicker .xdsoft_label i{ + opacity:0.5; + background-position:-92px -19px; + display: inline-block; + width: 9px; + height: 20px; + vertical-align: middle; +} + +.xdsoft_datetimepicker .xdsoft_prev{ + float: left; + background-position:-20px 0px; +} +.xdsoft_datetimepicker .xdsoft_today_button{ + float: left; + background-position:-70px 0px; + margin-left:5px; +} + +.xdsoft_datetimepicker .xdsoft_next{ + float: right; + background-position:0px 0px; +} + +.xdsoft_datetimepicker .xdsoft_next, +.xdsoft_datetimepicker .xdsoft_prev , +.xdsoft_datetimepicker .xdsoft_today_button{ + background-color: transparent; + background-repeat: no-repeat; + border: 0px none currentColor; + cursor: pointer; + display: block; + height: 30px; + opacity: 0.5; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + outline: medium none currentColor; + overflow: hidden; + padding: 0px; + position: relative; + text-indent: 100%; + white-space: nowrap; + width: 20px; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{ + float:none; + background-position:-40px -15px; + height: 15px; + width: 30px; + display: block; + margin-left:14px; + margin-top:7px; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev{ + background-position:-40px 0px; + margin-bottom:7px; + margin-top:0px; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{ + height:151px; + overflow:hidden; + border-bottom:1px solid #DDDDDD; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{ + background: #F5F5F5; + border-top:1px solid #DDDDDD; + color: #666666; + font-size: 12px; + text-align: center; + border-collapse:collapse; + cursor:pointer; + border-bottom-width:0px; + height:25px; + line-height:25px; +} + +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div > div:first-child{ + border-top-width:0px; +} +.xdsoft_datetimepicker .xdsoft_today_button:hover, +.xdsoft_datetimepicker .xdsoft_next:hover, +.xdsoft_datetimepicker .xdsoft_prev:hover { + opacity: 1; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; +} +.xdsoft_datetimepicker .xdsoft_label{ + display: inline; + position: relative; + z-index: 9999; + margin: 0; + padding: 5px 3px; + font-size: 14px; + line-height: 20px; + font-weight: bold; + background-color: #fff; + float:left; + width:182px; + text-align:center; + cursor:pointer; +} +.xdsoft_datetimepicker .xdsoft_label:hover>span{ + text-decoration:underline; +} +.xdsoft_datetimepicker .xdsoft_label:hover i{ + opacity:1.0; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select{ + border:1px solid #ccc; + position:absolute; + right:0px; + top:30px; + z-index:101; + display:none; + background:#fff; + max-height:160px; + overflow-y:hidden; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect{right:-7px;} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect{right:2px;} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover{ + color: #fff; + background: #ff8000; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option{ + padding:2px 10px 2px 5px; + text-decoration:none !important; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current{ + background: #33AAFF; + box-shadow: #178FE5 0px 1px 3px 0px inset; + color:#fff; + font-weight: 700; +} +.xdsoft_datetimepicker .xdsoft_month{ + width:100px; + text-align:right; +} +.xdsoft_datetimepicker .xdsoft_calendar{ + clear:both; +} +.xdsoft_datetimepicker .xdsoft_year{ + width: 48px; + margin-left: 5px; +} +.xdsoft_datetimepicker .xdsoft_calendar table{ + border-collapse:collapse; + width:100%; + +} +.xdsoft_datetimepicker .xdsoft_calendar td > div{ + padding-right:5px; +} +.xdsoft_datetimepicker .xdsoft_calendar th{ + height: 25px; +} +.xdsoft_datetimepicker .xdsoft_calendar td,.xdsoft_datetimepicker .xdsoft_calendar th{ + width:14.2857142%; + background: #F5F5F5; + border:1px solid #DDDDDD; + color: #666666; + font-size: 12px; + text-align: right; + vertical-align: middle; + padding:0px; + border-collapse:collapse; + cursor:pointer; + height: 25px; +} +.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th{ + width:12.5%; +} +.xdsoft_datetimepicker .xdsoft_calendar th{ + background: #F1F1F1; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today{ + color:#33AAFF; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current{ + background: #33AAFF; + box-shadow: #178FE5 0px 1px 3px 0px inset; + color:#fff; + font-weight: 700; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month, +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled, +.xdsoft_datetimepicker .xdsoft_time_box >div >div.xdsoft_disabled{ + opacity:0.5; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled{ + opacity:0.2; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; +} +.xdsoft_datetimepicker .xdsoft_calendar td:hover, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div:hover{ + color: #fff !important; + background: #ff8000 !important; + box-shadow: none !important; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_disabled:hover{ + color: inherit !important; + background: inherit !important; + box-shadow: inherit !important; +} +.xdsoft_datetimepicker .xdsoft_calendar th{ + font-weight: 700; + text-align: center; + color: #999; + cursor:default; +} +.xdsoft_datetimepicker .xdsoft_copyright{ color:#ccc !important; font-size:10px;clear:both;float:none;margin-left:8px;} +.xdsoft_datetimepicker .xdsoft_copyright a{ color:#eee !important;} +.xdsoft_datetimepicker .xdsoft_copyright a:hover{ color:#aaa !important;} + + +.xdsoft_time_box{ + position:relative; + border:1px solid #ccc; +} +.xdsoft_scrollbar >.xdsoft_scroller{ + background:#ccc !important; + height:20px; + border-radius:3px; +} +.xdsoft_scrollbar{ + position:absolute; + width:7px; + right:0px; + top:0px; + bottom:0px; + cursor:pointer; +} +.xdsoft_scroller_box{ +position:relative; +} + + +.xdsoft_datetimepicker.xdsoft_dark{ + box-shadow: 0px 5px 15px -5px rgba(255, 255, 255, 0.506); + background: #000000; + border-bottom: 1px solid #444444; + border-left: 1px solid #333333; + border-right: 1px solid #333333; + border-top: 1px solid #333333; + color: #cccccc; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box{ + border-bottom:1px solid #222222; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div{ + background: #0a0a0a; + border-top:1px solid #222222; + color: #999999; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label{ + background-color: #000; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select{ + border:1px solid #333; + background:#000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover{ + color: #000; + background: #007fff; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current{ + background: #cc5500; + box-shadow: #b03e00 0px 1px 3px 0px inset; + color:#000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button{ + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==); +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{ + background: #0a0a0a; + border:1px solid #222222; + color: #999999; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{ + background: #0e0e0e; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today{ + color:#cc5500; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current{ + background: #cc5500; + box-shadow: #b03e00 0px 1px 3px 0px inset; + color:#000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div:hover{ + color: #000 !important; + background: #007fff !important; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{ + color: #666; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright{ color:#333 !important;} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a{ color:#111 !important;} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover{ color:#555 !important;} + + +.xdsoft_dark .xdsoft_time_box{ + border:1px solid #333; +} +.xdsoft_dark .xdsoft_scrollbar >.xdsoft_scroller{ + background:#333 !important; +} diff --git a/library/datetimepicker/jquery.datetimepicker.js b/library/datetimepicker/jquery.datetimepicker.js new file mode 100644 index 000000000..d4e93dd13 --- /dev/null +++ b/library/datetimepicker/jquery.datetimepicker.js @@ -0,0 +1,1661 @@ +/** + * @preserve jQuery DateTimePicker plugin v2.4.0 + * @homepage http://xdsoft.net/jqplugins/datetimepicker/ + * (c) 2014, Chupurnov Valeriy. + */ +/*global document,window,jQuery,setTimeout,clearTimeout*/ +(function ($) { + 'use strict'; + var default_options = { + i18n: { + ar: { // Arabic + months: [ + "كانون الثاني", "شباط", "آذار", "نيسان", "مايو", "حزيران", "تموز", "آب", "أيلول", "تشرين الأول", "تشرين الثاني", "كانون الأول" + ], + dayOfWeek: [ + "ن", "ث", "ع", "خ", "ج", "س", "ح" + ] + }, + ro: { // Romanian + months: [ + "ianuarie", "februarie", "martie", "aprilie", "mai", "iunie", "iulie", "august", "septembrie", "octombrie", "noiembrie", "decembrie" + ], + dayOfWeek: [ + "l", "ma", "mi", "j", "v", "s", "d" + ] + }, + id: { // Indonesian + months: [ + "Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember" + ], + dayOfWeek: [ + "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Min" + ] + }, + bg: { // Bulgarian + months: [ + "Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември" + ], + dayOfWeek: [ + "Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб" + ] + }, + fa: { // Persian/Farsi + months: [ + 'فروردین', 'اردیبهشت', 'خرداد', 'تیر', 'مرداد', 'شهریور', 'مهر', 'آبان', 'آذر', 'دی', 'بهمن', 'اسفند' + ], + dayOfWeek: [ + 'یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه' + ] + }, + ru: { // Russian + months: [ + 'Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь' + ], + dayOfWeek: [ + "Вск", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб" + ] + }, + uk: { // Ukrainian + months: [ + 'Січень', 'Лютий', 'Березень', 'Квітень', 'Травень', 'Червень', 'Липень', 'Серпень', 'Вересень', 'Жовтень', 'Листопад', 'Грудень' + ], + dayOfWeek: [ + "Ндл", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Сбт" + ] + }, + en: { // English + months: [ + "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" + ], + dayOfWeek: [ + "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" + ] + }, + el: { // Ελληνικά + months: [ + "Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος" + ], + dayOfWeek: [ + "Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ" + ] + }, + de: { // German + months: [ + 'Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember' + ], + dayOfWeek: [ + "So", "Mo", "Di", "Mi", "Do", "Fr", "Sa" + ] + }, + nl: { // Dutch + months: [ + "januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december" + ], + dayOfWeek: [ + "zo", "ma", "di", "wo", "do", "vr", "za" + ] + }, + tr: { // Turkish + months: [ + "Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık" + ], + dayOfWeek: [ + "Paz", "Pts", "Sal", "Çar", "Per", "Cum", "Cts" + ] + }, + fr: { //French + months: [ + "Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre" + ], + dayOfWeek: [ + "Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam" + ] + }, + es: { // Spanish + months: [ + "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre" + ], + dayOfWeek: [ + "Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb" + ] + }, + th: { // Thai + months: [ + 'มกราคม', 'กุมภาพันธ์', 'มีนาคม', 'เมษายน', 'พฤษภาคม', 'มิถุนายน', 'กรกฎาคม', 'สิงหาคม', 'กันยายน', 'ตุลาคม', 'พฤศจิกายน', 'ธันวาคม' + ], + dayOfWeek: [ + 'อา.', 'จ.', 'อ.', 'พ.', 'พฤ.', 'ศ.', 'ส.' + ] + }, + pl: { // Polish + months: [ + "styczeń", "luty", "marzec", "kwiecień", "maj", "czerwiec", "lipiec", "sierpień", "wrzesień", "październik", "listopad", "grudzień" + ], + dayOfWeek: [ + "nd", "pn", "wt", "śr", "cz", "pt", "sb" + ] + }, + pt: { // Portuguese + months: [ + "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" + ], + dayOfWeek: [ + "Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab" + ] + }, + ch: { // Simplified Chinese + months: [ + "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" + ], + dayOfWeek: [ + "日", "一", "二", "三", "四", "五", "六" + ] + }, + se: { // Swedish + months: [ + "Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December" + ], + dayOfWeek: [ + "Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör" + ] + }, + kr: { // Korean + months: [ + "1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월" + ], + dayOfWeek: [ + "일", "월", "화", "수", "목", "금", "토" + ] + }, + it: { // Italian + months: [ + "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" + ], + dayOfWeek: [ + "Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab" + ] + }, + da: { // Dansk + months: [ + "January", "Februar", "Marts", "April", "Maj", "Juni", "July", "August", "September", "Oktober", "November", "December" + ], + dayOfWeek: [ + "Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør" + ] + }, + no: { // Norwegian + months: [ + "Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember" + ], + dayOfWeek: [ + "Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør" + ] + }, + ja: { // Japanese + months: [ + "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月" + ], + dayOfWeek: [ + "日", "月", "火", "水", "木", "金", "土" + ] + }, + vi: { // Vietnamese + months: [ + "Tháng 1", "Tháng 2", "Tháng 3", "Tháng 4", "Tháng 5", "Tháng 6", "Tháng 7", "Tháng 8", "Tháng 9", "Tháng 10", "Tháng 11", "Tháng 12" + ], + dayOfWeek: [ + "CN", "T2", "T3", "T4", "T5", "T6", "T7" + ] + }, + sl: { // Slovenščina + months: [ + "Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December" + ], + dayOfWeek: [ + "Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob" + ] + }, + cs: { // Čeština + months: [ + "Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec" + ], + dayOfWeek: [ + "Ne", "Po", "Út", "St", "Čt", "Pá", "So" + ] + }, + hu: { // Hungarian + months: [ + "Január", "Február", "Március", "Április", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December" + ], + dayOfWeek: [ + "Va", "Hé", "Ke", "Sze", "Cs", "Pé", "Szo" + ] + } + }, + value: '', + lang: 'en', + + format: 'Y/m/d H:i', + formatTime: 'H:i', + formatDate: 'Y/m/d', + + startDate: false, // new Date(), '1986/12/08', '-1970/01/05','-1970/01/05', + step: 60, + monthChangeSpinner: true, + + closeOnDateSelect: false, + closeOnWithoutClick: true, + closeOnInputClick: true, + + timepicker: true, + datepicker: true, + weeks: false, + + defaultTime: false, // use formatTime format (ex. '10:00' for formatTime: 'H:i') + defaultDate: false, // use formatDate format (ex new Date() or '1986/12/08' or '-1970/01/05' or '-1970/01/05') + + minDate: false, + maxDate: false, + minTime: false, + maxTime: false, + + allowTimes: [], + opened: false, + initTime: true, + inline: false, + theme: '', + + onSelectDate: function () {}, + onSelectTime: function () {}, + onChangeMonth: function () {}, + onChangeYear: function () {}, + onChangeDateTime: function () {}, + onShow: function () {}, + onClose: function () {}, + onGenerate: function () {}, + + withoutCopyright: true, + inverseButton: false, + hours12: false, + next: 'xdsoft_next', + prev : 'xdsoft_prev', + dayOfWeekStart: 0, + parentID: 'body', + timeHeightInTimePicker: 25, + timepickerScrollbar: true, + todayButton: true, + defaultSelect: true, + + scrollMonth: true, + scrollTime: true, + scrollInput: true, + + lazyInit: false, + mask: false, + validateOnBlur: true, + allowBlank: true, + yearStart: 1950, + yearEnd: 2050, + style: '', + id: '', + fixed: false, + roundTime: 'round', // ceil, floor + className: '', + weekends: [], + disabledDates : [], + yearOffset: 0, + beforeShowDay: null, + + enterLikeTab: true + }; + // fix for ie8 + if (!Array.prototype.indexOf) { + Array.prototype.indexOf = function (obj, start) { + var i, j; + for (i = (start || 0), j = this.length; i < j; i += 1) { + if (this[i] === obj) { return i; } + } + return -1; + }; + } + Date.prototype.countDaysInMonth = function () { + return new Date(this.getFullYear(), this.getMonth() + 1, 0).getDate(); + }; + $.fn.xdsoftScroller = function (percent) { + return this.each(function () { + var timeboxparent = $(this), + pointerEventToXY = function (e) { + var out = {x: 0, y: 0}, + touch; + if (e.type === 'touchstart' || e.type === 'touchmove' || e.type === 'touchend' || e.type === 'touchcancel') { + touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0]; + out.x = touch.clientX; + out.y = touch.clientY; + } else if (e.type === 'mousedown' || e.type === 'mouseup' || e.type === 'mousemove' || e.type === 'mouseover' || e.type === 'mouseout' || e.type === 'mouseenter' || e.type === 'mouseleave') { + out.x = e.clientX; + out.y = e.clientY; + } + return out; + }, + move = 0, + timebox, + parentHeight, + height, + scrollbar, + scroller, + maximumOffset = 100, + start = false, + startY = 0, + startTop = 0, + h1 = 0, + touchStart = false, + startTopScroll = 0, + calcOffset = function () {}; + if (percent === 'hide') { + timeboxparent.find('.xdsoft_scrollbar').hide(); + return; + } + if (!$(this).hasClass('xdsoft_scroller_box')) { + timebox = timeboxparent.children().eq(0); + parentHeight = timeboxparent[0].clientHeight; + height = timebox[0].offsetHeight; + scrollbar = $('
      '); + scroller = $('
      '); + scrollbar.append(scroller); + + timeboxparent.addClass('xdsoft_scroller_box').append(scrollbar); + calcOffset = function calcOffset(event) { + var offset = pointerEventToXY(event).y - startY + startTopScroll; + if (offset < 0) { + offset = 0; + } + if (offset + scroller[0].offsetHeight > h1) { + offset = h1 - scroller[0].offsetHeight; + } + timeboxparent.trigger('scroll_element.xdsoft_scroller', [maximumOffset ? offset / maximumOffset : 0]); + }; + + scroller + .on('touchstart.xdsoft_scroller mousedown.xdsoft_scroller', function (event) { + if (!parentHeight) { + timeboxparent.trigger('resize_scroll.xdsoft_scroller', [percent]); + } + + startY = pointerEventToXY(event).y; + startTopScroll = parseInt(scroller.css('margin-top'), 10); + h1 = scrollbar[0].offsetHeight; + + if (event.type === 'mousedown') { + if (document) { + $(document.body).addClass('xdsoft_noselect'); + } + $([document.body, window]).on('mouseup.xdsoft_scroller', function arguments_callee() { + $([document.body, window]).off('mouseup.xdsoft_scroller', arguments_callee) + .off('mousemove.xdsoft_scroller', calcOffset) + .removeClass('xdsoft_noselect'); + }); + $(document.body).on('mousemove.xdsoft_scroller', calcOffset); + } else { + touchStart = true; + event.stopPropagation(); + event.preventDefault(); + } + }) + .on('touchmove', function (event) { + if (touchStart) { + event.preventDefault(); + calcOffset(event); + } + }) + .on('touchend touchcancel', function (event) { + touchStart = false; + startTopScroll = 0; + }); + + timeboxparent + .on('scroll_element.xdsoft_scroller', function (event, percentage) { + if (!parentHeight) { + timeboxparent.trigger('resize_scroll.xdsoft_scroller', [percentage, true]); + } + percentage = percentage > 1 ? 1 : (percentage < 0 || isNaN(percentage)) ? 0 : percentage; + + scroller.css('margin-top', maximumOffset * percentage); + + setTimeout(function () { + timebox.css('marginTop', -parseInt((timebox[0].offsetHeight - parentHeight) * percentage, 10)); + }, 10); + }) + .on('resize_scroll.xdsoft_scroller', function (event, percentage, noTriggerScroll) { + var percent, sh; + parentHeight = timeboxparent[0].clientHeight; + height = timebox[0].offsetHeight; + percent = parentHeight / height; + sh = percent * scrollbar[0].offsetHeight; + if (percent > 1) { + scroller.hide(); + } else { + scroller.show(); + scroller.css('height', parseInt(sh > 10 ? sh : 10, 10)); + maximumOffset = scrollbar[0].offsetHeight - scroller[0].offsetHeight; + if (noTriggerScroll !== true) { + timeboxparent.trigger('scroll_element.xdsoft_scroller', [percentage || Math.abs(parseInt(timebox.css('marginTop'), 10)) / (height - parentHeight)]); + } + } + }); + + timeboxparent.on('mousewheel', function (event) { + var top = Math.abs(parseInt(timebox.css('marginTop'), 10)); + + top = top - (event.deltaY * 20); + if (top < 0) { + top = 0; + } + + timeboxparent.trigger('scroll_element.xdsoft_scroller', [top / (height - parentHeight)]); + event.stopPropagation(); + return false; + }); + + timeboxparent.on('touchstart', function (event) { + start = pointerEventToXY(event); + startTop = Math.abs(parseInt(timebox.css('marginTop'), 10)); + }); + + timeboxparent.on('touchmove', function (event) { + if (start) { + event.preventDefault(); + var coord = pointerEventToXY(event); + timeboxparent.trigger('scroll_element.xdsoft_scroller', [(startTop - (coord.y - start.y)) / (height - parentHeight)]); + } + }); + + timeboxparent.on('touchend touchcancel', function (event) { + start = false; + startTop = 0; + }); + } + timeboxparent.trigger('resize_scroll.xdsoft_scroller', [percent]); + }); + }; + + $.fn.datetimepicker = function (opt) { + var KEY0 = 48, + KEY9 = 57, + _KEY0 = 96, + _KEY9 = 105, + CTRLKEY = 17, + DEL = 46, + ENTER = 13, + ESC = 27, + BACKSPACE = 8, + ARROWLEFT = 37, + ARROWUP = 38, + ARROWRIGHT = 39, + ARROWDOWN = 40, + TAB = 9, + F5 = 116, + AKEY = 65, + CKEY = 67, + VKEY = 86, + ZKEY = 90, + YKEY = 89, + ctrlDown = false, + options = ($.isPlainObject(opt) || !opt) ? $.extend(true, {}, default_options, opt) : $.extend(true, {}, default_options), + + lazyInitTimer = 0, + createDateTimePicker, + destroyDateTimePicker, + _xdsoft_datetime, + + lazyInit = function (input) { + input + .on('open.xdsoft focusin.xdsoft mousedown.xdsoft', function initOnActionCallback(event) { + if (input.is(':disabled') || input.is(':hidden') || !input.is(':visible') || input.data('xdsoft_datetimepicker')) { + return; + } + clearTimeout(lazyInitTimer); + lazyInitTimer = setTimeout(function () { + + if (!input.data('xdsoft_datetimepicker')) { + createDateTimePicker(input); + } + input + .off('open.xdsoft focusin.xdsoft mousedown.xdsoft', initOnActionCallback) + .trigger('open.xdsoft'); + }, 100); + }); + }; + + createDateTimePicker = function (input) { + var datetimepicker = $('
      '), + xdsoft_copyright = $(''), + datepicker = $('
      '), + mounth_picker = $('
      ' + + '
      ' + + '
      ' + + '
      '), + calendar = $('
      '), + timepicker = $('
      '), + timeboxparent = timepicker.find('.xdsoft_time_box').eq(0), + timebox = $('
      '), + /*scrollbar = $('
      '), + scroller = $('
      '),*/ + monthselect = $('
      '), + yearselect = $('
      '), + triggerAfterOpen = false, + XDSoft_datetime, + //scroll_element, + xchangeTimer, + timerclick, + current_time_index, + setPos, + timer = 0, + timer1 = 0; + + mounth_picker + .find('.xdsoft_month span') + .after(monthselect); + mounth_picker + .find('.xdsoft_year span') + .after(yearselect); + + mounth_picker + .find('.xdsoft_month,.xdsoft_year') + .on('mousedown.xdsoft', function (event) { + var select = $(this).find('.xdsoft_select').eq(0), + val = 0, + top = 0, + visible = select.is(':visible'), + items, + i; + + mounth_picker + .find('.xdsoft_select') + .hide(); + if (_xdsoft_datetime.currentTime) { + val = _xdsoft_datetime.currentTime[$(this).hasClass('xdsoft_month') ? 'getMonth' : 'getFullYear'](); + } + + select[visible ? 'hide' : 'show'](); + for (items = select.find('div.xdsoft_option'), i = 0; i < items.length; i += 1) { + if (items.eq(i).data('value') === val) { + break; + } else { + top += items[0].offsetHeight; + } + } + + select.xdsoftScroller(top / (select.children()[0].offsetHeight - (select[0].clientHeight))); + event.stopPropagation(); + return false; + }); + + mounth_picker + .find('.xdsoft_select') + .xdsoftScroller() + .on('mousedown.xdsoft', function (event) { + event.stopPropagation(); + event.preventDefault(); + }) + .on('mousedown.xdsoft', '.xdsoft_option', function (event) { + var year = _xdsoft_datetime.currentTime.getFullYear(); + if (_xdsoft_datetime && _xdsoft_datetime.currentTime) { + _xdsoft_datetime.currentTime[$(this).parent().parent().hasClass('xdsoft_monthselect') ? 'setMonth' : 'setFullYear']($(this).data('value')); + } + + $(this).parent().parent().hide(); + + datetimepicker.trigger('xchange.xdsoft'); + if (options.onChangeMonth && $.isFunction(options.onChangeMonth)) { + options.onChangeMonth.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + + if (year !== _xdsoft_datetime.currentTime.getFullYear() && $.isFunction(options.onChangeYear)) { + options.onChangeYear.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + }); + + datetimepicker.setOptions = function (_options) { + options = $.extend(true, {}, options, _options); + + if (_options.allowTimes && $.isArray(_options.allowTimes) && _options.allowTimes.length) { + options.allowTimes = $.extend(true, [], _options.allowTimes); + } + + if (_options.weekends && $.isArray(_options.weekends) && _options.weekends.length) { + options.weekends = $.extend(true, [], _options.weekends); + } + + if (_options.disabledDates && $.isArray(_options.disabledDates) && _options.disabledDates.length) { + options.disabledDates = $.extend(true, [], _options.disabledDates); + } + + if ((options.open || options.opened) && (!options.inline)) { + input.trigger('open.xdsoft'); + } + + if (options.inline) { + triggerAfterOpen = true; + datetimepicker.addClass('xdsoft_inline'); + input.after(datetimepicker).hide(); + } + + if (options.inverseButton) { + options.next = 'xdsoft_prev'; + options.prev = 'xdsoft_next'; + } + + if (options.datepicker) { + datepicker.addClass('active'); + } else { + datepicker.removeClass('active'); + } + + if (options.timepicker) { + timepicker.addClass('active'); + } else { + timepicker.removeClass('active'); + } + + if (options.value) { + if (input && input.val) { + input.val(options.value); + } + _xdsoft_datetime.setCurrentTime(options.value); + } + + if (isNaN(options.dayOfWeekStart)) { + options.dayOfWeekStart = 0; + } else { + options.dayOfWeekStart = parseInt(options.dayOfWeekStart, 10) % 7; + } + + if (!options.timepickerScrollbar) { + timeboxparent.xdsoftScroller('hide'); + } + + if (options.minDate && /^-(.*)$/.test(options.minDate)) { + options.minDate = _xdsoft_datetime.strToDateTime(options.minDate).dateFormat(options.formatDate); + } + + if (options.maxDate && /^\+(.*)$/.test(options.maxDate)) { + options.maxDate = _xdsoft_datetime.strToDateTime(options.maxDate).dateFormat(options.formatDate); + } + + mounth_picker + .find('.xdsoft_today_button') + .css('visibility', !options.todayButton ? 'hidden' : 'visible'); + + if (options.mask) { + var e, + getCaretPos = function (input) { + try { + if (document.selection && document.selection.createRange) { + var range = document.selection.createRange(); + return range.getBookmark().charCodeAt(2) - 2; + } + if (input.setSelectionRange) { + return input.selectionStart; + } + } catch (e) { + return 0; + } + }, + setCaretPos = function (node, pos) { + node = (typeof node === "string" || node instanceof String) ? document.getElementById(node) : node; + if (!node) { + return false; + } + if (node.createTextRange) { + var textRange = node.createTextRange(); + textRange.collapse(true); + textRange.moveEnd('character', pos); + textRange.moveStart('character', pos); + textRange.select(); + return true; + } + if (node.setSelectionRange) { + node.setSelectionRange(pos, pos); + return true; + } + return false; + }, + isValidValue = function (mask, value) { + var reg = mask + .replace(/([\[\]\/\{\}\(\)\-\.\+]{1})/g, '\\$1') + .replace(/_/g, '{digit+}') + .replace(/([0-9]{1})/g, '{digit$1}') + .replace(/\{digit([0-9]{1})\}/g, '[0-$1_]{1}') + .replace(/\{digit[\+]\}/g, '[0-9_]{1}'); + return (new RegExp(reg)).test(value); + }; + input.off('keydown.xdsoft'); + + if (options.mask === true) { + options.mask = options.format + .replace(/Y/g, '9999') + .replace(/F/g, '9999') + .replace(/m/g, '19') + .replace(/d/g, '39') + .replace(/H/g, '29') + .replace(/i/g, '59') + .replace(/s/g, '59'); + } + + if ($.type(options.mask) === 'string') { + if (!isValidValue(options.mask, input.val())) { + input.val(options.mask.replace(/[0-9]/g, '_')); + } + + input.on('keydown.xdsoft', function (event) { + var val = this.value, + key = event.which, + pos, + digit; + + if (((key >= KEY0 && key <= KEY9) || (key >= _KEY0 && key <= _KEY9)) || (key === BACKSPACE || key === DEL)) { + pos = getCaretPos(this); + digit = (key !== BACKSPACE && key !== DEL) ? String.fromCharCode((_KEY0 <= key && key <= _KEY9) ? key - KEY0 : key) : '_'; + + if ((key === BACKSPACE || key === DEL) && pos) { + pos -= 1; + digit = '_'; + } + + while (/[^0-9_]/.test(options.mask.substr(pos, 1)) && pos < options.mask.length && pos > 0) { + pos += (key === BACKSPACE || key === DEL) ? -1 : 1; + } + + val = val.substr(0, pos) + digit + val.substr(pos + 1); + if ($.trim(val) === '') { + val = options.mask.replace(/[0-9]/g, '_'); + } else { + if (pos === options.mask.length) { + event.preventDefault(); + return false; + } + } + + pos += (key === BACKSPACE || key === DEL) ? 0 : 1; + while (/[^0-9_]/.test(options.mask.substr(pos, 1)) && pos < options.mask.length && pos > 0) { + pos += (key === BACKSPACE || key === DEL) ? -1 : 1; + } + + if (isValidValue(options.mask, val)) { + this.value = val; + setCaretPos(this, pos); + } else if ($.trim(val) === '') { + this.value = options.mask.replace(/[0-9]/g, '_'); + } else { + input.trigger('error_input.xdsoft'); + } + } else { + if (([AKEY, CKEY, VKEY, ZKEY, YKEY].indexOf(key) !== -1 && ctrlDown) || [ESC, ARROWUP, ARROWDOWN, ARROWLEFT, ARROWRIGHT, F5, CTRLKEY, TAB, ENTER].indexOf(key) !== -1) { + return true; + } + } + + event.preventDefault(); + return false; + }); + } + } + if (options.validateOnBlur) { + input + .off('blur.xdsoft') + .on('blur.xdsoft', function () { + if (options.allowBlank && !$.trim($(this).val()).length) { + $(this).val(null); + datetimepicker.data('xdsoft_datetime').empty(); + } else if (!Date.parseDate($(this).val(), options.format)) { + $(this).val((_xdsoft_datetime.now()).dateFormat(options.format)); + datetimepicker.data('xdsoft_datetime').setCurrentTime($(this).val()); + } else { + datetimepicker.data('xdsoft_datetime').setCurrentTime($(this).val()); + } + datetimepicker.trigger('changedatetime.xdsoft'); + }); + } + options.dayOfWeekStartPrev = (options.dayOfWeekStart === 0) ? 6 : options.dayOfWeekStart - 1; + + datetimepicker + .trigger('xchange.xdsoft') + .trigger('afterOpen.xdsoft'); + }; + + datetimepicker + .data('options', options) + .on('mousedown.xdsoft', function (event) { + event.stopPropagation(); + event.preventDefault(); + yearselect.hide(); + monthselect.hide(); + return false; + }); + + //scroll_element = timepicker.find('.xdsoft_time_box'); + timeboxparent.append(timebox); + timeboxparent.xdsoftScroller(); + + datetimepicker.on('afterOpen.xdsoft', function () { + timeboxparent.xdsoftScroller(); + }); + + datetimepicker + .append(datepicker) + .append(timepicker); + + if (options.withoutCopyright !== true) { + datetimepicker + .append(xdsoft_copyright); + } + + datepicker + .append(mounth_picker) + .append(calendar); + + $(options.parentID) + .append(datetimepicker); + + XDSoft_datetime = function () { + var _this = this; + _this.now = function (norecursion) { + var d = new Date(), + date, + time; + + if (!norecursion && options.defaultDate) { + date = _this.strToDate(options.defaultDate); + d.setFullYear(date.getFullYear()); + d.setMonth(date.getMonth()); + d.setDate(date.getDate()); + } + + if (options.yearOffset) { + d.setFullYear(d.getFullYear() + options.yearOffset); + } + + if (!norecursion && options.defaultTime) { + time = _this.strtotime(options.defaultTime); + d.setHours(time.getHours()); + d.setMinutes(time.getMinutes()); + } + + return d; + }; + + _this.isValidDate = function (d) { + if (Object.prototype.toString.call(d) !== "[object Date]") { + return false; + } + return !isNaN(d.getTime()); + }; + + _this.setCurrentTime = function (dTime) { + _this.currentTime = (typeof dTime === 'string') ? _this.strToDateTime(dTime) : _this.isValidDate(dTime) ? dTime : _this.now(); + datetimepicker.trigger('xchange.xdsoft'); + }; + + _this.empty = function () { + _this.currentTime = null; + }; + + _this.getCurrentTime = function (dTime) { + return _this.currentTime; + }; + + _this.nextMonth = function () { + var month = _this.currentTime.getMonth() + 1, + year; + if (month === 12) { + _this.currentTime.setFullYear(_this.currentTime.getFullYear() + 1); + month = 0; + } + + year = _this.currentTime.getFullYear(); + + _this.currentTime.setDate( + Math.min( + new Date(_this.currentTime.getFullYear(), month + 1, 0).getDate(), + _this.currentTime.getDate() + ) + ); + _this.currentTime.setMonth(month); + + if (options.onChangeMonth && $.isFunction(options.onChangeMonth)) { + options.onChangeMonth.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + + if (year !== _this.currentTime.getFullYear() && $.isFunction(options.onChangeYear)) { + options.onChangeYear.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + + datetimepicker.trigger('xchange.xdsoft'); + return month; + }; + + _this.prevMonth = function () { + var month = _this.currentTime.getMonth() - 1; + if (month === -1) { + _this.currentTime.setFullYear(_this.currentTime.getFullYear() - 1); + month = 11; + } + _this.currentTime.setDate( + Math.min( + new Date(_this.currentTime.getFullYear(), month + 1, 0).getDate(), + _this.currentTime.getDate() + ) + ); + _this.currentTime.setMonth(month); + if (options.onChangeMonth && $.isFunction(options.onChangeMonth)) { + options.onChangeMonth.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + datetimepicker.trigger('xchange.xdsoft'); + return month; + }; + + _this.getWeekOfYear = function (datetime) { + var onejan = new Date(datetime.getFullYear(), 0, 1); + return Math.ceil((((datetime - onejan) / 86400000) + onejan.getDay() + 1) / 7); + }; + + _this.strToDateTime = function (sDateTime) { + var tmpDate = [], timeOffset, currentTime; + + if (sDateTime && sDateTime instanceof Date && _this.isValidDate(sDateTime)) { + return sDateTime; + } + + tmpDate = /^(\+|\-)(.*)$/.exec(sDateTime); + if (tmpDate) { + tmpDate[2] = Date.parseDate(tmpDate[2], options.formatDate); + } + if (tmpDate && tmpDate[2]) { + timeOffset = tmpDate[2].getTime() - (tmpDate[2].getTimezoneOffset()) * 60000; + currentTime = new Date((_xdsoft_datetime.now()).getTime() + parseInt(tmpDate[1] + '1', 10) * timeOffset); + } else { + currentTime = sDateTime ? Date.parseDate(sDateTime, options.format) : _this.now(); + } + + if (!_this.isValidDate(currentTime)) { + currentTime = _this.now(); + } + + return currentTime; + }; + + _this.strToDate = function (sDate) { + if (sDate && sDate instanceof Date && _this.isValidDate(sDate)) { + return sDate; + } + + var currentTime = sDate ? Date.parseDate(sDate, options.formatDate) : _this.now(true); + if (!_this.isValidDate(currentTime)) { + currentTime = _this.now(true); + } + return currentTime; + }; + + _this.strtotime = function (sTime) { + if (sTime && sTime instanceof Date && _this.isValidDate(sTime)) { + return sTime; + } + var currentTime = sTime ? Date.parseDate(sTime, options.formatTime) : _this.now(true); + if (!_this.isValidDate(currentTime)) { + currentTime = _this.now(true); + } + return currentTime; + }; + + _this.str = function () { + return _this.currentTime.dateFormat(options.format); + }; + _this.currentTime = this.now(); + }; + + _xdsoft_datetime = new XDSoft_datetime(); + + mounth_picker + .find('.xdsoft_today_button') + .on('mousedown.xdsoft', function () { + datetimepicker.data('changed', true); + _xdsoft_datetime.setCurrentTime(0); + datetimepicker.trigger('afterOpen.xdsoft'); + }).on('dblclick.xdsoft', function () { + input.val(_xdsoft_datetime.str()); + datetimepicker.trigger('close.xdsoft'); + }); + mounth_picker + .find('.xdsoft_prev,.xdsoft_next') + .on('mousedown.xdsoft', function () { + var $this = $(this), + timer = 0, + stop = false; + + (function arguments_callee1(v) { + var month = _xdsoft_datetime.currentTime.getMonth(); + if ($this.hasClass(options.next)) { + _xdsoft_datetime.nextMonth(); + } else if ($this.hasClass(options.prev)) { + _xdsoft_datetime.prevMonth(); + } + if (options.monthChangeSpinner) { + if (!stop) { + timer = setTimeout(arguments_callee1, v || 100); + } + } + }(500)); + + $([document.body, window]).on('mouseup.xdsoft', function arguments_callee2() { + clearTimeout(timer); + stop = true; + $([document.body, window]).off('mouseup.xdsoft', arguments_callee2); + }); + }); + + timepicker + .find('.xdsoft_prev,.xdsoft_next') + .on('mousedown.xdsoft', function () { + var $this = $(this), + timer = 0, + stop = false, + period = 110; + (function arguments_callee4(v) { + var pheight = timeboxparent[0].clientHeight, + height = timebox[0].offsetHeight, + top = Math.abs(parseInt(timebox.css('marginTop'), 10)); + if ($this.hasClass(options.next) && (height - pheight) - options.timeHeightInTimePicker >= top) { + timebox.css('marginTop', '-' + (top + options.timeHeightInTimePicker) + 'px'); + } else if ($this.hasClass(options.prev) && top - options.timeHeightInTimePicker >= 0) { + timebox.css('marginTop', '-' + (top - options.timeHeightInTimePicker) + 'px'); + } + timeboxparent.trigger('scroll_element.xdsoft_scroller', [Math.abs(parseInt(timebox.css('marginTop'), 10) / (height - pheight))]); + period = (period > 10) ? 10 : period - 10; + if (!stop) { + timer = setTimeout(arguments_callee4, v || period); + } + }(500)); + $([document.body, window]).on('mouseup.xdsoft', function arguments_callee5() { + clearTimeout(timer); + stop = true; + $([document.body, window]) + .off('mouseup.xdsoft', arguments_callee5); + }); + }); + + xchangeTimer = 0; + // base handler - generating a calendar and timepicker + datetimepicker + .on('xchange.xdsoft', function (event) { + clearTimeout(xchangeTimer); + xchangeTimer = setTimeout(function () { + var table = '', + start = new Date(_xdsoft_datetime.currentTime.getFullYear(), _xdsoft_datetime.currentTime.getMonth(), 1, 12, 0, 0), + i = 0, + j, + today = _xdsoft_datetime.now(), + maxDate = false, + minDate = false, + d, + y, + m, + w, + classes = [], + customDateSettings, + newRow = true, + time = '', + h = '', + line_time; + + while (start.getDay() !== options.dayOfWeekStart) { + start.setDate(start.getDate() - 1); + } + + table += ''; + + if (options.weeks) { + table += ''; + } + + for (j = 0; j < 7; j += 1) { + table += ''; + } + + table += ''; + table += ''; + + if (options.maxDate !== false) { + maxDate = _xdsoft_datetime.strToDate(options.maxDate); + maxDate = new Date(maxDate.getFullYear(), maxDate.getMonth(), maxDate.getDate(), 23, 59, 59, 999); + } + + if (options.minDate !== false) { + minDate = _xdsoft_datetime.strToDate(options.minDate); + minDate = new Date(minDate.getFullYear(), minDate.getMonth(), minDate.getDate()); + } + + while (i < _xdsoft_datetime.currentTime.countDaysInMonth() || start.getDay() !== options.dayOfWeekStart || _xdsoft_datetime.currentTime.getMonth() === start.getMonth()) { + classes = []; + i += 1; + + d = start.getDate(); + y = start.getFullYear(); + m = start.getMonth(); + w = _xdsoft_datetime.getWeekOfYear(start); + + classes.push('xdsoft_date'); + + if (options.beforeShowDay && $.isFunction(options.beforeShowDay.call)) { + customDateSettings = options.beforeShowDay.call(datetimepicker, start); + } else { + customDateSettings = null; + } + + if ((maxDate !== false && start > maxDate) || (minDate !== false && start < minDate) || (customDateSettings && customDateSettings[0] === false)) { + classes.push('xdsoft_disabled'); + } else if (options.disabledDates.indexOf(start.dateFormat(options.formatDate)) !== -1) { + classes.push('xdsoft_disabled'); + } + + if (customDateSettings && customDateSettings[1] !== "") { + classes.push(customDateSettings[1]); + } + + if (_xdsoft_datetime.currentTime.getMonth() !== m) { + classes.push('xdsoft_other_month'); + } + + if ((options.defaultSelect || datetimepicker.data('changed')) && _xdsoft_datetime.currentTime.dateFormat(options.formatDate) === start.dateFormat(options.formatDate)) { + classes.push('xdsoft_current'); + } + + if (today.dateFormat(options.formatDate) === start.dateFormat(options.formatDate)) { + classes.push('xdsoft_today'); + } + + if (start.getDay() === 0 || start.getDay() === 6 || options.weekends.indexOf(start.dateFormat(options.formatDate)) === -1) { + classes.push('xdsoft_weekend'); + } + + if (options.beforeShowDay && $.isFunction(options.beforeShowDay)) { + classes.push(options.beforeShowDay(start)); + } + + if (newRow) { + table += ''; + newRow = false; + if (options.weeks) { + table += ''; + } + } + + table += ''; + + if (start.getDay() === options.dayOfWeekStartPrev) { + table += ''; + newRow = true; + } + + start.setDate(d + 1); + } + table += '
      ' + options.i18n[options.lang].dayOfWeek[(j + options.dayOfWeekStart) % 7] + '
      ' + w + '' + + '
      ' + d + '
      ' + + '
      '; + + calendar.html(table); + + mounth_picker.find('.xdsoft_label span').eq(0).text(options.i18n[options.lang].months[_xdsoft_datetime.currentTime.getMonth()]); + mounth_picker.find('.xdsoft_label span').eq(1).text(_xdsoft_datetime.currentTime.getFullYear()); + + // generate timebox + time = ''; + h = ''; + m = ''; + line_time = function line_time(h, m) { + var now = _xdsoft_datetime.now(); + now.setHours(h); + h = parseInt(now.getHours(), 10); + now.setMinutes(m); + m = parseInt(now.getMinutes(), 10); + + classes = []; + if ((options.maxTime !== false && _xdsoft_datetime.strtotime(options.maxTime).getTime() < now.getTime()) || (options.minTime !== false && _xdsoft_datetime.strtotime(options.minTime).getTime() > now.getTime())) { + classes.push('xdsoft_disabled'); + } + if ((options.initTime || options.defaultSelect || datetimepicker.data('changed')) && parseInt(_xdsoft_datetime.currentTime.getHours(), 10) === parseInt(h, 10) && (options.step > 59 || Math[options.roundTime](_xdsoft_datetime.currentTime.getMinutes() / options.step) * options.step === parseInt(m, 10))) { + if (options.defaultSelect || datetimepicker.data('changed')) { + classes.push('xdsoft_current'); + } else if (options.initTime) { + classes.push('xdsoft_init_time'); + } + } + if (parseInt(today.getHours(), 10) === parseInt(h, 10) && parseInt(today.getMinutes(), 10) === parseInt(m, 10)) { + classes.push('xdsoft_today'); + } + time += '
      ' + now.dateFormat(options.formatTime) + '
      '; + }; + + if (!options.allowTimes || !$.isArray(options.allowTimes) || !options.allowTimes.length) { + for (i = 0, j = 0; i < (options.hours12 ? 12 : 24); i += 1) { + for (j = 0; j < 60; j += options.step) { + h = (i < 10 ? '0' : '') + i; + m = (j < 10 ? '0' : '') + j; + line_time(h, m); + } + } + } else { + for (i = 0; i < options.allowTimes.length; i += 1) { + h = _xdsoft_datetime.strtotime(options.allowTimes[i]).getHours(); + m = _xdsoft_datetime.strtotime(options.allowTimes[i]).getMinutes(); + line_time(h, m); + } + } + + timebox.html(time); + + opt = ''; + i = 0; + + for (i = parseInt(options.yearStart, 10) + options.yearOffset; i <= parseInt(options.yearEnd, 10) + options.yearOffset; i += 1) { + opt += '
      ' + i + '
      '; + } + yearselect.children().eq(0) + .html(opt); + + for (i = 0, opt = ''; i <= 11; i += 1) { + opt += '
      ' + options.i18n[options.lang].months[i] + '
      '; + } + monthselect.children().eq(0).html(opt); + $(datetimepicker) + .trigger('generate.xdsoft'); + }, 10); + event.stopPropagation(); + }) + .on('afterOpen.xdsoft', function () { + if (options.timepicker) { + var classType, pheight, height, top; + if (timebox.find('.xdsoft_current').length) { + classType = '.xdsoft_current'; + } else if (timebox.find('.xdsoft_init_time').length) { + classType = '.xdsoft_init_time'; + } + if (classType) { + pheight = timeboxparent[0].clientHeight; + height = timebox[0].offsetHeight; + top = timebox.find(classType).index() * options.timeHeightInTimePicker + 1; + if ((height - pheight) < top) { + top = height - pheight; + } + timeboxparent.trigger('scroll_element.xdsoft_scroller', [parseInt(top, 10) / (height - pheight)]); + } else { + timeboxparent.trigger('scroll_element.xdsoft_scroller', [0]); + } + } + }); + + timerclick = 0; + calendar + .on('click.xdsoft', 'td', function (xdevent) { + xdevent.stopPropagation(); // Prevents closing of Pop-ups, Modals and Flyouts in Bootstrap + timerclick += 1; + var $this = $(this), + currentTime = _xdsoft_datetime.currentTime; + + if (currentTime === undefined || currentTime === null) { + _xdsoft_datetime.currentTime = _xdsoft_datetime.now(); + currentTime = _xdsoft_datetime.currentTime; + } + + if ($this.hasClass('xdsoft_disabled')) { + return false; + } + + currentTime.setDate(1); + currentTime.setFullYear($this.data('year')); + currentTime.setMonth($this.data('month')); + currentTime.setDate($this.data('date')); + + datetimepicker.trigger('select.xdsoft', [currentTime]); + + input.val(_xdsoft_datetime.str()); + if ((timerclick > 1 || (options.closeOnDateSelect === true || (options.closeOnDateSelect === 0 && !options.timepicker))) && !options.inline) { + datetimepicker.trigger('close.xdsoft'); + } + + if (options.onSelectDate && $.isFunction(options.onSelectDate)) { + options.onSelectDate.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), xdevent); + } + + datetimepicker.data('changed', true); + datetimepicker.trigger('xchange.xdsoft'); + datetimepicker.trigger('changedatetime.xdsoft'); + setTimeout(function () { + timerclick = 0; + }, 200); + }); + + timebox + .on('click.xdsoft', 'div', function (xdevent) { + xdevent.stopPropagation(); + var $this = $(this), + currentTime = _xdsoft_datetime.currentTime; + + if (currentTime === undefined || currentTime === null) { + _xdsoft_datetime.currentTime = _xdsoft_datetime.now(); + currentTime = _xdsoft_datetime.currentTime; + } + + if ($this.hasClass('xdsoft_disabled')) { + return false; + } + currentTime.setHours($this.data('hour')); + currentTime.setMinutes($this.data('minute')); + datetimepicker.trigger('select.xdsoft', [currentTime]); + + datetimepicker.data('input').val(_xdsoft_datetime.str()); + if (!options.inline) { + datetimepicker.trigger('close.xdsoft'); + } + + if (options.onSelectTime && $.isFunction(options.onSelectTime)) { + options.onSelectTime.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), xdevent); + } + datetimepicker.data('changed', true); + datetimepicker.trigger('xchange.xdsoft'); + datetimepicker.trigger('changedatetime.xdsoft'); + }); + + + datepicker + .on('mousewheel.xdsoft', function (event) { + if (!options.scrollMonth) { + return true; + } + if (event.deltaY < 0) { + _xdsoft_datetime.nextMonth(); + } else { + _xdsoft_datetime.prevMonth(); + } + return false; + }); + + input + .on('mousewheel.xdsoft', function (event) { + if (!options.scrollInput) { + return true; + } + if (!options.datepicker && options.timepicker) { + current_time_index = timebox.find('.xdsoft_current').length ? timebox.find('.xdsoft_current').eq(0).index() : 0; + if (current_time_index + event.deltaY >= 0 && current_time_index + event.deltaY < timebox.children().length) { + current_time_index += event.deltaY; + } + if (timebox.children().eq(current_time_index).length) { + timebox.children().eq(current_time_index).trigger('mousedown'); + } + return false; + } + if (options.datepicker && !options.timepicker) { + datepicker.trigger(event, [event.deltaY, event.deltaX, event.deltaY]); + if (input.val) { + input.val(_xdsoft_datetime.str()); + } + datetimepicker.trigger('changedatetime.xdsoft'); + return false; + } + }); + + datetimepicker + .on('changedatetime.xdsoft', function (event) { + if (options.onChangeDateTime && $.isFunction(options.onChangeDateTime)) { + var $input = datetimepicker.data('input'); + options.onChangeDateTime.call(datetimepicker, _xdsoft_datetime.currentTime, $input, event); + delete options.value; + $input.trigger('change'); + } + }) + .on('generate.xdsoft', function () { + if (options.onGenerate && $.isFunction(options.onGenerate)) { + options.onGenerate.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + if (triggerAfterOpen) { + datetimepicker.trigger('afterOpen.xdsoft'); + triggerAfterOpen = false; + } + }) + .on('click.xdsoft', function (xdevent) { + xdevent.stopPropagation(); + }); + + current_time_index = 0; + + setPos = function () { + var offset = datetimepicker.data('input').offset(), top = offset.top + datetimepicker.data('input')[0].offsetHeight - 1, left = offset.left, position = "absolute"; + if (options.fixed) { + top -= $(window).scrollTop(); + left -= $(window).scrollLeft(); + position = "fixed"; + } else { + if (top + datetimepicker[0].offsetHeight > $(window).height() + $(window).scrollTop()) { + top = offset.top - datetimepicker[0].offsetHeight + 1; + } + if (top < 0) { + top = 0; + } + if (left + datetimepicker[0].offsetWidth > $(window).width()) { + left = $(window).width() - datetimepicker[0].offsetWidth; + } + } + datetimepicker.css({ + left: left, + top: top, + position: position + }); + }; + datetimepicker + .on('open.xdsoft', function (event) { + var onShow = true; + if (options.onShow && $.isFunction(options.onShow)) { + onShow = options.onShow.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), event); + } + if (onShow !== false) { + datetimepicker.show(); + setPos(); + $(window) + .off('resize.xdsoft', setPos) + .on('resize.xdsoft', setPos); + + if (options.closeOnWithoutClick) { + $([document.body, window]).on('mousedown.xdsoft', function arguments_callee6() { + datetimepicker.trigger('close.xdsoft'); + $([document.body, window]).off('mousedown.xdsoft', arguments_callee6); + }); + } + } + }) + .on('close.xdsoft', function (event) { + var onClose = true; + mounth_picker + .find('.xdsoft_month,.xdsoft_year') + .find('.xdsoft_select') + .hide(); + if (options.onClose && $.isFunction(options.onClose)) { + onClose = options.onClose.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), event); + } + if (onClose !== false && !options.opened && !options.inline) { + datetimepicker.hide(); + } + event.stopPropagation(); + }) + .on('toggle.xdsoft', function (event) { + datetimepicker.is(':visible') ? datetimepicker.trigger('close.xdsoft') : datetimepicker.trigger('open.xdsoft'); + }) + .data('input', input); + + timer = 0; + timer1 = 0; + + datetimepicker.data('xdsoft_datetime', _xdsoft_datetime); + datetimepicker.setOptions(options); + + function getCurrentValue() { + + var ct = false, time; + + if (options.startDate) { + ct = _xdsoft_datetime.strToDate(options.startDate); + } else { + ct = options.value || ((input && input.val && input.val()) ? input.val() : ''); + if (ct) { + ct = _xdsoft_datetime.strToDateTime(ct); + } else if (options.defaultDate) { + ct = _xdsoft_datetime.strToDate(options.defaultDate); + if (options.defaultTime) { + time = _xdsoft_datetime.strtotime(options.defaultTime); + ct.setHours(time.getHours()); + ct.setMinutes(time.getMinutes()); + } + } + } + + if (ct && _xdsoft_datetime.isValidDate(ct)) { + datetimepicker.data('changed', true); + } else { + ct = ''; + } + + return ct || 0; + } + + _xdsoft_datetime.setCurrentTime(getCurrentValue()); + + input + .data('xdsoft_datetimepicker', datetimepicker) + .on('open.xdsoft focusin.xdsoft mousedown.xdsoft', function (event) { + if (input.is(':disabled') || input.is(':hidden') || !input.is(':visible') || (input.data('xdsoft_datetimepicker').is(':visible') && options.closeOnInputClick)) { + return; + } + clearTimeout(timer); + timer = setTimeout(function () { + if (input.is(':disabled') || input.is(':hidden') || !input.is(':visible')) { + return; + } + + triggerAfterOpen = true; + _xdsoft_datetime.setCurrentTime(getCurrentValue()); + + datetimepicker.trigger('open.xdsoft'); + }, 100); + }) + .on('keydown.xdsoft', function (event) { + var val = this.value, elementSelector, + key = event.which; + if ([ENTER].indexOf(key) !== -1 && options.enterLikeTab) { + elementSelector = $("input:visible,textarea:visible"); + datetimepicker.trigger('close.xdsoft'); + elementSelector.eq(elementSelector.index(this) + 1).focus(); + return false; + } + if ([TAB].indexOf(key) !== -1) { + datetimepicker.trigger('close.xdsoft'); + return true; + } + }); + }; + destroyDateTimePicker = function (input) { + var datetimepicker = input.data('xdsoft_datetimepicker'); + if (datetimepicker) { + datetimepicker.data('xdsoft_datetime', null); + datetimepicker.remove(); + input + .data('xdsoft_datetimepicker', null) + .off('.xdsoft'); + $(window).off('resize.xdsoft'); + $([window, document.body]).off('mousedown.xdsoft'); + if (input.unmousewheel) { + input.unmousewheel(); + } + } + }; + $(document) + .off('keydown.xdsoftctrl keyup.xdsoftctrl') + .on('keydown.xdsoftctrl', function (e) { + if (e.keyCode === CTRLKEY) { + ctrlDown = true; + } + }) + .on('keyup.xdsoftctrl', function (e) { + if (e.keyCode === CTRLKEY) { + ctrlDown = false; + } + }); + return this.each(function () { + var datetimepicker = $(this).data('xdsoft_datetimepicker'); + if (datetimepicker) { + if ($.type(opt) === 'string') { + switch (opt) { + case 'show': + $(this).select().focus(); + datetimepicker.trigger('open.xdsoft'); + break; + case 'hide': + datetimepicker.trigger('close.xdsoft'); + break; + case 'toggle': + datetimepicker.trigger('toggle.xdsoft'); + break; + case 'destroy': + destroyDateTimePicker($(this)); + break; + case 'reset': + this.value = this.defaultValue; + if (!this.value || !datetimepicker.data('xdsoft_datetime').isValidDate(Date.parseDate(this.value, options.format))) { + datetimepicker.data('changed', false); + } + datetimepicker.data('xdsoft_datetime').setCurrentTime(this.value); + break; + } + } else { + datetimepicker + .setOptions(opt); + } + return 0; + } + if ($.type(opt) !== 'string') { + if (!options.lazyInit || options.open || options.inline) { + createDateTimePicker($(this)); + } else { + lazyInit($(this)); + } + } + }); + }; + $.fn.datetimepicker.defaults = default_options; +}(jQuery)); +(function () { + +/*! Copyright (c) 2013 Brandon Aaron (http://brandon.aaron.sh) + * Licensed under the MIT License (LICENSE.txt). + * + * Version: 3.1.12 + * + * Requires: jQuery 1.2.2+ + */ +!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a:a(jQuery)}(function(a){function b(b){var g=b||window.event,h=i.call(arguments,1),j=0,l=0,m=0,n=0,o=0,p=0;if(b=a.event.fix(g),b.type="mousewheel","detail"in g&&(m=-1*g.detail),"wheelDelta"in g&&(m=g.wheelDelta),"wheelDeltaY"in g&&(m=g.wheelDeltaY),"wheelDeltaX"in g&&(l=-1*g.wheelDeltaX),"axis"in g&&g.axis===g.HORIZONTAL_AXIS&&(l=-1*m,m=0),j=0===m?l:m,"deltaY"in g&&(m=-1*g.deltaY,j=m),"deltaX"in g&&(l=g.deltaX,0===m&&(j=-1*l)),0!==m||0!==l){if(1===g.deltaMode){var q=a.data(this,"mousewheel-line-height");j*=q,m*=q,l*=q}else if(2===g.deltaMode){var r=a.data(this,"mousewheel-page-height");j*=r,m*=r,l*=r}if(n=Math.max(Math.abs(m),Math.abs(l)),(!f||f>n)&&(f=n,d(g,n)&&(f/=40)),d(g,n)&&(j/=40,l/=40,m/=40),j=Math[j>=1?"floor":"ceil"](j/f),l=Math[l>=1?"floor":"ceil"](l/f),m=Math[m>=1?"floor":"ceil"](m/f),k.settings.normalizeOffset&&this.getBoundingClientRect){var s=this.getBoundingClientRect();o=b.clientX-s.left,p=b.clientY-s.top}return b.deltaX=l,b.deltaY=m,b.deltaFactor=f,b.offsetX=o,b.offsetY=p,b.deltaMode=0,h.unshift(b,j,l,m),e&&clearTimeout(e),e=setTimeout(c,200),(a.event.dispatch||a.event.handle).apply(this,h)}}function c(){f=null}function d(a,b){return k.settings.adjustOldDeltas&&"mousewheel"===a.type&&b%120===0}var e,f,g=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],h="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],i=Array.prototype.slice;if(a.event.fixHooks)for(var j=g.length;j;)a.event.fixHooks[g[--j]]=a.event.mouseHooks;var k=a.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var c=h.length;c;)this.addEventListener(h[--c],b,!1);else this.onmousewheel=b;a.data(this,"mousewheel-line-height",k.getLineHeight(this)),a.data(this,"mousewheel-page-height",k.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var c=h.length;c;)this.removeEventListener(h[--c],b,!1);else this.onmousewheel=null;a.removeData(this,"mousewheel-line-height"),a.removeData(this,"mousewheel-page-height")},getLineHeight:function(b){var c=a(b),d=c["offsetParent"in a.fn?"offsetParent":"parent"]();return d.length||(d=a("body")),parseInt(d.css("fontSize"),10)||parseInt(c.css("fontSize"),10)||16},getPageHeight:function(b){return a(b).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})}); + +// Parse and Format Library +//http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/ +/* + * Copyright (C) 2004 Baron Schwartz + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by the + * Free Software Foundation, version 2.1. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ +Date.parseFunctions={count:0};Date.parseRegexes=[];Date.formatFunctions={count:0};Date.prototype.dateFormat=function(b){if(b=="unixtime"){return parseInt(this.getTime()/1000);}if(Date.formatFunctions[b]==null){Date.createNewFormat(b);}var a=Date.formatFunctions[b];return this[a]();};Date.createNewFormat=function(format){var funcName="format"+Date.formatFunctions.count++;Date.formatFunctions[format]=funcName;var code="Date.prototype."+funcName+" = function() {return ";var special=false;var ch="";for(var i=0;i 0) {";var regex="";var special=false;var ch="";for(var i=0;i 0 && z > 0){\nvar doyDate = new Date(y,0);\ndoyDate.setDate(z);\nm = doyDate.getMonth();\nd = doyDate.getDate();\n}";code+="if (y > 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n{return new Date(y, m, d, h, i, s);}\nelse if (y > 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n{return new Date(y, m, d, h, i);}\nelse if (y > 0 && m >= 0 && d > 0 && h >= 0)\n{return new Date(y, m, d, h);}\nelse if (y > 0 && m >= 0 && d > 0)\n{return new Date(y, m, d);}\nelse if (y > 0 && m >= 0)\n{return new Date(y, m);}\nelse if (y > 0)\n{return new Date(y);}\n}return null;}";Date.parseRegexes[regexNum]=new RegExp("^"+regex+"$");eval(code);};Date.formatCodeToRegex=function(b,a){switch(b){case"D":return{g:0,c:null,s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};case"j":case"d":return{g:1,c:"d = parseInt(results["+a+"], 10);\n",s:"(\\d{1,2})"};case"l":return{g:0,c:null,s:"(?:"+Date.dayNames.join("|")+")"};case"S":return{g:0,c:null,s:"(?:st|nd|rd|th)"};case"w":return{g:0,c:null,s:"\\d"};case"z":return{g:1,c:"z = parseInt(results["+a+"], 10);\n",s:"(\\d{1,3})"};case"W":return{g:0,c:null,s:"(?:\\d{2})"};case"F":return{g:1,c:"m = parseInt(Date.monthNumbers[results["+a+"].substring(0, 3)], 10);\n",s:"("+Date.monthNames.join("|")+")"};case"M":return{g:1,c:"m = parseInt(Date.monthNumbers[results["+a+"]], 10);\n",s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};case"n":case"m":return{g:1,c:"m = parseInt(results["+a+"], 10) - 1;\n",s:"(\\d{1,2})"};case"t":return{g:0,c:null,s:"\\d{1,2}"};case"L":return{g:0,c:null,s:"(?:1|0)"};case"Y":return{g:1,c:"y = parseInt(results["+a+"], 10);\n",s:"(\\d{4})"};case"y":return{g:1,c:"var ty = parseInt(results["+a+"], 10);\ny = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",s:"(\\d{1,2})"};case"a":return{g:1,c:"if (results["+a+"] == 'am') {\nif (h == 12) { h = 0; }\n} else { if (h < 12) { h += 12; }}",s:"(am|pm)"};case"A":return{g:1,c:"if (results["+a+"] == 'AM') {\nif (h == 12) { h = 0; }\n} else { if (h < 12) { h += 12; }}",s:"(AM|PM)"};case"g":case"G":case"h":case"H":return{g:1,c:"h = parseInt(results["+a+"], 10);\n",s:"(\\d{1,2})"};case"i":return{g:1,c:"i = parseInt(results["+a+"], 10);\n",s:"(\\d{2})"};case"s":return{g:1,c:"s = parseInt(results["+a+"], 10);\n",s:"(\\d{2})"};case"O":return{g:0,c:null,s:"[+-]\\d{4}"};case"T":return{g:0,c:null,s:"[A-Z]{3}"};case"Z":return{g:0,c:null,s:"[+-]\\d{1,5}"};default:return{g:0,c:null,s:String.escape(b)};}};Date.prototype.getTimezone=function(){return this.toString().replace(/^.*? ([A-Z]{3}) [0-9]{4}.*$/,"$1").replace(/^.*?\(([A-Z])[a-z]+ ([A-Z])[a-z]+ ([A-Z])[a-z]+\)$/,"$1$2$3");};Date.prototype.getGMTOffset=function(){return(this.getTimezoneOffset()>0?"-":"+")+String.leftPad(Math.floor(Math.abs(this.getTimezoneOffset())/60),2,"0")+String.leftPad(Math.abs(this.getTimezoneOffset())%60,2,"0");};Date.prototype.getDayOfYear=function(){var a=0;Date.daysInMonth[1]=this.isLeapYear()?29:28;for(var b=0;b $a->get_baseurl() . '/events', '$eid' => $eid, @@ -567,11 +566,11 @@ function events_content(&$a) { '$ftext' => $ftext, '$ModalCANCEL' => t('Cancel'), '$ModalOK' => t('OK'), - '$s_dsel' => datetimesel($f,mktime(),mktime(0,0,0,0,0,$syear+5),mktime($shour,$sminute,$ssecond,$smonth,$sday,$syear),'start_text'), + '$s_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$syear+5),DateTime::createFromFormat('Y-m-d H:i',"$syear-$smonth-$sday $shour:$sminute"),'start_text'), '$n_text' => t('Finish date/time is not known or not relevant'), '$n_checked' => $n_checked, '$f_text' => t('Event Finishes:'), - '$f_dsel' => datetimesel($f,mktime(),mktime(0,0,0,0,0,$fyear+5),mktime($fhour,$fminute,$fsecond,$fmonth,$fday,$fyear),'finish_text',true,true,'start_text'), + '$f_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$fyear+5),DateTime::createFromFormat('Y-m-d H:i',"$fyear-$fmonth-$fday $fhour:$fminute"),'finish_text',true,true,'start_text'), '$a_text' => t('Adjust for viewer timezone'), '$a_checked' => $a_checked, '$d_text' => t('Description:'), diff --git a/view/theme/redbasic/php/theme_init.php b/view/theme/redbasic/php/theme_init.php index 2fbca2ef0..dd4542e8a 100644 --- a/view/theme/redbasic/php/theme_init.php +++ b/view/theme/redbasic/php/theme_init.php @@ -4,15 +4,14 @@ head_add_css('library/font_awesome/css/font-awesome.min.css'); head_add_css('library/bootstrap/css/bootstrap-theme.min.css'); head_add_css('library/bootstrap/css/bootstrap.min.css'); head_add_css('view/css/bootstrap-red.css'); -head_add_css('library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css'); +head_add_css('library/datetimepicker/jquery.datetimepicker.css'); //head_add_css('library/colorpicker/css/colorpicker.css'); head_add_css('library/bootstrap-colorpicker/dist/css/bootstrap-colorpicker.min.css'); require_once('view/php/theme_init.php'); head_add_js('library/bootstrap/js/bootstrap.min.js'); head_add_js('library/bootstrap/js/bootbox.min.js'); -head_add_js('library/bootstrap-datetimepicker/js/moment.min.js'); -head_add_js('library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'); +head_add_js('library/datetimepicker/jquery.datetimepicker.js'); //head_add_js('library/colorpicker/js/colorpicker.js'); head_add_js('library/bootstrap-colorpicker/dist/js/bootstrap-colorpicker.js'); //head_add_js('library/bootstrap-colorpicker/src/js/docs.js'); From 1c249a5b06279ea4a19433d45a8dbe6fd71bcd25 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 15:51:42 -0800 Subject: [PATCH 113/176] some poller optimisations and a fix for undefined (empty) dbtype which shows up as a mysql error that 'rand' isn't found. --- boot.php | 3 ++- include/dba/dba_driver.php | 8 ++++-- include/externals.php | 2 ++ include/poller.php | 55 +++++++++++++++++++++----------------- version.inc | 2 +- 5 files changed, 42 insertions(+), 28 deletions(-) diff --git a/boot.php b/boot.php index 7758d1933..569162221 100755 --- a/boot.php +++ b/boot.php @@ -567,7 +567,8 @@ define ( 'ITEM_VERIFIED', 0x2000); // Signature verification was success define ( 'ITEM_RETAINED', 0x4000); // We looked at this item once to decide whether or not to expire it, and decided not to. define ( 'ITEM_RSS', 0x8000); // Item comes from a feed. Use this to decide whether to link the title // Don't make us evaluate this same item again. -define ( 'DBTYPE_MYSQL', 0 ); + +define ( 'DBTYPE_MYSQL', 0 ); define ( 'DBTYPE_POSTGRES', 1 ); /** diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php index 103dc8fcc..1bb45b06d 100755 --- a/include/dba/dba_driver.php +++ b/include/dba/dba_driver.php @@ -24,7 +24,10 @@ function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { $dba = null; - if($dbtype == 1) { + + $dbtype = intval($dbtype); + + if($dbtype == DBTYPE_POSTGRES) { require_once('include/dba/dba_postgres.php'); if(is_null($port)) $port = 5432; $dba = new dba_postgres($server, $port, $user, $pass, $db, $install); @@ -39,6 +42,7 @@ function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { $dba = new dba_mysql($server, $port,$user,$pass,$db,$install); } } + define('NULL_DATE', $dba->get_null_date()); define('ACTIVE_DBTYPE', $dbtype); return $dba; @@ -371,7 +375,7 @@ function db_getfunc($f) { if(isset($lookup[$f]) && isset($lookup[$f][ACTIVE_DBTYPE])) return $lookup[$f][ACTIVE_DBTYPE]; - logger('Unable to abstract DB function "'. $f . '"', LOG_DEBUG); + logger('Unable to abstract DB function "'. $f . '" for dbtype ' . ACTIVE_DBTYPE, LOGGER_DEBUG); return $f; } diff --git a/include/externals.php b/include/externals.php index 0be5d0fde..b0f853dc6 100644 --- a/include/externals.php +++ b/include/externals.php @@ -14,6 +14,8 @@ function externals_run($argv, $argc){ $total = 0; $attempts = 0; + logger('externals: startup', LOGGER_DEBUG); + // pull in some public posts diff --git a/include/poller.php b/include/poller.php index 952431926..e13c6829d 100644 --- a/include/poller.php +++ b/include/poller.php @@ -27,10 +27,11 @@ function poller_run($argv, $argc){ // 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"); + if((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600)) + && (! get_config('system','override_poll_lockfile'))) { + logger("poller: Already running"); return; - } + } // Create a lockfile. Needs two vars, but $x doesn't need to contain anything. file_put_contents($lockfile, $x); @@ -52,7 +53,7 @@ function poller_run($argv, $argc){ // expire any expired items $r = q("select id from item where expires != '%s' and expires < %s - and not ( item_restrict & %d )>0 ", + and ( item_restrict & %d ) = 0 ", dbesc(NULL_DATE), db_utcnow(), intval(ITEM_DELETED) @@ -69,7 +70,8 @@ function poller_run($argv, $argc){ // or dead entries. $r = q("select channel_id from channel where channel_dirdate < %s - INTERVAL %s", - db_utcnow(), db_quoteinterval('30 DAY') + db_utcnow(), + db_quoteinterval('30 DAY') ); if($r) { foreach($r as $rr) { @@ -82,7 +84,7 @@ function poller_run($argv, $argc){ // publish any applicable items that were set to be published in the future // (time travel posts) - $r = q("select id from item where ( item_restrict & %d )>0 and created <= %s ", + $r = q("select id from item where ( item_restrict & %d ) > 0 and created <= %s ", intval(ITEM_DELAYED_PUBLISH), db_utcnow() ); @@ -207,7 +209,8 @@ function poller_run($argv, $argc){ $r = q("select xchan_photo_l, xchan_hash from xchan where xchan_photo_l != '' and xchan_photo_m = '' and xchan_photo_date < %s - INTERVAL %s", - db_utcnow(), db_quoteinterval('1 DAY') + db_utcnow(), + db_quoteinterval('1 DAY') ); if($r) { require_once('include/photo/photo_driver.php'); @@ -253,13 +256,13 @@ function poller_run($argv, $argc){ } - $sql_extra = (($manual_id) ? " AND abook_id = $manual_id " : ""); + $sql_extra = (($manual_id) ? " AND abook_id = " . intval($manual_id) . " " : ""); reload_plugins(); $d = datetime_convert(); - //TODO check to see if there are any cronhooks before wasting a process + // TODO check to see if there are any cronhooks before wasting a process if(! $restart) proc_run('php','include/cronhooks.php'); @@ -271,12 +274,12 @@ function poller_run($argv, $argc){ : '' ); - $randfunc = (ACTIVE_DBTYPE == DBTYPE_POSTGRES) ? 'RANDOM()' : 'RAND()'; + $randfunc = db_getfunc('RAND'); - $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 + $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel, xchan_network + FROM abook LEFT JOIN xchan on abook_xchan = xchan_hash LEFT JOIN account on abook_account = account_id $sql_extra - AND (( abook_flags & %d )>0 OR ( abook_flags = %d )) + AND (( abook_flags & %d ) > 0 OR ( abook_flags = %d )) AND (( account_flags = %d ) OR ( account_flags = %d )) $abandon_sql ORDER BY $randfunc", intval(ABOOK_FLAG_HIDDEN|ABOOK_FLAG_PENDING|ABOOK_FLAG_UNCONNECTED|ABOOK_FLAG_FEED), intval(0), @@ -289,6 +292,9 @@ function poller_run($argv, $argc){ foreach($contacts as $contact) { + if($contact['abook_flags'] & ABOOK_FLAG_SELF) + continue; + $update = false; $t = $contact['abook_updated']; @@ -310,6 +316,9 @@ function poller_run($argv, $argc){ } + if($contact['xchan_network'] !== 'zot') + continue; + if($c == $t) { if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) $update = true; @@ -330,17 +339,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", + 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", - intval(ABOOK_FLAG_ARCHIVED), - intval($contact['abook_id']) - ); - $update = false; - continue; - } + $update = false; + continue; } if($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) { @@ -364,6 +368,9 @@ function poller_run($argv, $argc){ } + if($contact['abook_flags'] & (ABOOK_FLAG_PENDING|ABOOK_FLAG_ARCHIVED|ABOOK_FLAG_IGNORED)) + continue; + if((! $update) && (! $force)) continue; @@ -375,7 +382,7 @@ function poller_run($argv, $argc){ } if($dirmode == DIRECTORY_MODE_SECONDARY || $dirmode == DIRECTORY_MODE_PRIMARY) { - $r = q("select distinct ud_addr, updates.* from updates where not ( ud_flags & %d )>0 and ud_addr != '' and ( ud_last = '%s' OR ud_last > %s - INTERVAL %s ) group by ud_addr ", + $r = q("select distinct ud_addr, updates.* from updates where ( ud_flags & %d ) = 0 and ud_addr != '' and ( ud_last = '%s' OR ud_last > %s - INTERVAL %s ) group by ud_addr ", intval(UPDATE_FLAGS_UPDATED), dbesc(NULL_DATE), db_utcnow(), db_quoteinterval('7 DAY') diff --git a/version.inc b/version.inc index 0ea73e309..664554361 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-15.860 +2014-11-16.861 From cbaee76dd955a4d6d6f0f0e0d364e34e12a9b827 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 16:19:24 -0800 Subject: [PATCH 114/176] "list mode" (forum and blog mode, no comments or comment boxes displayed on the summary page) --- include/ItemObject.php | 5 +- mod/channel.php | 8 +- mod/network.php | 7 +- view/tpl/conv_list.tpl | 175 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 191 insertions(+), 4 deletions(-) create mode 100755 view/tpl/conv_list.tpl diff --git a/include/ItemObject.php b/include/ItemObject.php index 9e694b8ac..ee7676bd4 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -243,6 +243,7 @@ class Item extends BaseObject { 'id' => $this->get_id(), 'linktitle' => sprintf( t('View %s\'s profile - %s'), $profile_name, $item['author']['xchan_addr']), 'olinktitle' => sprintf( t('View %s\'s profile - %s'), $this->get_owner_name(), $item['owner']['xchan_addr']), + 'llink' => $item['llink'], 'to' => t('to'), 'via' => t('via'), 'wall' => t('Wall-to-Wall'), @@ -503,12 +504,12 @@ class Item extends BaseObject { /** * Get template */ - private function get_template() { + public function get_template() { return $this->template; } - private function set_template($t) { + public function set_template($t) { $this->template = $t; } diff --git a/mod/channel.php b/mod/channel.php index 8d6b2a169..1cc2dc02c 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -293,8 +293,14 @@ function channel_content(&$a, $update = 0, $load = false) { } + if(get_pconfig($a->profile['profile_uid'],'system','channel_list_mode')) + $page_mode = 'list'; + else + $page_mode = 'client'; + + if($_COOKIE['jsAvailable'] == 1) { - $o .= conversation($a,$items,'channel',$update,'client'); + $o .= conversation($a,$items,'channel',$update,$page_mode); } else { $o .= conversation($a,$items,'channel',$update,'traditional'); } diff --git a/mod/network.php b/mod/network.php index da020c389..fd74b1887 100644 --- a/mod/network.php +++ b/mod/network.php @@ -426,7 +426,12 @@ function network_content(&$a, $update = 0, $load = false) { $mode = (($nouveau) ? 'network-new' : 'network'); - $o .= conversation($a,$items,$mode,$update,'client'); + if(get_pconfig(local_user(),'system','network_list_mode')) + $page_mode = 'list'; + else + $page_mode = 'client'; + + $o .= conversation($a,$items,$mode,$update,$page_mode); if(($items) && (! $update)) $o .= alt_pager($a,count($items)); diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl new file mode 100755 index 000000000..86562e1f1 --- /dev/null +++ b/view/tpl/conv_list.tpl @@ -0,0 +1,175 @@ +{{if $item.comment_firstcollapsed}} + + +{{/if}} From 18cedf4def7d1d2c816a847ab449cbd74b33b58f Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 16:48:35 -0800 Subject: [PATCH 115/176] blog/list mode display settings --- mod/settings.php | 10 ++++++++++ view/tpl/settings_display.tpl | 2 ++ 2 files changed, 12 insertions(+) diff --git a/mod/settings.php b/mod/settings.php index 396bb2972..725825b34 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -140,6 +140,10 @@ function settings_post(&$a) { $user_scalable = ((x($_POST,'user_scalable')) ? intval($_POST['user_scalable']) : 0); $nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile']) : 0); $title_tosource = ((x($_POST,'title_tosource')) ? intval($_POST['title_tosource']) : 0); + $channel_list_mode = ((x($_POST,'channel_list_mode')) ? intval($_POST['channel_list_mode']) : 0); + $network_list_mode = ((x($_POST,'network_list_mode')) ? intval($_POST['network_list_mode']) : 0); + + $browser_update = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0); $browser_update = $browser_update * 1000; if($browser_update < 10000) @@ -159,6 +163,8 @@ function settings_post(&$a) { set_pconfig(local_user(),'system','itemspage', $itemspage); set_pconfig(local_user(),'system','no_smilies',$nosmile); set_pconfig(local_user(),'system','title_tosource',$title_tosource); + set_pconfig(local_user(),'system','channel_list_mode', $channel_list_mode); + set_pconfig(local_user(),'system','network_list_mode', $network_list_mode); if ($theme == $a->channel['channel_theme']){ // call theme_post only if theme has not been changed @@ -722,6 +728,7 @@ function settings_content(&$a) { /* * DISPLAY SETTINGS */ + if((argc() > 1) && (argv(1) === 'display')) { $default_theme = get_config('system','theme'); if(! $default_theme) @@ -801,6 +808,9 @@ function settings_content(&$a) { '$layout_editor' => t('System Page Layout Editor - (advanced)'), '$theme_config' => $theme_config, '$expert' => feature_enabled(local_user(),'expert'), + '$channel_list_mode' => array('channel_list_mode', t('Use blog/list mode on channel page'), get_pconfig(local_user(),'system','channel_list_mode'), t('(comments displayed separately)')), + '$network_list_mode' => array('network_list_mode', t('Use blog/list mode on matrix page'), get_pconfig(local_user(),'system','network_list_mode'), t('(comments displayed separately)')), + )); return $o; diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl index d3134ea88..8e870ba0e 100755 --- a/view/tpl/settings_display.tpl +++ b/view/tpl/settings_display.tpl @@ -13,6 +13,8 @@ {{include file="field_input.tpl" field=$itemspage}} {{include file="field_checkbox.tpl" field=$nosmile}} {{include file="field_checkbox.tpl" field=$title_tosource}} +{{include file="field_checkbox.tpl" field=$channel_list_mode}} +{{include file="field_checkbox.tpl" field=$network_list_mode}}
      From 591f10e2350812d1aa8d673246d59bfa3063c051 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 19:08:10 -0800 Subject: [PATCH 116/176] module cleanup --- mod/network.php | 215 ++++++++++++++++++++++++------------------------ 1 file changed, 109 insertions(+), 106 deletions(-) diff --git a/mod/network.php b/mod/network.php index fd74b1887..d6c19eca7 100644 --- a/mod/network.php +++ b/mod/network.php @@ -24,7 +24,7 @@ function network_content(&$a, $update = 0, $load = false) { if(! local_user()) { $_SESSION['return_url'] = $a->query_string; - return login(false); + return login(false); } @@ -52,28 +52,30 @@ function network_content(&$a, $update = 0, $load = false) { } - $datequery = $datequery2 = ''; $group = 0; - $nouveau = false; + $nouveau = false; - $datequery = ((x($_GET,'dend') && is_a_date_arg($_GET['dend'])) ? notags($_GET['dend']) : ''); + $datequery = ((x($_GET,'dend') && is_a_date_arg($_GET['dend'])) ? notags($_GET['dend']) : ''); $datequery2 = ((x($_GET,'dbegin') && is_a_date_arg($_GET['dbegin'])) ? notags($_GET['dbegin']) : ''); - $nouveau = ((x($_GET,'new')) ? intval($_GET['new']) : 0); - $gid = ((x($_GET,'gid')) ? intval($_GET['gid']) : 0); + $nouveau = ((x($_GET,'new')) ? intval($_GET['new']) : 0); + $gid = ((x($_GET,'gid')) ? intval($_GET['gid']) : 0); if($datequery) $_GET['order'] = 'post'; + + // filter by collection (e.g. group) + if($gid) { - $r = q("SELECT * FROM `groups` WHERE id = %d AND uid = %d LIMIT 1", - intval($gid), - intval(local_user()) - ); - if(! $r) { + $r = q("SELECT * FROM groups WHERE id = %d AND uid = %d LIMIT 1", + intval($gid), + intval(local_user()) + ); + if(! $r) { if($update) killme(); notice( t('No such group') . EOL ); @@ -81,27 +83,26 @@ function network_content(&$a, $update = 0, $load = false) { // NOTREACHED } - $group = $gid; + $group = $gid; $group_hash = $r[0]['hash']; - $def_acl = array('allow_gid' => '<' . $r[0]['hash'] . '>'); + $def_acl = array('allow_gid' => '<' . $r[0]['hash'] . '>'); } $o = ''; - // if no tabs are selected, defaults to comments - $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0); - $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0); - $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment'); - $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0); - $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0); - $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0); - $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0); - $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99); - $firehose = ((x($_GET,'fh')) ? intval($_GET['fh']) : 0); - $file = ((x($_GET,'file')) ? $_GET['file'] : ''); + $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0); + $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0); + $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment'); + $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0); + $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0); + $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0); + $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0); + $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99); + $firehose = ((x($_GET,'fh')) ? intval($_GET['fh']) : 0); + $file = ((x($_GET,'file')) ? $_GET['file'] : ''); if(x($_GET,'search') || x($_GET,'file')) @@ -122,21 +123,21 @@ function network_content(&$a, $update = 0, $load = false) { $channel_acl = array( 'allow_cid' => $channel['channel_allow_cid'], 'allow_gid' => $channel['channel_allow_gid'], - 'deny_cid' => $channel['channel_deny_cid'], - 'deny_gid' => $channel['channel_deny_gid'] + 'deny_cid' => $channel['channel_deny_cid'], + 'deny_gid' => $channel['channel_deny_gid'] ); $x = array( - 'is_owner' => true, - 'allow_location' => ((intval(get_pconfig($channel['channel_id'],'system','use_browser_location'))) ? '1' : ''), + 'is_owner' => true, + 'allow_location' => ((intval(get_pconfig($channel['channel_id'],'system','use_browser_location'))) ? '1' : ''), 'default_location' => $channel['channel_location'], - 'nickname' => $channel['channel_address'], - 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), - 'acl' => populate_acl((($group || $cid) ? $def_acl : $channel_acl)), - 'bang' => (($group || $cid) ? '!' : ''), - 'visitor' => true, - 'profile_uid' => local_user() + 'nickname' => $channel['channel_address'], + 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), + 'acl' => populate_acl((($group || $cid) ? $def_acl : $channel_acl)), + 'bang' => (($group || $cid) ? '!' : ''), + 'visitor' => true, + 'profile_uid' => local_user() ); $o .= status_editor($a,$x); @@ -146,11 +147,11 @@ function network_content(&$a, $update = 0, $load = false) { // We don't have to deal with ACL's on this page. You're looking at everything // that belongs to you, hence you can see all of it. We will filter by group if - // desired. + // desired. - - $sql_options = (($star) - ? " and (item_flags & " . intval(ITEM_STARRED) . ")>0" + + $sql_options = (($star) + ? " and (item_flags & " . intval(ITEM_STARRED) . ") > 0" : ''); $sql_nets = ''; @@ -159,20 +160,20 @@ function network_content(&$a, $update = 0, $load = false) { if($group) { $contact_str = ''; - $contacts = group_get_members($group); - if($contacts) { + $contacts = group_get_members($group); + if($contacts) { foreach($contacts as $c) { if($contact_str) $contact_str .= ','; - $contact_str .= "'" . $c['xchan'] . "'"; + $contact_str .= "'" . $c['xchan'] . "'"; } - } - else { - $contact_str = ' 0 '; + } + else { + $contact_str = ' 0 '; info( t('Collection is empty')); - } + } - $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND (( author_xchan IN ( $contact_str ) OR owner_xchan in ( $contact_str )) or allow_gid like '" . protect_sprintf('%<' . dbesc($group_hash) . '>%') . "' ) and id = parent and item_restrict = 0 ) "; + $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND (( author_xchan IN ( $contact_str ) OR owner_xchan in ( $contact_str )) or allow_gid like '" . protect_sprintf('%<' . dbesc($group_hash) . '>%') . "' ) and id = parent and item_restrict = 0 ) "; $x = group_rec_byhash(local_user(), $group_hash); @@ -180,60 +181,60 @@ function network_content(&$a, $update = 0, $load = false) { $o = '

      ' . t('Collection: ') . $x['name'] . '

      ' . $o; - } + } elseif($cid) { - $r = q("SELECT abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash where abook_id = %d and abook_channel = %d and not ( abook_flags & " . intval(ABOOK_FLAG_BLOCKED) . ")>0 limit 1", + $r = q("SELECT abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash where abook_id = %d and abook_channel = %d and not ( abook_flags & " . intval(ABOOK_FLAG_BLOCKED) . ") > 0 limit 1", intval($cid), intval(local_user()) - ); - if($r) { - $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND uid = " . intval(local_user()) . " AND ( author_xchan = '" . dbesc($r[0]['abook_xchan']) . "' or owner_xchan = '" . dbesc($r[0]['abook_xchan']) . "' ) and item_restrict = 0 ) "; + ); + if($r) { + $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND uid = " . intval(local_user()) . " AND ( author_xchan = '" . dbesc($r[0]['abook_xchan']) . "' or owner_xchan = '" . dbesc($r[0]['abook_xchan']) . "' ) and item_restrict = 0 ) "; $o = '

      ' . t('Connection: ') . $r[0]['xchan_name'] . '

      ' . $o; - } - else { + } + else { notice( t('Invalid connection.') . EOL); goaway($a->get_baseurl(true) . '/network'); - } + } } if(! $update) { // The special div is needed for liveUpdate to kick in for this page. - // We only launch liveUpdate if you aren't filtering in some incompatible + // We only launch liveUpdate if you aren't filtering in some incompatible // way and also you aren't writing a comment (discovered in javascript). if($gid || $cid || $cmin || ($cmax != 99) || $star || $liked || $conv || $spam || $nouveau || $list) - $firehose = 0; + $firehose = 0; $o .= '
      ' . "\r\n"; - $o .= ""; + $o .= ""; $a->page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),array( '$baseurl' => z_root(), - '$pgtype' => 'network', - '$uid' => ((local_user()) ? local_user() : '0'), - '$gid' => (($gid) ? $gid : '0'), - '$cid' => (($cid) ? $cid : '0'), - '$cmin' => (($cmin) ? $cmin : '0'), - '$cmax' => (($cmax) ? $cmax : '0'), - '$star' => (($star) ? $star : '0'), - '$liked' => (($liked) ? $liked : '0'), - '$conv' => (($conv) ? $conv : '0'), - '$spam' => (($spam) ? $spam : '0'), - '$fh' => (($firehose) ? $firehose : '0'), + '$pgtype' => 'network', + '$uid' => ((local_user()) ? local_user() : '0'), + '$gid' => (($gid) ? $gid : '0'), + '$cid' => (($cid) ? $cid : '0'), + '$cmin' => (($cmin) ? $cmin : '0'), + '$cmax' => (($cmax) ? $cmax : '0'), + '$star' => (($star) ? $star : '0'), + '$liked' => (($liked) ? $liked : '0'), + '$conv' => (($conv) ? $conv : '0'), + '$spam' => (($spam) ? $spam : '0'), + '$fh' => (($firehose) ? $firehose : '0'), '$nouveau' => (($nouveau) ? $nouveau : '0'), - '$wall' => '0', - '$list' => ((x($_REQUEST,'list')) ? intval($_REQUEST['list']) : 0), - '$page' => (($a->pager['page'] != 1) ? $a->pager['page'] : 1), - '$search' => (($search) ? $search : ''), - '$order' => $order, - '$file' => $file, - '$cats' => '', - '$dend' => $datequery, - '$mid' => '', - '$dbegin' => $datequery2 + '$wall' => '0', + '$list' => ((x($_REQUEST,'list')) ? intval($_REQUEST['list']) : 0), + '$page' => (($a->pager['page'] != 1) ? $a->pager['page'] : 1), + '$search' => (($search) ? $search : ''), + '$order' => $order, + '$file' => $file, + '$cats' => '', + '$dend' => $datequery, + '$mid' => '', + '$dbegin' => $datequery2 )); } @@ -246,17 +247,19 @@ function network_content(&$a, $update = 0, $load = false) { $sql_extra3 .= protect_sprintf(sprintf(" AND item.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2)))); } - $sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` "); + $sql_extra2 = (($nouveau) ? '' : " AND item.parent = item.id "); $sql_extra3 = (($nouveau) ? '' : $sql_extra3); if(x($_GET,'search')) { $search = escape_tags($_GET['search']); - if(strpos($search,'#') === 0) + if(strpos($search,'#') === 0) { $sql_extra .= term_query('item',substr($search,1),TERM_HASHTAG); - else - $sql_extra .= sprintf(" AND `item`.`body` like '%s' ", + } + else { + $sql_extra .= sprintf(" AND item.body like '%s' ", dbesc(protect_sprintf('%' . $search . '%')) ); + } } if(strlen($file)) { @@ -264,7 +267,7 @@ function network_content(&$a, $update = 0, $load = false) { } if($conv) { - $sql_extra .= sprintf(" AND parent IN (SELECT distinct(parent) from item where ( author_xchan like '%s' or ( item_flags & %d )>0)) ", + $sql_extra .= sprintf(" AND parent IN (SELECT distinct(parent) from item where ( author_xchan like '%s' or ( item_flags & %d ) > 0)) ", dbesc(protect_sprintf($channel['channel_hash'])), intval(ITEM_MENTIONSME) ); @@ -287,7 +290,7 @@ function network_content(&$a, $update = 0, $load = false) { // Not everybody who shows up in the network stream will be in your address book. // By default those that aren't are assumed to have closeness = 99; but this isn't - // recorded anywhere. So if cmax is 99, we'll open the search up to anybody in + // recorded anywhere. So if cmax is 99, we'll open the search up to anybody in // the stream with a NULL address book entry. $sql_nets .= " AND "; @@ -314,33 +317,33 @@ function network_content(&$a, $update = 0, $load = false) { $uids = " and item.uid = " . local_user() . " "; } - $simple_update = (($update) ? " and ( item.item_flags & " . intval(ITEM_UNSEEN) . " )>0 " : ''); + $simple_update = (($update) ? " and ( item.item_flags & " . intval(ITEM_UNSEEN) . " ) > 0 " : ''); // This fixes a very subtle bug so I'd better explain it. You wake up in the morning or return after a day - // or three and look at your matrix page - after opening up your browser. The first page loads just as it - // should. All of a sudden a few seconds later, page 2 will get inserted at the beginning of the page + // or three and look at your matrix page - after opening up your browser. The first page loads just as it + // should. All of a sudden a few seconds later, page 2 will get inserted at the beginning of the page // (before the page 1 content). The update code is actually doing just what it's supposed // to, it's fetching posts that have the ITEM_UNSEEN bit set. But the reason that page 2 content is being - // returned in an UPDATE is because you hadn't gotten that far yet - you're still on page 1 and everything + // returned in an UPDATE is because you hadn't gotten that far yet - you're still on page 1 and everything // that we loaded for page 1 is now marked as seen. But the stuff on page 2 hasn't been. So... it's being - // treated as "new fresh" content because it is unseen. We need to distinguish it somehow from content + // treated as "new fresh" content because it is unseen. We need to distinguish it somehow from content // which "arrived as you were reading page 1". We're going to do this // by storing in your session the current UTC time whenever you LOAD a network page, and only UPDATE items // which are both ITEM_UNSEEN and have "changed" since that time. Cross fingers... - if($update && $_SESSION['loadtime']) - $simple_update .= " and item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' "; + if($update && $_SESSION['loadtime']) + $simple_update .= " and item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' "; if($load) $simple_update = ''; if($nouveau && $load) { // "New Item View" - show all items unthreaded in reverse created date order - $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, received FROM `item` - WHERE true $uids AND item_restrict = 0 + $items = q("SELECT item.*, item.id AS item_id, received FROM item + WHERE true $uids AND item_restrict = 0 $simple_update $sql_extra $sql_nets - ORDER BY `item`.`received` DESC $pager_sql " + ORDER BY item.received DESC $pager_sql " ); require_once('include/items.php'); @@ -354,9 +357,9 @@ function network_content(&$a, $update = 0, $load = false) { // Normal conversation view if($order === 'post') - $ordering = "`created`"; + $ordering = "created"; else - $ordering = "`commented`"; + $ordering = "commented"; if($load) { @@ -364,7 +367,7 @@ function network_content(&$a, $update = 0, $load = false) { // Fetch a page full of parent items for this page - $r = q("SELECT distinct item.id AS item_id, $ordering FROM item + $r = q("SELECT distinct item.id AS item_id, $ordering FROM item left join abook on item.author_xchan = abook.abook_xchan WHERE true $uids AND item.item_restrict = 0 AND item.parent = item.id @@ -376,7 +379,7 @@ function network_content(&$a, $update = 0, $load = false) { } else { - if(! $firehose) { + if(! $firehose) { // update $r = q("SELECT item.parent AS item_id FROM item left join abook on item.author_xchan = abook.abook_xchan @@ -396,9 +399,9 @@ function network_content(&$a, $update = 0, $load = false) { $parents_str = ids_to_querystr($r,'item_id'); - $items = q("SELECT `item`.*, `item`.`id` AS `item_id` FROM `item` - WHERE true $uids AND `item`.`item_restrict` = 0 - AND `item`.`parent` IN ( %s ) + $items = q("SELECT item.*, item.id AS item_id FROM item + WHERE true $uids AND item.item_restrict = 0 + AND item.parent IN ( %s ) $sql_extra ", dbesc($parents_str) ); @@ -406,7 +409,7 @@ function network_content(&$a, $update = 0, $load = false) { xchan_query($items,true,(($firehose) ? local_user() : 0)); $items = fetch_post_tags($items,true); $items = conv_sort($items,$ordering); - } + } else { $items = array(); } @@ -417,8 +420,8 @@ function network_content(&$a, $update = 0, $load = false) { } if(($update_unseen) && (! $firehose)) - $r = q("UPDATE `item` SET item_flags = ( item_flags & ~%d) - WHERE (item_flags & %d)>0 AND `uid` = %d $update_unseen ", + $r = q("UPDATE item SET item_flags = ( item_flags & ~%d) + WHERE (item_flags & %d) > 0 AND uid = %d $update_unseen ", intval(ITEM_UNSEEN), intval(ITEM_UNSEEN), intval(local_user()) @@ -433,8 +436,8 @@ function network_content(&$a, $update = 0, $load = false) { $o .= conversation($a,$items,$mode,$update,$page_mode); - if(($items) && (! $update)) - $o .= alt_pager($a,count($items)); + if(($items) && (! $update)) + $o .= alt_pager($a,count($items)); return $o; } From acc8c692421581c2516bbe5d91d86ad2f3f12c27 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 19:33:58 -0800 Subject: [PATCH 117/176] when in list mode, make the max height half of the normal height before 'divgrow' kicks in. --- view/js/main.js | 33 ++++++++++++++++----------------- view/tpl/conv_list.tpl | 2 +- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index a55b8fbb1..bec35ba72 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -458,25 +458,17 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $(".autotime").timeago(); - // divgrow doesn't prevent itself from attaching a second (or 500th) - // "show more" div to a content region - it also has a few other - // issues related to how we're trying to use it. - // disable for now. - // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } else { $('img',this).each(function() { $(this).attr('src',$(this).attr('dst')); }); - // more FIXME related to expanded comments if($('#collapsed-comments-'+itmId).is(':visible')) isVisible = true; $('#' + ident).replaceWith($(this)); if(isVisible) showHideComments(itmId); $(".autotime").timeago(); - // $("div.wall-item-body").divgrow({ initialHeight: 400 }); - } prev = ident; }); @@ -508,8 +500,6 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $(".autotime").timeago(); - // $("div.wall-item-body").divgrow({ initialHeight: 400 }); - } else { $('img',this).each(function() { @@ -521,7 +511,6 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $(".autotime").timeago(); - // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } }); @@ -557,7 +546,6 @@ function updateConvItems(mode,data) { showHideComments(itmId); $(".autotime").timeago(); - // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } prev = ident; }); @@ -596,18 +584,29 @@ function updateConvItems(mode,data) { function collapseHeight() { - $(".wall-item-body").each(function() { - if($(this).height() > 410) { + var isListMode = false; + $(".wall-item-listbody").each(function() { + isListMode = true; + if($(this).height() > 210) { if(! $(this).hasClass('divmore')) { - $(this).divgrow({ initialHeight: 400, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false }); + $(this).divgrow({ initialHeight: 200, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false }); $(this).addClass('divmore'); } } }); + + $(".wall-item-body").each(function() { + if(! isListMode) { + if($(this).height() > 410) { + if(! $(this).hasClass('divmore')) { + $(this).divgrow({ initialHeight: 400, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false }); + $(this).addClass('divmore'); + } + } + } + }); } - - function liveUpdate() { if((src == null) || (stopped) || (! profile_uid)) { $('.like-rotator').spin(false); return; } if(($('.comment-edit-text-full').length) || (in_progress)) { diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl index 86562e1f1..71554a9b3 100755 --- a/view/tpl/conv_list.tpl +++ b/view/tpl/conv_list.tpl @@ -32,7 +32,7 @@
      -
      +
      {{$item.body}} {{if $item.tags}}
      From b3383a2547846e14c79cf59a3a0a0b1939e2aa71 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 20:23:22 -0800 Subject: [PATCH 118/176] speed things up a wee bit --- include/ItemObject.php | 15 +++++++++++++-- include/conversation.php | 8 +++----- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/include/ItemObject.php b/include/ItemObject.php index ee7676bd4..4aa6857c1 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -28,6 +28,7 @@ class Item extends BaseObject { private $threaded = false; private $visiting = false; private $channel = null; + private $display_mode = 'normal'; public function __construct($data) { @@ -226,9 +227,10 @@ class Item extends BaseObject { if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0) $indent .= ' shiny'; - localize_item($item); + localize_item($item); $body = prepare_body($item,true); + $comment_count_txt = sprintf( tt('%d comment','%d comments',$total_children),$total_children ); $children = $this->get_children(); @@ -316,7 +318,8 @@ class Item extends BaseObject { $result['children'] = array(); $nb_children = count($children); - if($nb_children > 0) { + + if(($this->get_display_mode() === 'normal') && ($nb_children > 0)) { foreach($children as $child) { $result['children'][] = $child->get_template_data($alike, $dlike, $thread_level + 1); } @@ -353,6 +356,14 @@ class Item extends BaseObject { return $this->get_data_value('id'); } + public function get_display_mode() { + return $this->display_mode; + } + + public function set_display_mode($mode) { + $this->display_mode = $mode; + } + public function is_threaded() { return $this->threaded; } diff --git a/include/conversation.php b/include/conversation.php index af8780549..ada2cbbd6 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -793,12 +793,10 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ // $tx1 = dba_timer(); $item_object = new Item($item); $conv->add_thread($item_object); - if($page_mode === 'list') + if($page_mode === 'list') { $item_object->set_template('conv_list.tpl'); - -// $tx2 = dba_timer(); -// if($mode === 'network') -// profiler($tx1,$tx2,'add thread ' . $item['id']); + $item_object->set_display_mode('list'); + } } } $t2 = dba_timer(); From cd404f571079dcbf021e44cae23568ba0c7f2214 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 20:33:50 -0800 Subject: [PATCH 119/176] remove old timers --- include/conversation.php | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index ada2cbbd6..96864c29a 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -419,8 +419,6 @@ function visible_activity($item) { function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $prepared_item = '') { - $tstart = dba_timer(); - $t0 = $t1 = $t2 = $t3 = $t4 = $t5 = $t6 = null; $content_html = ''; $o = ''; @@ -452,8 +450,6 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ if($mode === 'network') { - $t1 = dba_timer(); - $profile_owner = local_user(); $page_writeable = true; @@ -790,7 +786,7 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ $item['pagedrop'] = $page_dropping; if($item['id'] == $item['parent']) { -// $tx1 = dba_timer(); + $item_object = new Item($item); $conv->add_thread($item_object); if($page_mode === 'list') { @@ -799,18 +795,12 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ } } } - $t2 = dba_timer(); + $threads = $conv->get_template_data($alike, $dlike); if(!$threads) { logger('[ERROR] conversation : Failed to get template data.', LOGGER_DEBUG); $threads = array(); } - $t3 = dba_timer(); - if($mode === 'network') { - profiler($t1,$t2,'Conversation prepare'); - profiler($t2,$t3,'Conversation get_template'); - } - } } @@ -846,14 +836,6 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ '$dropping' => ($page_dropping?t('Delete Selected Items'):False), )); - if($mode === 'network') { - $t4 = dba_timer(); - profiler($t3,$t4,'conversation template'); - } - -// if($page_mode === 'preview') -// logger('preview: ' . $o, LOGGER_DATA); - return $o; } From b11ed7f88e4683315a4f5aa02692cb61facf32a7 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 22:46:52 -0800 Subject: [PATCH 120/176] allow somebody to access the "home page content" (whatever that may be) even after logging in by including a home/splash argument. It appears that nothing else is required to provide 'sys' channel webpage contents except a link in the admin page to create them. There *may* be an issue with comanche theme selection but we'll cross that bridge when we come to it. Also thinking that we might want to map /home/foo to /page/sys/foo in the longer term scheme of things. --- mod/home.php | 48 +++++++++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/mod/home.php b/mod/home.php index 576213e06..a1a68710f 100644 --- a/mod/home.php +++ b/mod/home.php @@ -9,9 +9,10 @@ function home_init(&$a) { $ret = array(); call_hooks('home_init',$ret); - $channel = $a->get_channel(); + $splash = ((argc() > 1 && argv(1) === 'splash') ? true : false); - if(local_user() && $channel && $channel['xchan_url']) { + $channel = $a->get_channel(); + if(local_user() && $channel && $channel['xchan_url'] && ! $splash) { $dest = $channel['channel_startpage']; if(! $dest) $dest = get_pconfig(local_user(),'system','startpage'); @@ -23,7 +24,7 @@ function home_init(&$a) { goaway($dest); } - if(get_account_id()) { + if(get_account_id() && ! $splash) { goaway(z_root() . '/new_channel'); } @@ -39,6 +40,7 @@ function home_content(&$a) { if(x($_SESSION,'mobile_theme')) unset($_SESSION['mobile_theme']); + $splash = ((argc() > 1 && argv(1) === 'splash') ? true : false); if(get_config('system','projecthome')) { $o .= file_get_contents('assets/home.html'); @@ -48,20 +50,20 @@ function home_content(&$a) { } -// Deprecated - $channel_address = get_config("system", "site_channel" ); - -// See if the sys channel set a homepage - if (! $channel_address) { - $u = get_sys_channel(); - if ($u) { - $u = array($u); - // change to channel_id when below deprecated and skip the $u=... - $channel_address = $u[0]['channel_address']; - } - } + // Deprecated + $channel_address = get_config("system", "site_channel" ); + + // See if the sys channel set a homepage + if (! $channel_address) { + $u = get_sys_channel(); + if ($u) { + $u = array($u); + // change to channel_id when below deprecated and skip the $u=... + $channel_address = $u[0]['channel_address']; + } + } - if ($channel_address){ + if($channel_address) { $page_id = 'home'; @@ -78,16 +80,16 @@ function home_content(&$a) { ); if($r) { - xchan_query($r); - $r = fetch_post_tags($r,true); - $a->profile = array('profile_uid' => $u[0]['channel_id']); - $o .= prepare_page($r[0]); - return $o; + xchan_query($r); + $r = fetch_post_tags($r,true); + $a->profile = array('profile_uid' => $u[0]['channel_id']); + $a->profile_uid = $u[0]['channel_id']; + $o .= prepare_page($r[0]); + return $o; } - } -// Nope, we didn't find an item. Let's see if there's any html + // Nope, we didn't find an item. Let's see if there's any html if(file_exists('home.html')) { $o .= file_get_contents('home.html'); From e190adc58980c12c6dffb21dae57194aad354e3c Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Mon, 17 Nov 2014 16:51:46 +0100 Subject: [PATCH 121/176] Use new date selector for item expiry --- view/tpl/jot.tpl | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 29dc41525..c77d49a74 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -108,12 +108,7 @@
      - +
      From 13a7637d9d17a2ea8adcdb635842ca12dfc0a632 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 17 Nov 2014 15:26:32 -0800 Subject: [PATCH 126/176] whitespace --- mod/ping.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mod/ping.php b/mod/ping.php index 20cfbe120..451370779 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -245,7 +245,7 @@ function ping_init(&$a) { if(argc() > 1 && argv(1) === 'messages') { $channel = $a->get_channel(); $t = q("select mail.*, xchan.* from mail left join xchan on xchan_hash = from_xchan - where channel_id = %d and not ( mail_flags & %d )>0 and not (mail_flags & %d )>0 + where channel_id = %d and not ( mail_flags & %d ) > 0 and not (mail_flags & %d ) > 0 and from_xchan != '%s' order by created desc limit 50", intval(local_user()), intval(MAIL_SEEN), @@ -275,7 +275,7 @@ function ping_init(&$a) { $result = array(); $r = q("SELECT * FROM item - WHERE item_restrict = %d and ( item_flags & %d )>0 and uid = %d", + WHERE item_restrict = %d and ( item_flags & %d ) > 0 and uid = %d", intval(ITEM_VISIBLE), intval(ITEM_UNSEEN), intval(local_user()) @@ -297,7 +297,7 @@ function ping_init(&$a) { if(argc() > 1 && (argv(1) === 'intros')) { $result = array(); - $r = q("SELECT * FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash where abook_channel = %d and (abook_flags & %d)>0 and not ((abook_flags & %d)>0 or (xchan_flags & %d)>0)", + $r = q("SELECT * FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash where abook_channel = %d and (abook_flags & %d) > 0 and not ((abook_flags & %d) > 0 or (xchan_flags & %d) > 0)", intval(local_user()), intval(ABOOK_FLAG_PENDING), intval(ABOOK_FLAG_SELF|ABOOK_FLAG_IGNORED), @@ -381,7 +381,7 @@ function ping_init(&$a) { if($vnotify & (VNOTIFY_NETWORK|VNOTIFY_CHANNEL)) { $r = q("SELECT id, item_restrict, item_flags FROM item - WHERE (item_restrict = %d) and ( item_flags & %d )>0 and uid = %d", + WHERE (item_restrict = %d) and ( item_flags & %d ) > 0 and uid = %d", intval(ITEM_VISIBLE), intval(ITEM_UNSEEN), intval(local_user()) @@ -408,7 +408,7 @@ function ping_init(&$a) { $t2 = dba_timer(); 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)>0 and not ((abook_flags & %d)>0 or (xchan_flags & %d)>0)", + $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) > 0 and not ((abook_flags & %d) > 0 or (xchan_flags & %d) > 0)", intval(local_user()), intval(ABOOK_FLAG_PENDING), intval(ABOOK_FLAG_SELF|ABOOK_FLAG_IGNORED), @@ -426,7 +426,7 @@ function ping_init(&$a) { if($vnotify & VNOTIFY_MAIL) { $mails = q("SELECT count(id) as total from mail - WHERE channel_id = %d AND not (mail_flags & %d)>0 and from_xchan != '%s' ", + WHERE channel_id = %d AND not (mail_flags & %d) > 0 and from_xchan != '%s' ", intval(local_user()), intval(MAIL_SEEN), dbesc($channel['channel_hash']) @@ -437,7 +437,7 @@ function ping_init(&$a) { 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)>0", + $regs = q("SELECT count(account_id) as total from account where (account_flags & %d) > 0", intval(ACCOUNT_PENDING) ); if($regs) From 65a6121014b1b985d176ea482077400cfee1c3a9 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 17 Nov 2014 15:43:03 -0800 Subject: [PATCH 127/176] fix the update_unseen stuff on the channel page also --- mod/channel.php | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/mod/channel.php b/mod/channel.php index 1cc2dc02c..b91b6bcef 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -137,6 +137,11 @@ function channel_content(&$a, $update = 0, $load = false) { $sql_extra = item_permissions_sql($a->profile['profile_uid'],$remote_contact,$groups); + if(get_pconfig($a->profile['profile_uid'],'system','channel_list_mode')) + $page_mode = 'list'; + else + $page_mode = 'client'; + if(($update) && (! $load)) { if ($mid) { @@ -279,12 +284,31 @@ function channel_content(&$a, $update = 0, $load = false) { } + $update_unseen = ''; + if($page_mode === 'list') { - if($is_owner) { + /** + * in "list mode", only mark the parent item and any like activities as "seen". + * We won't distinguish between comment likes and post likes. The important thing + * is that the number of unseen comments will be accurate. The SQL to separate the + * comment likes could also get somewhat hairy. + */ + if($parents_str) { + $update_unseen = " AND ( id IN ( " . dbesc($parents_str) . " )"; + $update_unseen .= " OR ( parent IN ( " . dbesc($parents_str) . " ) AND verb in ( '" . dbesc(ACTIVITY_LIKE) . "','" . dbesc(ACTIVITY_DISLIKE) . "' ))) "; + } + } + else { + if($parents_str) { + $update_unseen = " AND parent IN ( " . dbesc($parents_str) . " )"; + } + } + + if($is_owner && $update_unseen) { $r = q("UPDATE item SET item_flags = (item_flags & ~%d) - WHERE (item_flags & %d)>0 AND (item_flags & %d)>0 AND uid = %d ", + WHERE (item_flags & %d) > 0 AND (item_flags & %d) > 0 AND uid = %d $update_unseen", intval(ITEM_UNSEEN), intval(ITEM_UNSEEN), intval(ITEM_WALL), @@ -293,12 +317,6 @@ function channel_content(&$a, $update = 0, $load = false) { } - if(get_pconfig($a->profile['profile_uid'],'system','channel_list_mode')) - $page_mode = 'list'; - else - $page_mode = 'client'; - - if($_COOKIE['jsAvailable'] == 1) { $o .= conversation($a,$items,'channel',$update,$page_mode); } else { From 4fa0df2927323a10fb813f4303f9c472e214c48d Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Mon, 17 Nov 2014 16:01:17 -0800 Subject: [PATCH 128/176] another one --- mod/photos.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/photos.php b/mod/photos.php index ad95d6a88..ab848c709 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -618,7 +618,7 @@ 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 ) > 0) $sql_extra GROUP BY `resource_id`", intval($owner_uid), dbesc($album), intval(PHOTO_NORMAL), From d0e0a8fb27bcb5d460d28a2a2677cdad93e5c4ee Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Mon, 17 Nov 2014 16:37:47 -0800 Subject: [PATCH 129/176] implicit type conversion --- mod/poco.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/poco.php b/mod/poco.php index fc01fc565..59dbf8f93 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -69,7 +69,7 @@ function poco_init(&$a) { if($system_mode) { $r = q("SELECT count(*) as `total` from abook where ( abook_flags & " . ABOOK_FLAG_SELF . - " )>0 and abook_channel in (select uid from pconfig where cat = 'system' and k = 'suggestme' and v = 1) "); + " )>0 and abook_channel in (select uid from pconfig where cat = 'system' and k = 'suggestme' and v = '1') "); } else { $r = q("SELECT count(*) as `total` from abook where abook_channel = %d From e61dbf722d35b748ff57b1260f30b9ac0fda60aa Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Mon, 17 Nov 2014 16:49:17 -0800 Subject: [PATCH 130/176] implicit type conversion --- mod/poco.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/poco.php b/mod/poco.php index 59dbf8f93..3f932e92f 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -93,7 +93,7 @@ function poco_init(&$a) { if($system_mode) { $r = q("SELECT abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash where ( abook_flags & " . ABOOK_FLAG_SELF . - " )>0 and abook_channel in (select uid from pconfig where cat = 'system' and k = 'suggestme' and v = 1) limit %d offset %d ", + " )>0 and abook_channel in (select uid from pconfig where cat = 'system' and k = 'suggestme' and v = '1') limit %d offset %d ", intval($itemsPerPage), intval($startIndex) ); From af9015c8ed7fa99b9639dd8c7746f8f658835187 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 17 Nov 2014 18:29:57 -0800 Subject: [PATCH 131/176] place holder --- include/items.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/items.php b/include/items.php index 6447de4e7..19de52e92 100755 --- a/include/items.php +++ b/include/items.php @@ -66,6 +66,8 @@ function collect_recipients($item,&$private_envelope) { // by the directives in $item['public_policy']. $private_envelope = false; + require_once('include/identity.php'); + $sys = get_sys_channel(); if(array_key_exists('public_policy',$item) && $item['public_policy'] !== 'self') { $r = q("select abook_xchan, xchan_network from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d and not (abook_flags & %d)>0 ", @@ -95,6 +97,9 @@ function collect_recipients($item,&$private_envelope) { } } } +// we probably want to check that discovery channel delivery is allowed before uncommenting this. +// if($policy === 'pub') +// $recipients[] = $sys['xchan_hash']; } } From 7e8f3e4dfb7dfda96c1bba5ea42ebc7ea875e30d Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 17 Nov 2014 18:46:57 -0800 Subject: [PATCH 132/176] requote ignore --- mod/ping.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/ping.php b/mod/ping.php index 451370779..ef8afd91c 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -172,7 +172,7 @@ function ping_init(&$a) { ); break; case 'all_events': - $r = q("update event set ignore = 1 where ignore = 0 and uid = %d", + $r = q("update event set `ignore` = 1 where `ignore` = 0 and uid = %d", intval(local_user()) ); break; From 7b39fac5f07cd2e85e4e978de8b259d40c03a173 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 17 Nov 2014 20:11:05 -0800 Subject: [PATCH 133/176] forgot to add catcloud to the widget doc --- doc/Widgets.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/Widgets.md b/doc/Widgets.md index 48006adcd..dcf8dfb48 100644 --- a/doc/Widgets.md +++ b/doc/Widgets.md @@ -39,6 +39,12 @@ Some/many of these widgets have restrictions which may restrict the type of page * categories - categories filter (channel page) * tagcloud_wall - tagcloud for channel page only + * args: 'limit' - number of tags to return (default 50) +
       
      + +* catcloud_wall - tagcloud for channel page categories + * args: 'limit' - number of categories to return (default 50) +
       
      * affinity - affinity slider for network page - must be logged in From db3015e34ed3827e68d8debc70321ed6df5dc699 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 17 Nov 2014 23:48:03 -0800 Subject: [PATCH 134/176] allow members to set the per-item "show more" height (separately for network and matrix, display and search are system pages and therefore set at 400) --- mod/channel.php | 7 ++++++- mod/network.php | 9 ++++++++- mod/settings.php | 11 +++++++++++ view/js/main.js | 22 +++++----------------- view/tpl/settings_display.tpl | 2 ++ 5 files changed, 32 insertions(+), 19 deletions(-) diff --git a/mod/channel.php b/mod/channel.php index b91b6bcef..54b25ad8b 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -251,9 +251,14 @@ function channel_content(&$a, $update = 0, $load = false) { // This is ugly, but we can't pass the profile_uid through the session to the ajax updater, // because browser prefetching might change it on us. We have to deliver it with the page. + $maxheight = get_pconfig($a->profile['profile_uid'],'system','channel_divmore_height'); + if(! $maxheight) + $maxheight = 400; + $o .= '
      ' . "\r\n"; $o .= "\r\n"; + . "; var netargs = '?f='; var profile_page = " . $a->pager['page'] + . "; divmore_height = " . intval($maxheight) . "; \r\n"; $a->page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),array( '$baseurl' => z_root(), diff --git a/mod/network.php b/mod/network.php index c79ff8d6a..522622f03 100644 --- a/mod/network.php +++ b/mod/network.php @@ -208,8 +208,15 @@ function network_content(&$a, $update = 0, $load = false) { if($gid || $cid || $cmin || ($cmax != 99) || $star || $liked || $conv || $spam || $nouveau || $list) $firehose = 0; + $maxheight = get_pconfig(local_user(),'system','network_divmore_height'); + if(! $maxheight) + $maxheight = 400; + + $o .= '
      ' . "\r\n"; - $o .= ""; + $o .= "\r\n"; $a->page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),array( '$baseurl' => z_root(), diff --git a/mod/settings.php b/mod/settings.php index 725825b34..ab6638ccb 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -143,6 +143,12 @@ function settings_post(&$a) { $channel_list_mode = ((x($_POST,'channel_list_mode')) ? intval($_POST['channel_list_mode']) : 0); $network_list_mode = ((x($_POST,'network_list_mode')) ? intval($_POST['network_list_mode']) : 0); + $channel_divmore_height = ((x($_POST,'channel_divmore_height')) ? intval($_POST['channel_divmore_height']) : 400); + if($channel_divmore_height < 50) + $channel_divmore_height = 50; + $network_divmore_height = ((x($_POST,'network_divmore_height')) ? intval($_POST['network_divmore_height']) : 400); + if($network_divmore_height < 50) + $network_divmore_height = 50; $browser_update = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0); $browser_update = $browser_update * 1000; @@ -165,6 +171,8 @@ function settings_post(&$a) { set_pconfig(local_user(),'system','title_tosource',$title_tosource); set_pconfig(local_user(),'system','channel_list_mode', $channel_list_mode); set_pconfig(local_user(),'system','network_list_mode', $network_list_mode); + set_pconfig(local_user(),'system','channel_divmore_height', $channel_divmore_height); + set_pconfig(local_user(),'system','network_divmore_height', $network_divmore_height); if ($theme == $a->channel['channel_theme']){ // call theme_post only if theme has not been changed @@ -810,6 +818,9 @@ function settings_content(&$a) { '$expert' => feature_enabled(local_user(),'expert'), '$channel_list_mode' => array('channel_list_mode', t('Use blog/list mode on channel page'), get_pconfig(local_user(),'system','channel_list_mode'), t('(comments displayed separately)')), '$network_list_mode' => array('network_list_mode', t('Use blog/list mode on matrix page'), get_pconfig(local_user(),'system','network_list_mode'), t('(comments displayed separately)')), + '$channel_divmore_height' => array('channel_divmore_height', t('Channel page max height of content (in pixels)'), ((get_pconfig(local_user(),'system','channel_divmore_height')) ? get_pconfig(local_user(),'system','channel_divmore_height') : 400), t('click to expand content exceeding this height')), + '$network_divmore_height' => array('network_divmore_height', t('Matrix page max height of content (in pixels)'), ((get_pconfig(local_user(),'system','network_divmore_height')) ? get_pconfig(local_user(),'system','network_divmore_height') : 400) , t('click to expand content exceeding this height')), + )); diff --git a/view/js/main.js b/view/js/main.js index 9b5c1b1b2..8939f4a09 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -207,6 +207,7 @@ var loadingPage = true; var pageHasMoreContent = true; var updateCountsOnly = false; + var divmore_height = 400; $(function() { $.ajaxSetup({cache: false}); @@ -591,24 +592,11 @@ function updateConvItems(mode,data) { function collapseHeight() { - var isListMode = false; - $(".wall-item-listbody").each(function() { - isListMode = true; - if($(this).height() > 210) { - if(! $(this).hasClass('divmore')) { - $(this).divgrow({ initialHeight: 200, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false }); - $(this).addClass('divmore'); - } - } - }); - $(".wall-item-body").each(function() { - if(! isListMode) { - if($(this).height() > 410) { - if(! $(this).hasClass('divmore')) { - $(this).divgrow({ initialHeight: 400, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false }); - $(this).addClass('divmore'); - } + if($(this).height() > divmore_height + 10) { + if(! $(this).hasClass('divmore')) { + $(this).divgrow({ initialHeight: divmore_height, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false }); + $(this).addClass('divmore'); } } }); diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl index 8e870ba0e..8bf4dc0cc 100755 --- a/view/tpl/settings_display.tpl +++ b/view/tpl/settings_display.tpl @@ -11,6 +11,8 @@ {{/if}} {{include file="field_input.tpl" field=$ajaxint}} {{include file="field_input.tpl" field=$itemspage}} +{{include file="field_input.tpl" field=$channel_divmore_height}} +{{include file="field_input.tpl" field=$network_divmore_height}} {{include file="field_checkbox.tpl" field=$nosmile}} {{include file="field_checkbox.tpl" field=$title_tosource}} {{include file="field_checkbox.tpl" field=$channel_list_mode}} From 1d96e165e00ed54df0573bda79c2a274f21aeb16 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 18 Nov 2014 00:24:32 -0800 Subject: [PATCH 135/176] undo disabled submit buttons now that ACL is initialised when page loaded --- version.inc | 2 +- view/js/acl.js | 1 - view/tpl/attach_edit.tpl | 4 ++-- view/tpl/chatroom_new.tpl | 4 ++-- view/tpl/jot.tpl | 4 ++-- view/tpl/mitemedit.tpl | 2 +- view/tpl/photo_view.tpl | 4 ++-- view/tpl/photos_upload.tpl | 4 ++-- 8 files changed, 12 insertions(+), 13 deletions(-) diff --git a/version.inc b/version.inc index d1f09608f..2679ebdf3 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-17.862 +2014-11-18.863 diff --git a/view/js/acl.js b/view/js/acl.js index f9fd66bab..f9428e1c5 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -273,6 +273,5 @@ ACL.prototype.populate = function(data){ $(el).removeAttr("data-src"); }); that.update_view(); - $('#dbtn-submit, #dbtn-acl').prop('disabled', false); } diff --git a/view/tpl/attach_edit.tpl b/view/tpl/attach_edit.tpl index 1254c713b..a2a4af16b 100644 --- a/view/tpl/attach_edit.tpl +++ b/view/tpl/attach_edit.tpl @@ -5,7 +5,7 @@
      - {{$aclselect}} {{$file.filename}} @@ -30,7 +30,7 @@
      - + diff --git a/view/tpl/chatroom_new.tpl b/view/tpl/chatroom_new.tpl index bb1121924..a559dba54 100644 --- a/view/tpl/chatroom_new.tpl +++ b/view/tpl/chatroom_new.tpl @@ -2,12 +2,12 @@
      {{include file="field_input.tpl" field=$name}} - + {{$acl}}


      - +
      diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index c77d49a74..f172a6dfa 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -76,7 +76,7 @@
      {{if $showacl}} - {{/if}} @@ -85,7 +85,7 @@ {{/if}} - +
      diff --git a/view/tpl/mitemedit.tpl b/view/tpl/mitemedit.tpl index f398cf02c..a18fbb0ef 100644 --- a/view/tpl/mitemedit.tpl +++ b/view/tpl/mitemedit.tpl @@ -26,7 +26,7 @@
      - +
      diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl index 4652f33c6..a741a5ce7 100755 --- a/view/tpl/photo_view.tpl +++ b/view/tpl/photo_view.tpl @@ -68,10 +68,10 @@
      - - +
      diff --git a/view/tpl/photos_upload.tpl b/view/tpl/photos_upload.tpl index 2dd7de9b2..a04038aa2 100755 --- a/view/tpl/photos_upload.tpl +++ b/view/tpl/photos_upload.tpl @@ -22,10 +22,10 @@
      - - +
      {{/if}} From c8c061d0cfdd1191b7a6d1acd7eeeaf484f75128 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Tue, 18 Nov 2014 13:48:22 +0100 Subject: [PATCH 136/176] Fix dirsearch with quoted single-word term --- mod/dirsearch.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 52d953707..56e2378a8 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -305,6 +305,12 @@ function dir_parse_query($s) { $curr['value'] = substr($curr['value'],1); continue; } + elseif($curr['value'][0] == '"' && $curr['value'][strlen($curr['value'])-1] == '"') { + $curr['value'] = substr($curr['value'],1,strlen($curr['value'])-2); + $ret[] = $curr; + $curr = array(); + continue; + } else { $ret[] = $curr; $curr = array(); From e0ab1e24e43e60cec955f82b1d4618050efebeac Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Tue, 18 Nov 2014 19:42:13 +0100 Subject: [PATCH 137/176] Directory shows channel suggestions by default --- include/contact_widgets.php | 1 - mod/directory.php | 42 +++++++++++++++++++++++++++++++++++-- view/tpl/direntry.tpl | 3 +++ view/tpl/peoplefind.tpl | 1 - 4 files changed, 43 insertions(+), 4 deletions(-) diff --git a/include/contact_widgets.php b/include/contact_widgets.php index ee9394e95..4e8adab62 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -24,7 +24,6 @@ function findpeople_widget() { '$label' => t('Connect/Follow'), '$hint' => t('Examples: Robert Morgenstein, Fishing'), '$findthem' => t('Find'), - '$suggest' => t('Channel Suggestions'), '$similar' => '', // FIXME and uncomment when mod/match working // t('Similar Interests'), '$random' => t('Random Profile'), '$inv' => t('Invite Friends'), diff --git a/mod/directory.php b/mod/directory.php index d4a4c383a..ee064e3ed 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -1,5 +1,6 @@ set_pager_itemspage(60); + if(x($_GET,'ignore')) { + q("insert into xign ( uid, xchan ) values ( %d, '%s' ) ", + intval(local_user()), + dbesc($_GET['ignore']) + ); + } } function directory_content(&$a) { @@ -42,11 +49,33 @@ function directory_content(&$a) { else $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : ''); + if(strpos($search,'=') && local_user() && get_pconfig(local_user(),'feature','expert')) $advanced = $search; + $keywords = (($_GET['keywords']) ? $_GET['keywords'] : ''); + // Suggest channels if no search terms or keywords are given + $suggest = ($search == '' && $keywords == '' && local_user()); + + if($suggest) { + $r = suggestion_query(local_user(),get_observer_hash()); + + // Remember in which order the suggestions were + $addresses = array(); + foreach($r as $rr) { + $addresses[$rr['xchan_addr']] = $index++; + } + + // Build query to get info about suggested people + $advanced = ''; + foreach(array_keys($addresses) as $address) { + $advanced .= "address=\"$address\" "; + } + + } + $tpl = get_markup_template('directory_header.tpl'); @@ -227,19 +256,28 @@ function directory_content(&$a) { 'online' => $online, 'kw' => (($out) ? t('Keywords: ') : ''), 'keywords' => $out, + 'ignlink' => $suggest ? $a->get_baseurl() . '/directory?ignore=' . $rr['hash'] : '', + 'ignore_label' => "Don't suggest", ); $arr = array('contact' => $rr, 'entry' => $entry); call_hooks('directory_item', $arr); - $entries[] = $arr['entry']; + if($sort_order == '' && $suggest) { + $entries[$addresses[$rr['address']]] = $arr['entry']; // Use the same indexes as originally to get the best suggestion first + } + else { + $entries[] = $arr['entry']; + } unset($profile); unset($location); } + ksort($entries); // Sort array by key so that foreach-constructs work as expected + if($j['keywords']) { $a->data['directory_keywords'] = $j['keywords']; } @@ -268,7 +306,7 @@ function directory_content(&$a) { '$finddsc' => t('Finding:'), '$safetxt' => htmlspecialchars($search,ENT_QUOTES,'UTF-8'), '$entries' => $entries, - '$dirlbl' => t('Directory'), + '$dirlbl' => $suggest ? t('Channel Suggestions') : t('Directory'), '$submit' => t('Find'), '$next' => alt_pager($a,$j['records'], t('next page'), t('previous page')) diff --git a/view/tpl/direntry.tpl b/view/tpl/direntry.tpl index 2da920ab1..cdc6f1f97 100755 --- a/view/tpl/direntry.tpl +++ b/view/tpl/direntry.tpl @@ -6,6 +6,9 @@ {{if $entry.connect}} {{/if}} +{{if $entry.ignlink}} + +{{/if}}
      diff --git a/view/tpl/peoplefind.tpl b/view/tpl/peoplefind.tpl index 2f23948c8..16af5d8ed 100755 --- a/view/tpl/peoplefind.tpl +++ b/view/tpl/peoplefind.tpl @@ -12,7 +12,6 @@ From 7d0659bb2ba3e12f909b63d566e338333f5aaebd Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Tue, 18 Nov 2014 11:43:00 -0800 Subject: [PATCH 138/176] postgres fixes --- include/attach.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/attach.php b/include/attach.php index 87d618afa..8541c142c 100644 --- a/include/attach.php +++ b/include/attach.php @@ -404,7 +404,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { dbesc($filename), dbesc($mimetype), intval($filesize), - dbesc(@file_get_contents($src)), + dbescbin(@file_get_contents($src)), dbesc($created), intval($existing_id), intval($channel_id) @@ -421,7 +421,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { dbesc($mimetype), intval($filesize), intval($x[0]['revision'] + 1), - dbesc(@file_get_contents($src)), + dbescbin(@file_get_contents($src)), dbesc($created), dbesc($created), dbesc($x[0]['allow_cid']), @@ -455,7 +455,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { dbesc($mimetype), intval($filesize), intval(0), - dbesc(@file_get_contents($src)), + dbescbin(@file_get_contents($src)), dbesc($created), dbesc($created), dbesc(($arr && array_key_exists('allow_cid',$arr)) ? $arr['allow_cid'] : '<' . $channel['channel_hash'] . '>'), From 6cc906fd1d7226e4db2f546551c14fe04ea815e7 Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Tue, 18 Nov 2014 12:10:40 -0800 Subject: [PATCH 139/176] update docs --- doc/intro_for_developers.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/intro_for_developers.bb b/doc/intro_for_developers.bb index f9dbb96ff..b8a4e4eb5 100644 --- a/doc/intro_for_developers.bb +++ b/doc/intro_for_developers.bb @@ -6,8 +6,6 @@ [boot.php] Every process uses this to bootstrap the application structure -[custom] site-specific overrides of modules in mod/, excluded from git - [doc] Help Files [images] core required images @@ -22,6 +20,8 @@ [mod] Controller modules based on URL pathname (e.g. #^[url=http://sitename/foo]http://sitename/foo[/url] loads mod/foo.php) +[mod/site/] site-specific mod overrides, excluded from git + [util] translation tools, main English string database and other miscellaneous utilities [version.inc] contains current version (auto-updated via cron for the master repository and distributed via git) From bfde28f28eae1f4b00aac03b2714254d14ab7464 Mon Sep 17 00:00:00 2001 From: RedMatrix Date: Wed, 19 Nov 2014 09:15:24 +1100 Subject: [PATCH 140/176] Revert "Directory shows channel suggestions by default" --- include/contact_widgets.php | 1 + mod/directory.php | 42 ++----------------------------------- view/tpl/direntry.tpl | 3 --- view/tpl/peoplefind.tpl | 1 + 4 files changed, 4 insertions(+), 43 deletions(-) diff --git a/include/contact_widgets.php b/include/contact_widgets.php index 4e8adab62..ee9394e95 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -24,6 +24,7 @@ function findpeople_widget() { '$label' => t('Connect/Follow'), '$hint' => t('Examples: Robert Morgenstein, Fishing'), '$findthem' => t('Find'), + '$suggest' => t('Channel Suggestions'), '$similar' => '', // FIXME and uncomment when mod/match working // t('Similar Interests'), '$random' => t('Random Profile'), '$inv' => t('Invite Friends'), diff --git a/mod/directory.php b/mod/directory.php index ee064e3ed..d4a4c383a 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -1,6 +1,5 @@ set_pager_itemspage(60); - if(x($_GET,'ignore')) { - q("insert into xign ( uid, xchan ) values ( %d, '%s' ) ", - intval(local_user()), - dbesc($_GET['ignore']) - ); - } } function directory_content(&$a) { @@ -49,33 +42,11 @@ function directory_content(&$a) { else $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : ''); - if(strpos($search,'=') && local_user() && get_pconfig(local_user(),'feature','expert')) $advanced = $search; - $keywords = (($_GET['keywords']) ? $_GET['keywords'] : ''); - // Suggest channels if no search terms or keywords are given - $suggest = ($search == '' && $keywords == '' && local_user()); - - if($suggest) { - $r = suggestion_query(local_user(),get_observer_hash()); - - // Remember in which order the suggestions were - $addresses = array(); - foreach($r as $rr) { - $addresses[$rr['xchan_addr']] = $index++; - } - - // Build query to get info about suggested people - $advanced = ''; - foreach(array_keys($addresses) as $address) { - $advanced .= "address=\"$address\" "; - } - - } - $tpl = get_markup_template('directory_header.tpl'); @@ -256,28 +227,19 @@ function directory_content(&$a) { 'online' => $online, 'kw' => (($out) ? t('Keywords: ') : ''), 'keywords' => $out, - 'ignlink' => $suggest ? $a->get_baseurl() . '/directory?ignore=' . $rr['hash'] : '', - 'ignore_label' => "Don't suggest", ); $arr = array('contact' => $rr, 'entry' => $entry); call_hooks('directory_item', $arr); - if($sort_order == '' && $suggest) { - $entries[$addresses[$rr['address']]] = $arr['entry']; // Use the same indexes as originally to get the best suggestion first - } - else { - $entries[] = $arr['entry']; - } + $entries[] = $arr['entry']; unset($profile); unset($location); } - ksort($entries); // Sort array by key so that foreach-constructs work as expected - if($j['keywords']) { $a->data['directory_keywords'] = $j['keywords']; } @@ -306,7 +268,7 @@ function directory_content(&$a) { '$finddsc' => t('Finding:'), '$safetxt' => htmlspecialchars($search,ENT_QUOTES,'UTF-8'), '$entries' => $entries, - '$dirlbl' => $suggest ? t('Channel Suggestions') : t('Directory'), + '$dirlbl' => t('Directory'), '$submit' => t('Find'), '$next' => alt_pager($a,$j['records'], t('next page'), t('previous page')) diff --git a/view/tpl/direntry.tpl b/view/tpl/direntry.tpl index cdc6f1f97..2da920ab1 100755 --- a/view/tpl/direntry.tpl +++ b/view/tpl/direntry.tpl @@ -6,9 +6,6 @@ {{if $entry.connect}} {{/if}} -{{if $entry.ignlink}} - -{{/if}} diff --git a/view/tpl/peoplefind.tpl b/view/tpl/peoplefind.tpl index 16af5d8ed..2f23948c8 100755 --- a/view/tpl/peoplefind.tpl +++ b/view/tpl/peoplefind.tpl @@ -12,6 +12,7 @@ From 38d50cabd4b3db859c5ac33f02760b1b00a993e5 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 18 Nov 2014 15:13:37 -0800 Subject: [PATCH 141/176] private mail buttons --- mod/mail.php | 8 ++++++-- mod/wall_upload.php | 1 + view/tpl/msg-header.tpl | 28 ++++++++++++++-------------- view/tpl/prv_message.tpl | 14 +++++++------- 4 files changed, 28 insertions(+), 23 deletions(-) diff --git a/mod/mail.php b/mod/mail.php index dacb181c5..6c778b956 100644 --- a/mod/mail.php +++ b/mod/mail.php @@ -113,6 +113,7 @@ function mail_content(&$a) { } $channel = $a->get_channel(); + head_set_icon($channel['xchan_photo_s']); $cipher = get_pconfig(local_user(),'system','default_cipher'); @@ -163,13 +164,16 @@ function mail_content(&$a) { $tpl = get_markup_template('msg-header.tpl'); - $a->page['htmlhead'] .= replace_macros($tpl, array( + $header = replace_macros($tpl, array( '$baseurl' => $a->get_baseurl(true), '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), '$nickname' => $channel['channel_address'], '$linkurl' => t('Please enter a link URL:'), '$expireswhen' => t('Expires YYYY-MM-DD HH:MM') )); + + $a->page['htmlhead'] .= $header; + $preselect = (isset($a->argv[2])?array($a->argv[2]):false); $prename = $preurl = $preid = ''; @@ -276,7 +280,7 @@ function mail_content(&$a) { $tpl = get_markup_template('msg-header.tpl'); $a->page['htmlhead'] .= replace_macros($tpl, array( - '$nickname' => $channel['channel_addr'], + '$nickname' => $channel['channel_address'], '$baseurl' => $a->get_baseurl(true), '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), '$linkurl' => t('Please enter a link URL:'), diff --git a/mod/wall_upload.php b/mod/wall_upload.php index 97840a180..7ed1859a8 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -8,6 +8,7 @@ require_once('include/photos.php'); function wall_upload_post(&$a) { + $using_api = ((x($_FILES,'media')) ? true : false); if($using_api) { diff --git a/view/tpl/msg-header.tpl b/view/tpl/msg-header.tpl index 503e4c8cc..85fa51b0a 100755 --- a/view/tpl/msg-header.tpl +++ b/view/tpl/msg-header.tpl @@ -52,10 +52,10 @@ else 'prvmail-upload-wrapper', { action: 'wall_upload/{{$nickname}}', name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').spin('tiny'); }, + onSubmit: function(file,ext) { $('#prvmail-rotator').spin('tiny'); }, onComplete: function(file,response) { - addeditortext(response); - $('#profile-rotator').spin(false); + addmailtext(response); + $('#prvmail-rotator').spin(false); } } ); @@ -64,23 +64,23 @@ else 'prvmail-attach-wrapper', { action: 'wall_attach/{{$nickname}}', name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').spin('tiny'); }, + onSubmit: function(file,ext) { $('#prvmail-rotator').spin('tiny'); }, onComplete: function(file,response) { - addeditortext(response); - $('#profile-rotator').spin(false); + addmailtext(response); + $('#prvmail-rotator').spin(false); } } ); }); - function jotGetLink() { + function prvmailJotGetLink() { reply = prompt("{{$linkurl}}"); if(reply && reply.length) { - $('#profile-rotator').spin('tiny'); + $('#prvmail-rotator').spin('tiny'); $.get('parse_url?url=' + reply, function(data) { - addeditortext(response); - $('#profile-rotator').spin(false); + addmailtext(data); + $('#prvmail-rotator').spin(false); }); } } @@ -103,15 +103,15 @@ else event.target.textContent = reply; event.preventDefault(); if(reply && reply.length) { - $('#profile-rotator').spin('tiny'); + $('#prvmail-rotator').spin('tiny'); $.get('parse_url?url=' + reply, function(data) { - addeditortext(response); - $('#profile-rotator').spin(false); + addmailtext(data); + $('#prvmail-rotator').spin(false); }); } } - function addeditortext(data) { + function addmailtext(data) { if(plaintext == 'none') { var currentText = $("#prvmail-text").val(); $("#prvmail-text").val(currentText + data); diff --git a/view/tpl/prv_message.tpl b/view/tpl/prv_message.tpl index 709943541..c6f393aa4 100755 --- a/view/tpl/prv_message.tpl +++ b/view/tpl/prv_message.tpl @@ -34,21 +34,21 @@ - {{if $feature_expire}} - {{/if}} {{if $feature_encrypt}} - {{/if}}
      - +
      From 11f0b45a9015a717e6e0da1bfd5a1c61381d64ed Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 18 Nov 2014 16:58:36 -0800 Subject: [PATCH 142/176] blog mode - turn the comment link into a button and group with the likes/dislikes --- mod/like.php | 18 +++++------------- view/tpl/conv_list.tpl | 9 ++++++--- 2 files changed, 11 insertions(+), 16 deletions(-) diff --git a/mod/like.php b/mod/like.php index b56611197..04a2b43cd 100755 --- a/mod/like.php +++ b/mod/like.php @@ -263,26 +263,18 @@ function like_content(&$a) { else killme(); - - $r = q("SELECT * FROM item WHERE verb = '%s' AND item_restrict = 0 + $r = q("SELECT id FROM item WHERE verb = '%s' AND item_restrict = 0 AND author_xchan = '%s' AND ( parent = %d OR thr_parent = '%s') LIMIT 1", dbesc($activity), dbesc($observer['xchan_hash']), intval($item_id), dbesc($item['mid']) ); + if($r) { - $like_item = $r[0]; - - // Already liked/disliked it, delete it - - $r = q("UPDATE item SET item_restrict = ( item_restrict & ~%d ), changed = '%s' WHERE id = %d", - intval(ITEM_DELETED), - dbesc(datetime_convert()), - intval($like_item['id']) - ); - - proc_run('php',"include/notifier.php","like",$like_item['id']); + // already liked it. Drop that item. + require_once('include/items.php'); + drop_item($r[0]['id'],false,DROPITEM_PHASE1); return; } diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl index b9a966e93..444734f48 100755 --- a/view/tpl/conv_list.tpl +++ b/view/tpl/conv_list.tpl @@ -104,7 +104,12 @@
    -
    +
    + + +
    {{if $item.unseen_comments}}
    {{/if}} + {{if $item.like_count}}
    @@ -164,8 +169,6 @@ {{/if}}
    -
    From 3224848bad07fefec7ab830e70634740329ccae6 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 18 Nov 2014 19:02:28 -0800 Subject: [PATCH 143/176] turn the "adult photo flagging" (which prevents a particularly flagged photo from showing up in your top level albums) into a feature so it doesn't clutter the normal photo edit form. This feature was a quick hack and needs more work; but it could be important to somebody. --- include/features.php | 1 + mod/photos.php | 1 + view/tpl/photo_view.tpl | 3 +++ 3 files changed, 5 insertions(+) diff --git a/include/features.php b/include/features.php index 7530158ec..92d8598a5 100644 --- a/include/features.php +++ b/include/features.php @@ -48,6 +48,7 @@ function get_features() { array('preview', t('Post Preview'), t('Allow previewing posts and comments before publishing them')), array('channel_sources', t('Channel Sources'), t('Automatically import channel content from other channels or feeds')), array('content_encrypt', t('Even More Encryption'), t('Allow optional encryption of content end-to-end with a shared secret key')), + array('adult_photo_flagging', t('Flag Adult Photos'), t('Provide photo edit option to hide adult photos from default album view')), ), // Network Tools diff --git a/mod/photos.php b/mod/photos.php index ab848c709..ce24762b1 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -952,6 +952,7 @@ function photos_content(&$a) { 'lockstate' => $lockstate[0], 'help_tags' => t('Example: @bob, @Barbara_Jensen, @jim@example.com'), 'item_id' => ((count($linked_items)) ? $link_item['id'] : 0), + 'adult_enabled' => feature_enabled($owner_uid,'adult_photo_flagging'), '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') diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl index a741a5ce7..45a7cd7e5 100755 --- a/view/tpl/photo_view.tpl +++ b/view/tpl/photo_view.tpl @@ -59,9 +59,12 @@
    + {{if $edit.adult_enabled}}
    {{include file="field_checkbox.tpl" field=$edit.adult}}
    + {{/if}} + {{$edit.aclselect}}
    From efcbcd6f8809a7540bae6eb0a8c38c60def86537 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 18 Nov 2014 20:34:47 -0800 Subject: [PATCH 144/176] add sys channel to public recips if scope public --- include/zot.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/zot.php b/include/zot.php index 3ffc9b43f..837154ee8 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1256,8 +1256,14 @@ function zot_import($arr, $sender_url) { function public_recips($msg) { + + require_once('include/identity.php'); + $check_mentions = false; + $include_sys = false; + if($msg['message']['type'] === 'activity') { + $include_sys = true; $col = 'channel_w_stream'; $field = PERMS_W_STREAM; if(array_key_exists('flags',$msg['message']) && in_array('thread_parent', $msg['message']['flags'])) { @@ -1307,6 +1313,12 @@ function public_recips($msg) { $r = array_merge($r,$x); + if($include_sys && array_key_exists('public_scope',$msg['message']) && $msg['message']['public_scope'] === 'public') { + $sys = get_sys_channel(); + if($sys) + $r[] = array('hash' => $sys['channel_hash']); + } + // look for any public mentions on this site // They will get filtered by tgroup_check() so we don't need to check permissions now From 4893e64c1e871e22385e2c3db2d0815d872858fa Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 19 Nov 2014 00:56:05 -0800 Subject: [PATCH 145/176] there's still a permission issue delivering a public post directly to the sys channel (on the local system), but this puts the local sys channel in the public delivery chain and fixes an issue with unseen counts showing on the discover page (where you can't do anything about it). --- include/ItemObject.php | 2 +- include/zot.php | 2 ++ version.inc | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/ItemObject.php b/include/ItemObject.php index 6f1c76fa1..f6f7c0fba 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -79,7 +79,7 @@ class Item extends BaseObject { $indent = ''; $osparkle = ''; $total_children = $this->count_descendants(); - $unseen_comments = (($item->real_uid) ? 0 : $this->count_unseen_descendants()); + $unseen_comments = (($item['real_uid']) ? 0 : $this->count_unseen_descendants()); $conv = $this->get_conversation(); $observer = $conv->get_observer(); diff --git a/include/zot.php b/include/zot.php index 837154ee8..d5789438c 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1313,6 +1313,8 @@ function public_recips($msg) { $r = array_merge($r,$x); +logger('message: ' . print_r($msg['message'],true)); + if($include_sys && array_key_exists('public_scope',$msg['message']) && $msg['message']['public_scope'] === 'public') { $sys = get_sys_channel(); if($sys) diff --git a/version.inc b/version.inc index 2679ebdf3..97d0c5a13 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-18.863 +2014-11-19.864 From 7fec939c23f2a23c8ac123d8a416cb2bde9ffbd9 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 19 Nov 2014 14:41:24 -0800 Subject: [PATCH 146/176] couple of fixes: - significantly increase the content availability on the discover channel - fix the button group on the blog/list mode which made the border on a single comment button a bit wonky --- include/zot.php | 5 +++++ view/tpl/conv_list.tpl | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/include/zot.php b/include/zot.php index d5789438c..1f121802a 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1428,8 +1428,13 @@ function process_delivery($sender,$arr,$deliveries,$relay,$public = false,$reque continue; } + $channel = $r[0]; + // allow public postings to the sys channel regardless of permissions + if(($channel['channel_pageflags'] & PAGE_SYSTEM) && (! $arr['item_private'])) + $public = true; + $tag_delivery = tgroup_check($channel['channel_id'],$arr); $perm = (($arr['mid'] == $arr['parent_mid']) ? 'send_stream' : 'post_comments'); diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl index 444734f48..aec1a78ab 100755 --- a/view/tpl/conv_list.tpl +++ b/view/tpl/conv_list.tpl @@ -104,7 +104,7 @@
    -
    +
    diff --git a/doc/html/README_8md.html b/doc/html/README_8md.html index ec5f607aa..0b5de21e2 100644 --- a/doc/html/README_8md.html +++ b/doc/html/README_8md.html @@ -28,7 +28,7 @@ - +
    The Red Matrix
    diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index c5ff918aa..34bd63a26 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -809,7 +809,7 @@ Variables
    -

    Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), apps_content(), attach_init(), block_content(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connedit_content(), connedit_init(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), hcard_init(), help_content(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_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(), tagrm_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_init(), xref_init(), and zotfeed_init().

    +

    Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), apps_content(), attach_init(), block_content(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connedit_content(), connedit_init(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), hcard_init(), help_content(), home_content(), home_init(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_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(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_init(), xref_init(), and zotfeed_init().

    @@ -827,7 +827,7 @@ Variables
    -

    Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), apps_content(), attach_init(), block_content(), block_init(), blocks_content(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), get_online_status(), group_content(), group_post(), hcard_init(), help_content(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_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(), tagrm_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(), webpages_init(), widget_collections(), widget_mailmenu(), widget_settings_menu(), xref_init(), and zotfeed_init().

    +

    Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), apps_content(), attach_init(), block_content(), block_init(), blocks_content(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), get_online_status(), group_content(), group_post(), hcard_init(), help_content(), home_content(), home_init(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_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(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_home_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), webpages_init(), widget_collections(), widget_mailmenu(), widget_settings_menu(), xref_init(), and zotfeed_init().

    @@ -997,7 +997,7 @@ Variables @@ -1063,7 +1063,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_init(), parse_app_description(), photos_album_widget(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), prepare_body(), proc_run(), process_delivery(), process_location_delivery(), profile_activity(), profile_sidebar(), 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_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_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(), 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(), 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_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_photo_rand(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

    @@ -1322,7 +1322,7 @@ Variables
    -

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

    +

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

    @@ -1388,7 +1388,7 @@ Variables

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

    Returns
    int|bool channel_id or false
    -

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

    +

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

    @@ -1422,7 +1422,7 @@ Variables @@ -1513,7 +1513,7 @@ Variables @@ -1586,7 +1586,7 @@ Variables
    Returns
    bool
    -

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

    +

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

    @@ -1620,7 +1620,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(), 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(), reflect_article_callback(), reflect_comment_store(), reflect_photo_callback(), register_post(), remove_obsolete_hublocs(), removeaccount_content(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), verify_email_address(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xchan_store(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

    +

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

    @@ -1671,7 +1671,7 @@ Variables @@ -1713,7 +1713,7 @@ Variables @@ -1741,7 +1741,7 @@ Variables @@ -1966,7 +1966,7 @@ Variables @@ -2033,7 +2033,7 @@ Variables @@ -2462,7 +2462,7 @@ Variables @@ -2587,7 +2587,7 @@ Variables @@ -2736,7 +2736,7 @@ Variables @@ -2842,7 +2842,7 @@ Variables @@ -3091,7 +3091,7 @@ Variables @@ -3174,7 +3174,7 @@ Variables @@ -3246,7 +3246,7 @@ Variables
    -

    Referenced by admin_page_logs(), bb2diaspora_itemwallwall(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), deliver_run(), detect_language(), diaspora_decode(), 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(), 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_finger(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

    +

    Referenced by admin_page_logs(), allowed_public_recips(), bb2diaspora_itemwallwall(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), deliver_run(), detect_language(), diaspora_decode(), 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(), 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_finger(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

    @@ -4169,7 +4169,7 @@ Variables @@ -4720,7 +4720,7 @@ Variables diff --git a/doc/html/channel_8php.html b/doc/html/channel_8php.html index 61550f610..b9c52f43a 100644 --- a/doc/html/channel_8php.html +++ b/doc/html/channel_8php.html @@ -148,6 +148,7 @@ Functions

    Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups

    +

    in "list mode", only mark the parent item and any like activities as "seen". We won't distinguish between comment likes and post likes. The important thing is that the number of unseen comments will be accurate. The SQL to separate the comment likes could also get somewhat hairy.

    Referenced by update_channel_content().

    diff --git a/doc/html/classItem-members.html b/doc/html/classItem-members.html index 3da704b93..1a4f80c9a 100644 --- a/doc/html/classItem-members.html +++ b/doc/html/classItem-members.html @@ -118,20 +118,22 @@ $(document).ready(function(){initNavTree('classItem.html','');}); $commentableItemprivate $conversationItemprivate $dataItem - $owner_nameItemprivate - $owner_photoItemprivate - $owner_urlItemprivate - $parentItemprivate - $redirect_urlItemprivate - $templateItemprivate - $threadedItemprivate - $toplevelItemprivate - $visitingItemprivate - $wall_to_wallItemprivate - __construct($data)Item - add_child($item)Item - check_wall_to_wall()Itemprotected - count_descendants()Itemprivate + $display_modeItemprivate + $owner_nameItemprivate + $owner_photoItemprivate + $owner_urlItemprivate + $parentItemprivate + $redirect_urlItemprivate + $templateItemprivate + $threadedItemprivate + $toplevelItemprivate + $visitingItemprivate + $wall_to_wallItemprivate + __construct($data)Item + add_child($item)Item + check_wall_to_wall()Itemprotected + count_descendants()Itemprivate + count_unseen_descendants()Itemprivate get_app()BaseObject get_child($id)Item get_children()Item @@ -140,26 +142,28 @@ $(document).ready(function(){initNavTree('classItem.html','');}); get_conversation()Item get_data()Item get_data_value($name)Item - get_id()Item - get_owner_name()Itemprivate - get_owner_photo()Itemprivate - get_owner_url()Itemprivate - get_parent()Itemprotected - get_redirect_url()Itemprivate - get_template()Itemprivate - get_template_data($alike, $dlike, $thread_level=1)Item - is_commentable()Item - is_threaded()Item - is_toplevel()Itemprivate - is_visiting()Itemprivate - is_wall_to_wall()Itemprivate - remove_child($item)Item - remove_parent()Itemprotected - set_app($app)BaseObjectstatic - set_commentable($val)Item - set_conversation($conv)Item + get_display_mode()Item + get_id()Item + get_owner_name()Itemprivate + get_owner_photo()Itemprivate + get_owner_url()Itemprivate + get_parent()Itemprotected + get_redirect_url()Itemprivate + get_template()Item + get_template_data($alike, $dlike, $thread_level=1)Item + is_commentable()Item + is_threaded()Item + is_toplevel()Itemprivate + is_visiting()Itemprivate + is_wall_to_wall()Itemprivate + remove_child($item)Item + remove_parent()Itemprotected + set_app($app)BaseObjectstatic + set_commentable($val)Item + set_conversation($conv)Item + set_display_mode($mode)Item set_parent($item)Itemprotected - set_template($t)Itemprivate + set_template($t)Item
    diff --git a/doc/html/classItem.html b/doc/html/classItem.html index 131cf6d82..413293348 100644 --- a/doc/html/classItem.html +++ b/doc/html/classItem.html @@ -134,6 +134,10 @@ Public Member Functions    get_id ()   + get_display_mode () +  + set_display_mode ($mode) +   is_threaded ()    set_commentable ($val) @@ -156,6 +160,10 @@ Public Member Functions    get_data_value ($name)   + get_template () +  + set_template ($t) +  - Public Member Functions inherited from BaseObject  get_app ()   @@ -178,14 +186,12 @@ Protected Member Functions - - - - + + @@ -235,6 +241,8 @@ Private Attributes + +

    Private Member Functions

     get_template ()
     
     set_template ($t)
     
     is_toplevel ()
     
     count_descendants ()
     
     count_unseen_descendants ()
     
     get_comment_box_template ()
     
     get_comment_box ($indent)
     
     $channel = null
     
     $display_mode = 'normal'
     
    @@ -331,6 +339,31 @@ Additional Inherited Members

    Referenced by get_template_data().

    + + + +
    +
    +

    Additional Inherited Members

    + + + + +
    + + + + + + + +
    Item::count_unseen_descendants ()
    +
    +private
    +
    + +

    Referenced by get_template_data().

    +
    @@ -366,7 +399,7 @@ Additional Inherited Members @@ -479,6 +512,23 @@ Additional Inherited Members

    Referenced by __construct(), check_wall_to_wall(), get_id(), and get_template_data().

    + + + +
    +
    + + + + + + + +
    Item::get_display_mode ()
    +
    + +

    Referenced by get_template_data().

    +
    @@ -625,9 +675,6 @@ Additional Inherited Members
    - - - - - -
    @@ -636,11 +683,6 @@ Additional Inherited Members
    Item::get_template
    -
    -private

    Get template

    @@ -862,6 +904,22 @@ Additional Inherited Members

    Referenced by set_parent().

    +
    +
    + +
    +
    + + + + + + + + +
    Item::set_display_mode ( $mode)
    +
    +
    @@ -892,9 +950,6 @@ Additional Inherited Members
    - - - - - -
    @@ -904,11 +959,6 @@ Additional Inherited Members
    Item::set_template
    -
    -private
    @@ -952,7 +1002,7 @@ Additional Inherited Members
    @@ -1034,6 +1084,28 @@ Additional Inherited Members

    Referenced by __construct(), and get_data().

    + + + +
    +
    + + + + + +
    + + + + +
    Item::$display_mode = 'normal'
    +
    +private
    +
    + +

    Referenced by get_display_mode().

    +
    diff --git a/doc/html/classItem.js b/doc/html/classItem.js index afdf7677d..7c2ed1e04 100644 --- a/doc/html/classItem.js +++ b/doc/html/classItem.js @@ -4,6 +4,7 @@ var classItem = [ "add_child", "classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51", null ], [ "check_wall_to_wall", "classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8", null ], [ "count_descendants", "classItem.html#aca1e66988ed00cd627b2a359b72cd0ae", null ], + [ "count_unseen_descendants", "classItem.html#ae0c48b2fed5558642549cabd547fc4f3", null ], [ "get_child", "classItem.html#a632185dd25c5caf277067c76230a4320", null ], [ "get_children", "classItem.html#aa0ee775ec94abccec6c798428835d001", null ], [ "get_comment_box", "classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf", null ], @@ -11,6 +12,7 @@ var classItem = [ "get_conversation", "classItem.html#a0c301aaed2b7d682728d18db3a22afa3", null ], [ "get_data", "classItem.html#ad3638f93065693c1f69eb349feb1b7aa", null ], [ "get_data_value", "classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c", null ], + [ "get_display_mode", "classItem.html#a23d4057883f8ed888c0c2ff12d8aa5d0", null ], [ "get_id", "classItem.html#ac0f27e58532612f6e7a54c8a621b9b92", null ], [ "get_owner_name", "classItem.html#a67892aa23d19f4431bb2e5f43c74000e", null ], [ "get_owner_photo", "classItem.html#aa541bc4290e51bfd688d6921bebabc73", null ], @@ -28,6 +30,7 @@ var classItem = [ "remove_parent", "classItem.html#aa452b5bcd8dea12119b09212c615cb41", null ], [ "set_commentable", "classItem.html#aa1bd19fc8b5577078530265a7bf64123", null ], [ "set_conversation", "classItem.html#aa8b1bbc4236890694635295e46d7fd72", null ], + [ "set_display_mode", "classItem.html#ac09a4728d37b7783714243f7f8167214", null ], [ "set_parent", "classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7", null ], [ "set_template", "classItem.html#af1b73df9b7c4b927e26b7e243b491f42", null ], [ "$channel", "classItem.html#acc32426c0f465391be8a99ad810c7b8e", null ], @@ -36,6 +39,7 @@ var classItem = [ "$commentable", "classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304", null ], [ "$conversation", "classItem.html#a007424e3e3171dcfb4312a02161da6cd", null ], [ "$data", "classItem.html#aec24e233f9098f902b1e57e60dcb2019", null ], + [ "$display_mode", "classItem.html#a88a99e2d1245925867f249f543358e72", null ], [ "$owner_name", "classItem.html#a9594df6014b0b6f45364ea7a34510130", null ], [ "$owner_photo", "classItem.html#a078f95b4134ce3a1df344cf8d386f986", null ], [ "$owner_url", "classItem.html#afa54851df82962c7c42dea3cc9f5c92c", null ], diff --git a/doc/html/conversation_8php.html b/doc/html/conversation_8php.html index 129969e91..350d2463d 100644 --- a/doc/html/conversation_8php.html +++ b/doc/html/conversation_8php.html @@ -231,7 +231,7 @@ Functions @@ -288,7 +288,7 @@ Functions
  • conversation view The $mode parameter decides between the various renderings and also figures out how to determine page owner and other contextual items that are based on unique features of the calling module.
  • -

    Referenced by channel_content(), display_content(), item_post(), network_content(), Item\remove_parent(), search_content(), and Item\set_conversation().

    +

    Referenced by channel_content(), display_content(), home_content(), item_post(), network_content(), Item\remove_parent(), search_content(), and Item\set_conversation().

    @@ -587,7 +587,7 @@ Functions @@ -783,7 +783,7 @@ Functions diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html index f526dea60..aa67c1379 100644 --- a/doc/html/datetime_8php.html +++ b/doc/html/datetime_8php.html @@ -309,7 +309,7 @@ Functions
    -

    Referenced by abook_toggle_flag(), account_verify_password(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_delete(), attach_mkdir(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), channel_remove(), chat_message(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_post(), Cache\clear(), comments_are_now_closed(), consume_feed(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_message(), diaspora_post(), diaspora_profile(), diaspora_request(), diaspora_reshare(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_status(), diaspora_transmit(), directory_run(), dirsearch_content(), discover_by_url(), discover_by_webbie(), dlogger(), dob(), editpost_content(), ev_compare(), event_store_event(), events_content(), events_post(), externals_run(), first_post_date(), fix_system_urls(), format_event_diaspora(), format_event_html(), 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(), dba_postgres\q(), queue_run(), relative_date(), removeaccount_post(), removeme_post(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), sync_directories(), sync_locations(), tag_deliver(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), verify_email_address(), webpages_content(), widget_archive(), xchan_store(), z_birthday(), zot_feed(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

    +

    Referenced by abook_toggle_flag(), 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(), home_content(), impel_init(), import_author_rss(), import_author_unknown(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), list_post_dates(), logger(), magic_init(), mail_content(), mail_post(), mail_store(), manage_content(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), openid_content(), p_init(), pagelist_widget(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), post_post(), posted_dates(), profile_photo_post(), profiles_content(), profiles_post(), prune_hub_reinstalls(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), relative_date(), removeaccount_post(), removeme_post(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), sync_directories(), sync_locations(), tag_deliver(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), verify_email_address(), webpages_content(), widget_archive(), xchan_store(), z_birthday(), zot_feed(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

    @@ -593,7 +593,7 @@ Functions
    -

    returns a date selector

    +

    returns a time selector

    Parameters
    diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html index d4e20bea2..40449823b 100644 --- a/doc/html/dba__driver_8php.html +++ b/doc/html/dba__driver_8php.html @@ -208,7 +208,7 @@ Functions
    $formatformat string, e.g. 'ymd' or 'mdy'. Not currently supported
    @@ -363,7 +363,7 @@ Functions
    Returns
    Return an escaped string of the value to pass to a DB query.
    -

    Referenced by abook_toggle_flag(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_page_profs_post(), admin_page_users(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), app_destroy(), app_installed(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), bb2diaspora_itemwallwall(), bb2dmention_callback(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_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(), 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(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_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_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(), refimport_content(), reflect_comment_store(), reflect_get_channel(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), sitelist_init(), sources_content(), sources_post(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), term_query(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

    +

    Referenced by abook_toggle_flag(), account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_page_profs_post(), admin_page_users(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_login(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), app_destroy(), app_installed(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), bb2diaspora_itemwallwall(), bb2dmention_callback(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_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(), 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(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_addtocal(), event_store_event(), event_store_item(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_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_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(), refimport_content(), reflect_comment_store(), reflect_get_channel(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), rmagic_init(), rmagic_post(), rpost_content(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), sitelist_init(), sources_content(), sources_post(), start_delivery_chain(), photo_driver\store(), store_diaspora_comment_sig(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), term_query(), tgroup_check(), thing_content(), thing_init(), uninstall_plugin(), unregister_hook(), update_birthdays(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_approve(), user_deny(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), vcard_from_xchan(), verify_email_address(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xchan_store(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_message_request(), zot_process_response(), zot_refresh(), and zotfeed_init().

    @@ -441,7 +441,7 @@ Functions @@ -577,7 +577,7 @@ Functions
    Returns
    bool|array
    -

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

    +

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

    diff --git a/doc/html/dir_8543001e5d25368a6edede3e63efb554.html b/doc/html/dir_8543001e5d25368a6edede3e63efb554.html index 3b9d184f6..da6696cd0 100644 --- a/doc/html/dir_8543001e5d25368a6edede3e63efb554.html +++ b/doc/html/dir_8543001e5d25368a6edede3e63efb554.html @@ -106,8 +106,6 @@ $(document).ready(function(){initNavTree('dir_8543001e5d25368a6edede3e63efb554.h Directories directory  apw   -directory  blogga -  directory  hivenet   directory  mytheme diff --git a/doc/html/dir_8543001e5d25368a6edede3e63efb554.js b/doc/html/dir_8543001e5d25368a6edede3e63efb554.js index 63c07db40..8851cf93a 100644 --- a/doc/html/dir_8543001e5d25368a6edede3e63efb554.js +++ b/doc/html/dir_8543001e5d25368a6edede3e63efb554.js @@ -1,7 +1,6 @@ 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" ], diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html index e12b12d50..51c681abd 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html @@ -357,6 +357,8 @@ Files   file  update_display.php   +file  update_home.php +  file  update_network.php   file  update_search.php diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js index 6376a9487..df75ab37a 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js @@ -126,6 +126,7 @@ var dir_d41ce877eb409a4791b288730010abe2 = [ "uexport.php", "uexport_8php.html", "uexport_8php" ], [ "update_channel.php", "update__channel_8php.html", "update__channel_8php" ], [ "update_display.php", "update__display_8php.html", "update__display_8php" ], + [ "update_home.php", "update__home_8php.html", "update__home_8php" ], [ "update_network.php", "update__network_8php.html", "update__network_8php" ], [ "update_search.php", "update__search_8php.html", "update__search_8php" ], [ "view.php", "view_8php.html", "view_8php" ], diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html index f9774780e..247431e9e 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html @@ -141,8 +141,6 @@ Files   file  cache.php   -file  chanman.php -  file  chat.php   file  cli_startup.php diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js index 76bb3cc2c..af0e32f40 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js @@ -20,7 +20,6 @@ var dir_d44c64559bbebec7f509842c48db8b23 = [ "cache.php", "cache_8php.html", [ [ "Cache", "classCache.html", null ] ] ], - [ "chanman.php", "chanman_8php.html", "chanman_8php" ], [ "chat.php", "include_2chat_8php.html", "include_2chat_8php" ], [ "cli_startup.php", "cli__startup_8php.html", "cli__startup_8php" ], [ "cli_suggest.php", "cli__suggest_8php.html", "cli__suggest_8php" ], diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html index c5f937b32..3cddaffc3 100644 --- a/doc/html/extract_8php.html +++ b/doc/html/extract_8php.html @@ -132,7 +132,7 @@ Variables
    -

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

    +

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

    diff --git a/doc/html/files.html b/doc/html/files.html index 1d0aada26..65c93aa84 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -108,7 +108,7 @@ $(document).ready(function(){initNavTree('files.html','');});
    Here is a list of all files with brief descriptions:
    -
    [detail level 1234567]
    +
    [detail level 12345]
    @@ -139,74 +139,73 @@ $(document).ready(function(){initNavTree('files.html','');}); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -334,23 +333,24 @@ $(document).ready(function(){initNavTree('files.html','');}); - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + @@ -396,49 +396,37 @@ $(document).ready(function(){initNavTree('files.html','');}); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    o+include
    o+mod
    o+util
    \*boot.php
    diff --git a/doc/html/functions.html b/doc/html/functions.html index da63ae6ac..3332a4670 100644 --- a/doc/html/functions.html +++ b/doc/html/functions.html @@ -240,6 +240,9 @@ $(document).ready(function(){initNavTree('functions.html','');}); : dba_driver , Template +
  • $display_mode +: Item +
  • $done : Template
  • @@ -328,9 +331,9 @@ $(document).ready(function(){initNavTree('functions.html','');}); : Template
  • $observer -: App +: Conversation , RedMatrix\RedDAV\RedBasicAuth -, Conversation +, App
  • $os_path : RedMatrix\RedDAV\RedDirectory diff --git a/doc/html/functions_0x63.html b/doc/html/functions_0x63.html index e59ee7ccd..b7ebad3f1 100644 --- a/doc/html/functions_0x63.html +++ b/doc/html/functions_0x63.html @@ -172,10 +172,10 @@ $(document).ready(function(){initNavTree('functions_0x63.html','');}); , dba_postgres
  • connect() -: dba_postgres -, dba_driver +: dba_driver , dba_mysql , dba_mysqli +, dba_postgres
  • convert_child() : Redmatrix\Import\Import @@ -189,6 +189,9 @@ $(document).ready(function(){initNavTree('functions_0x63.html','');});
  • count_descendants() : Item
  • +
  • count_unseen_descendants() +: Item +
  • createDirectory() : RedMatrix\RedDAV\RedDirectory
  • @@ -196,9 +199,9 @@ $(document).ready(function(){initNavTree('functions_0x63.html','');}); : RedMatrix\RedDAV\RedDirectory
  • cropImage() -: photo_imagick +: photo_driver +, photo_imagick , photo_gd -, photo_driver
  • diff --git a/doc/html/functions_0x67.html b/doc/html/functions_0x67.html index b4867d63e..30647bfbd 100644 --- a/doc/html/functions_0x67.html +++ b/doc/html/functions_0x67.html @@ -193,6 +193,9 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');});
  • get_data_value() : Item
  • +
  • get_display_mode() +: Item +
  • get_FormatsMap() : photo_imagick
  • @@ -221,9 +224,9 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');}); : Redmatrix\Import\Import
  • get_markup_template() -: ITemplateEngine +: Template +, ITemplateEngine , FriendicaSmartyEngine -, Template
  • get_mode() : Conversation @@ -266,8 +269,8 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');}); : Item
  • get_template_data() -: Conversation -, Item +: Item +, Conversation
  • get_template_engine() : App @@ -312,9 +315,9 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');}); : photo_driver
  • getImage() -: photo_imagick +: photo_gd , photo_driver -, photo_gd +, photo_imagick
  • getLastModified() : RedMatrix\RedDAV\RedDirectory diff --git a/doc/html/functions_0x73.html b/doc/html/functions_0x73.html index c4845bcc9..3e6b72013 100644 --- a/doc/html/functions_0x73.html +++ b/doc/html/functions_0x73.html @@ -182,6 +182,9 @@ $(document).ready(function(){initNavTree('functions_0x73.html','');});
  • set_conversation() : Item
  • +
  • set_display_mode() +: Item +
  • set_groups() : App
  • @@ -234,24 +237,24 @@ $(document).ready(function(){initNavTree('functions_0x73.html','');}); : RedMatrix\RedDAV\RedBasicAuth
  • setDimensions() -: photo_imagick +: photo_driver +, photo_imagick , photo_gd -, photo_driver
  • setName() -: RedMatrix\RedDAV\RedFile -, RedMatrix\RedDAV\RedDirectory +: RedMatrix\RedDAV\RedDirectory +, RedMatrix\RedDAV\RedFile
  • setTimezone() : RedMatrix\RedDAV\RedBasicAuth
  • store() -: photo_driver -, Redmatrix\Import\Import +: Redmatrix\Import\Import +, photo_driver
  • supportedTypes() -: photo_imagick -, photo_gd +: photo_gd +, photo_imagick , photo_driver
  • diff --git a/doc/html/functions_func_0x63.html b/doc/html/functions_func_0x63.html index 53c51fd2e..8ae0c6e4b 100644 --- a/doc/html/functions_func_0x63.html +++ b/doc/html/functions_func_0x63.html @@ -171,10 +171,10 @@ $(document).ready(function(){initNavTree('functions_func_0x63.html','');}); , dba_postgres
  • connect() -: dba_postgres -, dba_driver +: dba_driver , dba_mysql , dba_mysqli +, dba_postgres
  • convert_child() : Redmatrix\Import\Import @@ -188,6 +188,9 @@ $(document).ready(function(){initNavTree('functions_func_0x63.html','');});
  • count_descendants() : Item
  • +
  • count_unseen_descendants() +: Item +
  • createDirectory() : RedMatrix\RedDAV\RedDirectory
  • @@ -195,9 +198,9 @@ $(document).ready(function(){initNavTree('functions_func_0x63.html','');}); : RedMatrix\RedDAV\RedDirectory
  • cropImage() -: photo_imagick +: photo_driver +, photo_imagick , photo_gd -, photo_driver
  • diff --git a/doc/html/functions_func_0x67.html b/doc/html/functions_func_0x67.html index f8f8d7154..5dd268174 100644 --- a/doc/html/functions_func_0x67.html +++ b/doc/html/functions_func_0x67.html @@ -192,6 +192,9 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');});
  • get_data_value() : Item
  • +
  • get_display_mode() +: Item +
  • get_FormatsMap() : photo_imagick
  • @@ -220,9 +223,9 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');}); : Redmatrix\Import\Import
  • get_markup_template() -: ITemplateEngine +: Template +, ITemplateEngine , FriendicaSmartyEngine -, Template
  • get_mode() : Conversation @@ -265,8 +268,8 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');}); : Item
  • get_template_data() -: Conversation -, Item +: Item +, Conversation
  • get_template_engine() : App @@ -311,9 +314,9 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');}); : photo_driver
  • getImage() -: photo_imagick +: photo_gd , photo_driver -, photo_gd +, photo_imagick
  • getLastModified() : RedMatrix\RedDAV\RedDirectory diff --git a/doc/html/functions_func_0x73.html b/doc/html/functions_func_0x73.html index f040a03de..c0c901e66 100644 --- a/doc/html/functions_func_0x73.html +++ b/doc/html/functions_func_0x73.html @@ -181,6 +181,9 @@ $(document).ready(function(){initNavTree('functions_func_0x73.html','');});
  • set_conversation() : Item
  • +
  • set_display_mode() +: Item +
  • set_groups() : App
  • @@ -233,24 +236,24 @@ $(document).ready(function(){initNavTree('functions_func_0x73.html','');}); : RedMatrix\RedDAV\RedBasicAuth
  • setDimensions() -: photo_imagick +: photo_driver +, photo_imagick , photo_gd -, photo_driver
  • setName() -: RedMatrix\RedDAV\RedFile -, RedMatrix\RedDAV\RedDirectory +: RedMatrix\RedDAV\RedDirectory +, RedMatrix\RedDAV\RedFile
  • setTimezone() : RedMatrix\RedDAV\RedBasicAuth
  • store() -: photo_driver -, Redmatrix\Import\Import +: Redmatrix\Import\Import +, photo_driver
  • supportedTypes() -: photo_imagick -, photo_gd +: photo_gd +, photo_imagick , photo_driver
  • diff --git a/doc/html/functions_vars.html b/doc/html/functions_vars.html index d9445bd4d..fae3826ec 100644 --- a/doc/html/functions_vars.html +++ b/doc/html/functions_vars.html @@ -223,6 +223,9 @@ $(document).ready(function(){initNavTree('functions_vars.html','');}); : dba_driver , Template +
  • $display_mode +: Item +
  • $done : Template
  • @@ -311,9 +314,9 @@ $(document).ready(function(){initNavTree('functions_vars.html','');}); : Template
  • $observer -: App +: Conversation , RedMatrix\RedDAV\RedBasicAuth -, Conversation +, App
  • $os_path : RedMatrix\RedDAV\RedDirectory diff --git a/doc/html/globals.html b/doc/html/globals.html index 11075a6de..a7aaa8b45 100644 --- a/doc/html/globals.html +++ b/doc/html/globals.html @@ -156,9 +156,6 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $aside : minimalisticdarkness.php
  • -
  • $bodyclass -: default.php -
  • $called_api : api.php
  • @@ -184,9 +181,9 @@ $(document).ready(function(){initNavTree('globals.html','');}); : docblox_errorchecker.php
  • $files -: extract.php +: typo.php +, extract.php , tpldebug.php -, typo.php
  • $fname : style.php @@ -194,12 +191,6 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $gc_probability : session.php
  • -
  • $headimg -: default.php -
  • -
  • $headimghome -: default.php -
  • $i : docblox_errorchecker.php
  • diff --git a/doc/html/globals_0x62.html b/doc/html/globals_0x62.html index 5e4fffd45..6e98928f8 100644 --- a/doc/html/globals_0x62.html +++ b/doc/html/globals_0x62.html @@ -225,24 +225,6 @@ $(document).ready(function(){initNavTree('globals_0x62.html','');});
  • blocks_init() : blocks.php
  • -
  • blog_init() -: theme.php -
  • -
  • blog_install() -: theme.php -
  • -
  • blog_uninstall() -: theme.php -
  • -
  • blogtheme_display_item() -: theme.php -
  • -
  • blogtheme_form() -: config.php -
  • -
  • blogtheme_imgurl() -: theme.php -
  • bookmark_add() : bookmarks.php
  • diff --git a/doc/html/globals_0x63.html b/doc/html/globals_0x63.html index 5e21f70e2..16df1649d 100644 --- a/doc/html/globals_0x63.html +++ b/doc/html/globals_0x63.html @@ -171,9 +171,6 @@ $(document).ready(function(){initNavTree('globals_0x63.html','');});
  • chanlink_url() : text.php
  • -
  • chanman_remove_everything_from_network() -: chanman.php -
  • channel_content() : channel.php
  • diff --git a/doc/html/globals_0x68.html b/doc/html/globals_0x68.html index 8a464ae94..0848dd574 100644 --- a/doc/html/globals_0x68.html +++ b/doc/html/globals_0x68.html @@ -193,7 +193,7 @@ $(document).ready(function(){initNavTree('globals_0x68.html','');}); : theme.php
  • home_content() -: home.php +: home.php
  • home_init() : home.php diff --git a/doc/html/globals_0x74.html b/doc/html/globals_0x74.html index 48ce7c771..2580271b1 100644 --- a/doc/html/globals_0x74.html +++ b/doc/html/globals_0x74.html @@ -237,12 +237,6 @@ $(document).ready(function(){initNavTree('globals_0x74.html','');});
  • tgroup_check() : items.php
  • -
  • theme_admin() -: config.php -
  • -
  • theme_admin_post() -: config.php -
  • theme_attachments() : text.php
  • @@ -253,7 +247,7 @@ $(document).ready(function(){initNavTree('globals_0x74.html','');}); : plugin.php
  • theme_post() -: config.php +: config.php
  • theme_status() : admin.php diff --git a/doc/html/globals_0x75.html b/doc/html/globals_0x75.html index 06edcdfdf..bec61a442 100644 --- a/doc/html/globals_0x75.html +++ b/doc/html/globals_0x75.html @@ -207,6 +207,9 @@ $(document).ready(function(){initNavTree('globals_0x75.html','');});
  • UPDATE_FLAGS_UPDATED : boot.php
  • +
  • update_home_content() +: update_home.php +
  • update_imported_item() : zot.php
  • diff --git a/doc/html/globals_0x77.html b/doc/html/globals_0x77.html index ad5b01942..a50a93f2e 100644 --- a/doc/html/globals_0x77.html +++ b/doc/html/globals_0x77.html @@ -240,6 +240,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
  • widget_photo_albums() : widgets.php
  • +
  • widget_photo_rand() +: widgets.php +
  • widget_profile() : widgets.php
  • diff --git a/doc/html/globals_func_0x62.html b/doc/html/globals_func_0x62.html index e141975a7..651c1783f 100644 --- a/doc/html/globals_func_0x62.html +++ b/doc/html/globals_func_0x62.html @@ -224,24 +224,6 @@ $(document).ready(function(){initNavTree('globals_func_0x62.html','');});
  • blocks_init() : blocks.php
  • -
  • blog_init() -: theme.php -
  • -
  • blog_install() -: theme.php -
  • -
  • blog_uninstall() -: theme.php -
  • -
  • blogtheme_display_item() -: theme.php -
  • -
  • blogtheme_form() -: config.php -
  • -
  • blogtheme_imgurl() -: theme.php -
  • bookmark_add() : bookmarks.php
  • diff --git a/doc/html/globals_func_0x63.html b/doc/html/globals_func_0x63.html index 3fbc6055b..62db2f3e8 100644 --- a/doc/html/globals_func_0x63.html +++ b/doc/html/globals_func_0x63.html @@ -170,9 +170,6 @@ $(document).ready(function(){initNavTree('globals_func_0x63.html','');});
  • chanlink_url() : text.php
  • -
  • chanman_remove_everything_from_network() -: chanman.php -
  • channel_content() : channel.php
  • diff --git a/doc/html/globals_func_0x68.html b/doc/html/globals_func_0x68.html index 7739ffc9b..24b41d744 100644 --- a/doc/html/globals_func_0x68.html +++ b/doc/html/globals_func_0x68.html @@ -192,7 +192,7 @@ $(document).ready(function(){initNavTree('globals_func_0x68.html','');}); : theme.php
  • home_content() -: home.php +: home.php
  • home_init() : home.php diff --git a/doc/html/globals_func_0x74.html b/doc/html/globals_func_0x74.html index b7027bb20..6723ca6b5 100644 --- a/doc/html/globals_func_0x74.html +++ b/doc/html/globals_func_0x74.html @@ -185,12 +185,6 @@ $(document).ready(function(){initNavTree('globals_func_0x74.html','');});
  • tgroup_check() : items.php
  • -
  • theme_admin() -: config.php -
  • -
  • theme_admin_post() -: config.php -
  • theme_attachments() : text.php
  • @@ -201,7 +195,7 @@ $(document).ready(function(){initNavTree('globals_func_0x74.html','');}); : plugin.php
  • theme_post() -: config.php +: config.php
  • theme_status() : admin.php diff --git a/doc/html/globals_func_0x75.html b/doc/html/globals_func_0x75.html index 050f0004d..354e67a8d 100644 --- a/doc/html/globals_func_0x75.html +++ b/doc/html/globals_func_0x75.html @@ -194,6 +194,9 @@ $(document).ready(function(){initNavTree('globals_func_0x75.html','');});
  • update_feed_item() : items.php
  • +
  • update_home_content() +: update_home.php +
  • update_imported_item() : zot.php
  • diff --git a/doc/html/globals_func_0x77.html b/doc/html/globals_func_0x77.html index 9985b26a1..0a536389c 100644 --- a/doc/html/globals_func_0x77.html +++ b/doc/html/globals_func_0x77.html @@ -236,6 +236,9 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
  • widget_photo_albums() : widgets.php
  • +
  • widget_photo_rand() +: widgets.php +
  • widget_profile() : widgets.php
  • diff --git a/doc/html/globals_vars.html b/doc/html/globals_vars.html index e931a314a..7b4732b89 100644 --- a/doc/html/globals_vars.html +++ b/doc/html/globals_vars.html @@ -152,9 +152,6 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
  • $aside : minimalisticdarkness.php
  • -
  • $bodyclass -: default.php -
  • $called_api : api.php
  • @@ -180,9 +177,9 @@ $(document).ready(function(){initNavTree('globals_vars.html','');}); : docblox_errorchecker.php
  • $files -: extract.php +: typo.php +, extract.php , tpldebug.php -, typo.php
  • $fname : style.php @@ -190,12 +187,6 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
  • $gc_probability : session.php
  • -
  • $headimg -: default.php -
  • -
  • $headimghome -: default.php -
  • $i : docblox_errorchecker.php
  • diff --git a/doc/html/home_8php.html b/doc/html/home_8php.html index ec629b7c2..6e5b05937 100644 --- a/doc/html/home_8php.html +++ b/doc/html/home_8php.html @@ -114,11 +114,11 @@ $(document).ready(function(){initNavTree('home_8php.html','');}); Functions  home_init (&$a)   - home_content (&$a) -  + home_content (&$a, $update=0, $load=false) + 

    Function Documentation

    - +
    @@ -126,12 +126,30 @@ Functions - + + + + + + + + + + + + + + + + +
    home_content ( $a)$a,
     $update = 0,
     $load = false 
    )
    +

    Referenced by update_home_content().

    +
    diff --git a/doc/html/home_8php.js b/doc/html/home_8php.js index e4f6d5dc9..3aacc0b85 100644 --- a/doc/html/home_8php.js +++ b/doc/html/home_8php.js @@ -1,5 +1,5 @@ var home_8php = [ - [ "home_content", "home_8php.html#aa1cf697851a646755baf537f75334c46", null ], + [ "home_content", "home_8php.html#a6e3dbf78f4ed74ab2577de221190b33f", null ], [ "home_init", "home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde", null ] ]; \ No newline at end of file diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html index e6956b904..f57b69978 100644 --- a/doc/html/identity_8php.html +++ b/doc/html/identity_8php.html @@ -454,7 +454,7 @@ Functions @@ -922,7 +922,7 @@ Functions
    Returns
    string

    'zid' string url - url to accept zid string zid - urlencoded zid string result - the return string we calculated, change it if you want to return something else

    -

    Referenced by advanced_profile(), app_render(), chanview_content(), chatsvc_content(), conversation(), format_categories(), format_hashtags(), format_mentions(), get_plink(), get_things(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), parse_app_description(), tryzrlaudio(), tryzrlvideo(), widget_bookmarkedchats(), widget_photo(), and widget_suggestedchats().

    +

    Referenced by advanced_profile(), app_render(), chanview_content(), chatsvc_content(), conversation(), format_categories(), format_hashtags(), format_mentions(), get_plink(), get_things(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), parse_app_description(), tryzrlaudio(), tryzrlvideo(), widget_bookmarkedchats(), widget_photo(), widget_photo_rand(), and widget_suggestedchats().

    diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index 091ea54ec..f18b69e4a 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(), 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(), tgroup_check(), 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(), 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(), tgroup_check(), unobscure(), update_modtime(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), verify_email_address(), viewconnections_content(), viewconnections_init(), viewsrc_content(), widget_fullprofile(), widget_profile(), z_fetch_url(), z_post_url(), zfinger_init(), zot_fetch(), zot_gethub(), zot_import(), and zotfeed_init().

    @@ -610,7 +610,7 @@ Functions
    Returns
    mixed Return the set value, or false if the database update failed
    -

    Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), api_content(), check_config(), check_upstream_directory(), create_account(), create_sys_channel(), find_upstream_directory(), poller_run(), theme_admin_post(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_channels_total_stat(), update_local_posts_stat(), and what_next().

    +

    Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), api_content(), check_config(), check_upstream_directory(), create_account(), create_sys_channel(), find_upstream_directory(), poller_run(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_channels_total_stat(), update_local_posts_stat(), and what_next().

    diff --git a/doc/html/include_2photos_8php.html b/doc/html/include_2photos_8php.html index a61d9ed9c..81047d3e7 100644 --- a/doc/html/include_2photos_8php.html +++ b/doc/html/include_2photos_8php.html @@ -394,7 +394,7 @@ Functions
    -

    Referenced by api_photos().

    +

    Referenced by api_photos(), and widget_photo_rand().

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

    diff --git a/doc/html/mod_2network_8php.html b/doc/html/mod_2network_8php.html index 16de4ad96..bfbd5bd2c 100644 --- a/doc/html/mod_2network_8php.html +++ b/doc/html/mod_2network_8php.html @@ -147,6 +147,7 @@ Functions
    +

    in "list mode", only mark the parent item and any like activities as "seen". We won't distinguish between comment likes and post likes. The important thing is that the number of unseen comments will be accurate. The SQL to separate the comment likes could also get somewhat hairy.

    Referenced by update_network_content().

    diff --git a/doc/html/navtree.js b/doc/html/navtree.js index ae229089f..e216d71eb 100644 --- a/doc/html/navtree.js +++ b/doc/html/navtree.js @@ -37,15 +37,15 @@ var NAVTREE = var NAVTREEINDEX = [ "BS-Default_8php.html", -"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115", -"classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f", -"classTemplate.html#a37c15f6d1ade500943629f27a62808b7", -"dba__driver_8php.html", -"globals_0x67.html", -"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941", -"mod_2bookmarks_8php.html", -"refimport_8php.html", -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8" +"boot_8php.html#a57eee7352714c004d36c26dda74af73e", +"classApp.html#a4b67935096f66d1f14b657399a8461ac", +"classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1", +"dba__driver_8php.html#a55bf30d8176967e682656b5be4ad9249", +"globals_0x72.html", +"include_2follow_8php.html", +"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a", +"refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29", +"theme_2apw_2php_2theme__init_8php.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index 4c0766557..35728fe6c 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -1,28 +1,28 @@ var NAVTREEINDEX0 = { -"BS-Default_8php.html":[6,0,3,1,4,1,1], +"BS-Default_8php.html":[6,0,3,1,3,1,1], "BaseObject_8php.html":[6,0,0,11], -"Contact_8php.html":[6,0,0,22], -"Contact_8php.html#a024919623a830e8703ac4f23496dd66c":[6,0,0,22,2], -"Contact_8php.html#a08845ce8c5b997d5edac38ae7118b5c8":[6,0,0,22,9], -"Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6":[6,0,0,22,8], -"Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91":[6,0,0,22,11], -"Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15":[6,0,0,22,13], -"Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc":[6,0,0,22,6], -"Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258":[6,0,0,22,5], -"Contact_8php.html#a4e8af0f0525161da74583c04b8b03097":[6,0,0,22,4], -"Contact_8php.html#a5101d7eca5d6f387e5555f03fe249e33":[6,0,0,22,3], -"Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960":[6,0,0,22,14], -"Contact_8php.html#a7e3f5bef8ea1d2bf8434c9be36a2b713":[6,0,0,22,10], -"Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e":[6,0,0,22,7], -"Contact_8php.html#acc12cda999c88c4d6185cca967c15125":[6,0,0,22,12], -"Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5":[6,0,0,22,1], -"Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e":[6,0,0,22,0], -"ConversationObject_8php.html":[6,0,0,26], -"ITemplateEngine_8php.html":[6,0,0,48], +"Contact_8php.html":[6,0,0,21], +"Contact_8php.html#a024919623a830e8703ac4f23496dd66c":[6,0,0,21,2], +"Contact_8php.html#a08845ce8c5b997d5edac38ae7118b5c8":[6,0,0,21,9], +"Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6":[6,0,0,21,8], +"Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91":[6,0,0,21,11], +"Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15":[6,0,0,21,13], +"Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc":[6,0,0,21,6], +"Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258":[6,0,0,21,5], +"Contact_8php.html#a4e8af0f0525161da74583c04b8b03097":[6,0,0,21,4], +"Contact_8php.html#a5101d7eca5d6f387e5555f03fe249e33":[6,0,0,21,3], +"Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960":[6,0,0,21,14], +"Contact_8php.html#a7e3f5bef8ea1d2bf8434c9be36a2b713":[6,0,0,21,10], +"Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e":[6,0,0,21,7], +"Contact_8php.html#acc12cda999c88c4d6185cca967c15125":[6,0,0,21,12], +"Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5":[6,0,0,21,1], +"Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e":[6,0,0,21,0], +"ConversationObject_8php.html":[6,0,0,25], +"ITemplateEngine_8php.html":[6,0,0,47], "Importer_8php.html":[6,0,0,1,0], -"ItemObject_8php.html":[6,0,0,47], -"ProtoDriver_8php.html":[6,0,0,68], +"ItemObject_8php.html":[6,0,0,46], +"ProtoDriver_8php.html":[6,0,0,67], "RedBasicAuth_8php.html":[6,0,0,3,0], "RedBrowser_8php.html":[6,0,0,3,1], "RedDirectory_8php.html":[6,0,0,3,2], @@ -145,14 +145,6 @@ var NAVTREEINDEX0 = "blocks_8php.html":[6,0,1,9], "blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12":[6,0,1,9,0], "blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9":[6,0,1,9,1], -"blogga_2php_2theme_8php.html":[6,0,3,1,1,0,2], -"blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b":[6,0,3,1,1,0,2,0], -"blogga_2view_2theme_2blog_2theme_8php.html":[6,0,3,1,1,1,0,0,2], -"blogga_2view_2theme_2blog_2theme_8php.html#a028ae8e9f2824670dfa76a6651d817e5":[6,0,3,1,1,1,0,0,2,3], -"blogga_2view_2theme_2blog_2theme_8php.html#a3e77dbe111f330c64a1ff6c741cd515c":[6,0,3,1,1,1,0,0,2,2], -"blogga_2view_2theme_2blog_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b":[6,0,3,1,1,1,0,0,2,0], -"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,148], "boot_8php.html#a0209e605028a5bb492683951ab30d49d":[6,0,4,309], @@ -249,5 +241,13 @@ var NAVTREEINDEX0 = "boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,189], "boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[6,0,4,6], "boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,225], -"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,62] +"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,62], +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,248], +"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,215], +"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,30], +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,169], +"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,44], +"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,88], +"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,36], +"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,207] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index e5c55b0c2..5844338d6 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,13 +1,5 @@ var NAVTREEINDEX1 = { -"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,248], -"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,215], -"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,30], -"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,169], -"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,44], -"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,88], -"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,36], -"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,207], "boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,247], "boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,310], "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[6,0,4,20], @@ -217,10 +209,8 @@ var NAVTREEINDEX1 = "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[6,0,4,14], "boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,311], "boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,233], -"boxy_8php.html":[6,0,3,1,4,1,0], +"boxy_8php.html":[6,0,3,1,3,1,0], "cache_8php.html":[6,0,0,15], -"chanman_8php.html":[6,0,0,16], -"chanman_8php.html#a21ba9a5c961e866ff27aee3ee67bf99b":[6,0,0,16,0], "channel_8php.html":[6,0,1,11], "channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[6,0,1,11,0], "channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc":[6,0,1,11,1], @@ -249,5 +239,15 @@ var NAVTREEINDEX1 = "classApp.html#a1f60d19d47021629faac7a0a6d917e94":[5,0,7,55], "classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7":[5,0,7,29], "classApp.html#a230e975296cf164da2fee35ef720964f":[5,0,7,33], -"classApp.html#a244b2d53b21be269aad2269d23192f95":[5,0,7,73] +"classApp.html#a244b2d53b21be269aad2269d23192f95":[5,0,7,73], +"classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f":[5,0,7,72], +"classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a":[5,0,7,12], +"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,7,62], +"classApp.html#a344d2b7dc2f276648d521aee4da1731c":[5,0,7,23], +"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,7,50], +"classApp.html#a3d84af5e42082098672531cd1a618853":[5,0,7,22], +"classApp.html#a4659785d13e4bac0bed50dbb1b0d4299":[5,0,7,6], +"classApp.html#a4776d9322edea17fae56afa5d01a323e":[5,0,7,24], +"classApp.html#a487332f8de40414ca1a54a4265570b70":[5,0,7,81], +"classApp.html#a495ec082c2719314e536070ca1ce073d":[5,0,7,40] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 933ac1c64..f773cd83b 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,15 +1,5 @@ var NAVTREEINDEX2 = { -"classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f":[5,0,7,72], -"classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a":[5,0,7,12], -"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,7,62], -"classApp.html#a344d2b7dc2f276648d521aee4da1731c":[5,0,7,23], -"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,7,50], -"classApp.html#a3d84af5e42082098672531cd1a618853":[5,0,7,22], -"classApp.html#a4659785d13e4bac0bed50dbb1b0d4299":[5,0,7,6], -"classApp.html#a4776d9322edea17fae56afa5d01a323e":[5,0,7,24], -"classApp.html#a487332f8de40414ca1a54a4265570b70":[5,0,7,81], -"classApp.html#a495ec082c2719314e536070ca1ce073d":[5,0,7,40], "classApp.html#a4b67935096f66d1f14b657399a8461ac":[5,0,7,64], "classApp.html#a4bdd7bfed62f50515fce652127bf481b":[5,0,7,25], "classApp.html#a4c7cfc62d39508086cf300dc2e39c4df":[5,0,7,54], @@ -115,52 +105,56 @@ var NAVTREEINDEX2 = "classFriendicaSmartyEngine.html#ab7c305bd8c386c2944e4dc9136cea5b6":[5,0,19,0], "classFriendicaSmartyEngine.html#ad62f1181d2f02b54b46731ad2bd46db2":[5,0,19,3], "classItem.html":[5,0,20], -"classItem.html#a007424e3e3171dcfb4312a02161da6cd":[5,0,20,34], -"classItem.html#a078f95b4134ce3a1df344cf8d386f986":[5,0,20,37], -"classItem.html#a0c301aaed2b7d682728d18db3a22afa3":[5,0,20,8], -"classItem.html#a1a1e42877e6ac7af50286142ceb483d2":[5,0,20,39], -"classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2":[5,0,20,42], +"classItem.html#a007424e3e3171dcfb4312a02161da6cd":[5,0,20,37], +"classItem.html#a078f95b4134ce3a1df344cf8d386f986":[5,0,20,41], +"classItem.html#a0c301aaed2b7d682728d18db3a22afa3":[5,0,20,9], +"classItem.html#a1a1e42877e6ac7af50286142ceb483d2":[5,0,20,43], +"classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2":[5,0,20,46], +"classItem.html#a23d4057883f8ed888c0c2ff12d8aa5d0":[5,0,20,12], "classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2":[5,0,20,0], -"classItem.html#a2ce70ef63f9f4d86a09c351678806925":[5,0,20,24], -"classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf":[5,0,20,6], -"classItem.html#a428f448f89a8629055ea3294eb942aea":[5,0,20,16], -"classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8":[5,0,20,44], -"classItem.html#a4b92e3a9d6212c553aa2661489bd95d8":[5,0,20,15], -"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[5,0,20,20], -"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[5,0,20,40], -"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[5,0,20,43], -"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[5,0,20,45], -"classItem.html#a632185dd25c5caf277067c76230a4320":[5,0,20,4], -"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[5,0,20,12], -"classItem.html#a7f7bc059de377319282cb4ef4a828480":[5,0,20,41], -"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[5,0,20,31], +"classItem.html#a2ce70ef63f9f4d86a09c351678806925":[5,0,20,26], +"classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf":[5,0,20,7], +"classItem.html#a428f448f89a8629055ea3294eb942aea":[5,0,20,18], +"classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8":[5,0,20,48], +"classItem.html#a4b92e3a9d6212c553aa2661489bd95d8":[5,0,20,17], +"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[5,0,20,22], +"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[5,0,20,44], +"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[5,0,20,47], +"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[5,0,20,49], +"classItem.html#a632185dd25c5caf277067c76230a4320":[5,0,20,5], +"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[5,0,20,14], +"classItem.html#a7f7bc059de377319282cb4ef4a828480":[5,0,20,45], +"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[5,0,20,34], "classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[5,0,20,1], -"classItem.html#a904421c7a427411bb2ab473bca872f63":[5,0,20,7], -"classItem.html#a90743c8348b13213275c223bb9333aa0":[5,0,20,32], -"classItem.html#a9594df6014b0b6f45364ea7a34510130":[5,0,20,36], -"classItem.html#a97c7feeea7f26a73176cb19faa455e12":[5,0,20,22], -"classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7":[5,0,20,28], -"classItem.html#a9f2d219da712390f59012fc32a342074":[5,0,20,14], -"classItem.html#aa0ee775ec94abccec6c798428835d001":[5,0,20,5], -"classItem.html#aa1bd19fc8b5577078530265a7bf64123":[5,0,20,26], -"classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304":[5,0,20,33], -"classItem.html#aa452b5bcd8dea12119b09212c615cb41":[5,0,20,25], -"classItem.html#aa49e40f961dff66da32c5ae110e32993":[5,0,20,21], -"classItem.html#aa541bc4290e51bfd688d6921bebabc73":[5,0,20,13], -"classItem.html#aa8b1bbc4236890694635295e46d7fd72":[5,0,20,27], -"classItem.html#aabf87ded59c25b5fe2b2296678e70509":[5,0,20,23], -"classItem.html#aba23a0a9d89e316d2b343cc46d695d91":[5,0,20,17], +"classItem.html#a88a99e2d1245925867f249f543358e72":[5,0,20,39], +"classItem.html#a904421c7a427411bb2ab473bca872f63":[5,0,20,8], +"classItem.html#a90743c8348b13213275c223bb9333aa0":[5,0,20,35], +"classItem.html#a9594df6014b0b6f45364ea7a34510130":[5,0,20,40], +"classItem.html#a97c7feeea7f26a73176cb19faa455e12":[5,0,20,24], +"classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7":[5,0,20,31], +"classItem.html#a9f2d219da712390f59012fc32a342074":[5,0,20,16], +"classItem.html#aa0ee775ec94abccec6c798428835d001":[5,0,20,6], +"classItem.html#aa1bd19fc8b5577078530265a7bf64123":[5,0,20,28], +"classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304":[5,0,20,36], +"classItem.html#aa452b5bcd8dea12119b09212c615cb41":[5,0,20,27], +"classItem.html#aa49e40f961dff66da32c5ae110e32993":[5,0,20,23], +"classItem.html#aa541bc4290e51bfd688d6921bebabc73":[5,0,20,15], +"classItem.html#aa8b1bbc4236890694635295e46d7fd72":[5,0,20,29], +"classItem.html#aabf87ded59c25b5fe2b2296678e70509":[5,0,20,25], +"classItem.html#aba23a0a9d89e316d2b343cc46d695d91":[5,0,20,19], "classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8":[5,0,20,2], -"classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967":[5,0,20,19], -"classItem.html#ac0f27e58532612f6e7a54c8a621b9b92":[5,0,20,11], -"classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c":[5,0,20,10], +"classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967":[5,0,20,21], +"classItem.html#ac09a4728d37b7783714243f7f8167214":[5,0,20,30], +"classItem.html#ac0f27e58532612f6e7a54c8a621b9b92":[5,0,20,13], +"classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c":[5,0,20,11], "classItem.html#aca1e66988ed00cd627b2a359b72cd0ae":[5,0,20,3], -"classItem.html#acc32426c0f465391be8a99ad810c7b8e":[5,0,20,30], -"classItem.html#ad3638f93065693c1f69eb349feb1b7aa":[5,0,20,9], -"classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8":[5,0,20,18], -"classItem.html#aec24e233f9098f902b1e57e60dcb2019":[5,0,20,35], -"classItem.html#af1b73df9b7c4b927e26b7e243b491f42":[5,0,20,29], -"classItem.html#afa54851df82962c7c42dea3cc9f5c92c":[5,0,20,38], +"classItem.html#acc32426c0f465391be8a99ad810c7b8e":[5,0,20,33], +"classItem.html#ad3638f93065693c1f69eb349feb1b7aa":[5,0,20,10], +"classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8":[5,0,20,20], +"classItem.html#ae0c48b2fed5558642549cabd547fc4f3":[5,0,20,4], +"classItem.html#aec24e233f9098f902b1e57e60dcb2019":[5,0,20,38], +"classItem.html#af1b73df9b7c4b927e26b7e243b491f42":[5,0,20,32], +"classItem.html#afa54851df82962c7c42dea3cc9f5c92c":[5,0,20,42], "classProtoDriver.html":[5,0,25], "classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a":[5,0,25,0], "classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d":[5,0,25,2], @@ -249,5 +243,11 @@ var NAVTREEINDEX2 = "classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b":[5,0,26,13], "classTemplate.html#a285b5b2007dbbf733476273df3fed4ef":[5,0,26,12], "classTemplate.html#a317d535946dc065c35dd5cd38380e6c6":[5,0,26,22], -"classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[5,0,26,2] +"classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[5,0,26,2], +"classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[5,0,26,3], +"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[5,0,26,6], +"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[5,0,26,21], +"classTemplate.html#a6f0efc256688c36110180b501067ff11":[5,0,26,23], +"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[5,0,26,15], +"classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677":[5,0,26,9] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index 3efe3732e..40d33ddf3 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,11 +1,5 @@ var NAVTREEINDEX3 = { -"classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[5,0,26,3], -"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[5,0,26,6], -"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[5,0,26,21], -"classTemplate.html#a6f0efc256688c36110180b501067ff11":[5,0,26,23], -"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[5,0,26,15], -"classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677":[5,0,26,9], "classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1":[5,0,26,19], "classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29":[5,0,26,4], "classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee":[5,0,26,10], @@ -132,23 +126,23 @@ var NAVTREEINDEX3 = "classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb":[5,0,24,9], "classphoto__imagick.html#afd49d64751ee3a298eac0c0ce0ba0207":[5,0,24,1], "classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393":[5,0,24,3], -"cli__startup_8php.html":[6,0,0,18], -"cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b":[6,0,0,18,0], -"cli__suggest_8php.html":[6,0,0,19], -"cli__suggest_8php.html#a8f3a60fc96f4bec7d3837c4efc7725f2":[6,0,0,19,0], +"cli__startup_8php.html":[6,0,0,17], +"cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b":[6,0,0,17,0], +"cli__suggest_8php.html":[6,0,0,18], +"cli__suggest_8php.html#a8f3a60fc96f4bec7d3837c4efc7725f2":[6,0,0,18,0], "cloud_8php.html":[6,0,1,15], "cloud_8php.html#ad2e96e917852f27dedfc263d37e13756":[6,0,1,15,0], -"comanche_8php.html":[6,0,0,20], -"comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe":[6,0,0,20,5], -"comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922":[6,0,0,20,3], -"comanche_8php.html#a3d11417d2d846dbe72638a556529ff8f":[6,0,0,20,9], -"comanche_8php.html#a5718daeda40bf835345fe061e8808cdf":[6,0,0,20,4], -"comanche_8php.html#a5a7ab801717d38e91ac910b933973887":[6,0,0,20,0], -"comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f":[6,0,0,20,7], -"comanche_8php.html#ad5a44e42231759aba1dda49e0490501e":[6,0,0,20,2], -"comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a":[6,0,0,20,6], -"comanche_8php.html#aed39ecad69234f3ddf61f0dedb49a58e":[6,0,0,20,1], -"comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e":[6,0,0,20,8], +"comanche_8php.html":[6,0,0,19], +"comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe":[6,0,0,19,5], +"comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922":[6,0,0,19,3], +"comanche_8php.html#a3d11417d2d846dbe72638a556529ff8f":[6,0,0,19,9], +"comanche_8php.html#a5718daeda40bf835345fe061e8808cdf":[6,0,0,19,4], +"comanche_8php.html#a5a7ab801717d38e91ac910b933973887":[6,0,0,19,0], +"comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f":[6,0,0,19,7], +"comanche_8php.html#ad5a44e42231759aba1dda49e0490501e":[6,0,0,19,2], +"comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a":[6,0,0,19,6], +"comanche_8php.html#aed39ecad69234f3ddf61f0dedb49a58e":[6,0,0,19,1], +"comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e":[6,0,0,19,8], "common_8php.html":[6,0,1,16], "common_8php.html#ab63408f39abef7a6915186e8dabc5a96":[6,0,1,16,0], "common_8php.html#aca62f113655809f41f49042ce9b123c2":[6,0,1,16,1], @@ -166,88 +160,94 @@ var NAVTREEINDEX3 = "connedit_8php.html#a4da871e075597a09a8b374b9171dd92e":[6,0,1,19,2], "connedit_8php.html#a707ea7e63cf9674025b1d6b081ae74f5":[6,0,1,19,0], "connedit_8php.html#a795acb3d9d841f55c255d7611681ab67":[6,0,1,19,1], -"contact__selectors_8php.html":[6,0,0,23], -"contact__selectors_8php.html#a2c743d2eb526eb758d943a1490162d75":[6,0,0,23,1], -"contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f":[6,0,0,23,0], -"contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be":[6,0,0,23,2], -"contact__widgets_8php.html":[6,0,0,24], -"contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353":[6,0,0,24,0], -"contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b":[6,0,0,24,2], -"contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65":[6,0,0,24,1], -"contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6":[6,0,0,24,3], +"contact__selectors_8php.html":[6,0,0,22], +"contact__selectors_8php.html#a2c743d2eb526eb758d943a1490162d75":[6,0,0,22,1], +"contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f":[6,0,0,22,0], +"contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be":[6,0,0,22,2], +"contact__widgets_8php.html":[6,0,0,23], +"contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353":[6,0,0,23,0], +"contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b":[6,0,0,23,2], +"contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65":[6,0,0,23,1], +"contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6":[6,0,0,23,3], "contactgroup_8php.html":[6,0,1,20], "contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3":[6,0,1,20,0], -"conversation_8php.html":[6,0,0,25], -"conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3":[6,0,0,25,7], -"conversation_8php.html#a0ee05f15255fb1cc3d89f30bc378a654":[6,0,0,25,9], -"conversation_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273":[6,0,0,25,16], -"conversation_8php.html#a2a7d541854bba755eb8ada59af7dcb1a":[6,0,0,25,22], -"conversation_8php.html#a3d8e30cc94f9a175054c021305d3aca3":[6,0,0,25,6], -"conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2":[6,0,0,25,17], -"conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c":[6,0,0,25,15], -"conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3":[6,0,0,25,23], -"conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67":[6,0,0,25,8], -"conversation_8php.html#a96b34b9d64d13c543e8163e52f5ce8c4":[6,0,0,25,14], -"conversation_8php.html#a9bd7f9fb6678736c581bcba3b17f471c":[6,0,0,25,13], -"conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0":[6,0,0,25,21], -"conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11":[6,0,0,25,19], -"conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3":[6,0,0,25,10], -"conversation_8php.html#ab2383dff4f823e580399ff469d90ab19":[6,0,0,25,4], -"conversation_8php.html#abed85a41f1160598de880b84021c9cf7":[6,0,0,25,2], -"conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d":[6,0,0,25,20], -"conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b":[6,0,0,25,0], -"conversation_8php.html#ad470fc7766f0db66d138fa1916c7a8b7":[6,0,0,25,1], -"conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533":[6,0,0,25,11], -"conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6":[6,0,0,25,5], -"conversation_8php.html#ae996eb116d397a2c6396c312d7b98664":[6,0,0,25,18], -"conversation_8php.html#afe5b2f38d8b803edb0d7ec5fa2868db0":[6,0,0,25,12], -"conversation_8php.html#affea1afb3f32ca41e966c8ddb4204d81":[6,0,0,25,3], -"cronhooks_8php.html":[6,0,0,27], -"cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca":[6,0,0,27,0], -"crypto_8php.html":[6,0,0,28], -"crypto_8php.html#a0781202b0a43b82426929cc87c2fa2b5":[6,0,0,28,5], -"crypto_8php.html#a0e941b6b18ff895d1a2448741abf2ef2":[6,0,0,28,17], -"crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286":[6,0,0,28,2], -"crypto_8php.html#a2a3fae7caca27f86d158eeaf69b6f287":[6,0,0,28,19], -"crypto_8php.html#a32fc08d57a5694f94d8543ecbb03323c":[6,0,0,28,4], -"crypto_8php.html#a35bc357c93f4ddc67ef377620b0349e8":[6,0,0,28,12], -"crypto_8php.html#a4d15d19b446dbf47804675df7c85e2a9":[6,0,0,28,14], -"crypto_8php.html#a573f02517abe4ac9241268263063b2a0":[6,0,0,28,9], -"crypto_8php.html#a5c61821d205f95f127114159cbffa764":[6,0,0,28,1], -"crypto_8php.html#a630e1574554f34e7c38511585d9e71a2":[6,0,0,28,6], -"crypto_8php.html#a7427a18417341aa35e2207bfa205e432":[6,0,0,28,18], -"crypto_8php.html#a798368843cdd9bb08386b48e53e29e8c":[6,0,0,28,11], -"crypto_8php.html#a7f7e650aaeaa3832580a73eb00966b26":[6,0,0,28,22], -"crypto_8php.html#a890b443f80f0968fb9eabd93fc99dbb5":[6,0,0,28,13], -"crypto_8php.html#a9191447cc46f0b4eaba3273e313994d5":[6,0,0,28,23], -"crypto_8php.html#a920e5f222d0020f47556033d8b2b6552":[6,0,0,28,20], -"crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a":[6,0,0,28,10], -"crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96":[6,0,0,28,21], -"crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9":[6,0,0,28,0], -"crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85":[6,0,0,28,16], -"crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914":[6,0,0,28,3], -"crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec":[6,0,0,28,15], -"crypto_8php.html#ae5af17db1cb5d7c91d486e1264079839":[6,0,0,28,7], -"crypto_8php.html#af8bbdeaf4abed7b40365d301e6013c85":[6,0,0,28,8], -"dark_8php.html":[6,0,3,1,4,1,2], +"conversation_8php.html":[6,0,0,24], +"conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3":[6,0,0,24,7], +"conversation_8php.html#a0ee05f15255fb1cc3d89f30bc378a654":[6,0,0,24,9], +"conversation_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273":[6,0,0,24,16], +"conversation_8php.html#a2a7d541854bba755eb8ada59af7dcb1a":[6,0,0,24,22], +"conversation_8php.html#a3d8e30cc94f9a175054c021305d3aca3":[6,0,0,24,6], +"conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2":[6,0,0,24,17], +"conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c":[6,0,0,24,15], +"conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3":[6,0,0,24,23], +"conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67":[6,0,0,24,8], +"conversation_8php.html#a96b34b9d64d13c543e8163e52f5ce8c4":[6,0,0,24,14], +"conversation_8php.html#a9bd7f9fb6678736c581bcba3b17f471c":[6,0,0,24,13], +"conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0":[6,0,0,24,21], +"conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11":[6,0,0,24,19], +"conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3":[6,0,0,24,10], +"conversation_8php.html#ab2383dff4f823e580399ff469d90ab19":[6,0,0,24,4], +"conversation_8php.html#abed85a41f1160598de880b84021c9cf7":[6,0,0,24,2], +"conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d":[6,0,0,24,20], +"conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b":[6,0,0,24,0], +"conversation_8php.html#ad470fc7766f0db66d138fa1916c7a8b7":[6,0,0,24,1], +"conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533":[6,0,0,24,11], +"conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6":[6,0,0,24,5], +"conversation_8php.html#ae996eb116d397a2c6396c312d7b98664":[6,0,0,24,18], +"conversation_8php.html#afe5b2f38d8b803edb0d7ec5fa2868db0":[6,0,0,24,12], +"conversation_8php.html#affea1afb3f32ca41e966c8ddb4204d81":[6,0,0,24,3], +"cronhooks_8php.html":[6,0,0,26], +"cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca":[6,0,0,26,0], +"crypto_8php.html":[6,0,0,27], +"crypto_8php.html#a0781202b0a43b82426929cc87c2fa2b5":[6,0,0,27,5], +"crypto_8php.html#a0e941b6b18ff895d1a2448741abf2ef2":[6,0,0,27,17], +"crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286":[6,0,0,27,2], +"crypto_8php.html#a2a3fae7caca27f86d158eeaf69b6f287":[6,0,0,27,19], +"crypto_8php.html#a32fc08d57a5694f94d8543ecbb03323c":[6,0,0,27,4], +"crypto_8php.html#a35bc357c93f4ddc67ef377620b0349e8":[6,0,0,27,12], +"crypto_8php.html#a4d15d19b446dbf47804675df7c85e2a9":[6,0,0,27,14], +"crypto_8php.html#a573f02517abe4ac9241268263063b2a0":[6,0,0,27,9], +"crypto_8php.html#a5c61821d205f95f127114159cbffa764":[6,0,0,27,1], +"crypto_8php.html#a630e1574554f34e7c38511585d9e71a2":[6,0,0,27,6], +"crypto_8php.html#a7427a18417341aa35e2207bfa205e432":[6,0,0,27,18], +"crypto_8php.html#a798368843cdd9bb08386b48e53e29e8c":[6,0,0,27,11], +"crypto_8php.html#a7f7e650aaeaa3832580a73eb00966b26":[6,0,0,27,22], +"crypto_8php.html#a890b443f80f0968fb9eabd93fc99dbb5":[6,0,0,27,13], +"crypto_8php.html#a9191447cc46f0b4eaba3273e313994d5":[6,0,0,27,23], +"crypto_8php.html#a920e5f222d0020f47556033d8b2b6552":[6,0,0,27,20], +"crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a":[6,0,0,27,10], +"crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96":[6,0,0,27,21], +"crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9":[6,0,0,27,0], +"crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85":[6,0,0,27,16], +"crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914":[6,0,0,27,3], +"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], "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,29], -"datetime_8php.html#a03900dcf0f9e3c58793a031673a70326":[6,0,0,29,6], -"datetime_8php.html#a3f239f94e23335d860b148958d87a093":[6,0,0,29,11], -"datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8":[6,0,0,29,5], -"datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f":[6,0,0,29,10], -"datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3":[6,0,0,29,4], -"datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766":[6,0,0,29,2], -"datetime_8php.html#a7df24d72ea05922d3127363e2295174c":[6,0,0,29,7], -"datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82":[6,0,0,29,9], -"datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865":[6,0,0,29,12], -"datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f":[6,0,0,29,14], -"datetime_8php.html#aba971b67f17fecf050813f1eba72367f":[6,0,0,29,8], -"datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df":[6,0,0,29,0], -"datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[6,0,0,29,3], -"datetime_8php.html#aea356409ba69f9de412298c998595dd2":[6,0,0,29,1], -"datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826":[6,0,0,29,13], -"db__update_8php.html":[6,0,2,1] +"datetime_8php.html":[6,0,0,28], +"datetime_8php.html#a03900dcf0f9e3c58793a031673a70326":[6,0,0,28,6], +"datetime_8php.html#a3f239f94e23335d860b148958d87a093":[6,0,0,28,11], +"datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8":[6,0,0,28,5], +"datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f":[6,0,0,28,10], +"datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3":[6,0,0,28,4], +"datetime_8php.html#a77bb385ae8a9e7ca663309c102c0d766":[6,0,0,28,2], +"datetime_8php.html#a7df24d72ea05922d3127363e2295174c":[6,0,0,28,7], +"datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82":[6,0,0,28,9], +"datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865":[6,0,0,28,12], +"datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f":[6,0,0,28,14], +"datetime_8php.html#aba971b67f17fecf050813f1eba72367f":[6,0,0,28,8], +"datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df":[6,0,0,28,0], +"datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[6,0,0,28,3], +"datetime_8php.html#aea356409ba69f9de412298c998595dd2":[6,0,0,28,1], +"datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826":[6,0,0,28,13], +"db__update_8php.html":[6,0,2,1], +"dba__driver_8php.html":[6,0,0,0,0], +"dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67":[6,0,0,0,0,2], +"dba__driver_8php.html#a2a38996670c2936b5769270c49c57593":[6,0,0,0,0,11], +"dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f":[6,0,0,0,0,17], +"dba__driver_8php.html#a2c8a72ec73f39b17a167c90737693f78":[6,0,0,0,0,12], +"dba__driver_8php.html#a30e9a643be804e905f5614a3279d2645":[6,0,0,0,0,5] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index 41a1f286a..1f732bef3 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,11 +1,5 @@ var NAVTREEINDEX4 = { -"dba__driver_8php.html":[6,0,0,0,0], -"dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67":[6,0,0,0,0,2], -"dba__driver_8php.html#a2a38996670c2936b5769270c49c57593":[6,0,0,0,0,11], -"dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f":[6,0,0,0,0,17], -"dba__driver_8php.html#a2c8a72ec73f39b17a167c90737693f78":[6,0,0,0,0,12], -"dba__driver_8php.html#a30e9a643be804e905f5614a3279d2645":[6,0,0,0,0,5], "dba__driver_8php.html#a55bf30d8176967e682656b5be4ad9249":[6,0,0,0,0,16], "dba__driver_8php.html#a5df8499634c47b30191f34069d7b98c0":[6,0,0,0,0,6], "dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4":[6,0,0,0,0,8], @@ -23,78 +17,73 @@ var NAVTREEINDEX4 = "dba__postgres_8php.html":[6,0,0,0,3], "delegate_8php.html":[6,0,1,21], "delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[6,0,1,21,0], -"deliver_8php.html":[6,0,0,30], -"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[6,0,0,30,0], -"diaspora_8php.html":[6,0,0,31], -"diaspora_8php.html#a006731620a5242d410358b32678e48e3":[6,0,0,31,0], -"diaspora_8php.html#a0b3628a5e53332c3d3196b689fe2b94d":[6,0,0,31,24], -"diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829":[6,0,0,31,1], -"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#a938c7ee808d38725c0988fa6006805b9":[6,0,0,31,20], -"diaspora_8php.html#a9bf7ef4094e0e14f6e2b7fe76ab7ad2e":[6,0,0,31,32], -"diaspora_8php.html#aa34d2748bb97e9e193cacd572f335055":[6,0,0,31,28], -"diaspora_8php.html#aa704d6aa2ac77be345c0f501168e6e56":[6,0,0,31,29], -"diaspora_8php.html#aa8e551a53fcce34be3942d0c3e20d1f4":[6,0,0,31,6], -"diaspora_8php.html#aade0c165fcdded71352c7a67bf6ce37b":[6,0,0,31,31], -"diaspora_8php.html#ab736d6f32b5de31c97cb579fc730e200":[6,0,0,31,30], -"diaspora_8php.html#ab99505944728d46585b8312989de533d":[6,0,0,31,5], -"diaspora_8php.html#ac1ab782a34552a7c6b4dc961754ed598":[6,0,0,31,18], -"diaspora_8php.html#ac9e41e46626dc608204bf4b5e16e62d7":[6,0,0,31,33], -"diaspora_8php.html#ad9985cc4214bdfc14878785c838c8690":[6,0,0,31,9], -"diaspora_8php.html#adef30b6fac948baedcc7194d5d155b5f":[6,0,0,31,2], -"diaspora_8php.html#ae6f52efd81fe515cd9912bc8293abf5b":[6,0,0,31,22], -"diaspora_8php.html#aeb2bb78f620dbf51d9335e6eb7444f2c":[6,0,0,31,23], -"diaspora_8php.html#af4698b165766f83d89ec1ea964bc92cc":[6,0,0,31,21], -"dimport_8php.html":[6,0,0,32], -"dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1":[6,0,0,32,0], -"dir_0262a6a8df56a167e3761b6e5a54bb1c.html":[6,0,3,1,6], -"dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[6,0,3,1,4,0], +"deliver_8php.html":[6,0,0,29], +"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[6,0,0,29,0], +"diaspora_8php.html":[6,0,0,30], +"diaspora_8php.html#a006731620a5242d410358b32678e48e3":[6,0,0,30,0], +"diaspora_8php.html#a0b3628a5e53332c3d3196b689fe2b94d":[6,0,0,30,24], +"diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829":[6,0,0,30,1], +"diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605":[6,0,0,30,15], +"diaspora_8php.html#a1704748aa2384c73e43f10e71defd31a":[6,0,0,30,25], +"diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31":[6,0,0,30,14], +"diaspora_8php.html#a2bf43f6b5890897f425ef4325d34b007":[6,0,0,30,19], +"diaspora_8php.html#a33ae0c4606a7df4d801c05507d87f668":[6,0,0,30,26], +"diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b":[6,0,0,30,12], +"diaspora_8php.html#a586d5a3ba92d35cee14f879f290072aa":[6,0,0,30,17], +"diaspora_8php.html#a5d57518545baa31cf8a85a937a267681":[6,0,0,30,10], +"diaspora_8php.html#a5ed66b910d7b0284f9b3ee04e72306ff":[6,0,0,30,7], +"diaspora_8php.html#a69f250b078a46e405647428ec3399a16":[6,0,0,30,27], +"diaspora_8php.html#a6f0a67b6b17503c125af32763be931b7":[6,0,0,30,4], +"diaspora_8php.html#a71fe9bb66626b4197ae018a230778bb2":[6,0,0,30,13], +"diaspora_8php.html#a7cff2f8f11044c1b3a360f20e1bbee46":[6,0,0,30,11], +"diaspora_8php.html#a849754ec369e1a60fadae5c14584ca36":[6,0,0,30,3], +"diaspora_8php.html#a858f70153c384f8778082cf7843a19da":[6,0,0,30,8], +"diaspora_8php.html#a900abf51398b2ef26cd2cd31c52f1b0f":[6,0,0,30,16], +"diaspora_8php.html#a938c7ee808d38725c0988fa6006805b9":[6,0,0,30,20], +"diaspora_8php.html#a9bf7ef4094e0e14f6e2b7fe76ab7ad2e":[6,0,0,30,32], +"diaspora_8php.html#aa34d2748bb97e9e193cacd572f335055":[6,0,0,30,28], +"diaspora_8php.html#aa704d6aa2ac77be345c0f501168e6e56":[6,0,0,30,29], +"diaspora_8php.html#aa8e551a53fcce34be3942d0c3e20d1f4":[6,0,0,30,6], +"diaspora_8php.html#aade0c165fcdded71352c7a67bf6ce37b":[6,0,0,30,31], +"diaspora_8php.html#ab736d6f32b5de31c97cb579fc730e200":[6,0,0,30,30], +"diaspora_8php.html#ab99505944728d46585b8312989de533d":[6,0,0,30,5], +"diaspora_8php.html#ac1ab782a34552a7c6b4dc961754ed598":[6,0,0,30,18], +"diaspora_8php.html#ac9e41e46626dc608204bf4b5e16e62d7":[6,0,0,30,33], +"diaspora_8php.html#ad9985cc4214bdfc14878785c838c8690":[6,0,0,30,9], +"diaspora_8php.html#adef30b6fac948baedcc7194d5d155b5f":[6,0,0,30,2], +"diaspora_8php.html#ae6f52efd81fe515cd9912bc8293abf5b":[6,0,0,30,22], +"diaspora_8php.html#aeb2bb78f620dbf51d9335e6eb7444f2c":[6,0,0,30,23], +"diaspora_8php.html#af4698b165766f83d89ec1ea964bc92cc":[6,0,0,30,21], +"dimport_8php.html":[6,0,0,31], +"dimport_8php.html#a581f040717941ce3e1868b0b5dceefd1":[6,0,0,31,0], +"dir_0262a6a8df56a167e3761b6e5a54bb1c.html":[6,0,3,1,5], +"dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[6,0,3,1,3,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_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_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html":[6,0,3,1,3,1], +"dir_4acb285a1960a920438b718da0958cf4.html":[6,0,3,1,4], +"dir_55dbaf9b7b53c4fc605c9011743a7353.html":[6,0,3,1,3], +"dir_65522070e0a83623cefc01ebe26a83e3.html":[6,0,3,1,4,0], +"dir_6e52a2a2cd27c08b7df5e5cdb216bd77.html":[6,0,3,1,1], "dir_7edbbd0f8c514efef79942dcdc21f738.html":[6,0,0,1], "dir_817f6d302394b98e59575acdb59998bc.html":[6,0,3,0], "dir_8543001e5d25368a6edede3e63efb554.html":[6,0,3,1], -"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,33], -"dir__fns_8php.html#a2f7d74bb2aea8bcd2537aee5c6708a16":[6,0,0,33,0], -"dir__fns_8php.html#a44062d4b471d1e83f92f6c184585aa13":[6,0,0,33,6], -"dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d":[6,0,0,33,3], -"dir__fns_8php.html#aa666e7df6ca8c332f4081c9b66b4bdf6":[6,0,0,33,5], -"dir__fns_8php.html#acd37b17dce3bdec6d5a6344a20598c1e":[6,0,0,33,4], -"dir__fns_8php.html#acf621621e929d49441da30aad76a58cf":[6,0,0,33,1], -"dir__fns_8php.html#ae56881d69bb6f8e828c9e35454386774":[6,0,0,33,2], -"dir_a8a0005c2b8590c535262d232c22afab.html":[6,0,3,1,1,1,0,0], +"dir_887fdc94312ba7b057b6bfe7fdd27ea5.html":[6,0,3,1,2,0], +"dir_8e58ba5e98ac07e59ee15ca7486c9950.html":[6,0,3,1,2], +"dir_9ef82eb3846cd201470898c3b6ef38cf.html":[6,0,3,1,1,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], +"dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d":[6,0,0,32,3], +"dir__fns_8php.html#aa666e7df6ca8c332f4081c9b66b4bdf6":[6,0,0,32,5], +"dir__fns_8php.html#acd37b17dce3bdec6d5a6344a20598c1e":[6,0,0,32,4], +"dir__fns_8php.html#acf621621e929d49441da30aad76a58cf":[6,0,0,32,1], +"dir__fns_8php.html#ae56881d69bb6f8e828c9e35454386774":[6,0,0,32,2], "dir_aae29906d7bfc07d076125f669c8352e.html":[6,0,0,2], -"dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html":[6,0,3,1,6,0], +"dir_ac4f5165c8d71ebb1a1a0a168a48f3f7.html":[6,0,3,1,5,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], "dir_d41ce877eb409a4791b288730010abe2.html":[6,0,1], "dir_d44c64559bbebec7f509842c48db8b23.html":[6,0,0], @@ -132,25 +121,25 @@ var NAVTREEINDEX4 = "editwebpage_8php.html":[6,0,1,28], "editwebpage_8php.html#a375e945255fad79a71036528f7480650":[6,0,1,28,0], "editwebpage_8php.html#a94109f9c796fbe92508bf9574e35d19f":[6,0,1,28,1], -"enotify_8php.html":[6,0,0,35], -"enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc":[6,0,0,35,1], -"event_8php.html":[6,0,0,36], -"event_8php.html#a018ea4484910a873a7c1eaa126de9b1a":[6,0,0,36,8], -"event_8php.html#a180cccd63c2a2f00ff432b03113531f3":[6,0,0,36,0], -"event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279":[6,0,0,36,1], -"event_8php.html#a2ac9f1b08de03250ecd794f705781d17":[6,0,0,36,7], -"event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850":[6,0,0,36,2], -"event_8php.html#a7378e839ac3de9d55579eb3ec48eaf92":[6,0,0,36,5], -"event_8php.html#abb74206cf42d694307c3d7abb7af9869":[6,0,0,36,6], -"event_8php.html#ac9f206819186b65952ac1869f0da8c6e":[6,0,0,36,3], -"event_8php.html#af5ac41e7ea3f7131088fe6333fd2846c":[6,0,0,36,4], +"enotify_8php.html":[6,0,0,34], +"enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc":[6,0,0,34,1], +"event_8php.html":[6,0,0,35], +"event_8php.html#a018ea4484910a873a7c1eaa126de9b1a":[6,0,0,35,8], +"event_8php.html#a180cccd63c2a2f00ff432b03113531f3":[6,0,0,35,0], +"event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279":[6,0,0,35,1], +"event_8php.html#a2ac9f1b08de03250ecd794f705781d17":[6,0,0,35,7], +"event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850":[6,0,0,35,2], +"event_8php.html#a7378e839ac3de9d55579eb3ec48eaf92":[6,0,0,35,5], +"event_8php.html#abb74206cf42d694307c3d7abb7af9869":[6,0,0,35,6], +"event_8php.html#ac9f206819186b65952ac1869f0da8c6e":[6,0,0,35,3], +"event_8php.html#af5ac41e7ea3f7131088fe6333fd2846c":[6,0,0,35,4], "events_8php.html":[6,0,1,29], "events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[6,0,1,29,0], "events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[6,0,1,29,1], -"expire_8php.html":[6,0,0,37], -"expire_8php.html#a444e45c9b67727b27db4c779fd51a298":[6,0,0,37,0], -"externals_8php.html":[6,0,0,38], -"externals_8php.html#a4df44079e6f915286088b7a0d44db926":[6,0,0,38,0], +"expire_8php.html":[6,0,0,36], +"expire_8php.html#a444e45c9b67727b27db4c779fd51a298":[6,0,0,36,0], +"externals_8php.html":[6,0,0,37], +"externals_8php.html#a4df44079e6f915286088b7a0d44db926":[6,0,0,37,0], "extract_8php.html":[6,0,2,3], "extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44":[6,0,2,3,3], "extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634":[6,0,2,3,2], @@ -158,9 +147,9 @@ var NAVTREEINDEX4 = "extract_8php.html#a9590b15215a21e9b42eb546aeef79704":[6,0,2,3,1], "fbrowser_8php.html":[6,0,1,30], "fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[6,0,1,30,0], -"features_8php.html":[6,0,0,39], -"features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0":[6,0,0,39,0], -"features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c":[6,0,0,39,1], +"features_8php.html":[6,0,0,38], +"features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0":[6,0,0,38,0], +"features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c":[6,0,0,38,1], "feed_8php.html":[6,0,1,31], "feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[6,0,1,31,0], "filer_8php.html":[6,0,1,32], @@ -219,8 +208,8 @@ var NAVTREEINDEX4 = "functions_0x76.html":[5,3,0,20], "functions_8php.html":[6,0,3,1,0,1,1], "functions_8php.html#adefe514c95680928b3aae250cbc3c663":[6,0,3,1,0,1,1,0], -"functions_func.html":[5,3,1], "functions_func.html":[5,3,1,0], +"functions_func.html":[5,3,1], "functions_func_0x61.html":[5,3,1,1], "functions_func_0x62.html":[5,3,1,2], "functions_func_0x63.html":[5,3,1,3], @@ -249,5 +238,16 @@ var NAVTREEINDEX4 = "globals_0x63.html":[6,1,0,4], "globals_0x64.html":[6,1,0,5], "globals_0x65.html":[6,1,0,6], -"globals_0x66.html":[6,1,0,7] +"globals_0x66.html":[6,1,0,7], +"globals_0x67.html":[6,1,0,8], +"globals_0x68.html":[6,1,0,9], +"globals_0x69.html":[6,1,0,10], +"globals_0x6a.html":[6,1,0,11], +"globals_0x6b.html":[6,1,0,12], +"globals_0x6c.html":[6,1,0,13], +"globals_0x6d.html":[6,1,0,14], +"globals_0x6e.html":[6,1,0,15], +"globals_0x6f.html":[6,1,0,16], +"globals_0x70.html":[6,1,0,17], +"globals_0x71.html":[6,1,0,18] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index 0dfd8348f..c58c64a0d 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,16 +1,5 @@ var NAVTREEINDEX5 = { -"globals_0x67.html":[6,1,0,8], -"globals_0x68.html":[6,1,0,9], -"globals_0x69.html":[6,1,0,10], -"globals_0x6a.html":[6,1,0,11], -"globals_0x6b.html":[6,1,0,12], -"globals_0x6c.html":[6,1,0,13], -"globals_0x6d.html":[6,1,0,14], -"globals_0x6e.html":[6,1,0,15], -"globals_0x6f.html":[6,1,0,16], -"globals_0x70.html":[6,1,0,17], -"globals_0x71.html":[6,1,0,18], "globals_0x72.html":[6,1,0,19], "globals_0x73.html":[6,1,0,20], "globals_0x74.html":[6,1,0,21], @@ -19,8 +8,8 @@ var NAVTREEINDEX5 = "globals_0x77.html":[6,1,0,24], "globals_0x78.html":[6,1,0,25], "globals_0x7a.html":[6,1,0,26], -"globals_func.html":[6,1,1], "globals_func.html":[6,1,1,0], +"globals_func.html":[6,1,1], "globals_func_0x61.html":[6,1,1,1], "globals_func_0x62.html":[6,1,1,2], "globals_func_0x63.html":[6,1,1,3], @@ -46,8 +35,8 @@ var NAVTREEINDEX5 = "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], "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], @@ -70,8 +59,8 @@ var NAVTREEINDEX5 = "globals_vars_0x77.html":[6,1,2,20], "globals_vars_0x78.html":[6,1,2,21], "globals_vars_0x7a.html":[6,1,2,22], -"gprobe_8php.html":[6,0,0,41], -"gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[6,0,0,41,0], +"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], "hcard_8php.html":[6,0,1,38], "hcard_8php.html#a3663012f1549849af88aba2bb87388e3":[6,0,1,38,0], @@ -80,65 +69,65 @@ var NAVTREEINDEX5 = "help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[6,0,1,39,1], "help_8php.html#af055e15f600ffa6fbca9386fdf715224":[6,0,1,39,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], +"hivenet_2php_2style_8php.html":[6,0,3,1,1,0,0], +"hivenet_2php_2theme_8php.html":[6,0,3,1,1,0,1], +"hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29":[6,0,3,1,1,0,1,0], "home_8php.html":[6,0,1,40], -"home_8php.html#aa1cf697851a646755baf537f75334c46":[6,0,1,40,0], +"home_8php.html#a6e3dbf78f4ed74ab2577de221190b33f":[6,0,1,40,0], "home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[6,0,1,40,1], "hostxrd_8php.html":[6,0,1,41], "hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[6,0,1,41,0], -"html2bbcode_8php.html":[6,0,0,43], -"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[6,0,0,43,3], -"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[6,0,0,43,1], -"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[6,0,0,43,0], -"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[6,0,0,43,2], -"html2plain_8php.html":[6,0,0,44], -"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[6,0,0,44,0], -"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[6,0,0,44,3], -"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[6,0,0,44,2], -"html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[6,0,0,44,1], -"hubloc_8php.html":[6,0,0,45], -"hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea":[6,0,0,45,3], -"hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b":[6,0,0,45,5], -"hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002":[6,0,0,45,2], -"hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d":[6,0,0,45,0], -"hubloc_8php.html#aebd244b4616ded022cbbee5e82926951":[6,0,0,45,1], -"hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea":[6,0,0,45,4], -"identity_8php.html":[6,0,0,46], -"identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[6,0,0,46,3], -"identity_8php.html#a224710dfb7465b706c91134247c20afa":[6,0,0,46,12], -"identity_8php.html#a293f416ce9050220b183e08ff5890216":[6,0,0,46,6], -"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[6,0,0,46,18], -"identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe":[6,0,0,46,23], -"identity_8php.html#a332df795f684788002f5a6424abacfd7":[6,0,0,46,11], -"identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[6,0,0,46,2], -"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[6,0,0,46,27], -"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[6,0,0,46,26], -"identity_8php.html#a47d6f53216f23a3484061793bef29854":[6,0,0,46,28], -"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[6,0,0,46,9], -"identity_8php.html#a4e996e44b50330098a04b467367a559f":[6,0,0,46,21], -"identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21":[6,0,0,46,13], -"identity_8php.html#a5650319c799de09d1b6d1076b6f839a4":[6,0,0,46,24], -"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[6,0,0,46,31], -"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[6,0,0,46,32], -"identity_8php.html#a77d2237f1846964634b1c99089c27c7d":[6,0,0,46,1], -"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[6,0,0,46,29], -"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[6,0,0,46,20], -"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[6,0,0,46,10], -"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[6,0,0,46,22], -"identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[6,0,0,46,0], -"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[6,0,0,46,15], -"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[6,0,0,46,14], -"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[6,0,0,46,7], -"identity_8php.html#ac73b3e13778c564c877554517a7f51ba":[6,0,0,46,5], -"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[6,0,0,46,17], -"identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[6,0,0,46,4], -"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[6,0,0,46,25], -"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[6,0,0,46,19], -"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[6,0,0,46,8], -"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[6,0,0,46,30], -"identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249":[6,0,0,46,16], +"html2bbcode_8php.html":[6,0,0,42], +"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[6,0,0,42,3], +"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[6,0,0,42,1], +"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[6,0,0,42,0], +"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[6,0,0,42,2], +"html2plain_8php.html":[6,0,0,43], +"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[6,0,0,43,0], +"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[6,0,0,43,3], +"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[6,0,0,43,2], +"html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[6,0,0,43,1], +"hubloc_8php.html":[6,0,0,44], +"hubloc_8php.html#a84c79b7be352f62d12fe4fa2c80fc6ea":[6,0,0,44,3], +"hubloc_8php.html#acb708dd197aae72a4858cf5ff4e3195b":[6,0,0,44,5], +"hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002":[6,0,0,44,2], +"hubloc_8php.html#ad86214b3a74084bd7b54e8d6c919ce4d":[6,0,0,44,0], +"hubloc_8php.html#aebd244b4616ded022cbbee5e82926951":[6,0,0,44,1], +"hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea":[6,0,0,44,4], +"identity_8php.html":[6,0,0,45], +"identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[6,0,0,45,3], +"identity_8php.html#a224710dfb7465b706c91134247c20afa":[6,0,0,45,12], +"identity_8php.html#a293f416ce9050220b183e08ff5890216":[6,0,0,45,6], +"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[6,0,0,45,18], +"identity_8php.html#a2e6a1cc35887937823ec7fbb90472afe":[6,0,0,45,23], +"identity_8php.html#a332df795f684788002f5a6424abacfd7":[6,0,0,45,11], +"identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[6,0,0,45,2], +"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[6,0,0,45,27], +"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[6,0,0,45,26], +"identity_8php.html#a47d6f53216f23a3484061793bef29854":[6,0,0,45,28], +"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[6,0,0,45,9], +"identity_8php.html#a4e996e44b50330098a04b467367a559f":[6,0,0,45,21], +"identity_8php.html#a4ff59df0f0a668a06a8411f87496aa21":[6,0,0,45,13], +"identity_8php.html#a5650319c799de09d1b6d1076b6f839a4":[6,0,0,45,24], +"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[6,0,0,45,31], +"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[6,0,0,45,32], +"identity_8php.html#a77d2237f1846964634b1c99089c27c7d":[6,0,0,45,1], +"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[6,0,0,45,29], +"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[6,0,0,45,20], +"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[6,0,0,45,10], +"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[6,0,0,45,22], +"identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[6,0,0,45,0], +"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[6,0,0,45,15], +"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[6,0,0,45,14], +"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[6,0,0,45,7], +"identity_8php.html#ac73b3e13778c564c877554517a7f51ba":[6,0,0,45,5], +"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[6,0,0,45,17], +"identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[6,0,0,45,4], +"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[6,0,0,45,25], +"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[6,0,0,45,19], +"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[6,0,0,45,8], +"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[6,0,0,45,30], +"identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249":[6,0,0,45,16], "impel_8php.html":[6,0,1,42], "impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b":[6,0,1,42,0], "import_8php.html":[6,0,1,43], @@ -237,17 +226,28 @@ var NAVTREEINDEX5 = "include_2bookmarks_8php.html":[6,0,0,14], "include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa":[6,0,0,14,1], "include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323":[6,0,0,14,0], -"include_2chat_8php.html":[6,0,0,17], -"include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f":[6,0,0,17,4], -"include_2chat_8php.html#a26abdccc2a278a59899896dbbfc6f049":[6,0,0,17,6], -"include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639":[6,0,0,17,2], -"include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91":[6,0,0,17,3], -"include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422":[6,0,0,17,1], -"include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3":[6,0,0,17,0], -"include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a":[6,0,0,17,5], -"include_2config_8php.html":[6,0,0,21], -"include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[6,0,0,21,7], -"include_2config_8php.html#a549910227348003efc3c05c9105c42da":[6,0,0,21,0], -"include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b":[6,0,0,21,8], -"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[6,0,0,21,11] +"include_2chat_8php.html":[6,0,0,16], +"include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f":[6,0,0,16,4], +"include_2chat_8php.html#a26abdccc2a278a59899896dbbfc6f049":[6,0,0,16,6], +"include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639":[6,0,0,16,2], +"include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91":[6,0,0,16,3], +"include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422":[6,0,0,16,1], +"include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3":[6,0,0,16,0], +"include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a":[6,0,0,16,5], +"include_2config_8php.html":[6,0,0,20], +"include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[6,0,0,20,7], +"include_2config_8php.html#a549910227348003efc3c05c9105c42da":[6,0,0,20,0], +"include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b":[6,0,0,20,8], +"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[6,0,0,20,11], +"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[6,0,0,20,1], +"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[6,0,0,20,2], +"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[6,0,0,20,6], +"include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[6,0,0,20,5], +"include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[6,0,0,20,10], +"include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52":[6,0,0,20,9], +"include_2config_8php.html#af02c96e6b37335774b548914ede1d22e":[6,0,0,20,3], +"include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74":[6,0,0,20,4], +"include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[6,0,0,20,12], +"include_2directory_8php.html":[6,0,0,33], +"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[6,0,0,33,0] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index 24f45fa52..87222bb8a 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,107 +1,96 @@ var NAVTREEINDEX6 = { -"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[6,0,0,21,1], -"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[6,0,0,21,2], -"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[6,0,0,21,6], -"include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[6,0,0,21,5], -"include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[6,0,0,21,10], -"include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52":[6,0,0,21,9], -"include_2config_8php.html#af02c96e6b37335774b548914ede1d22e":[6,0,0,21,3], -"include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74":[6,0,0,21,4], -"include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[6,0,0,21,12], -"include_2directory_8php.html":[6,0,0,34], -"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[6,0,0,34,0], -"include_2follow_8php.html":[6,0,0,40], -"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[6,0,0,40,0], -"include_2group_8php.html":[6,0,0,42], -"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[6,0,0,42,2], -"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[6,0,0,42,10], -"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[6,0,0,42,1], -"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[6,0,0,42,0], -"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[6,0,0,42,6], -"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[6,0,0,42,7], -"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[6,0,0,42,4], -"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[6,0,0,42,8], -"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[6,0,0,42,5], -"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[6,0,0,42,11], -"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[6,0,0,42,3], -"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[6,0,0,42,9], -"include_2menu_8php.html":[6,0,0,51], -"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[6,0,0,51,11], -"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[6,0,0,51,1], -"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[6,0,0,51,10], -"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[6,0,0,51,9], -"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[6,0,0,51,3], -"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[6,0,0,51,8], -"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[6,0,0,51,7], -"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[6,0,0,51,5], -"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[6,0,0,51,2], -"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[6,0,0,51,6], -"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[6,0,0,51,4], -"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[6,0,0,51,0], -"include_2message_8php.html":[6,0,0,52], -"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[6,0,0,52,2], -"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[6,0,0,52,1], -"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[6,0,0,52,3], -"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[6,0,0,52,4], -"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[6,0,0,52,0], -"include_2network_8php.html":[6,0,0,54], -"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[6,0,0,54,7], -"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[6,0,0,54,14], -"include_2network_8php.html#a316f318167a039c89719afbd129a8f3c":[6,0,0,54,16], -"include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a":[6,0,0,54,20], -"include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b":[6,0,0,54,6], -"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[6,0,0,54,12], -"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[6,0,0,54,11], -"include_2network_8php.html#a5176176ddc1906d91f186df6fbd87b48":[6,0,0,54,4], -"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[6,0,0,54,19], -"include_2network_8php.html#a63e62946e194928eb17c5a9f2bbef0fe":[6,0,0,54,5], -"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[6,0,0,54,10], -"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[6,0,0,54,9], -"include_2network_8php.html#a872bbe72d23826c64c9e0f822180a3ec":[6,0,0,54,13], -"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[6,0,0,54,18], -"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[6,0,0,54,8], -"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[6,0,0,54,24], -"include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b":[6,0,0,54,25], -"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[6,0,0,54,21], -"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[6,0,0,54,22], -"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[6,0,0,54,23], -"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[6,0,0,54,2], -"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[6,0,0,54,0], -"include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070":[6,0,0,54,17], -"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[6,0,0,54,3], -"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[6,0,0,54,15], -"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[6,0,0,54,1], -"include_2notify_8php.html":[6,0,0,56], -"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[6,0,0,56,0], -"include_2oembed_8php.html":[6,0,0,58], -"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[6,0,0,58,5], -"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[6,0,0,58,7], -"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[6,0,0,58,1], -"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[6,0,0,58,4], -"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[6,0,0,58,3], -"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[6,0,0,58,6], -"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[6,0,0,58,0], -"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[6,0,0,58,2], -"include_2photos_8php.html":[6,0,0,63], -"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[6,0,0,63,0], -"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[6,0,0,63,2], -"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[6,0,0,63,1], -"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[6,0,0,63,7], -"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[6,0,0,63,3], -"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[6,0,0,63,6], -"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[6,0,0,63,5], -"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[6,0,0,63,4], -"include_2probe_8php.html":[6,0,0,66], -"include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a":[6,0,0,66,3], -"include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7":[6,0,0,66,4], -"include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c":[6,0,0,66,1], -"include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85":[6,0,0,66,8], -"include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8":[6,0,0,66,0], -"include_2probe_8php.html#a950a200372393f706851103cd3fffcba":[6,0,0,66,6], -"include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0":[6,0,0,66,2], -"include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[6,0,0,66,7], -"include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[6,0,0,66,5], +"include_2follow_8php.html":[6,0,0,39], +"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[6,0,0,39,0], +"include_2group_8php.html":[6,0,0,41], +"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[6,0,0,41,2], +"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[6,0,0,41,10], +"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[6,0,0,41,1], +"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[6,0,0,41,0], +"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[6,0,0,41,6], +"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[6,0,0,41,7], +"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[6,0,0,41,4], +"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[6,0,0,41,8], +"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[6,0,0,41,5], +"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[6,0,0,41,11], +"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[6,0,0,41,3], +"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[6,0,0,41,9], +"include_2menu_8php.html":[6,0,0,50], +"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[6,0,0,50,11], +"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[6,0,0,50,1], +"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[6,0,0,50,10], +"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[6,0,0,50,9], +"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[6,0,0,50,3], +"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[6,0,0,50,8], +"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[6,0,0,50,7], +"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[6,0,0,50,5], +"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[6,0,0,50,2], +"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[6,0,0,50,6], +"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[6,0,0,50,4], +"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[6,0,0,50,0], +"include_2message_8php.html":[6,0,0,51], +"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[6,0,0,51,2], +"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[6,0,0,51,1], +"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[6,0,0,51,3], +"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[6,0,0,51,4], +"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[6,0,0,51,0], +"include_2network_8php.html":[6,0,0,53], +"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[6,0,0,53,7], +"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[6,0,0,53,14], +"include_2network_8php.html#a316f318167a039c89719afbd129a8f3c":[6,0,0,53,16], +"include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a":[6,0,0,53,20], +"include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b":[6,0,0,53,6], +"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[6,0,0,53,12], +"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[6,0,0,53,11], +"include_2network_8php.html#a5176176ddc1906d91f186df6fbd87b48":[6,0,0,53,4], +"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[6,0,0,53,19], +"include_2network_8php.html#a63e62946e194928eb17c5a9f2bbef0fe":[6,0,0,53,5], +"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[6,0,0,53,10], +"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[6,0,0,53,9], +"include_2network_8php.html#a872bbe72d23826c64c9e0f822180a3ec":[6,0,0,53,13], +"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[6,0,0,53,18], +"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[6,0,0,53,8], +"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[6,0,0,53,24], +"include_2network_8php.html#a984708e60d531b31b2d1f88b5f408f7b":[6,0,0,53,25], +"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[6,0,0,53,21], +"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[6,0,0,53,22], +"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[6,0,0,53,23], +"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[6,0,0,53,2], +"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[6,0,0,53,0], +"include_2network_8php.html#acb0bd7f5fe38ff1eaebeae3284525070":[6,0,0,53,17], +"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[6,0,0,53,3], +"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[6,0,0,53,15], +"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[6,0,0,53,1], +"include_2notify_8php.html":[6,0,0,55], +"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[6,0,0,55,0], +"include_2oembed_8php.html":[6,0,0,57], +"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[6,0,0,57,5], +"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[6,0,0,57,7], +"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[6,0,0,57,1], +"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[6,0,0,57,4], +"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[6,0,0,57,3], +"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[6,0,0,57,6], +"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[6,0,0,57,0], +"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[6,0,0,57,2], +"include_2photos_8php.html":[6,0,0,62], +"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[6,0,0,62,0], +"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[6,0,0,62,2], +"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[6,0,0,62,1], +"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[6,0,0,62,7], +"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[6,0,0,62,3], +"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[6,0,0,62,6], +"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[6,0,0,62,5], +"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[6,0,0,62,4], +"include_2probe_8php.html":[6,0,0,65], +"include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a":[6,0,0,65,3], +"include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7":[6,0,0,65,4], +"include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c":[6,0,0,65,1], +"include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85":[6,0,0,65,8], +"include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8":[6,0,0,65,0], +"include_2probe_8php.html#a950a200372393f706851103cd3fffcba":[6,0,0,65,6], +"include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0":[6,0,0,65,2], +"include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[6,0,0,65,7], +"include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[6,0,0,65,5], "index.html":[], "interfaceITemplateEngine.html":[5,0,21], "interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[5,0,21,1], @@ -116,93 +105,93 @@ var NAVTREEINDEX6 = "item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[6,0,1,46,4], "item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[6,0,1,46,1], "item_8php.html#aa22feef4de326e1d7078dedd892e615c":[6,0,1,46,2], -"items_8php.html":[6,0,0,49], -"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[6,0,0,49,3], -"items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df":[6,0,0,49,42], -"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[6,0,0,49,30], -"items_8php.html#a0790a4550b829e85504af548623002ca":[6,0,0,49,9], -"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[6,0,0,49,35], -"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[6,0,0,49,44], -"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[6,0,0,49,27], -"items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92":[6,0,0,49,72], -"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[6,0,0,49,5], -"items_8php.html#a251343637ff40a50cca93452cd530c26":[6,0,0,49,34], -"items_8php.html#a25221826fa4621f523c68483e3b6af26":[6,0,0,49,64], -"items_8php.html#a2541e6861a56d145c9281877cc501615":[6,0,0,49,47], -"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[6,0,0,49,4], -"items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6":[6,0,0,49,71], -"items_8php.html#a2c3f97b2109c05df86d97449b3c78ebc":[6,0,0,49,38], -"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[6,0,0,49,22], -"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[6,0,0,49,0], -"items_8php.html#a37f79991f36811cf847446ff60e8e11f":[6,0,0,49,40], -"items_8php.html#a410f9c743877c125ca06312373346903":[6,0,0,49,54], -"items_8php.html#a49905ea75adfe8a2d110be344d18d6a6":[6,0,0,49,56], -"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[6,0,0,49,59], -"items_8php.html#a52c24114b73c0bdb605a03cd29712223":[6,0,0,49,36], -"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[6,0,0,49,32], -"items_8php.html#a555762e1022a4b8e3c3abd32e7812408":[6,0,0,49,16], -"items_8php.html#a566c601726697e044e75284af7fb6f17":[6,0,0,49,21], -"items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86":[6,0,0,49,18], -"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[6,0,0,49,14], -"items_8php.html#a5e5be7bf1f8257dec0b2647e60a3f3f1":[6,0,0,49,29], -"items_8php.html#a5ed782ff5b9cf050bec931e06de12c00":[6,0,0,49,46], -"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[6,0,0,49,19], -"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[6,0,0,49,45], -"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[6,0,0,49,17], -"items_8php.html#a6bee35961f2e32905f20367a9309d627":[6,0,0,49,39], -"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[6,0,0,49,43], -"items_8php.html#a756738301f2ed96be50232500677d58a":[6,0,0,49,49], -"items_8php.html#a77051724d1784074ff187e73a4db93fe":[6,0,0,49,37], -"items_8php.html#a772f0ae77ad77c8ab68ed918a3870946":[6,0,0,49,7], -"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[6,0,0,49,52], -"items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a":[6,0,0,49,60], -"items_8php.html#a81565acf729e629e588d823308448e3c":[6,0,0,49,1], -"items_8php.html#a83a349062945d585edb4b3c5d763ab6e":[6,0,0,49,57], -"items_8php.html#a8675e62674de6fb7c42e4a408c7116cc":[6,0,0,49,53], -"items_8php.html#a87ac9e359591721a824ecd23bbb56296":[6,0,0,49,6], -"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[6,0,0,49,67], -"items_8php.html#a8cda98925a4c5c2f6dade70d9586d79a":[6,0,0,49,26], -"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[6,0,0,49,12], -"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[6,0,0,49,33], -"items_8php.html#a9b449eeae50003414b8b30ca927af434":[6,0,0,49,70], -"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[6,0,0,49,68], -"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[6,0,0,49,11], -"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[6,0,0,49,23], -"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[6,0,0,49,10], -"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[6,0,0,49,31], -"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[6,0,0,49,62], -"items_8php.html#aabfaa193b83154c2a81e91284e5d5e59":[6,0,0,49,69], -"items_8php.html#aac8c9eb4338e2a996c43914392c6cfdb":[6,0,0,49,15], -"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[6,0,0,49,65], -"items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00":[6,0,0,49,51], -"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[6,0,0,49,28], -"items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723":[6,0,0,49,8], -"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[6,0,0,49,2], -"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[6,0,0,49,20], -"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[6,0,0,49,48], -"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[6,0,0,49,55], -"items_8php.html#ad34827ed330898456783fb14c7b46154":[6,0,0,49,66], -"items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a":[6,0,0,49,58], -"items_8php.html#adc26e08aa61f5666da04ab5d2a9d68a6":[6,0,0,49,13], -"items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2":[6,0,0,49,63], -"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[6,0,0,49,25], -"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[6,0,0,49,41], -"items_8php.html#af6237605c60d69abdd959ddbbee3420c":[6,0,0,49,61], -"items_8php.html#af94c281016c6c912d06e064113336c5c":[6,0,0,49,50], -"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[6,0,0,49,24], +"items_8php.html":[6,0,0,48], +"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[6,0,0,48,3], +"items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df":[6,0,0,48,42], +"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[6,0,0,48,30], +"items_8php.html#a0790a4550b829e85504af548623002ca":[6,0,0,48,9], +"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[6,0,0,48,35], +"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[6,0,0,48,44], +"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[6,0,0,48,27], +"items_8php.html#a1cf89557f32d5dfbe8bd90448dc1aa92":[6,0,0,48,72], +"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[6,0,0,48,5], +"items_8php.html#a251343637ff40a50cca93452cd530c26":[6,0,0,48,34], +"items_8php.html#a25221826fa4621f523c68483e3b6af26":[6,0,0,48,64], +"items_8php.html#a2541e6861a56d145c9281877cc501615":[6,0,0,48,47], +"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[6,0,0,48,4], +"items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6":[6,0,0,48,71], +"items_8php.html#a2c3f97b2109c05df86d97449b3c78ebc":[6,0,0,48,38], +"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[6,0,0,48,22], +"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[6,0,0,48,0], +"items_8php.html#a37f79991f36811cf847446ff60e8e11f":[6,0,0,48,40], +"items_8php.html#a410f9c743877c125ca06312373346903":[6,0,0,48,54], +"items_8php.html#a49905ea75adfe8a2d110be344d18d6a6":[6,0,0,48,56], +"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[6,0,0,48,59], +"items_8php.html#a52c24114b73c0bdb605a03cd29712223":[6,0,0,48,36], +"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[6,0,0,48,32], +"items_8php.html#a555762e1022a4b8e3c3abd32e7812408":[6,0,0,48,16], +"items_8php.html#a566c601726697e044e75284af7fb6f17":[6,0,0,48,21], +"items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86":[6,0,0,48,18], +"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[6,0,0,48,14], +"items_8php.html#a5e5be7bf1f8257dec0b2647e60a3f3f1":[6,0,0,48,29], +"items_8php.html#a5ed782ff5b9cf050bec931e06de12c00":[6,0,0,48,46], +"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[6,0,0,48,19], +"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[6,0,0,48,45], +"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[6,0,0,48,17], +"items_8php.html#a6bee35961f2e32905f20367a9309d627":[6,0,0,48,39], +"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[6,0,0,48,43], +"items_8php.html#a756738301f2ed96be50232500677d58a":[6,0,0,48,49], +"items_8php.html#a77051724d1784074ff187e73a4db93fe":[6,0,0,48,37], +"items_8php.html#a772f0ae77ad77c8ab68ed918a3870946":[6,0,0,48,7], +"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[6,0,0,48,52], +"items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a":[6,0,0,48,60], +"items_8php.html#a81565acf729e629e588d823308448e3c":[6,0,0,48,1], +"items_8php.html#a83a349062945d585edb4b3c5d763ab6e":[6,0,0,48,57], +"items_8php.html#a8675e62674de6fb7c42e4a408c7116cc":[6,0,0,48,53], +"items_8php.html#a87ac9e359591721a824ecd23bbb56296":[6,0,0,48,6], +"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[6,0,0,48,67], +"items_8php.html#a8cda98925a4c5c2f6dade70d9586d79a":[6,0,0,48,26], +"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[6,0,0,48,12], +"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[6,0,0,48,33], +"items_8php.html#a9b449eeae50003414b8b30ca927af434":[6,0,0,48,70], +"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[6,0,0,48,68], +"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[6,0,0,48,11], +"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[6,0,0,48,23], +"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[6,0,0,48,10], +"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[6,0,0,48,31], +"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[6,0,0,48,62], +"items_8php.html#aabfaa193b83154c2a81e91284e5d5e59":[6,0,0,48,69], +"items_8php.html#aac8c9eb4338e2a996c43914392c6cfdb":[6,0,0,48,15], +"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[6,0,0,48,65], +"items_8php.html#ab33fa9756aaa5f39a6104d57a62baf00":[6,0,0,48,51], +"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[6,0,0,48,28], +"items_8php.html#abeb7886cde44d9a83dbaf2bc4ab18723":[6,0,0,48,8], +"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[6,0,0,48,2], +"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[6,0,0,48,20], +"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[6,0,0,48,48], +"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[6,0,0,48,55], +"items_8php.html#ad34827ed330898456783fb14c7b46154":[6,0,0,48,66], +"items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a":[6,0,0,48,58], +"items_8php.html#adc26e08aa61f5666da04ab5d2a9d68a6":[6,0,0,48,13], +"items_8php.html#adf2b8137dc4ad9ec958de2842f16f3c2":[6,0,0,48,63], +"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[6,0,0,48,25], +"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[6,0,0,48,41], +"items_8php.html#af6237605c60d69abdd959ddbbee3420c":[6,0,0,48,61], +"items_8php.html#af94c281016c6c912d06e064113336c5c":[6,0,0,48,50], +"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[6,0,0,48,24], "lang_8php.html":[6,0,1,47], "lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[6,0,1,47,0], -"language_8php.html":[6,0,0,50], -"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[6,0,0,50,7], -"language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[6,0,0,50,3], -"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[6,0,0,50,0], -"language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997":[6,0,0,50,9], -"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[6,0,0,50,5], -"language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[6,0,0,50,4], -"language_8php.html#a980dee1d8715a98ab02e36b59facf8ed":[6,0,0,50,1], -"language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96":[6,0,0,50,8], -"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[6,0,0,50,6], -"language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[6,0,0,50,2], +"language_8php.html":[6,0,0,49], +"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[6,0,0,49,7], +"language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[6,0,0,49,3], +"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[6,0,0,49,0], +"language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997":[6,0,0,49,9], +"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[6,0,0,49,5], +"language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[6,0,0,49,4], +"language_8php.html#a980dee1d8715a98ab02e36b59facf8ed":[6,0,0,49,1], +"language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96":[6,0,0,49,8], +"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[6,0,0,49,6], +"language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[6,0,0,49,2], "layouts_8php.html":[6,0,1,48], "layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa":[6,0,1,48,1], "layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[6,0,1,48,0], @@ -249,5 +238,16 @@ var NAVTREEINDEX6 = "mod_2apps_8php.html":[6,0,1,6], "mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[6,0,1,6,0], "mod_2attach_8php.html":[6,0,1,7], -"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[6,0,1,7,0] +"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[6,0,1,7,0], +"mod_2bookmarks_8php.html":[6,0,1,10], +"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[6,0,1,10,1], +"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[6,0,1,10,0], +"mod_2chat_8php.html":[6,0,1,13], +"mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f":[6,0,1,13,0], +"mod_2chat_8php.html#a999d594745597c656c9760253ae297ad":[6,0,1,13,2], +"mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e":[6,0,1,13,1], +"mod_2directory_8php.html":[6,0,1,22], +"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[6,0,1,22,1], +"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[6,0,1,22,0], +"mod_2follow_8php.html":[6,0,1,35] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index 95e51661f..87873a9cc 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,16 +1,5 @@ var NAVTREEINDEX7 = { -"mod_2bookmarks_8php.html":[6,0,1,10], -"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[6,0,1,10,1], -"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[6,0,1,10,0], -"mod_2chat_8php.html":[6,0,1,13], -"mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f":[6,0,1,13,0], -"mod_2chat_8php.html#a999d594745597c656c9760253ae297ad":[6,0,1,13,2], -"mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e":[6,0,1,13,1], -"mod_2directory_8php.html":[6,0,1,22], -"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[6,0,1,22,1], -"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[6,0,1,22,0], -"mod_2follow_8php.html":[6,0,1,35], "mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[6,0,1,35,1], "mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[6,0,1,35,0], "mod_2group_8php.html":[6,0,1,37], @@ -43,34 +32,34 @@ var NAVTREEINDEX7 = "mood_8php.html#a7ae136dd7476865b4828136175db5022":[6,0,1,61,1], "msearch_8php.html":[6,0,1,62], "msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[6,0,1,62,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":[5,0,1], +"mytheme_2php_2style_8php.html":[6,0,3,1,2,0,1], +"mytheme_2php_2theme_8php.html":[6,0,3,1,2,0,2], +"mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8":[6,0,3,1,2,0,2,0], "namespaceFriendica.html":[4,0,1], +"namespaceFriendica.html":[5,0,1], "namespaceRedMatrix.html":[4,0,3], "namespaceRedMatrix.html":[5,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], "namespaceRedmatrix.html":[5,0,4], "namespaceRedmatrix.html":[4,0,4], "namespaceRedmatrix_1_1Import.html":[5,0,4,0], "namespaceRedmatrix_1_1Import.html":[4,0,4,0], -"namespaceacl__selectors.html":[5,0,0], "namespaceacl__selectors.html":[4,0,0], +"namespaceacl__selectors.html":[5,0,0], "namespacefriendica-to-smarty-tpl.html":[4,0,2], "namespacefriendica-to-smarty-tpl.html":[5,0,2], "namespacemembers.html":[4,1,0], "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], -"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[6,0,0,53,0], -"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[6,0,0,53,1], +"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,63], "netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919":[6,0,1,63,0], "new__channel_8php.html":[6,0,1,65], @@ -83,20 +72,20 @@ var NAVTREEINDEX7 = "notifications_8php.html":[6,0,1,67], "notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[6,0,1,67,1], "notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[6,0,1,67,0], -"notifier_8php.html":[6,0,0,55], -"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[6,0,0,55,0], -"notred_8php.html":[6,0,3,1,4,1,3], -"oauth_8php.html":[6,0,0,57], -"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[6,0,0,57,3], -"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[6,0,0,57,2], +"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], +"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], "oexchange_8php.html":[6,0,1,70], "oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[6,0,1,70,0], "oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[6,0,1,70,1], "olddefault_8php.html":[6,0,3,1,0,2,5], -"onedirsync_8php.html":[6,0,0,59], -"onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[6,0,0,59,0], -"onepoll_8php.html":[6,0,0,60], -"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[6,0,0,60,0], +"onedirsync_8php.html":[6,0,0,58], +"onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[6,0,0,58,0], +"onepoll_8php.html":[6,0,0,59], +"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[6,0,0,59,0], "online_8php.html":[6,0,1,71], "online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[6,0,1,71,0], "openid_8php.html":[6,0,1,72], @@ -108,9 +97,9 @@ var NAVTREEINDEX7 = "page_8php.html":[6,0,1,75], "page_8php.html#a4d89800c0366a239191b1692c09635cf":[6,0,1,75,1], "page_8php.html#a91a5f649f68406149108bded1dc90b22":[6,0,1,75,0], -"page__widgets_8php.html":[6,0,0,61], -"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[6,0,0,61,1], -"page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[6,0,0,61,0], +"page__widgets_8php.html":[6,0,0,60], +"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[6,0,0,60,1], +"page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[6,0,0,60,0], "pages.html":[], "parse__url_8php.html":[6,0,1,76], "parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[6,0,1,76,2], @@ -122,14 +111,14 @@ var NAVTREEINDEX7 = "pdledit_8php.html":[6,0,1,77], "pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[6,0,1,77,0], "pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[6,0,1,77,1], -"permissions_8php.html":[6,0,0,62], -"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[6,0,0,62,2], -"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[6,0,0,62,0], -"permissions_8php.html#a50e8099ea8a4d7ed68b2a0a7ea9aa724":[6,0,0,62,5], -"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[6,0,0,62,4], -"permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe":[6,0,0,62,3], -"permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[6,0,0,62,6], -"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[6,0,0,62,1], +"permissions_8php.html":[6,0,0,61], +"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[6,0,0,61,2], +"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[6,0,0,61,0], +"permissions_8php.html#a50e8099ea8a4d7ed68b2a0a7ea9aa724":[6,0,0,61,5], +"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[6,0,0,61,4], +"permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe":[6,0,0,61,3], +"permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[6,0,0,61,6], +"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[6,0,0,61,1], "photo_8php.html":[6,0,1,78], "photo_8php.html#a582779d24882b0d31ee909a91d70a448":[6,0,1,78,0], "photo__driver_8php.html":[6,0,0,2,0], @@ -157,34 +146,34 @@ var NAVTREEINDEX7 = "pine_8php.html":[6,0,3,1,0,2,8], "ping_8php.html":[6,0,1,81], "ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[6,0,1,81,0], -"plugin_8php.html":[6,0,0,64], -"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[6,0,0,64,24], -"plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[6,0,0,64,22], -"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[6,0,0,64,8], -"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[6,0,0,64,17], -"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[6,0,0,64,20], -"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[6,0,0,64,7], -"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[6,0,0,64,16], -"plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4":[6,0,0,64,14], -"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[6,0,0,64,9], -"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[6,0,0,64,26], -"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[6,0,0,64,11], -"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[6,0,0,64,23], -"plugin_8php.html#a67ca417634de2d0beffffc54aeb951ff":[6,0,0,64,12], -"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[6,0,0,64,4], -"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[6,0,0,64,0], -"plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9":[6,0,0,64,19], -"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[6,0,0,64,1], -"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[6,0,0,64,25], -"plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf":[6,0,0,64,13], -"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[6,0,0,64,18], -"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[6,0,0,64,3], -"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[6,0,0,64,6], -"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[6,0,0,64,2], -"plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b":[6,0,0,64,15], -"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[6,0,0,64,10], -"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[6,0,0,64,21], -"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[6,0,0,64,5], +"plugin_8php.html":[6,0,0,63], +"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[6,0,0,63,24], +"plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[6,0,0,63,22], +"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[6,0,0,63,8], +"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[6,0,0,63,17], +"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[6,0,0,63,20], +"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[6,0,0,63,7], +"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[6,0,0,63,16], +"plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4":[6,0,0,63,14], +"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[6,0,0,63,9], +"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[6,0,0,63,26], +"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[6,0,0,63,11], +"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[6,0,0,63,23], +"plugin_8php.html#a67ca417634de2d0beffffc54aeb951ff":[6,0,0,63,12], +"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[6,0,0,63,4], +"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[6,0,0,63,0], +"plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9":[6,0,0,63,19], +"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[6,0,0,63,1], +"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[6,0,0,63,25], +"plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf":[6,0,0,63,13], +"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[6,0,0,63,18], +"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[6,0,0,63,3], +"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[6,0,0,63,6], +"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[6,0,0,63,2], +"plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b":[6,0,0,63,15], +"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[6,0,0,63,10], +"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[6,0,0,63,21], +"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[6,0,0,63,5], "po2php_8php.html":[6,0,2,6], "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[6,0,2,6,0], "poco_8php.html":[6,0,1,82], @@ -196,8 +185,8 @@ var NAVTREEINDEX7 = "poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77":[6,0,1,84,2], "poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263":[6,0,1,84,0], "poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930":[6,0,1,84,1], -"poller_8php.html":[6,0,0,65], -"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[6,0,0,65,0], +"poller_8php.html":[6,0,0,64], +"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[6,0,0,64,0], "post_8php.html":[6,0,1,85], "post_8php.html#af4b48181ce773ef0cdfc972441445c34":[6,0,1,85,0], "post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[6,0,1,85,1], @@ -210,13 +199,13 @@ var NAVTREEINDEX7 = "profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[6,0,1,89,0], "profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[6,0,1,89,1], "profile__photo_8php.html#a561103564199da56e58061a4196eb102":[6,0,1,89,2], -"profile__selectors_8php.html":[6,0,0,67], -"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[6,0,0,67,4], -"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[6,0,0,67,2], -"profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816":[6,0,0,67,1], -"profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074":[6,0,0,67,5], -"profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534":[6,0,0,67,3], -"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[6,0,0,67,0], +"profile__selectors_8php.html":[6,0,0,66], +"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[6,0,0,66,4], +"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[6,0,0,66,2], +"profile__selectors_8php.html#a8bfa1ca2d1598a3d65f1f9bb803ca816":[6,0,0,66,1], +"profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074":[6,0,0,66,5], +"profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534":[6,0,0,66,3], +"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[6,0,0,66,0], "profiles_8php.html":[6,0,1,90], "profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[6,0,1,90,1], "profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[6,0,1,90,0], @@ -226,11 +215,11 @@ var NAVTREEINDEX7 = "profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[6,0,1,91,0], "pubsites_8php.html":[6,0,1,92], "pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[6,0,1,92,0], -"queue_8php.html":[6,0,0,69], -"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[6,0,0,69,0], -"queue__fn_8php.html":[6,0,0,70], -"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[6,0,0,70,1], -"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[6,0,0,70,0], +"queue_8php.html":[6,0,0,68], +"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[6,0,0,68,0], +"queue__fn_8php.html":[6,0,0,69], +"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[6,0,0,69,1], +"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[6,0,0,69,0], "randprof_8php.html":[6,0,1,93], "randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[6,0,1,93,0], "rbmark_8php.html":[6,0,1,94], @@ -240,14 +229,25 @@ var NAVTREEINDEX7 = "receive_8php.html#a03d8fa26e77844020ba5602deca7d494":[6,0,1,95,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,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_2php_2style_8php.html":[6,0,3,1,3,0,1], +"redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c":[6,0,3,1,3,0,1,0], +"redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459":[6,0,3,1,3,0,1,1], +"redbasic_2php_2theme_8php.html":[6,0,3,1,3,0,2], +"redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b":[6,0,3,1,3,0,2,0], "redbasic_8php.html":[6,0,3,1,0,2,9], -"reddav_8php.html":[6,0,0,71], -"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[6,0,0,71,1], -"reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[6,0,0,71,2], -"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[6,0,0,71,0] +"reddav_8php.html":[6,0,0,70], +"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[6,0,0,70,1], +"reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[6,0,0,70,2], +"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[6,0,0,70,0], +"refimport_8php.html":[6,0,0,1,1], +"refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c":[6,0,0,1,1,2], +"refimport_8php.html#a53434bc19e6264db89e18d92ddc09860":[6,0,0,1,1,1], +"refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6":[6,0,0,1,1,6], +"refimport_8php.html#a684a44d2401abf75f441591bcb41d10d":[6,0,0,1,1,12], +"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] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index 41348f01c..f8f131c30 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,16 +1,5 @@ var NAVTREEINDEX8 = { -"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], @@ -41,32 +30,32 @@ var NAVTREEINDEX8 = "search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[6,0,1,104,1], "search__ac_8php.html":[6,0,1,105], "search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[6,0,1,105,0], -"security_8php.html":[6,0,0,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], +"security_8php.html":[6,0,0,71], +"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[6,0,0,71,2], +"security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[6,0,0,71,11], +"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[6,0,0,71,4], +"security_8php.html#a6126c77a1267e046ac59cf864613f011":[6,0,0,71,10], +"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[6,0,0,71,5], +"security_8php.html#a8d23d2597aae380a3341872fe9513380":[6,0,0,71,1], +"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[6,0,0,71,7], +"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[6,0,0,71,3], +"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[6,0,0,71,9], +"security_8php.html#acd06ef411116115c2f0a92633700db8a":[6,0,0,71,6], +"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[6,0,0,71,0], +"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[6,0,0,71,8], "service__limits_8php.html":[6,0,1,106], "service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[6,0,1,106,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], +"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,107], "settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[6,0,1,107,0], "settings_8php.html#a3a4cde287482fced008583f54ba2a722":[6,0,1,107,1], @@ -91,163 +80,174 @@ var NAVTREEINDEX8 = "setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[6,0,1,108,6], "share_8php.html":[6,0,1,109], "share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[6,0,1,109,0], -"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], +"simple__black__on__white_8php.html":[6,0,3,1,3,1,4], +"simple__green__on__black_8php.html":[6,0,3,1,3,1,5], +"simple__white__on__black_8php.html":[6,0,3,1,3,1,6], "siteinfo_8php.html":[6,0,1,110], "siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[6,0,1,110,1], "siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[6,0,1,110,0], "sitelist_8php.html":[6,0,1,111], "sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[6,0,1,111,0], -"smarty_8php.html":[6,0,0,74], +"smarty_8php.html":[6,0,0,73], "smilies_8php.html":[6,0,1,112], "smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[6,0,1,112,0], -"socgraph_8php.html":[6,0,0,75], -"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[6,0,0,75,0], -"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[6,0,0,75,6], -"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[6,0,0,75,7], -"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[6,0,0,75,8], -"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[6,0,0,75,1], -"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[6,0,0,75,4], -"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[6,0,0,75,2], -"socgraph_8php.html#af175807406d94407a5e11742a3287746":[6,0,0,75,5], -"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[6,0,0,75,3], +"socgraph_8php.html":[6,0,0,74], +"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[6,0,0,74,0], +"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[6,0,0,74,6], +"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[6,0,0,74,7], +"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[6,0,0,74,8], +"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[6,0,0,74,1], +"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[6,0,0,74,4], +"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[6,0,0,74,2], +"socgraph_8php.html#af175807406d94407a5e11742a3287746":[6,0,0,74,5], +"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[6,0,0,74,3], "sources_8php.html":[6,0,1,113], "sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[6,0,1,113,0], "sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[6,0,1,113,1], -"spam_8php.html":[6,0,0,76], -"spam_8php.html#a05861201147b9a538d006f0269255cf9":[6,0,0,76,1], -"spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[6,0,0,76,0], +"spam_8php.html":[6,0,0,75], +"spam_8php.html#a05861201147b9a538d006f0269255cf9":[6,0,0,75,1], +"spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[6,0,0,75,0], "sslify_8php.html":[6,0,1,114], "sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[6,0,1,114,0], "starred_8php.html":[6,0,1,115], "starred_8php.html#a63024fb418c678e49fd535e3752d349a":[6,0,1,115,0], -"statistics__fns_8php.html":[6,0,0,77], -"statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c":[6,0,0,77,2], -"statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[6,0,0,77,0], -"statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa":[6,0,0,77,3], -"statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe":[6,0,0,77,1], -"stumble_2php_2style_8php.html":[6,0,3,1,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], +"statistics__fns_8php.html":[6,0,0,76], +"statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c":[6,0,0,76,2], +"statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[6,0,0,76,0], +"statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa":[6,0,0,76,3], +"statistics__fns_8php.html#ad2b7b595c039c4c2eb0d6cd57a393dfe":[6,0,0,76,1], +"stumble_2php_2style_8php.html":[6,0,3,1,4,0,0], +"stumble_2php_2theme_8php.html":[6,0,3,1,4,0,1], +"stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753":[6,0,3,1,4,0,1,0], "subthread_8php.html":[6,0,1,116], "subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[6,0,1,116,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], +"suckerberg_2php_2style_8php.html":[6,0,3,1,5,0,0], +"suckerberg_2php_2theme_8php.html":[6,0,3,1,5,0,1], +"suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8":[6,0,3,1,5,0,1,0], "suggest_8php.html":[6,0,1,117], "suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[6,0,1,117,0], "suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[6,0,1,117,1], -"system__unavailable_8php.html":[6,0,0,78], -"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[6,0,0,78,0], +"system__unavailable_8php.html":[6,0,0,77], +"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[6,0,0,77,0], "tagger_8php.html":[6,0,1,118], "tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[6,0,1,118,0], "tagrm_8php.html":[6,0,1,119], "tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[6,0,1,119,1], "tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[6,0,1,119,0], -"taxonomy_8php.html":[6,0,0,79], -"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[6,0,0,79,10], -"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[6,0,0,79,1], -"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[6,0,0,79,3], -"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[6,0,0,79,7], -"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[6,0,0,79,5], -"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[6,0,0,79,4], -"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[6,0,0,79,11], -"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[6,0,0,79,2], -"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[6,0,0,79,8], -"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[6,0,0,79,15], -"taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4":[6,0,0,79,0], -"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[6,0,0,79,14], -"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[6,0,0,79,12], -"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[6,0,0,79,13], -"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[6,0,0,79,6], -"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[6,0,0,79,9], -"template__processor_8php.html":[6,0,0,80], -"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[6,0,0,80,3], -"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[6,0,0,80,1], -"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[6,0,0,80,2], -"text_8php.html":[6,0,0,81], -"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[6,0,0,81,41], -"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[6,0,0,81,47], -"text_8php.html#a070384ec000fd65043fce11d5392d241":[6,0,0,81,6], -"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[6,0,0,81,16], -"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[6,0,0,81,11], -"text_8php.html#a10dde167249ed5abf190a7a0986878ea":[6,0,0,81,72], -"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[6,0,0,81,46], -"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[6,0,0,81,5], -"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[6,0,0,81,83], -"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[6,0,0,81,34], -"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[6,0,0,81,37], -"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[6,0,0,81,51], -"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[6,0,0,81,54], -"text_8php.html#a1e510c53624933ce9b7d6715784894db":[6,0,0,81,48], -"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[6,0,0,81,49], -"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[6,0,0,81,44], -"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[6,0,0,81,73], -"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[6,0,0,81,4], -"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[6,0,0,81,91], -"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[6,0,0,81,80], -"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[6,0,0,81,50], -"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[6,0,0,81,10], -"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[6,0,0,81,77], -"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[6,0,0,81,93], -"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[6,0,0,81,24], -"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[6,0,0,81,88], -"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[6,0,0,81,75], -"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[6,0,0,81,32], -"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[6,0,0,81,43], -"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[6,0,0,81,26], -"text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc":[6,0,0,81,19], -"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[6,0,0,81,74], -"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[6,0,0,81,7], -"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[6,0,0,81,89], -"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[6,0,0,81,35], -"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[6,0,0,81,33], -"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[6,0,0,81,45], -"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[6,0,0,81,63], -"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[6,0,0,81,52], -"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[6,0,0,81,25], -"text_8php.html#a4e7698aca48982512594b274543c3b9b":[6,0,0,81,62], -"text_8php.html#a543447c5ed766535221e2d9636b379ee":[6,0,0,81,85], -"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[6,0,0,81,9], -"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[6,0,0,81,14], -"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[6,0,0,81,84], -"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[6,0,0,81,42], -"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[6,0,0,81,29], -"text_8php.html#a740ad03e00459039a2c0992246c4e727":[6,0,0,81,81], -"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[6,0,0,81,1], -"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[6,0,0,81,36], -"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[6,0,0,81,28], -"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[6,0,0,81,82], -"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[6,0,0,81,8], -"text_8php.html#a876e94892867019935b348b573299352":[6,0,0,81,70], -"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[6,0,0,81,76], -"text_8php.html#a87a3cefc603302c78982f1d8e1245265":[6,0,0,81,15], -"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[6,0,0,81,21], -"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[6,0,0,81,61], -"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[6,0,0,81,20], -"text_8php.html#a905c3895feb6f276df23f07f16f9bb52":[6,0,0,81,86], -"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[6,0,0,81,3], -"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[6,0,0,81,56], -"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[6,0,0,81,67], -"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[6,0,0,81,65], -"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[6,0,0,81,69], -"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[6,0,0,81,31], -"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[6,0,0,81,17], -"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[6,0,0,81,57], -"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[6,0,0,81,38], -"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[6,0,0,81,30], -"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[6,0,0,81,92], -"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[6,0,0,81,71], -"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[6,0,0,81,87], -"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[6,0,0,81,90], -"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[6,0,0,81,58], -"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[6,0,0,81,39], -"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[6,0,0,81,78], -"text_8php.html#ace3c98538c63e09b70a363210b414112":[6,0,0,81,22], -"text_8php.html#acedb584f65114a33f389efb796172a91":[6,0,0,81,2], -"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[6,0,0,81,13], -"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[6,0,0,81,66], -"text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[6,0,0,81,27], -"text_8php.html#adba17ec946f4285285dc100f7860bf51":[6,0,0,81,53] +"taxonomy_8php.html":[6,0,0,78], +"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[6,0,0,78,10], +"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[6,0,0,78,1], +"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[6,0,0,78,3], +"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[6,0,0,78,7], +"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[6,0,0,78,5], +"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[6,0,0,78,4], +"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[6,0,0,78,11], +"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[6,0,0,78,2], +"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[6,0,0,78,8], +"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[6,0,0,78,15], +"taxonomy_8php.html#aa8f8a1ff85daef046298e93c83e7a1b4":[6,0,0,78,0], +"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[6,0,0,78,14], +"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[6,0,0,78,12], +"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[6,0,0,78,13], +"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[6,0,0,78,6], +"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[6,0,0,78,9], +"template__processor_8php.html":[6,0,0,79], +"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[6,0,0,79,3], +"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[6,0,0,79,1], +"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[6,0,0,79,2], +"text_8php.html":[6,0,0,80], +"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[6,0,0,80,41], +"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[6,0,0,80,47], +"text_8php.html#a070384ec000fd65043fce11d5392d241":[6,0,0,80,6], +"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[6,0,0,80,16], +"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[6,0,0,80,11], +"text_8php.html#a10dde167249ed5abf190a7a0986878ea":[6,0,0,80,72], +"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[6,0,0,80,46], +"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[6,0,0,80,5], +"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[6,0,0,80,83], +"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[6,0,0,80,34], +"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[6,0,0,80,37], +"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[6,0,0,80,51], +"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[6,0,0,80,54], +"text_8php.html#a1e510c53624933ce9b7d6715784894db":[6,0,0,80,48], +"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[6,0,0,80,49], +"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[6,0,0,80,44], +"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[6,0,0,80,73], +"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[6,0,0,80,4], +"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[6,0,0,80,91], +"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[6,0,0,80,80], +"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[6,0,0,80,50], +"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[6,0,0,80,10], +"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[6,0,0,80,77], +"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[6,0,0,80,93], +"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[6,0,0,80,24], +"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[6,0,0,80,88], +"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[6,0,0,80,75], +"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[6,0,0,80,32], +"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[6,0,0,80,43], +"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[6,0,0,80,26], +"text_8php.html#a3ba47b4dd1248e7e51095572e7b814dc":[6,0,0,80,19], +"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[6,0,0,80,74], +"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[6,0,0,80,7], +"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[6,0,0,80,89], +"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[6,0,0,80,35], +"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[6,0,0,80,33], +"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[6,0,0,80,45], +"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[6,0,0,80,63], +"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[6,0,0,80,52], +"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[6,0,0,80,25], +"text_8php.html#a4e7698aca48982512594b274543c3b9b":[6,0,0,80,62], +"text_8php.html#a543447c5ed766535221e2d9636b379ee":[6,0,0,80,85], +"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[6,0,0,80,9], +"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[6,0,0,80,14], +"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[6,0,0,80,84], +"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[6,0,0,80,42], +"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[6,0,0,80,29], +"text_8php.html#a740ad03e00459039a2c0992246c4e727":[6,0,0,80,81], +"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[6,0,0,80,1], +"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[6,0,0,80,36], +"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[6,0,0,80,28], +"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[6,0,0,80,82], +"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[6,0,0,80,8], +"text_8php.html#a876e94892867019935b348b573299352":[6,0,0,80,70], +"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[6,0,0,80,76], +"text_8php.html#a87a3cefc603302c78982f1d8e1245265":[6,0,0,80,15], +"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[6,0,0,80,21], +"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[6,0,0,80,61], +"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[6,0,0,80,20], +"text_8php.html#a905c3895feb6f276df23f07f16f9bb52":[6,0,0,80,86], +"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[6,0,0,80,3], +"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[6,0,0,80,56], +"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[6,0,0,80,67], +"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[6,0,0,80,65], +"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[6,0,0,80,69], +"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[6,0,0,80,31], +"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[6,0,0,80,17], +"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[6,0,0,80,57], +"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[6,0,0,80,38], +"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[6,0,0,80,30], +"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[6,0,0,80,92], +"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[6,0,0,80,71], +"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[6,0,0,80,87], +"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[6,0,0,80,90], +"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[6,0,0,80,58], +"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[6,0,0,80,39], +"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[6,0,0,80,78], +"text_8php.html#ace3c98538c63e09b70a363210b414112":[6,0,0,80,22], +"text_8php.html#acedb584f65114a33f389efb796172a91":[6,0,0,80,2], +"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[6,0,0,80,13], +"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[6,0,0,80,66], +"text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[6,0,0,80,27], +"text_8php.html#adba17ec946f4285285dc100f7860bf51":[6,0,0,80,53], +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[6,0,0,80,40], +"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[6,0,0,80,68], +"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[6,0,0,80,18], +"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[6,0,0,80,59], +"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[6,0,0,80,0], +"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[6,0,0,80,79], +"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[6,0,0,80,64], +"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[6,0,0,80,23], +"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[6,0,0,80,12], +"text_8php.html#afe54312607d92f7ce9593f5760831f80":[6,0,0,80,60], +"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[6,0,0,80,55] }; diff --git a/doc/html/navtreeindex9.js b/doc/html/navtreeindex9.js index fa4f62489..be0509aeb 100644 --- a/doc/html/navtreeindex9.js +++ b/doc/html/navtreeindex9.js @@ -1,30 +1,10 @@ var NAVTREEINDEX9 = { -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[6,0,0,81,40], -"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[6,0,0,81,68], -"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[6,0,0,81,18], -"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[6,0,0,81,59], -"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[6,0,0,81,0], -"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[6,0,0,81,79], -"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[6,0,0,81,64], -"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[6,0,0,81,23], -"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[6,0,0,81,12], -"text_8php.html#afe54312607d92f7ce9593f5760831f80":[6,0,0,81,60], -"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[6,0,0,81,55], "theme_2apw_2php_2theme__init_8php.html":[6,0,3,1,0,1,4], "theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[6,0,3,1,0,1,4,0], -"theme_2blogga_2php_2default_8php.html":[6,0,3,1,1,0,1], -"theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[6,0,3,1,1,0,1,2], -"theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a":[6,0,3,1,1,0,1,0], -"theme_2blogga_2php_2default_8php.html#ac7062908d1eb80c0735270f7997c4527":[6,0,3,1,1,0,1,1], -"theme_2blogga_2php_2theme__init_8php.html":[6,0,3,1,1,0,3], -"theme_2blogga_2view_2theme_2blog_2default_8php.html":[6,0,3,1,1,1,0,0,1], -"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,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], +"theme_2mytheme_2php_2default_8php.html":[6,0,3,1,2,0,0], +"theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,1,2,0,0,0], +"theme_2redbasic_2php_2theme__init_8php.html":[6,0,3,1,3,0,3], "thing_8php.html":[6,0,1,120], "thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[6,0,1,120,0], "thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[6,0,1,120,1], @@ -52,10 +32,12 @@ var NAVTREEINDEX9 = "update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[6,0,1,124,0], "update__display_8php.html":[6,0,1,125], "update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[6,0,1,125,0], -"update__network_8php.html":[6,0,1,126], -"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[6,0,1,126,0], -"update__search_8php.html":[6,0,1,127], -"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[6,0,1,127,0], +"update__home_8php.html":[6,0,1,126], +"update__home_8php.html#a668340089acd150b830134476a647d05":[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], @@ -67,121 +49,110 @@ var NAVTREEINDEX9 = "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,128], -"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[6,0,1,128,0], -"viewconnections_8php.html":[6,0,1,129], -"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[6,0,1,129,1], -"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[6,0,1,129,0], -"viewsrc_8php.html":[6,0,1,130], -"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[6,0,1,130,0], -"vote_8php.html":[6,0,1,131], -"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[6,0,1,131,2], -"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[6,0,1,131,0], -"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[6,0,1,131,1], -"wall__attach_8php.html":[6,0,1,132], -"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[6,0,1,132,0], -"wall__upload_8php.html":[6,0,1,133], -"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[6,0,1,133,0], -"webfinger_8php.html":[6,0,1,134], -"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[6,0,1,134,0], -"webpages_8php.html":[6,0,1,135], -"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[6,0,1,135,0], -"webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7":[6,0,1,135,1], -"wfinger_8php.html":[6,0,1,136], -"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[6,0,1,136,0], +"view_2theme_2redbasic_2php_2config_8php.html":[6,0,3,1,3,0,0], +"view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793":[6,0,3,1,3,0,0,0], +"view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,3,0,0,1], +"view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,3,0,0,2], +"view_8php.html":[6,0,1,129], +"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[6,0,1,129,0], +"viewconnections_8php.html":[6,0,1,130], +"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[6,0,1,130,1], +"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[6,0,1,130,0], +"viewsrc_8php.html":[6,0,1,131], +"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[6,0,1,131,0], +"vote_8php.html":[6,0,1,132], +"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[6,0,1,132,2], +"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[6,0,1,132,0], +"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[6,0,1,132,1], +"wall__attach_8php.html":[6,0,1,133], +"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[6,0,1,133,0], +"wall__upload_8php.html":[6,0,1,134], +"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[6,0,1,134,0], +"webfinger_8php.html":[6,0,1,135], +"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[6,0,1,135,0], +"webpages_8php.html":[6,0,1,136], +"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[6,0,1,136,0], +"webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7":[6,0,1,136,1], +"wfinger_8php.html":[6,0,1,137], +"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[6,0,1,137,0], "widedarkness_8php.html":[6,0,3,1,0,2,10], -"widgets_8php.html":[6,0,0,82], -"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,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,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,15], -"widgets_8php.html#add9b24d3304e529a7975e96122315554":[6,0,0,82,0], -"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[6,0,0,82,14], -"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[6,0,0,82,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,137], -"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[6,0,1,137,0], -"xrd_8php.html":[6,0,1,138], -"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[6,0,1,138,0], -"xref_8php.html":[6,0,1,139], -"xref_8php.html#a9bee399213b8de8226b0d60834307473":[6,0,1,139,0], -"zfinger_8php.html":[6,0,1,140], -"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[6,0,1,140,0], -"zot_8php.html":[6,0,0,83], -"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[6,0,0,83,15], -"zot_8php.html#a084c581d534e7e3b759488b46602288f":[6,0,0,83,20], -"zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d":[6,0,0,83,11], -"zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75":[6,0,0,83,9], -"zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[6,0,0,83,6], -"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[6,0,0,83,7], -"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[6,0,0,83,18], -"zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac":[6,0,0,83,28], -"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[6,0,0,83,5], -"zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315":[6,0,0,83,8], -"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[6,0,0,83,25], -"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[6,0,0,83,31], -"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[6,0,0,83,22], -"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[6,0,0,83,0], -"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[6,0,0,83,30], -"zot_8php.html#a8e22dbc6f884be3644a892a876cbd972":[6,0,0,83,3], -"zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988":[6,0,0,83,12], -"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[6,0,0,83,29], -"zot_8php.html#a95528377d7303131958c9f0b7158fdce":[6,0,0,83,23], -"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[6,0,0,83,14], -"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[6,0,0,83,13], -"zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5":[6,0,0,83,1], -"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[6,0,0,83,16], -"zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254":[6,0,0,83,17], -"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[6,0,0,83,27], -"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[6,0,0,83,19], -"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[6,0,0,83,32], -"zot_8php.html#ac301c67864917c35922257950ae0f95c":[6,0,0,83,10], -"zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d":[6,0,0,83,4], -"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[6,0,0,83,2], -"zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca":[6,0,0,83,21], -"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[6,0,0,83,24], -"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[6,0,0,83,26], -"zotfeed_8php.html":[6,0,1,141], -"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[6,0,1,141,0], -"zping_8php.html":[6,0,1,142], -"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[6,0,1,142,0] +"widgets_8php.html":[6,0,0,81], +"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[6,0,0,81,12], +"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[6,0,0,81,28], +"widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[6,0,0,81,3], +"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[6,0,0,81,9], +"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[6,0,0,81,10], +"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[6,0,0,81,17], +"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[6,0,0,81,19], +"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[6,0,0,81,20], +"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[6,0,0,81,6], +"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[6,0,0,81,27], +"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[6,0,0,81,13], +"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[6,0,0,81,29], +"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[6,0,0,81,22], +"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[6,0,0,81,16], +"widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[6,0,0,81,2], +"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[6,0,0,81,25], +"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[6,0,0,81,11], +"widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20":[6,0,0,81,21], +"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[6,0,0,81,7], +"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[6,0,0,81,8], +"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[6,0,0,81,26], +"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[6,0,0,81,24], +"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[6,0,0,81,31], +"widgets_8php.html#aced5cb177f630b30799c5eab873ee75c":[6,0,0,81,1], +"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[6,0,0,81,15], +"widgets_8php.html#add9b24d3304e529a7975e96122315554":[6,0,0,81,0], +"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[6,0,0,81,14], +"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[6,0,0,81,30], +"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[6,0,0,81,5], +"widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380":[6,0,0,81,23], +"widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5":[6,0,0,81,4], +"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[6,0,0,81,18], +"xchan_8php.html":[6,0,1,138], +"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[6,0,1,138,0], +"xrd_8php.html":[6,0,1,139], +"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[6,0,1,139,0], +"xref_8php.html":[6,0,1,140], +"xref_8php.html#a9bee399213b8de8226b0d60834307473":[6,0,1,140,0], +"zfinger_8php.html":[6,0,1,141], +"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[6,0,1,141,0], +"zot_8php.html":[6,0,0,82], +"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[6,0,0,82,15], +"zot_8php.html#a084c581d534e7e3b759488b46602288f":[6,0,0,82,20], +"zot_8php.html#a0e3006e7a456b2175a9badc96bc5176d":[6,0,0,82,11], +"zot_8php.html#a0fc2211c5309d9f925ecc4115e3fdb75":[6,0,0,82,9], +"zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[6,0,0,82,6], +"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[6,0,0,82,7], +"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[6,0,0,82,18], +"zot_8php.html#a3920afe14fc1d82020161b4b86bcd9ac":[6,0,0,82,28], +"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[6,0,0,82,5], +"zot_8php.html#a528e97ca5d69c3b7f35c5d954afde315":[6,0,0,82,8], +"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[6,0,0,82,25], +"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[6,0,0,82,31], +"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[6,0,0,82,22], +"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[6,0,0,82,0], +"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[6,0,0,82,30], +"zot_8php.html#a8e22dbc6f884be3644a892a876cbd972":[6,0,0,82,3], +"zot_8php.html#a8eeefdb0dad4c436bea9d1c06c0a7988":[6,0,0,82,12], +"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[6,0,0,82,29], +"zot_8php.html#a95528377d7303131958c9f0b7158fdce":[6,0,0,82,23], +"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[6,0,0,82,14], +"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[6,0,0,82,13], +"zot_8php.html#aa97b33b619dd7132a9274f852af6ceb5":[6,0,0,82,1], +"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[6,0,0,82,16], +"zot_8php.html#ab15c04e7e5f44edf45ec50dd7d183254":[6,0,0,82,17], +"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[6,0,0,82,27], +"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[6,0,0,82,19], +"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[6,0,0,82,32], +"zot_8php.html#ac301c67864917c35922257950ae0f95c":[6,0,0,82,10], +"zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d":[6,0,0,82,4], +"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[6,0,0,82,2], +"zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca":[6,0,0,82,21], +"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[6,0,0,82,24], +"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[6,0,0,82,26], +"zotfeed_8php.html":[6,0,1,142], +"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[6,0,1,142,0], +"zping_8php.html":[6,0,1,143], +"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[6,0,1,143,0] }; diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index cb93f3a10..f78c89c9e 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(), 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().

    +

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

    @@ -716,8 +716,6 @@ Functions
    Returns
    mixed|bool
    -

    Referenced by blog_install().

    - @@ -877,8 +875,6 @@ Functions
    Returns
    mixed
    -

    Referenced by blog_uninstall().

    - diff --git a/doc/html/search/all_24.js b/doc/html/search/all_24.js index f01fe1c9d..8e4fd8d99 100644 --- a/doc/html/search/all_24.js +++ b/doc/html/search/all_24.js @@ -11,7 +11,6 @@ var searchData= ['_24aside',['$aside',['../minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf',1,'minimalisticdarkness.php']]], ['_24auth',['$auth',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad19179bf4ac7f18fafa7e2e3df800142',1,'RedMatrix\RedDAV\RedBrowser\$auth()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#aab6907e7fb7f9f7227f9cd42bdc84eb9',1,'RedMatrix\RedDAV\RedDirectory\$auth()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a21b6e9d420c352f25610a33f57858215',1,'RedMatrix\RedDAV\RedFile\$auth()']]], ['_24baseurl',['$baseurl',['../classApp.html#ad5175536561021548ae8188e24c7b80c',1,'App']]], - ['_24bodyclass',['$bodyclass',['../theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php'],['../theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php']]], ['_24browser',['$browser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3',1,'RedMatrix::RedDAV::RedBasicAuth']]], ['_24called_5fapi',['$called_api',['../include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d',1,'api.php']]], ['_24category',['$category',['../classApp.html#a5cfc098c061b7d765add58fd2ca97445',1,'App']]], @@ -41,6 +40,7 @@ var searchData= ['_24directory_5ffallback_5fservers',['$DIRECTORY_FALLBACK_SERVERS',['../boot_8php.html#a107d53f96acf5319905a34b1870db09a',1,'boot.php']]], ['_24dirs',['$dirs',['../typo_8php.html#a1b709c1d79631ebc8320b41bda028b54',1,'typo.php']]], ['_24dirstack',['$dirstack',['../docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6',1,'docblox_errorchecker.php']]], + ['_24display_5fmode',['$display_mode',['../classItem.html#a88a99e2d1245925867f249f543358e72',1,'Item']]], ['_24done',['$done',['../classTemplate.html#abda4c8d049f70553338eae7c905e9d5c',1,'Template']]], ['_24error',['$error',['../classApp.html#ac1a8b2cd40609b231a560201a08852ba',1,'App\$error()'],['../classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c',1,'dba_driver\$error()']]], ['_24ext_5fpath',['$ext_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#adf8735b3118cdf2f42416edaf42b82e9',1,'RedMatrix::RedDAV::RedDirectory']]], @@ -53,8 +53,6 @@ var searchData= ['_24force_5fmax_5fitems',['$force_max_items',['../classApp.html#ae3f47830543d0d902f66913def8db66b',1,'App']]], ['_24gc_5fprobability',['$gc_probability',['../session_8php.html#a96b09cc763572f45280786a7b33feb7e',1,'session.php']]], ['_24groups',['$groups',['../classApp.html#ac6e6b1c7d6df408580ff79977fcfa656',1,'App']]], - ['_24headimg',['$headimg',['../theme_2blogga_2php_2default_8php.html#ac7062908d1eb80c0735270f7997c4527',1,'$headimg(): default.php'],['../theme_2blogga_2view_2theme_2blog_2default_8php.html#a52d9dd070ed541729088395c22502539',1,'$headimg(): default.php']]], - ['_24headimghome',['$headimghome',['../theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3',1,'$headimghome(): default.php'],['../theme_2blogga_2view_2theme_2blog_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3',1,'$headimghome(): default.php']]], ['_24height',['$height',['../classphoto__driver.html#aea560be5dfba09117d36c12bacbf3b80',1,'photo_driver']]], ['_24hooks',['$hooks',['../classApp.html#a3694aa1907aa103a2adbc71f926f0fa0',1,'App']]], ['_24hostname',['$hostname',['../classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3',1,'App']]], diff --git a/doc/html/search/all_62.js b/doc/html/search/all_62.js index 815f865f4..2f3f402f0 100644 --- a/doc/html/search/all_62.js +++ b/doc/html/search/all_62.js @@ -33,12 +33,6 @@ var searchData= ['blocks_2ephp',['blocks.php',['../blocks_8php.html',1,'']]], ['blocks_5fcontent',['blocks_content',['../blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12',1,'blocks.php']]], ['blocks_5finit',['blocks_init',['../blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9',1,'blocks.php']]], - ['blog_5finit',['blog_init',['../blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php'],['../blogga_2view_2theme_2blog_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php']]], - ['blog_5finstall',['blog_install',['../blogga_2view_2theme_2blog_2theme_8php.html#aae58cc837fe56473d9f3370abfe533ae',1,'theme.php']]], - ['blog_5funinstall',['blog_uninstall',['../blogga_2view_2theme_2blog_2theme_8php.html#a3e77dbe111f330c64a1ff6c741cd515c',1,'theme.php']]], - ['blogtheme_5fdisplay_5fitem',['blogtheme_display_item',['../blogga_2view_2theme_2blog_2theme_8php.html#a028ae8e9f2824670dfa76a6651d817e5',1,'theme.php']]], - ['blogtheme_5fform',['blogtheme_form',['../view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27',1,'blogtheme_form(&$a, $headimg, $headimghome): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27',1,'blogtheme_form(&$a, $headimg, $headimghome): config.php']]], - ['blogtheme_5fimgurl',['blogtheme_imgurl',['../blogga_2view_2theme_2blog_2theme_8php.html#af634a3f721c5e238530d0636d33230ec',1,'theme.php']]], ['bookmark_5fadd',['bookmark_add',['../include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323',1,'bookmarks.php']]], ['bookmarks_2ephp',['bookmarks.php',['../include_2bookmarks_8php.html',1,'']]], ['bookmarks_2ephp',['bookmarks.php',['../mod_2bookmarks_8php.html',1,'']]], diff --git a/doc/html/search/all_63.js b/doc/html/search/all_63.js index 115c8a876..24d8f51c6 100644 --- a/doc/html/search/all_63.js +++ b/doc/html/search/all_63.js @@ -12,8 +12,6 @@ var searchData= ['chanlink_5fcid',['chanlink_cid',['../text_8php.html#a85e3a4851c16674834010d8419a5d7ca',1,'text.php']]], ['chanlink_5fhash',['chanlink_hash',['../text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0',1,'text.php']]], ['chanlink_5furl',['chanlink_url',['../text_8php.html#a2e8d6c402603be3a1256a16605e09c2a',1,'text.php']]], - ['chanman_2ephp',['chanman.php',['../chanman_8php.html',1,'']]], - ['chanman_5fremove_5feverything_5ffrom_5fnetwork',['chanman_remove_everything_from_network',['../chanman_8php.html#a21ba9a5c961e866ff27aee3ee67bf99b',1,'chanman.php']]], ['channel_2ephp',['channel.php',['../channel_8php.html',1,'']]], ['channel_5fcontent',['channel_content',['../channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1',1,'channel.php']]], ['channel_5finit',['channel_init',['../channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc',1,'channel.php']]], @@ -101,11 +99,9 @@ var searchData= ['completeurl',['completeurl',['../parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a',1,'parse_url.php']]], ['concat',['concat',['../classdba__driver.html#ab9982f38a02f008b127a0f3ccc1e99f4',1,'dba_driver\concat()'],['../classdba__postgres.html#a7ea3f24ad260c1e21588f8b5af595caa',1,'dba_postgres\concat()']]], ['config_2emd',['config.md',['../config_8md.html',1,'']]], - ['config_2ephp',['config.php',['../include_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2apw_2php_2config_8php.html',1,'']]], - ['config_2ephp',['config.php',['../view_2theme_2blogga_2php_2config_8php.html',1,'']]], - ['config_2ephp',['config.php',['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2redbasic_2php_2config_8php.html',1,'']]], + ['config_2ephp',['config.php',['../include_2config_8php.html',1,'']]], ['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()'],['../classdba__postgres.html#ab36244320f5b71dba92d9318ccf3f34e',1,'dba_postgres\connect()']]], ['connect_2ephp',['connect.php',['../connect_8php.html',1,'']]], ['connect_5fcontent',['connect_content',['../connect_8php.html#a489f0a66c660de6ec4d6917b27674f07',1,'connect.php']]], @@ -152,6 +148,7 @@ var searchData= ['count_5fcommon_5ffriends',['count_common_friends',['../socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84',1,'socgraph.php']]], ['count_5fcommon_5ffriends_5fzcid',['count_common_friends_zcid',['../socgraph_8php.html#af175807406d94407a5e11742a3287746',1,'socgraph.php']]], ['count_5fdescendants',['count_descendants',['../classItem.html#aca1e66988ed00cd627b2a359b72cd0ae',1,'Item\count_descendants()'],['../conversation_8php.html#ab2383dff4f823e580399ff469d90ab19',1,'count_descendants(): conversation.php']]], + ['count_5funseen_5fdescendants',['count_unseen_descendants',['../classItem.html#ae0c48b2fed5558642549cabd547fc4f3',1,'Item']]], ['create_5faccount',['create_account',['../account_8php.html#a141fe579c351c78209d425473f978eb5',1,'account.php']]], ['create_5fidentity',['create_identity',['../identity_8php.html#a345f4c943d84de502ec6e72d2c813945',1,'identity.php']]], ['create_5fsys_5fchannel',['create_sys_channel',['../identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05',1,'identity.php']]], diff --git a/doc/html/search/all_64.js b/doc/html/search/all_64.js index 27baec009..80578d122 100644 --- a/doc/html/search/all_64.js +++ b/doc/html/search/all_64.js @@ -39,8 +39,6 @@ var searchData= ['dbunescbin',['dbunescbin',['../dba__driver_8php.html#afaaa1a7eff9c1b65b3b8c464ae37640e',1,'dba_driver.php']]], ['decode_5ftags',['decode_tags',['../items_8php.html#a56b2a4abcadfac71175cd50555528cc3',1,'items.php']]], ['default_2ephp',['default.php',['../php_2default_8php.html',1,'']]], - ['default_2ephp',['default.php',['../theme_2blogga_2php_2default_8php.html',1,'']]], - ['default_2ephp',['default.php',['../theme_2blogga_2view_2theme_2blog_2default_8php.html',1,'']]], ['default_2ephp',['default.php',['../theme_2mytheme_2php_2default_8php.html',1,'']]], ['default_5fdb_5fengine',['DEFAULT_DB_ENGINE',['../boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d',1,'boot.php']]], ['del_5fconfig',['del_config',['../include_2config_8php.html#a549910227348003efc3c05c9105c42da',1,'config.php']]], diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js index 75b5d2797..52afe2a73 100644 --- a/doc/html/search/all_67.js +++ b/doc/html/search/all_67.js @@ -40,6 +40,7 @@ var searchData= ['get_5fdiaspora_5freshare_5fxml',['get_diaspora_reshare_xml',['../diaspora_8php.html#ac9e41e46626dc608204bf4b5e16e62d7',1,'diaspora.php']]], ['get_5fdim',['get_dim',['../datetime_8php.html#a7df24d72ea05922d3127363e2295174c',1,'datetime.php']]], ['get_5fdirectory_5frealm',['get_directory_realm',['../boot_8php.html#a329400dcb29897cdaae3020109272285',1,'boot.php']]], + ['get_5fdisplay_5fmode',['get_display_mode',['../classItem.html#a23d4057883f8ed888c0c2ff12d8aa5d0',1,'Item']]], ['get_5fevents',['get_events',['../identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312',1,'identity.php']]], ['get_5ffeatures',['get_features',['../features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c',1,'features.php']]], ['get_5ffeed_5ffor',['get_feed_for',['../items_8php.html#a04a35b610acfe54434df08adec39c0c7',1,'items.php']]], @@ -133,8 +134,8 @@ var searchData= ['gravity_5flike',['GRAVITY_LIKE',['../boot_8php.html#a1f5906598e90b5ea2b4245f682be4348',1,'boot.php']]], ['gravity_5fparent',['GRAVITY_PARENT',['../boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3',1,'boot.php']]], ['greenthumbnails_2ephp',['greenthumbnails.php',['../greenthumbnails_8php.html',1,'']]], - ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]], + ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], ['group_5fadd',['group_add',['../include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce',1,'group.php']]], ['group_5fadd_5fmember',['group_add_member',['../include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b',1,'group.php']]], ['group_5fbyname',['group_byname',['../include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb',1,'group.php']]], diff --git a/doc/html/search/all_68.js b/doc/html/search/all_68.js index 216dd68d1..099b596a2 100644 --- a/doc/html/search/all_68.js +++ b/doc/html/search/all_68.js @@ -20,7 +20,7 @@ var searchData= ['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_5fcontent',['home_content',['../home_8php.html#a6e3dbf78f4ed74ab2577de221190b33f',1,'home.php']]], ['home_5finit',['home_init',['../home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde',1,'home.php']]], ['hostxrd_2ephp',['hostxrd.php',['../hostxrd_8php.html',1,'']]], ['hostxrd_5finit',['hostxrd_init',['../hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92',1,'hostxrd.php']]], diff --git a/doc/html/search/all_72.js b/doc/html/search/all_72.js index 5dc27105f..d589dad92 100644 --- a/doc/html/search/all_72.js +++ b/doc/html/search/all_72.js @@ -12,8 +12,7 @@ var searchData= ['rbmark_5fpost',['rbmark_post',['../rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c',1,'rbmark.php']]], ['rconnect_5furl',['rconnect_url',['../Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91',1,'Contact.php']]], ['rdelim',['rdelim',['../namespacefriendica-to-smarty-tpl.html#a8540514fb7c4aa18ad2dffa2a975036b',1,'friendica-to-smarty-tpl']]], - ['readme_2emd',['README.md',['../apw_2README_8md.html',1,'']]], - ['readme_2emd',['README.md',['../blogga_2php_2README_8md.html',1,'']]], + ['readme_2emd',['README.md',['../README_8md.html',1,'']]], ['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]], ['receive_2ephp',['receive.php',['../receive_8php.html',1,'']]], ['receive_5fpost',['receive_post',['../receive_8php.html#a03d8fa26e77844020ba5602deca7d494',1,'receive.php']]], diff --git a/doc/html/search/all_73.js b/doc/html/search/all_73.js index 070296a98..36bc5bc0a 100644 --- a/doc/html/search/all_73.js +++ b/doc/html/search/all_73.js @@ -40,6 +40,7 @@ var searchData= ['set_5fconfig',['set_config',['../include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a',1,'config.php']]], ['set_5fconversation',['set_conversation',['../classItem.html#aa8b1bbc4236890694635295e46d7fd72',1,'Item']]], ['set_5fdefault_5flogin_5fidentity',['set_default_login_identity',['../identity_8php.html#a78151baf4407a8482d2681a91a9c486b',1,'identity.php']]], + ['set_5fdisplay_5fmode',['set_display_mode',['../classItem.html#ac09a4728d37b7783714243f7f8167214',1,'Item']]], ['set_5fgroups',['set_groups',['../classApp.html#a3d84af5e42082098672531cd1a618853',1,'App']]], ['set_5fhostname',['set_hostname',['../classApp.html#a344d2b7dc2f276648d521aee4da1731c',1,'App']]], ['set_5fmode',['set_mode',['../classConversation.html#a66f121ca4026246f86a732e5faa0682c',1,'Conversation']]], @@ -126,12 +127,12 @@ var searchData= ['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']]], - ['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',['../redbasic_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../stumble_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../suckerberg_2php_2style_8php.html',1,'']]], ['style_2ephp',['style.php',['../apw_2php_2style_8php.html',1,'']]], + ['style_2ephp',['style.php',['../hivenet_2php_2style_8php.html',1,'']]], ['subthread_2ephp',['subthread.php',['../subthread_8php.html',1,'']]], ['subthread_5fcontent',['subthread_content',['../subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3',1,'subthread.php']]], ['suckerberg_5finit',['suckerberg_init',['../suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8',1,'theme.php']]], diff --git a/doc/html/search/all_74.js b/doc/html/search/all_74.js index a3dd387f4..676cbba88 100644 --- a/doc/html/search/all_74.js +++ b/doc/html/search/all_74.js @@ -39,23 +39,18 @@ var searchData= ['text_2ephp',['text.php',['../text_8php.html',1,'']]], ['tgroup_5fcheck',['tgroup_check',['../items_8php.html#a88c6cf7649ac836fbbed82a7a0315110',1,'items.php']]], ['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_5fcontent',['theme_content',['../view_2theme_2apw_2php_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_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_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_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_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']]], diff --git a/doc/html/search/all_75.js b/doc/html/search/all_75.js index 15e56d3ec..e2dfc165c 100644 --- a/doc/html/search/all_75.js +++ b/doc/html/search/all_75.js @@ -25,6 +25,8 @@ var searchData= ['update_5fflags_5fdeleted',['UPDATE_FLAGS_DELETED',['../boot_8php.html#aea392cb26ed617f3a8cde648385b5df0',1,'boot.php']]], ['update_5fflags_5fforced',['UPDATE_FLAGS_FORCED',['../boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d',1,'boot.php']]], ['update_5fflags_5fupdated',['UPDATE_FLAGS_UPDATED',['../boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0',1,'boot.php']]], + ['update_5fhome_2ephp',['update_home.php',['../update__home_8php.html',1,'']]], + ['update_5fhome_5fcontent',['update_home_content',['../update__home_8php.html#a668340089acd150b830134476a647d05',1,'update_home.php']]], ['update_5fimported_5fitem',['update_imported_item',['../zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df',1,'zot.php']]], ['update_5flocal_5fposts_5fstat',['update_local_posts_stat',['../statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa',1,'statistics_fns.php']]], ['update_5fmodtime',['update_modtime',['../zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd',1,'zot.php']]], diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js index 897083582..5bb2d854b 100644 --- a/doc/html/search/all_77.js +++ b/doc/html/search/all_77.js @@ -38,6 +38,7 @@ var searchData= ['widget_5fnotes',['widget_notes',['../widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256',1,'widgets.php']]], ['widget_5fphoto',['widget_photo',['../widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20',1,'widgets.php']]], ['widget_5fphoto_5falbums',['widget_photo_albums',['../widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e',1,'widgets.php']]], + ['widget_5fphoto_5frand',['widget_photo_rand',['../widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380',1,'widgets.php']]], ['widget_5fprofile',['widget_profile',['../widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923',1,'widgets.php']]], ['widget_5fsavedsearch',['widget_savedsearch',['../widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8',1,'widgets.php']]], ['widget_5fsettings_5fmenu',['widget_settings_menu',['../widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01',1,'widgets.php']]], diff --git a/doc/html/search/files_63.js b/doc/html/search/files_63.js index 8a197f3c3..f15bd328a 100644 --- a/doc/html/search/files_63.js +++ b/doc/html/search/files_63.js @@ -1,7 +1,6 @@ var searchData= [ ['cache_2ephp',['cache.php',['../cache_8php.html',1,'']]], - ['chanman_2ephp',['chanman.php',['../chanman_8php.html',1,'']]], ['channel_2ephp',['channel.php',['../channel_8php.html',1,'']]], ['chanview_2ephp',['chanview.php',['../chanview_8php.html',1,'']]], ['chat_2ephp',['chat.php',['../mod_2chat_8php.html',1,'']]], @@ -14,11 +13,9 @@ var searchData= ['comanche_2ephp',['comanche.php',['../comanche_8php.html',1,'']]], ['common_2ephp',['common.php',['../common_8php.html',1,'']]], ['config_2emd',['config.md',['../config_8md.html',1,'']]], - ['config_2ephp',['config.php',['../view_2theme_2blogga_2php_2config_8php.html',1,'']]], - ['config_2ephp',['config.php',['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html',1,'']]], - ['config_2ephp',['config.php',['../view_2theme_2redbasic_2php_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../include_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2apw_2php_2config_8php.html',1,'']]], + ['config_2ephp',['config.php',['../view_2theme_2redbasic_2php_2config_8php.html',1,'']]], ['connect_2ephp',['connect.php',['../connect_8php.html',1,'']]], ['connections_2ephp',['connections.php',['../connections_8php.html',1,'']]], ['connedit_2ephp',['connedit.php',['../connedit_8php.html',1,'']]], diff --git a/doc/html/search/files_64.js b/doc/html/search/files_64.js index 56d04b982..7655469bc 100644 --- a/doc/html/search/files_64.js +++ b/doc/html/search/files_64.js @@ -10,17 +10,15 @@ var searchData= ['dba_5fmysql_2ephp',['dba_mysql.php',['../dba__mysql_8php.html',1,'']]], ['dba_5fmysqli_2ephp',['dba_mysqli.php',['../dba__mysqli_8php.html',1,'']]], ['dba_5fpostgres_2ephp',['dba_postgres.php',['../dba__postgres_8php.html',1,'']]], - ['default_2ephp',['default.php',['../theme_2blogga_2view_2theme_2blog_2default_8php.html',1,'']]], ['default_2ephp',['default.php',['../php_2default_8php.html',1,'']]], - ['default_2ephp',['default.php',['../theme_2blogga_2php_2default_8php.html',1,'']]], ['default_2ephp',['default.php',['../theme_2mytheme_2php_2default_8php.html',1,'']]], ['delegate_2ephp',['delegate.php',['../delegate_8php.html',1,'']]], ['deliver_2ephp',['deliver.php',['../deliver_8php.html',1,'']]], ['diaspora_2ephp',['diaspora.php',['../diaspora_8php.html',1,'']]], ['dimport_2ephp',['dimport.php',['../dimport_8php.html',1,'']]], ['dir_5ffns_2ephp',['dir_fns.php',['../dir__fns_8php.html',1,'']]], - ['directory_2ephp',['directory.php',['../include_2directory_8php.html',1,'']]], ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], + ['directory_2ephp',['directory.php',['../include_2directory_8php.html',1,'']]], ['dirsearch_2ephp',['dirsearch.php',['../dirsearch_8php.html',1,'']]], ['display_2ephp',['display.php',['../display_8php.html',1,'']]], ['docblox_5ferrorchecker_2ephp',['docblox_errorchecker.php',['../docblox__errorchecker_8php.html',1,'']]] diff --git a/doc/html/search/files_72.js b/doc/html/search/files_72.js index 73bd22015..c61471237 100644 --- a/doc/html/search/files_72.js +++ b/doc/html/search/files_72.js @@ -2,8 +2,7 @@ var searchData= [ ['randprof_2ephp',['randprof.php',['../randprof_8php.html',1,'']]], ['rbmark_2ephp',['rbmark.php',['../rbmark_8php.html',1,'']]], - ['readme_2emd',['README.md',['../apw_2README_8md.html',1,'']]], - ['readme_2emd',['README.md',['../blogga_2php_2README_8md.html',1,'']]], + ['readme_2emd',['README.md',['../README_8md.html',1,'']]], ['receive_2ephp',['receive.php',['../receive_8php.html',1,'']]], ['redable_2ephp',['redable.php',['../redable_8php.html',1,'']]], ['redbasic_2ephp',['redbasic.php',['../redbasic_8php.html',1,'']]], diff --git a/doc/html/search/files_74.js b/doc/html/search/files_74.js index ecd4ad809..12f380367 100644 --- a/doc/html/search/files_74.js +++ b/doc/html/search/files_74.js @@ -5,18 +5,15 @@ 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',['../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',['../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_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',['../suckerberg_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../apw_2php_2theme_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_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',['../php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], ['thing_2ephp',['thing.php',['../thing_8php.html',1,'']]], ['toggle_5fmobile_2ephp',['toggle_mobile.php',['../toggle__mobile_8php.html',1,'']]], ['toggle_5fsafesearch_2ephp',['toggle_safesearch.php',['../toggle__safesearch_8php.html',1,'']]], diff --git a/doc/html/search/files_75.js b/doc/html/search/files_75.js index 33a82596e..440a0e7f0 100644 --- a/doc/html/search/files_75.js +++ b/doc/html/search/files_75.js @@ -3,6 +3,7 @@ var searchData= ['uexport_2ephp',['uexport.php',['../uexport_8php.html',1,'']]], ['update_5fchannel_2ephp',['update_channel.php',['../update__channel_8php.html',1,'']]], ['update_5fdisplay_2ephp',['update_display.php',['../update__display_8php.html',1,'']]], + ['update_5fhome_2ephp',['update_home.php',['../update__home_8php.html',1,'']]], ['update_5fnetwork_2ephp',['update_network.php',['../update__network_8php.html',1,'']]], ['update_5fsearch_2ephp',['update_search.php',['../update__search_8php.html',1,'']]], ['updatetpl_2epy',['updatetpl.py',['../updatetpl_8py.html',1,'']]] diff --git a/doc/html/search/functions_62.js b/doc/html/search/functions_62.js index a3a830a4d..88ff6e73e 100644 --- a/doc/html/search/functions_62.js +++ b/doc/html/search/functions_62.js @@ -27,12 +27,6 @@ var searchData= ['block_5finit',['block_init',['../block_8php.html#a9b61c96044ed2a068f18c10370a78d5c',1,'block.php']]], ['blocks_5fcontent',['blocks_content',['../blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12',1,'blocks.php']]], ['blocks_5finit',['blocks_init',['../blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9',1,'blocks.php']]], - ['blog_5finit',['blog_init',['../blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php'],['../blogga_2view_2theme_2blog_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php']]], - ['blog_5finstall',['blog_install',['../blogga_2view_2theme_2blog_2theme_8php.html#aae58cc837fe56473d9f3370abfe533ae',1,'theme.php']]], - ['blog_5funinstall',['blog_uninstall',['../blogga_2view_2theme_2blog_2theme_8php.html#a3e77dbe111f330c64a1ff6c741cd515c',1,'theme.php']]], - ['blogtheme_5fdisplay_5fitem',['blogtheme_display_item',['../blogga_2view_2theme_2blog_2theme_8php.html#a028ae8e9f2824670dfa76a6651d817e5',1,'theme.php']]], - ['blogtheme_5fform',['blogtheme_form',['../view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27',1,'blogtheme_form(&$a, $headimg, $headimghome): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27',1,'blogtheme_form(&$a, $headimg, $headimghome): config.php']]], - ['blogtheme_5fimgurl',['blogtheme_imgurl',['../blogga_2view_2theme_2blog_2theme_8php.html#af634a3f721c5e238530d0636d33230ec',1,'theme.php']]], ['bookmark_5fadd',['bookmark_add',['../include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323',1,'bookmarks.php']]], ['bookmarks_5fcontent',['bookmarks_content',['../mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a',1,'bookmarks.php']]], ['bookmarks_5finit',['bookmarks_init',['../mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3',1,'bookmarks.php']]], diff --git a/doc/html/search/functions_63.js b/doc/html/search/functions_63.js index 6a5e70b0b..d2161dc62 100644 --- a/doc/html/search/functions_63.js +++ b/doc/html/search/functions_63.js @@ -10,7 +10,6 @@ var searchData= ['chanlink_5fcid',['chanlink_cid',['../text_8php.html#a85e3a4851c16674834010d8419a5d7ca',1,'text.php']]], ['chanlink_5fhash',['chanlink_hash',['../text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0',1,'text.php']]], ['chanlink_5furl',['chanlink_url',['../text_8php.html#a2e8d6c402603be3a1256a16605e09c2a',1,'text.php']]], - ['chanman_5fremove_5feverything_5ffrom_5fnetwork',['chanman_remove_everything_from_network',['../chanman_8php.html#a21ba9a5c961e866ff27aee3ee67bf99b',1,'chanman.php']]], ['channel_5fcontent',['channel_content',['../channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1',1,'channel.php']]], ['channel_5finit',['channel_init',['../channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc',1,'channel.php']]], ['channel_5fremove',['channel_remove',['../Contact_8php.html#a4e8af0f0525161da74583c04b8b03097',1,'Contact.php']]], @@ -117,6 +116,7 @@ var searchData= ['count_5fcommon_5ffriends',['count_common_friends',['../socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84',1,'socgraph.php']]], ['count_5fcommon_5ffriends_5fzcid',['count_common_friends_zcid',['../socgraph_8php.html#af175807406d94407a5e11742a3287746',1,'socgraph.php']]], ['count_5fdescendants',['count_descendants',['../classItem.html#aca1e66988ed00cd627b2a359b72cd0ae',1,'Item\count_descendants()'],['../conversation_8php.html#ab2383dff4f823e580399ff469d90ab19',1,'count_descendants(): conversation.php']]], + ['count_5funseen_5fdescendants',['count_unseen_descendants',['../classItem.html#ae0c48b2fed5558642549cabd547fc4f3',1,'Item']]], ['create_5faccount',['create_account',['../account_8php.html#a141fe579c351c78209d425473f978eb5',1,'account.php']]], ['create_5fidentity',['create_identity',['../identity_8php.html#a345f4c943d84de502ec6e72d2c813945',1,'identity.php']]], ['create_5fsys_5fchannel',['create_sys_channel',['../identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05',1,'identity.php']]], diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js index fb3c90c50..4877f2c96 100644 --- a/doc/html/search/functions_67.js +++ b/doc/html/search/functions_67.js @@ -40,6 +40,7 @@ var searchData= ['get_5fdiaspora_5freshare_5fxml',['get_diaspora_reshare_xml',['../diaspora_8php.html#ac9e41e46626dc608204bf4b5e16e62d7',1,'diaspora.php']]], ['get_5fdim',['get_dim',['../datetime_8php.html#a7df24d72ea05922d3127363e2295174c',1,'datetime.php']]], ['get_5fdirectory_5frealm',['get_directory_realm',['../boot_8php.html#a329400dcb29897cdaae3020109272285',1,'boot.php']]], + ['get_5fdisplay_5fmode',['get_display_mode',['../classItem.html#a23d4057883f8ed888c0c2ff12d8aa5d0',1,'Item']]], ['get_5fevents',['get_events',['../identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312',1,'identity.php']]], ['get_5ffeatures',['get_features',['../features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c',1,'features.php']]], ['get_5ffeed_5ffor',['get_feed_for',['../items_8php.html#a04a35b610acfe54434df08adec39c0c7',1,'items.php']]], diff --git a/doc/html/search/functions_68.js b/doc/html/search/functions_68.js index 481991cb0..7282a79c8 100644 --- a/doc/html/search/functions_68.js +++ b/doc/html/search/functions_68.js @@ -17,7 +17,7 @@ var searchData= ['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_5fcontent',['home_content',['../home_8php.html#a6e3dbf78f4ed74ab2577de221190b33f',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']]], ['html2bb_5fvideo',['html2bb_video',['../text_8php.html#a138a3a611fa7f4f3630674145fc826bf',1,'text.php']]], diff --git a/doc/html/search/functions_73.js b/doc/html/search/functions_73.js index 664612fe6..e8bdb8e03 100644 --- a/doc/html/search/functions_73.js +++ b/doc/html/search/functions_73.js @@ -35,6 +35,7 @@ var searchData= ['set_5fconfig',['set_config',['../include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a',1,'config.php']]], ['set_5fconversation',['set_conversation',['../classItem.html#aa8b1bbc4236890694635295e46d7fd72',1,'Item']]], ['set_5fdefault_5flogin_5fidentity',['set_default_login_identity',['../identity_8php.html#a78151baf4407a8482d2681a91a9c486b',1,'identity.php']]], + ['set_5fdisplay_5fmode',['set_display_mode',['../classItem.html#ac09a4728d37b7783714243f7f8167214',1,'Item']]], ['set_5fgroups',['set_groups',['../classApp.html#a3d84af5e42082098672531cd1a618853',1,'App']]], ['set_5fhostname',['set_hostname',['../classApp.html#a344d2b7dc2f276648d521aee4da1731c',1,'App']]], ['set_5fmode',['set_mode',['../classConversation.html#a66f121ca4026246f86a732e5faa0682c',1,'Conversation']]], diff --git a/doc/html/search/functions_74.js b/doc/html/search/functions_74.js index 412bc29e2..54d918d35 100644 --- a/doc/html/search/functions_74.js +++ b/doc/html/search/functions_74.js @@ -15,12 +15,10 @@ var searchData= ['term_5fquery',['term_query',['../taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c',1,'taxonomy.php']]], ['termtype',['termtype',['../items_8php.html#ad34827ed330898456783fb14c7b46154',1,'items.php']]], ['tgroup_5fcheck',['tgroup_check',['../items_8php.html#a88c6cf7649ac836fbbed82a7a0315110',1,'items.php']]], - ['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_5fcontent',['theme_content',['../view_2theme_2apw_2php_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_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_5fpost',['theme_post',['../view_2theme_2apw_2php_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_5fcontent',['thing_content',['../thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b',1,'thing.php']]], ['thing_5finit',['thing_init',['../thing_8php.html#a8be23b1d475ec3d9291999221c674c80',1,'thing.php']]], diff --git a/doc/html/search/functions_75.js b/doc/html/search/functions_75.js index 52f05caea..d9c275694 100644 --- a/doc/html/search/functions_75.js +++ b/doc/html/search/functions_75.js @@ -18,6 +18,7 @@ var searchData= ['update_5fdirectory_5fentry',['update_directory_entry',['../dir__fns_8php.html#a44062d4b471d1e83f92f6c184585aa13',1,'dir_fns.php']]], ['update_5fdisplay_5fcontent',['update_display_content',['../update__display_8php.html#aa36ac524059e209d5d75a03c16206246',1,'update_display.php']]], ['update_5ffeed_5fitem',['update_feed_item',['../items_8php.html#a9b449eeae50003414b8b30ca927af434',1,'items.php']]], + ['update_5fhome_5fcontent',['update_home_content',['../update__home_8php.html#a668340089acd150b830134476a647d05',1,'update_home.php']]], ['update_5fimported_5fitem',['update_imported_item',['../zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df',1,'zot.php']]], ['update_5flocal_5fposts_5fstat',['update_local_posts_stat',['../statistics__fns_8php.html#a9dd516dda693f17f5ce48a94876f7efa',1,'statistics_fns.php']]], ['update_5fmodtime',['update_modtime',['../zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd',1,'zot.php']]], diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js index 7d2339a7a..9912f6937 100644 --- a/doc/html/search/functions_77.js +++ b/doc/html/search/functions_77.js @@ -31,6 +31,7 @@ var searchData= ['widget_5fnotes',['widget_notes',['../widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256',1,'widgets.php']]], ['widget_5fphoto',['widget_photo',['../widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20',1,'widgets.php']]], ['widget_5fphoto_5falbums',['widget_photo_albums',['../widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e',1,'widgets.php']]], + ['widget_5fphoto_5frand',['widget_photo_rand',['../widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380',1,'widgets.php']]], ['widget_5fprofile',['widget_profile',['../widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923',1,'widgets.php']]], ['widget_5fsavedsearch',['widget_savedsearch',['../widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8',1,'widgets.php']]], ['widget_5fsettings_5fmenu',['widget_settings_menu',['../widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01',1,'widgets.php']]], diff --git a/doc/html/search/variables_24.js b/doc/html/search/variables_24.js index f01fe1c9d..8e4fd8d99 100644 --- a/doc/html/search/variables_24.js +++ b/doc/html/search/variables_24.js @@ -11,7 +11,6 @@ var searchData= ['_24aside',['$aside',['../minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf',1,'minimalisticdarkness.php']]], ['_24auth',['$auth',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#ad19179bf4ac7f18fafa7e2e3df800142',1,'RedMatrix\RedDAV\RedBrowser\$auth()'],['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#aab6907e7fb7f9f7227f9cd42bdc84eb9',1,'RedMatrix\RedDAV\RedDirectory\$auth()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a21b6e9d420c352f25610a33f57858215',1,'RedMatrix\RedDAV\RedFile\$auth()']]], ['_24baseurl',['$baseurl',['../classApp.html#ad5175536561021548ae8188e24c7b80c',1,'App']]], - ['_24bodyclass',['$bodyclass',['../theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php'],['../theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php']]], ['_24browser',['$browser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3',1,'RedMatrix::RedDAV::RedBasicAuth']]], ['_24called_5fapi',['$called_api',['../include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d',1,'api.php']]], ['_24category',['$category',['../classApp.html#a5cfc098c061b7d765add58fd2ca97445',1,'App']]], @@ -41,6 +40,7 @@ var searchData= ['_24directory_5ffallback_5fservers',['$DIRECTORY_FALLBACK_SERVERS',['../boot_8php.html#a107d53f96acf5319905a34b1870db09a',1,'boot.php']]], ['_24dirs',['$dirs',['../typo_8php.html#a1b709c1d79631ebc8320b41bda028b54',1,'typo.php']]], ['_24dirstack',['$dirstack',['../docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6',1,'docblox_errorchecker.php']]], + ['_24display_5fmode',['$display_mode',['../classItem.html#a88a99e2d1245925867f249f543358e72',1,'Item']]], ['_24done',['$done',['../classTemplate.html#abda4c8d049f70553338eae7c905e9d5c',1,'Template']]], ['_24error',['$error',['../classApp.html#ac1a8b2cd40609b231a560201a08852ba',1,'App\$error()'],['../classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c',1,'dba_driver\$error()']]], ['_24ext_5fpath',['$ext_path',['../classRedMatrix_1_1RedDAV_1_1RedDirectory.html#adf8735b3118cdf2f42416edaf42b82e9',1,'RedMatrix::RedDAV::RedDirectory']]], @@ -53,8 +53,6 @@ var searchData= ['_24force_5fmax_5fitems',['$force_max_items',['../classApp.html#ae3f47830543d0d902f66913def8db66b',1,'App']]], ['_24gc_5fprobability',['$gc_probability',['../session_8php.html#a96b09cc763572f45280786a7b33feb7e',1,'session.php']]], ['_24groups',['$groups',['../classApp.html#ac6e6b1c7d6df408580ff79977fcfa656',1,'App']]], - ['_24headimg',['$headimg',['../theme_2blogga_2php_2default_8php.html#ac7062908d1eb80c0735270f7997c4527',1,'$headimg(): default.php'],['../theme_2blogga_2view_2theme_2blog_2default_8php.html#a52d9dd070ed541729088395c22502539',1,'$headimg(): default.php']]], - ['_24headimghome',['$headimghome',['../theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3',1,'$headimghome(): default.php'],['../theme_2blogga_2view_2theme_2blog_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3',1,'$headimghome(): default.php']]], ['_24height',['$height',['../classphoto__driver.html#aea560be5dfba09117d36c12bacbf3b80',1,'photo_driver']]], ['_24hooks',['$hooks',['../classApp.html#a3694aa1907aa103a2adbc71f926f0fa0',1,'App']]], ['_24hostname',['$hostname',['../classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3',1,'App']]], diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index 2f7400c3b..0052cfeb7 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -370,7 +370,7 @@ Variables @@ -1075,7 +1075,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(), discover_by_url(), discover_by_webbie(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), find_diaspora_person_by_handle(), fix_private_photos(), fix_system_urls(), RedMatrix\RedDAV\RedFile\get(), get_atom_elements(), get_diaspora_key(), get_diaspora_reshare_xml(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), group_content(), guess_image_type(), http_status_exit(), hubloc_change_primary(), impel_init(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), old_webfinger(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), prune_hub_reinstalls(), public_recips(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), rbmark_post(), receive_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), scale_external_images(), scrape_feed(), scrape_vcard(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), start_delivery_chain(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_feed_item(), update_imported_item(), update_queue_time(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), verify_email_address(), xml2array(), xml_status(), z_fetch_url(), z_post_url(), zfinger_init(), zid_init(), zot_build_packet(), zot_feed(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

    +

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

    @@ -1681,8 +1681,6 @@ Variables
    -

    Referenced by conversation().

    -
    @@ -1826,7 +1824,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(), 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().

    +

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

    @@ -2262,7 +2260,7 @@ Variables diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index c9190a281..1e328eb91 100644 --- a/doc/html/typo_8php.html +++ b/doc/html/typo_8php.html @@ -134,7 +134,7 @@ Variables
    -

    Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), advanced_profile(), allowed_email(), allowed_url(), alt_pager(), api_account_verify_credentials(), api_albums(), api_apply_template(), api_call(), api_content(), api_direct_messages_all(), api_direct_messages_box(), api_direct_messages_conversation(), api_direct_messages_inbox(), api_direct_messages_new(), api_direct_messages_sentbox(), api_favorites(), api_followers_ids(), api_format_as(), api_format_items(), api_friends_ids(), api_get_user(), api_item_get_user(), api_login(), api_photos(), api_post(), api_rss_extra(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_followers(), api_statuses_friends(), api_statuses_home_timeline(), api_statuses_mediap(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_statusnet_config(), api_users_show(), app_name_compare(), appman_content(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), block_content(), block_init(), blocks_content(), blocks_init(), 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(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), ev_compare(), event_store_item(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_init(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), hivenet_init(), home_content(), home_init(), hostxrd_init(), impel_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), layouts_init(), like_content(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_pdl(), load_translation_table(), load_xconfig(), locs_content(), locs_post(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), p_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), regver_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), search_ac_init(), search_content(), search_init(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_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(), webpages_init(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_item(), widget_mailmenu(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

    +

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

    diff --git a/doc/html/update__home_8php.html b/doc/html/update__home_8php.html new file mode 100644 index 000000000..ce5a5581e --- /dev/null +++ b/doc/html/update__home_8php.html @@ -0,0 +1,137 @@ + + + + + + +The Red Matrix: mod/update_home.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    update_home.php File Reference
    +
    +
    + + + + +

    +Functions

     update_home_content (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    update_home_content ($a)
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/update__home_8php.js b/doc/html/update__home_8php.js new file mode 100644 index 000000000..eda951a37 --- /dev/null +++ b/doc/html/update__home_8php.js @@ -0,0 +1,4 @@ +var update__home_8php = +[ + [ "update_home_content", "update__home_8php.html#a668340089acd150b830134476a647d05", null ] +]; \ No newline at end of file diff --git a/doc/html/widgets_8php.html b/doc/html/widgets_8php.html index 2701a39a7..b4edc2bce 100644 --- a/doc/html/widgets_8php.html +++ b/doc/html/widgets_8php.html @@ -174,6 +174,8 @@ Functions    widget_photo ($arr)   + widget_photo_rand ($arr) + 

    Function Documentation

    @@ -552,6 +554,22 @@ Functions
    +
    + + +
    +
    + + + + + + + + +
    widget_photo_rand ( $arr)
    +
    +
    diff --git a/doc/html/widgets_8php.js b/doc/html/widgets_8php.js index 005294da8..d060b46c7 100644 --- a/doc/html/widgets_8php.js +++ b/doc/html/widgets_8php.js @@ -23,6 +23,7 @@ var widgets_8php = [ "widget_notes", "widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256", null ], [ "widget_photo", "widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20", null ], [ "widget_photo_albums", "widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e", null ], + [ "widget_photo_rand", "widgets_8php.html#af8eb466ef91d9e96e13335ead5eba380", null ], [ "widget_profile", "widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923", null ], [ "widget_savedsearch", "widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8", null ], [ "widget_settings_menu", "widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01", null ], From b16f93883077a3637d055a4c70a28ef0c994efec Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 22 Nov 2014 12:26:04 -0800 Subject: [PATCH 165/176] random block widget --- doc/Widgets.md | 7 + include/widgets.php | 41 + util/messages.po | 6799 ++++++++++++++++++++++--------------------- version.inc | 2 +- 4 files changed, 3461 insertions(+), 3388 deletions(-) diff --git a/doc/Widgets.md b/doc/Widgets.md index 2c5625156..68f9e4cea 100644 --- a/doc/Widgets.md +++ b/doc/Widgets.md @@ -90,5 +90,12 @@ Some/many of these widgets have restrictions which may restrict the type of page * album - album name (very strongly recommended if you have lots of photos) * scale - typically 0 (original size), 1 (640px), or 2 (320px) * style - CSS style string + * channel_id - if not your own +
     
    + +* random_block - display a random block element from your webpage design tools collection. Permissions are honoured. + * args: + * contains - only return blocks which include the contains string in the block name + * channel_id - if not your own
     
    diff --git a/include/widgets.php b/include/widgets.php index 076a8fa91..a25139558 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -874,3 +874,44 @@ function widget_photo_rand($arr) { return $o; } + + +function widget_random_block($arr) { + + $channel_id = 0; + if(array_key_exists('channel_id',$arr) && intval($arr['channel_id'])) + $channel_id = intval($arr['channel_id']); + if(! $channel_id) + $channel_id = get_app()->profile_uid; + if(! $channel_id) + return ''; + + if(array_key_exists('contains',$arr)) + $contains = $arr['contains']; + + $o = ''; + + require_once('include/security.php'); + $sql_options = item_permissions_sql($channel_id); + + $randfunc = db_getfunc('RAND'); + + $r = q("select item.* from item left join item_id on item.id = item_id.iid + where item.uid = %d and sid like '%s' and service = 'BUILDBLOCK' and + item_restrict = %d $sql_options order by $randfunc limit 1", + intval($channel_id), + dbesc('%' . $contains . '%'), + intval(ITEM_BUILDBLOCK) + ); + + if($r) { + $o = '
    '; + if($r[0]['title']) + $o .= '

    ' . $r[0]['title'] . '

    '; + $o .= prepare_text($r[0]['body'],$r[0]['mimetype']); + $o .= '
    '; + + } + return $o; + +} \ No newline at end of file diff --git a/util/messages.po b/util/messages.po index 0ebff50f2..e59fdd1fa 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-11-14.859\n" +"Project-Id-Version: 2014-11-21.866\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-14 00:04-0800\n" +"POT-Creation-Date: 2014-11-21 00:03-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,21 +17,21 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../include/dba/dba_driver.php:132 +#: ../../include/dba/dba_driver.php:136 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 -#: ../../mod/photos.php:91 ../../mod/photos.php:654 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 +#: ../../mod/profile_photo.php:423 ../../mod/photos.php:91 +#: ../../mod/photos.php:654 msgid "Profile Photos" msgstr "" -#: ../../include/conversation.php:120 ../../include/diaspora.php:1923 -#: ../../include/text.php:1747 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:298 +#: ../../include/conversation.php:120 ../../include/text.php:1747 +#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:45 msgid "photo" msgstr "" @@ -44,9 +44,9 @@ msgstr "" msgid "channel" msgstr "" -#: ../../include/conversation.php:148 ../../include/diaspora.php:1923 -#: ../../include/text.php:1753 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:298 +#: ../../include/conversation.php:148 ../../include/text.php:1753 +#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:53 msgid "status" msgstr "" @@ -55,13 +55,13 @@ msgstr "" msgid "comment" msgstr "" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1952 -#: ../../mod/like.php:344 +#: ../../include/conversation.php:164 ../../include/diaspora.php:1957 +#: ../../mod/like.php:336 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../include/conversation.php:167 ../../mod/like.php:346 +#: ../../include/conversation.php:167 ../../mod/like.php:338 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" @@ -86,471 +86,503 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "" -#: ../../include/conversation.php:637 ../../include/ItemObject.php:126 +#: ../../include/conversation.php:633 ../../include/ItemObject.php:126 msgid "Select" msgstr "" -#: ../../include/conversation.php:638 ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/conversation.php:634 ../../include/RedDAV/RedBrowser.php:251 #: ../../include/apps.php:250 ../../include/ItemObject.php:120 -#: ../../mod/photos.php:1069 ../../mod/connedit.php:476 -#: ../../mod/thing.php:234 ../../mod/settings.php:612 ../../mod/group.php:176 -#: ../../mod/admin.php:730 ../../mod/admin.php:861 +#: ../../mod/settings.php:626 ../../mod/connedit.php:476 +#: ../../mod/thing.php:234 ../../mod/group.php:176 ../../mod/admin.php:730 +#: ../../mod/admin.php:861 ../../mod/photos.php:1070 msgid "Delete" msgstr "" -#: ../../include/conversation.php:645 ../../include/ItemObject.php:89 +#: ../../include/conversation.php:641 ../../include/ItemObject.php:89 msgid "Private Message" msgstr "" -#: ../../include/conversation.php:652 ../../include/ItemObject.php:194 +#: ../../include/conversation.php:648 ../../include/ItemObject.php:194 msgid "Message signature validated" msgstr "" -#: ../../include/conversation.php:653 ../../include/ItemObject.php:195 +#: ../../include/conversation.php:649 ../../include/ItemObject.php:195 msgid "Message signature incorrect" msgstr "" -#: ../../include/conversation.php:674 +#: ../../include/conversation.php:670 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: ../../include/conversation.php:689 +#: ../../include/conversation.php:685 msgid "Categories:" msgstr "" -#: ../../include/conversation.php:690 +#: ../../include/conversation.php:686 msgid "Filed under:" msgstr "" -#: ../../include/conversation.php:698 ../../include/ItemObject.php:265 +#: ../../include/conversation.php:694 ../../include/ItemObject.php:266 #, php-format msgid " from %s" msgstr "" -#: ../../include/conversation.php:701 ../../include/ItemObject.php:268 +#: ../../include/conversation.php:697 ../../include/ItemObject.php:269 #, php-format msgid "last edited: %s" msgstr "" -#: ../../include/conversation.php:702 ../../include/ItemObject.php:269 +#: ../../include/conversation.php:698 ../../include/ItemObject.php:270 #, php-format msgid "Expires: %s" msgstr "" -#: ../../include/conversation.php:717 +#: ../../include/conversation.php:713 msgid "View in context" msgstr "" -#: ../../include/conversation.php:719 ../../include/conversation.php:1153 -#: ../../include/ItemObject.php:310 ../../mod/photos.php:977 -#: ../../mod/editblock.php:152 ../../mod/editlayout.php:148 -#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:183 -#: ../../mod/mail.php:234 ../../mod/mail.php:349 +#: ../../include/conversation.php:715 ../../include/conversation.php:1137 +#: ../../include/ItemObject.php:317 ../../mod/editblock.php:152 +#: ../../mod/editlayout.php:148 ../../mod/editpost.php:121 +#: ../../mod/editwebpage.php:183 ../../mod/mail.php:238 ../../mod/mail.php:353 +#: ../../mod/photos.php:978 msgid "Please wait" msgstr "" -#: ../../include/conversation.php:843 +#: ../../include/conversation.php:831 msgid "remove" msgstr "" -#: ../../include/conversation.php:847 ../../include/nav.php:257 +#: ../../include/conversation.php:835 ../../include/nav.php:257 msgid "Loading..." msgstr "" -#: ../../include/conversation.php:848 +#: ../../include/conversation.php:836 msgid "Delete Selected Items" msgstr "" -#: ../../include/conversation.php:942 +#: ../../include/conversation.php:926 msgid "View Source" msgstr "" -#: ../../include/conversation.php:943 +#: ../../include/conversation.php:927 msgid "Follow Thread" msgstr "" -#: ../../include/conversation.php:944 +#: ../../include/conversation.php:928 msgid "View Status" msgstr "" -#: ../../include/conversation.php:945 ../../include/nav.php:99 +#: ../../include/conversation.php:929 ../../include/nav.php:99 #: ../../mod/connedit.php:429 ../../mod/connedit.php:544 msgid "View Profile" msgstr "" -#: ../../include/conversation.php:946 +#: ../../include/conversation.php:930 msgid "View Photos" msgstr "" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:931 msgid "Matrix Activity" msgstr "" -#: ../../include/conversation.php:948 ../../include/widgets.php:135 -#: ../../include/widgets.php:175 ../../include/Contact.php:107 -#: ../../include/identity.php:840 ../../mod/directory.php:224 -#: ../../mod/suggest.php:51 ../../mod/match.php:62 +#: ../../include/conversation.php:932 ../../include/identity.php:840 +#: ../../include/widgets.php:135 ../../include/widgets.php:175 +#: ../../include/Contact.php:107 ../../mod/suggest.php:51 +#: ../../mod/match.php:62 ../../mod/directory.php:224 msgid "Connect" msgstr "" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:933 msgid "Edit Contact" msgstr "" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:934 msgid "Send PM" msgstr "" -#: ../../include/conversation.php:951 ../../include/apps.php:143 +#: ../../include/conversation.php:935 ../../include/apps.php:143 msgid "Poke" msgstr "" -#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 +#: ../../include/conversation.php:987 ../../include/RedDAV/RedBrowser.php:163 #: ../../include/apps.php:331 ../../include/apps.php:382 -#: ../../mod/photos.php:713 ../../mod/photos.php:1131 -#: ../../mod/connedit.php:512 +#: ../../mod/connedit.php:512 ../../mod/photos.php:713 +#: ../../mod/photos.php:1132 msgid "Unknown" msgstr "" -#: ../../include/conversation.php:1024 +#: ../../include/conversation.php:1008 #, php-format msgid "%s likes this." msgstr "" -#: ../../include/conversation.php:1024 +#: ../../include/conversation.php:1008 #, php-format msgid "%s doesn't like this." msgstr "" -#: ../../include/conversation.php:1028 +#: ../../include/conversation.php:1012 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1030 +#: ../../include/conversation.php:1014 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1036 +#: ../../include/conversation.php:1020 msgid "and" msgstr "" -#: ../../include/conversation.php:1039 +#: ../../include/conversation.php:1023 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1040 +#: ../../include/conversation.php:1024 #, php-format msgid "%s like this." msgstr "" -#: ../../include/conversation.php:1040 +#: ../../include/conversation.php:1024 #, php-format msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:1097 +#: ../../include/conversation.php:1081 msgid "Visible to everybody" msgstr "" -#: ../../include/conversation.php:1098 ../../mod/mail.php:170 -#: ../../mod/mail.php:282 +#: ../../include/conversation.php:1082 ../../mod/mail.php:171 +#: ../../mod/mail.php:286 msgid "Please enter a link URL:" msgstr "" -#: ../../include/conversation.php:1099 +#: ../../include/conversation.php:1083 msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/conversation.php:1100 +#: ../../include/conversation.php:1084 msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/conversation.php:1101 +#: ../../include/conversation.php:1085 msgid "Tag term:" msgstr "" -#: ../../include/conversation.php:1102 ../../mod/filer.php:49 +#: ../../include/conversation.php:1086 ../../mod/filer.php:49 msgid "Save to Folder:" msgstr "" -#: ../../include/conversation.php:1103 +#: ../../include/conversation.php:1087 msgid "Where are you right now?" msgstr "" -#: ../../include/conversation.php:1104 ../../mod/editpost.php:52 -#: ../../mod/mail.php:171 ../../mod/mail.php:283 +#: ../../include/conversation.php:1088 ../../mod/editpost.php:52 +#: ../../mod/mail.php:172 ../../mod/mail.php:287 msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../include/conversation.php:1114 ../../include/page_widgets.php:40 -#: ../../include/ItemObject.php:608 ../../mod/photos.php:997 -#: ../../mod/webpages.php:166 ../../mod/editblock.php:173 -#: ../../mod/editlayout.php:168 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:205 +#: ../../include/conversation.php:1098 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:630 ../../mod/webpages.php:166 +#: ../../mod/editblock.php:173 ../../mod/editlayout.php:168 +#: ../../mod/editpost.php:140 ../../mod/editwebpage.php:205 +#: ../../mod/photos.php:998 msgid "Preview" msgstr "" -#: ../../include/conversation.php:1128 ../../mod/photos.php:976 -#: ../../mod/editblock.php:198 ../../mod/editlayout.php:193 -#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 +#: ../../include/conversation.php:1112 ../../mod/editblock.php:198 +#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 +#: ../../mod/layouts.php:168 ../../mod/photos.php:977 msgid "Share" msgstr "" -#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:170 +#: ../../include/conversation.php:1114 ../../mod/editwebpage.php:170 msgid "Page link title" msgstr "" -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1117 msgid "Post as" msgstr "" -#: ../../include/conversation.php:1134 ../../mod/editblock.php:144 +#: ../../include/conversation.php:1118 ../../mod/editblock.php:144 #: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:231 ../../mod/mail.php:345 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:235 ../../mod/mail.php:349 msgid "Upload photo" msgstr "" -#: ../../include/conversation.php:1135 +#: ../../include/conversation.php:1119 msgid "upload photo" msgstr "" -#: ../../include/conversation.php:1136 ../../mod/editblock.php:145 +#: ../../include/conversation.php:1120 ../../mod/editblock.php:145 #: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:232 ../../mod/mail.php:346 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:236 ../../mod/mail.php:350 msgid "Attach file" msgstr "" -#: ../../include/conversation.php:1137 +#: ../../include/conversation.php:1121 msgid "attach file" msgstr "" -#: ../../include/conversation.php:1138 ../../mod/editblock.php:146 +#: ../../include/conversation.php:1122 ../../mod/editblock.php:146 #: ../../mod/editlayout.php:142 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:233 ../../mod/mail.php:347 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:237 ../../mod/mail.php:351 msgid "Insert web link" msgstr "" -#: ../../include/conversation.php:1139 +#: ../../include/conversation.php:1123 msgid "web link" msgstr "" -#: ../../include/conversation.php:1140 +#: ../../include/conversation.php:1124 msgid "Insert video link" msgstr "" -#: ../../include/conversation.php:1141 +#: ../../include/conversation.php:1125 msgid "video link" msgstr "" -#: ../../include/conversation.php:1142 +#: ../../include/conversation.php:1126 msgid "Insert audio link" msgstr "" -#: ../../include/conversation.php:1143 +#: ../../include/conversation.php:1127 msgid "audio link" msgstr "" -#: ../../include/conversation.php:1144 ../../mod/editblock.php:150 +#: ../../include/conversation.php:1128 ../../mod/editblock.php:150 #: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 #: ../../mod/editwebpage.php:181 msgid "Set your location" msgstr "" -#: ../../include/conversation.php:1145 +#: ../../include/conversation.php:1129 msgid "set location" msgstr "" -#: ../../include/conversation.php:1146 ../../mod/editblock.php:151 +#: ../../include/conversation.php:1130 ../../mod/editblock.php:151 #: ../../mod/editlayout.php:147 ../../mod/editpost.php:120 #: ../../mod/editwebpage.php:182 msgid "Clear browser location" msgstr "" -#: ../../include/conversation.php:1147 +#: ../../include/conversation.php:1131 msgid "clear location" msgstr "" -#: ../../include/conversation.php:1149 ../../mod/editblock.php:164 +#: ../../include/conversation.php:1133 ../../mod/editblock.php:164 #: ../../mod/editlayout.php:159 ../../mod/editpost.php:132 #: ../../mod/editwebpage.php:198 msgid "Set title" msgstr "" -#: ../../include/conversation.php:1152 ../../mod/events.php:563 +#: ../../include/conversation.php:1136 ../../mod/events.php:562 #: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 #: ../../mod/editpost.php:134 ../../mod/editwebpage.php:200 msgid "Categories (comma-separated list)" msgstr "" -#: ../../include/conversation.php:1154 ../../mod/editblock.php:153 +#: ../../include/conversation.php:1138 ../../mod/editblock.php:153 #: ../../mod/editlayout.php:149 ../../mod/editpost.php:122 #: ../../mod/editwebpage.php:184 msgid "Permission settings" msgstr "" -#: ../../include/conversation.php:1155 +#: ../../include/conversation.php:1139 msgid "permissions" msgstr "" -#: ../../include/conversation.php:1162 ../../mod/editblock.php:161 +#: ../../include/conversation.php:1146 ../../mod/editblock.php:161 #: ../../mod/editlayout.php:156 ../../mod/editpost.php:129 #: ../../mod/editwebpage.php:193 msgid "Public post" msgstr "" -#: ../../include/conversation.php:1164 ../../mod/editblock.php:168 +#: ../../include/conversation.php:1148 ../../mod/editblock.php:168 #: ../../mod/editlayout.php:163 ../../mod/editpost.php:135 #: ../../mod/editwebpage.php:201 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/conversation.php:1177 ../../mod/editblock.php:178 +#: ../../include/conversation.php:1161 ../../mod/editblock.php:178 #: ../../mod/editlayout.php:173 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:238 ../../mod/mail.php:352 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:242 ../../mod/mail.php:356 msgid "Set expiration date" msgstr "" -#: ../../include/conversation.php:1179 ../../include/ItemObject.php:611 -#: ../../mod/editpost.php:148 ../../mod/mail.php:240 ../../mod/mail.php:354 +#: ../../include/conversation.php:1163 ../../include/ItemObject.php:633 +#: ../../mod/editpost.php:148 ../../mod/mail.php:244 ../../mod/mail.php:358 msgid "Encrypt text" msgstr "" -#: ../../include/conversation.php:1181 ../../mod/events.php:569 +#: ../../include/conversation.php:1165 ../../mod/events.php:568 #: ../../mod/editpost.php:150 msgid "OK" msgstr "" -#: ../../include/conversation.php:1182 ../../mod/events.php:568 -#: ../../mod/editpost.php:151 ../../mod/settings.php:550 -#: ../../mod/settings.php:576 ../../mod/fbrowser.php:82 +#: ../../include/conversation.php:1166 ../../mod/settings.php:564 +#: ../../mod/settings.php:590 ../../mod/events.php:567 +#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "" -#: ../../include/conversation.php:1426 +#: ../../include/conversation.php:1410 msgid "Discover" msgstr "" -#: ../../include/conversation.php:1429 +#: ../../include/conversation.php:1413 msgid "Imported public streams" msgstr "" -#: ../../include/conversation.php:1434 +#: ../../include/conversation.php:1418 msgid "Commented Order" msgstr "" -#: ../../include/conversation.php:1437 +#: ../../include/conversation.php:1421 msgid "Sort by Comment Date" msgstr "" -#: ../../include/conversation.php:1441 +#: ../../include/conversation.php:1425 msgid "Posted Order" msgstr "" -#: ../../include/conversation.php:1444 +#: ../../include/conversation.php:1428 msgid "Sort by Post Date" msgstr "" -#: ../../include/conversation.php:1449 ../../include/widgets.php:89 +#: ../../include/conversation.php:1433 ../../include/widgets.php:89 msgid "Personal" msgstr "" -#: ../../include/conversation.php:1452 +#: ../../include/conversation.php:1436 msgid "Posts that mention or involve you" msgstr "" -#: ../../include/conversation.php:1458 ../../mod/connections.php:211 +#: ../../include/conversation.php:1442 ../../mod/connections.php:211 #: ../../mod/connections.php:224 ../../mod/menu.php:80 msgid "New" msgstr "" -#: ../../include/conversation.php:1461 +#: ../../include/conversation.php:1445 msgid "Activity Stream - by date" msgstr "" -#: ../../include/conversation.php:1467 +#: ../../include/conversation.php:1451 msgid "Starred" msgstr "" -#: ../../include/conversation.php:1470 +#: ../../include/conversation.php:1454 msgid "Favourite Posts" msgstr "" -#: ../../include/conversation.php:1477 +#: ../../include/conversation.php:1461 msgid "Spam" msgstr "" -#: ../../include/conversation.php:1480 +#: ../../include/conversation.php:1464 msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1520 ../../mod/admin.php:865 +#: ../../include/conversation.php:1504 ../../mod/admin.php:865 msgid "Channel" msgstr "" -#: ../../include/conversation.php:1523 +#: ../../include/conversation.php:1507 msgid "Status Messages and Posts" msgstr "" -#: ../../include/conversation.php:1532 +#: ../../include/conversation.php:1516 msgid "About" msgstr "" -#: ../../include/conversation.php:1535 +#: ../../include/conversation.php:1519 msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1541 ../../include/nav.php:105 +#: ../../include/conversation.php:1525 ../../include/nav.php:105 #: ../../include/apps.php:137 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "" -#: ../../include/conversation.php:1544 ../../include/photos.php:341 +#: ../../include/conversation.php:1528 ../../include/photos.php:341 msgid "Photo Albums" msgstr "" -#: ../../include/conversation.php:1550 ../../include/RedDAV/RedBrowser.php:241 +#: ../../include/conversation.php:1534 ../../include/RedDAV/RedBrowser.php:241 #: ../../include/nav.php:106 ../../include/apps.php:133 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1537 msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1563 ../../include/conversation.php:1566 +#: ../../include/conversation.php:1547 ../../include/conversation.php:1550 msgid "Chatrooms" msgstr "" -#: ../../include/conversation.php:1576 ../../include/nav.php:117 +#: ../../include/conversation.php:1560 ../../include/nav.php:117 #: ../../include/apps.php:127 msgid "Bookmarks" msgstr "" -#: ../../include/conversation.php:1579 +#: ../../include/conversation.php:1563 msgid "Saved Bookmarks" msgstr "" -#: ../../include/conversation.php:1587 ../../include/nav.php:121 +#: ../../include/conversation.php:1571 ../../include/nav.php:121 #: ../../include/apps.php:134 ../../mod/webpages.php:160 msgid "Webpages" msgstr "" -#: ../../include/conversation.php:1590 +#: ../../include/conversation.php:1574 msgid "Manage Webpages" msgstr "" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:135 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "" + +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "" + +#: ../../include/follow.php:220 +msgid "Cannot connect to yourself." +msgstr "" + #: ../../include/notify.php:23 msgid "created a new post" msgstr "" @@ -560,46 +592,18 @@ msgstr "" msgid "commented on %s's post" msgstr "" -#: ../../include/dir_fns.php:56 -msgid "Sort Options" -msgstr "" - -#: ../../include/dir_fns.php:57 -msgid "Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:58 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:59 -msgid "Newest to Oldest" -msgstr "" - -#: ../../include/dir_fns.php:71 -msgid "Enable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:73 -msgid "Disable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:75 -msgid "Safe Mode" -msgstr "" - #: ../../include/page_widgets.php:6 msgid "New Page" msgstr "" #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:250 ../../include/menu.php:42 +#: ../../include/menu.php:42 ../../include/RedDAV/RedBrowser.php:250 #: ../../include/apps.php:249 ../../include/ItemObject.php:100 -#: ../../mod/blocks.php:132 ../../mod/connections.php:381 -#: ../../mod/connections.php:394 ../../mod/connections.php:413 -#: ../../mod/thing.php:233 ../../mod/webpages.php:162 -#: ../../mod/editblock.php:143 ../../mod/editlayout.php:139 -#: ../../mod/editpost.php:112 ../../mod/settings.php:611 +#: ../../mod/blocks.php:132 ../../mod/settings.php:625 +#: ../../mod/connections.php:381 ../../mod/connections.php:394 +#: ../../mod/connections.php:413 ../../mod/thing.php:233 +#: ../../mod/webpages.php:162 ../../mod/editblock.php:143 +#: ../../mod/editlayout.php:139 ../../mod/editpost.php:112 #: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 #: ../../mod/menu.php:78 msgid "Edit" @@ -630,65 +634,78 @@ msgstr "" msgid "Edited" msgstr "" -#: ../../include/chat.php:10 -msgid "Missing room name" +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 +msgid "Advanced" msgstr "" -#: ../../include/chat.php:19 -msgid "Duplicate room name" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" msgstr "" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" msgstr "" -#: ../../include/chat.php:105 -msgid "Room not found." +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" msgstr "" -#: ../../include/chat.php:116 ../../include/items.php:4013 -#: ../../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 -#: ../../mod/mood.php:112 ../../mod/mitem.php:106 -#: ../../mod/achievements.php:30 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:550 ../../mod/setup.php:207 ../../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/sources.php:66 ../../mod/blocks.php:67 -#: ../../mod/blocks.php:75 ../../mod/register.php:72 ../../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/regmod.php:17 ../../mod/network.php:12 ../../mod/common.php:35 -#: ../../mod/photos.php:68 ../../mod/connections.php:169 -#: ../../mod/manage.php:6 ../../mod/connedit.php:266 ../../mod/thing.php:247 -#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/webpages.php:67 -#: ../../mod/bookmarks.php:46 ../../mod/editblock.php:65 -#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:64 -#: ../../mod/editlayout.php:89 ../../mod/editpost.php:13 -#: ../../mod/settings.php:526 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 -#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 -#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/item.php:191 -#: ../../mod/item.php:199 ../../mod/item.php:971 ../../mod/like.php:154 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:71 -#: ../../mod/layouts.php:67 ../../mod/layouts.php:74 ../../mod/layouts.php:85 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:14 ../../mod/mail.php:111 ../../mod/menu.php:61 -#: ../../mod/message.php:16 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 -#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/appman.php:66 -#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/chat.php:126 -msgid "Room is full" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 +#: ../../mod/directory.php:267 ../../mod/directory.php:272 +msgid "Find" +msgstr "" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:57 ../../include/features.php:73 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "" + +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 +#: ../../include/widgets.php:306 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:92 ../../include/taxonomy.php:230 +#: ../../include/widgets.php:29 +msgid "Categories" +msgstr "" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:130 +msgid "show more" msgstr "" #: ../../include/oembed.php:171 @@ -699,216 +716,20 @@ msgstr "" msgid "Embedding disabled" msgstr "" -#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 -#: ../../include/taxonomy.php:230 -msgid "Categories" +#: ../../include/message.php:18 +msgid "No recipient provided." msgstr "" -#: ../../include/widgets.php:86 ../../include/nav.php:171 -#: ../../mod/apps.php:33 -msgid "Apps" +#: ../../include/message.php:23 +msgid "[no subject]" msgstr "" -#: ../../include/widgets.php:87 -msgid "System" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../include/widgets.php:90 -msgid "Create Personal App" -msgstr "" - -#: ../../include/widgets.php:91 -msgid "Edit Personal App" -msgstr "" - -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "" - -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "" - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" - -#: ../../include/widgets.php:191 -msgid "Notes" -msgstr "" - -#: ../../include/widgets.php:193 ../../include/text.php:827 -#: ../../include/text.php:839 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Save" -msgstr "" - -#: ../../include/widgets.php:263 -msgid "Remove term" -msgstr "" - -#: ../../include/widgets.php:272 ../../include/features.php:58 -msgid "Saved Searches" -msgstr "" - -#: ../../include/widgets.php:273 ../../include/group.php:303 -msgid "add" -msgstr "" - -#: ../../include/widgets.php:303 ../../include/contact_widgets.php:57 -#: ../../include/features.php:72 -msgid "Saved Folders" -msgstr "" - -#: ../../include/widgets.php:306 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "" - -#: ../../include/widgets.php:352 -msgid "Archives" -msgstr "" - -#: ../../include/widgets.php:428 -msgid "Refresh" -msgstr "" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:506 -msgid "Me" -msgstr "" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:508 -msgid "Best Friends" -msgstr "" - -#: ../../include/widgets.php:431 ../../include/identity.php:387 -#: ../../include/identity.php:388 ../../include/identity.php:395 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:509 -#: ../../mod/settings.php:304 ../../mod/settings.php:308 -#: ../../mod/settings.php:309 ../../mod/settings.php:312 -#: ../../mod/settings.php:323 -msgid "Friends" -msgstr "" - -#: ../../include/widgets.php:432 -msgid "Co-workers" -msgstr "" - -#: ../../include/widgets.php:433 ../../mod/connedit.php:510 -msgid "Former Friends" -msgstr "" - -#: ../../include/widgets.php:434 ../../mod/connedit.php:511 -msgid "Acquaintances" -msgstr "" - -#: ../../include/widgets.php:435 -msgid "Everybody" -msgstr "" - -#: ../../include/widgets.php:469 -msgid "Account settings" -msgstr "" - -#: ../../include/widgets.php:475 -msgid "Channel settings" -msgstr "" - -#: ../../include/widgets.php:481 -msgid "Additional features" -msgstr "" - -#: ../../include/widgets.php:487 -msgid "Feature settings" -msgstr "" - -#: ../../include/widgets.php:493 -msgid "Display settings" -msgstr "" - -#: ../../include/widgets.php:499 -msgid "Connected apps" -msgstr "" - -#: ../../include/widgets.php:505 -msgid "Export channel" -msgstr "" - -#: ../../include/widgets.php:511 -msgid "Export content" -msgstr "" - -#: ../../include/widgets.php:520 ../../mod/connedit.php:538 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../include/widgets.php:528 -msgid "Premium Channel Settings" -msgstr "" - -#: ../../include/widgets.php:537 ../../include/features.php:49 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "" - -#: ../../include/widgets.php:548 ../../include/nav.php:218 -#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 -msgid "Settings" -msgstr "" - -#: ../../include/widgets.php:562 ../../mod/mail.php:124 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "" - -#: ../../include/widgets.php:567 -msgid "Check Mail" -msgstr "" - -#: ../../include/widgets.php:572 ../../include/nav.php:209 -msgid "New Message" -msgstr "" - -#: ../../include/widgets.php:648 -msgid "Chat Rooms" -msgstr "" - -#: ../../include/widgets.php:666 -msgid "Bookmarked Chatrooms" -msgstr "" - -#: ../../include/widgets.php:684 -msgid "Suggested Chatrooms" -msgstr "" - -#: ../../include/zot.php:664 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:680 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:1799 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." msgstr "" #: ../../include/activities.php:39 @@ -934,6 +755,29 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "" + +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:248 ../../mod/events.php:584 +#: ../../mod/chat.php:209 ../../mod/filestorage.php:137 +#: ../../mod/photos.php:588 ../../mod/photos.php:950 +msgid "Permissions" +msgstr "" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:312 +#: ../../mod/photos.php:1149 +msgid "Close" +msgstr "" + #: ../../include/bb2diaspora.php:384 msgid "Attachments:" msgstr "" @@ -954,12 +798,112 @@ msgstr "" msgid "Finishes:" msgstr "" -#: ../../include/bb2diaspora.php:485 ../../include/event.php:40 -#: ../../include/identity.php:891 ../../mod/directory.php:159 -#: ../../mod/events.php:579 +#: ../../include/bb2diaspora.php:485 ../../include/identity.php:891 +#: ../../include/event.php:40 ../../mod/events.php:578 +#: ../../mod/directory.php:159 msgid "Location:" msgstr "" +#: ../../include/attach.php:116 ../../include/attach.php:163 +#: ../../include/attach.php:226 ../../include/attach.php:240 +#: ../../include/attach.php:280 ../../include/attach.php:294 +#: ../../include/attach.php:318 ../../include/attach.php:511 +#: ../../include/attach.php:584 ../../include/photos.php:15 +#: ../../include/items.php:4018 ../../include/chat.php:116 +#: ../../mod/mood.php:112 ../../mod/mitem.php:106 +#: ../../mod/achievements.php:30 ../../mod/register.php:72 +#: ../../mod/sources.php:66 ../../mod/poke.php:128 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/authtest.php:13 ../../mod/profile.php:64 +#: ../../mod/profile.php:72 ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/setup.php:207 +#: ../../mod/settings.php:540 ../../mod/events.php:195 +#: ../../mod/channel.php:89 ../../mod/channel.php:198 +#: ../../mod/channel.php:241 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/regmod.php:17 ../../mod/common.php:35 ../../mod/like.php:154 +#: ../../mod/connections.php:169 ../../mod/connedit.php:266 +#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 +#: ../../mod/webpages.php:67 ../../mod/bookmarks.php:46 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:550 +#: ../../mod/editblock.php:65 ../../mod/pdledit.php:21 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/item.php:191 ../../mod/item.php:199 ../../mod/item.php:971 +#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 +#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/locs.php:71 +#: ../../mod/mail.php:111 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/manage.php:6 ../../mod/layouts.php:67 ../../mod/layouts.php:74 +#: ../../mod/layouts.php:85 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 +#: ../../mod/network.php:12 ../../mod/menu.php:61 ../../mod/message.php:16 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/notifications.php:66 ../../mod/page.php:28 ../../mod/page.php:78 +#: ../../mod/photos.php:68 ../../mod/appman.php:66 +#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 +msgid "Permission denied." +msgstr "" + +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:377 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:389 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:589 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:605 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:629 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:680 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:684 +msgid "database storage failed." +msgstr "" + #: ../../include/RedDAV/RedBrowser.php:106 #: ../../include/RedDAV/RedBrowser.php:249 msgid "parent" @@ -999,8 +943,8 @@ msgstr "" msgid "%1$s used of %2$s (%3$s%)" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:551 -#: ../../mod/settings.php:577 ../../mod/admin.php:866 +#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:565 +#: ../../mod/settings.php:591 ../../mod/admin.php:866 msgid "Name" msgstr "" @@ -1033,8 +977,8 @@ msgstr "" msgid "Upload file" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:738 -#: ../../mod/photos.php:1245 ../../mod/profile_photo.php:361 +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:361 +#: ../../mod/photos.php:738 ../../mod/photos.php:1246 msgid "Upload" msgstr "" @@ -1043,36 +987,257 @@ msgstr "" msgid "%1$s's bookmarks" msgstr "" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1486 +msgid "Logout" msgstr "" -#: ../../include/follow.php:33 -msgid "Channel location missing." +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" msgstr "" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" msgstr "" -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." +#: ../../include/nav.php:98 +msgid "Your posts and conversations" msgstr "" -#: ../../include/follow.php:135 ../../include/follow.php:202 -msgid "Protocol disabled." +#: ../../include/nav.php:99 +msgid "Your profile page" msgstr "" -#: ../../include/follow.php:176 -msgid "Channel discovery failed." +#: ../../include/nav.php:101 +msgid "Edit Profiles" msgstr "" -#: ../../include/follow.php:192 -msgid "local account not found." +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." +#: ../../include/nav.php:103 ../../include/identity.php:864 +msgid "Edit Profile" +msgstr "" + +#: ../../include/nav.php:103 +msgid "Edit your profile" +msgstr "" + +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "" + +#: ../../include/nav.php:106 +msgid "Your files" +msgstr "" + +#: ../../include/nav.php:111 ../../include/apps.php:144 +msgid "Chat" +msgstr "" + +#: ../../include/nav.php:111 +msgid "Your chatrooms" +msgstr "" + +#: ../../include/nav.php:117 +msgid "Your bookmarks" +msgstr "" + +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "" + +#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1487 +msgid "Login" +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 ../../mod/register.php:224 ../../boot.php:1465 +msgid "Register" +msgstr "" + +#: ../../include/nav.php:163 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 +#: ../../mod/help.php:63 +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 ../../include/text.php:826 +#: ../../include/text.php:838 ../../include/apps.php:145 +#: ../../mod/search.php:30 +msgid "Search" +msgstr "" + +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "" + +#: ../../include/nav.php:176 ../../include/apps.php:139 +#: ../../mod/directory.php:271 +msgid "Directory" +msgstr "" + +#: ../../include/nav.php:176 +msgid "Channel Directory" +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:572 +msgid "New Message" +msgstr "" + +#: ../../include/nav.php:212 ../../include/apps.php:138 +#: ../../mod/events.php:431 +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/widgets.php:548 +#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 +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:262 +msgid "Please wait..." +msgstr "" + +#: ../../include/network.php:590 +msgid "view full size" msgstr "" #: ../../include/comanche.php:35 ../../mod/admin.php:353 @@ -1117,7 +1282,7 @@ msgid "RSS/Atom" msgstr "" #: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 -#: ../../mod/admin.php:735 ../../boot.php:1488 +#: ../../mod/admin.php:735 ../../boot.php:1489 msgid "Email" msgstr "" @@ -1145,63 +1310,470 @@ msgstr "" msgid "MySpace" msgstr "" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" +#: ../../include/identity.php:31 ../../mod/item.php:1368 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "" + +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "" + +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "" + +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "" + +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" + +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "" + +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "" + +#: ../../include/identity.php:387 ../../include/identity.php:388 +#: ../../include/identity.php:395 ../../include/widgets.php:431 +#: ../../include/profile_selectors.php:80 ../../mod/settings.php:318 +#: ../../mod/settings.php:322 ../../mod/settings.php:323 +#: ../../mod/settings.php:326 ../../mod/settings.php:337 +#: ../../mod/connedit.php:509 +msgid "Friends" +msgstr "" + +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "" + +#: ../../include/identity.php:691 ../../mod/achievements.php:11 +#: ../../mod/profile.php:16 ../../mod/blocks.php:29 ../../mod/webpages.php:29 +#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 +#: ../../mod/connect.php:13 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 +msgid "Requested profile is not available." +msgstr "" + +#: ../../include/identity.php:854 ../../mod/profiles.php:740 +msgid "Change profile photo" +msgstr "" + +#: ../../include/identity.php:860 +msgid "Profiles" +msgstr "" + +#: ../../include/identity.php:860 +msgid "Manage/edit profiles" +msgstr "" + +#: ../../include/identity.php:861 ../../mod/profiles.php:741 +msgid "Create New Profile" +msgstr "" + +#: ../../include/identity.php:875 ../../mod/profiles.php:752 +msgid "Profile Image" +msgstr "" + +#: ../../include/identity.php:878 +msgid "visible to everybody" +msgstr "" + +#: ../../include/identity.php:879 ../../mod/profiles.php:635 +#: ../../mod/profiles.php:756 +msgid "Edit visibility" +msgstr "" + +#: ../../include/identity.php:895 ../../include/identity.php:1132 +msgid "Gender:" +msgstr "" + +#: ../../include/identity.php:896 ../../include/identity.php:1176 +msgid "Status:" +msgstr "" + +#: ../../include/identity.php:897 ../../include/identity.php:1187 +msgid "Homepage:" +msgstr "" + +#: ../../include/identity.php:898 +msgid "Online Now" +msgstr "" + +#: ../../include/identity.php:976 ../../include/identity.php:1056 +#: ../../mod/ping.php:326 +msgid "g A l F d" +msgstr "" + +#: ../../include/identity.php:977 ../../include/identity.php:1057 +msgid "F d" +msgstr "" + +#: ../../include/identity.php:1022 ../../include/identity.php:1097 +#: ../../mod/ping.php:348 +msgid "[today]" +msgstr "" + +#: ../../include/identity.php:1034 +msgid "Birthday Reminders" +msgstr "" + +#: ../../include/identity.php:1035 +msgid "Birthdays this week:" +msgstr "" + +#: ../../include/identity.php:1090 +msgid "[No description]" +msgstr "" + +#: ../../include/identity.php:1108 +msgid "Event Reminders" +msgstr "" + +#: ../../include/identity.php:1109 +msgid "Events this week:" +msgstr "" + +#: ../../include/identity.php:1122 ../../include/identity.php:1240 +#: ../../include/apps.php:136 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "" + +#: ../../include/identity.php:1130 ../../mod/settings.php:1005 +msgid "Full Name:" +msgstr "" + +#: ../../include/identity.php:1137 +msgid "Like this channel" +msgstr "" + +#: ../../include/identity.php:1148 ../../include/taxonomy.php:360 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1027 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 -msgid "Advanced" +#: ../../include/identity.php:1161 +msgid "j F, Y" msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" +#: ../../include/identity.php:1162 +msgid "j F" msgstr "" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" +#: ../../include/identity.php:1169 +msgid "Birthday:" msgstr "" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" +#: ../../include/identity.php:1173 +msgid "Age:" msgstr "" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:26 ../../mod/directory.php:267 -#: ../../mod/directory.php:272 ../../mod/connections.php:412 -msgid "Find" -msgstr "" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:125 +#: ../../include/identity.php:1182 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" +msgid "for %1$d %2$s" +msgstr "" -#: ../../include/contact_widgets.php:130 -msgid "show more" +#: ../../include/identity.php:1185 ../../mod/profiles.php:657 +msgid "Sexual Preference:" +msgstr "" + +#: ../../include/identity.php:1189 ../../mod/profiles.php:659 +msgid "Hometown:" +msgstr "" + +#: ../../include/identity.php:1191 +msgid "Tags:" +msgstr "" + +#: ../../include/identity.php:1193 ../../mod/profiles.php:660 +msgid "Political Views:" +msgstr "" + +#: ../../include/identity.php:1195 +msgid "Religion:" +msgstr "" + +#: ../../include/identity.php:1197 +msgid "About:" +msgstr "" + +#: ../../include/identity.php:1199 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/identity.php:1201 ../../mod/profiles.php:663 +msgid "Likes:" +msgstr "" + +#: ../../include/identity.php:1203 ../../mod/profiles.php:664 +msgid "Dislikes:" +msgstr "" + +#: ../../include/identity.php:1206 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/identity.php:1208 +msgid "My other channels:" +msgstr "" + +#: ../../include/identity.php:1210 +msgid "Musical interests:" +msgstr "" + +#: ../../include/identity.php:1212 +msgid "Books, literature:" +msgstr "" + +#: ../../include/identity.php:1214 +msgid "Television:" +msgstr "" + +#: ../../include/identity.php:1216 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/identity.php:1218 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/identity.php:1220 +msgid "Work/employment:" +msgstr "" + +#: ../../include/identity.php:1222 +msgid "School/education:" +msgstr "" + +#: ../../include/identity.php:1242 +msgid "Like this thing" +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:" +msgstr "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:142 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:259 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:265 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:268 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:268 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:269 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:269 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:270 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:270 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:271 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:271 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:272 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:272 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:273 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:273 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:274 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:274 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:283 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:491 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:492 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + +#: ../../include/zot.php:664 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:1818 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:249 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:274 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:274 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:275 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:275 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 +msgid "like" +msgstr "" + +#: ../../include/taxonomy.php:276 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "" + +#: ../../include/taxonomy.php:277 +msgid "dislikes" +msgstr "" + +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "" + +#: ../../include/dir_fns.php:56 +msgid "Sort Options" +msgstr "" + +#: ../../include/dir_fns.php:57 +msgid "Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "" + +#: ../../include/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" msgstr "" #: ../../include/enotify.php:41 @@ -1438,326 +2010,335 @@ msgstr "" msgid "Channels not in any collection" 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" +#: ../../include/group.php:303 ../../include/widgets.php:273 +msgid "add" msgstr "" -#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 -msgid "Encrypted content" +#: ../../include/features.php:23 +msgid "General Features" msgstr "" -#: ../../include/bbcode.php:165 -msgid "Install design element: " +#: ../../include/features.php:25 +msgid "Content Expiration" msgstr "" -#: ../../include/bbcode.php:171 -msgid "QR code" +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/bbcode.php:220 +#: ../../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" +msgstr "" + +#: ../../include/features.php:28 +msgid "Save and load profile details across sites/channels" +msgstr "" + +#: ../../include/features.php:29 +msgid "Web Pages" +msgstr "" + +#: ../../include/features.php:29 +msgid "Provide managed web pages on your channel" +msgstr "" + +#: ../../include/features.php:30 +msgid "Private Notes" +msgstr "" + +#: ../../include/features.php:30 +msgid "Enables a tool to store notes and reminders" +msgstr "" + +#: ../../include/features.php:34 +msgid "Navigation Channel Select" +msgstr "" + +#: ../../include/features.php:34 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "" + +#: ../../include/features.php:38 +msgid "Extended Identity Sharing" +msgstr "" + +#: ../../include/features.php:38 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." +msgstr "" + +#: ../../include/features.php:39 +msgid "Expert Mode" +msgstr "" + +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "" + +#: ../../include/features.php:40 +msgid "Premium Channel" +msgstr "" + +#: ../../include/features.php:40 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "" + +#: ../../include/features.php:45 +msgid "Post Composition Features" +msgstr "" + +#: ../../include/features.php:47 +msgid "Use Markdown" +msgstr "" + +#: ../../include/features.php:47 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "" + +#: ../../include/features.php:48 +msgid "Post Preview" +msgstr "" + +#: ../../include/features.php:48 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: ../../include/features.php:49 ../../include/widgets.php:537 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "" + +#: ../../include/features.php:49 +msgid "Automatically import channel content from other channels or feeds" +msgstr "" + +#: ../../include/features.php:50 +msgid "Even More Encryption" +msgstr "" + +#: ../../include/features.php:50 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "" + +#: ../../include/features.php:51 +msgid "Flag Adult Photos" +msgstr "" + +#: ../../include/features.php:51 +msgid "Provide photo edit option to hide adult photos from default album view" +msgstr "" + +#: ../../include/features.php:56 +msgid "Network and Stream Filtering" +msgstr "" + +#: ../../include/features.php:57 +msgid "Search by Date" +msgstr "" + +#: ../../include/features.php:57 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../include/features.php:58 +msgid "Collections Filter" +msgstr "" + +#: ../../include/features.php:58 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "" + +#: ../../include/features.php:59 ../../include/widgets.php:272 +msgid "Saved Searches" +msgstr "" + +#: ../../include/features.php:59 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../include/features.php:60 +msgid "Network Personal Tab" +msgstr "" + +#: ../../include/features.php:60 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: ../../include/features.php:61 +msgid "Network New Tab" +msgstr "" + +#: ../../include/features.php:61 +msgid "Enable tab to display all new Network activity" +msgstr "" + +#: ../../include/features.php:62 +msgid "Affinity Tool" +msgstr "" + +#: ../../include/features.php:62 +msgid "Filter stream activity by depth of relationships" +msgstr "" + +#: ../../include/features.php:63 +msgid "Suggest Channels" +msgstr "" + +#: ../../include/features.php:63 +msgid "Show channel suggestions" +msgstr "" + +#: ../../include/features.php:68 +msgid "Post/Comment Tools" +msgstr "" + +#: ../../include/features.php:70 +msgid "Edit Sent Posts" +msgstr "" + +#: ../../include/features.php:70 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: ../../include/features.php:71 +msgid "Tagging" +msgstr "" + +#: ../../include/features.php:71 +msgid "Ability to tag existing posts" +msgstr "" + +#: ../../include/features.php:72 +msgid "Post Categories" +msgstr "" + +#: ../../include/features.php:72 +msgid "Add categories to your posts" +msgstr "" + +#: ../../include/features.php:73 +msgid "Ability to file posts under folders" +msgstr "" + +#: ../../include/features.php:74 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:74 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:75 +msgid "Star Posts" +msgstr "" + +#: ../../include/features.php:75 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../include/features.php:76 +msgid "Tag Cloud" +msgstr "" + +#: ../../include/features.php:76 +msgid "Provide a personal tag cloud on your channel page" +msgstr "" + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:245 #, php-format -msgid "%1$s wrote the following %2$s %3$s" +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/bbcode.php:222 -msgid "post" -msgstr "" - -#: ../../include/bbcode.php:621 -msgid "$1 spoiler" -msgstr "" - -#: ../../include/bbcode.php:641 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:249 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:274 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:274 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:275 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:275 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 -msgid "like" -msgstr "" - -#: ../../include/taxonomy.php:276 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "" - -#: ../../include/taxonomy.php:277 -msgid "dislikes" -msgstr "" - -#: ../../include/taxonomy.php:360 ../../include/identity.php:1148 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1026 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1485 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:98 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:99 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:103 ../../include/identity.php:864 -msgid "Edit Profile" -msgstr "" - -#: ../../include/nav.php:103 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:105 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:106 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:111 ../../include/apps.php:144 -msgid "Chat" -msgstr "" - -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:117 -msgid "Your bookmarks" -msgstr "" - -#: ../../include/nav.php:121 -msgid "Your webpages" -msgstr "" - -#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1486 -msgid "Login" -msgstr "" - -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:142 +#: ../../include/account.php:313 #, php-format -msgid "%s - click to logout" +msgid "Registration request at %s" msgstr "" -#: ../../include/nav.php:145 -msgid "Remote authentication" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" msgstr "" -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" +#: ../../include/account.php:337 +msgid "your registration password" msgstr "" -#: ../../include/nav.php:159 -msgid "Home Page" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1464 -msgid "Register" +#: ../../include/account.php:406 +msgid "Account approved." msgstr "" -#: ../../include/nav.php:163 -msgid "Create an account" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" +#: ../../include/account.php:486 +msgid "Account verified. Please login." msgstr "" -#: ../../include/nav.php:168 -msgid "Help and documentation" +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." msgstr "" -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/nav.php:173 ../../include/text.php:826 -#: ../../include/text.php:838 ../../include/apps.php:145 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "" - -#: ../../include/nav.php:176 ../../include/apps.php:139 -#: ../../mod/directory.php:271 -msgid "Directory" -msgstr "" - -#: ../../include/nav.php:176 -msgid "Channel Directory" -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:212 ../../include/apps.php:138 -#: ../../mod/events.php:431 -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 -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:262 -msgid "Please wait..." +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." msgstr "" #: ../../include/permissions.php:13 @@ -1897,816 +2478,6 @@ msgstr "" msgid "Custom/Expert Mode" msgstr "" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "" - -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/Contact.php:211 ../../mod/admin.php:646 -#, php-format -msgid "User '%s' deleted" -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" -msgstr "" - -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" -msgstr "" - -#: ../../include/features.php:29 -msgid "Web Pages" -msgstr "" - -#: ../../include/features.php:29 -msgid "Provide managed web pages on your channel" -msgstr "" - -#: ../../include/features.php:30 -msgid "Private Notes" -msgstr "" - -#: ../../include/features.php:30 -msgid "Enables a tool to store notes and reminders" -msgstr "" - -#: ../../include/features.php:34 -msgid "Navigation Channel Select" -msgstr "" - -#: ../../include/features.php:34 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "" - -#: ../../include/features.php:38 -msgid "Extended Identity Sharing" -msgstr "" - -#: ../../include/features.php:38 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "" - -#: ../../include/features.php:39 -msgid "Expert Mode" -msgstr "" - -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "" - -#: ../../include/features.php:40 -msgid "Premium Channel" -msgstr "" - -#: ../../include/features.php:40 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "" - -#: ../../include/features.php:45 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:47 -msgid "Use Markdown" -msgstr "" - -#: ../../include/features.php:47 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "" - -#: ../../include/features.php:48 -msgid "Post Preview" -msgstr "" - -#: ../../include/features.php:48 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" -msgstr "" - -#: ../../include/features.php:50 -msgid "Even More Encryption" -msgstr "" - -#: ../../include/features.php:50 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "" - -#: ../../include/features.php:55 -msgid "Network and Stream Filtering" -msgstr "" - -#: ../../include/features.php:56 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:56 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:57 -msgid "Collections Filter" -msgstr "" - -#: ../../include/features.php:57 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "" - -#: ../../include/features.php:58 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:59 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:59 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:60 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:60 -msgid "Enable tab to display all new Network activity" -msgstr "" - -#: ../../include/features.php:61 -msgid "Affinity Tool" -msgstr "" - -#: ../../include/features.php:61 -msgid "Filter stream activity by depth of relationships" -msgstr "" - -#: ../../include/features.php:62 -msgid "Suggest Channels" -msgstr "" - -#: ../../include/features.php:62 -msgid "Show channel suggestions" -msgstr "" - -#: ../../include/features.php:67 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:69 -msgid "Edit Sent Posts" -msgstr "" - -#: ../../include/features.php:69 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: ../../include/features.php:70 -msgid "Tagging" -msgstr "" - -#: ../../include/features.php:70 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:71 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:71 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:72 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:73 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:73 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:74 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:74 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:75 -msgid "Tag Cloud" -msgstr "" - -#: ../../include/features.php:75 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "" - -#: ../../include/account.php:648 ../../include/account.php:650 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:656 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:661 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/identity.php:31 ../../mod/item.php:1368 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "" - -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "" - -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "" - -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/connect.php:13 ../../mod/profile.php:16 ../../mod/blocks.php:29 -#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 -msgid "Requested profile is not available." -msgstr "" - -#: ../../include/identity.php:854 ../../mod/profiles.php:740 -msgid "Change profile photo" -msgstr "" - -#: ../../include/identity.php:860 -msgid "Profiles" -msgstr "" - -#: ../../include/identity.php:860 -msgid "Manage/edit profiles" -msgstr "" - -#: ../../include/identity.php:861 ../../mod/profiles.php:741 -msgid "Create New Profile" -msgstr "" - -#: ../../include/identity.php:875 ../../mod/profiles.php:752 -msgid "Profile Image" -msgstr "" - -#: ../../include/identity.php:878 -msgid "visible to everybody" -msgstr "" - -#: ../../include/identity.php:879 ../../mod/profiles.php:635 -#: ../../mod/profiles.php:756 -msgid "Edit visibility" -msgstr "" - -#: ../../include/identity.php:895 ../../include/identity.php:1132 -msgid "Gender:" -msgstr "" - -#: ../../include/identity.php:896 ../../include/identity.php:1176 -msgid "Status:" -msgstr "" - -#: ../../include/identity.php:897 ../../include/identity.php:1187 -msgid "Homepage:" -msgstr "" - -#: ../../include/identity.php:898 -msgid "Online Now" -msgstr "" - -#: ../../include/identity.php:976 ../../include/identity.php:1056 -#: ../../mod/ping.php:318 -msgid "g A l F d" -msgstr "" - -#: ../../include/identity.php:977 ../../include/identity.php:1057 -msgid "F d" -msgstr "" - -#: ../../include/identity.php:1022 ../../include/identity.php:1097 -#: ../../mod/ping.php:340 -msgid "[today]" -msgstr "" - -#: ../../include/identity.php:1034 -msgid "Birthday Reminders" -msgstr "" - -#: ../../include/identity.php:1035 -msgid "Birthdays this week:" -msgstr "" - -#: ../../include/identity.php:1090 -msgid "[No description]" -msgstr "" - -#: ../../include/identity.php:1108 -msgid "Event Reminders" -msgstr "" - -#: ../../include/identity.php:1109 -msgid "Events this week:" -msgstr "" - -#: ../../include/identity.php:1122 ../../include/identity.php:1240 -#: ../../include/apps.php:136 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "" - -#: ../../include/identity.php:1130 ../../mod/settings.php:984 -msgid "Full Name:" -msgstr "" - -#: ../../include/identity.php:1137 -msgid "Like this channel" -msgstr "" - -#: ../../include/identity.php:1161 -msgid "j F, Y" -msgstr "" - -#: ../../include/identity.php:1162 -msgid "j F" -msgstr "" - -#: ../../include/identity.php:1169 -msgid "Birthday:" -msgstr "" - -#: ../../include/identity.php:1173 -msgid "Age:" -msgstr "" - -#: ../../include/identity.php:1182 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/identity.php:1185 ../../mod/profiles.php:657 -msgid "Sexual Preference:" -msgstr "" - -#: ../../include/identity.php:1189 ../../mod/profiles.php:659 -msgid "Hometown:" -msgstr "" - -#: ../../include/identity.php:1191 -msgid "Tags:" -msgstr "" - -#: ../../include/identity.php:1193 ../../mod/profiles.php:660 -msgid "Political Views:" -msgstr "" - -#: ../../include/identity.php:1195 -msgid "Religion:" -msgstr "" - -#: ../../include/identity.php:1197 -msgid "About:" -msgstr "" - -#: ../../include/identity.php:1199 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/identity.php:1201 ../../mod/profiles.php:663 -msgid "Likes:" -msgstr "" - -#: ../../include/identity.php:1203 ../../mod/profiles.php:664 -msgid "Dislikes:" -msgstr "" - -#: ../../include/identity.php:1206 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/identity.php:1208 -msgid "My other channels:" -msgstr "" - -#: ../../include/identity.php:1210 -msgid "Musical interests:" -msgstr "" - -#: ../../include/identity.php:1212 -msgid "Books, literature:" -msgstr "" - -#: ../../include/identity.php:1214 -msgid "Television:" -msgstr "" - -#: ../../include/identity.php:1216 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/identity.php:1218 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/identity.php:1220 -msgid "Work/employment:" -msgstr "" - -#: ../../include/identity.php:1222 -msgid "School/education:" -msgstr "" - -#: ../../include/identity.php:1242 -msgid "Like this thing" -msgstr "" - -#: ../../include/items.php:377 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "" - -#: ../../include/items.php:964 ../../include/items.php:1009 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1165 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1167 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1169 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1171 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1173 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1175 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1177 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1179 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:3946 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:26 -#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "" - -#: ../../include/items.php:4402 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "" - -#: ../../include/items.php:4417 -msgid "Collection is empty." -msgstr "" - -#: ../../include/items.php:4424 -#, php-format -msgid "Collection: %s" -msgstr "" - -#: ../../include/items.php:4435 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../include/items.php:4438 -msgid "Connection not found." -msgstr "" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/network.php:590 -msgid "view full size" -msgstr "" - -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:589 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:605 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:629 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:680 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:684 -msgid "database storage failed." -msgstr "" - -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: ../../include/datetime.php:142 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: ../../include/datetime.php:248 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:254 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:257 -msgid "year" -msgstr "" - -#: ../../include/datetime.php:257 -msgid "years" -msgstr "" - -#: ../../include/datetime.php:258 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:258 -msgid "months" -msgstr "" - -#: ../../include/datetime.php:259 -msgid "week" -msgstr "" - -#: ../../include/datetime.php:259 -msgid "weeks" -msgstr "" - -#: ../../include/datetime.php:260 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:260 -msgid "days" -msgstr "" - -#: ../../include/datetime.php:261 -msgid "hour" -msgstr "" - -#: ../../include/datetime.php:261 -msgid "hours" -msgstr "" - -#: ../../include/datetime.php:262 -msgid "minute" -msgstr "" - -#: ../../include/datetime.php:262 -msgid "minutes" -msgstr "" - -#: ../../include/datetime.php:263 -msgid "second" -msgstr "" - -#: ../../include/datetime.php:263 -msgid "seconds" -msgstr "" - -#: ../../include/datetime.php:272 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:480 -#, php-format -msgid "%1$s's birthday" -msgstr "" - -#: ../../include/datetime.php:481 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "" - #: ../../include/photos.php:105 #, php-format msgid "Image exceeds website size limit of %lu bytes" @@ -2728,22 +2499,567 @@ msgstr "" msgid "Upload New Photos" msgstr "" +#: ../../include/items.php:382 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/like.php:246 ../../mod/group.php:68 +#: ../../index.php:389 +msgid "Permission denied" +msgstr "" + +#: ../../include/items.php:969 ../../include/items.php:1014 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1170 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1172 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1174 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1176 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1178 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1180 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1182 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1184 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:3951 ../../mod/thing.php:76 +#: ../../mod/display.php:32 ../../mod/filestorage.php:26 +#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:4409 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "" + +#: ../../include/items.php:4424 +msgid "Collection is empty." +msgstr "" + +#: ../../include/items.php:4431 +#, php-format +msgid "Collection: %s" +msgstr "" + +#: ../../include/items.php:4442 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../include/items.php:4445 +msgid "Connection not found." +msgstr "" + #: ../../include/security.php:323 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "" +#: ../../include/text.php:321 +msgid "prev" +msgstr "" + +#: ../../include/text.php:323 +msgid "first" +msgstr "" + +#: ../../include/text.php:352 +msgid "last" +msgstr "" + +#: ../../include/text.php:355 +msgid "next" +msgstr "" + +#: ../../include/text.php:367 +msgid "older" +msgstr "" + +#: ../../include/text.php:369 +msgid "newer" +msgstr "" + +#: ../../include/text.php:736 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:753 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:766 +msgid "View Connections" +msgstr "" + +#: ../../include/text.php:827 ../../include/text.php:839 +#: ../../include/widgets.php:193 ../../mod/filer.php:50 +#: ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 ../../mod/admin.php:1339 +#: ../../mod/admin.php:1360 +msgid "Save" +msgstr "" + +#: ../../include/text.php:905 +msgid "poke" +msgstr "" + +#: ../../include/text.php:906 +msgid "ping" +msgstr "" + +#: ../../include/text.php:906 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:907 +msgid "prod" +msgstr "" + +#: ../../include/text.php:907 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:908 +msgid "slap" +msgstr "" + +#: ../../include/text.php:908 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:909 +msgid "finger" +msgstr "" + +#: ../../include/text.php:909 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:910 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:910 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:919 +msgid "happy" +msgstr "" + +#: ../../include/text.php:920 +msgid "sad" +msgstr "" + +#: ../../include/text.php:921 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:922 +msgid "tired" +msgstr "" + +#: ../../include/text.php:923 +msgid "perky" +msgstr "" + +#: ../../include/text.php:924 +msgid "angry" +msgstr "" + +#: ../../include/text.php:925 +msgid "stupified" +msgstr "" + +#: ../../include/text.php:926 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:927 +msgid "interested" +msgstr "" + +#: ../../include/text.php:928 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:929 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:930 +msgid "alive" +msgstr "" + +#: ../../include/text.php:931 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:932 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:933 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:934 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:935 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:936 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:937 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:938 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:939 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Monday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Tuesday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Wednesday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Thursday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Friday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Saturday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Sunday" +msgstr "" + +#: ../../include/text.php:1107 +msgid "January" +msgstr "" + +#: ../../include/text.php:1107 +msgid "February" +msgstr "" + +#: ../../include/text.php:1107 +msgid "March" +msgstr "" + +#: ../../include/text.php:1107 +msgid "April" +msgstr "" + +#: ../../include/text.php:1107 +msgid "May" +msgstr "" + +#: ../../include/text.php:1107 +msgid "June" +msgstr "" + +#: ../../include/text.php:1107 +msgid "July" +msgstr "" + +#: ../../include/text.php:1107 +msgid "August" +msgstr "" + +#: ../../include/text.php:1107 +msgid "September" +msgstr "" + +#: ../../include/text.php:1107 +msgid "October" +msgstr "" + +#: ../../include/text.php:1107 +msgid "November" +msgstr "" + +#: ../../include/text.php:1107 +msgid "December" +msgstr "" + +#: ../../include/text.php:1185 +msgid "unknown.???" +msgstr "" + +#: ../../include/text.php:1186 +msgid "bytes" +msgstr "" + +#: ../../include/text.php:1225 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1295 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1360 ../../include/text.php:1372 +msgid "Click to open/close" +msgstr "" + +#: ../../include/text.php:1527 ../../mod/events.php:409 +msgid "Link to Source" +msgstr "" + +#: ../../include/text.php:1546 +msgid "Select a page layout: " +msgstr "" + +#: ../../include/text.php:1549 ../../include/text.php:1614 +msgid "default" +msgstr "" + +#: ../../include/text.php:1585 +msgid "Page content type: " +msgstr "" + +#: ../../include/text.php:1626 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/text.php:1760 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2041 +msgid "Design" +msgstr "" + +#: ../../include/text.php:2044 +msgid "Blocks" +msgstr "" + +#: ../../include/text.php:2045 +msgid "Menus" +msgstr "" + +#: ../../include/text.php:2046 +msgid "Layouts" +msgstr "" + +#: ../../include/text.php:2047 +msgid "Pages" +msgstr "" + +#: ../../include/widgets.php:87 +msgid "System" +msgstr "" + +#: ../../include/widgets.php:90 +msgid "Create Personal App" +msgstr "" + +#: ../../include/widgets.php:91 +msgid "Edit Personal App" +msgstr "" + +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "" + +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" +msgstr "" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "" + +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "" + +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "" + +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "" + +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: ../../include/widgets.php:191 +msgid "Notes" +msgstr "" + +#: ../../include/widgets.php:263 +msgid "Remove term" +msgstr "" + +#: ../../include/widgets.php:352 +msgid "Archives" +msgstr "" + +#: ../../include/widgets.php:428 +msgid "Refresh" +msgstr "" + +#: ../../include/widgets.php:429 ../../mod/connedit.php:506 +msgid "Me" +msgstr "" + +#: ../../include/widgets.php:430 ../../mod/connedit.php:508 +msgid "Best Friends" +msgstr "" + +#: ../../include/widgets.php:432 +msgid "Co-workers" +msgstr "" + +#: ../../include/widgets.php:433 ../../mod/connedit.php:510 +msgid "Former Friends" +msgstr "" + +#: ../../include/widgets.php:434 ../../mod/connedit.php:511 +msgid "Acquaintances" +msgstr "" + +#: ../../include/widgets.php:435 +msgid "Everybody" +msgstr "" + +#: ../../include/widgets.php:469 +msgid "Account settings" +msgstr "" + +#: ../../include/widgets.php:475 +msgid "Channel settings" +msgstr "" + +#: ../../include/widgets.php:481 +msgid "Additional features" +msgstr "" + +#: ../../include/widgets.php:487 +msgid "Feature settings" +msgstr "" + +#: ../../include/widgets.php:493 +msgid "Display settings" +msgstr "" + +#: ../../include/widgets.php:499 +msgid "Connected apps" +msgstr "" + +#: ../../include/widgets.php:505 +msgid "Export channel" +msgstr "" + +#: ../../include/widgets.php:511 +msgid "Export content" +msgstr "" + +#: ../../include/widgets.php:520 ../../mod/connedit.php:538 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../include/widgets.php:528 +msgid "Premium Channel Settings" +msgstr "" + +#: ../../include/widgets.php:562 ../../mod/mail.php:125 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "" + +#: ../../include/widgets.php:567 +msgid "Check Mail" +msgstr "" + +#: ../../include/widgets.php:648 +msgid "Chat Rooms" +msgstr "" + +#: ../../include/widgets.php:666 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:684 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/widgets.php:813 ../../include/widgets.php:871 +msgid "photo/image" +msgstr "" + +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "" + +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/Contact.php:211 ../../mod/admin.php:646 +#, php-format +msgid "User '%s' deleted" +msgstr "" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 -#: ../../mod/photos.php:995 ../../mod/photos.php:1105 +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:620 +#: ../../mod/photos.php:996 ../../mod/photos.php:1106 msgid "Comment" msgstr "" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:332 +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:337 msgid "[+] show all" msgstr "" @@ -3100,340 +3416,6 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/text.php:321 -msgid "prev" -msgstr "" - -#: ../../include/text.php:323 -msgid "first" -msgstr "" - -#: ../../include/text.php:352 -msgid "last" -msgstr "" - -#: ../../include/text.php:355 -msgid "next" -msgstr "" - -#: ../../include/text.php:367 -msgid "older" -msgstr "" - -#: ../../include/text.php:369 -msgid "newer" -msgstr "" - -#: ../../include/text.php:736 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:753 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:766 -msgid "View Connections" -msgstr "" - -#: ../../include/text.php:905 -msgid "poke" -msgstr "" - -#: ../../include/text.php:906 -msgid "ping" -msgstr "" - -#: ../../include/text.php:906 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:907 -msgid "prod" -msgstr "" - -#: ../../include/text.php:907 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:908 -msgid "slap" -msgstr "" - -#: ../../include/text.php:908 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:909 -msgid "finger" -msgstr "" - -#: ../../include/text.php:909 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:910 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:910 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:919 -msgid "happy" -msgstr "" - -#: ../../include/text.php:920 -msgid "sad" -msgstr "" - -#: ../../include/text.php:921 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:922 -msgid "tired" -msgstr "" - -#: ../../include/text.php:923 -msgid "perky" -msgstr "" - -#: ../../include/text.php:924 -msgid "angry" -msgstr "" - -#: ../../include/text.php:925 -msgid "stupified" -msgstr "" - -#: ../../include/text.php:926 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:927 -msgid "interested" -msgstr "" - -#: ../../include/text.php:928 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:929 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:930 -msgid "alive" -msgstr "" - -#: ../../include/text.php:931 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:932 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:933 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:934 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:935 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:936 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:937 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:938 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:939 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1107 -msgid "January" -msgstr "" - -#: ../../include/text.php:1107 -msgid "February" -msgstr "" - -#: ../../include/text.php:1107 -msgid "March" -msgstr "" - -#: ../../include/text.php:1107 -msgid "April" -msgstr "" - -#: ../../include/text.php:1107 -msgid "May" -msgstr "" - -#: ../../include/text.php:1107 -msgid "June" -msgstr "" - -#: ../../include/text.php:1107 -msgid "July" -msgstr "" - -#: ../../include/text.php:1107 -msgid "August" -msgstr "" - -#: ../../include/text.php:1107 -msgid "September" -msgstr "" - -#: ../../include/text.php:1107 -msgid "October" -msgstr "" - -#: ../../include/text.php:1107 -msgid "November" -msgstr "" - -#: ../../include/text.php:1107 -msgid "December" -msgstr "" - -#: ../../include/text.php:1185 -msgid "unknown.???" -msgstr "" - -#: ../../include/text.php:1186 -msgid "bytes" -msgstr "" - -#: ../../include/text.php:1225 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1295 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1360 ../../include/text.php:1372 -msgid "Click to open/close" -msgstr "" - -#: ../../include/text.php:1527 ../../mod/events.php:409 -msgid "Link to Source" -msgstr "" - -#: ../../include/text.php:1546 -msgid "Select a page layout: " -msgstr "" - -#: ../../include/text.php:1549 ../../include/text.php:1614 -msgid "default" -msgstr "" - -#: ../../include/text.php:1585 -msgid "Page content type: " -msgstr "" - -#: ../../include/text.php:1626 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/text.php:1760 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2041 -msgid "Design" -msgstr "" - -#: ../../include/text.php:2044 -msgid "Blocks" -msgstr "" - -#: ../../include/text.php:2045 -msgid "Menus" -msgstr "" - -#: ../../include/text.php:2046 -msgid "Layouts" -msgstr "" - -#: ../../include/text.php:2047 -msgid "Pages" -msgstr "" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:585 -#: ../../mod/chat.php:209 ../../mod/photos.php:588 ../../mod/photos.php:950 -#: ../../mod/filestorage.php:137 -msgid "Permissions" -msgstr "" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 -#: ../../mod/photos.php:1148 -msgid "Close" -msgstr "" - -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "" - #: ../../include/apps.php:126 msgid "Site Admin" msgstr "" @@ -3479,7 +3461,7 @@ msgid "Profile Photo" msgstr "" #: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:575 +#: ../../mod/settings.php:589 msgid "Update" msgstr "" @@ -3491,16 +3473,28 @@ msgstr "" msgid "Purchase" msgstr "" +#: ../../include/auth.php:116 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:257 +msgid "Failed authentication" +msgstr "" + +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "" + #: ../../include/ItemObject.php:130 msgid "Save to Folder" msgstr "" #: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1022 ../../mod/photos.php:1034 +#: ../../mod/photos.php:1023 ../../mod/photos.php:1035 msgid "View all" msgstr "" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1031 +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1032 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -3527,11 +3521,11 @@ msgstr "" msgid "Add Tag" msgstr "" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:974 +#: ../../include/ItemObject.php:221 ../../mod/photos.php:975 msgid "I like this (toggle)" msgstr "" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:975 +#: ../../include/ItemObject.php:222 ../../mod/photos.php:976 msgid "I don't like this (toggle)" msgstr "" @@ -3543,136 +3537,138 @@ msgstr "" msgid "share" msgstr "" -#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../include/ItemObject.php:251 -msgid "to" -msgstr "" - -#: ../../include/ItemObject.php:252 -msgid "via" -msgstr "" - -#: ../../include/ItemObject.php:253 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../include/ItemObject.php:254 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../include/ItemObject.php:290 -msgid "Save Bookmarks" -msgstr "" - -#: ../../include/ItemObject.php:291 -msgid "Add to Calendar" -msgstr "" - -#: ../../include/ItemObject.php:299 ../../mod/photos.php:1142 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../include/ItemObject.php:300 ../../mod/photos.php:1143 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../include/ItemObject.php:331 +#: ../../include/ItemObject.php:236 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:596 ../../mod/photos.php:993 -#: ../../mod/photos.php:1103 +#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../include/ItemObject.php:252 +msgid "to" +msgstr "" + +#: ../../include/ItemObject.php:253 +msgid "via" +msgstr "" + +#: ../../include/ItemObject.php:254 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../include/ItemObject.php:255 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../include/ItemObject.php:291 +msgid "Save Bookmarks" +msgstr "" + +#: ../../include/ItemObject.php:292 +msgid "Add to Calendar" +msgstr "" + +#: ../../include/ItemObject.php:301 +msgid "Mark all seen" +msgstr "" + +#: ../../include/ItemObject.php:306 ../../mod/photos.php:1143 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../include/ItemObject.php:307 ../../mod/photos.php:1144 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../include/ItemObject.php:618 ../../mod/photos.php:994 +#: ../../mod/photos.php:1104 msgid "This is you" msgstr "" -#: ../../include/ItemObject.php:599 ../../mod/mood.php:135 -#: ../../mod/profiles.php:633 ../../mod/connect.php:92 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../mod/poke.php:166 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/events.php:587 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/photos.php:594 ../../mod/photos.php:671 -#: ../../mod/photos.php:956 ../../mod/photos.php:996 ../../mod/photos.php:1106 -#: ../../mod/connedit.php:555 ../../mod/thing.php:284 ../../mod/thing.php:327 -#: ../../mod/pdledit.php:58 ../../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/fsuggest.php:108 +#: ../../include/ItemObject.php:621 ../../mod/mood.php:135 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/poke.php:166 +#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/settings.php:563 +#: ../../mod/settings.php:675 ../../mod/settings.php:704 +#: ../../mod/settings.php:728 ../../mod/settings.php:805 +#: ../../mod/settings.php:997 ../../mod/events.php:586 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/connedit.php:555 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/profiles.php:633 ../../mod/pdledit.php:58 +#: ../../mod/connect.php:92 ../../mod/fsuggest.php:108 #: ../../mod/filestorage.php:146 ../../mod/group.php:81 #: ../../mod/import.php:480 ../../mod/admin.php:412 ../../mod/admin.php:723 #: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 ../../mod/invite.php:142 ../../mod/locs.php:99 -#: ../../mod/mail.php:348 ../../mod/xchan.php:11 ../../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 +#: ../../mod/admin.php:1278 ../../mod/locs.php:99 ../../mod/mail.php:352 +#: ../../mod/invite.php:142 ../../mod/xchan.php:11 ../../mod/photos.php:594 +#: ../../mod/photos.php:671 ../../mod/photos.php:957 ../../mod/photos.php:997 +#: ../../mod/photos.php:1107 ../../mod/appman.php:99 ../../mod/poll.php:68 +#: ../../view/theme/apw/php/config.php:256 #: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "" -#: ../../include/ItemObject.php:600 +#: ../../include/ItemObject.php:622 msgid "Bold" msgstr "" -#: ../../include/ItemObject.php:601 +#: ../../include/ItemObject.php:623 msgid "Italic" msgstr "" -#: ../../include/ItemObject.php:602 +#: ../../include/ItemObject.php:624 msgid "Underline" msgstr "" -#: ../../include/ItemObject.php:603 +#: ../../include/ItemObject.php:625 msgid "Quote" msgstr "" -#: ../../include/ItemObject.php:604 +#: ../../include/ItemObject.php:626 msgid "Code" msgstr "" -#: ../../include/ItemObject.php:605 +#: ../../include/ItemObject.php:627 msgid "Image" msgstr "" -#: ../../include/ItemObject.php:606 +#: ../../include/ItemObject.php:628 msgid "Link" msgstr "" -#: ../../include/ItemObject.php:607 +#: ../../include/ItemObject.php:629 msgid "Video" msgstr "" +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "" + +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "" + +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "" + +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "" + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "" + #: ../../mod/mood.php:132 msgid "Set your current mood and tell your friends" msgstr "" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "" - #: ../../mod/mitem.php:24 ../../mod/menu.php:108 msgid "Menu not found." msgstr "" @@ -3741,7 +3737,7 @@ msgstr "" msgid "Menu Item Permissions" msgstr "" -#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1011 +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1032 msgid "(click to open/close)" msgstr "" @@ -3793,331 +3789,256 @@ msgstr "" msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 -msgid "Profile not found." +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" +#: ../../mod/register.php:84 +msgid "Passwords do not match." msgstr "" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." msgstr "" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." msgstr "" -#: ../../mod/profiles.php:378 -msgid "Marital Status" +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" msgstr "" -#: ../../mod/profiles.php:382 -msgid "Romantic Partner" +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../mod/profiles.php:386 -msgid "Likes" +#: ../../mod/register.php:185 +msgid "Terms of Service" msgstr "" -#: ../../mod/profiles.php:390 -msgid "Dislikes" +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../mod/profiles.php:394 -msgid "Work/Employment" +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../mod/profiles.php:397 -msgid "Religion" +#: ../../mod/register.php:207 ../../mod/admin.php:413 +msgid "Registration" msgstr "" -#: ../../mod/profiles.php:401 -msgid "Political Views" +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../mod/profiles.php:405 -msgid "Gender" +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" msgstr "" -#: ../../mod/profiles.php:409 -msgid "Sexual Preference" +#: ../../mod/register.php:216 +msgid "Your email address" msgstr "" -#: ../../mod/profiles.php:413 -msgid "Homepage" +#: ../../mod/register.php:217 +msgid "Choose a password" msgstr "" -#: ../../mod/profiles.php:417 -msgid "Interests" +#: ../../mod/register.php:218 +msgid "Please re-enter your password" msgstr "" -#: ../../mod/profiles.php:421 ../../mod/admin.php:866 -msgid "Address" +#: ../../mod/filer.php:49 +msgid "- select -" msgstr "" -#: ../../mod/profiles.php:428 ../../mod/pubsites.php:25 -msgid "Location" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/profiles.php:511 -msgid "Profile updated." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/profiles.php:590 -msgid "Hide your contact/friend list from viewers of this profile?" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/profiles.php:591 ../../mod/api.php:105 ../../mod/settings.php:916 -#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "" + +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" +msgstr "" + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "" + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "" + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "" + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +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?" +msgstr "" + +#: ../../mod/api.php:105 ../../mod/settings.php:937 ../../mod/settings.php:942 +#: ../../mod/settings.php:1025 ../../mod/profiles.php:591 #: ../../mod/admin.php:392 msgid "Yes" msgstr "" -#: ../../mod/profiles.php:592 ../../mod/api.php:106 ../../mod/settings.php:916 -#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/api.php:106 ../../mod/settings.php:937 ../../mod/settings.php:942 +#: ../../mod/settings.php:1025 ../../mod/profiles.php:592 #: ../../mod/admin.php:390 msgid "No" msgstr "" -#: ../../mod/profiles.php:632 -msgid "Edit Profile Details" +#: ../../mod/search.php:13 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:15 +#: ../../mod/photos.php:458 +msgid "Public access denied." msgstr "" -#: ../../mod/profiles.php:634 -msgid "View this profile" +#: ../../mod/attach.php:9 +msgid "Item not available." msgstr "" -#: ../../mod/profiles.php:636 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:637 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../mod/profiles.php:638 -msgid "Clone this profile" -msgstr "" - -#: ../../mod/profiles.php:639 -msgid "Delete this profile" -msgstr "" - -#: ../../mod/profiles.php:641 -msgid "Import profile from file" -msgstr "" - -#: ../../mod/profiles.php:642 -msgid "Export profile to file" -msgstr "" - -#: ../../mod/profiles.php:643 -msgid "Profile Name:" -msgstr "" - -#: ../../mod/profiles.php:644 -msgid "Your Full Name:" -msgstr "" - -#: ../../mod/profiles.php:645 -msgid "Title/Description:" -msgstr "" - -#: ../../mod/profiles.php:646 -msgid "Your Gender:" -msgstr "" - -#: ../../mod/profiles.php:647 -msgid "Birthday :" -msgstr "" - -#: ../../mod/profiles.php:648 -msgid "Street Address:" -msgstr "" - -#: ../../mod/profiles.php:649 -msgid "Locality/City:" -msgstr "" - -#: ../../mod/profiles.php:650 -msgid "Postal/Zip Code:" -msgstr "" - -#: ../../mod/profiles.php:651 -msgid "Country:" -msgstr "" - -#: ../../mod/profiles.php:652 -msgid "Region/State:" -msgstr "" - -#: ../../mod/profiles.php:653 -msgid " Marital Status:" -msgstr "" - -#: ../../mod/profiles.php:654 -msgid "Who: (if applicable)" -msgstr "" - -#: ../../mod/profiles.php:655 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: ../../mod/profiles.php:656 -msgid "Since [date]:" -msgstr "" - -#: ../../mod/profiles.php:658 -msgid "Homepage URL:" -msgstr "" - -#: ../../mod/profiles.php:661 -msgid "Religious Views:" -msgstr "" - -#: ../../mod/profiles.php:662 -msgid "Keywords:" -msgstr "" - -#: ../../mod/profiles.php:665 -msgid "Example: fishing photography software" -msgstr "" - -#: ../../mod/profiles.php:666 -msgid "Used in directory listings" -msgstr "" - -#: ../../mod/profiles.php:667 -msgid "Tell us about yourself..." -msgstr "" - -#: ../../mod/profiles.php:668 -msgid "Hobbies/Interests" -msgstr "" - -#: ../../mod/profiles.php:669 -msgid "Contact information and Social Networks" -msgstr "" - -#: ../../mod/profiles.php:670 -msgid "My other channels" -msgstr "" - -#: ../../mod/profiles.php:671 -msgid "Musical interests" -msgstr "" - -#: ../../mod/profiles.php:672 -msgid "Books, literature" -msgstr "" - -#: ../../mod/profiles.php:673 -msgid "Television" -msgstr "" - -#: ../../mod/profiles.php:674 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: ../../mod/profiles.php:675 -msgid "Love/romance" -msgstr "" - -#: ../../mod/profiles.php:676 -msgid "Work/employment" -msgstr "" - -#: ../../mod/profiles.php:677 -msgid "School/education" -msgstr "" - -#: ../../mod/profiles.php:683 -msgid "This is your default profile." -msgstr "" - -#: ../../mod/profiles.php:694 ../../mod/directory.php:148 -msgid "Age: " -msgstr "" - -#: ../../mod/profiles.php:737 -msgid "Edit/Manage Profiles" -msgstr "" - -#: ../../mod/profiles.php:738 -msgid "Add profile things" -msgstr "" - -#: ../../mod/profiles.php:739 -msgid "Include desirable objects in your profile" -msgstr "" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -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:" -msgstr "" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -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." -msgstr "" - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." -msgstr "" - -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#: ../../mod/probe.php:23 ../../mod/probe.php:29 #, php-format -msgid "Welcome %s. Remote authentication successful." +msgid "Fetching URL returns error: %1$s" +msgstr "" + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "" + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "" + +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/blocks.php:99 +msgid "Block Name" msgstr "" #: ../../mod/setup.php:166 @@ -4507,304 +4428,552 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/siteinfo.php:90 +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "" + +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "" + +#: ../../mod/settings.php:211 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:215 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:229 +msgid "Password changed." +msgstr "" + +#: ../../mod/settings.php:231 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../mod/settings.php:245 +msgid "Not valid email." +msgstr "" + +#: ../../mod/settings.php:248 +msgid "Protected email address. Cannot change to that email." +msgstr "" + +#: ../../mod/settings.php:257 +msgid "System failure storing new email. Please try again." +msgstr "" + +#: ../../mod/settings.php:493 +msgid "Settings updated." +msgstr "" + +#: ../../mod/settings.php:562 ../../mod/settings.php:588 +#: ../../mod/settings.php:624 +msgid "Add application" +msgstr "" + +#: ../../mod/settings.php:565 +msgid "Name of application" +msgstr "" + +#: ../../mod/settings.php:566 ../../mod/settings.php:592 +msgid "Consumer Key" +msgstr "" + +#: ../../mod/settings.php:566 ../../mod/settings.php:567 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "" + +#: ../../mod/settings.php:567 ../../mod/settings.php:593 +msgid "Consumer Secret" +msgstr "" + +#: ../../mod/settings.php:568 ../../mod/settings.php:594 +msgid "Redirect" +msgstr "" + +#: ../../mod/settings.php:568 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" +msgstr "" + +#: ../../mod/settings.php:569 ../../mod/settings.php:595 +msgid "Icon url" +msgstr "" + +#: ../../mod/settings.php:569 +msgid "Optional" +msgstr "" + +#: ../../mod/settings.php:580 +msgid "You can't edit this application." +msgstr "" + +#: ../../mod/settings.php:623 +msgid "Connected Apps" +msgstr "" + +#: ../../mod/settings.php:627 +msgid "Client key starts with" +msgstr "" + +#: ../../mod/settings.php:628 +msgid "No name" +msgstr "" + +#: ../../mod/settings.php:629 +msgid "Remove authorization" +msgstr "" + +#: ../../mod/settings.php:640 +msgid "No feature settings configured" +msgstr "" + +#: ../../mod/settings.php:648 +msgid "Feature Settings" +msgstr "" + +#: ../../mod/settings.php:671 +msgid "Account Settings" +msgstr "" + +#: ../../mod/settings.php:672 +msgid "Password Settings" +msgstr "" + +#: ../../mod/settings.php:673 +msgid "New Password:" +msgstr "" + +#: ../../mod/settings.php:674 +msgid "Confirm:" +msgstr "" + +#: ../../mod/settings.php:674 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: ../../mod/settings.php:676 ../../mod/settings.php:1006 +msgid "Email Address:" +msgstr "" + +#: ../../mod/settings.php:677 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "" + +#: ../../mod/settings.php:678 +msgid "Remove this account from this server including all its channels" +msgstr "" + +#: ../../mod/settings.php:679 ../../mod/settings.php:1088 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "" + +#: ../../mod/settings.php:695 +msgid "Off" +msgstr "" + +#: ../../mod/settings.php:695 +msgid "On" +msgstr "" + +#: ../../mod/settings.php:702 +msgid "Additional Features" +msgstr "" + +#: ../../mod/settings.php:727 +msgid "Connector Settings" +msgstr "" + +#: ../../mod/settings.php:758 +msgid "No special theme for mobile devices" +msgstr "" + +#: ../../mod/settings.php:767 #, php-format -msgid "Version %s" +msgid "%s - (Experimental)" msgstr "" -#: ../../mod/siteinfo.php:111 -msgid "Installed plugins/addons/apps:" +#: ../../mod/settings.php:803 +msgid "Display Settings" msgstr "" -#: ../../mod/siteinfo.php:124 -msgid "No installed plugins/addons/apps" +#: ../../mod/settings.php:809 +msgid "Display Theme:" msgstr "" -#: ../../mod/siteinfo.php:132 -msgid "Red" +#: ../../mod/settings.php:810 +msgid "Mobile Theme:" msgstr "" -#: ../../mod/siteinfo.php:133 +#: ../../mod/settings.php:811 +msgid "Enable user zoom on mobile devices" +msgstr "" + +#: ../../mod/settings.php:812 +msgid "Update browser every xx seconds" +msgstr "" + +#: ../../mod/settings.php:812 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: ../../mod/settings.php:813 +msgid "Maximum number of conversations to load at any time:" +msgstr "" + +#: ../../mod/settings.php:813 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../mod/settings.php:814 +msgid "Don't show emoticons" +msgstr "" + +#: ../../mod/settings.php:815 +msgid "Link post titles to source" +msgstr "" + +#: ../../mod/settings.php:816 +msgid "System Page Layout Editor - (advanced)" +msgstr "" + +#: ../../mod/settings.php:819 +msgid "Use blog/list mode on channel page" +msgstr "" + +#: ../../mod/settings.php:819 ../../mod/settings.php:820 +msgid "(comments displayed separately)" +msgstr "" + +#: ../../mod/settings.php:820 +msgid "Use blog/list mode on matrix page" +msgstr "" + +#: ../../mod/settings.php:821 +msgid "Channel page max height of content (in pixels)" +msgstr "" + +#: ../../mod/settings.php:821 ../../mod/settings.php:822 +msgid "click to expand content exceeding this height" +msgstr "" + +#: ../../mod/settings.php:822 +msgid "Matrix page max height of content (in pixels)" +msgstr "" + +#: ../../mod/settings.php:856 +msgid "Nobody except yourself" +msgstr "" + +#: ../../mod/settings.php:857 +msgid "Only those you specifically allow" +msgstr "" + +#: ../../mod/settings.php:858 +msgid "Approved connections" +msgstr "" + +#: ../../mod/settings.php:859 +msgid "Any connections" +msgstr "" + +#: ../../mod/settings.php:860 +msgid "Anybody on this website" +msgstr "" + +#: ../../mod/settings.php:861 +msgid "Anybody in this network" +msgstr "" + +#: ../../mod/settings.php:862 +msgid "Anybody authenticated" +msgstr "" + +#: ../../mod/settings.php:863 +msgid "Anybody on the internet" +msgstr "" + +#: ../../mod/settings.php:937 +msgid "Publish your default profile in the network directory" +msgstr "" + +#: ../../mod/settings.php:942 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../mod/settings.php:946 ../../mod/profile_photo.php:365 +msgid "or" +msgstr "" + +#: ../../mod/settings.php:951 +msgid "Your channel address is" +msgstr "" + +#: ../../mod/settings.php:995 +msgid "Channel Settings" +msgstr "" + +#: ../../mod/settings.php:1004 +msgid "Basic Settings" +msgstr "" + +#: ../../mod/settings.php:1007 +msgid "Your Timezone:" +msgstr "" + +#: ../../mod/settings.php:1008 +msgid "Default Post Location:" +msgstr "" + +#: ../../mod/settings.php:1008 +msgid "Geographical location to display on your posts" +msgstr "" + +#: ../../mod/settings.php:1009 +msgid "Use Browser Location:" +msgstr "" + +#: ../../mod/settings.php:1011 +msgid "Adult Content" +msgstr "" + +#: ../../mod/settings.php:1011 msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/siteinfo.php:137 -msgid "Running at web location" +#: ../../mod/settings.php:1013 +msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/siteinfo.php:138 +#: ../../mod/settings.php:1015 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "" + +#: ../../mod/settings.php:1017 +msgid "Hide my online presence" +msgstr "" + +#: ../../mod/settings.php:1017 +msgid "Prevents displaying in your profile that you are online" +msgstr "" + +#: ../../mod/settings.php:1019 +msgid "Simple Privacy Settings:" +msgstr "" + +#: ../../mod/settings.php:1020 msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/siteinfo.php:139 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:142 +#: ../../mod/settings.php:1021 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../mod/siteinfo.php:144 -msgid "Site Administrators" +#: ../../mod/settings.php:1022 +msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" +#: ../../mod/settings.php:1023 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" +#: ../../mod/settings.php:1025 +msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "" - -#: ../../mod/api.php:104 +#: ../../mod/settings.php:1025 msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/attach.php:9 -msgid "Item not available." +#: ../../mod/settings.php:1027 +msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../mod/settings.php:1029 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." +#: ../../mod/settings.php:1029 +msgid "0 or blank prevents expiration" msgstr "" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 -msgid "Channel not found." +#: ../../mod/settings.php:1030 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." +#: ../../mod/settings.php:1030 +msgid "May reduce spam activity" msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." +#: ../../mod/settings.php:1031 +msgid "Default Post Permissions" msgstr "" -#: ../../mod/sources.php:45 -msgid "Source created." +#: ../../mod/settings.php:1036 +msgid "Channel permissions category:" msgstr "" -#: ../../mod/sources.php:57 -msgid "Source updated." +#: ../../mod/settings.php:1044 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/sources.php:82 -msgid "*" +#: ../../mod/settings.php:1044 +msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." +#: ../../mod/settings.php:1047 +msgid "Notification Settings" msgstr "" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" +#: ../../mod/settings.php:1048 +msgid "By default post a status message when:" msgstr "" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 +#: ../../mod/settings.php:1049 +msgid "accepting a friend request" +msgstr "" + +#: ../../mod/settings.php:1050 +msgid "joining a forum/community" +msgstr "" + +#: ../../mod/settings.php:1051 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:1052 +msgid "Send a notification email when:" +msgstr "" + +#: ../../mod/settings.php:1053 +msgid "You receive a connection request" +msgstr "" + +#: ../../mod/settings.php:1054 +msgid "Your connections are confirmed" +msgstr "" + +#: ../../mod/settings.php:1055 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../mod/settings.php:1056 +msgid "Someone writes a followup comment" +msgstr "" + +#: ../../mod/settings.php:1057 +msgid "You receive a private message" +msgstr "" + +#: ../../mod/settings.php:1058 +msgid "You receive a friend suggestion" +msgstr "" + +#: ../../mod/settings.php:1059 +msgid "You are tagged in a post" +msgstr "" + +#: ../../mod/settings.php:1060 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../mod/settings.php:1063 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../mod/settings.php:1065 +msgid "Unseen matrix activity" +msgstr "" + +#: ../../mod/settings.php:1066 +msgid "Unseen channel activity" +msgstr "" + +#: ../../mod/settings.php:1067 +msgid "Unseen private messages" +msgstr "" + +#: ../../mod/settings.php:1067 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +msgid "Recommended" +msgstr "" + +#: ../../mod/settings.php:1068 +msgid "Upcoming events" +msgstr "" + +#: ../../mod/settings.php:1069 +msgid "Events today" +msgstr "" + +#: ../../mod/settings.php:1070 +msgid "Upcoming birthdays" +msgstr "" + +#: ../../mod/settings.php:1070 +msgid "Not available in all themes" +msgstr "" + +#: ../../mod/settings.php:1071 +msgid "System (personal) notifications" +msgstr "" + +#: ../../mod/settings.php:1072 +msgid "System info messages" +msgstr "" + +#: ../../mod/settings.php:1073 +msgid "System critical alerts" +msgstr "" + +#: ../../mod/settings.php:1074 +msgid "New connections" +msgstr "" + +#: ../../mod/settings.php:1075 +msgid "System Registrations" +msgstr "" + +#: ../../mod/settings.php:1077 +msgid "Notify me of events this many days in advance" +msgstr "" + +#: ../../mod/settings.php:1077 +msgid "Must be greater than 0" +msgstr "" + +#: ../../mod/settings.php:1079 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1080 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/settings.php:1083 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" +#: ../../mod/settings.php:1084 +msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" +#: ../../mod/settings.php:1086 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "" - -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "" - -#: ../../mod/search.php:13 ../../mod/directory.php:15 ../../mod/photos.php:458 -#: ../../mod/display.php:9 ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "" - -#: ../../mod/directory.php:161 -msgid "Gender: " -msgstr "" - -#: ../../mod/directory.php:163 -msgid "Status: " -msgstr "" - -#: ../../mod/directory.php:165 -msgid "Homepage: " -msgstr "" - -#: ../../mod/directory.php:168 -msgid "Hometown: " -msgstr "" - -#: ../../mod/directory.php:170 -msgid "About: " -msgstr "" - -#: ../../mod/directory.php:225 -msgid "Public Forum:" -msgstr "" - -#: ../../mod/directory.php:228 -msgid "Keywords: " -msgstr "" - -#: ../../mod/directory.php:268 -msgid "Finding:" -msgstr "" - -#: ../../mod/directory.php:273 -msgid "next page" -msgstr "" - -#: ../../mod/directory.php:273 -msgid "previous page" -msgstr "" - -#: ../../mod/directory.php:290 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "" - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "" - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "" - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:207 ../../mod/admin.php:413 -msgid "Registration" -msgstr "" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" +#: ../../mod/settings.php:1087 +msgid "Remove this channel" msgstr "" #: ../../mod/events.php:81 @@ -4835,44 +5004,44 @@ msgstr "" msgid "Previous" msgstr "" -#: ../../mod/events.php:560 +#: ../../mod/events.php:559 msgid "Event details" msgstr "" -#: ../../mod/events.php:561 +#: ../../mod/events.php:560 msgid "Starting date and Title are required." msgstr "" -#: ../../mod/events.php:565 +#: ../../mod/events.php:564 msgid "Event Starts:" msgstr "" -#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 +#: ../../mod/events.php:564 ../../mod/events.php:580 ../../mod/appman.php:91 #: ../../mod/appman.php:92 msgid "Required" msgstr "" -#: ../../mod/events.php:571 +#: ../../mod/events.php:570 msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/events.php:573 +#: ../../mod/events.php:572 msgid "Event Finishes:" msgstr "" -#: ../../mod/events.php:575 +#: ../../mod/events.php:574 msgid "Adjust for viewer timezone" msgstr "" -#: ../../mod/events.php:577 +#: ../../mod/events.php:576 msgid "Description:" msgstr "" -#: ../../mod/events.php:581 +#: ../../mod/events.php:580 msgid "Title:" msgstr "" -#: ../../mod/events.php:583 +#: ../../mod/events.php:582 msgid "Share this event" msgstr "" @@ -4901,6 +5070,10 @@ msgstr "" msgid "Registration Policy" msgstr "" +#: ../../mod/pubsites.php:25 ../../mod/profiles.php:428 +msgid "Location" +msgstr "" + #: ../../mod/channel.php:25 ../../mod/chat.php:19 msgid "You must be logged in to see this page." msgstr "" @@ -4966,11 +5139,6 @@ msgstr "" msgid "%1$s's Chatrooms" msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - #: ../../mod/chatsvc.php:111 msgid "Away" msgstr "" @@ -4983,28 +5151,50 @@ msgstr "" msgid "Please login." msgstr "" -#: ../../mod/network.php:79 -msgid "No such group" +#: ../../mod/siteinfo.php:90 +#, php-format +msgid "Version %s" msgstr "" -#: ../../mod/network.php:118 -msgid "Search Results For:" +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/network.php:172 -msgid "Collection is empty" +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/network.php:180 -msgid "Collection: " +#: ../../mod/siteinfo.php:132 +msgid "Red" msgstr "" -#: ../../mod/network.php:193 -msgid "Connection: " +#: ../../mod/siteinfo.php:133 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../mod/network.php:196 -msgid "Invalid connection." +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" +msgstr "" + +#: ../../mod/siteinfo.php:138 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "" + +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../mod/siteinfo.php:142 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +msgstr "" + +#: ../../mod/siteinfo.php:144 +msgid "Site Administrators" msgstr "" #: ../../mod/removeme.php:29 @@ -5079,147 +5269,53 @@ msgstr "" msgid "Authenticate" msgstr "" -#: ../../mod/filer.php:49 -msgid "- select -" +#: ../../mod/like.php:15 +msgid "Like/Dislike" msgstr "" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." +#: ../../mod/like.php:20 +msgid "This action is restricted to members." msgstr "" -#: ../../mod/photos.php:97 -msgid "Album not found." +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." msgstr "" -#: ../../mod/photos.php:119 ../../mod/photos.php:672 -msgid "Delete Album" +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." msgstr "" -#: ../../mod/photos.php:159 ../../mod/photos.php:957 -msgid "Delete Photo" +#: ../../mod/like.php:119 +msgid "thing" msgstr "" -#: ../../mod/photos.php:469 -msgid "No photos selected" +#: ../../mod/like.php:165 +msgid "Channel unavailable." msgstr "" -#: ../../mod/photos.php:513 -msgid "Access to this item is restricted." +#: ../../mod/like.php:204 +msgid "Previous action reversed." msgstr "" -#: ../../mod/photos.php:552 +#: ../../mod/like.php:422 +msgid "Action completed." +msgstr "" + +#: ../../mod/like.php:423 +msgid "Thank you." +msgstr "" + +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." +msgstr "" + +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 #, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:555 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:579 -msgid "Upload Photos" -msgstr "" - -#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 -msgid "Enter a new album name" -msgstr "" - -#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../mod/photos.php:585 -msgid "Do not show a status post for this upload" -msgstr "" - -#: ../../mod/photos.php:613 -msgid "Album name could not be decoded" -msgstr "" - -#: ../../mod/photos.php:654 ../../mod/photos.php:1166 -#: ../../mod/photos.php:1182 -msgid "Contact Photos" -msgstr "" - -#: ../../mod/photos.php:678 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:680 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:707 ../../mod/photos.php:1214 -msgid "View Photo" -msgstr "" - -#: ../../mod/photos.php:736 -msgid "Edit Album" -msgstr "" - -#: ../../mod/photos.php:781 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:783 -msgid "Photo not available" -msgstr "" - -#: ../../mod/photos.php:841 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:848 -msgid "Private Photo" -msgstr "" - -#: ../../mod/photos.php:863 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:905 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "" - -#: ../../mod/photos.php:937 -msgid "Edit photo" -msgstr "" - -#: ../../mod/photos.php:939 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:940 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:947 -msgid "Caption" -msgstr "" - -#: ../../mod/photos.php:949 -msgid "Add a Tag" -msgstr "" - -#: ../../mod/photos.php:953 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../mod/photos.php:955 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../mod/photos.php:1132 -msgid "In This Photo:" -msgstr "" - -#: ../../mod/photos.php:1220 -msgid "View Album" -msgstr "" - -#: ../../mod/photos.php:1243 -msgid "Recent Photos" +msgid "Welcome %s. Remote authentication successful." msgstr "" #: ../../mod/connections.php:37 ../../mod/connedit.php:64 @@ -5315,29 +5411,8 @@ msgstr "" msgid "Finding: " msgstr "" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "" - -#: ../../mod/manage.php:153 -msgid "Make Default" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." msgstr "" #: ../../mod/rpost.php:97 ../../mod/editpost.php:42 @@ -5653,10 +5728,6 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "" - #: ../../mod/thing.php:96 msgid "Thing updated" msgstr "" @@ -5738,7 +5809,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:85 ../../boot.php:1494 +#: ../../mod/lostpass.php:85 ../../boot.php:1495 msgid "Password Reset" msgstr "" @@ -5807,16 +5878,261 @@ msgstr "" msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" msgstr "" -#: ../../mod/ping.php:257 -msgid "sent you a private message" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 +msgid "Profile not found." msgstr "" -#: ../../mod/ping.php:308 -msgid "added your channel" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." msgstr "" -#: ../../mod/ping.php:349 -msgid "posted an event" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "" + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "" + +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "" + +#: ../../mod/profiles.php:378 +msgid "Marital Status" +msgstr "" + +#: ../../mod/profiles.php:382 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:386 +msgid "Likes" +msgstr "" + +#: ../../mod/profiles.php:390 +msgid "Dislikes" +msgstr "" + +#: ../../mod/profiles.php:394 +msgid "Work/Employment" +msgstr "" + +#: ../../mod/profiles.php:397 +msgid "Religion" +msgstr "" + +#: ../../mod/profiles.php:401 +msgid "Political Views" +msgstr "" + +#: ../../mod/profiles.php:405 +msgid "Gender" +msgstr "" + +#: ../../mod/profiles.php:409 +msgid "Sexual Preference" +msgstr "" + +#: ../../mod/profiles.php:413 +msgid "Homepage" +msgstr "" + +#: ../../mod/profiles.php:417 +msgid "Interests" +msgstr "" + +#: ../../mod/profiles.php:421 ../../mod/admin.php:866 +msgid "Address" +msgstr "" + +#: ../../mod/profiles.php:511 +msgid "Profile updated." +msgstr "" + +#: ../../mod/profiles.php:590 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: ../../mod/profiles.php:632 +msgid "Edit Profile Details" +msgstr "" + +#: ../../mod/profiles.php:634 +msgid "View this profile" +msgstr "" + +#: ../../mod/profiles.php:636 +msgid "Change Profile Photo" +msgstr "" + +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" +msgstr "" + +#: ../../mod/profiles.php:638 +msgid "Clone this profile" +msgstr "" + +#: ../../mod/profiles.php:639 +msgid "Delete this profile" +msgstr "" + +#: ../../mod/profiles.php:641 +msgid "Import profile from file" +msgstr "" + +#: ../../mod/profiles.php:642 +msgid "Export profile to file" +msgstr "" + +#: ../../mod/profiles.php:643 +msgid "Profile Name:" +msgstr "" + +#: ../../mod/profiles.php:644 +msgid "Your Full Name:" +msgstr "" + +#: ../../mod/profiles.php:645 +msgid "Title/Description:" +msgstr "" + +#: ../../mod/profiles.php:646 +msgid "Your Gender:" +msgstr "" + +#: ../../mod/profiles.php:647 +msgid "Birthday :" +msgstr "" + +#: ../../mod/profiles.php:648 +msgid "Street Address:" +msgstr "" + +#: ../../mod/profiles.php:649 +msgid "Locality/City:" +msgstr "" + +#: ../../mod/profiles.php:650 +msgid "Postal/Zip Code:" +msgstr "" + +#: ../../mod/profiles.php:651 +msgid "Country:" +msgstr "" + +#: ../../mod/profiles.php:652 +msgid "Region/State:" +msgstr "" + +#: ../../mod/profiles.php:653 +msgid " Marital Status:" +msgstr "" + +#: ../../mod/profiles.php:654 +msgid "Who: (if applicable)" +msgstr "" + +#: ../../mod/profiles.php:655 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: ../../mod/profiles.php:656 +msgid "Since [date]:" +msgstr "" + +#: ../../mod/profiles.php:658 +msgid "Homepage URL:" +msgstr "" + +#: ../../mod/profiles.php:661 +msgid "Religious Views:" +msgstr "" + +#: ../../mod/profiles.php:662 +msgid "Keywords:" +msgstr "" + +#: ../../mod/profiles.php:665 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../mod/profiles.php:666 +msgid "Used in directory listings" +msgstr "" + +#: ../../mod/profiles.php:667 +msgid "Tell us about yourself..." +msgstr "" + +#: ../../mod/profiles.php:668 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../mod/profiles.php:669 +msgid "Contact information and Social Networks" +msgstr "" + +#: ../../mod/profiles.php:670 +msgid "My other channels" +msgstr "" + +#: ../../mod/profiles.php:671 +msgid "Musical interests" +msgstr "" + +#: ../../mod/profiles.php:672 +msgid "Books, literature" +msgstr "" + +#: ../../mod/profiles.php:673 +msgid "Television" +msgstr "" + +#: ../../mod/profiles.php:674 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: ../../mod/profiles.php:675 +msgid "Love/romance" +msgstr "" + +#: ../../mod/profiles.php:676 +msgid "Work/employment" +msgstr "" + +#: ../../mod/profiles.php:677 +msgid "School/education" +msgstr "" + +#: ../../mod/profiles.php:683 +msgid "This is your default profile." +msgstr "" + +#: ../../mod/profiles.php:694 ../../mod/directory.php:148 +msgid "Age: " +msgstr "" + +#: ../../mod/profiles.php:737 +msgid "Edit/Manage Profiles" +msgstr "" + +#: ../../mod/profiles.php:738 +msgid "Add profile things" +msgstr "" + +#: ../../mod/profiles.php:739 +msgid "Include desirable objects in your profile" msgstr "" #: ../../mod/editblock.php:79 ../../mod/editblock.php:95 @@ -5892,528 +6208,47 @@ msgstr "" msgid "Delete item?" msgstr "" -#: ../../mod/settings.php:73 -msgid "Name is required" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" msgstr "" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" msgstr "" -#: ../../mod/settings.php:197 -msgid "Passwords do not match. Password unchanged." +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../mod/settings.php:201 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:215 -msgid "Password changed." -msgstr "" - -#: ../../mod/settings.php:217 -msgid "Password update failed. Please try again." -msgstr "" - -#: ../../mod/settings.php:231 -msgid "Not valid email." -msgstr "" - -#: ../../mod/settings.php:234 -msgid "Protected email address. Cannot change to that email." -msgstr "" - -#: ../../mod/settings.php:243 -msgid "System failure storing new email. Please try again." -msgstr "" - -#: ../../mod/settings.php:479 -msgid "Settings updated." -msgstr "" - -#: ../../mod/settings.php:548 ../../mod/settings.php:574 -#: ../../mod/settings.php:610 -msgid "Add application" -msgstr "" - -#: ../../mod/settings.php:551 -msgid "Name of application" -msgstr "" - -#: ../../mod/settings.php:552 ../../mod/settings.php:578 -msgid "Consumer Key" -msgstr "" - -#: ../../mod/settings.php:552 ../../mod/settings.php:553 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../mod/settings.php:553 ../../mod/settings.php:579 -msgid "Consumer Secret" -msgstr "" - -#: ../../mod/settings.php:554 ../../mod/settings.php:580 -msgid "Redirect" -msgstr "" - -#: ../../mod/settings.php:554 +#: ../../mod/connect.php:87 msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../mod/settings.php:555 ../../mod/settings.php:581 -msgid "Icon url" -msgstr "" - -#: ../../mod/settings.php:555 -msgid "Optional" -msgstr "" - -#: ../../mod/settings.php:566 -msgid "You can't edit this application." -msgstr "" - -#: ../../mod/settings.php:609 -msgid "Connected Apps" -msgstr "" - -#: ../../mod/settings.php:613 -msgid "Client key starts with" -msgstr "" - -#: ../../mod/settings.php:614 -msgid "No name" -msgstr "" - -#: ../../mod/settings.php:615 -msgid "Remove authorization" -msgstr "" - -#: ../../mod/settings.php:626 -msgid "No feature settings configured" -msgstr "" - -#: ../../mod/settings.php:634 -msgid "Feature Settings" -msgstr "" - -#: ../../mod/settings.php:657 -msgid "Account Settings" -msgstr "" - -#: ../../mod/settings.php:658 -msgid "Password Settings" -msgstr "" - -#: ../../mod/settings.php:659 -msgid "New Password:" -msgstr "" - -#: ../../mod/settings.php:660 -msgid "Confirm:" -msgstr "" - -#: ../../mod/settings.php:660 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: ../../mod/settings.php:662 ../../mod/settings.php:985 -msgid "Email Address:" -msgstr "" - -#: ../../mod/settings.php:663 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "" - -#: ../../mod/settings.php:664 -msgid "Remove this account from this server including all its channels" -msgstr "" - -#: ../../mod/settings.php:665 ../../mod/settings.php:1067 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "" - -#: ../../mod/settings.php:681 -msgid "Off" -msgstr "" - -#: ../../mod/settings.php:681 -msgid "On" -msgstr "" - -#: ../../mod/settings.php:688 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:713 -msgid "Connector Settings" -msgstr "" - -#: ../../mod/settings.php:743 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/settings.php:752 -#, php-format -msgid "%s - (Experimental)" -msgstr "" - -#: ../../mod/settings.php:788 -msgid "Display Settings" -msgstr "" - -#: ../../mod/settings.php:794 -msgid "Display Theme:" -msgstr "" - -#: ../../mod/settings.php:795 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:796 -msgid "Enable user zoom on mobile devices" -msgstr "" - -#: ../../mod/settings.php:797 -msgid "Update browser every xx seconds" -msgstr "" - -#: ../../mod/settings.php:797 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: ../../mod/settings.php:798 -msgid "Maximum number of conversations to load at any time:" -msgstr "" - -#: ../../mod/settings.php:798 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../mod/settings.php:799 -msgid "Don't show emoticons" -msgstr "" - -#: ../../mod/settings.php:800 -msgid "Link post titles to source" -msgstr "" - -#: ../../mod/settings.php:801 -msgid "System Page Layout Editor - (advanced)" -msgstr "" - -#: ../../mod/settings.php:835 -msgid "Nobody except yourself" -msgstr "" - -#: ../../mod/settings.php:836 -msgid "Only those you specifically allow" -msgstr "" - -#: ../../mod/settings.php:837 -msgid "Approved connections" -msgstr "" - -#: ../../mod/settings.php:838 -msgid "Any connections" -msgstr "" - -#: ../../mod/settings.php:839 -msgid "Anybody on this website" -msgstr "" - -#: ../../mod/settings.php:840 -msgid "Anybody in this network" -msgstr "" - -#: ../../mod/settings.php:841 -msgid "Anybody authenticated" -msgstr "" - -#: ../../mod/settings.php:842 -msgid "Anybody on the internet" -msgstr "" - -#: ../../mod/settings.php:916 -msgid "Publish your default profile in the network directory" -msgstr "" - -#: ../../mod/settings.php:921 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../mod/settings.php:925 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "" - -#: ../../mod/settings.php:930 -msgid "Your channel address is" -msgstr "" - -#: ../../mod/settings.php:974 -msgid "Channel Settings" -msgstr "" - -#: ../../mod/settings.php:983 -msgid "Basic Settings" -msgstr "" - -#: ../../mod/settings.php:986 -msgid "Your Timezone:" -msgstr "" - -#: ../../mod/settings.php:987 -msgid "Default Post Location:" -msgstr "" - -#: ../../mod/settings.php:987 -msgid "Geographical location to display on your posts" -msgstr "" - -#: ../../mod/settings.php:988 -msgid "Use Browser Location:" -msgstr "" - -#: ../../mod/settings.php:990 -msgid "Adult Content" -msgstr "" - -#: ../../mod/settings.php:990 +#: ../../mod/connect.php:89 ../../mod/connect.php:109 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../mod/settings.php:992 -msgid "Security and Privacy Settings" -msgstr "" - -#: ../../mod/settings.php:994 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../mod/settings.php:996 -msgid "Hide my online presence" -msgstr "" - -#: ../../mod/settings.php:996 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../mod/settings.php:998 -msgid "Simple Privacy Settings:" -msgstr "" - -#: ../../mod/settings.php:999 +#: ../../mod/connect.php:90 msgid "" -"Very Public - extremely permissive (should be used with caution)" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../mod/settings.php:1000 +#: ../../mod/connect.php:91 ../../mod/connect.php:112 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../mod/settings.php:1001 -msgid "Private - default private, never open or public" +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../mod/settings.php:1002 -msgid "Blocked - default blocked to/from everybody" -msgstr "" - -#: ../../mod/settings.php:1004 -msgid "Allow others to tag your posts" -msgstr "" - -#: ../../mod/settings.php:1004 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../mod/settings.php:1006 -msgid "Advanced Privacy Settings" -msgstr "" - -#: ../../mod/settings.php:1008 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../mod/settings.php:1008 -msgid "0 or blank prevents expiration" -msgstr "" - -#: ../../mod/settings.php:1009 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../mod/settings.php:1009 -msgid "May reduce spam activity" -msgstr "" - -#: ../../mod/settings.php:1010 -msgid "Default Post Permissions" -msgstr "" - -#: ../../mod/settings.php:1015 -msgid "Channel permissions category:" -msgstr "" - -#: ../../mod/settings.php:1023 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../mod/settings.php:1023 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../mod/settings.php:1026 -msgid "Notification Settings" -msgstr "" - -#: ../../mod/settings.php:1027 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1028 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1029 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:1030 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1031 -msgid "Send a notification email when:" -msgstr "" - -#: ../../mod/settings.php:1032 -msgid "You receive a connection request" -msgstr "" - -#: ../../mod/settings.php:1033 -msgid "Your connections are confirmed" -msgstr "" - -#: ../../mod/settings.php:1034 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../mod/settings.php:1035 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../mod/settings.php:1036 -msgid "You receive a private message" -msgstr "" - -#: ../../mod/settings.php:1037 -msgid "You receive a friend suggestion" -msgstr "" - -#: ../../mod/settings.php:1038 -msgid "You are tagged in a post" -msgstr "" - -#: ../../mod/settings.php:1039 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../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:1059 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1062 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "" - -#: ../../mod/settings.php:1063 -msgid "Miscellaneous Settings" -msgstr "" - -#: ../../mod/settings.php:1065 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../mod/settings.php:1066 -msgid "Remove this channel" +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" msgstr "" #: ../../mod/editwebpage.php:140 @@ -6517,6 +6352,32 @@ msgstr "" msgid "Image size reduction [%s] failed." msgstr "" +#: ../../mod/item.php:159 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:418 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:460 +msgid "Executable content type not permitted to this channel." +msgstr "" + +#: ../../mod/item.php:898 +msgid "System error. Post not saved." +msgstr "" + +#: ../../mod/item.php:1373 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../mod/item.php:1379 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." msgstr "" @@ -6578,10 +6439,6 @@ msgstr "" msgid "network" msgstr "" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "" - #: ../../mod/delegate.php:95 msgid "No potential page delegates located." msgstr "" @@ -6609,6 +6466,10 @@ msgstr "" msgid "Potential Delegates" msgstr "" +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:905 +msgid "Remove" +msgstr "" + #: ../../mod/delegate.php:131 msgid "Add" msgstr "" @@ -6617,6 +6478,10 @@ msgstr "" msgid "No entries." msgstr "" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "" + #: ../../mod/group.php:20 msgid "Collection created." msgstr "" @@ -6665,6 +6530,15 @@ msgstr "" msgid "Click on a channel to add or remove." msgstr "" +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" +msgstr "" + +#: ../../mod/home.php:100 +#, php-format +msgid "Welcome to %s" +msgstr "" + #: ../../mod/suggest.php:35 msgid "" "No suggestions available. If this is a new site, please try again in 24 " @@ -7418,68 +7292,110 @@ msgstr "" msgid "Edit Profile Field" msgstr "" -#: ../../mod/item.php:159 -msgid "Unable to locate original post." +#: ../../mod/locs.php:19 ../../mod/locs.php:46 +msgid "Location not found." msgstr "" -#: ../../mod/item.php:418 -msgid "Empty post discarded." +#: ../../mod/locs.php:50 +msgid "Primary location cannot be removed." msgstr "" -#: ../../mod/item.php:460 -msgid "Executable content type not permitted to this channel." +#: ../../mod/locs.php:82 +msgid "No locations found." msgstr "" -#: ../../mod/item.php:898 -msgid "System error. Post not saved." +#: ../../mod/locs.php:95 +msgid "Manage Channel Locations" msgstr "" -#: ../../mod/item.php:1373 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../mod/locs.php:96 +msgid "Location (address)" msgstr "" -#: ../../mod/item.php:1379 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../mod/locs.php:97 +msgid "Primary Location" msgstr "" -#: ../../mod/like.php:15 -msgid "Like/Dislike" +#: ../../mod/locs.php:98 +msgid "Drop location" msgstr "" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." msgstr "" -#: ../../mod/like.php:21 +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../mod/mail.php:136 +msgid "Message deleted." +msgstr "" + +#: ../../mod/mail.php:153 +msgid "Message recalled." +msgstr "" + +#: ../../mod/mail.php:222 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/mail.php:223 ../../mod/mail.php:340 +msgid "To:" +msgstr "" + +#: ../../mod/mail.php:228 ../../mod/mail.php:342 +msgid "Subject:" +msgstr "" + +#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "" + +#: ../../mod/mail.php:239 +msgid "Send" +msgstr "" + +#: ../../mod/mail.php:266 +msgid "Message not found." +msgstr "" + +#: ../../mod/mail.php:309 +msgid "Delete message" +msgstr "" + +#: ../../mod/mail.php:310 +msgid "Recall message" +msgstr "" + +#: ../../mod/mail.php:312 +msgid "Message has been recalled." +msgstr "" + +#: ../../mod/mail.php:329 +msgid "Private Conversation" +msgstr "" + +#: ../../mod/mail.php:333 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/mail.php:335 msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "" - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "" - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "" - -#: ../../mod/like.php:430 -msgid "Action completed." -msgstr "" - -#: ../../mod/like.php:431 -msgid "Thank you." +#: ../../mod/mail.php:339 +msgid "Send Reply" msgstr "" #: ../../mod/invite.php:25 @@ -7523,10 +7439,6 @@ msgstr "" msgid "Enter email addresses, one per line:" msgstr "" -#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Your message:" -msgstr "" - #: ../../mod/invite.php:132 msgid "Please join my community on RedMatrix." msgstr "" @@ -7551,36 +7463,34 @@ msgstr "" msgid "3. Click [Connect]" msgstr "" -#: ../../mod/locs.php:19 ../../mod/locs.php:46 -msgid "Location not found." +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../mod/locs.php:50 -msgid "Primary location cannot be removed." +#: ../../mod/manage.php:144 +msgid "Create a new channel" msgstr "" -#: ../../mod/locs.php:82 -msgid "No locations found." +#: ../../mod/manage.php:149 +msgid "Current Channel" msgstr "" -#: ../../mod/locs.php:95 -msgid "Manage Channel Locations" +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." msgstr "" -#: ../../mod/locs.php:96 -msgid "Location (address)" +#: ../../mod/manage.php:152 +msgid "Default Channel" msgstr "" -#: ../../mod/locs.php:97 -msgid "Primary Location" -msgstr "" - -#: ../../mod/locs.php:98 -msgid "Drop location" +#: ../../mod/manage.php:153 +msgid "Make Default" msgstr "" #: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 #: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +#: ../../mod/update_home.php:21 msgid "[Embedded content - reload page to view]" msgstr "" @@ -7625,81 +7535,31 @@ msgstr "" msgid "Average Rating" msgstr "" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." +#: ../../mod/network.php:81 +msgid "No such group" msgstr "" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." +#: ../../mod/network.php:119 +msgid "Search Results For:" msgstr "" -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." +#: ../../mod/network.php:173 +msgid "Collection is empty" msgstr "" -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../mod/network.php:181 +msgid "Collection: " msgstr "" -#: ../../mod/mail.php:135 -msgid "Message deleted." +#: ../../mod/network.php:194 +msgid "Connection: " msgstr "" -#: ../../mod/mail.php:152 -msgid "Message recalled." +#: ../../mod/network.php:197 +msgid "Invalid connection." msgstr "" -#: ../../mod/mail.php:218 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/mail.php:219 ../../mod/mail.php:336 -msgid "To:" -msgstr "" - -#: ../../mod/mail.php:224 ../../mod/mail.php:338 -msgid "Subject:" -msgstr "" - -#: ../../mod/mail.php:235 -msgid "Send" -msgstr "" - -#: ../../mod/mail.php:262 -msgid "Message not found." -msgstr "" - -#: ../../mod/mail.php:305 -msgid "Delete message" -msgstr "" - -#: ../../mod/mail.php:306 -msgid "Recall message" -msgstr "" - -#: ../../mod/mail.php:308 -msgid "Message has been recalled." -msgstr "" - -#: ../../mod/mail.php:325 -msgid "Private Conversation" -msgstr "" - -#: ../../mod/mail.php:329 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/mail.php:331 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/mail.php:335 -msgid "Send Reply" -msgstr "" - -#: ../../mod/wall_upload.php:34 +#: ../../mod/wall_upload.php:35 msgid "Wall Photos" msgstr "" @@ -7862,15 +7722,6 @@ msgid "" "and privacy requirements so we can select the best permissions for you" msgstr "" -#: ../../mod/home.php:46 -msgid "Red Matrix - "The Network"" -msgstr "" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "" - #: ../../mod/notifications.php:26 msgid "Invalid request identifier." msgstr "" @@ -7895,6 +7746,10 @@ msgstr "" msgid "Lookup xchan beginning with (or webbie): " msgstr "" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "" + #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "" @@ -7903,8 +7758,195 @@ msgstr "" msgid "Post successful." msgstr "" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" +#: ../../mod/directory.php:161 +msgid "Gender: " +msgstr "" + +#: ../../mod/directory.php:163 +msgid "Status: " +msgstr "" + +#: ../../mod/directory.php:165 +msgid "Homepage: " +msgstr "" + +#: ../../mod/directory.php:168 +msgid "Hometown: " +msgstr "" + +#: ../../mod/directory.php:170 +msgid "About: " +msgstr "" + +#: ../../mod/directory.php:225 +msgid "Public Forum:" +msgstr "" + +#: ../../mod/directory.php:228 +msgid "Keywords: " +msgstr "" + +#: ../../mod/directory.php:268 +msgid "Finding:" +msgstr "" + +#: ../../mod/directory.php:273 +msgid "next page" +msgstr "" + +#: ../../mod/directory.php:273 +msgid "previous page" +msgstr "" + +#: ../../mod/directory.php:290 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "" + +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "" + +#: ../../mod/photos.php:119 ../../mod/photos.php:672 +msgid "Delete Album" +msgstr "" + +#: ../../mod/photos.php:159 ../../mod/photos.php:958 +msgid "Delete Photo" +msgstr "" + +#: ../../mod/photos.php:469 +msgid "No photos selected" +msgstr "" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../mod/photos.php:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "" + +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "" + +#: ../../mod/photos.php:579 +msgid "Upload Photos" +msgstr "" + +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 +msgid "Enter a new album name" +msgstr "" + +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../mod/photos.php:585 +msgid "Do not show a status post for this upload" +msgstr "" + +#: ../../mod/photos.php:613 +msgid "Album name could not be decoded" +msgstr "" + +#: ../../mod/photos.php:654 ../../mod/photos.php:1167 +#: ../../mod/photos.php:1183 +msgid "Contact Photos" +msgstr "" + +#: ../../mod/photos.php:678 +msgid "Show Newest First" +msgstr "" + +#: ../../mod/photos.php:680 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:707 ../../mod/photos.php:1215 +msgid "View Photo" +msgstr "" + +#: ../../mod/photos.php:736 +msgid "Edit Album" +msgstr "" + +#: ../../mod/photos.php:781 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../mod/photos.php:783 +msgid "Photo not available" +msgstr "" + +#: ../../mod/photos.php:841 +msgid "Use as profile photo" +msgstr "" + +#: ../../mod/photos.php:848 +msgid "Private Photo" +msgstr "" + +#: ../../mod/photos.php:863 +msgid "View Full Size" +msgstr "" + +#: ../../mod/photos.php:937 +msgid "Edit photo" +msgstr "" + +#: ../../mod/photos.php:939 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../mod/photos.php:940 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../mod/photos.php:947 +msgid "Caption" +msgstr "" + +#: ../../mod/photos.php:949 +msgid "Add a Tag" +msgstr "" + +#: ../../mod/photos.php:953 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../mod/photos.php:956 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../mod/photos.php:1133 +msgid "In This Photo:" +msgstr "" + +#: ../../mod/photos.php:1221 +msgid "View Album" +msgstr "" + +#: ../../mod/photos.php:1244 +msgid "Recent Photos" +msgstr "" + +#: ../../mod/ping.php:265 +msgid "sent you a private message" +msgstr "" + +#: ../../mod/ping.php:316 +msgid "added your channel" +msgstr "" + +#: ../../mod/ping.php:357 +msgid "posted an event" msgstr "" #: ../../mod/appman.php:28 ../../mod/appman.php:44 @@ -8009,8 +8051,6 @@ msgid "Monospace" msgstr "" #: ../../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 "" @@ -8141,21 +8181,6 @@ msgstr "" msgid "Right offset of the aside element" msgstr "" -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "" - #: ../../view/theme/redbasic/php/config.php:84 msgid "Light (Red Matrix default)" msgstr "" @@ -8280,41 +8305,41 @@ msgstr "" msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../boot.php:1293 +#: ../../boot.php:1294 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1296 +#: ../../boot.php:1297 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1463 +#: ../../boot.php:1464 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../boot.php:1489 +#: ../../boot.php:1490 msgid "Password" msgstr "" -#: ../../boot.php:1490 +#: ../../boot.php:1491 msgid "Remember me" msgstr "" -#: ../../boot.php:1493 +#: ../../boot.php:1494 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1567 +#: ../../boot.php:1568 msgid "permission denied" msgstr "" -#: ../../boot.php:1568 +#: ../../boot.php:1569 msgid "Got Zot?" msgstr "" -#: ../../boot.php:2030 +#: ../../boot.php:2031 msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index dceda9119..eba09b708 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-20.865 +2014-11-22.867 From 57dcdd4cf9c1219efe9b47c05128e9e21b12399a Mon Sep 17 00:00:00 2001 From: Erik Lundin Date: Sat, 22 Nov 2014 22:11:43 +0100 Subject: [PATCH 166/176] Update Swedish translations --- view/sv/lostpass_eml.tpl | 10 +- view/sv/messages.po | 12977 ++++++++++++++------------- view/sv/passchanged_eml.tpl | 7 +- view/sv/register_open_eml.tpl | 12 +- view/sv/register_verify_eml.tpl | 5 +- view/sv/register_verify_member.tpl | 24 + view/sv/strings.php | 2659 +++--- view/sv/update_fail_eml.tpl | 16 +- 8 files changed, 8318 insertions(+), 7392 deletions(-) create mode 100644 view/sv/register_verify_member.tpl diff --git a/view/sv/lostpass_eml.tpl b/view/sv/lostpass_eml.tpl index f33eccfa0..923a60d7e 100644 --- a/view/sv/lostpass_eml.tpl +++ b/view/sv/lostpass_eml.tpl @@ -1,14 +1,14 @@ Hej {{$username}}, - En begäran mottogs nyligen på {{$sitename}} om att återställa ditt + En begäran mottogs nyligen på {{$sitename}} om att återställa ditt kontolösenord. För att bekräfta begäran, följ länken nedan eller klistra -in den i din webbläsares adressfält. +in den i din webbläsares adressfält. Om du INTE begärde den här ändringen, följ INTE länken och ignorera och/eller -radera det här mailet. +radera det här mailet. Ditt lösenord kommer inte att ändras om vi inte kan verifiera att det -var du som gjorde begäran. +var du som gjorde begäran. Följ den här länken för att bekräfta din identitet: @@ -29,4 +29,4 @@ Användarnamn: {{$email}} Hälsningar, {{$sitename}}-administratören - + \ No newline at end of file diff --git a/view/sv/messages.po b/view/sv/messages.po index 096a0334a..6e89f2270 100644 --- a/view/sv/messages.po +++ b/view/sv/messages.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the Red package. # # Translators: +# pafcu , 2014 +# pafcu , 2014 msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-18 00:04-0700\n" -"PO-Revision-Date: 2014-04-19 11:55+0000\n" -"Last-Translator: Erik Lundin \n" +"POT-Creation-Date: 2014-11-14 00:04-0800\n" +"PO-Revision-Date: 2014-11-22 20:08+0000\n" +"Last-Translator: Erik Lundin \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/red-matrix/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,181 +19,900 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorier" +#: ../../include/dba/dba_driver.php:132 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kan inte hitta DNS-information för databasserver '%s'" -#: ../../include/widgets.php:115 ../../include/widgets.php:155 -#: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../mod/directory.php:188 ../../mod/match.php:62 -#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51 +#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 +#: ../../mod/photos.php:91 ../../mod/photos.php:654 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:423 +msgid "Profile Photos" +msgstr "Profilfoton" + +#: ../../include/conversation.php:120 ../../include/diaspora.php:1923 +#: ../../include/text.php:1747 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:298 +msgid "photo" +msgstr "foto" + +#: ../../include/conversation.php:123 ../../include/text.php:1750 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "händelse" + +#: ../../include/conversation.php:126 ../../mod/like.php:89 +msgid "channel" +msgstr "kanal" + +#: ../../include/conversation.php:148 ../../include/diaspora.php:1923 +#: ../../include/text.php:1753 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:298 +msgid "status" +msgstr "status" + +#: ../../include/conversation.php:150 ../../include/text.php:1755 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "kommentar" + +#: ../../include/conversation.php:164 ../../include/diaspora.php:1952 +#: ../../mod/like.php:344 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gillar %2$ss %3$s" + +#: ../../include/conversation.php:167 ../../mod/like.php:346 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s gillar inte %2$ss %3$s" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s har nu kontakt med %2$s" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s puffade %2$s" + +#: ../../include/conversation.php:243 ../../include/text.php:905 +msgid "poked" +msgstr "puffade" + +#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s är %2$s" + +#: ../../include/conversation.php:637 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Välj" + +#: ../../include/conversation.php:638 ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/apps.php:250 ../../include/ItemObject.php:120 +#: ../../mod/photos.php:1069 ../../mod/connedit.php:476 +#: ../../mod/thing.php:234 ../../mod/settings.php:612 ../../mod/group.php:176 +#: ../../mod/admin.php:730 ../../mod/admin.php:861 +msgid "Delete" +msgstr "Ta bort" + +#: ../../include/conversation.php:645 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Privat meddelande" + +#: ../../include/conversation.php:652 ../../include/ItemObject.php:194 +msgid "Message signature validated" +msgstr "Meddelandesignatur bekräftad" + +#: ../../include/conversation.php:653 ../../include/ItemObject.php:195 +msgid "Message signature incorrect" +msgstr "Meddelandesignatur felaktig" + +#: ../../include/conversation.php:674 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Visa %ss profil på %s" + +#: ../../include/conversation.php:689 +msgid "Categories:" +msgstr "Kategorier:" + +#: ../../include/conversation.php:690 +msgid "Filed under:" +msgstr "Postat under:" + +#: ../../include/conversation.php:698 ../../include/ItemObject.php:265 +#, php-format +msgid " from %s" +msgstr "från %s" + +#: ../../include/conversation.php:701 ../../include/ItemObject.php:268 +#, php-format +msgid "last edited: %s" +msgstr "senast redigerat: %s" + +#: ../../include/conversation.php:702 ../../include/ItemObject.php:269 +#, php-format +msgid "Expires: %s" +msgstr "Upphör: %s" + +#: ../../include/conversation.php:717 +msgid "View in context" +msgstr "Visa sammanhang" + +#: ../../include/conversation.php:719 ../../include/conversation.php:1153 +#: ../../include/ItemObject.php:310 ../../mod/photos.php:977 +#: ../../mod/editblock.php:152 ../../mod/editlayout.php:148 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:183 +#: ../../mod/mail.php:234 ../../mod/mail.php:349 +msgid "Please wait" +msgstr "Vänta" + +#: ../../include/conversation.php:843 +msgid "remove" +msgstr "ta bort" + +#: ../../include/conversation.php:847 ../../include/nav.php:257 +msgid "Loading..." +msgstr "Laddar..." + +#: ../../include/conversation.php:848 +msgid "Delete Selected Items" +msgstr "Ta bort valda poster" + +#: ../../include/conversation.php:942 +msgid "View Source" +msgstr "Visa källa" + +#: ../../include/conversation.php:943 +msgid "Follow Thread" +msgstr "Följ tråd" + +#: ../../include/conversation.php:944 +msgid "View Status" +msgstr "Visa status" + +#: ../../include/conversation.php:945 ../../include/nav.php:99 +#: ../../mod/connedit.php:429 ../../mod/connedit.php:544 +msgid "View Profile" +msgstr "Visa profil" + +#: ../../include/conversation.php:946 +msgid "View Photos" +msgstr "Visa foton" + +#: ../../include/conversation.php:947 +msgid "Matrix Activity" +msgstr "Matrisaktivitet" + +#: ../../include/conversation.php:948 ../../include/widgets.php:135 +#: ../../include/widgets.php:175 ../../include/Contact.php:107 +#: ../../include/identity.php:840 ../../mod/directory.php:224 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 msgid "Connect" msgstr "Ta kontakt" -#: ../../include/widgets.php:117 ../../mod/suggest.php:53 +#: ../../include/conversation.php:949 +msgid "Edit Contact" +msgstr "Redigera kontakt" + +#: ../../include/conversation.php:950 +msgid "Send PM" +msgstr "Skicka meddelande" + +#: ../../include/conversation.php:951 ../../include/apps.php:143 +msgid "Poke" +msgstr "Puffa" + +#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 +#: ../../include/apps.php:331 ../../include/apps.php:382 +#: ../../mod/photos.php:713 ../../mod/photos.php:1131 +#: ../../mod/connedit.php:512 +msgid "Unknown" +msgstr "Okända" + +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s likes this." +msgstr "%s gillar det här." + +#: ../../include/conversation.php:1024 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gillar inte det här." + +#: ../../include/conversation.php:1028 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d person gillar det här." +msgstr[1] "%2$d personer gillar det här." + +#: ../../include/conversation.php: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 gillar inte det här." +msgstr[1] "%2$d personer gillar inte det här." + +#: ../../include/conversation.php:1036 +msgid "and" +msgstr "och" + +#: ../../include/conversation.php:1039 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", och %d annan person" +msgstr[1] ", och %d andra personer" + +#: ../../include/conversation.php:1040 +#, php-format +msgid "%s like this." +msgstr "%s gillar det här." + +#: ../../include/conversation.php:1040 +#, php-format +msgid "%s don't like this." +msgstr "%s gillar inte det här." + +#: ../../include/conversation.php:1097 +msgid "Visible to everybody" +msgstr "Kan ses av alla" + +#: ../../include/conversation.php:1098 ../../mod/mail.php:170 +#: ../../mod/mail.php:282 +msgid "Please enter a link URL:" +msgstr "Ange en länkadress:" + +#: ../../include/conversation.php:1099 +msgid "Please enter a video link/URL:" +msgstr "Ange en videolänkadress:" + +#: ../../include/conversation.php:1100 +msgid "Please enter an audio link/URL:" +msgstr "Ange en ljudlänkadress" + +#: ../../include/conversation.php:1101 +msgid "Tag term:" +msgstr "Tagguttryck" + +#: ../../include/conversation.php:1102 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Spara i mapp:" + +#: ../../include/conversation.php:1103 +msgid "Where are you right now?" +msgstr "Var är du just nu?" + +#: ../../include/conversation.php:1104 ../../mod/editpost.php:52 +#: ../../mod/mail.php:171 ../../mod/mail.php:283 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Upphör YYYY-MM-DD HH:MM" + +#: ../../include/conversation.php:1114 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:608 ../../mod/photos.php:997 +#: ../../mod/webpages.php:166 ../../mod/editblock.php:173 +#: ../../mod/editlayout.php:168 ../../mod/editpost.php:140 +#: ../../mod/editwebpage.php:205 +msgid "Preview" +msgstr "Förhandsgranska" + +#: ../../include/conversation.php:1128 ../../mod/photos.php:976 +#: ../../mod/editblock.php:198 ../../mod/editlayout.php:193 +#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 +msgid "Share" +msgstr "Dela" + +#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:170 +msgid "Page link title" +msgstr "Titel på sidlänk" + +#: ../../include/conversation.php:1133 +msgid "Post as" +msgstr "Posta som" + +#: ../../include/conversation.php:1134 ../../mod/editblock.php:144 +#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:231 ../../mod/mail.php:345 +msgid "Upload photo" +msgstr "Ladda upp foto" + +#: ../../include/conversation.php:1135 +msgid "upload photo" +msgstr "ladda upp foto" + +#: ../../include/conversation.php:1136 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:232 ../../mod/mail.php:346 +msgid "Attach file" +msgstr "Bifoga fil" + +#: ../../include/conversation.php:1137 +msgid "attach file" +msgstr "bifoga fil" + +#: ../../include/conversation.php:1138 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:142 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:233 ../../mod/mail.php:347 +msgid "Insert web link" +msgstr "Infoga webblänk" + +#: ../../include/conversation.php:1139 +msgid "web link" +msgstr "webblänk" + +#: ../../include/conversation.php:1140 +msgid "Insert video link" +msgstr "Infoga videolänk" + +#: ../../include/conversation.php:1141 +msgid "video link" +msgstr "videolänk" + +#: ../../include/conversation.php:1142 +msgid "Insert audio link" +msgstr "Infoga ljudlänk" + +#: ../../include/conversation.php:1143 +msgid "audio link" +msgstr "ljudlänk" + +#: ../../include/conversation.php:1144 ../../mod/editblock.php:150 +#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:181 +msgid "Set your location" +msgstr "Ange din plats" + +#: ../../include/conversation.php:1145 +msgid "set location" +msgstr "ange plats" + +#: ../../include/conversation.php:1146 ../../mod/editblock.php:151 +#: ../../mod/editlayout.php:147 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:182 +msgid "Clear browser location" +msgstr "Rensa webbläsarplats" + +#: ../../include/conversation.php:1147 +msgid "clear location" +msgstr "rensa plats" + +#: ../../include/conversation.php:1149 ../../mod/editblock.php:164 +#: ../../mod/editlayout.php:159 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:198 +msgid "Set title" +msgstr "Ange titel" + +#: ../../include/conversation.php:1152 ../../mod/events.php:563 +#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 +#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:200 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparerad lista)" + +#: ../../include/conversation.php:1154 ../../mod/editblock.php:153 +#: ../../mod/editlayout.php:149 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:184 +msgid "Permission settings" +msgstr "Behörighetsinställningar" + +#: ../../include/conversation.php:1155 +msgid "permissions" +msgstr "behörighet" + +#: ../../include/conversation.php:1162 ../../mod/editblock.php:161 +#: ../../mod/editlayout.php:156 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:193 +msgid "Public post" +msgstr "Offentligt inlägg" + +#: ../../include/conversation.php:1164 ../../mod/editblock.php:168 +#: ../../mod/editlayout.php:163 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:201 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exempel: bob@example.com, mary@example.com" + +#: ../../include/conversation.php:1177 ../../mod/editblock.php:178 +#: ../../mod/editlayout.php:173 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:238 ../../mod/mail.php:352 +msgid "Set expiration date" +msgstr "Ange utgångsdatum" + +#: ../../include/conversation.php:1179 ../../include/ItemObject.php:611 +#: ../../mod/editpost.php:148 ../../mod/mail.php:240 ../../mod/mail.php:354 +msgid "Encrypt text" +msgstr "Kryptera text" + +#: ../../include/conversation.php:1181 ../../mod/events.php:569 +#: ../../mod/editpost.php:150 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1182 ../../mod/events.php:568 +#: ../../mod/editpost.php:151 ../../mod/settings.php:550 +#: ../../mod/settings.php:576 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +msgid "Cancel" +msgstr "Avbryt" + +#: ../../include/conversation.php:1426 +msgid "Discover" +msgstr "Upptäck" + +#: ../../include/conversation.php:1429 +msgid "Imported public streams" +msgstr "Importerade offentliga strömmar" + +#: ../../include/conversation.php:1434 +msgid "Commented Order" +msgstr "Kommentarsordning" + +#: ../../include/conversation.php:1437 +msgid "Sort by Comment Date" +msgstr "Ordna efter kommentarsdatum" + +#: ../../include/conversation.php:1441 +msgid "Posted Order" +msgstr "Inläggsordning" + +#: ../../include/conversation.php:1444 +msgid "Sort by Post Date" +msgstr "Ordna efter när inlägget skrevs" + +#: ../../include/conversation.php:1449 ../../include/widgets.php:89 +msgid "Personal" +msgstr "Personligt" + +#: ../../include/conversation.php:1452 +msgid "Posts that mention or involve you" +msgstr "Inlägg som nämner eller berör dig" + +#: ../../include/conversation.php:1458 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:80 +msgid "New" +msgstr "Nytt" + +#: ../../include/conversation.php:1461 +msgid "Activity Stream - by date" +msgstr "Aktivitetsström - efter datum" + +#: ../../include/conversation.php:1467 +msgid "Starred" +msgstr "Märkt" + +#: ../../include/conversation.php:1470 +msgid "Favourite Posts" +msgstr "Favoritinlägg" + +#: ../../include/conversation.php:1477 +msgid "Spam" +msgstr "Skräp" + +#: ../../include/conversation.php:1480 +msgid "Posts flagged as SPAM" +msgstr "Inlägg markerade som SKRÄP" + +#: ../../include/conversation.php:1520 ../../mod/admin.php:865 +msgid "Channel" +msgstr "Kanal" + +#: ../../include/conversation.php:1523 +msgid "Status Messages and Posts" +msgstr "Statusmeddelanden och inlägg" + +#: ../../include/conversation.php:1532 +msgid "About" +msgstr "Om" + +#: ../../include/conversation.php:1535 +msgid "Profile Details" +msgstr "Profildetaljer" + +#: ../../include/conversation.php:1541 ../../include/nav.php:105 +#: ../../include/apps.php:137 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foton" + +#: ../../include/conversation.php:1544 ../../include/photos.php:341 +msgid "Photo Albums" +msgstr "Fotoalbum" + +#: ../../include/conversation.php:1550 ../../include/RedDAV/RedBrowser.php:241 +#: ../../include/nav.php:106 ../../include/apps.php:133 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Filer" + +#: ../../include/conversation.php:1553 +msgid "Files and Storage" +msgstr "Filer och lagring" + +#: ../../include/conversation.php:1563 ../../include/conversation.php:1566 +msgid "Chatrooms" +msgstr "Chattrum" + +#: ../../include/conversation.php:1576 ../../include/nav.php:117 +#: ../../include/apps.php:127 +msgid "Bookmarks" +msgstr "Bokmärken" + +#: ../../include/conversation.php:1579 +msgid "Saved Bookmarks" +msgstr "Sparade bokmärken" + +#: ../../include/conversation.php:1587 ../../include/nav.php:121 +#: ../../include/apps.php:134 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "Webbsidor" + +#: ../../include/conversation.php:1590 +msgid "Manage Webpages" +msgstr "Hantera webbsidor" + +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "skapade ett nytt inlägg" + +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "kommenterade %ss inlägg" + +#: ../../include/dir_fns.php:56 +msgid "Sort Options" +msgstr "Sorteringsalternativ" + +#: ../../include/dir_fns.php:57 +msgid "Alphabetic" +msgstr "Alfabetisk" + +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "Omvänd alfabetisk" + +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "Nyast till äldst" + +#: ../../include/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "Aktivera säker sökning" + +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "Avaktivera säker sökning" + +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" +msgstr "Säkert läge" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Ny sida" + +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:250 ../../include/menu.php:42 +#: ../../include/apps.php:249 ../../include/ItemObject.php:100 +#: ../../mod/blocks.php:132 ../../mod/connections.php:381 +#: ../../mod/connections.php:394 ../../mod/connections.php:413 +#: ../../mod/thing.php:233 ../../mod/webpages.php:162 +#: ../../mod/editblock.php:143 ../../mod/editlayout.php:139 +#: ../../mod/editpost.php:112 ../../mod/settings.php:611 +#: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 +#: ../../mod/menu.php:78 +msgid "Edit" +msgstr "Redigera" + +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 +msgid "View" +msgstr "Visa" + +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 +msgid "Actions" +msgstr "Åtgärder" + +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 +msgid "Page Link" +msgstr "Länk" + +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 +msgid "Title" +msgstr "Titel" + +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 +msgid "Created" +msgstr "Skapad" + +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 +msgid "Edited" +msgstr "Ändrad" + +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Rumsnamn saknas" + +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Rumsnamnet finns redan" + +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ogiltig rumsbeskrivning." + +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Rummet hittades inte." + +#: ../../include/chat.php:116 ../../include/items.php:4013 +#: ../../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 +#: ../../mod/mood.php:112 ../../mod/mitem.php:106 +#: ../../mod/achievements.php:30 ../../mod/profiles.php:179 +#: ../../mod/profiles.php:550 ../../mod/setup.php:207 ../../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/sources.php:66 ../../mod/blocks.php:67 +#: ../../mod/blocks.php:75 ../../mod/register.php:72 ../../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/regmod.php:17 ../../mod/network.php:12 ../../mod/common.php:35 +#: ../../mod/photos.php:68 ../../mod/connections.php:169 +#: ../../mod/manage.php:6 ../../mod/connedit.php:266 ../../mod/thing.php:247 +#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/webpages.php:67 +#: ../../mod/bookmarks.php:46 ../../mod/editblock.php:65 +#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:64 +#: ../../mod/editlayout.php:89 ../../mod/editpost.php:13 +#: ../../mod/settings.php:526 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 +#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/item.php:191 +#: ../../mod/item.php:199 ../../mod/item.php:971 ../../mod/like.php:154 +#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:71 +#: ../../mod/layouts.php:67 ../../mod/layouts.php:74 ../../mod/layouts.php:85 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/viewsrc.php:14 ../../mod/mail.php:111 ../../mod/menu.php:61 +#: ../../mod/message.php:16 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 +#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/appman.php:66 +#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 +msgid "Permission denied." +msgstr "Behörighet saknas." + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Rummet är fullt" + +#: ../../include/oembed.php:171 +msgid "Embedded content" +msgstr "Inbäddat innehåll" + +#: ../../include/oembed.php:180 +msgid "Embedding disabled" +msgstr "Inbäddning inaktiverat" + +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 +#: ../../include/taxonomy.php:230 +msgid "Categories" +msgstr "Kategorier" + +#: ../../include/widgets.php:86 ../../include/nav.php:171 +#: ../../mod/apps.php:33 +msgid "Apps" +msgstr "Appar" + +#: ../../include/widgets.php:87 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:90 +msgid "Create Personal App" +msgstr "Skapa personlig app" + +#: ../../include/widgets.php:91 +msgid "Edit Personal App" +msgstr "Redigera personlig app" + +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 msgid "Ignore/Hide" msgstr "Ignorera/göm" -#: ../../include/widgets.php:123 ../../mod/connections.php:265 +#: ../../include/widgets.php:143 ../../mod/connections.php:267 msgid "Suggestions" msgstr "Förslag" -#: ../../include/widgets.php:124 +#: ../../include/widgets.php:144 msgid "See more..." msgstr "Se fler..." -#: ../../include/widgets.php:146 +#: ../../include/widgets.php:166 #, php-format msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "Du har %1$.0f av %2$.0f tillåtna kontakter." -#: ../../include/widgets.php:152 +#: ../../include/widgets.php:172 msgid "Add New Connection" msgstr "Lägg till ny kontakt" -#: ../../include/widgets.php:153 +#: ../../include/widgets.php:173 msgid "Enter the channel address" msgstr "Ange kanaladressen" -#: ../../include/widgets.php:154 +#: ../../include/widgets.php:174 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Exempel: bob@example.com, http://example.com/barbara" -#: ../../include/widgets.php:171 +#: ../../include/widgets.php:191 msgid "Notes" msgstr "Anteckningar" -#: ../../include/widgets.php:173 ../../include/text.php:805 -#: ../../include/text.php:819 ../../mod/filer.php:50 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 +#: ../../include/widgets.php:193 ../../include/text.php:827 +#: ../../include/text.php:839 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 ../../mod/admin.php:1339 ../../mod/admin.php:1360 msgid "Save" msgstr "Spara" -#: ../../include/widgets.php:243 +#: ../../include/widgets.php:263 msgid "Remove term" msgstr "Ta bort uttryck" -#: ../../include/widgets.php:252 ../../include/features.php:52 +#: ../../include/widgets.php:272 ../../include/features.php:58 msgid "Saved Searches" msgstr "Sparade sökningar" -#: ../../include/widgets.php:253 ../../include/group.php:290 +#: ../../include/widgets.php:273 ../../include/group.php:303 msgid "add" msgstr "lägg till" -#: ../../include/widgets.php:283 ../../include/features.php:66 -#: ../../include/contact_widgets.php:58 +#: ../../include/widgets.php:303 ../../include/contact_widgets.php:57 +#: ../../include/features.php:72 msgid "Saved Folders" msgstr "Sparade mappar" -#: ../../include/widgets.php:286 ../../include/contact_widgets.php:61 +#: ../../include/widgets.php:306 ../../include/contact_widgets.php:60 #: ../../include/contact_widgets.php:95 msgid "Everything" msgstr "Allt" -#: ../../include/widgets.php:322 +#: ../../include/widgets.php:352 msgid "Archives" msgstr "Arkiv" -#: ../../include/widgets.php:384 +#: ../../include/widgets.php:428 msgid "Refresh" msgstr "Ladda om" -#: ../../include/widgets.php:385 ../../mod/connedit.php:395 +#: ../../include/widgets.php:429 ../../mod/connedit.php:506 msgid "Me" msgstr "Mig själv" -#: ../../include/widgets.php:386 ../../mod/connedit.php:397 +#: ../../include/widgets.php:430 ../../mod/connedit.php:508 msgid "Best Friends" msgstr "Bästa vänner" -#: ../../include/widgets.php:387 ../../include/identity.php:342 -#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:398 +#: ../../include/widgets.php:431 ../../include/identity.php:387 +#: ../../include/identity.php:388 ../../include/identity.php:395 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:509 +#: ../../mod/settings.php:304 ../../mod/settings.php:308 +#: ../../mod/settings.php:309 ../../mod/settings.php:312 +#: ../../mod/settings.php:323 msgid "Friends" msgstr "Vänner" -#: ../../include/widgets.php:388 +#: ../../include/widgets.php:432 msgid "Co-workers" msgstr "Kollegor" -#: ../../include/widgets.php:389 ../../mod/connedit.php:399 +#: ../../include/widgets.php:433 ../../mod/connedit.php:510 msgid "Former Friends" msgstr "Tidigare vänner" -#: ../../include/widgets.php:390 ../../mod/connedit.php:400 +#: ../../include/widgets.php:434 ../../mod/connedit.php:511 msgid "Acquaintances" msgstr "Bekanta" -#: ../../include/widgets.php:391 +#: ../../include/widgets.php:435 msgid "Everybody" msgstr "Alla" -#: ../../include/widgets.php:423 +#: ../../include/widgets.php:469 msgid "Account settings" msgstr "Kontoinställningar" -#: ../../include/widgets.php:429 +#: ../../include/widgets.php:475 msgid "Channel settings" msgstr "Kanalinställningar" -#: ../../include/widgets.php:435 +#: ../../include/widgets.php:481 msgid "Additional features" msgstr "Tilläggsfunktioner" -#: ../../include/widgets.php:441 +#: ../../include/widgets.php:487 msgid "Feature settings" msgstr "Funktionsinställningar" -#: ../../include/widgets.php:447 +#: ../../include/widgets.php:493 msgid "Display settings" msgstr "Utseende" -#: ../../include/widgets.php:453 +#: ../../include/widgets.php:499 msgid "Connected apps" msgstr "Anslutna appar" -#: ../../include/widgets.php:459 +#: ../../include/widgets.php:505 msgid "Export channel" msgstr "Exportera kanal" -#: ../../include/widgets.php:471 -msgid "Automatic Permissions (Advanced)" -msgstr "Automatiska rättigheter (avancerat)" +#: ../../include/widgets.php:511 +msgid "Export content" +msgstr "Exportera innehåll" -#: ../../include/widgets.php:481 +#: ../../include/widgets.php:520 ../../mod/connedit.php:538 +msgid "Connection Default Permissions" +msgstr "Standardbehörighet för kontakt" + +#: ../../include/widgets.php:528 msgid "Premium Channel Settings" msgstr "Inställningar för premiumkanal" -#: ../../include/widgets.php:490 ../../include/features.php:43 +#: ../../include/widgets.php:537 ../../include/features.php:49 #: ../../mod/sources.php:88 msgid "Channel Sources" msgstr "Kanalkällor" -#: ../../include/widgets.php:501 ../../include/nav.php:186 -#: ../../mod/admin.php:976 ../../mod/admin.php:1181 +#: ../../include/widgets.php:548 ../../include/nav.php:218 +#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 msgid "Settings" msgstr "Inställningar" -#: ../../include/widgets.php:518 +#: ../../include/widgets.php:562 ../../mod/mail.php:124 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Meddelanden" + +#: ../../include/widgets.php:567 msgid "Check Mail" msgstr "Hämta meddelanden" -#: ../../include/widgets.php:523 ../../include/nav.php:177 +#: ../../include/widgets.php:572 ../../include/nav.php:209 msgid "New Message" msgstr "Nytt meddelande" -#: ../../include/widgets.php:599 +#: ../../include/widgets.php:648 msgid "Chat Rooms" msgstr "Chattrum" -#: ../../include/widgets.php:617 +#: ../../include/widgets.php:666 msgid "Bookmarked Chatrooms" msgstr "Bokmärkta chattrum" -#: ../../include/widgets.php:635 +#: ../../include/widgets.php:684 msgid "Suggested Chatrooms" msgstr "Föreslagna chattrum" +#: ../../include/zot.php:664 +msgid "Invalid data packet" +msgstr "Ogiltigt datapaket" + +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "Kunde inte bekräfta kanalsignatur" + +#: ../../include/zot.php:1799 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kunde inte bekräfta signatur för servern %s" + #: ../../include/activities.php:39 msgid " and " msgstr " och " @@ -215,2571 +936,275 @@ msgstr "Besök %1$ss %2$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s har en uppdaterad %2$s (har ändrat %3$s)." -#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1443 -msgid "Logout" -msgstr "Logga ut" +#: ../../include/bb2diaspora.php:384 +msgid "Attachments:" +msgstr "Bilagor:" -#: ../../include/nav.php:77 ../../include/nav.php:96 -msgid "End this session" -msgstr "Avsluta sessionen" - -#: ../../include/nav.php:80 ../../include/nav.php:130 -msgid "Home" -msgstr "Hem" - -#: ../../include/nav.php:80 -msgid "Your posts and conversations" -msgstr "Dina inlägg och konversationer" - -#: ../../include/nav.php:81 ../../include/conversation.php:937 -#: ../../mod/connedit.php:318 ../../mod/connedit.php:432 -msgid "View Profile" -msgstr "Visa profil" - -#: ../../include/nav.php:81 -msgid "Your profile page" -msgstr "Din profilsida" - -#: ../../include/nav.php:83 -msgid "Edit Profiles" -msgstr "Redigera profiler" - -#: ../../include/nav.php:83 -msgid "Manage/Edit profiles" -msgstr "Hantera/redigera profiler" - -#: ../../include/nav.php:84 ../../include/conversation.php:1504 -#: ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foton" - -#: ../../include/nav.php:84 -msgid "Your photos" -msgstr "Dina foton" - -#: ../../include/nav.php:85 ../../include/conversation.php:1513 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Filer" - -#: ../../include/nav.php:85 -msgid "Your files" -msgstr "Dina filer" - -#: ../../include/nav.php:86 -msgid "Chat" -msgstr "Chatt" - -#: ../../include/nav.php:86 -msgid "Your chatrooms" -msgstr "Dina chattrum" - -#: ../../include/nav.php:87 ../../include/nav.php:180 -#: ../../include/conversation.php:1535 ../../mod/events.php:357 -msgid "Events" -msgstr "Händelser" - -#: ../../include/nav.php:87 -msgid "Your events" -msgstr "Dina händelser" - -#: ../../include/nav.php:88 ../../include/conversation.php:1543 -msgid "Bookmarks" -msgstr "Bokmärken" - -#: ../../include/nav.php:88 -msgid "Your bookmarks" -msgstr "Dina bokmärken" - -#: ../../include/nav.php:90 ../../include/conversation.php:1554 -#: ../../mod/webpages.php:79 -msgid "Webpages" -msgstr "Webbsidor" - -#: ../../include/nav.php:90 -msgid "Your webpages" -msgstr "Dina webbsidor" - -#: ../../include/nav.php:94 ../../boot.php:1444 -msgid "Login" -msgstr "Logga in" - -#: ../../include/nav.php:94 -msgid "Sign in" -msgstr "Logga in" - -#: ../../include/nav.php:111 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klicka för att logga ut" - -#: ../../include/nav.php:116 -msgid "Click to authenticate to your home hub" -msgstr "Klicka för att autentisera mot din hemmahubb" - -#: ../../include/nav.php:130 -msgid "Home Page" -msgstr "Hemsida" - -#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1420 -msgid "Register" -msgstr "Registrera" - -#: ../../include/nav.php:134 -msgid "Create an account" -msgstr "Skapa ett konto" - -#: ../../include/nav.php:139 ../../mod/help.php:60 ../../mod/help.php:65 -msgid "Help" -msgstr "Hjälp" - -#: ../../include/nav.php:139 -msgid "Help and documentation" -msgstr "Hjälp och dokumentation" - -#: ../../include/nav.php:142 -msgid "Apps" -msgstr "Appar" - -#: ../../include/nav.php:142 -msgid "Addon applications, utilities, games" -msgstr "Tilläggsapplikationer, verktyg, spel" - -#: ../../include/nav.php:144 ../../include/text.php:803 -#: ../../include/text.php:817 ../../mod/search.php:29 -msgid "Search" -msgstr "Sök" - -#: ../../include/nav.php:144 -msgid "Search site content" -msgstr "Sök innehåll" - -#: ../../include/nav.php:147 ../../mod/directory.php:215 -msgid "Directory" -msgstr "Katalog" - -#: ../../include/nav.php:147 -msgid "Channel Locator" -msgstr "Kanalfinnare" - -#: ../../include/nav.php:158 -msgid "Matrix" -msgstr "Matris" - -#: ../../include/nav.php:158 -msgid "Your matrix" -msgstr "Din matris" - -#: ../../include/nav.php:159 -msgid "Mark all matrix notifications seen" -msgstr "Märk alla matrisnotifieringar som lästa" - -#: ../../include/nav.php:161 -msgid "Channel Home" -msgstr "Kanalhem" - -#: ../../include/nav.php:161 -msgid "Channel home" -msgstr "Kanalhem" - -#: ../../include/nav.php:162 -msgid "Mark all channel notifications seen" -msgstr "Märk alla kanalnotifieringar som lästa" - -#: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:384 -msgid "Connections" -msgstr "Kontakter" - -#: ../../include/nav.php:168 -msgid "Notices" -msgstr "Meddelanden" - -#: ../../include/nav.php:168 -msgid "Notifications" -msgstr "Notifieringar" - -#: ../../include/nav.php:169 -msgid "See all notifications" -msgstr "Se alla notifieringar" - -#: ../../include/nav.php:170 -msgid "Mark all system notifications seen" -msgstr "Märk alla systemnotifieringar som lästa" - -#: ../../include/nav.php:172 -msgid "Mail" -msgstr "Privat meddelande" - -#: ../../include/nav.php:172 -msgid "Private mail" -msgstr "Privat meddelande" - -#: ../../include/nav.php:173 -msgid "See all private messages" -msgstr "Se alla privata meddelanden" - -#: ../../include/nav.php:174 -msgid "Mark all private messages seen" -msgstr "Märk alla privata meddelanden som lästa" - -#: ../../include/nav.php:175 -msgid "Inbox" -msgstr "Inkorg" - -#: ../../include/nav.php:176 -msgid "Outbox" -msgstr "Utkorg" - -#: ../../include/nav.php:180 -msgid "Event Calendar" -msgstr "Kalender" - -#: ../../include/nav.php:181 -msgid "See all events" -msgstr "Se alla händelser" - -#: ../../include/nav.php:182 -msgid "Mark all events seen" -msgstr "Märk alla händelser som lästa" - -#: ../../include/nav.php:184 -msgid "Channel Select" -msgstr "Välj kanal" - -#: ../../include/nav.php:184 -msgid "Manage Your Channels" -msgstr "Hantera dina kanaler" - -#: ../../include/nav.php:186 -msgid "Account/Channel Settings" -msgstr "Konto-/kanalinställningar" - -#: ../../include/nav.php:188 -msgid "Manage/Edit Friends and Connections" -msgstr "Hantera/redigera vänner och kontakter" - -#: ../../include/nav.php:195 ../../mod/admin.php:117 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:195 -msgid "Site Setup and Configuration" -msgstr "Serverinställning och -konfiguration" - -#: ../../include/nav.php:220 -msgid "Nothing new here" -msgstr "Inget nytt här" - -#: ../../include/nav.php:225 -msgid "Please wait..." -msgstr "Vänta..." - -#: ../../include/event.php:11 ../../include/bb2diaspora.php:433 +#: ../../include/bb2diaspora.php:463 ../../include/event.php:11 msgid "l F d, Y \\@ g:i A" msgstr "l j F Y \\k\\l. H.i" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:439 +#: ../../include/bb2diaspora.php:465 +msgid "Redmatrix event notification:" +msgstr "Händelsenotifiering från Redmatrix:" + +#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 msgid "Starts:" msgstr "Börjar:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:447 +#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 msgid "Finishes:" msgstr "Slutar:" -#: ../../include/event.php:40 ../../include/identity.php:726 -#: ../../include/bb2diaspora.php:455 ../../mod/events.php:465 -#: ../../mod/directory.php:161 ../../mod/dirprofile.php:111 +#: ../../include/bb2diaspora.php:485 ../../include/event.php:40 +#: ../../include/identity.php:891 ../../mod/directory.php:159 +#: ../../mod/events.php:579 msgid "Location:" msgstr "Plats:" -#: ../../include/api.php:1016 -msgid "Public Timeline" -msgstr "Offentlig tidslinje" +#: ../../include/RedDAV/RedBrowser.php:106 +#: ../../include/RedDAV/RedBrowser.php:249 +msgid "parent" +msgstr "en nivå upp" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nytt fönster" +#: ../../include/RedDAV/RedBrowser.php:130 +msgid "Collection" +msgstr "Samling" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öppna den valda platsen i ett annat fönster eller en annan webbläsarflik" +#: ../../include/RedDAV/RedBrowser.php:133 +msgid "Principal" +msgstr "Bas" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Allmänna funktioner" +#: ../../include/RedDAV/RedBrowser.php:136 +msgid "Addressbook" +msgstr "Adressbok" -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "Tidsbegränsat innehåll" +#: ../../include/RedDAV/RedBrowser.php:139 +msgid "Calendar" +msgstr "Kalender" -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Ta bort inlägg/kommentarer och/eller privata meddelanden efter en tid" +#: ../../include/RedDAV/RedBrowser.php:142 +msgid "Schedule Inbox" +msgstr "Schemainkorg" -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "Flera profiler" +#: ../../include/RedDAV/RedBrowser.php:145 +msgid "Schedule Outbox" +msgstr "Schemautkorg" -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Möjlighet att skapa flera profiler" - -#: ../../include/features.php:27 -msgid "Web Pages" -msgstr "Webbsidor" - -#: ../../include/features.php:27 -msgid "Provide managed web pages on your channel" -msgstr "Tillhandahåll ordnade webbsidor i din kanal" - -#: ../../include/features.php:28 -msgid "Private Notes" -msgstr "Privata anteckningar" - -#: ../../include/features.php:28 -msgid "Enables a tool to store notes and reminders" -msgstr "Aktivera ett verktyg för att spara anteckningar och påminnelser" - -#: ../../include/features.php:33 -msgid "Extended Identity Sharing" -msgstr "Utökad identitetsdelning" - -#: ../../include/features.php:33 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Dela din identitet med alla webbplatser på Internet. Om inaktiverat är identiteten bara delad med platser i matrisen." - -#: ../../include/features.php:34 -msgid "Expert Mode" -msgstr "Expertläge" - -#: ../../include/features.php:34 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktivera expertläge för att tillåta avancerade inställningar" - -#: ../../include/features.php:35 -msgid "Premium Channel" -msgstr "Premiumkanal" - -#: ../../include/features.php:35 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Låter dig ange begränsningar och villkor för dem som vill ansluta till din kanal" - -#: ../../include/features.php:40 -msgid "Post Composition Features" -msgstr "Skrivfunktioner" - -#: ../../include/features.php:41 -msgid "Richtext Editor" -msgstr "Richtext-editor" - -#: ../../include/features.php:41 -msgid "Enable richtext editor" -msgstr "Aktivera richtext-editor" - -#: ../../include/features.php:42 -msgid "Post Preview" -msgstr "Förhandsgranskning" - -#: ../../include/features.php:42 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Tillåt förhandsgranskning av inlägg och kommentarer innan de publiceras" - -#: ../../include/features.php:43 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importera kanalinnehåll från andra kanaler eller strömmar automatiskt" - -#: ../../include/features.php:44 -msgid "Even More Encryption" -msgstr "Ytterligare kryptering" - -#: ../../include/features.php:44 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Tillåt änd-till-änd-kryptering av innehåll med en delad hemlig nyckel" - -#: ../../include/features.php:49 -msgid "Network and Stream Filtering" -msgstr "Nätverk och strömfiltrering" - -#: ../../include/features.php:50 -msgid "Search by Date" -msgstr "Sök på datum" - -#: ../../include/features.php:50 -msgid "Ability to select posts by date ranges" -msgstr "Tillåter urval av inlägg baserat på datum" - -#: ../../include/features.php:51 -msgid "Collections Filter" -msgstr "Sammanhangsfilter" - -#: ../../include/features.php:51 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Aktivera en väljare för att visa nätverksinlägg från enbart valda sammanhang" - -#: ../../include/features.php:52 -msgid "Save search terms for re-use" -msgstr "Spara sökuttryck för återanvändning" - -#: ../../include/features.php:53 -msgid "Network Personal Tab" -msgstr "Personlig nätverksflik" - -#: ../../include/features.php:53 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktivera en flik som visar endast de nätverksinlägg som du har deltagit i" - -#: ../../include/features.php:54 -msgid "Network New Tab" -msgstr "Flik för nytt på nätverket" - -#: ../../include/features.php:54 -msgid "Enable tab to display all new Network activity" -msgstr "Aktivera en flik som visar all ny nätverksaktivitet" - -#: ../../include/features.php:55 -msgid "Affinity Tool" -msgstr "Samhörighetsverktyg" - -#: ../../include/features.php:55 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrera strömaktivitet efter hur nära relationen är" - -#: ../../include/features.php:56 -msgid "Suggest Channels" -msgstr "Föreslå kanaler" - -#: ../../include/features.php:56 -msgid "Show channel suggestions" -msgstr "Visa förslag på kanaler" - -#: ../../include/features.php:61 -msgid "Post/Comment Tools" -msgstr "Inläggs-/kommentarsverktyg" - -#: ../../include/features.php:63 -msgid "Edit Sent Posts" -msgstr "Redigera sända inlägg" - -#: ../../include/features.php:63 -msgid "Edit and correct posts and comments after sending" -msgstr "Redigera och korrigera inlägg och kommentarer efter att de skickats" - -#: ../../include/features.php:64 -msgid "Tagging" -msgstr "Taggning" - -#: ../../include/features.php:64 -msgid "Ability to tag existing posts" -msgstr "Möjlighet att tagga befintliga inlägg" - -#: ../../include/features.php:65 -msgid "Post Categories" -msgstr "Inläggskategorier" - -#: ../../include/features.php:65 -msgid "Add categories to your posts" -msgstr "Lägg till kategorier till dina inlägg" - -#: ../../include/features.php:66 -msgid "Ability to file posts under folders" -msgstr "Möjlighet att lägga inlägg i mappar" - -#: ../../include/features.php:67 -msgid "Dislike Posts" -msgstr "Ogilla inlägg" - -#: ../../include/features.php:67 -msgid "Ability to dislike posts/comments" -msgstr "Möjlighet att ogilla inlägg/kommentarer" - -#: ../../include/features.php:68 -msgid "Star Posts" -msgstr "Märk inlägg" - -#: ../../include/features.php:68 -msgid "Ability to mark special posts with a star indicator" -msgstr "Möjlighet att märka speciella inlägg med en stjärna" - -#: ../../include/features.php:69 -msgid "Tag Cloud" -msgstr "Taggmoln" - -#: ../../include/features.php:69 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Tillhandahåll ett personligt taggmoln på din kanalsida" - -#: ../../include/contact_selectors.php:30 -msgid "Unknown | Not categorised" -msgstr "Okänd | Inte kategoriserad" - -#: ../../include/contact_selectors.php:31 -msgid "Block immediately" -msgstr "Blockera genast" - -#: ../../include/contact_selectors.php:32 -msgid "Shady, spammer, self-marketer" -msgstr "Skum, spammare, självförhärligande" - -#: ../../include/contact_selectors.php:33 -msgid "Known to me, but no opinion" -msgstr "Känner till, men ingen åsikt" - -#: ../../include/contact_selectors.php:34 -msgid "OK, probably harmless" -msgstr "OK, antagligen harmlös" - -#: ../../include/contact_selectors.php:35 -msgid "Reputable, has my trust" -msgstr "Ansedd, har mitt förtroende" - -#: ../../include/contact_selectors.php:54 -msgid "Frequently" -msgstr "Ofta" - -#: ../../include/contact_selectors.php:55 -msgid "Hourly" -msgstr "Varje timme" - -#: ../../include/contact_selectors.php:56 -msgid "Twice daily" -msgstr "Två gånger dagligen" - -#: ../../include/contact_selectors.php:57 -msgid "Daily" -msgstr "Dagligen" - -#: ../../include/contact_selectors.php:58 -msgid "Weekly" -msgstr "Varje vecka" - -#: ../../include/contact_selectors.php:59 -msgid "Monthly" -msgstr "Varje månad" - -#: ../../include/contact_selectors.php:74 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:75 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:76 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:77 ../../mod/admin.php:753 -#: ../../mod/admin.php:762 ../../boot.php:1446 -msgid "Email" -msgstr "E-post" - -#: ../../include/contact_selectors.php:78 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:79 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:80 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:81 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:82 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:83 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/conversation.php:117 ../../include/text.php:1697 -#: ../../mod/like.php:111 ../../mod/subthread.php:89 ../../mod/tagger.php:45 -msgid "photo" -msgstr "foto" - -#: ../../include/conversation.php:120 ../../include/text.php:1700 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "händelse" - -#: ../../include/conversation.php:123 -msgid "channel" -msgstr "kanal" - -#: ../../include/conversation.php:145 ../../include/text.php:1703 -#: ../../mod/like.php:111 ../../mod/subthread.php:89 ../../mod/tagger.php:53 -msgid "status" -msgstr "status" - -#: ../../include/conversation.php:147 ../../include/text.php:1705 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "kommentar" - -#: ../../include/conversation.php:161 ../../mod/like.php:142 +#: ../../include/RedDAV/RedBrowser.php:223 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gillar %2$ss %3$s" +msgid "%1$s used" +msgstr "%1$s använt" -#: ../../include/conversation.php:164 ../../mod/like.php:144 +#: ../../include/RedDAV/RedBrowser.php:228 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gillar inte %2$ss %3$s" +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s använt av %2$s (%3$s%)" -#: ../../include/conversation.php:201 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s har nu kontakt med %2$s" +#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:551 +#: ../../mod/settings.php:577 ../../mod/admin.php:866 +msgid "Name" +msgstr "Namn" -#: ../../include/conversation.php:236 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s puffade %2$s" +#: ../../include/RedDAV/RedBrowser.php:246 +msgid "Type" +msgstr "Typ" -#: ../../include/conversation.php:240 ../../include/text.php:885 -msgid "poked" -msgstr "puffade" +#: ../../include/RedDAV/RedBrowser.php:247 +msgid "Size" +msgstr "Storlek" -#: ../../include/conversation.php:258 ../../mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s är för tillfället %2$s" +#: ../../include/RedDAV/RedBrowser.php:248 +msgid "Last Modified" +msgstr "Senast ändrad" -#: ../../include/conversation.php:631 ../../include/ItemObject.php:114 -msgid "Select" -msgstr "Välj" +#: ../../include/RedDAV/RedBrowser.php:252 +msgid "Total" +msgstr "Totalt" -#: ../../include/conversation.php:632 ../../include/ItemObject.php:108 -#: ../../mod/thing.php:236 ../../mod/settings.php:578 ../../mod/group.php:176 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:365 -#: ../../mod/filestorage.php:171 ../../mod/photos.php:1043 -msgid "Delete" -msgstr "Ta bort" +#: ../../include/RedDAV/RedBrowser.php:305 +msgid "Create new folder" +msgstr "Skapa ny mapp" -#: ../../include/conversation.php:639 ../../include/ItemObject.php:89 -#: ../../mod/photos.php:846 -msgid "Private Message" -msgstr "Privat meddelande" +#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:169 +#: ../../mod/menu.php:100 ../../mod/new_channel.php:122 +msgid "Create" +msgstr "Skapa" -#: ../../include/conversation.php:646 ../../include/ItemObject.php:161 -msgid "Message is verified" -msgstr "Meddelandet är bekräftat" +#: ../../include/RedDAV/RedBrowser.php:307 +msgid "Upload file" +msgstr "Ladda upp fil" -#: ../../include/conversation.php:666 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Visa %ss profil på %s" +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:738 +#: ../../mod/photos.php:1245 ../../mod/profile_photo.php:361 +msgid "Upload" +msgstr "Ladda upp" -#: ../../include/conversation.php:680 -msgid "Categories:" -msgstr "Kategorier:" - -#: ../../include/conversation.php:681 -msgid "Filed under:" -msgstr "Postat under:" - -#: ../../include/conversation.php:690 ../../include/ItemObject.php:226 -#, php-format -msgid " from %s" -msgstr "från %s" - -#: ../../include/conversation.php:693 ../../include/ItemObject.php:229 -#, php-format -msgid "last edited: %s" -msgstr "senast redigerat: %s" - -#: ../../include/conversation.php:694 ../../include/ItemObject.php:230 -#, php-format -msgid "Expires: %s" -msgstr "Upphör: %s" - -#: ../../include/conversation.php:709 -msgid "View in context" -msgstr "Visa sammanhang" - -#: ../../include/conversation.php:711 ../../include/conversation.php:1127 -#: ../../include/ItemObject.php:259 ../../mod/mail.php:222 -#: ../../mod/mail.php:336 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:120 ../../mod/editlayout.php:115 -#: ../../mod/editwebpage.php:152 ../../mod/photos.php:974 -msgid "Please wait" -msgstr "Vänta" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "ta bort" - -#: ../../include/conversation.php:842 -msgid "Loading..." -msgstr "Laddar..." - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Ta bort valda poster" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Visa källa" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Följ tråd" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Visa status" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Visa foton" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Matrisaktivitet" - -#: ../../include/conversation.php:940 -msgid "Edit Contact" -msgstr "Redigera kontakt" - -#: ../../include/conversation.php:941 -msgid "Send PM" -msgstr "Skicka meddelande" - -#: ../../include/conversation.php:942 -msgid "Poke" -msgstr "Puffa" - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s likes this." -msgstr "%s gillar det här." - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gillar inte det här." - -#: ../../include/conversation.php:1002 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d person gillar det här." -msgstr[1] "%2$d personer gillar det här." - -#: ../../include/conversation.php:1004 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d person gillar inte det här." -msgstr[1] "%2$d personer gillar inte det här." - -#: ../../include/conversation.php:1010 -msgid "and" -msgstr "och" - -#: ../../include/conversation.php:1013 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", och %d annan person" -msgstr[1] ", och %d andra personer" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s like this." -msgstr "%s gillar det här." - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s don't like this." -msgstr "%s gillar inte det här." - -#: ../../include/conversation.php:1071 -msgid "Visible to everybody" -msgstr "Synlig för alla" - -#: ../../include/conversation.php:1072 ../../mod/mail.php:171 -#: ../../mod/mail.php:269 -msgid "Please enter a link URL:" -msgstr "Ange en länkadress:" - -#: ../../include/conversation.php:1073 -msgid "Please enter a video link/URL:" -msgstr "Ange en videolänkadress:" - -#: ../../include/conversation.php:1074 -msgid "Please enter an audio link/URL:" -msgstr "Ange en ljudlänkadress" - -#: ../../include/conversation.php:1075 -msgid "Tag term:" -msgstr "Tagguttryck" - -#: ../../include/conversation.php:1076 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Spara i mapp:" - -#: ../../include/conversation.php:1077 -msgid "Where are you right now?" -msgstr "Var är du just nu?" - -#: ../../include/conversation.php:1078 ../../mod/mail.php:172 -#: ../../mod/mail.php:270 ../../mod/editpost.php:52 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Upphör YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1088 ../../include/ItemObject.php:557 -#: ../../mod/webpages.php:123 ../../mod/editpost.php:140 -#: ../../mod/editblock.php:141 ../../mod/editlayout.php:135 -#: ../../mod/editwebpage.php:175 ../../mod/photos.php:994 -msgid "Preview" -msgstr "Förhandsgranska" - -#: ../../include/conversation.php:1102 ../../mod/layouts.php:113 -#: ../../mod/photos.php:973 -msgid "Share" -msgstr "Dela" - -#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "Titel på sidlänk" - -#: ../../include/conversation.php:1107 -msgid "Post as" -msgstr "Posta som" - -#: ../../include/conversation.php:1108 ../../mod/mail.php:219 -#: ../../mod/mail.php:332 ../../mod/editpost.php:113 -#: ../../mod/editblock.php:112 ../../mod/editlayout.php:107 -#: ../../mod/editwebpage.php:144 -msgid "Upload photo" -msgstr "Ladda upp foto" - -#: ../../include/conversation.php:1109 -msgid "upload photo" -msgstr "ladda upp foto" - -#: ../../include/conversation.php:1110 ../../mod/mail.php:220 -#: ../../mod/mail.php:333 ../../mod/editpost.php:114 -#: ../../mod/editblock.php:113 ../../mod/editlayout.php:108 -#: ../../mod/editwebpage.php:145 -msgid "Attach file" -msgstr "Bifoga fil" - -#: ../../include/conversation.php:1111 -msgid "attach file" -msgstr "bifoga fil" - -#: ../../include/conversation.php:1112 ../../mod/mail.php:221 -#: ../../mod/mail.php:334 ../../mod/editpost.php:115 -#: ../../mod/editblock.php:114 ../../mod/editlayout.php:109 -#: ../../mod/editwebpage.php:146 -msgid "Insert web link" -msgstr "Infoga webblänk" - -#: ../../include/conversation.php:1113 -msgid "web link" -msgstr "webblänk" - -#: ../../include/conversation.php:1114 -msgid "Insert video link" -msgstr "Infoga videolänk" - -#: ../../include/conversation.php:1115 -msgid "video link" -msgstr "videolänk" - -#: ../../include/conversation.php:1116 -msgid "Insert audio link" -msgstr "Infoga ljudlänk" - -#: ../../include/conversation.php:1117 -msgid "audio link" -msgstr "ljudlänk" - -#: ../../include/conversation.php:1118 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:118 ../../mod/editlayout.php:113 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" -msgstr "Ange din plats" - -#: ../../include/conversation.php:1119 -msgid "set location" -msgstr "ange plats" - -#: ../../include/conversation.php:1120 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:119 ../../mod/editlayout.php:114 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" -msgstr "Rensa webbläsarplats" - -#: ../../include/conversation.php:1121 -msgid "clear location" -msgstr "rensa plats" - -#: ../../include/conversation.php:1123 ../../mod/editpost.php:132 -#: ../../mod/editblock.php:132 ../../mod/editlayout.php:126 -#: ../../mod/editwebpage.php:167 -msgid "Set title" -msgstr "Ange titel" - -#: ../../include/conversation.php:1126 ../../mod/editpost.php:134 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 -#: ../../mod/editwebpage.php:169 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparerad lista)" - -#: ../../include/conversation.php:1128 ../../mod/editpost.php:122 -#: ../../mod/editblock.php:121 ../../mod/editlayout.php:116 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" -msgstr "Behörighetsinställningar" - -#: ../../include/conversation.php:1129 -msgid "permissions" -msgstr "behörighet" - -#: ../../include/conversation.php:1136 ../../mod/editpost.php:129 -#: ../../mod/editblock.php:129 ../../mod/editlayout.php:123 -#: ../../mod/editwebpage.php:162 -msgid "Public post" -msgstr "Offentligt inlägg" - -#: ../../include/conversation.php:1138 ../../mod/editpost.php:135 -#: ../../mod/editblock.php:136 ../../mod/editlayout.php:130 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exempel: bob@example.com, mary@example.com" - -#: ../../include/conversation.php:1151 ../../mod/mail.php:226 -#: ../../mod/mail.php:339 ../../mod/editpost.php:146 -#: ../../mod/editblock.php:146 ../../mod/editlayout.php:140 -#: ../../mod/editwebpage.php:180 -msgid "Set expiration date" -msgstr "Ange utgångsdatum" - -#: ../../include/conversation.php:1153 ../../include/ItemObject.php:560 -#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:148 -msgid "Encrypt text" -msgstr "Kryptera text" - -#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1156 ../../mod/settings.php:516 -#: ../../mod/settings.php:542 ../../mod/editpost.php:151 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 -msgid "Cancel" -msgstr "Avbryt" - -#: ../../include/conversation.php:1395 -msgid "Discover" -msgstr "Upptäck" - -#: ../../include/conversation.php:1398 -msgid "Imported public streams" -msgstr "Importerade offentliga strömmar" - -#: ../../include/conversation.php:1403 -msgid "Commented Order" -msgstr "Kommentarsordning" - -#: ../../include/conversation.php:1406 -msgid "Sort by Comment Date" -msgstr "Ordna efter kommentarsdatum" - -#: ../../include/conversation.php:1410 -msgid "Posted Order" -msgstr "Inläggsordning" - -#: ../../include/conversation.php:1413 -msgid "Sort by Post Date" -msgstr "Ordna efter när inlägget skrevs" - -#: ../../include/conversation.php:1418 -msgid "Personal" -msgstr "Personligt" - -#: ../../include/conversation.php:1421 -msgid "Posts that mention or involve you" -msgstr "Inlägg som nämner eller berör dig" - -#: ../../include/conversation.php:1427 ../../mod/menu.php:61 -#: ../../mod/connections.php:211 ../../mod/connections.php:223 -msgid "New" -msgstr "Nytt" - -#: ../../include/conversation.php:1430 -msgid "Activity Stream - by date" -msgstr "Aktivitetsström - efter datum" - -#: ../../include/conversation.php:1436 -msgid "Starred" -msgstr "Märkt" - -#: ../../include/conversation.php:1439 -msgid "Favourite Posts" -msgstr "Favoritinlägg" - -#: ../../include/conversation.php:1446 -msgid "Spam" -msgstr "Skräp" - -#: ../../include/conversation.php:1449 -msgid "Posts flagged as SPAM" -msgstr "Inlägg markerade som SKRÄP" - -#: ../../include/conversation.php:1483 ../../mod/admin.php:890 -msgid "Channel" -msgstr "Kanal" - -#: ../../include/conversation.php:1486 -msgid "Status Messages and Posts" -msgstr "Statusmeddelanden och inlägg" - -#: ../../include/conversation.php:1495 -msgid "About" -msgstr "Om" - -#: ../../include/conversation.php:1498 -msgid "Profile Details" -msgstr "Profildetaljer" - -#: ../../include/conversation.php:1507 ../../include/photos.php:311 -msgid "Photo Albums" -msgstr "Fotoalbum" - -#: ../../include/conversation.php:1516 -msgid "Files and Storage" -msgstr "Filer och lagring" - -#: ../../include/conversation.php:1525 ../../include/conversation.php:1528 -msgid "Chatrooms" -msgstr "Chattrum" - -#: ../../include/conversation.php:1538 -msgid "Events and Calendar" -msgstr "Händelser och kalender" - -#: ../../include/conversation.php:1546 -msgid "Saved Bookmarks" -msgstr "Sparade bokmärken" - -#: ../../include/conversation.php:1557 -msgid "Manage Webpages" -msgstr "Hantera webbsidor" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Övrigt" - -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "år" - -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "månad" - -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:275 -msgid "never" -msgstr "aldrig" - -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "mindre än en sekund sedan" - -#: ../../include/datetime.php:284 -msgid "years" -msgstr "år" - -#: ../../include/datetime.php:285 -msgid "months" -msgstr "månader" - -#: ../../include/datetime.php:286 -msgid "week" -msgstr "vecka" - -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "veckor" - -#: ../../include/datetime.php:287 -msgid "days" -msgstr "dagar" - -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "timme" - -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "timmar" - -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "minut" - -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "minuter" - -#: ../../include/datetime.php:290 -msgid "second" -msgstr "sekund" - -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "sekunder" - -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s sedan" - -#: ../../include/dba/dba_driver.php:50 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan inte hitta DNS-information för databasserver '%s'" - -#: ../../include/bbcode.php:128 ../../include/bbcode.php:603 -#: ../../include/bbcode.php:606 ../../include/bbcode.php:611 -#: ../../include/bbcode.php:614 ../../include/bbcode.php:617 -#: ../../include/bbcode.php:620 ../../include/bbcode.php:625 -#: ../../include/bbcode.php:628 ../../include/bbcode.php:633 -#: ../../include/bbcode.php:636 ../../include/bbcode.php:639 -#: ../../include/bbcode.php:642 -msgid "Image/photo" -msgstr "Bild/foto" - -#: ../../include/bbcode.php:163 ../../include/bbcode.php:653 -msgid "Encrypted content" -msgstr "Krypterat innehåll" - -#: ../../include/bbcode.php:170 -msgid "QR code" -msgstr "QR-kod" - -#: ../../include/bbcode.php:213 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev följande %2$s %3$s" - -#: ../../include/bbcode.php:215 -msgid "post" -msgstr "post" - -#: ../../include/bbcode.php:571 ../../include/bbcode.php:591 -msgid "$1 wrote:" -msgstr "$1 skrev:" - -#: ../../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 "En borttagen grupp med det här namnet återskapades. Befintliga rättigheter till saker kan gälla för den här gruppen och alla framtida medlemmar. Om det här inte är vad du avsåg, skapa i stället en annan grupp med ett annat namn." - -#: ../../include/group.php:223 -msgid "Default privacy group for new contacts" -msgstr "Förvald integritetsgrupp för nya kontakter" - -#: ../../include/group.php:242 ../../mod/admin.php:762 -msgid "All Channels" -msgstr "Alla kanaler" - -#: ../../include/group.php:264 -msgid "edit" -msgstr "redigera" - -#: ../../include/group.php:285 -msgid "Collections" -msgstr "Sammanhang" - -#: ../../include/group.php:286 -msgid "Edit collection" -msgstr "Redigera sammanhang" - -#: ../../include/group.php:287 -msgid "Create a new collection" -msgstr "Skapa ett nytt sammanhang" - -#: ../../include/group.php:288 -msgid "Channels not in any collection" -msgstr "Kanaler utan sammanhang" - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Ta bort den här posten?" - -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:547 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "Kommentar" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:281 -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "visa fler" - -#: ../../include/js_strings.php:8 -msgid "show fewer" -msgstr "visa färre" - -#: ../../include/js_strings.php:9 -msgid "+ Show More" -msgstr "+ Visa fler" - -#: ../../include/js_strings.php:10 -msgid "- Show Less" -msgstr "- Visa färre" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Lösenord för kort" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Lösenorden stämmer inte överens" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "alla" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Hemligt lösenord" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Lösenordsledtråd" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Observera: Rättigheter har ändrats men har ännu inte skickats in" - -#: ../../include/js_strings.php:18 -msgid "timeago.prefixAgo" -msgstr "för" - -#: ../../include/js_strings.php:19 -msgid "timeago.prefixFromNow" -msgstr "om" - -#: ../../include/js_strings.php:20 -msgid "ago" -msgstr "sedan" - -#: ../../include/js_strings.php:21 -msgid "from now" -msgstr " " - -#: ../../include/js_strings.php:22 -msgid "less than a minute" -msgstr "mindre än en minut" - -#: ../../include/js_strings.php:23 -msgid "about a minute" -msgstr "ungefär en minut" - -#: ../../include/js_strings.php:24 -#, php-format -msgid "%d minutes" -msgstr "%d minuter" - -#: ../../include/js_strings.php:25 -msgid "about an hour" -msgstr "ungefär en timme" - -#: ../../include/js_strings.php:26 -#, php-format -msgid "about %d hours" -msgstr "ungefär %d timmar" - -#: ../../include/js_strings.php:27 -msgid "a day" -msgstr "en dag" - -#: ../../include/js_strings.php:28 -#, php-format -msgid "%d days" -msgstr "%d dagar" - -#: ../../include/js_strings.php:29 -msgid "about a month" -msgstr "ungefär en månad" - -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d months" -msgstr "%d månader" - -#: ../../include/js_strings.php:31 -msgid "about a year" -msgstr "ungefär ett år" - -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d years" -msgstr "%d år" - -#: ../../include/js_strings.php:33 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:34 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Ingen mottagare angiven." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[inget ämne]" - -#: ../../include/message.php:42 -msgid "Unable to determine sender." -msgstr "Kunde inte avgöra vem som är avsändare." - -#: ../../include/message.php:143 -msgid "Stored post could not be verified." -msgstr "Den sparade posten kunde inte verifieras." - -#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51 -#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225 -#: ../../mod/profile_photo.php:336 ../../mod/photos.php:91 -#: ../../mod/photos.php:655 ../../mod/photos.php:677 -msgid "Profile Photos" -msgstr "Profilfoton" - -#: ../../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:113 -#: ../../include/photos.php:15 ../../include/items.php:3606 -#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247 -#: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/mail.php:108 ../../mod/settings.php:492 -#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/editpost.php:13 ../../mod/bookmarks.php:46 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/delegate.php:6 ../../mod/pdledit.php:21 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:860 ../../mod/mitem.php:73 -#: ../../mod/group.php:9 ../../mod/viewsrc.php:12 ../../mod/setup.php:203 -#: ../../mod/connedit.php:188 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/page.php:30 ../../mod/page.php:80 -#: ../../mod/network.php:12 ../../mod/profiles.php:152 -#: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/blocks.php:29 -#: ../../mod/blocks.php:44 ../../mod/chat.php:89 ../../mod/chat.php:94 -#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 -#: ../../mod/achievements.php:27 ../../mod/editblock.php:34 -#: ../../mod/manage.php:6 ../../mod/editlayout.php:48 -#: ../../mod/profile_photo.php:187 ../../mod/profile_photo.php:200 -#: ../../mod/connections.php:169 ../../mod/notifications.php:66 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/editwebpage.php:44 -#: ../../mod/editwebpage.php:83 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/poke.php:128 ../../mod/channel.php:89 -#: ../../mod/channel.php:193 ../../mod/channel.php:236 -#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:10 -#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75 -#: ../../mod/filestorage.php:98 ../../mod/suggest.php:26 -#: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18 -#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:526 -#: ../../mod/mood.php:119 ../../index.php:176 ../../index.php:351 -msgid "Permission denied." -msgstr "Behörighet saknas." - -#: ../../include/attach.php:224 ../../include/attach.php:278 -msgid "Item was not found." -msgstr "Posten hittades inte." - -#: ../../include/attach.php:335 -msgid "No source file." -msgstr "Ingen källfil." - -#: ../../include/attach.php:352 -msgid "Cannot locate file to replace" -msgstr "Kan inte hitta fil att ersätta" - -#: ../../include/attach.php:370 -msgid "Cannot locate file to revise/update" -msgstr "Kan inte hitta fil att revidera/uppdatera" - -#: ../../include/attach.php:381 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Filen överskrider storleksbegränsningen %d" - -#: ../../include/attach.php:393 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor." - -#: ../../include/attach.php:475 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd." - -#: ../../include/attach.php:487 -msgid "Stored file could not be verified. Upload failed." -msgstr "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad." - -#: ../../include/attach.php:528 ../../include/attach.php:545 -msgid "Path not available." -msgstr "Sökväg inte tillgänglig." - -#: ../../include/attach.php:590 -msgid "Empty pathname" -msgstr "Tom sökväg" - -#: ../../include/attach.php:606 -msgid "duplicate filename or path" -msgstr "filnamn eller sökväg finns redan" - -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "Sökväg hittas inte." - -#: ../../include/attach.php:674 -msgid "mkdir failed." -msgstr "mkdir misslyckades." - -#: ../../include/attach.php:678 -msgid "database storage failed." -msgstr "databaslagring misslyckades." - -#: ../../include/bookmarks.php:42 +#: ../../include/bookmarks.php:35 #, php-format msgid "%1$s's bookmarks" msgstr "%1$ss bokmärken" -#: ../../include/acl_selectors.php:238 -msgid "Visible to everybody" -msgstr "Synlig för alla" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanalen är blockerad på den här servern." -#: ../../include/acl_selectors.php:239 -msgid "Show" -msgstr "Visa" +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Kanalplats saknas." -#: ../../include/acl_selectors.php:240 -msgid "Don't show" -msgstr "Visa inte" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Svar från den andra kanalen var ofullständigt." -#: ../../include/acl_selectors.php:246 ../../mod/chat.php:206 -#: ../../mod/filestorage.php:124 ../../mod/photos.php:606 -#: ../../mod/photos.php:949 -msgid "Permissions" -msgstr "Behörighet" +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanalen har tagits bort och finns inte längre." -#: ../../include/acl_selectors.php:247 -msgid "Close" -msgstr "Stäng" +#: ../../include/follow.php:135 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "Protokoll inaktiverat." -#: ../../include/identity.php:30 ../../mod/item.php:1232 -msgid "Unable to obtain identity information from database" -msgstr "Kunde inte hämta från databasen" +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "Kanalsökning misslyckades." -#: ../../include/identity.php:63 -msgid "Empty name" -msgstr "Tomt namn" +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "hittade inte lokalt konto." -#: ../../include/identity.php:65 -msgid "Name too long" -msgstr "För långt namn" +#: ../../include/follow.php:220 +msgid "Cannot connect to yourself." +msgstr "Du kan inte kontakta dig själv." -#: ../../include/identity.php:166 -msgid "No account identifier" -msgstr "Ingen kontoidentifierare" - -#: ../../include/identity.php:176 -msgid "Nickname is required." -msgstr "Smeknamn måste anges." - -#: ../../include/identity.php:190 -msgid "Reserved nickname. Please choose another." -msgstr "Reserverat smeknamn. Välj ett annat." - -#: ../../include/identity.php:195 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Smeknamnet innehåller otillåtna tecken eller är redan upptaget på den här servern." - -#: ../../include/identity.php:258 -msgid "Unable to retrieve created identity" -msgstr "Kunde inte hämta den skapade identiteten" - -#: ../../include/identity.php:317 -msgid "Default Profile" -msgstr "Standardprofil" - -#: ../../include/identity.php:509 -msgid "Requested channel is not available." -msgstr "Den begärda kanalen är inte tillgänglig" - -#: ../../include/identity.php:557 ../../mod/webpages.php:8 -#: ../../mod/connect.php:13 ../../mod/layouts.php:8 ../../mod/blocks.php:10 -#: ../../mod/achievements.php:8 ../../mod/profile.php:16 -#: ../../mod/filestorage.php:40 -msgid "Requested profile is not available." -msgstr "Begärd profil är inte tillgänglig." - -#: ../../include/identity.php:689 ../../mod/profiles.php:603 -msgid "Change profile photo" -msgstr "Bytprofilfoto" - -#: ../../include/identity.php:695 -msgid "Profiles" -msgstr "Profiler" - -#: ../../include/identity.php:695 -msgid "Manage/edit profiles" -msgstr "Hantera/redigera profiler" - -#: ../../include/identity.php:696 ../../mod/profiles.php:604 -msgid "Create New Profile" -msgstr "Skapa ny profil" - -#: ../../include/identity.php:699 -msgid "Edit Profile" -msgstr "Redigera profil" - -#: ../../include/identity.php:710 ../../mod/profiles.php:615 -msgid "Profile Image" -msgstr "Profilbild" - -#: ../../include/identity.php:713 ../../mod/profiles.php:618 -msgid "visible to everybody" -msgstr "synlig för alla" - -#: ../../include/identity.php:714 ../../mod/profiles.php:619 -msgid "Edit visibility" -msgstr "Redigera synlighet" - -#: ../../include/identity.php:728 ../../include/identity.php:952 -#: ../../mod/directory.php:163 -msgid "Gender:" -msgstr "Kön:" - -#: ../../include/identity.php:729 ../../include/identity.php:972 -#: ../../mod/directory.php:165 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:730 ../../include/identity.php:983 -#: ../../mod/directory.php:167 -msgid "Homepage:" -msgstr "Hemsida:" - -#: ../../include/identity.php:731 ../../mod/dirprofile.php:157 -msgid "Online Now" -msgstr "Online nu" - -#: ../../include/identity.php:796 ../../include/identity.php:876 -#: ../../mod/ping.php:262 -msgid "g A l F d" -msgstr "l j F \\k\\l G" - -#: ../../include/identity.php:797 ../../include/identity.php:877 -msgid "F d" -msgstr "j F" - -#: ../../include/identity.php:842 ../../include/identity.php:917 -#: ../../mod/ping.php:284 -msgid "[today]" -msgstr "[i dag]" - -#: ../../include/identity.php:854 -msgid "Birthday Reminders" -msgstr "Födelsedagspåminnelser" - -#: ../../include/identity.php:855 -msgid "Birthdays this week:" -msgstr "Födelsedagar den här veckan:" - -#: ../../include/identity.php:910 -msgid "[No description]" -msgstr "[Ingen beskrivning]" - -#: ../../include/identity.php:928 -msgid "Event Reminders" -msgstr "Händelsepåminnelser" - -#: ../../include/identity.php:929 -msgid "Events this week:" -msgstr "Händelser den här veckan:" - -#: ../../include/identity.php:942 ../../include/identity.php:1026 -#: ../../mod/profperm.php:107 -msgid "Profile" -msgstr "Profil" - -#: ../../include/identity.php:950 ../../mod/settings.php:937 -msgid "Full Name:" -msgstr "Fullständigt namn:" - -#: ../../include/identity.php:957 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/identity.php:958 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:965 -msgid "Birthday:" -msgstr "Födelsedag:" - -#: ../../include/identity.php:969 -msgid "Age:" -msgstr "Ålder:" - -#: ../../include/identity.php:978 -#, php-format -msgid "for %1$d %2$s" -msgstr "i %1$d %2$s" - -#: ../../include/identity.php:981 ../../mod/profiles.php:526 -msgid "Sexual Preference:" -msgstr "Sexuell preferens:" - -#: ../../include/identity.php:985 ../../mod/profiles.php:528 -msgid "Hometown:" -msgstr "Hemort:" - -#: ../../include/identity.php:987 -msgid "Tags:" -msgstr "Taggar:" - -#: ../../include/identity.php:989 ../../mod/profiles.php:529 -msgid "Political Views:" -msgstr "Politisk åskådning:" - -#: ../../include/identity.php:991 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/identity.php:993 ../../mod/directory.php:169 -msgid "About:" -msgstr "Om:" - -#: ../../include/identity.php:995 -msgid "Hobbies/Interests:" -msgstr "Fritidssysselsättning/intressen:" - -#: ../../include/identity.php:997 ../../mod/profiles.php:532 -msgid "Likes:" -msgstr "Gillar:" - -#: ../../include/identity.php:999 ../../mod/profiles.php:533 -msgid "Dislikes:" -msgstr "Ogillar:" - -#: ../../include/identity.php:1002 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation och sociala nätverk:" - -#: ../../include/identity.php:1004 -msgid "My other channels:" -msgstr "Mina andra kanaler:" - -#: ../../include/identity.php:1006 -msgid "Musical interests:" -msgstr "Musikintressen:" - -#: ../../include/identity.php:1008 -msgid "Books, literature:" -msgstr "Böcker, litteratur:" - -#: ../../include/identity.php:1010 -msgid "Television:" -msgstr "Tv:" - -#: ../../include/identity.php:1012 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underhållning:" - -#: ../../include/identity.php:1014 -msgid "Love/Romance:" -msgstr "Kärlek/romantik:" - -#: ../../include/identity.php:1016 -msgid "Work/employment:" -msgstr "Arbete/sysselsättning:" - -#: ../../include/identity.php:1018 -msgid "School/education:" -msgstr "Skola/utbildning:" - -#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8 -#: ../../include/menu.php:42 ../../mod/thing.php:235 -#: ../../mod/settings.php:577 ../../mod/menu.php:59 ../../mod/webpages.php:119 -#: ../../mod/editpost.php:112 ../../mod/layouts.php:112 -#: ../../mod/blocks.php:94 ../../mod/editblock.php:111 -#: ../../mod/editlayout.php:106 ../../mod/connections.php:391 -#: ../../mod/editwebpage.php:143 ../../mod/filestorage.php:170 -msgid "Edit" -msgstr "Redigera" - -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "spara i mapp" - -#: ../../include/ItemObject.php:146 -msgid "add star" -msgstr "lägg till märke" - -#: ../../include/ItemObject.php:147 -msgid "remove star" -msgstr "ta bort märke" - -#: ../../include/ItemObject.php:148 -msgid "toggle star status" -msgstr "växla märke på/av" - -#: ../../include/ItemObject.php:152 -msgid "starred" -msgstr "märkt" - -#: ../../include/ItemObject.php:169 -msgid "add tag" -msgstr "lägg till tagg" - -#: ../../include/ItemObject.php:184 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "Jag gillar det här (växla)" - -#: ../../include/ItemObject.php:184 ../../include/taxonomy.php:254 -msgid "like" -msgstr "gilla" - -#: ../../include/ItemObject.php:185 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "Jag gillar inte det här (växla)" - -#: ../../include/ItemObject.php:185 ../../include/taxonomy.php:255 -msgid "dislike" -msgstr "ogilla" - -#: ../../include/ItemObject.php:187 -msgid "Share this" -msgstr "Dela det här" - -#: ../../include/ItemObject.php:187 -msgid "share" -msgstr "dela" - -#: ../../include/ItemObject.php:211 ../../include/ItemObject.php:212 -#, php-format -msgid "View %s's profile - %s" -msgstr "Visa %ss profil - %s" - -#: ../../include/ItemObject.php:213 -msgid "to" -msgstr "till" - -#: ../../include/ItemObject.php:214 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:215 -msgid "Wall-to-Wall" -msgstr "Vägg-till-vägg" - -#: ../../include/ItemObject.php:216 -msgid "via Wall-To-Wall:" -msgstr "via vägg-till-vägg" - -#: ../../include/ItemObject.php:250 -msgid "Bookmark Links" -msgstr "Bokmärk länkar" - -#: ../../include/ItemObject.php:280 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d kommentar" -msgstr[1] "%d kommentarer" - -#: ../../include/ItemObject.php:545 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "Det här är du" - -#: ../../include/ItemObject.php:548 ../../mod/events.php:472 -#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/settings.php:515 -#: ../../mod/settings.php:627 ../../mod/settings.php:655 -#: ../../mod/settings.php:679 ../../mod/settings.php:751 -#: ../../mod/settings.php:929 ../../mod/connect.php:92 -#: ../../mod/pdledit.php:58 ../../mod/group.php:81 ../../mod/admin.php:441 -#: ../../mod/admin.php:750 ../../mod/admin.php:884 ../../mod/admin.php:1017 -#: ../../mod/admin.php:1216 ../../mod/admin.php:1303 ../../mod/setup.php:307 -#: ../../mod/setup.php:350 ../../mod/connedit.php:443 -#: ../../mod/profiles.php:506 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/chat.php:175 ../../mod/chat.php:208 -#: ../../mod/import.php:387 ../../mod/poke.php:166 ../../mod/fsuggest.php:108 -#: ../../mod/filestorage.php:131 ../../mod/photos.php:565 -#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 ../../mod/mood.php:142 -#: ../../view/theme/redbasic/php/config.php:95 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/blogga/php/config.php:67 -msgid "Submit" -msgstr "Skicka" - -#: ../../include/ItemObject.php:549 -msgid "Bold" -msgstr "Fet" - -#: ../../include/ItemObject.php:550 -msgid "Italic" -msgstr "Kursiv" - -#: ../../include/ItemObject.php:551 -msgid "Underline" -msgstr "Understruken" - -#: ../../include/ItemObject.php:552 -msgid "Quote" -msgstr "Citat" - -#: ../../include/ItemObject.php:553 -msgid "Code" -msgstr "Kod" - -#: ../../include/ItemObject.php:554 -msgid "Image" -msgstr "Bild" - -#: ../../include/ItemObject.php:555 -msgid "Link" -msgstr "Länk" - -#: ../../include/ItemObject.php:556 -msgid "Video" -msgstr "Video" - -#: ../../include/reddav.php:1069 -msgid "Edit File properties" -msgstr "Redigera filegenskaper" - -#: ../../include/network.php:652 -msgid "view full size" -msgstr "visa full storlek" - -#: ../../include/text.php:320 -msgid "prev" -msgstr "föregående" - -#: ../../include/text.php:322 -msgid "first" -msgstr "första" - -#: ../../include/text.php:351 -msgid "last" -msgstr "sista" - -#: ../../include/text.php:354 -msgid "next" -msgstr "nästa" - -#: ../../include/text.php:366 -msgid "older" -msgstr "äldre" - -#: ../../include/text.php:368 -msgid "newer" -msgstr "nyare" - -#: ../../include/text.php:719 -msgid "No connections" -msgstr "Inga kontakter" - -#: ../../include/text.php:732 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontakter" - -#: ../../include/text.php:744 -msgid "View Connections" -msgstr "Visa kontakter" - -#: ../../include/text.php:885 -msgid "poke" -msgstr "puffa" - -#: ../../include/text.php:886 -msgid "ping" -msgstr "pinga" - -#: ../../include/text.php:886 -msgid "pinged" -msgstr "pingade" - -#: ../../include/text.php:887 -msgid "prod" -msgstr "stöt till" - -#: ../../include/text.php:887 -msgid "prodded" -msgstr "stötte till" - -#: ../../include/text.php:888 -msgid "slap" -msgstr "daska till" - -#: ../../include/text.php:888 -msgid "slapped" -msgstr "daskade till" - -#: ../../include/text.php:889 -msgid "finger" -msgstr "fingra på" - -#: ../../include/text.php:889 -msgid "fingered" -msgstr "fingrade på" - -#: ../../include/text.php:890 -msgid "rebuff" -msgstr "stöt tillbaka" - -#: ../../include/text.php:890 -msgid "rebuffed" -msgstr "stötte tillbaks" - -#: ../../include/text.php:902 -msgid "happy" -msgstr "glad" - -#: ../../include/text.php:903 -msgid "sad" -msgstr "ledsen" - -#: ../../include/text.php:904 -msgid "mellow" -msgstr "lugn" - -#: ../../include/text.php:905 -msgid "tired" -msgstr "trött" - -#: ../../include/text.php:906 -msgid "perky" -msgstr "uppåt" - -#: ../../include/text.php:907 -msgid "angry" -msgstr "arg" - -#: ../../include/text.php:908 -msgid "stupified" -msgstr "virrig" - -#: ../../include/text.php:909 -msgid "puzzled" -msgstr "förbryllad" - -#: ../../include/text.php:910 -msgid "interested" -msgstr "intresserad" - -#: ../../include/text.php:911 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:912 -msgid "cheerful" -msgstr "munter" - -#: ../../include/text.php:913 -msgid "alive" -msgstr "pigg" - -#: ../../include/text.php:914 -msgid "annoyed" -msgstr "irriterad" - -#: ../../include/text.php:915 -msgid "anxious" -msgstr "bekymrad" - -#: ../../include/text.php:916 -msgid "cranky" -msgstr "grinig" - -#: ../../include/text.php:917 -msgid "disturbed" -msgstr "besvärad" - -#: ../../include/text.php:918 -msgid "frustrated" -msgstr "frustrerad" - -#: ../../include/text.php:919 -msgid "motivated" -msgstr "motiverad" - -#: ../../include/text.php:920 -msgid "relaxed" -msgstr "avslappnad" - -#: ../../include/text.php:921 -msgid "surprised" -msgstr "förvånad" - -#: ../../include/text.php:1082 -msgid "Monday" -msgstr "måndag" - -#: ../../include/text.php:1082 -msgid "Tuesday" -msgstr "tisdag" - -#: ../../include/text.php:1082 -msgid "Wednesday" -msgstr "onsdag" - -#: ../../include/text.php:1082 -msgid "Thursday" -msgstr "torsdag" - -#: ../../include/text.php:1082 -msgid "Friday" -msgstr "fredag" - -#: ../../include/text.php:1082 -msgid "Saturday" -msgstr "lördag" - -#: ../../include/text.php:1082 -msgid "Sunday" -msgstr "söndag" - -#: ../../include/text.php:1086 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1086 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1086 -msgid "March" -msgstr "mars" - -#: ../../include/text.php:1086 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1086 -msgid "May" -msgstr "maj" - -#: ../../include/text.php:1086 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1086 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1086 -msgid "August" -msgstr "augusti" - -#: ../../include/text.php:1086 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1086 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1086 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1086 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1164 -msgid "unknown.???" -msgstr "okänt.???" - -#: ../../include/text.php:1165 -msgid "bytes" -msgstr "byte" - -#: ../../include/text.php:1200 -msgid "remove category" -msgstr "ta bort kategori" - -#: ../../include/text.php:1249 -msgid "remove from file" -msgstr "ta bort från fil" - -#: ../../include/text.php:1310 ../../include/text.php:1322 -msgid "Click to open/close" -msgstr "Klicka för att öppna/stänga" - -#: ../../include/text.php:1477 ../../mod/events.php:335 -msgid "link to source" -msgstr "länk till källa" - -#: ../../include/text.php:1496 -msgid "Select a page layout: " -msgstr "Välj en sidlayout: " - -#: ../../include/text.php:1499 ../../include/text.php:1564 -msgid "default" -msgstr "standard" - -#: ../../include/text.php:1535 -msgid "Page content type: " -msgstr "Typ av sidinnehåll: " - -#: ../../include/text.php:1576 -msgid "Select an alternate language" -msgstr "Välj ett alternativt språk" - -#: ../../include/text.php:1710 -msgid "activity" -msgstr "aktivitet" - -#: ../../include/text.php:1969 -msgid "Design" -msgstr "Design" - -#: ../../include/text.php:1971 -msgid "Blocks" -msgstr "Block" - -#: ../../include/text.php:1972 -msgid "Menus" -msgstr "Menyer" - -#: ../../include/text.php:1973 -msgid "Layouts" -msgstr "Layouter" - -#: ../../include/text.php:1974 -msgid "Pages" -msgstr "Sidor" - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "skapade ett nytt inlägg" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "kommenterade %ss inlägg" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Man" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Kvinna" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Just nu man" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Just nu kvinna" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Mestadels man" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Mestadels kvinna" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transperson" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexuell" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuell" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodit" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Könlös" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Ospecificerat" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Annat" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Obestämt" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Män" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Kvinnor" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Bög" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbisk" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Ingen preferens" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexuell" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexuell" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Avhållsam" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Oskuld" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Avvikande" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetisch" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Massor" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Ickesexuell" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Singel" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Ensam" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Ledig" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Upptagen" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Förälskad" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Förtrollad" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Dejtar" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Otrogen" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sexmissbrukare" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Kompisförhållande" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Vardaglig" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Förlovad" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Gift" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Inbillat gift" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partner" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Bor ihop" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Sambo" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Lycklig" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Letar inte" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Bedragen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separerad" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instabilt" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Skild" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Inbillat skild" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Änka" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Osäkert" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Det är komplicerat" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Bryr mig inte" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Fråga mig" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Rumsnamn saknas" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Rumsnamnet finns redan" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ogiltig rumsbeskrivning." - -#: ../../include/chat.php:102 -msgid "Room not found." -msgstr "Rummet hittades inte." - -#: ../../include/chat.php:123 -msgid "Room is full" -msgstr "Rummet är fullt" - -#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:80 +#: ../../include/comanche.php:35 ../../mod/admin.php:353 #: ../../view/theme/apw/php/config.php:185 msgid "Default" msgstr "Standard" -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Taggar" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Ofta" -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Nyckelord" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Varje timme" -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "har" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Två gånger dagligen" -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "har" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Dagligen" -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "vill ha" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Varje vecka" -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "vill ha" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Varje månad" -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "gillar" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "ogillar" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/auth.php:79 -msgid "Logged out." -msgstr "Utloggad." +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/auth.php:197 -msgid "Failed authentication" -msgstr "Autentisering misslyckades" +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 +#: ../../mod/admin.php:735 ../../boot.php:1488 +msgid "Email" +msgstr "E-post" -#: ../../include/auth.php:212 ../../mod/openid.php:188 -msgid "Login failed." -msgstr "Inloggning misslyckades." +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Inte en giltig e-postadress" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Din e-postdomän är inte bland de som tillåts på den här servern" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Din e-postadress är redan registrerad på den här servern." +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "En inbjudan behövs." +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Inbjudningen kunde inte bekräftas." +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Ange den begärda informationen." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Misslyckades att spara kontoinformation." - -#: ../../include/account.php:273 +#: ../../include/contact_widgets.php:14 #, php-format -msgid "Registration request at %s" -msgstr "Registreringsförfrågan på %s" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d inbjudan tillgänglig" +msgstr[1] "%d inbjudningar tillgängliga" -#: ../../include/account.php:275 ../../include/account.php:302 -#: ../../include/account.php:359 -msgid "Administrator" -msgstr "Administratör" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 +msgid "Advanced" +msgstr "Avancerat" -#: ../../include/account.php:297 -msgid "your registration password" -msgstr "ditt registreringslösenord" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Hitta kanaler" -#: ../../include/account.php:300 ../../include/account.php:357 +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Ange namn eller intresse" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Ta kontakt/följ" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exempel: Robert Morgenstein, Fiske" + +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:267 +#: ../../mod/directory.php:272 ../../mod/connections.php:412 +msgid "Find" +msgstr "Sök" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "Kanalförslag" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Slumpvald profil" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Bjud in vänner" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Avancerat exempel: name=fred and country=iceland" + +#: ../../include/contact_widgets.php:125 #, php-format -msgid "Registration details for %s" -msgstr "Registreringsdetaljer för %s" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemensam kontakt" +msgstr[1] "%d gemensamma kontakter" -#: ../../include/account.php:366 -msgid "Account approved." -msgstr "Konto godkänt." - -#: ../../include/account.php:400 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrering avslagen för %s" - -#: ../../include/dir_fns.php:15 -msgid "Sort Options" -msgstr "Sorteringsalternativ" - -#: ../../include/dir_fns.php:16 -msgid "Alphabetic" -msgstr "Alfabetisk" - -#: ../../include/dir_fns.php:17 -msgid "Reverse Alphabetic" -msgstr "Omvänd alfabetisk" - -#: ../../include/dir_fns.php:18 -msgid "Newest to Oldest" -msgstr "Nyast till äldst" - -#: ../../include/dir_fns.php:30 -msgid "Enable Safe Search" -msgstr "Aktivera säker sökning" - -#: ../../include/dir_fns.php:32 -msgid "Disable Safe Search" -msgstr "Avaktivera säker sökning" - -#: ../../include/dir_fns.php:34 -msgid "Safe Mode" -msgstr "Säkert läge" +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "visa fler" #: ../../include/enotify.php:41 msgid "Red Matrix Notification" @@ -2973,205 +1398,394 @@ msgstr "Foto:" msgid "Please visit %s to approve or reject the suggestion." msgstr "Besök %s för att bevilja eller avslå förslaget." -#: ../../include/photos.php:89 +#: ../../include/enotify.php:477 +msgid "[Red:Notify]" +msgstr "[Red:Notifiering]" + +#: ../../include/event.php:326 +msgid "This event has been added to your calendar." +msgstr "Händelsen har lagts till i din kalender." + +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "En borttagen grupp med det här namnet återskapades. Befintliga rättigheter till saker kan gälla för den här gruppen och alla framtida medlemmar. Om det här inte är vad du avsåg, skapa i stället en annan grupp med ett annat namn." + +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Förvald integritetsgrupp för nya kontakter" + +#: ../../include/group.php:254 ../../mod/admin.php:735 +msgid "All Channels" +msgstr "Alla kanaler" + +#: ../../include/group.php:276 +msgid "edit" +msgstr "redigera" + +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Kretsar" + +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Redigera krets" + +#: ../../include/group.php:300 +msgid "Create a new collection" +msgstr "Skapa en ny krets" + +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanaler inte i någon krets" + +#: ../../include/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/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" +msgstr "Krypterat innehåll" + +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "Installera designelement: " + +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "QR-kod" + +#: ../../include/bbcode.php:220 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild överskrider webbplatsens storleksbegränsning på %lu byte" +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s skrev följande %2$s %3$s" -#: ../../include/photos.php:96 -msgid "Image file is empty." -msgstr "Bildfil är tom." +#: ../../include/bbcode.php:222 +msgid "post" +msgstr "post" -#: ../../include/photos.php:123 ../../mod/profile_photo.php:147 -msgid "Unable to process image" -msgstr "Kunde inte bearbeta bild" +#: ../../include/bbcode.php:621 +msgid "$1 spoiler" +msgstr "$1 spoiler" -#: ../../include/photos.php:186 -msgid "Photo storage failed." -msgstr "Fotolagring misslyckades." +#: ../../include/bbcode.php:641 +msgid "$1 wrote:" +msgstr "$1 skrev:" -#: ../../include/photos.php:315 ../../mod/photos.php:693 -#: ../../mod/photos.php:1190 -msgid "Upload New Photos" -msgstr "Ladda upp nya foton" +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Taggar" -#: ../../include/contact_widgets.php:14 +#: ../../include/taxonomy.php:249 +msgid "Keywords" +msgstr "Nyckelord" + +#: ../../include/taxonomy.php:274 +msgid "have" +msgstr "har" + +#: ../../include/taxonomy.php:274 +msgid "has" +msgstr "har" + +#: ../../include/taxonomy.php:275 +msgid "want" +msgstr "vill ha" + +#: ../../include/taxonomy.php:275 +msgid "wants" +msgstr "vill ha" + +#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 +msgid "like" +msgstr "gilla" + +#: ../../include/taxonomy.php:276 +msgid "likes" +msgstr "gillar" + +#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "ogilla" + +#: ../../include/taxonomy.php:277 +msgid "dislikes" +msgstr "ogillar" + +#: ../../include/taxonomy.php:360 ../../include/identity.php:1148 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1026 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "%n gillar detta" +msgstr[1] "%n gillar detta" + +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1485 +msgid "Logout" +msgstr "Logga ut" + +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" +msgstr "Avsluta sessionen" + +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" +msgstr "Hem" + +#: ../../include/nav.php:98 +msgid "Your posts and conversations" +msgstr "Dina inlägg och konversationer" + +#: ../../include/nav.php:99 +msgid "Your profile page" +msgstr "Din profilsida" + +#: ../../include/nav.php:101 +msgid "Edit Profiles" +msgstr "Redigera profiler" + +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" +msgstr "Hantera/redigera profiler" + +#: ../../include/nav.php:103 ../../include/identity.php:864 +msgid "Edit Profile" +msgstr "Redigera profil" + +#: ../../include/nav.php:103 +msgid "Edit your profile" +msgstr "Redigera din profil" + +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "Dina foton" + +#: ../../include/nav.php:106 +msgid "Your files" +msgstr "Dina filer" + +#: ../../include/nav.php:111 ../../include/apps.php:144 +msgid "Chat" +msgstr "Chatt" + +#: ../../include/nav.php:111 +msgid "Your chatrooms" +msgstr "Dina chattrum" + +#: ../../include/nav.php:117 +msgid "Your bookmarks" +msgstr "Dina bokmärken" + +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "Dina webbsidor" + +#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1486 +msgid "Login" +msgstr "Logga in" + +#: ../../include/nav.php:125 +msgid "Sign in" +msgstr "Logga in" + +#: ../../include/nav.php:142 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d inbjudan tillgänglig" -msgstr[1] "%d inbjudningar tillgängliga" +msgid "%s - click to logout" +msgstr "%s - klicka för att logga ut" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 -msgid "Advanced" -msgstr "Avancerat" +#: ../../include/nav.php:145 +msgid "Remote authentication" +msgstr "Fjärrinloggning" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Hitta kanaler" +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" +msgstr "Klicka för att autentisera mot din hemmahubb" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Ange namn eller intresse" +#: ../../include/nav.php:159 +msgid "Home Page" +msgstr "Hemsida" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Ta kontakt/följ" +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1464 +msgid "Register" +msgstr "Skapa konto" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exempel: Robert Morgenstein, Fiske" +#: ../../include/nav.php:163 +msgid "Create an account" +msgstr "Skapa ett konto" -#: ../../include/contact_widgets.php:26 ../../mod/directory.php:211 -#: ../../mod/directory.php:216 ../../mod/connections.php:390 -msgid "Find" +#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" +msgstr "Hjälp" + +#: ../../include/nav.php:168 +msgid "Help and documentation" +msgstr "Hjälp och dokumentation" + +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" +msgstr "Applikationer, verktyg, länkar, spel" + +#: ../../include/nav.php:173 ../../include/text.php:826 +#: ../../include/text.php:838 ../../include/apps.php:145 +#: ../../mod/search.php:30 +msgid "Search" msgstr "Sök" -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "Kanalförslag" +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "Sök innehåll" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Slumpvald profil" +#: ../../include/nav.php:176 ../../include/apps.php:139 +#: ../../mod/directory.php:271 +msgid "Directory" +msgstr "Katalog" -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Bjud in vänner" +#: ../../include/nav.php:176 +msgid "Channel Directory" +msgstr "Kanalkatalog" -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "Exempel: name=fred and country=iceland" +#: ../../include/nav.php:190 ../../include/apps.php:131 +msgid "Matrix" +msgstr "Matris" -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "Sök avancerat" +#: ../../include/nav.php:190 +msgid "Your matrix" +msgstr "Din matris" -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemensam kontakt" -msgstr[1] "%d gemensamma kontakter" +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" +msgstr "Märk alla matrisnotifieringar som lästa" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Ny sida" +#: ../../include/nav.php:193 ../../include/apps.php:135 +msgid "Channel Home" +msgstr "Kanalhem" -#: ../../include/plugin.php:475 ../../include/plugin.php:477 -msgid "Click here to upgrade." -msgstr "Klicka här för att uppgradera." +#: ../../include/nav.php:193 +msgid "Channel home" +msgstr "Kanalhem" -#: ../../include/plugin.php:483 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Den här funktionen går utanför vad som anges i ditt avtal." +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" +msgstr "Märk alla kanalnotifieringar som lästa" -#: ../../include/plugin.php:488 -msgid "This action is not available under your subscription plan." -msgstr "Den här funktionen är inte tillgänglig med ditt avtal." +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" +msgstr "Kontakter" -#: ../../include/items.php:272 ../../mod/like.php:63 ../../mod/profperm.php:23 -#: ../../mod/group.php:68 ../../index.php:350 -msgid "Permission denied" -msgstr "Behörighet saknas" +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "Meddelanden" -#: ../../include/items.php:789 -msgid "(Unknown)" -msgstr "(Okänt)" +#: ../../include/nav.php:200 +msgid "Notifications" +msgstr "Notifieringar" -#: ../../include/items.php:3544 ../../mod/thing.php:78 ../../mod/admin.php:159 -#: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/viewsrc.php:18 -#: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18 -msgid "Item not found." -msgstr "Posten hittades inte." +#: ../../include/nav.php:201 +msgid "See all notifications" +msgstr "Se alla notifieringar" -#: ../../include/items.php:3928 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Sammanhanget hittades inte." +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Märk alla systemnotifieringar som lästa" -#: ../../include/items.php:3943 -msgid "Collection is empty." -msgstr "Sammanhanget är tomt." +#: ../../include/nav.php:204 ../../include/apps.php:141 +msgid "Mail" +msgstr "Privat meddelande" -#: ../../include/items.php:3950 -#, php-format -msgid "Collection: %s" -msgstr "Sammanhang: %s" +#: ../../include/nav.php:204 +msgid "Private mail" +msgstr "Privat meddelande" -#: ../../include/items.php:3961 -#, php-format -msgid "Connection: %s" -msgstr "Kontakt: %s" +#: ../../include/nav.php:205 +msgid "See all private messages" +msgstr "Se alla privata meddelanden" -#: ../../include/items.php:3964 -msgid "Connection not found." -msgstr "Kontakten hittades inte." +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" +msgstr "Märk alla privata meddelanden som lästa" -#: ../../include/follow.php:23 -msgid "Channel is blocked on this site." -msgstr "Kanalen är blockerad på den här servern." +#: ../../include/nav.php:207 +msgid "Inbox" +msgstr "Inkorg" -#: ../../include/follow.php:28 -msgid "Channel location missing." -msgstr "Kanalplats saknas." +#: ../../include/nav.php:208 +msgid "Outbox" +msgstr "Utkorg" -#: ../../include/follow.php:54 -msgid "Response from remote channel was incomplete." -msgstr "Svar från den andra kanalen var ofullständigt." +#: ../../include/nav.php:212 ../../include/apps.php:138 +#: ../../mod/events.php:431 +msgid "Events" +msgstr "Händelser" -#: ../../include/follow.php:85 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen har tagits bort och finns inte längre." +#: ../../include/nav.php:212 +msgid "Event Calendar" +msgstr "Kalender" -#: ../../include/follow.php:132 -msgid "Channel discovery failed." -msgstr "Kanalsökning misslyckades." +#: ../../include/nav.php:213 +msgid "See all events" +msgstr "Se alla händelser" -#: ../../include/follow.php:149 -msgid "local account not found." -msgstr "hittade inte lokalt konto." +#: ../../include/nav.php:214 +msgid "Mark all events seen" +msgstr "Märk alla händelser som lästa" -#: ../../include/follow.php:158 -msgid "Cannot connect to yourself." -msgstr "Du kan inte kontakta dig själv." +#: ../../include/nav.php:216 ../../include/apps.php:130 +#: ../../mod/manage.php:148 +msgid "Channel Manager" +msgstr "Kanalhanterare" -#: ../../include/security.php:295 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades." +#: ../../include/nav.php:216 +msgid "Manage Your Channels" +msgstr "Hantera dina kanaler" -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Inbäddat innehåll" +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" +msgstr "Konto-/kanalinställningar" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Inbäddning inaktiverat" +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Administration" + +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" +msgstr "Serverinställning och -konfiguration" + +#: ../../include/nav.php:262 +msgid "Please wait..." +msgstr "Vänta..." #: ../../include/permissions.php:13 -msgid "Can view my \"public\" stream and posts" -msgstr "Kan se mina \"offentliga\" strömmar och inlägg" +msgid "Can view my normal stream and posts" +msgstr "Kan se mina normala strömmar och inlägg" #: ../../include/permissions.php:14 -msgid "Can view my \"public\" channel profile" -msgstr "Kan se min \"offentliga\" kanalprofil" +msgid "Can view my default channel profile" +msgstr "Kan se min standardkanalprofil" #: ../../include/permissions.php:15 -msgid "Can view my \"public\" photo albums" -msgstr "Kan se mina \"offentliga\" fotoalbum" +msgid "Can view my photo albums" +msgstr "Kan se mina fotoalbum" #: ../../include/permissions.php:16 -msgid "Can view my \"public\" address book" -msgstr "Kan se min \"offentliga\" adressbok" +msgid "Can view my connections" +msgstr "Kan se mina kontakter" #: ../../include/permissions.php:17 -msgid "Can view my \"public\" file storage" -msgstr "Kan se mitt \"offentliga\" filutrymme" +msgid "Can view my file storage" +msgstr "Kan se mitt filutrymme" #: ../../include/permissions.php:18 -msgid "Can view my \"public\" pages" -msgstr "Kan se mina \"offentliga\" sidor" +msgid "Can view my webpages" +msgstr "Kan se mina webbsidor" #: ../../include/permissions.php:21 msgid "Can send me their channel stream and posts" @@ -3182,8 +1796,8 @@ msgid "Can post on my channel page (\"wall\")" msgstr "Kan posta inlägg på min kanalsida (\"vägg\")" #: ../../include/permissions.php:23 -msgid "Can comment on my posts" -msgstr "Kan kommentera mina inlägg" +msgid "Can comment on or like my posts" +msgstr "Kan kommentera eller gilla mina inlägg" #: ../../include/permissions.php:24 msgid "Can send me private mail messages" @@ -3194,1053 +1808,2267 @@ msgid "Can post photos to my photo albums" msgstr "Kan lägga till foton i mitt fotoalbum" #: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" +msgstr "Kan gilla/ogilla saker" + +#: ../../include/permissions.php:26 +msgid "Profiles and things other than posts/comments" +msgstr "Profiler och annat än inlägg/kommentarer" + +#: ../../include/permissions.php:28 msgid "Can forward to all my channel contacts via post @mentions" msgstr "Kan vidarebefordra till alla mina kanalkontakter genom @omnämnanden" -#: ../../include/permissions.php:26 +#: ../../include/permissions.php:28 msgid "Advanced - useful for creating group forum channels" msgstr "Avancerat - användbart för att skapa kanaler för gruppforum" -#: ../../include/permissions.php:27 +#: ../../include/permissions.php:29 msgid "Can chat with me (when available)" msgstr "Kan chatta med mig (när tillgänglig)" -#: ../../include/permissions.php:28 -msgid "Can write to my \"public\" file storage" -msgstr "Har skrivrättigheter i mitt \"offentliga\" filutrymme" - -#: ../../include/permissions.php:29 -msgid "Can edit my \"public\" pages" -msgstr "Kan redigera mina \"offentliga\" sidor" +#: ../../include/permissions.php:30 +msgid "Can write to my file storage" +msgstr "Har skrivrättigheter i mitt filutrymme" #: ../../include/permissions.php:31 -msgid "Can source my \"public\" posts in derived channels" -msgstr "Kan använda mina \"offentliga\" inlägg i kanaler nedströms" +msgid "Can edit my webpages" +msgstr "Kan redigera mina webbsidor" -#: ../../include/permissions.php:31 +#: ../../include/permissions.php:33 +msgid "Can source my public posts in derived channels" +msgstr "Kan använda mina offentliga inlägg i kanaler nedströms" + +#: ../../include/permissions.php:33 msgid "Somewhat advanced - very useful in open communities" msgstr "Ganska avancerat - väldigt användbart i öppna gemenskaper" -#: ../../include/permissions.php:32 -msgid "Can send me bookmarks" -msgstr "Kan skicka bokmärken till mig" - -#: ../../include/permissions.php:33 +#: ../../include/permissions.php:35 msgid "Can administer my channel resources" msgstr "Kan administrera mina kanalresurser" -#: ../../include/permissions.php:33 +#: ../../include/permissions.php:35 msgid "" "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "Extremt avancerat. Låt detta vara om du inte vet vad du gör" -#: ../../include/zot.php:583 -msgid "Invalid data packet" -msgstr "Ogiltigt datapaket" +#: ../../include/permissions.php:785 +msgid "Social Networking" +msgstr "Socialt nätverkande" -#: ../../include/zot.php:593 -msgid "Unable to verify channel signature" -msgstr "Kunde inte bekräfta kanalsignatur" +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Mostly Public" +msgstr "Mestadels offentligt" -#: ../../include/zot.php:790 +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Restricted" +msgstr "Begränsat" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +msgid "Private" +msgstr "Privat" + +#: ../../include/permissions.php:787 +msgid "Community Forum" +msgstr "Gemenskapsforum" + +#: ../../include/permissions.php:789 +msgid "Feed Republish" +msgstr "Vidarepublicering av flöde" + +#: ../../include/permissions.php:791 +msgid "Special Purpose" +msgstr "Särskilt syfte" + +#: ../../include/permissions.php:792 +msgid "Celebrity/Soapbox" +msgstr "Kändis/talarstol" + +#: ../../include/permissions.php:792 +msgid "Group Repository" +msgstr "Gruppförråd" + +#: ../../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 "Annat" + +#: ../../include/permissions.php:794 +msgid "Custom/Expert Mode" +msgstr "Anpassat/expertläge" + +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Nytt fönster" + +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öppna den valda platsen i ett annat fönster eller en annan webbläsarflik" + +#: ../../include/Contact.php:211 ../../mod/admin.php:646 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kunde inte bekräfta signatur för servern %s" +msgid "User '%s' deleted" +msgstr "Användare '%s' borttagen" -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Ingen kanal." +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Allmänna funktioner" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Gemensamma kontakter" +#: ../../include/features.php:25 +msgid "Content Expiration" +msgstr "Tidsbegränsat innehåll" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Inga gemensamma kontakter." +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Ta bort inlägg/kommentarer och/eller privata meddelanden efter en tid" -#: ../../mod/events.php:72 -msgid "Event title and start time are required." -msgstr "Händelsen behöver titel och starttid." +#: ../../include/features.php:26 +msgid "Multiple Profiles" +msgstr "Flera profiler" -#: ../../mod/events.php:290 -msgid "l, F j" -msgstr "l, j F" +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" +msgstr "Möjlighet att skapa flera profiler" -#: ../../mod/events.php:312 -msgid "Edit event" -msgstr "Redigera händelse" +#: ../../include/features.php:27 +msgid "Advanced Profiles" +msgstr "Avancerade profiler" -#: ../../mod/events.php:358 -msgid "Create New Event" -msgstr "Skapa ny händelse" +#: ../../include/features.php:27 +msgid "Additional profile sections and selections" +msgstr "Fler profilinställningar" -#: ../../mod/events.php:359 -msgid "Previous" -msgstr "Föregående" +#: ../../include/features.php:28 +msgid "Profile Import/Export" +msgstr "Profilimport/-export" -#: ../../mod/events.php:360 ../../mod/setup.php:261 -msgid "Next" -msgstr "Nästa" +#: ../../include/features.php:28 +msgid "Save and load profile details across sites/channels" +msgstr "Spara och ladda profiluppgifter mellan webbplatser/kanaler" -#: ../../mod/events.php:431 -msgid "hour:minute" -msgstr "timme:minut" +#: ../../include/features.php:29 +msgid "Web Pages" +msgstr "Webbsidor" -#: ../../mod/events.php:450 -msgid "Event details" -msgstr "Detaljer för händelse" +#: ../../include/features.php:29 +msgid "Provide managed web pages on your channel" +msgstr "Tillhandahåll ordnade webbsidor i din kanal" -#: ../../mod/events.php:451 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Formatet är %s %s. Startdatum och titel behövs." +#: ../../include/features.php:30 +msgid "Private Notes" +msgstr "Privata anteckningar" -#: ../../mod/events.php:453 -msgid "Event Starts:" -msgstr "Händelsen börjar:" +#: ../../include/features.php:30 +msgid "Enables a tool to store notes and reminders" +msgstr "Aktivera ett verktyg för att spara anteckningar och påminnelser" -#: ../../mod/events.php:453 ../../mod/events.php:467 -msgid "Required" -msgstr "Behövs" +#: ../../include/features.php:34 +msgid "Navigation Channel Select" +msgstr "Kanalväljare i navigation" -#: ../../mod/events.php:456 -msgid "Finish date/time is not known or not relevant" -msgstr "Slutdatum/tid är okänt eller inte relevant" +#: ../../include/features.php:34 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Välj kanal direkt från navigationslistens rullgardinsmeny" -#: ../../mod/events.php:458 -msgid "Event Finishes:" -msgstr "Händelsen slutar:" +#: ../../include/features.php:38 +msgid "Extended Identity Sharing" +msgstr "Utökad identitetsdelning" -#: ../../mod/events.php:461 -msgid "Adjust for viewer timezone" -msgstr "Justera för betraktarens tidszon" - -#: ../../mod/events.php:463 -msgid "Description:" -msgstr "Beskrivning:" - -#: ../../mod/events.php:467 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:469 -msgid "Share this event" -msgstr "Dela den här händelsen" - -#: ../../mod/thing.php:98 -msgid "Thing updated" -msgstr "Föremål uppdaterat" - -#: ../../mod/thing.php:158 -msgid "Object store: failed" -msgstr "Objektlagring: misslyckades" - -#: ../../mod/thing.php:162 -msgid "Thing added" -msgstr "Föremål tillagt" - -#: ../../mod/thing.php:182 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:234 -msgid "Show Thing" -msgstr "Visa föremål" - -#: ../../mod/thing.php:241 -msgid "item not found." -msgstr "föremål hittades inte." - -#: ../../mod/thing.php:269 -msgid "Edit Thing" -msgstr "Redigera föremål" - -#: ../../mod/thing.php:271 ../../mod/thing.php:318 -msgid "Select a profile" -msgstr "Välj en profil" - -#: ../../mod/thing.php:273 ../../mod/thing.php:320 -msgid "Select a category of stuff. e.g. I ______ something" -msgstr "Välj en kategori, t.ex. Jag ______ någonting" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Post an activity" -msgstr "Posta en aktivitet" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Only sends to viewers of the applicable profile" -msgstr "Skickar bara till de som tittar på den aktuella profilen" - -#: ../../mod/thing.php:277 ../../mod/thing.php:323 -msgid "Name of thing e.g. something" -msgstr "Namn på föremål, t.ex. någonting" - -#: ../../mod/thing.php:279 ../../mod/thing.php:324 -msgid "URL of thing (optional)" -msgstr "URL för föremål (frivilligt)" - -#: ../../mod/thing.php:281 ../../mod/thing.php:325 -msgid "URL for photo of thing (optional)" -msgstr "URL för foto på föremål (frivilligt)" - -#: ../../mod/thing.php:316 -msgid "Add Thing to your Profile" -msgstr "Lägg till föremål till din profil" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Gränsen för totalt antal inbjudningar överskriden." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Inte en giltig e-postadress." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Gå med oss i Red" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Inbjudningsgränsen överskriden. Kontakta din serveradministratör." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Leverans av meddelande misslyckades." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d meddelande sänt." -msgstr[1] "%d meddelanden sända." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du har inga fler inbjudningar kvar" - -#: ../../mod/invite.php:141 -msgid "Send invitations" -msgstr "Skicka inbjudan" - -#: ../../mod/invite.php:142 -msgid "Enter email addresses, one per line:" -msgstr "Ange e-postadresser, en per rad:" - -#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328 -msgid "Your message:" -msgstr "Ditt meddelande:" - -#: ../../mod/invite.php:144 +#: ../../include/features.php:38 msgid "" -"You are cordially invited to join me and some other close friends on the Red" -" Matrix - a revolutionary new decentralised communication and information " -"tool." -msgstr "Du är hjärtligt inbjuden att gå med mig och några andra nära vänner i Red Matrix - ett revolutionärt nytt decentraliserat kommunikations- och informationsverktyg." +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." +msgstr "Dela din identitet med alla webbplatser på Internet. Om inaktiverat är identiteten bara delad med platser i matrisen." -#: ../../mod/invite.php:146 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Du kommer att behöva ange den här inbjudningskoden: $invite_code" +#: ../../include/features.php:39 +msgid "Expert Mode" +msgstr "Expertläge" -#: ../../mod/invite.php:147 -msgid "Please visit my channel at" -msgstr "Besök min kanal på" +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Aktivera expertläge för att tillåta avancerade inställningar" -#: ../../mod/invite.php:151 +#: ../../include/features.php:40 +msgid "Premium Channel" +msgstr "Premiumkanal" + +#: ../../include/features.php:40 msgid "" -"Once you have registered (on ANY Red Matrix site - they are all inter-" -"connected), please connect with my Red Matrix channel address:" -msgstr "När du har registrerat dig (på NÅGON Red Matrix-server - alla sitter ihop), så lägg till min Red Matrix-kanaladress:" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Låter dig ange begränsningar och villkor för dem som vill ansluta till din kanal" -#: ../../mod/invite.php:153 -msgid "Click the [Register] link on the following page to join." -msgstr "Klicka på [Registrera]-länken på följande sida för att gå med." +#: ../../include/features.php:45 +msgid "Post Composition Features" +msgstr "Skrivfunktioner" -#: ../../mod/invite.php:155 +#: ../../include/features.php:47 +msgid "Use Markdown" +msgstr "Använd Markdown" + +#: ../../include/features.php:47 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Tillåt att \"Markdown\" används för att formatera inlägg" + +#: ../../include/features.php:48 +msgid "Post Preview" +msgstr "Förhandsgranskning" + +#: ../../include/features.php:48 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Tillåt förhandsgranskning av inlägg och kommentarer innan de publiceras" + +#: ../../include/features.php:49 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importera kanalinnehåll från andra kanaler eller flöden automatiskt" + +#: ../../include/features.php:50 +msgid "Even More Encryption" +msgstr "Ytterligare kryptering" + +#: ../../include/features.php:50 msgid "" -"For more information about the Red Matrix Project and why it has the " -"potential to change the internet as we know it, please visit " -"http://getzot.com" -msgstr "För mer information om Red Matrix-projektet och varför det har potential att förändra Internet som vi känner det, besök http://getzot.com" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Tillåt änd-till-änd-kryptering av innehåll med en delad hemlig nyckel" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Kunde inte hitta mottagare." +#: ../../include/features.php:55 +msgid "Network and Stream Filtering" +msgstr "Nätverk och strömfiltrering" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Kunde inte kommunicera med den begärda kanalen." +#: ../../include/features.php:56 +msgid "Search by Date" +msgstr "Sök på datum" -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan inte bekräfta den begärda kanalen." +#: ../../include/features.php:56 +msgid "Ability to select posts by date ranges" +msgstr "Tillåter urval av inlägg baserat på datum" -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka." +#: ../../include/features.php:57 +msgid "Collections Filter" +msgstr "Kretsfilter" -#: ../../mod/mail.php:121 ../../mod/message.php:31 -msgid "Messages" -msgstr "Meddelanden" +#: ../../include/features.php:57 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Aktivera en väljare för att visa nätverksinlägg från enbart valda kretsar" -#: ../../mod/mail.php:132 -msgid "Message deleted." -msgstr "Meddelande borttaget." +#: ../../include/features.php:58 +msgid "Save search terms for re-use" +msgstr "Spara sökuttryck för återanvändning" -#: ../../mod/mail.php:149 -msgid "Message recalled." -msgstr "Meddelande återkallat." +#: ../../include/features.php:59 +msgid "Network Personal Tab" +msgstr "Personlig nätverksflik" -#: ../../mod/mail.php:206 -msgid "Send Private Message" -msgstr "Skicka privat meddelande." +#: ../../include/features.php:59 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktivera en flik som visar endast de nätverksinlägg som du har deltagit i" -#: ../../mod/mail.php:207 ../../mod/mail.php:323 -msgid "To:" -msgstr "Till:" +#: ../../include/features.php:60 +msgid "Network New Tab" +msgstr "Flik för nytt på nätverket" -#: ../../mod/mail.php:212 ../../mod/mail.php:325 -msgid "Subject:" -msgstr "Ämne:" +#: ../../include/features.php:60 +msgid "Enable tab to display all new Network activity" +msgstr "Aktivera en flik som visar all ny nätverksaktivitet" -#: ../../mod/mail.php:249 -msgid "Message not found." -msgstr "Meddelandet hittades inte." +#: ../../include/features.php:61 +msgid "Affinity Tool" +msgstr "Samhörighetsverktyg" -#: ../../mod/mail.php:292 ../../mod/message.php:72 -msgid "Delete message" -msgstr "Ta bort meddelande" +#: ../../include/features.php:61 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrera strömaktivitet efter hur nära relationen är" -#: ../../mod/mail.php:293 -msgid "Recall message" -msgstr "Återkalla meddelande" +#: ../../include/features.php:62 +msgid "Suggest Channels" +msgstr "Föreslå kanaler" -#: ../../mod/mail.php:295 -msgid "Message has been recalled." -msgstr "Meddelandet har återkallats." +#: ../../include/features.php:62 +msgid "Show channel suggestions" +msgstr "Visa förslag på kanaler" -#: ../../mod/mail.php:312 -msgid "Private Conversation" -msgstr "Privat konversation" +#: ../../include/features.php:67 +msgid "Post/Comment Tools" +msgstr "Inläggs-/kommentarsverktyg" -#: ../../mod/mail.php:316 -msgid "Delete conversation" -msgstr "Ta bort konversation" +#: ../../include/features.php:69 +msgid "Edit Sent Posts" +msgstr "Redigera sända inlägg" -#: ../../mod/mail.php:318 +#: ../../include/features.php:69 +msgid "Edit and correct posts and comments after sending" +msgstr "Redigera och korrigera inlägg och kommentarer efter att de skickats" + +#: ../../include/features.php:70 +msgid "Tagging" +msgstr "Taggning" + +#: ../../include/features.php:70 +msgid "Ability to tag existing posts" +msgstr "Möjlighet att tagga befintliga inlägg" + +#: ../../include/features.php:71 +msgid "Post Categories" +msgstr "Inläggskategorier" + +#: ../../include/features.php:71 +msgid "Add categories to your posts" +msgstr "Lägg till kategorier till dina inlägg" + +#: ../../include/features.php:72 +msgid "Ability to file posts under folders" +msgstr "Möjlighet att lägga inlägg i mappar" + +#: ../../include/features.php:73 +msgid "Dislike Posts" +msgstr "Ogilla inlägg" + +#: ../../include/features.php:73 +msgid "Ability to dislike posts/comments" +msgstr "Möjlighet att ogilla inlägg/kommentarer" + +#: ../../include/features.php:74 +msgid "Star Posts" +msgstr "Märk inlägg" + +#: ../../include/features.php:74 +msgid "Ability to mark special posts with a star indicator" +msgstr "Möjlighet att märka speciella inlägg med en stjärna" + +#: ../../include/features.php:75 +msgid "Tag Cloud" +msgstr "Taggmoln" + +#: ../../include/features.php:75 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Tillhandahåll ett personligt taggmoln på din kanalsida" + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Inte en giltig e-postadress" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "Din e-postdomän är inte bland de som tillåts på den här servern" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "Din e-postadress är redan registrerad på den här servern." + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "En inbjudan behövs." + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Inbjudningen kunde inte bekräftas." + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Ange den begärda informationen." + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Misslyckades att spara kontoinformation." + +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registreringsbekräftelse för %s" + +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Registreringsförfrågan på %s" + +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Administratör" + +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "ditt registreringslösenord" + +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Registreringsdetaljer för %s" + +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Konto godkänt." + +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrering avslagen för %s" + +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Konto bekräftat. Du kan nu logga in." + +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." +msgstr "Klicka här för att uppgradera." + +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Den här funktionen går utanför vad som anges i ditt avtal." + +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." +msgstr "Den här funktionen är inte tillgänglig med ditt avtal." + +#: ../../include/identity.php:31 ../../mod/item.php:1368 +msgid "Unable to obtain identity information from database" +msgstr "Kunde inte hämta från databasen" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Tomt namn" + +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "För långt namn" + +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "Ingen kontoidentifierare" + +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "Smeknamn måste anges." + +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "Reserverat smeknamn. Välj ett annat." + +#: ../../include/identity.php:201 ../../include/dimport.php:34 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida." +"Nickname has unsupported characters or is already being used on this site." +msgstr "Smeknamnet innehåller otillåtna tecken eller är redan upptaget på den här servern." -#: ../../mod/mail.php:322 -msgid "Send Reply" -msgstr "Skicka svar" +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "Kunde inte hämta den skapade identiteten" -#: ../../mod/settings.php:71 -msgid "Name is required" -msgstr "Namn är obligatoriskt" +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "Standardprofil" -#: ../../mod/settings.php:75 -msgid "Key and Secret are required" -msgstr "Nyckel och kod är obligatoriska" +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "Den begärda kanalen är inte tillgänglig" -#: ../../mod/settings.php:79 ../../mod/settings.php:541 +#: ../../include/identity.php:691 ../../mod/achievements.php:11 +#: ../../mod/connect.php:13 ../../mod/profile.php:16 ../../mod/blocks.php:29 +#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 +#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 +msgid "Requested profile is not available." +msgstr "Begärd profil är inte tillgänglig." + +#: ../../include/identity.php:854 ../../mod/profiles.php:740 +msgid "Change profile photo" +msgstr "Bytprofilfoto" + +#: ../../include/identity.php:860 +msgid "Profiles" +msgstr "Profiler" + +#: ../../include/identity.php:860 +msgid "Manage/edit profiles" +msgstr "Hantera/redigera profiler" + +#: ../../include/identity.php:861 ../../mod/profiles.php:741 +msgid "Create New Profile" +msgstr "Skapa ny profil" + +#: ../../include/identity.php:875 ../../mod/profiles.php:752 +msgid "Profile Image" +msgstr "Profilbild" + +#: ../../include/identity.php:878 +msgid "visible to everybody" +msgstr "synlig för alla" + +#: ../../include/identity.php:879 ../../mod/profiles.php:635 +#: ../../mod/profiles.php:756 +msgid "Edit visibility" +msgstr "Redigera synlighet" + +#: ../../include/identity.php:895 ../../include/identity.php:1132 +msgid "Gender:" +msgstr "Kön:" + +#: ../../include/identity.php:896 ../../include/identity.php:1176 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:897 ../../include/identity.php:1187 +msgid "Homepage:" +msgstr "Hemsida:" + +#: ../../include/identity.php:898 +msgid "Online Now" +msgstr "Online nu" + +#: ../../include/identity.php:976 ../../include/identity.php:1056 +#: ../../mod/ping.php:318 +msgid "g A l F d" +msgstr "l j F \\k\\l G" + +#: ../../include/identity.php:977 ../../include/identity.php:1057 +msgid "F d" +msgstr "j F" + +#: ../../include/identity.php:1022 ../../include/identity.php:1097 +#: ../../mod/ping.php:340 +msgid "[today]" +msgstr "[i dag]" + +#: ../../include/identity.php:1034 +msgid "Birthday Reminders" +msgstr "Födelsedagspåminnelser" + +#: ../../include/identity.php:1035 +msgid "Birthdays this week:" +msgstr "Födelsedagar den här veckan:" + +#: ../../include/identity.php:1090 +msgid "[No description]" +msgstr "[Ingen beskrivning]" + +#: ../../include/identity.php:1108 +msgid "Event Reminders" +msgstr "Händelsepåminnelser" + +#: ../../include/identity.php:1109 +msgid "Events this week:" +msgstr "Händelser den här veckan:" + +#: ../../include/identity.php:1122 ../../include/identity.php:1240 +#: ../../include/apps.php:136 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" + +#: ../../include/identity.php:1130 ../../mod/settings.php:984 +msgid "Full Name:" +msgstr "Fullständigt namn:" + +#: ../../include/identity.php:1137 +msgid "Like this channel" +msgstr "Gilla den här kanalen" + +#: ../../include/identity.php:1161 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/identity.php:1162 +msgid "j F" +msgstr "j F" + +#: ../../include/identity.php:1169 +msgid "Birthday:" +msgstr "Födelsedag:" + +#: ../../include/identity.php:1173 +msgid "Age:" +msgstr "Ålder:" + +#: ../../include/identity.php:1182 +#, php-format +msgid "for %1$d %2$s" +msgstr "i %1$d %2$s" + +#: ../../include/identity.php:1185 ../../mod/profiles.php:657 +msgid "Sexual Preference:" +msgstr "Sexuell preferens:" + +#: ../../include/identity.php:1189 ../../mod/profiles.php:659 +msgid "Hometown:" +msgstr "Hemort:" + +#: ../../include/identity.php:1191 +msgid "Tags:" +msgstr "Taggar:" + +#: ../../include/identity.php:1193 ../../mod/profiles.php:660 +msgid "Political Views:" +msgstr "Politisk åskådning:" + +#: ../../include/identity.php:1195 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/identity.php:1197 +msgid "About:" +msgstr "Om:" + +#: ../../include/identity.php:1199 +msgid "Hobbies/Interests:" +msgstr "Fritidssysselsättning/intressen:" + +#: ../../include/identity.php:1201 ../../mod/profiles.php:663 +msgid "Likes:" +msgstr "Gillar:" + +#: ../../include/identity.php:1203 ../../mod/profiles.php:664 +msgid "Dislikes:" +msgstr "Ogillar:" + +#: ../../include/identity.php:1206 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation och sociala nätverk:" + +#: ../../include/identity.php:1208 +msgid "My other channels:" +msgstr "Mina andra kanaler:" + +#: ../../include/identity.php:1210 +msgid "Musical interests:" +msgstr "Musikintressen:" + +#: ../../include/identity.php:1212 +msgid "Books, literature:" +msgstr "Böcker, litteratur:" + +#: ../../include/identity.php:1214 +msgid "Television:" +msgstr "Tv:" + +#: ../../include/identity.php:1216 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/kultur/underhållning:" + +#: ../../include/identity.php:1218 +msgid "Love/Romance:" +msgstr "Kärlek/romantik:" + +#: ../../include/identity.php:1220 +msgid "Work/employment:" +msgstr "Arbete/sysselsättning:" + +#: ../../include/identity.php:1222 +msgid "School/education:" +msgstr "Skola/utbildning:" + +#: ../../include/identity.php:1242 +msgid "Like this thing" +msgstr "Gilla den här saken" + +#: ../../include/items.php:377 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 +#: ../../index.php:389 +msgid "Permission denied" +msgstr "Behörighet saknas" + +#: ../../include/items.php:964 ../../include/items.php:1009 +msgid "(Unknown)" +msgstr "(Okänt)" + +#: ../../include/items.php:1165 +msgid "Visible to anybody on the internet." +msgstr "Kan ses av vem som helst på Internet." + +#: ../../include/items.php:1167 +msgid "Visible to you only." +msgstr "Kan bara ses av dig." + +#: ../../include/items.php:1169 +msgid "Visible to anybody in this network." +msgstr "Kan ses av alla på det här nätverket." + +#: ../../include/items.php:1171 +msgid "Visible to anybody authenticated." +msgstr "Kan ses av alla inloggade." + +#: ../../include/items.php:1173 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Kan ses av alla på %s." + +#: ../../include/items.php:1175 +msgid "Visible to all connections." +msgstr "Kan ses av alla kontakter." + +#: ../../include/items.php:1177 +msgid "Visible to approved connections." +msgstr "Kan ses av godkända kontakter." + +#: ../../include/items.php:1179 +msgid "Visible to specific connections." +msgstr "Kan ses av valda kontakter." + +#: ../../include/items.php:3946 ../../mod/thing.php:76 +#: ../../mod/display.php:32 ../../mod/filestorage.php:26 +#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Posten hittades inte." + +#: ../../include/items.php:4402 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Kretsen hittades inte." + +#: ../../include/items.php:4417 +msgid "Collection is empty." +msgstr "Kretsen är tom." + +#: ../../include/items.php:4424 +#, php-format +msgid "Collection: %s" +msgstr "Krets: %s" + +#: ../../include/items.php:4435 +#, php-format +msgid "Connection: %s" +msgstr "Kontakt: %s" + +#: ../../include/items.php:4438 +msgid "Connection not found." +msgstr "Kontakten hittades inte." + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Ingen mottagare angiven." + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[inget ämne]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kunde inte avgöra vem som är avsändare." + +#: ../../include/message.php:200 +msgid "Stored post could not be verified." +msgstr "Den sparade posten kunde inte verifieras." + +#: ../../include/network.php:590 +msgid "view full size" +msgstr "visa full storlek" + +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "Posten hittades inte." + +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "Ingen källfil." + +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" +msgstr "Kan inte hitta fil att ersätta" + +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "Kan inte hitta fil att revidera/uppdatera" + +#: ../../include/attach.php:377 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Filen överskrider storleksbegränsningen %d" + +#: ../../include/attach.php:389 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor." + +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd." + +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad." + +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "Sökväg inte tillgänglig." + +#: ../../include/attach.php:589 +msgid "Empty pathname" +msgstr "Tom sökväg" + +#: ../../include/attach.php:605 +msgid "duplicate filename or path" +msgstr "filnamn eller sökväg finns redan" + +#: ../../include/attach.php:629 +msgid "Path not found." +msgstr "Sökväg hittas inte." + +#: ../../include/attach.php:680 +msgid "mkdir failed." +msgstr "mkdir misslyckades." + +#: ../../include/attach.php:684 +msgid "database storage failed." +msgstr "databaslagring misslyckades." + +#: ../../include/auth.php:116 +msgid "Logged out." +msgstr "Utloggad." + +#: ../../include/auth.php:257 +msgid "Failed authentication" +msgstr "Inloggning misslyckades" + +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Inloggning misslyckades." + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Övrigt" + +#: ../../include/datetime.php:142 +msgid "YYYY-MM-DD or MM-DD" +msgstr "ÅÅÅÅ-MM-DD eller MM-DD" + +#: ../../include/datetime.php:248 +msgid "never" +msgstr "aldrig" + +#: ../../include/datetime.php:254 +msgid "less than a second ago" +msgstr "mindre än en sekund sedan" + +#: ../../include/datetime.php:257 +msgid "year" +msgstr "år" + +#: ../../include/datetime.php:257 +msgid "years" +msgstr "år" + +#: ../../include/datetime.php:258 +msgid "month" +msgstr "månad" + +#: ../../include/datetime.php:258 +msgid "months" +msgstr "månader" + +#: ../../include/datetime.php:259 +msgid "week" +msgstr "vecka" + +#: ../../include/datetime.php:259 +msgid "weeks" +msgstr "veckor" + +#: ../../include/datetime.php:260 +msgid "day" +msgstr "dag" + +#: ../../include/datetime.php:260 +msgid "days" +msgstr "dagar" + +#: ../../include/datetime.php:261 +msgid "hour" +msgstr "timme" + +#: ../../include/datetime.php:261 +msgid "hours" +msgstr "timmar" + +#: ../../include/datetime.php:262 +msgid "minute" +msgstr "minut" + +#: ../../include/datetime.php:262 +msgid "minutes" +msgstr "minuter" + +#: ../../include/datetime.php:263 +msgid "second" +msgstr "sekund" + +#: ../../include/datetime.php:263 +msgid "seconds" +msgstr "sekunder" + +#: ../../include/datetime.php:272 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s sedan" + +#: ../../include/datetime.php:480 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss födelsedag" + +#: ../../include/datetime.php:481 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Grattis på födelsedagen %1$s" + +#: ../../include/photos.php:105 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild överskrider webbplatsens storleksbegränsning på %lu byte" + +#: ../../include/photos.php:112 +msgid "Image file is empty." +msgstr "Bildfil är tom." + +#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 +msgid "Unable to process image" +msgstr "Kunde inte bearbeta bild" + +#: ../../include/photos.php:213 +msgid "Photo storage failed." +msgstr "Fotolagring misslyckades." + +#: ../../include/photos.php:345 +msgid "Upload New Photos" +msgstr "Ladda upp nya foton" + +#: ../../include/security.php:323 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades." + +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Ta bort den här posten?" + +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 +#: ../../mod/photos.php:995 ../../mod/photos.php:1105 +msgid "Comment" +msgstr "Kommentar" + +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:332 +msgid "[+] show all" +msgstr "[+] visa alla" + +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] visa färre" + +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] fäll ut" + +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] fäll ihop" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Lösenord för kort" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Lösenorden stämmer inte överens" + +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" +msgstr "alla" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Hemligt lösenord" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Lösenordsledtråd" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Observera: Rättigheter har ändrats men har ännu inte skickats in" + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "stäng alla" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Inget nytt här" + +#: ../../include/js_strings.php:20 +msgid "timeago.prefixAgo" +msgstr "för" + +#: ../../include/js_strings.php:21 +msgid "timeago.prefixFromNow" +msgstr "om" + +#: ../../include/js_strings.php:22 +msgid "ago" +msgstr "sedan" + +#: ../../include/js_strings.php:23 +msgid "from now" +msgstr " " + +#: ../../include/js_strings.php:24 +msgid "less than a minute" +msgstr "mindre än en minut" + +#: ../../include/js_strings.php:25 +msgid "about a minute" +msgstr "ungefär en minut" + +#: ../../include/js_strings.php:26 +#, php-format +msgid "%d minutes" +msgstr "%d minuter" + +#: ../../include/js_strings.php:27 +msgid "about an hour" +msgstr "ungefär en timme" + +#: ../../include/js_strings.php:28 +#, php-format +msgid "about %d hours" +msgstr "ungefär %d timmar" + +#: ../../include/js_strings.php:29 +msgid "a day" +msgstr "en dag" + +#: ../../include/js_strings.php:30 +#, php-format +msgid "%d days" +msgstr "%d dagar" + +#: ../../include/js_strings.php:31 +msgid "about a month" +msgstr "ungefär en månad" + +#: ../../include/js_strings.php:32 +#, php-format +msgid "%d months" +msgstr "%d månader" + +#: ../../include/js_strings.php:33 +msgid "about a year" +msgstr "ungefär ett år" + +#: ../../include/js_strings.php:34 +#, php-format +msgid "%d years" +msgstr "%d år" + +#: ../../include/js_strings.php:35 +msgid " " +msgstr " " + +#: ../../include/js_strings.php:36 +msgid "timeago.numbers" +msgstr "timeago.numbers" + +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" +msgstr "Man" + +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" +msgstr "Kvinna" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Just nu man" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Just nu kvinna" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Mestadels man" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Mestadels kvinna" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transperson" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersexuell" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuell" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodit" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Könlös" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Ospecificerat" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Obestämt" + +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Män" + +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Kvinnor" + +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Bög" + +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbisk" + +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Ingen preferens" + +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Bisexuell" + +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autosexuell" + +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Avhållsam" + +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Oskuld" + +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Avvikande" + +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetisch" + +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Massor" + +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Ickesexuell" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Singel" + +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Ensam" + +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Ledig" + +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Upptagen" + +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Förälskad" + +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Förtrollad" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Dejtar" + +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Otrogen" + +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Sexmissbrukare" + +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Kompisförhållande" + +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Vardaglig" + +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Förlovad" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Gift" + +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Inbillat gift" + +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partner" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Bor ihop" + +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Sambo" + +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Lycklig" + +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Letar inte" + +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Bedragen" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Separerad" + +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Instabilt" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Skild" + +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Inbillat skild" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Änka" + +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Osäkert" + +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Det är komplicerat" + +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Bryr mig inte" + +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Fråga mig" + +#: ../../include/text.php:321 +msgid "prev" +msgstr "föregående" + +#: ../../include/text.php:323 +msgid "first" +msgstr "första" + +#: ../../include/text.php:352 +msgid "last" +msgstr "sista" + +#: ../../include/text.php:355 +msgid "next" +msgstr "nästa" + +#: ../../include/text.php:367 +msgid "older" +msgstr "äldre" + +#: ../../include/text.php:369 +msgid "newer" +msgstr "nyare" + +#: ../../include/text.php:736 +msgid "No connections" +msgstr "Inga kontakter" + +#: ../../include/text.php:753 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontakter" + +#: ../../include/text.php:766 +msgid "View Connections" +msgstr "Visa kontakter" + +#: ../../include/text.php:905 +msgid "poke" +msgstr "puffa" + +#: ../../include/text.php:906 +msgid "ping" +msgstr "pinga" + +#: ../../include/text.php:906 +msgid "pinged" +msgstr "pingade" + +#: ../../include/text.php:907 +msgid "prod" +msgstr "stöt till" + +#: ../../include/text.php:907 +msgid "prodded" +msgstr "stötte till" + +#: ../../include/text.php:908 +msgid "slap" +msgstr "daska till" + +#: ../../include/text.php:908 +msgid "slapped" +msgstr "daskade till" + +#: ../../include/text.php:909 +msgid "finger" +msgstr "fingra på" + +#: ../../include/text.php:909 +msgid "fingered" +msgstr "fingrade på" + +#: ../../include/text.php:910 +msgid "rebuff" +msgstr "stöt tillbaka" + +#: ../../include/text.php:910 +msgid "rebuffed" +msgstr "stötte tillbaks" + +#: ../../include/text.php:919 +msgid "happy" +msgstr "glad" + +#: ../../include/text.php:920 +msgid "sad" +msgstr "ledsen" + +#: ../../include/text.php:921 +msgid "mellow" +msgstr "lugn" + +#: ../../include/text.php:922 +msgid "tired" +msgstr "trött" + +#: ../../include/text.php:923 +msgid "perky" +msgstr "uppåt" + +#: ../../include/text.php:924 +msgid "angry" +msgstr "arg" + +#: ../../include/text.php:925 +msgid "stupified" +msgstr "virrig" + +#: ../../include/text.php:926 +msgid "puzzled" +msgstr "förbryllad" + +#: ../../include/text.php:927 +msgid "interested" +msgstr "intresserad" + +#: ../../include/text.php:928 +msgid "bitter" +msgstr "bitter" + +#: ../../include/text.php:929 +msgid "cheerful" +msgstr "munter" + +#: ../../include/text.php:930 +msgid "alive" +msgstr "pigg" + +#: ../../include/text.php:931 +msgid "annoyed" +msgstr "irriterad" + +#: ../../include/text.php:932 +msgid "anxious" +msgstr "bekymrad" + +#: ../../include/text.php:933 +msgid "cranky" +msgstr "grinig" + +#: ../../include/text.php:934 +msgid "disturbed" +msgstr "besvärad" + +#: ../../include/text.php:935 +msgid "frustrated" +msgstr "frustrerad" + +#: ../../include/text.php:936 +msgid "depressed" +msgstr "deprimerad" + +#: ../../include/text.php:937 +msgid "motivated" +msgstr "motiverad" + +#: ../../include/text.php:938 +msgid "relaxed" +msgstr "avslappnad" + +#: ../../include/text.php:939 +msgid "surprised" +msgstr "förvånad" + +#: ../../include/text.php:1103 +msgid "Monday" +msgstr "måndag" + +#: ../../include/text.php:1103 +msgid "Tuesday" +msgstr "tisdag" + +#: ../../include/text.php:1103 +msgid "Wednesday" +msgstr "onsdag" + +#: ../../include/text.php:1103 +msgid "Thursday" +msgstr "torsdag" + +#: ../../include/text.php:1103 +msgid "Friday" +msgstr "fredag" + +#: ../../include/text.php:1103 +msgid "Saturday" +msgstr "lördag" + +#: ../../include/text.php:1103 +msgid "Sunday" +msgstr "söndag" + +#: ../../include/text.php:1107 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1107 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1107 +msgid "March" +msgstr "mars" + +#: ../../include/text.php:1107 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1107 +msgid "May" +msgstr "maj" + +#: ../../include/text.php:1107 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1107 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1107 +msgid "August" +msgstr "augusti" + +#: ../../include/text.php:1107 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1107 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1107 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1107 +msgid "December" +msgstr "december" + +#: ../../include/text.php:1185 +msgid "unknown.???" +msgstr "okänt.???" + +#: ../../include/text.php:1186 +msgid "bytes" +msgstr "byte" + +#: ../../include/text.php:1225 +msgid "remove category" +msgstr "ta bort kategori" + +#: ../../include/text.php:1295 +msgid "remove from file" +msgstr "ta bort från fil" + +#: ../../include/text.php:1360 ../../include/text.php:1372 +msgid "Click to open/close" +msgstr "Klicka för att öppna/stänga" + +#: ../../include/text.php:1527 ../../mod/events.php:409 +msgid "Link to Source" +msgstr "Länk till källa" + +#: ../../include/text.php:1546 +msgid "Select a page layout: " +msgstr "Välj en sidlayout: " + +#: ../../include/text.php:1549 ../../include/text.php:1614 +msgid "default" +msgstr "standard" + +#: ../../include/text.php:1585 +msgid "Page content type: " +msgstr "Typ av sidinnehåll: " + +#: ../../include/text.php:1626 +msgid "Select an alternate language" +msgstr "Välj ett alternativt språk" + +#: ../../include/text.php:1760 +msgid "activity" +msgstr "aktivitet" + +#: ../../include/text.php:2041 +msgid "Design" +msgstr "Design" + +#: ../../include/text.php:2044 +msgid "Blocks" +msgstr "Block" + +#: ../../include/text.php:2045 +msgid "Menus" +msgstr "Menyer" + +#: ../../include/text.php:2046 +msgid "Layouts" +msgstr "Layouter" + +#: ../../include/text.php:2047 +msgid "Pages" +msgstr "Sidor" + +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Kan ses av förinställda mottagare" + +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Visa" + +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Visa inte" + +#: ../../include/acl_selectors.php:248 ../../mod/events.php:585 +#: ../../mod/chat.php:209 ../../mod/photos.php:588 ../../mod/photos.php:950 +#: ../../mod/filestorage.php:137 +msgid "Permissions" +msgstr "Behörighet" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 +#: ../../mod/photos.php:1148 +msgid "Close" +msgstr "Stäng" + +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Offentlig tidslinje" + +#: ../../include/apps.php:126 +msgid "Site Admin" +msgstr "Serveradministrator" + +#: ../../include/apps.php:128 +msgid "Address Book" +msgstr "Adressbok" + +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Sinnesstämning" + +#: ../../include/apps.php:146 +msgid "Probe" +msgstr "Sond" + +#: ../../include/apps.php:147 +msgid "Suggest" +msgstr "Föreslå" + +#: ../../include/apps.php:148 +msgid "Random Channel" +msgstr "Slumpvald kanal" + +#: ../../include/apps.php:149 +msgid "Invite" +msgstr "Bjud in" + +#: ../../include/apps.php:150 +msgid "Features" +msgstr "Funktioner" + +#: ../../include/apps.php:151 +msgid "Language" +msgstr "Språk" + +#: ../../include/apps.php:152 +msgid "Post" +msgstr "Inlägg" + +#: ../../include/apps.php:153 +msgid "Profile Photo" +msgstr "Profilfoto" + +#: ../../include/apps.php:242 ../../mod/settings.php:81 +#: ../../mod/settings.php:575 msgid "Update" msgstr "Uppdatera" -#: ../../mod/settings.php:195 -msgid "Passwords do not match. Password unchanged." -msgstr "Lösenorden stämmer inte överens. Lösenordet har inte ändrats." - -#: ../../mod/settings.php:199 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tomma lösenord tillåts inte. Lösenordet har inte ändrats." - -#: ../../mod/settings.php:212 -msgid "Password changed." -msgstr "Lösenordet ändrat." - -#: ../../mod/settings.php:214 -msgid "Password update failed. Please try again." -msgstr "Lösenordsuppdatering misslyckades. Försök igen." - -#: ../../mod/settings.php:228 -msgid "Not valid email." -msgstr "Inte en giltig e-postadress." - -#: ../../mod/settings.php:231 -msgid "Protected email address. Cannot change to that email." -msgstr "Skyddad e-postadress. Kan inte ändra till den." - -#: ../../mod/settings.php:240 -msgid "System failure storing new email. Please try again." -msgstr "Systemfel när ny e-postadress skulle sparas. Försök igen." - -#: ../../mod/settings.php:443 -msgid "Settings updated." -msgstr "Inställningar uppdaterade." - -#: ../../mod/settings.php:514 ../../mod/settings.php:540 -#: ../../mod/settings.php:576 -msgid "Add application" -msgstr "Lägg till applikation" - -#: ../../mod/settings.php:517 ../../mod/settings.php:543 -#: ../../mod/admin.php:891 -msgid "Name" -msgstr "Namn" - -#: ../../mod/settings.php:517 -msgid "Name of application" -msgstr "Applikationens namn" - -#: ../../mod/settings.php:518 ../../mod/settings.php:544 -msgid "Consumer Key" -msgstr "Nyckel för konsument" - -#: ../../mod/settings.php:518 ../../mod/settings.php:519 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatiskt genererad - ändra om så önskas. Maxlängd 20" - -#: ../../mod/settings.php:519 ../../mod/settings.php:545 -msgid "Consumer Secret" -msgstr "Kod för konsument" - -#: ../../mod/settings.php:520 ../../mod/settings.php:546 -msgid "Redirect" -msgstr "Omdirigering" - -#: ../../mod/settings.php:520 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Omdirigerings-URI - lämna blankt om inte din applikation specifikt behöver det" - -#: ../../mod/settings.php:521 ../../mod/settings.php:547 -msgid "Icon url" -msgstr "Ikon-URL" - -#: ../../mod/settings.php:521 -msgid "Optional" -msgstr "Frivillig" - -#: ../../mod/settings.php:532 -msgid "You can't edit this application." -msgstr "Du kan inte redigera den här applikationen." - -#: ../../mod/settings.php:575 -msgid "Connected Apps" -msgstr "Anslutna appar" - -#: ../../mod/settings.php:579 -msgid "Client key starts with" -msgstr "Klientnyckel börjar med" - -#: ../../mod/settings.php:580 -msgid "No name" -msgstr "Inget namn" - -#: ../../mod/settings.php:581 -msgid "Remove authorization" -msgstr "Ta bort behörighet" - -#: ../../mod/settings.php:592 -msgid "No feature settings configured" -msgstr "Inga funktionsinställningar konfigurerade" - -#: ../../mod/settings.php:600 -msgid "Feature Settings" -msgstr "Funktionsinställningar" - -#: ../../mod/settings.php:623 -msgid "Account Settings" -msgstr "Kontoinställningar" - -#: ../../mod/settings.php:624 -msgid "Password Settings" -msgstr "Lösenordsinställningar" - -#: ../../mod/settings.php:625 -msgid "New Password:" -msgstr "Nytt lösenord:" - -#: ../../mod/settings.php:626 -msgid "Confirm:" -msgstr "Bekräfta:" - -#: ../../mod/settings.php:626 -msgid "Leave password fields blank unless changing" -msgstr "Lämna lösenordsfälten blanka om lösenordet inte ska ändras" - -#: ../../mod/settings.php:628 ../../mod/settings.php:938 -msgid "Email Address:" -msgstr "E-postadress" - -#: ../../mod/settings.php:629 -msgid "Remove Account" -msgstr "Ta bort konto" - -#: ../../mod/settings.php:630 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Varning: Den här handlingen är permanent och kan inte återställas." - -#: ../../mod/settings.php:646 -msgid "Off" -msgstr "Av" - -#: ../../mod/settings.php:646 -msgid "On" -msgstr "På" - -#: ../../mod/settings.php:653 -msgid "Additional Features" -msgstr "Ytterligare funktioner" - -#: ../../mod/settings.php:678 -msgid "Connector Settings" -msgstr "Anslutningsinställningar" - -#: ../../mod/settings.php:708 ../../mod/admin.php:389 -msgid "No special theme for mobile devices" -msgstr "Inget särskilt tema för mobila enheter" - -#: ../../mod/settings.php:749 -msgid "Display Settings" -msgstr "Utseende" - -#: ../../mod/settings.php:755 -msgid "Display Theme:" -msgstr "Tema för utseende:" - -#: ../../mod/settings.php:756 -msgid "Mobile Theme:" -msgstr "Mobilt tema:" - -#: ../../mod/settings.php:757 -msgid "Update browser every xx seconds" -msgstr "Uppdatera webbläsaren var xx sekund" - -#: ../../mod/settings.php:757 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minst 10 sekunder, inget maximum" - -#: ../../mod/settings.php:758 -msgid "Maximum number of conversations to load at any time:" -msgstr "Högsta antal konversationer att ladda åt gången:" - -#: ../../mod/settings.php:758 -msgid "Maximum of 100 items" -msgstr "Maximalt 100 poster" - -#: ../../mod/settings.php:759 -msgid "Don't show emoticons" -msgstr "Visa inte känsloikoner" - -#: ../../mod/settings.php:760 -msgid "Do not view remote profiles in frames" -msgstr "Visa inte profiler på andra servrar i ramar" - -#: ../../mod/settings.php:760 -msgid "By default open in a sub-window of your own site" -msgstr "Som standard öppnas de i ett underfönster på din lokala server" - -#: ../../mod/settings.php:761 -msgid "System Page Layout Editor - (advanced)" -msgstr "Redigera systemets sidlayout (avancerat)" - -#: ../../mod/settings.php:796 -msgid "Nobody except yourself" -msgstr "Ingen utom dig själv" - -#: ../../mod/settings.php:797 -msgid "Only those you specifically allow" -msgstr "Endast utvalda" - -#: ../../mod/settings.php:798 -msgid "Anybody in your address book" -msgstr "Vem som helst i din adressbok" - -#: ../../mod/settings.php:799 -msgid "Anybody on this website" -msgstr "Vem som helst på den här servern" - -#: ../../mod/settings.php:800 -msgid "Anybody in this network" -msgstr "Vem som helst i det här nätverket" - -#: ../../mod/settings.php:801 -msgid "Anybody authenticated" -msgstr "Vem som helst som har autentiserat sig" - -#: ../../mod/settings.php:802 -msgid "Anybody on the internet" -msgstr "Vem som helst på Internet" - -#: ../../mod/settings.php:879 -msgid "Publish your default profile in the network directory" -msgstr "Publicera din standardprofil i nätverkskatalogen" - -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 ../../mod/api.php:106 ../../mod/profiles.php:484 -msgid "No" -msgstr "Nej" - -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 ../../mod/api.php:105 ../../mod/profiles.php:483 -msgid "Yes" -msgstr "Ja" - -#: ../../mod/settings.php:884 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Tillåt oss att föreslå dig som möjlig vän för nya medlemmar" - -#: ../../mod/settings.php:888 ../../mod/profile_photo.php:288 -msgid "or" -msgstr "eller" - -#: ../../mod/settings.php:893 -msgid "Your channel address is" -msgstr "Din kanaladress är" - -#: ../../mod/settings.php:927 -msgid "Channel Settings" -msgstr "Kanalinställningar" - -#: ../../mod/settings.php:936 -msgid "Basic Settings" -msgstr "Grundläggande inställningar" - -#: ../../mod/settings.php:939 -msgid "Your Timezone:" -msgstr "Din tidszon:" - -#: ../../mod/settings.php:940 -msgid "Default Post Location:" -msgstr "Standardplats:" - -#: ../../mod/settings.php:940 -msgid "Geographical location to display on your posts" -msgstr "Geografisk plats att visa för dina inlägg" - -#: ../../mod/settings.php:941 -msgid "Use Browser Location:" -msgstr "Använd webbläsarens position:" - -#: ../../mod/settings.php:943 -msgid "Adult Content" -msgstr "Pornografiskt innehåll" - -#: ../../mod/settings.php:943 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Den här kanalen publicerar ofta eller regelbundet pornografiskt innehåll. (Tagga allt pornografiskt material och/eller nakenhet med #NSFW, tack)" - -#: ../../mod/settings.php:945 -msgid "Security and Privacy Settings" -msgstr "Säkerhets- och integritetsinställningar" - -#: ../../mod/settings.php:947 -msgid "Hide my online presence" -msgstr "Visa inte min online-närvaro" - -#: ../../mod/settings.php:947 -msgid "Prevents displaying in your profile that you are online" -msgstr "Förhindrar att det syns i din profil att du är online" - -#: ../../mod/settings.php:949 -msgid "Simple Privacy Settings:" -msgstr "Enkla integritetsinställningar:" - -#: ../../mod/settings.php:950 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Väldigt offentligt - extremt tillåtande (bör användas försiktigt)" - -#: ../../mod/settings.php:951 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typiskt - offentligt som standard, privat när så önskas (liknande behörigheter som på sociala nätverk men med förbättrad integritet)" - -#: ../../mod/settings.php:952 -msgid "Private - default private, never open or public" -msgstr "Privat - privat som standard, aldrig öppet eller offentligt" - -#: ../../mod/settings.php:953 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockera - som standard blockerat till/från alla" - -#: ../../mod/settings.php:955 -msgid "Allow others to tag your posts" -msgstr "Låt andra tagga dina inlägg" - -#: ../../mod/settings.php:955 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Ofta använt av gemenskapen för att i efterhand flagga olämpligt innehåll" - -#: ../../mod/settings.php:957 -msgid "Advanced Privacy Settings" -msgstr "Avancerade integritetsinställningar" - -#: ../../mod/settings.php:959 -msgid "Expire other channel content after this many days" -msgstr "Låt annat kanalinnehåll upphöra efter efter så här många dagar" - -#: ../../mod/settings.php:959 -msgid "0 or blank prevents expiration" -msgstr "0 eller blankt förhindrar upphörande" - -#: ../../mod/settings.php:960 -msgid "Maximum Friend Requests/Day:" -msgstr "Högsta antal vänförfrågningar per dag:" - -#: ../../mod/settings.php:960 -msgid "May reduce spam activity" -msgstr "Kan reducera spamaktivitet" - -#: ../../mod/settings.php:961 -msgid "Default Post Permissions" -msgstr "Standardbehörighet för inlägg" - -#: ../../mod/settings.php:962 ../../mod/mitem.php:134 ../../mod/mitem.php:177 -msgid "(click to open/close)" -msgstr "(klicka för att öppna/stänga)" - -#: ../../mod/settings.php:973 -msgid "Maximum private messages per day from unknown people:" -msgstr "Högsta antal privata meddelanden per dag från okända personer:" - -#: ../../mod/settings.php:973 -msgid "Useful to reduce spamming" -msgstr "Användbart för att minska skräputskick" - -#: ../../mod/settings.php:976 -msgid "Notification Settings" -msgstr "Notifieringsinställningar" - -#: ../../mod/settings.php:977 -msgid "By default post a status message when:" -msgstr "Skicka som standard ett statusmeddelande när:" - -#: ../../mod/settings.php:978 -msgid "accepting a friend request" -msgstr "du accepterar en vänförfrågan" - -#: ../../mod/settings.php:979 -msgid "joining a forum/community" -msgstr "du går med i ett forum/en gemenskap" - -#: ../../mod/settings.php:980 -msgid "making an interesting profile change" -msgstr "du gör en intressant ändring av profilen" - -#: ../../mod/settings.php:981 -msgid "Send a notification email when:" -msgstr "Skicka en notifiering via e-post med när:" - -#: ../../mod/settings.php:982 -msgid "You receive a connection request" -msgstr "Du får en kontaktförfrågan" - -#: ../../mod/settings.php:983 -msgid "Your connections are confirmed" -msgstr "Dina kontakter bekräftas" - -#: ../../mod/settings.php:984 -msgid "Someone writes on your profile wall" -msgstr "Någon skriver på din profilvägg" - -#: ../../mod/settings.php:985 -msgid "Someone writes a followup comment" -msgstr "Någon skriver en uppföljande kommentar" - -#: ../../mod/settings.php:986 -msgid "You receive a private message" -msgstr "Du tar emot ett privat meddelande" - -#: ../../mod/settings.php:987 -msgid "You receive a friend suggestion" -msgstr "Du tar emot ett vänförslag" - -#: ../../mod/settings.php:988 -msgid "You are tagged in a post" -msgstr "Du taggas i ett inlägg" - -#: ../../mod/settings.php:989 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du puffas/stöts till/etc. i ett inlägg" - -#: ../../mod/settings.php:992 -msgid "Advanced Account/Page Type Settings" -msgstr "Avancerade konto-/sidtypsinställningar" - -#: ../../mod/settings.php:993 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändra det här kontots beteende i särskilda situationer" - -#: ../../mod/settings.php:996 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Aktivera expertläge (i Inställningar > Ytterligare funktioner) för att göra ändringar!" - -#: ../../mod/settings.php:997 -msgid "Miscellaneous Settings" -msgstr "Diverse inställningar" - -#: ../../mod/settings.php:999 -msgid "Personal menu to display in your channel pages" -msgstr "Personlig meny att visa i dina kanalsidor" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "Meny uppdaterad." - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "Kunde inte uppdatera meny." - -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "Meny skapad." - -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "Kunde inte skapa meny." - -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "Hantera menyer" - -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "Ta bort" - -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "Skapa en ny meny" - -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "Ta bort den här menyn" - -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "Redigera menyinnehåll" - -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "Redigera den här menyn" - -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "Ny meny" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "Menynamn" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "Måste vara unikt, ses endast av dig" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "Menytitel" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "Menytitel som andra ser den" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "Tillåt bokmärken" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menyn kan användas för att spara bokmärken" - -#: ../../mod/menu.php:84 ../../mod/mitem.php:142 ../../mod/new_channel.php:117 -msgid "Create" -msgstr "Skapa" - -#: ../../mod/menu.php:92 ../../mod/mitem.php:14 +#: ../../include/apps.php:242 +msgid "Install" +msgstr "Installera" + +#: ../../include/apps.php:247 +msgid "Purchase" +msgstr "Köp" + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "Spara i mapp" + +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:1022 ../../mod/photos.php:1034 +msgid "View all" +msgstr "Visa alla" + +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1031 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "%n ogillar detta" +msgstr[1] "%n ogillar detta" + +#: ../../include/ItemObject.php:179 +msgid "Add Star" +msgstr "Märk" + +#: ../../include/ItemObject.php:180 +msgid "Remove Star" +msgstr "Ta bort märkning" + +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" +msgstr "Växla märkning" + +#: ../../include/ItemObject.php:185 +msgid "starred" +msgstr "märkt" + +#: ../../include/ItemObject.php:203 +msgid "Add Tag" +msgstr "Lägg till en tagg" + +#: ../../include/ItemObject.php:221 ../../mod/photos.php:974 +msgid "I like this (toggle)" +msgstr "Jag gillar det här (växla)" + +#: ../../include/ItemObject.php:222 ../../mod/photos.php:975 +msgid "I don't like this (toggle)" +msgstr "Jag gillar inte det här (växla)" + +#: ../../include/ItemObject.php:226 +msgid "Share This" +msgstr "Dela det här" + +#: ../../include/ItemObject.php:226 +msgid "share" +msgstr "dela" + +#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 +#, php-format +msgid "View %s's profile - %s" +msgstr "Visa %ss profil - %s" + +#: ../../include/ItemObject.php:251 +msgid "to" +msgstr "till" + +#: ../../include/ItemObject.php:252 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:253 +msgid "Wall-to-Wall" +msgstr "Vägg-till-vägg" + +#: ../../include/ItemObject.php:254 +msgid "via Wall-To-Wall:" +msgstr "via vägg-till-vägg" + +#: ../../include/ItemObject.php:290 +msgid "Save Bookmarks" +msgstr "Spara bokmärken" + +#: ../../include/ItemObject.php:291 +msgid "Add to Calendar" +msgstr "Lägg till kalendern" + +#: ../../include/ItemObject.php:299 ../../mod/photos.php:1142 +msgctxt "noun" +msgid "Likes" +msgstr "gillar detta" + +#: ../../include/ItemObject.php:300 ../../mod/photos.php:1143 +msgctxt "noun" +msgid "Dislikes" +msgstr "ogillar detta" + +#: ../../include/ItemObject.php:331 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d kommentar" +msgstr[1] "%d kommentarer" + +#: ../../include/ItemObject.php:596 ../../mod/photos.php:993 +#: ../../mod/photos.php:1103 +msgid "This is you" +msgstr "Det här är du" + +#: ../../include/ItemObject.php:599 ../../mod/mood.php:135 +#: ../../mod/profiles.php:633 ../../mod/connect.php:92 ../../mod/setup.php:313 +#: ../../mod/setup.php:358 ../../mod/poke.php:166 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/events.php:587 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/photos.php:594 ../../mod/photos.php:671 +#: ../../mod/photos.php:956 ../../mod/photos.php:996 ../../mod/photos.php:1106 +#: ../../mod/connedit.php:555 ../../mod/thing.php:284 ../../mod/thing.php:327 +#: ../../mod/pdledit.php:58 ../../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/fsuggest.php:108 +#: ../../mod/filestorage.php:146 ../../mod/group.php:81 +#: ../../mod/import.php:480 ../../mod/admin.php:412 ../../mod/admin.php:723 +#: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 +#: ../../mod/admin.php:1278 ../../mod/invite.php:142 ../../mod/locs.php:99 +#: ../../mod/mail.php:348 ../../mod/xchan.php:11 ../../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 "Skicka" + +#: ../../include/ItemObject.php:600 +msgid "Bold" +msgstr "Fet" + +#: ../../include/ItemObject.php:601 +msgid "Italic" +msgstr "Kursiv" + +#: ../../include/ItemObject.php:602 +msgid "Underline" +msgstr "Understruken" + +#: ../../include/ItemObject.php:603 +msgid "Quote" +msgstr "Citat" + +#: ../../include/ItemObject.php:604 +msgid "Code" +msgstr "Kod" + +#: ../../include/ItemObject.php:605 +msgid "Image" +msgstr "Bild" + +#: ../../include/ItemObject.php:606 +msgid "Link" +msgstr "Länk" + +#: ../../include/ItemObject.php:607 +msgid "Video" +msgstr "Video" + +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Ange din nuvarande sinnesstämning och visa för dina vänner" + +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ogiltigt profil-ID." + +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Redigera profilsynlighet" + +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klicka på en kontakt för att lägga till eller ta bort." + +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Kan ses av" + +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" +msgstr "Alla kontakter" + +#: ../../mod/mitem.php:24 ../../mod/menu.php:108 msgid "Menu not found." msgstr "Menyn hittades inte." -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "Meny borttagen." +#: ../../mod/mitem.php:67 +msgid "Menu element updated." +msgstr "Menyval uppdaterat." -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "Menyn kunde inte tas bort." +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." +msgstr "Kunde inte uppdatera menyval." -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "Redigera meny" +#: ../../mod/mitem.php:77 +msgid "Menu element added." +msgstr "Menyval tillagt." -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "Lägg till eller ta bort menyval" +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." +msgstr "Kunde inte lägga till menyval." -#: ../../mod/menu.php:114 ../../mod/mitem.php:186 -msgid "Modify" -msgstr "Ändra" - -#: ../../mod/menu.php:120 ../../mod/mitem.php:78 ../../mod/xchan.php:27 -#: ../../mod/dirprofile.php:181 +#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 msgid "Not found." msgstr "Hittades inte." -#: ../../mod/webpages.php:122 ../../mod/layouts.php:116 -#: ../../mod/blocks.php:97 -msgid "View" -msgstr "Visa" +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" +msgstr "Hantera menyval" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Tillåt anslutning av applikation" +#: ../../mod/mitem.php:130 +msgid "Edit menu" +msgstr "Redigera meny" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Återgå till din applikation och ange den här säkerhetskoden:" +#: ../../mod/mitem.php:133 +msgid "Edit element" +msgstr "Redigera menyval" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Logga in för att fortsätta." +#: ../../mod/mitem.php:134 +msgid "Drop element" +msgstr "Ta bort menyval" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?" +#: ../../mod/mitem.php:135 +msgid "New element" +msgstr "Nytt menyval" -#: ../../mod/apps.php:8 -msgid "No installed applications." -msgstr "Inga installerade applikationer" +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" +msgstr "Redigera den här menysamlaren" -#: ../../mod/apps.php:13 -msgid "Applications" -msgstr "Applikationer" +#: ../../mod/mitem.php:137 +msgid "Add menu element" +msgstr "Lägg till menyval" -#: ../../mod/editpost.php:20 ../../mod/editblock.php:8 -#: ../../mod/editblock.php:27 ../../mod/editblock.php:53 -#: ../../mod/editlayout.php:36 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "Posten hittas inte" +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" +msgstr "Ta bort det här menyvalet" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Posten går ej att redigera" +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" +msgstr "Redigera det här menyvalet" -#: ../../mod/editpost.php:42 ../../mod/rpost.php:86 -msgid "Edit post" -msgstr "Redigera inlägg" +#: ../../mod/mitem.php:158 +msgid "New Menu Element" +msgstr "Nytt menyval" -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Ta bort posten?" +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" +msgstr "Behörighet för menyval" -#: ../../mod/editpost.php:116 ../../mod/editblock.php:115 -#: ../../mod/editlayout.php:110 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "Infoga Youtube-video" +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1011 +msgid "(click to open/close)" +msgstr "(klicka för att öppna/stänga)" -#: ../../mod/editpost.php:117 ../../mod/editblock.php:116 -#: ../../mod/editlayout.php:111 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "Infoga Vorbis [.ogg]-video" +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" +msgstr "Länktext" -#: ../../mod/editpost.php:118 ../../mod/editblock.php:117 -#: ../../mod/editlayout.php:112 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Infoga Vorbis [.ogg]-ljud" +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" +msgstr "Länkens URL" -#: ../../mod/cloud.php:112 -msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" -msgstr "Red Matrix - Gäster: Användarnamn: {din e-postadress}, Lösenord: +++" +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "Använd RedMatrix magic-auth om tillgängligt" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bokmärke tillagt" +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" +msgstr "Öppna länk i nytt fönster" -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "Mina bokmärken" +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" +msgstr "Ordningstal i listan" -#: ../../mod/bookmarks.php:69 -msgid "My Connections Bookmarks" -msgstr "Mina kontakters bokmärken" +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Större tal sjunker till botten av listan" -#: ../../mod/subthread.php:105 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s följer %2$ss %3$s" +#: ../../mod/mitem.php:181 +msgid "Menu item not found." +msgstr "Menyval hittas inte." -#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43 -#: ../../mod/update_search.php:46 ../../mod/update_display.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Inbäddat innehåll - ladda om sidan för att visa]" +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." +msgstr "Menyval borttaget." -#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47 -#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 -msgid "Channel not found." -msgstr "Kanalen hittas inte." +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." +msgstr "Menyval kunde inte tas bort." -#: ../../mod/chanview.php:93 -msgid "toggle full screen mode" -msgstr "växla helskärmsläge" +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" +msgstr "Redigera menyval" -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s taggade%2$ss %3$s med %4$s" +#: ../../mod/mitem.php:213 ../../mod/menu.php:130 +msgid "Modify" +msgstr "Ändra" -#: ../../mod/acl.php:239 -msgid "network" -msgstr "nätverk" +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Lite text om vad man kan göra som ny här" -#: ../../mod/viewconnections.php:17 ../../mod/search.php:13 -#: ../../mod/directory.php:15 ../../mod/display.php:9 -#: ../../mod/dirprofile.php:9 ../../mod/photos.php:443 -msgid "Public access denied." -msgstr "Offentlig behörighet saknas." +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 +msgid "Profile not found." +msgstr "Profil hittades inte." -#: ../../mod/viewconnections.php:50 -msgid "No connections." -msgstr "Inga kontakter." +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profil borttagen." -#: ../../mod/viewconnections.php:62 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besök %ss profil [%s]" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/viewconnections.php:77 -msgid "View Connnections" -msgstr "Visa kontakter" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Ny profil skapad." -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tagg borttagen" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profil inte tillgänglig för kloning." -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Ta bort innehållstagg" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Profil inte tillgänglig för export." -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Välj en tagg att ta bort: " +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "Profilnamn krävs." -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:908 -msgid "Remove" -msgstr "Ta bort" +#: ../../mod/profiles.php:378 +msgid "Marital Status" +msgstr "Civilstånd" + +#: ../../mod/profiles.php:382 +msgid "Romantic Partner" +msgstr "Romantisk partner" + +#: ../../mod/profiles.php:386 +msgid "Likes" +msgstr "Gillar" + +#: ../../mod/profiles.php:390 +msgid "Dislikes" +msgstr "Ogillar" + +#: ../../mod/profiles.php:394 +msgid "Work/Employment" +msgstr "Arbete/sysselsättning" + +#: ../../mod/profiles.php:397 +msgid "Religion" +msgstr "Religion" + +#: ../../mod/profiles.php:401 +msgid "Political Views" +msgstr "Politisk åskådning" + +#: ../../mod/profiles.php:405 +msgid "Gender" +msgstr "Kön" + +#: ../../mod/profiles.php:409 +msgid "Sexual Preference" +msgstr "Sexuell preferens" + +#: ../../mod/profiles.php:413 +msgid "Homepage" +msgstr "Hemsida" + +#: ../../mod/profiles.php:417 +msgid "Interests" +msgstr "Intressen" + +#: ../../mod/profiles.php:421 ../../mod/admin.php:866 +msgid "Address" +msgstr "Adress" + +#: ../../mod/profiles.php:428 ../../mod/pubsites.php:25 +msgid "Location" +msgstr "Plats" + +#: ../../mod/profiles.php:511 +msgid "Profile updated." +msgstr "Profil uppdaterad." + +#: ../../mod/profiles.php:590 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Dölj din kontakt-/vänlista för de som ser den här profilen" + +#: ../../mod/profiles.php:591 ../../mod/api.php:105 ../../mod/settings.php:916 +#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/admin.php:392 +msgid "Yes" +msgstr "Ja" + +#: ../../mod/profiles.php:592 ../../mod/api.php:106 ../../mod/settings.php:916 +#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/admin.php:390 +msgid "No" +msgstr "Nej" + +#: ../../mod/profiles.php:632 +msgid "Edit Profile Details" +msgstr "Redigera profildetaljer" + +#: ../../mod/profiles.php:634 +msgid "View this profile" +msgstr "Visa den här profilen" + +#: ../../mod/profiles.php:636 +msgid "Change Profile Photo" +msgstr "Byt profilfoto" + +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" +msgstr "Skapa en ny profil utifrån de här inställningarna" + +#: ../../mod/profiles.php:638 +msgid "Clone this profile" +msgstr "Klona den här profilen" + +#: ../../mod/profiles.php:639 +msgid "Delete this profile" +msgstr "Ta bort den här profilen" + +#: ../../mod/profiles.php:641 +msgid "Import profile from file" +msgstr "Importera profil från fil" + +#: ../../mod/profiles.php:642 +msgid "Export profile to file" +msgstr "Exportera profil som fil" + +#: ../../mod/profiles.php:643 +msgid "Profile Name:" +msgstr "Profilnamn:" + +#: ../../mod/profiles.php:644 +msgid "Your Full Name:" +msgstr "Ditt fulllständiga namn:" + +#: ../../mod/profiles.php:645 +msgid "Title/Description:" +msgstr "Titel/beskrivning:" + +#: ../../mod/profiles.php:646 +msgid "Your Gender:" +msgstr "Ditt kön:" + +#: ../../mod/profiles.php:647 +msgid "Birthday :" +msgstr "Födelsedag:" + +#: ../../mod/profiles.php:648 +msgid "Street Address:" +msgstr "Gatuadress:" + +#: ../../mod/profiles.php:649 +msgid "Locality/City:" +msgstr "Ort:" + +#: ../../mod/profiles.php:650 +msgid "Postal/Zip Code:" +msgstr "Postnummer:" + +#: ../../mod/profiles.php:651 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:652 +msgid "Region/State:" +msgstr "Region:" + +#: ../../mod/profiles.php:653 +msgid " Marital Status:" +msgstr " Civilstånd:" + +#: ../../mod/profiles.php:654 +msgid "Who: (if applicable)" +msgstr "Vem: (om tillämpligt)" + +#: ../../mod/profiles.php:655 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exempel: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:656 +msgid "Since [date]:" +msgstr "Sedan [datum]" + +#: ../../mod/profiles.php:658 +msgid "Homepage URL:" +msgstr "Hemsideadress:" + +#: ../../mod/profiles.php:661 +msgid "Religious Views:" +msgstr "Religion/livsåskådning:" + +#: ../../mod/profiles.php:662 +msgid "Keywords:" +msgstr "Nyckelord:" + +#: ../../mod/profiles.php:665 +msgid "Example: fishing photography software" +msgstr "Exempel: fiske fotografering mjukvara" + +#: ../../mod/profiles.php:666 +msgid "Used in directory listings" +msgstr "Används i kataloglistningar" + +#: ../../mod/profiles.php:667 +msgid "Tell us about yourself..." +msgstr "Beskriv dig själv..." + +#: ../../mod/profiles.php:668 +msgid "Hobbies/Interests" +msgstr "Fritidssysselsättning/intressen" + +#: ../../mod/profiles.php:669 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformation och sociala nätverk" + +#: ../../mod/profiles.php:670 +msgid "My other channels" +msgstr "Mina andra kanaler" + +#: ../../mod/profiles.php:671 +msgid "Musical interests" +msgstr "Musikintressen" + +#: ../../mod/profiles.php:672 +msgid "Books, literature" +msgstr "Böcker, litteratur" + +#: ../../mod/profiles.php:673 +msgid "Television" +msgstr "Tv" + +#: ../../mod/profiles.php:674 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/kultur/underhållning" + +#: ../../mod/profiles.php:675 +msgid "Love/romance" +msgstr "Kärlek/romantik" + +#: ../../mod/profiles.php:676 +msgid "Work/employment" +msgstr "Arbete/sysselsättning" + +#: ../../mod/profiles.php:677 +msgid "School/education" +msgstr "Skola/utbildning" + +#: ../../mod/profiles.php:683 +msgid "This is your default profile." +msgstr "Det här är din standardprofil." + +#: ../../mod/profiles.php:694 ../../mod/directory.php:148 +msgid "Age: " +msgstr "Ålder:" + +#: ../../mod/profiles.php:737 +msgid "Edit/Manage Profiles" +msgstr "Redigera/hantera profiler" + +#: ../../mod/profiles.php:738 +msgid "Add profile things" +msgstr "Lägg till profilsaker" + +#: ../../mod/profiles.php:739 +msgid "Include desirable objects in your profile" +msgstr "Inkludera fina prylar i din profil" #: ../../mod/connect.php:55 ../../mod/connect.php:103 msgid "Continue" @@ -4285,1931 +4113,512 @@ msgstr "(Inga specifika instruktioner har givits av kanalägaren.)" msgid "Restricted or Premium Channel" msgstr "Begränsad kanal eller premiumkanal" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Inga potentiella sid-ombud funna." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegera sidhantering" - -#: ../../mod/delegate.php:123 +#: ../../mod/post.php:229 msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på." +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fjärrinloggning blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen." -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Befintliga sid-ansvariga" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Befintliga sid-ombud" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentiella ombud" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Lägg till" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Inga poster." - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout uppdaterad." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Redigera systemsidbeskrivning" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout hittas inte." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulnamn:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "Layouthjälp" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Post inte tillgänglig." - -#: ../../mod/item.php:147 -msgid "Unable to locate original post." -msgstr "Kunde inte hitta originalinlägget." - -#: ../../mod/item.php:345 -msgid "Empty post discarded." -msgstr "Tomt inlägg förkastat." - -#: ../../mod/item.php:385 -msgid "Executable content type not permitted to this channel." -msgstr "Körbart innehåll tillåts inte i den här kanalen." - -#: ../../mod/item.php:794 -msgid "System error. Post not saved." -msgstr "Systemfel. Inlägget inte sparat." - -#: ../../mod/item.php:1237 +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 #, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du har nått din gräns på %1$.0f toppnivåinlägg." +msgid "Welcome %s. Remote authentication successful." +msgstr "Välkommen %s. Fjärrinloggning lyckades." -#: ../../mod/item.php:1243 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du har nått din gräns på %1$.0f webbsidor." - -#: ../../mod/mitem.php:47 -msgid "Menu element updated." -msgstr "Menyval uppdaterat." - -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." -msgstr "Kunde inte uppdatera menyval." - -#: ../../mod/mitem.php:57 -msgid "Menu element added." -msgstr "Menyval tillagt." - -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." -msgstr "Kunde inte lägga till menyval." - -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" -msgstr "Hantera menyval" - -#: ../../mod/mitem.php:99 -msgid "Edit menu" -msgstr "Redigera meny" - -#: ../../mod/mitem.php:102 -msgid "Edit element" -msgstr "Redigera menyval" - -#: ../../mod/mitem.php:103 -msgid "Drop element" -msgstr "Ta bort menyval" - -#: ../../mod/mitem.php:104 -msgid "New element" -msgstr "Nytt menyval" - -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" -msgstr "Redigera den här menysamlaren" - -#: ../../mod/mitem.php:106 -msgid "Add menu element" -msgstr "Lägg till menyval" - -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" -msgstr "Ta bort det här menyvalet" - -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" -msgstr "Redigera det här menyvalet" - -#: ../../mod/mitem.php:131 -msgid "New Menu Element" -msgstr "Nytt menyval" - -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" -msgstr "Behörighet för menyval" - -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" -msgstr "Länktext" - -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" -msgstr "Länkens URL" - -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" -msgstr "Använd Red magic-auth om tillgängligt" - -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" -msgstr "Öppna länk i nytt fönster" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" -msgstr "Ordningstal i listan" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Större tal sjunker till botten av listan" - -#: ../../mod/mitem.php:154 -msgid "Menu item not found." -msgstr "Menyval hittas inte." - -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." -msgstr "Menyval borttaget." - -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." -msgstr "Menyval kunde inte tas bort." - -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" -msgstr "Redigera menyval" - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "ogiltig målsignatur" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ogiltigt profil-ID." - -#: ../../mod/profperm.php:105 -msgid "Profile Visibility Editor" -msgstr "Redigera profilsynlighet" - -#: ../../mod/profperm.php:109 -msgid "Click on a contact to add or remove." -msgstr "Klicka på en kontakt för att lägga till eller ta bort." - -#: ../../mod/profperm.php:118 -msgid "Visible To" -msgstr "Synlig för" - -#: ../../mod/profperm.php:134 ../../mod/connections.php:277 -msgid "All Connections" -msgstr "Alla kontakter" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Sammanhang skapat" - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Kunde inte skapa sammanhanget." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Sammanhanget uppdatarat." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Skapa ett sammanhang av kanaler." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Namn på sammanhang: " - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Medlemmar är synliga för andra kanaler" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Sammanhang borttaget." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Kunde inte ta bort sammanhang." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Sammanhangsredigering" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Medlemmar" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alla anslutna kanaler" - -#: ../../mod/group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Klicka på en kanal för att lägga till eller ta bort." - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Temainställningar uppdaterade." - -#: ../../mod/admin.php:92 ../../mod/admin.php:440 -msgid "Site" -msgstr "Server" - -#: ../../mod/admin.php:93 -msgid "Accounts" -msgstr "Konton" - -#: ../../mod/admin.php:94 ../../mod/admin.php:883 -msgid "Channels" -msgstr "Kanaler" - -#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 -msgid "Plugins" -msgstr "Tillägg" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 -msgid "Themes" -msgstr "Teman" - -#: ../../mod/admin.php:97 ../../mod/admin.php:540 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:98 -msgid "DB updates" -msgstr "Databasuppdateringar" - -#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 -msgid "Logs" -msgstr "Loggar" - -#: ../../mod/admin.php:118 -msgid "Plugin Features" -msgstr "Tilläggsfunktioner" - -#: ../../mod/admin.php:120 -msgid "User registrations waiting for confirmation" -msgstr "Användarregistreringar som behöver bekräftas" - -#: ../../mod/admin.php:197 -msgid "Message queues" -msgstr "Meddelandeköer" - -#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 -#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 -#: ../../mod/admin.php:1301 -msgid "Administration" -msgstr "Administration" - -#: ../../mod/admin.php:203 -msgid "Summary" -msgstr "Sammanfattning" - -#: ../../mod/admin.php:205 -msgid "Registered users" -msgstr "Registrerade användare" - -#: ../../mod/admin.php:207 ../../mod/admin.php:543 -msgid "Pending registrations" -msgstr "Pågående registreringar" - -#: ../../mod/admin.php:208 -msgid "Version" -msgstr "Version" - -#: ../../mod/admin.php:210 ../../mod/admin.php:544 -msgid "Active plugins" -msgstr "Aktiva tillägg" - -#: ../../mod/admin.php:360 -msgid "Site settings updated." -msgstr "Serverinställningar uppdaterade." - -#: ../../mod/admin.php:391 -msgid "No special theme for accessibility" -msgstr "Inget speciellt tema för tillgänglighet" - -#: ../../mod/admin.php:419 -msgid "Closed" -msgstr "Stängd" - -#: ../../mod/admin.php:420 -msgid "Requires approval" -msgstr "Kräver godkännande" - -#: ../../mod/admin.php:421 -msgid "Open" -msgstr "Öppen" - -#: ../../mod/admin.php:426 -msgid "Private" -msgstr "Privat" - -#: ../../mod/admin.php:427 -msgid "Paid Access" -msgstr "Betald åtkomst" - -#: ../../mod/admin.php:428 -msgid "Free Access" -msgstr "Fri åtkomst" - -#: ../../mod/admin.php:429 -msgid "Tiered Access" -msgstr "Uppdelad åtkomst" - -#: ../../mod/admin.php:442 ../../mod/register.php:189 -msgid "Registration" -msgstr "Registrering" - -#: ../../mod/admin.php:443 -msgid "File upload" -msgstr "Filuppladdning" - -#: ../../mod/admin.php:444 -msgid "Policies" -msgstr "Policyer" - -#: ../../mod/admin.php:449 -msgid "Site name" -msgstr "Servernamn" - -#: ../../mod/admin.php:450 -msgid "Banner/Logo" -msgstr "Banner/logga" - -#: ../../mod/admin.php:451 -msgid "Administrator Information" -msgstr "Administratörsinformation" - -#: ../../mod/admin.php:451 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinfo till sidadministratörer. Visas på sidinfosidan. BBCode kan användas här" - -#: ../../mod/admin.php:452 -msgid "System language" -msgstr "Systemspråk" - -#: ../../mod/admin.php:453 -msgid "System theme" -msgstr "Systemtema" - -#: ../../mod/admin.php:453 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Förvalt systemtema - kan åsidosättas i användarprofiler - ändra temainställningar" - -#: ../../mod/admin.php:454 -msgid "Mobile system theme" -msgstr "Mobilt systemtema" - -#: ../../mod/admin.php:454 -msgid "Theme for mobile devices" -msgstr "Tema för mobila enheter" - -#: ../../mod/admin.php:455 -msgid "Accessibility system theme" -msgstr "Systemtema för ökad tillgänglighet" - -#: ../../mod/admin.php:455 -msgid "Accessibility theme" -msgstr "Tillgänglighetstema" - -#: ../../mod/admin.php:456 -msgid "Channel to use for this website's static pages" -msgstr "Kanal att använda för den här webbplatsens statiska sidor" - -#: ../../mod/admin.php:456 -msgid "Site Channel" -msgstr "Sidkanal" - -#: ../../mod/admin.php:458 -msgid "Maximum image size" -msgstr "Maximal bildstorlek" - -#: ../../mod/admin.php:458 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximal storlek i byte för uppladdade bilder. Standard är 0, vilket innebär ingen storleksbegränsning." - -#: ../../mod/admin.php:459 -msgid "Register policy" -msgstr "Registreringspolicy" - -#: ../../mod/admin.php:460 -msgid "Access policy" -msgstr "Åtkomstpolicy" - -#: ../../mod/admin.php:461 -msgid "Register text" -msgstr "Registreringstext" - -#: ../../mod/admin.php:461 -msgid "Will be displayed prominently on the registration page." -msgstr "Visas tydligt på registreringssidan." - -#: ../../mod/admin.php:462 -msgid "Accounts abandoned after x days" -msgstr "Konto övergivet efter x dagar" - -#: ../../mod/admin.php:462 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Slösar inte systemresurser genom att fråga externa servrar efter övergivna konton. 0 innebär ingen tidsbegränsning." - -#: ../../mod/admin.php:463 -msgid "Allowed friend domains" -msgstr "Tillåtna vändomäner" - -#: ../../mod/admin.php:463 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Kommaseparerad lista med domäner som tillåts att upprätta ett vänförhållande med den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner." - -#: ../../mod/admin.php:464 -msgid "Allowed email domains" -msgstr "Tillåtna e-postdomäner" - -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Kommaseparerad lista med domäner som tillåts i e-postadresser för registreringar på den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner." - -#: ../../mod/admin.php:465 -msgid "Block public" -msgstr "Blockera offentlig åtkomst" - -#: ../../mod/admin.php:465 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Välj för att blockera åtkomst till alla personliga sidor som annars skulle vara offentliga på den här servern om man inte är inloggad." - -#: ../../mod/admin.php:466 -msgid "Force publish" -msgstr "Tvinga publicering" - -#: ../../mod/admin.php:466 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Välj för att tvinga alla profiler på den här servern att listas i serverkatalogen." - -#: ../../mod/admin.php:467 -msgid "Disable discovery tab" -msgstr "Inaktivera upptäck-fliken" - -#: ../../mod/admin.php:467 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Ta bort fliken i nätverksvyn med offentligt innehåll som hämtas från källor valda för den här servern." - -#: ../../mod/admin.php:468 -msgid "No login on Homepage" -msgstr "Ingen inloggning på hemsidan" - -#: ../../mod/admin.php:468 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Välj för att gömma inloggningsformuläret från serverns hemsida för oinloggade besökare (t.ex. när du lägger in hemsideinnehållet via serverkanalen)." - -#: ../../mod/admin.php:470 -msgid "Proxy user" -msgstr "Proxyanvändare" - -#: ../../mod/admin.php:471 -msgid "Proxy URL" -msgstr "Proxy-URL" - -#: ../../mod/admin.php:472 -msgid "Network timeout" -msgstr "Nätverkstimeout" - -#: ../../mod/admin.php:472 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Värde i sekunder. Sätt till 0 för obegränsat (ej rekommenderat)." - -#: ../../mod/admin.php:473 -msgid "Delivery interval" -msgstr "Leveransintervall" - -#: ../../mod/admin.php:473 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Fördröj leveransprocesser som görs i bakgrunden så här många sekunder för att reducera systembelastningen. Rekommenderat: 4-5 för delade värdar, 2-3 för virtuella privata servrar. 0-1 för stora dedikerade servrar." - -#: ../../mod/admin.php:474 -msgid "Poll interval" -msgstr "Hämtningsintervall" - -#: ../../mod/admin.php:474 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Fördröj hämtningsprocesser som görs i bakgrunden så här många sekunder för att reducera systembelastningen. Om 0 används leveransintervallet." - -#: ../../mod/admin.php:475 -msgid "Maximum Load Average" -msgstr "Maximal genomsnittsbelastning" - -#: ../../mod/admin.php:475 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximal systembelastning innan leverans- och hämtningsprocesser skjuts upp - standard är 50." - -#: ../../mod/admin.php:531 -msgid "No server found" -msgstr "Ingen server hittad" - -#: ../../mod/admin.php:538 ../../mod/admin.php:762 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:538 -msgid "for channel" -msgstr "för kanal" - -#: ../../mod/admin.php:538 -msgid "on server" -msgstr "på server" - -#: ../../mod/admin.php:538 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:559 -msgid "Update has been marked successful" -msgstr "Uppdatering har markerats som genomförd" - -#: ../../mod/admin.php:569 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Körning av %s misslyckades. Kontrollera systemloggarna." - -#: ../../mod/admin.php:572 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Uppdatering %s genomfördes utan problem." - -#: ../../mod/admin.php:576 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Uppdatering %s returnerade ingen status. Oklart om den lyckades." - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update function %s could not be found." -msgstr "Uppdateringsfunktion %s kunde inte hittas." - -#: ../../mod/admin.php:594 -msgid "No failed updates." -msgstr "Inga misslyckade uppdateringar." - -#: ../../mod/admin.php:598 -msgid "Failed Updates" -msgstr "Misslyckade uppdateringar" - -#: ../../mod/admin.php:600 -msgid "Mark success (if update was manually applied)" -msgstr "Markera som genomförd (om uppdateringen gjordes manuellt)" - -#: ../../mod/admin.php:601 -msgid "Attempt to execute this update step automatically" -msgstr "Försök att köra den här uppdateringen automatiskt" - -#: ../../mod/admin.php:627 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s användare blockerad/avblockerad" -msgstr[1] "%s användare blockerade/avblockerade" - -#: ../../mod/admin.php:634 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s användare borttagen" -msgstr[1] "%s användare borttagna" - -#: ../../mod/admin.php:665 -msgid "Account not found" -msgstr "Konto hittas inte" - -#: ../../mod/admin.php:676 -#, php-format -msgid "User '%s' deleted" -msgstr "Användare '%s' borttagen" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' unblocked" -msgstr "Användare '%s' avblockerad" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' blocked" -msgstr "Användare '%s' blockerad" - -#: ../../mod/admin.php:749 ../../mod/admin.php:761 -msgid "Users" -msgstr "Användare" - -#: ../../mod/admin.php:751 ../../mod/admin.php:885 -msgid "select all" -msgstr "välj alla" - -#: ../../mod/admin.php:752 -msgid "User registrations waiting for confirm" -msgstr "Användarregistreringar som inväntar bekräftelse" - -#: ../../mod/admin.php:753 -msgid "Request date" -msgstr "Ansökningsdatum" - -#: ../../mod/admin.php:754 -msgid "No registrations." -msgstr "Inga registreringar." - -#: ../../mod/admin.php:755 -msgid "Approve" -msgstr "Godkänn" - -#: ../../mod/admin.php:756 -msgid "Deny" -msgstr "Avslå" - -#: ../../mod/admin.php:758 ../../mod/connedit.php:339 -#: ../../mod/connedit.php:481 -msgid "Block" -msgstr "Blockera" - -#: ../../mod/admin.php:759 ../../mod/connedit.php:339 -#: ../../mod/connedit.php:481 -msgid "Unblock" -msgstr "Avblockera" - -#: ../../mod/admin.php:762 -msgid "Register date" -msgstr "Registreringsdatum" - -#: ../../mod/admin.php:762 -msgid "Last login" -msgstr "Senaste inloggning" - -#: ../../mod/admin.php:762 -msgid "Expires" -msgstr "Upphör att gälla" - -#: ../../mod/admin.php:762 -msgid "Service Class" -msgstr "Tjänsteklass" - -#: ../../mod/admin.php:764 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valda användare kommer att tas bort!\\n\\nAllt dessa användare har postat på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" - -#: ../../mod/admin.php:765 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Användaren {0} kommer att tas bort!\\n\\nAllt den här användaren har postat på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" - -#: ../../mod/admin.php:797 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channelss censored/uncensored" -msgstr[0] "%s kanal censurerad/avcensurerad" -msgstr[1] "%s kanaler censurerade/avcensurerade" - -#: ../../mod/admin.php:804 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanal borttagen" -msgstr[1] "%s kanaler borttagna" - -#: ../../mod/admin.php:823 -msgid "Channel not found" -msgstr "Kanal hittas inte" - -#: ../../mod/admin.php:834 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanalen '%s' togs bort" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' avcensurerad" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' censurerad" - -#: ../../mod/admin.php:887 -msgid "Censor" -msgstr "Censurera" - -#: ../../mod/admin.php:888 -msgid "Uncensor" -msgstr "Avcensurera" - -#: ../../mod/admin.php:891 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:891 ../../mod/profiles.php:337 -msgid "Address" -msgstr "Adress" - -#: ../../mod/admin.php:893 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valda kanaler kommer att tas bort!\\n\\nAllt som har postats i de kanalerna på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" - -#: ../../mod/admin.php:894 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanalen {0} kommer att tas bort!\\n\\nAllt som har postats i den här kanalen på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" - -#: ../../mod/admin.php:933 -#, php-format -msgid "Plugin %s disabled." -msgstr "Tillägg %s inaktiverat." - -#: ../../mod/admin.php:937 -#, php-format -msgid "Plugin %s enabled." -msgstr "Tillägg %s aktiverat." - -#: ../../mod/admin.php:947 ../../mod/admin.php:1149 -msgid "Disable" -msgstr "Inaktivera" - -#: ../../mod/admin.php:949 ../../mod/admin.php:1151 -msgid "Enable" -msgstr "Aktivera" - -#: ../../mod/admin.php:975 ../../mod/admin.php:1180 -msgid "Toggle" -msgstr "Växla" - -#: ../../mod/admin.php:983 ../../mod/admin.php:1190 -msgid "Author: " -msgstr "Författare:" - -#: ../../mod/admin.php:984 ../../mod/admin.php:1191 -msgid "Maintainer: " -msgstr "Underhållare:" - -#: ../../mod/admin.php:1113 -msgid "No themes found." -msgstr "Inga teman funna." - -#: ../../mod/admin.php:1172 -msgid "Screenshot" -msgstr "Skärmdump" - -#: ../../mod/admin.php:1220 -msgid "[Experimental]" -msgstr "[Experimentellt]" - -#: ../../mod/admin.php:1221 -msgid "[Unsupported]" -msgstr "[Utan support]" - -#: ../../mod/admin.php:1248 -msgid "Log settings updated." -msgstr "Logginställningar uppdaterade." - -#: ../../mod/admin.php:1304 -msgid "Clear" -msgstr "Rensa" - -#: ../../mod/admin.php:1310 -msgid "Debugging" -msgstr "Avlusning" - -#: ../../mod/admin.php:1311 -msgid "Log file" -msgstr "Loggfil" - -#: ../../mod/admin.php:1311 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Måste vara skrivbar för webbservern. Anges relativt Reds toppkatalog." - -#: ../../mod/admin.php:1312 -msgid "Log level" -msgstr "Loggnivå" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- välj -" - -#: ../../mod/home.php:89 -#, php-format -msgid "Welcome to %s" -msgstr "Välkommen till %s" - -#: ../../mod/setup.php:162 +#: ../../mod/setup.php:166 msgid "Red Matrix Server - Setup" msgstr "Red Matrix-server - inställningar" -#: ../../mod/setup.php:168 +#: ../../mod/setup.php:172 msgid "Could not connect to database." msgstr "Kunde inte ansluta till databasen." -#: ../../mod/setup.php:172 +#: ../../mod/setup.php:176 msgid "" "Could not connect to specified site URL. Possible SSL certificate or DNS " "issue." msgstr "Kunde inte ansluta till den angivna server-URL:en. Möjligt problem med SSL-certifikat eller DNS." -#: ../../mod/setup.php:179 +#: ../../mod/setup.php:183 msgid "Could not create table." msgstr "Kunde inte skapa tabell." -#: ../../mod/setup.php:185 +#: ../../mod/setup.php:189 msgid "Your site database has been installed." msgstr "Din serverdatabas har installerats." -#: ../../mod/setup.php:190 +#: ../../mod/setup.php:194 msgid "" -"You may need to import the file \"install/database.sql\" manually using " -"phpmyadmin or mysql." -msgstr "Du kan behöva importera filen \"install/database.sql\" manuellt med phpmyadmin eller mysql." +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Du kan behöva importera filen \"install/schema_xxx.sql\" manuellt med en databasklient." -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:641 +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Se filen \"install/INSTALL.txt\"." -#: ../../mod/setup.php:257 +#: ../../mod/setup.php:261 msgid "System check" msgstr "Systemkontroll" -#: ../../mod/setup.php:262 +#: ../../mod/setup.php:265 ../../mod/events.php:434 ../../mod/photos.php:868 +msgid "Next" +msgstr "Nästa" + +#: ../../mod/setup.php:266 msgid "Check again" msgstr "Kontrollera igen" -#: ../../mod/setup.php:284 +#: ../../mod/setup.php:289 msgid "Database connection" msgstr "Databasanslutning" -#: ../../mod/setup.php:285 +#: ../../mod/setup.php:290 msgid "" "In order to install Red Matrix we need to know how to connect to your " "database." msgstr "För att kunna installera Red Matrix behöver vi veta hur databasen ska anslutas." -#: ../../mod/setup.php:286 +#: ../../mod/setup.php:291 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Kontakta din servervärd eller administratör om du har frågor om de här inställningarna." -#: ../../mod/setup.php:287 +#: ../../mod/setup.php:292 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Databasen du anger nedan måste finnas. Om den inte gör det, skapa den innan du fortsätter." -#: ../../mod/setup.php:291 +#: ../../mod/setup.php:296 msgid "Database Server Name" msgstr "Databasserver" -#: ../../mod/setup.php:291 +#: ../../mod/setup.php:296 msgid "Default is localhost" msgstr "Standard är localhost" -#: ../../mod/setup.php:292 +#: ../../mod/setup.php:297 msgid "Database Port" msgstr "Databasport" -#: ../../mod/setup.php:292 +#: ../../mod/setup.php:297 msgid "Communication port number - use 0 for default" msgstr "Kommunikationsportnummer - använd 0 för standardinställning" -#: ../../mod/setup.php:293 +#: ../../mod/setup.php:298 msgid "Database Login Name" msgstr "Loginnamn till databas" -#: ../../mod/setup.php:294 +#: ../../mod/setup.php:299 msgid "Database Login Password" msgstr "Lösenord till databas" -#: ../../mod/setup.php:295 +#: ../../mod/setup.php:300 msgid "Database Name" msgstr "Databasnamn" -#: ../../mod/setup.php:297 ../../mod/setup.php:339 +#: ../../mod/setup.php:301 +msgid "Database Type" +msgstr "Databastyp" + +#: ../../mod/setup.php:303 ../../mod/setup.php:347 msgid "Site administrator email address" msgstr "Serveradministratörens e-postadress" -#: ../../mod/setup.php:297 ../../mod/setup.php:339 +#: ../../mod/setup.php:303 ../../mod/setup.php:347 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Ditt kontos e-postadress måste stämma med den här för att webbgränssnittet för administration ska kunna användas." -#: ../../mod/setup.php:298 ../../mod/setup.php:341 +#: ../../mod/setup.php:304 ../../mod/setup.php:349 msgid "Website URL" msgstr "Webbplatsens URL" -#: ../../mod/setup.php:298 ../../mod/setup.php:341 +#: ../../mod/setup.php:304 ../../mod/setup.php:349 msgid "Please use SSL (https) URL if available." msgstr "Ange en URL med SSL (https) om tillgängligt" -#: ../../mod/setup.php:301 ../../mod/setup.php:344 +#: ../../mod/setup.php:307 ../../mod/setup.php:352 msgid "Please select a default timezone for your website" msgstr "Välj en standardtidszon för din webbplats" -#: ../../mod/setup.php:328 +#: ../../mod/setup.php:335 msgid "Site settings" msgstr "Serverinställningar" -#: ../../mod/setup.php:387 +#: ../../mod/setup.php:395 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Kunde inte hitta en kommandoradsversion av PHP i webbserverns PATH." -#: ../../mod/setup.php:388 +#: ../../mod/setup.php:396 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron." msgstr "Om du inte har en kommandoradsversion av PHP installerad på servern kommer du inte att kunna köra bakgrundshämtning via cron." -#: ../../mod/setup.php:392 +#: ../../mod/setup.php:400 msgid "PHP executable path" msgstr "Sökväg till PHP-programmet" -#: ../../mod/setup.php:392 +#: ../../mod/setup.php:400 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Ange hela sökvägen till php-programfilen. Du kan lämna det här blankt för att fortsätta installationen." -#: ../../mod/setup.php:397 +#: ../../mod/setup.php:405 msgid "Command line PHP" msgstr "Kommandorads-PHP" -#: ../../mod/setup.php:406 +#: ../../mod/setup.php:414 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Kommandoradsversionen av PHP på ditt system har inte \"register_argc_argv\" aktiverat." -#: ../../mod/setup.php:407 +#: ../../mod/setup.php:415 msgid "This is required for message delivery to work." msgstr "Det här behövs för att meddelandeleverans ska fungera." -#: ../../mod/setup.php:409 +#: ../../mod/setup.php:417 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: ../../mod/setup.php:430 +#: ../../mod/setup.php:438 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Fel: \"openssl_pkey_new\"-funktionen på det här systemet kan inte generera kryptonycklar" -#: ../../mod/setup.php:431 +#: ../../mod/setup.php:439 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Om systemet kör Windows, se \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/setup.php:433 +#: ../../mod/setup.php:441 msgid "Generate encryption keys" msgstr "Generera kryptonycklar" -#: ../../mod/setup.php:440 +#: ../../mod/setup.php:448 msgid "libCurl PHP module" msgstr "PHP-modulen libCurl" -#: ../../mod/setup.php:441 +#: ../../mod/setup.php:449 msgid "GD graphics PHP module" msgstr "PHP-modulen GD graphics" -#: ../../mod/setup.php:442 +#: ../../mod/setup.php:450 msgid "OpenSSL PHP module" msgstr "PHP-modulen OpenSSL" -#: ../../mod/setup.php:443 -msgid "mysqli PHP module" -msgstr "PHP-modulen mysqli" +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" +msgstr "PHP-modulen mysqli eller postgres" -#: ../../mod/setup.php:444 +#: ../../mod/setup.php:452 msgid "mb_string PHP module" msgstr "PHP-modulen mb_string" -#: ../../mod/setup.php:445 +#: ../../mod/setup.php:453 msgid "mcrypt PHP module" msgstr "PHP-modulen mcrypt" -#: ../../mod/setup.php:450 ../../mod/setup.php:452 +#: ../../mod/setup.php:458 ../../mod/setup.php:460 msgid "Apache mod_rewrite module" msgstr "Apache-modulen mod_rewrite" -#: ../../mod/setup.php:450 +#: ../../mod/setup.php:458 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Fel: Apache-webbserverns mod-rewrite-modul krävs men är inte installerad." -#: ../../mod/setup.php:456 ../../mod/setup.php:459 +#: ../../mod/setup.php:464 ../../mod/setup.php:467 msgid "proc_open" msgstr "proc_open" -#: ../../mod/setup.php:456 +#: ../../mod/setup.php:464 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Fel: proc_open krävs men är antingen inte installerad eller har inaktiverats i php.ini" -#: ../../mod/setup.php:464 +#: ../../mod/setup.php:472 msgid "Error: libCURL PHP module required but not installed." msgstr "Fel: PHP-modulen libCURL krävs men är inte installerad." -#: ../../mod/setup.php:468 +#: ../../mod/setup.php:476 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Fel: PHP-modulen GD graphics med JPEG-stöd krävs men är inte installerad." -#: ../../mod/setup.php:472 +#: ../../mod/setup.php:480 msgid "Error: openssl PHP module required but not installed." msgstr "Fel: PHP-modulen openssl krävs men är inte installerad." -#: ../../mod/setup.php:476 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fel: PHP-modulen mysqli krävs men är inte installerad." +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Fel: en av PHP-modulerna mysqli eller postgres krävs men är inte installerad." -#: ../../mod/setup.php:480 +#: ../../mod/setup.php:488 msgid "Error: mb_string PHP module required but not installed." msgstr "Fel: PHP-modulen mb_string krävs men är inte installerad." -#: ../../mod/setup.php:484 +#: ../../mod/setup.php:492 msgid "Error: mcrypt PHP module required but not installed." msgstr "Fel: PHP-modulen mcrypt krävs men är inte installerad." -#: ../../mod/setup.php:500 +#: ../../mod/setup.php:508 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "Webbinstallationen måste kunna skapa filen \".htconfig.php\" i toppkatalogen på din webbserver men kan inte göra det." -#: ../../mod/setup.php:501 +#: ../../mod/setup.php:509 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Det är ofta en behörighetsinställning som gör att webbservern inte kan skriva filer i din katalog - även om du kan." -#: ../../mod/setup.php:502 +#: ../../mod/setup.php:510 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named .htconfig.php in your Red top folder." msgstr "Efter den här proceduren kommer vi att ge dig en text att spara i filen .htconfig.php i Reds toppkatalog." -#: ../../mod/setup.php:503 +#: ../../mod/setup.php:511 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Alternativt kan du hoppa över den här proceduren och göra en manuell installation. För instruktioner, se filen \"install/INSTALL.txt\"." -#: ../../mod/setup.php:506 +#: ../../mod/setup.php:514 msgid ".htconfig.php is writable" msgstr ".htconfig.php är skrivbar" -#: ../../mod/setup.php:516 +#: ../../mod/setup.php:524 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Red använder mallmotorn Smarty3 för att rendera webbvyerna. Smarty3 kompilerar mallar till PHP för att snabba upp renderingen." -#: ../../mod/setup.php:517 +#: ../../mod/setup.php:525 +#, php-format msgid "" "In order to store these compiled templates, the web server needs to have " -"write access to the directory view/tpl/smarty3/ under the Red top level " -"folder." -msgstr "För att kunna spara de här kompilerade mallarna behöver webbservern ha skrivrättigheter i katalogen view/tpl/smarty3/ under Reds toppkatalog." +"write access to the directory %s under the Red top level folder." +msgstr "För att spara de här kompilerade mallarna behöver webbservern ha skrivrättigheter till katalogen %s under Reds toppkatalog." -#: ../../mod/setup.php:518 ../../mod/setup.php:536 +#: ../../mod/setup.php:526 ../../mod/setup.php:544 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Försäkra dig om att användaren som din webbserver kör som (t.ex. www-data) har skrivrättigheter till den här katalogen." -#: ../../mod/setup.php:519 +#: ../../mod/setup.php:527 +#, php-format msgid "" "Note: as a security measure, you should give the web server write access to " -"view/tpl/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Observera: som en säkerhetsåtgärd bör du ge webbservern skrivrättigheter endast till view/tpl/smarty3 - inte till mallfilerna (.tpl) som den innehåller." +"%s only--not the template files (.tpl) that it contains." +msgstr "Observera: som en säkerhetsåtgärd bör du ge webbservern skrivrättighet endast för %s - inte för mallfilerna (.tpl) som finns där." -#: ../../mod/setup.php:522 -msgid "view/tpl/smarty3 is writable" -msgstr "view/tpl/smarty3 är skrivbar" +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" +msgstr "%s är skrivbar" -#: ../../mod/setup.php:535 +#: ../../mod/setup.php:543 msgid "" "Red uses the store directory to save uploaded files. The web server needs to" " have write access to the store directory under the Red top level folder" msgstr "Red använder katalogen store för att spara uppladdade filer. Webbservern behöver ha skrivrättigheter till katalogen store under Reds toppkatalog." -#: ../../mod/setup.php:539 +#: ../../mod/setup.php:547 msgid "store is writable" msgstr "store är skrivbar" -#: ../../mod/setup.php:554 +#: ../../mod/setup.php:577 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "SSL-certifikatet kan inte valideras. Fixa certifikatet eller inaktivera https-åtkomst till den här servern." -#: ../../mod/setup.php:555 +#: ../../mod/setup.php:578 msgid "" -"If you use https access, you MUST use a certification instance known by all " -"internet browsers. You MUST NOT use self-signed certificates!" -msgstr "Om du använder https-åtkomst MÅSTE du använda ett certifikat som känns igen av alla webbläsare. Du FÅR INTE använda självsignerade certifikat!" +"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 "Om du har https-åtkomst till din webbplats eller tillåter anslutningar till TCP-port 443 (https-porten) MÅSTE du använda ett certifikat som kan verifieras av webbläsare. Du FÅR INTE använda självsignerade certifikat!" -#: ../../mod/setup.php:556 +#: ../../mod/setup.php:579 msgid "" "This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub. If your" -msgstr "Den här restriktionen finns för att offentliga inlägg från dig till exempel kan innehålla referenser till bilder på din egen hubb. Om ditt" +"example contain references to images on your own hub." +msgstr "Restriktionen finns eftersom offentliga inlägg från dig kan innehålla till exempel referenser till bilder på din egen hubb." -#: ../../mod/setup.php:557 +#: ../../mod/setup.php:580 msgid "" -"certificate is not known by the internet browser of users they get a warning" -" message complaining about some security issues. Although" -msgstr "certifikat inte känns igen av användares webbläsare får de ett varningsmeddelande om säkerhetsproblem. Även om" +"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 "Om ditt certifikat inte känns igen kommer medlemmar på andra webbplatser (som själv kan ha giltiga certifikat) att få en varning på sin egen webbplats om säkerhetsproblem." -#: ../../mod/setup.php:558 +#: ../../mod/setup.php:581 msgid "" -"these complains are not the real truth - there are no security issues with " -"your encryption! - the users may be confused, nerved or even" -msgstr "de här varningarna inte är helt sanna - det är inga säkerhetsproblem med din kryptering! - så kan användare bli förvirrade, nervösa eller" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Detta kan orsaka problem med användbarheten (inte bara på din egen server) så vi måste trycka på det här kravet." -#: ../../mod/setup.php:559 +#: ../../mod/setup.php:582 msgid "" -"worse may become scared about redmatrix having security issues. Use one of " -"the free certification instances!" -msgstr "ännu värre, bli skrämda att redmatrix skulle ha säkerhetsproblem. Använd en av utfärdarna av gratis certifikat." +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Det finns leverantörer som utfärdar gratis certifikat som känns igen av webbläsare." -#: ../../mod/setup.php:561 +#: ../../mod/setup.php:584 msgid "SSL certificate validation" msgstr "SSL-certifikatvalidering" -#: ../../mod/setup.php:568 +#: ../../mod/setup.php:590 msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "URL rewrite i .htaccess fungerar inte. Kontrollera din serverkonfiguration." +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite i .htaccess fungerar inte. Kolla din serverkonfiguration. Test: " -#: ../../mod/setup.php:570 +#: ../../mod/setup.php:592 msgid "Url rewrite is working" msgstr "URL rewrite fungerar" -#: ../../mod/setup.php:580 +#: ../../mod/setup.php:602 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "Databaskonfigurationsfilen \".htconfig.php\" kunde inte skrivas. Använd den bifogade texten för att skapa en konfigurationsfil i din webbservers rot." -#: ../../mod/setup.php:604 +#: ../../mod/setup.php:626 msgid "Errors encountered creating database tables." msgstr "Fel inträffade när databastabeller skulle skapas." -#: ../../mod/setup.php:639 +#: ../../mod/setup.php:661 msgid "

    What next

    " msgstr "

    Nästa steg

    " -#: ../../mod/setup.php:640 +#: ../../mod/setup.php:662 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." msgstr "VIKTIGT: Du behöver ställa in en schemalagd för hämtningsrutinen [manuellt]" -#: ../../mod/directory.php:148 ../../mod/profiles.php:561 -#: ../../mod/dirprofile.php:98 -msgid "Age: " -msgstr "Ålder:" - -#: ../../mod/directory.php:151 ../../mod/dirprofile.php:101 -msgid "Gender: " -msgstr "Kön:" - -#: ../../mod/directory.php:212 -msgid "Finding:" -msgstr "Sökning efter:" - -#: ../../mod/directory.php:220 -msgid "next page" -msgstr "nästa sida" - -#: ../../mod/directory.php:220 -msgid "previous page" -msgstr "föregående sida" - -#: ../../mod/directory.php:227 -msgid "No entries (some entries may be hidden)." -msgstr "Inga resultat (vissa resultat kan vara dolda)." - -#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 -msgid "Remote privacy information not available." -msgstr "Icke-lokal integritetsinformation är inte tillgänglig" - -#: ../../mod/lockview.php:45 -msgid "Visible to:" -msgstr "Synlig för:" - -#: ../../mod/connedit.php:49 ../../mod/connections.php:37 -msgid "Could not access contact record." -msgstr "Kunde inte komma åt kontaktuppgifter." - -#: ../../mod/connedit.php:63 ../../mod/connections.php:51 -msgid "Could not locate selected profile." -msgstr "Kunde inte hitta vald profil." - -#: ../../mod/connedit.php:107 ../../mod/connections.php:94 -msgid "Connection updated." -msgstr "Kontakt uppdaterad." - -#: ../../mod/connedit.php:109 ../../mod/connections.php:96 -msgid "Failed to update connection record." -msgstr "Misslyckades att uppdatera kontaktuppgifter." - -#: ../../mod/connedit.php:210 -msgid "Could not access address book record." -msgstr "Kunde inte komma åt adressboksuppgifter." - -#: ../../mod/connedit.php:224 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Uppdatering misslyckades - kanalen är inte tillgänglig." - -#: ../../mod/connedit.php:231 -msgid "Channel has been unblocked" -msgstr "Kanalen är inte längre blockerad" - -#: ../../mod/connedit.php:232 -msgid "Channel has been blocked" -msgstr "Kanalen har blockerats" - -#: ../../mod/connedit.php:236 ../../mod/connedit.php:248 -#: ../../mod/connedit.php:260 ../../mod/connedit.php:272 -#: ../../mod/connedit.php:287 -msgid "Unable to set address book parameters." -msgstr "Kunde inte ställa in adressboksparametrar." - -#: ../../mod/connedit.php:243 -msgid "Channel has been unignored" -msgstr "Kanalen ignoreras inte längre" - -#: ../../mod/connedit.php:244 -msgid "Channel has been ignored" -msgstr "Kanalen har ignorerats" - -#: ../../mod/connedit.php:255 -msgid "Channel has been unarchived" -msgstr "Kanalen arkiveras inte längre" - -#: ../../mod/connedit.php:256 -msgid "Channel has been archived" -msgstr "Kanalen har arkiverats" - -#: ../../mod/connedit.php:267 -msgid "Channel has been unhidden" -msgstr "Kanalen döljs inte längre" - -#: ../../mod/connedit.php:268 -msgid "Channel has been hidden" -msgstr "Kanalen har dolts" - -#: ../../mod/connedit.php:282 -msgid "Channel has been approved" -msgstr "Kanalen har godkänts" - -#: ../../mod/connedit.php:283 -msgid "Channel has been unapproved" -msgstr "Kanalen är inte godkänd längre" - -#: ../../mod/connedit.php:301 -msgid "Connection has been removed." -msgstr "Kontakten har tagits bort." - -#: ../../mod/connedit.php:321 +#: ../../mod/siteinfo.php:90 #, php-format -msgid "View %s's profile" -msgstr "Visa %ss profil" +msgid "Version %s" +msgstr "Version %s" -#: ../../mod/connedit.php:325 -msgid "Refresh Permissions" -msgstr "Uppdatera behörigheter" +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" +msgstr "Installerade tillägg/moduler/appar:" -#: ../../mod/connedit.php:328 -msgid "Fetch updated permissions" -msgstr "Hämta uppdaterade behörigheter" +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" +msgstr "Inga installerade tillägg/moduler/appar" -#: ../../mod/connedit.php:332 -msgid "Recent Activity" -msgstr "Senaste aktiviteten" +#: ../../mod/siteinfo.php:132 +msgid "Red" +msgstr "Red" -#: ../../mod/connedit.php:335 -msgid "View recent posts and comments" -msgstr "Visa de senaste inläggen och kommentarerna" +#: ../../mod/siteinfo.php:133 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Det här är en hubb som ingår i Red Matrix - ett globalt samverkande nätverk av decentraliserade webbplatser med bättre integritetskydd." -#: ../../mod/connedit.php:342 -msgid "Block or Unblock this connection" -msgstr "Blockera eller häv blockering av den här kontakten" +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" +msgstr "Kör på webbutrymmet" -#: ../../mod/connedit.php:346 ../../mod/connedit.php:482 -msgid "Unignore" -msgstr "Sluta att ignorera" +#: ../../mod/siteinfo.php:138 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "Besök GetZot.com lära dig mer om Red Matrix." -#: ../../mod/connedit.php:346 ../../mod/connedit.php:482 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorera" +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" +msgstr "Buggrapporter och problem: besök" -#: ../../mod/connedit.php:349 -msgid "Ignore or Unignore this connection" -msgstr "Ignorera eller sluta att ignorera den här kontakten" +#: ../../mod/siteinfo.php:142 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Förslag, uppskattning, etc. - maila \"redmatrix\" at librelist - dot com" -#: ../../mod/connedit.php:352 -msgid "Unarchive" -msgstr "Sluta att arkivera" +#: ../../mod/siteinfo.php:144 +msgid "Site Administrators" +msgstr "Serveradministratörer" -#: ../../mod/connedit.php:352 -msgid "Archive" -msgstr "Arkivera" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Puffa/stöt till" -#: ../../mod/connedit.php:355 -msgid "Archive or Unarchive this connection" -msgstr "Arkivera eller sluta att arkivera den här kontakten" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "puffa, stöt till eller gör andra saker mot någon" -#: ../../mod/connedit.php:358 -msgid "Unhide" -msgstr "Sluta att dölja" +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Mottagare" -#: ../../mod/connedit.php:358 -msgid "Hide" -msgstr "Dölj" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Välj vad du önskar göra med mottagaren" -#: ../../mod/connedit.php:361 -msgid "Hide or Unhide this connection" -msgstr "Dölj eller sluta att dölja den här kontakten" +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Gör det här inlägget privat" -#: ../../mod/connedit.php:368 -msgid "Delete this connection" -msgstr "Ta bort den här kontakten" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Tillåt anslutning av applikation" -#: ../../mod/connedit.php:401 -msgid "Unknown" -msgstr "Okända" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Återgå till din applikation och ange den här säkerhetskoden:" -#: ../../mod/connedit.php:411 ../../mod/connedit.php:440 -msgid "Approve this connection" -msgstr "Godkänn den här kontakten" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Logga in för att fortsätta." -#: ../../mod/connedit.php:411 -msgid "Accept connection to allow communication" -msgstr "Acceptera kontakten för att tillåta kommunikation" +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?" -#: ../../mod/connedit.php:427 -msgid "Automatic Permissions Settings" -msgstr "Automatiska behörighetsinställningar" +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Post inte tillgänglig." -#: ../../mod/connedit.php:427 +#: ../../mod/probe.php:23 ../../mod/probe.php:29 #, php-format -msgid "Connections: settings for %s" -msgstr "Kontakter: inställningar för %s" +msgid "Fetching URL returns error: %1$s" +msgstr "Hämtning av URL returnerade fel: %1$s" -#: ../../mod/connedit.php:431 -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 "När en kanal presenterar sig för dig kommer alla behörigheter här att gälla för den nya kontakten automatiskt och presentationen att godkännas. Lämna den här sidan om du inte önskar använda den här funktionen." - -#: ../../mod/connedit.php:433 -msgid "Slide to adjust your degree of friendship" -msgstr "Dra för att justera er vänskapsnivå" - -#: ../../mod/connedit.php:439 -msgid "inherited" -msgstr "ärvd" - -#: ../../mod/connedit.php:441 -msgid "Connection has no individual permissions!" -msgstr "Kontakten har inga individuella behörigheter!" - -#: ../../mod/connedit.php:442 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Det här kan vara lämpligt beroende på dina integritetsinställningar, men du vill kanske se över de \"Avancerade inställningarna\"." - -#: ../../mod/connedit.php:444 -msgid "Profile Visibility" -msgstr "Profilsynlighet" - -#: ../../mod/connedit.php:445 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Välj profilen som du vill ska synas när %s ser din profil på ett säkert sätt." - -#: ../../mod/connedit.php:446 -msgid "Contact Information / Notes" -msgstr "Kontaktinformation / anteckningar" - -#: ../../mod/connedit.php:447 -msgid "Edit contact notes" -msgstr "Redigera anteckningar för kontakten" - -#: ../../mod/connedit.php:449 -msgid "Their Settings" -msgstr "Deras inställningar" - -#: ../../mod/connedit.php:450 -msgid "My Settings" -msgstr "Mina inställningar" - -#: ../../mod/connedit.php:452 -msgid "Forum Members" -msgstr "Forummedlemmar" - -#: ../../mod/connedit.php:453 -msgid "Soapbox" -msgstr "Talarstol" - -#: ../../mod/connedit.php:454 -msgid "Full Sharing (typical social network permissions)" -msgstr "Full delning (typiska behörigheter för sociala nätverk)" - -#: ../../mod/connedit.php:455 -msgid "Cautious Sharing " -msgstr "Försiktig delning" - -#: ../../mod/connedit.php:456 -msgid "Follow Only" -msgstr "Följ endast" - -#: ../../mod/connedit.php:457 -msgid "Individual Permissions" -msgstr "Individuella behörigheter" - -#: ../../mod/connedit.php:458 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Vissa behörigheter kan ärvas från din kanals integritetsinställningar, vilka har högre prioritet än individuella inställningar. Ändring av de ärvda inställningarna på den här sidan har ingen effekt." - -#: ../../mod/connedit.php:459 -msgid "Advanced Permissions" -msgstr "Avancerade behörighetsinställningar" - -#: ../../mod/connedit.php:460 -msgid "Simple Permissions (select one and submit)" -msgstr "Enkla behörighetsinställningar (välj en och spara)" - -#: ../../mod/connedit.php:464 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Besök %ss profil - %s" - -#: ../../mod/connedit.php:465 -msgid "Block/Unblock contact" -msgstr "Blockera/häv blockering av kontakt" - -#: ../../mod/connedit.php:466 -msgid "Ignore contact" -msgstr "Ignorera kontakt" - -#: ../../mod/connedit.php:467 -msgid "Repair URL settings" -msgstr "Reparera URL-inställningar" - -#: ../../mod/connedit.php:468 -msgid "View conversations" -msgstr "Visa konversationer" - -#: ../../mod/connedit.php:470 -msgid "Delete contact" -msgstr "Ta bort kontakt" - -#: ../../mod/connedit.php:473 -msgid "Last update:" -msgstr "Senaste uppdatering:" - -#: ../../mod/connedit.php:475 -msgid "Update public posts" -msgstr "Uppdatera offentliga inlägg" - -#: ../../mod/connedit.php:477 -msgid "Update now" -msgstr "Uppdatera nu" - -#: ../../mod/connedit.php:483 -msgid "Currently blocked" -msgstr "Blockerad" - -#: ../../mod/connedit.php:484 -msgid "Currently ignored" -msgstr "Ignorerad" - -#: ../../mod/connedit.php:485 -msgid "Currently archived" -msgstr "Arkiverad" - -#: ../../mod/connedit.php:486 -msgid "Currently pending" -msgstr "Inväntar svar" - -#: ../../mod/connedit.php:487 -msgid "Hide this contact from others" -msgstr "Dölj den här kontakten för andra" - -#: ../../mod/connedit.php:487 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Svar/gilla-reaktioner på dina offentliga inlägg kan fortfarande synas" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "Hjälp för den här funktionen" - -#: ../../mod/layouts.php:84 -msgid "Layout Name" -msgstr "Layoutnamn" - -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Hjälp:" - -#: ../../mod/help.php:69 ../../index.php:223 -msgid "Not Found" -msgstr "Hittas inte" - -#: ../../mod/help.php:72 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/block.php:75 ../../index.php:226 -msgid "Page not found." -msgstr "Sidan hittas inte." - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Vi drabbades av ett problem vid inloggningen med OpenID:t du uppgav. Kontrollera att ID:t är korrekt stavat." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Felmeddelandet var:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Autentisering misslyckades." - -#: ../../mod/rmagic.php:78 -msgid "Remote Authentication" -msgstr "Fjärrautentisering." - -#: ../../mod/rmagic.php:79 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Ange din kanaladress (t.ex. kanal@example.com)" - -#: ../../mod/rmagic.php:80 -msgid "Authenticate" -msgstr "Autentisera" - -#: ../../mod/page.php:35 ../../mod/block.php:27 +#: ../../mod/block.php:27 ../../mod/page.php:33 msgid "Invalid item." msgstr "Ogiltig post." -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Ingen sådan grupp" - -#: ../../mod/network.php:119 -msgid "Search Results For:" -msgstr "Sökresultat för:" - -#: ../../mod/network.php:173 -msgid "Collection is empty" -msgstr "Sammanhanget är tomt" - -#: ../../mod/network.php:181 -msgid "Collection: " -msgstr "Sammanhang: " - -#: ../../mod/network.php:194 -msgid "Connection: " -msgstr "Kontakt:" - -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "Ogiltig kontakt." - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 -#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 -msgid "Profile not found." -msgstr "Profil hittades inte." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil borttagen." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Ny profil skapad." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profil inte tillgänglig för kloning." - -#: ../../mod/profiles.php:178 -msgid "Profile Name is required." -msgstr "Profilnamn krävs." - -#: ../../mod/profiles.php:294 -msgid "Marital Status" -msgstr "Civilstånd" - -#: ../../mod/profiles.php:298 -msgid "Romantic Partner" -msgstr "Romantisk partner" - -#: ../../mod/profiles.php:302 -msgid "Likes" -msgstr "Gillar" - -#: ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "Ogillar" - -#: ../../mod/profiles.php:310 -msgid "Work/Employment" -msgstr "Arbete/sysselsättning" - -#: ../../mod/profiles.php:313 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:317 -msgid "Political Views" -msgstr "Politisk åskådning" - -#: ../../mod/profiles.php:321 -msgid "Gender" -msgstr "Kön" - -#: ../../mod/profiles.php:325 -msgid "Sexual Preference" -msgstr "Sexuell preferens" - -#: ../../mod/profiles.php:329 -msgid "Homepage" -msgstr "Hemsida" - -#: ../../mod/profiles.php:333 -msgid "Interests" -msgstr "Intressen" - -#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31 -msgid "Location" -msgstr "Plats" - -#: ../../mod/profiles.php:427 -msgid "Profile updated." -msgstr "Profil uppdaterad." - -#: ../../mod/profiles.php:482 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Dölj din kontakt-/vänlista för de som ser den här profilen" - -#: ../../mod/profiles.php:505 -msgid "Edit Profile Details" -msgstr "Redigera profildetaljer" - -#: ../../mod/profiles.php:507 -msgid "View this profile" -msgstr "Visa den här profilen" - -#: ../../mod/profiles.php:508 -msgid "Change Profile Photo" -msgstr "Byt profilfoto" - -#: ../../mod/profiles.php:509 -msgid "Create a new profile using these settings" -msgstr "Skapa en ny profil utifrån de här inställningarna" - -#: ../../mod/profiles.php:510 -msgid "Clone this profile" -msgstr "Klona den här profilen" - -#: ../../mod/profiles.php:511 -msgid "Delete this profile" -msgstr "Ta bort den här profilen" - -#: ../../mod/profiles.php:512 -msgid "Profile Name:" -msgstr "Profilnamn:" - -#: ../../mod/profiles.php:513 -msgid "Your Full Name:" -msgstr "Ditt fulllständiga namn:" - -#: ../../mod/profiles.php:514 -msgid "Title/Description:" -msgstr "Titel/beskrivning:" - -#: ../../mod/profiles.php:515 -msgid "Your Gender:" -msgstr "Ditt kön:" - -#: ../../mod/profiles.php:516 -#, php-format -msgid "Birthday (%s):" -msgstr "Födelsedag (%s):" - -#: ../../mod/profiles.php:517 -msgid "Street Address:" -msgstr "Gatuadress:" - -#: ../../mod/profiles.php:518 -msgid "Locality/City:" -msgstr "Ort:" - -#: ../../mod/profiles.php:519 -msgid "Postal/Zip Code:" -msgstr "Postnummer:" - -#: ../../mod/profiles.php:520 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:521 -msgid "Region/State:" -msgstr "Region:" - -#: ../../mod/profiles.php:522 -msgid " Marital Status:" -msgstr " Civilstånd:" - -#: ../../mod/profiles.php:523 -msgid "Who: (if applicable)" -msgstr "Vem: (om tillämpligt)" - -#: ../../mod/profiles.php:524 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exempel: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:525 -msgid "Since [date]:" -msgstr "Sedan [datum]" - -#: ../../mod/profiles.php:527 -msgid "Homepage URL:" -msgstr "Hemsideadress:" - -#: ../../mod/profiles.php:530 -msgid "Religious Views:" -msgstr "Religion/livsåskådning:" - -#: ../../mod/profiles.php:531 -msgid "Keywords:" -msgstr "Nyckelord:" - -#: ../../mod/profiles.php:534 -msgid "Example: fishing photography software" -msgstr "Exempel: fiske fotografering mjukvara" - -#: ../../mod/profiles.php:535 -msgid "Used in directory listings" -msgstr "Används i kataloglistningar" - -#: ../../mod/profiles.php:536 -msgid "Tell us about yourself..." -msgstr "Beskriv dig själv..." - -#: ../../mod/profiles.php:537 -msgid "Hobbies/Interests" -msgstr "Fritidssysselsättning/intressen" - -#: ../../mod/profiles.php:538 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformation och sociala nätverk" - -#: ../../mod/profiles.php:539 -msgid "My other channels" -msgstr "Mina andra kanaler" - -#: ../../mod/profiles.php:540 -msgid "Musical interests" -msgstr "Musikintressen" - -#: ../../mod/profiles.php:541 -msgid "Books, literature" -msgstr "Böcker, litteratur" - -#: ../../mod/profiles.php:542 -msgid "Television" -msgstr "Tv" - -#: ../../mod/profiles.php:543 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/kultur/underhållning" - -#: ../../mod/profiles.php:544 -msgid "Love/romance" -msgstr "Kärlek/romantik" - -#: ../../mod/profiles.php:545 -msgid "Work/employment" -msgstr "Arbete/sysselsättning" - -#: ../../mod/profiles.php:546 -msgid "School/education" -msgstr "Skola/utbildning" - -#: ../../mod/profiles.php:551 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Det här är din offentliga profil.
    Den kan ses av vem som helst med tillgång till Internet." - -#: ../../mod/profiles.php:600 -msgid "Edit/Manage Profiles" -msgstr "Redigera/hantera profiler" - -#: ../../mod/profiles.php:601 -msgid "Add profile things" -msgstr "Lägg till profilsaker" - -#: ../../mod/profiles.php:602 -msgid "Include desirable objects in your profile" -msgstr "Inkludera fina prylar i din profil" - -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Den här servern är inte en katalogserver" +#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "Kanalen hittas inte." + +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "Sidan hittas inte." #: ../../mod/sources.php:32 msgid "Failed to create source. No channel selected." @@ -6250,7 +4659,7 @@ msgid "Leave blank to import all public content" msgstr "Lämna blankt för att importera allt offentligt innehåll" #: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:110 +#: ../../mod/new_channel.php:112 msgid "Channel Name" msgstr "Kanalnamn" @@ -6274,127 +4683,1045 @@ msgstr "Källa borttagen" msgid "Unable to remove source." msgstr "Kunde inte ta bort källa." -#: ../../mod/blocks.php:66 +#: ../../mod/blocks.php:99 msgid "Block Name" msgstr "Blocknamn" -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Hubb hittades inte." +#: ../../mod/search.php:13 ../../mod/directory.php:15 ../../mod/photos.php:458 +#: ../../mod/display.php:9 ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Offentlig behörighet saknas." -#: ../../mod/chat.php:19 ../../mod/channel.php:25 +#: ../../mod/directory.php:161 +msgid "Gender: " +msgstr "Kön:" + +#: ../../mod/directory.php:163 +msgid "Status: " +msgstr "Status: " + +#: ../../mod/directory.php:165 +msgid "Homepage: " +msgstr "Hemsida: " + +#: ../../mod/directory.php:168 +msgid "Hometown: " +msgstr "Hemort: " + +#: ../../mod/directory.php:170 +msgid "About: " +msgstr "Om: " + +#: ../../mod/directory.php:225 +msgid "Public Forum:" +msgstr "Offentligt forum:" + +#: ../../mod/directory.php:228 +msgid "Keywords: " +msgstr "Nyckelord: " + +#: ../../mod/directory.php:268 +msgid "Finding:" +msgstr "Sökning efter:" + +#: ../../mod/directory.php:273 +msgid "next page" +msgstr "nästa sida" + +#: ../../mod/directory.php:273 +msgid "previous page" +msgstr "föregående sida" + +#: ../../mod/directory.php:290 +msgid "No entries (some entries may be hidden)." +msgstr "Inga resultat (vissa resultat kan vara dolda)." + +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon." + +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Välj huruvida du accepterar användarvillkoren. Registrering misslyckades." + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Lösenorden stämmer inte överens." + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrering lyckades. Kontrollera din e-post för valideringsinstruktioner." + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Din registrering väntar på att bli godkänd av serverägaren." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Din registrering kan inte behandlas." + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Registrering på den här servern/hubben måste godkännas." + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Skapa konto på en annan ansluten server/hubb" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Antal dagliga registreringar som tillåts på den här servern har överskridits. Försök igen i morgon." + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "användarvillkor" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Jag accepterar den här webbplatsens %s" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Jag är över 13 år och accepterar den här webbplatsens %s" + +#: ../../mod/register.php:207 ../../mod/admin.php:413 +msgid "Registration" +msgstr "Registrering" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Medlemskap på den här servern kan endast fås genom inbjudan." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Ange din inbjudningskod" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Din e-postadress" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Välj ett lösenord" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Ange lösenordet igen" + +#: ../../mod/events.php:81 +msgid "Event can not end before it has started." +msgstr "Händelser kan inte sluta innan de börjat." + +#: ../../mod/events.php:86 +msgid "Event title and start time are required." +msgstr "Händelsen behöver titel och starttid." + +#: ../../mod/events.php:100 +msgid "Event not found." +msgstr "Händelsen hittades inte." + +#: ../../mod/events.php:364 +msgid "l, F j" +msgstr "l, j F" + +#: ../../mod/events.php:386 +msgid "Edit event" +msgstr "Redigera händelse" + +#: ../../mod/events.php:432 +msgid "Create New Event" +msgstr "Skapa ny händelse" + +#: ../../mod/events.php:433 ../../mod/photos.php:859 +msgid "Previous" +msgstr "Föregående" + +#: ../../mod/events.php:560 +msgid "Event details" +msgstr "Detaljer för händelse" + +#: ../../mod/events.php:561 +msgid "Starting date and Title are required." +msgstr "Startdatum och titel är obligatoriska." + +#: ../../mod/events.php:565 +msgid "Event Starts:" +msgstr "Händelsen börjar:" + +#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" +msgstr "Behövs" + +#: ../../mod/events.php:571 +msgid "Finish date/time is not known or not relevant" +msgstr "Slutdatum/tid är okänt eller inte relevant" + +#: ../../mod/events.php:573 +msgid "Event Finishes:" +msgstr "Händelsen slutar:" + +#: ../../mod/events.php:575 +msgid "Adjust for viewer timezone" +msgstr "Justera för betraktarens tidszon" + +#: ../../mod/events.php:577 +msgid "Description:" +msgstr "Beskrivning:" + +#: ../../mod/events.php:581 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:583 +msgid "Share this event" +msgstr "Dela den här händelsen" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Offentliga servrar" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in" +" the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "De listade servrarna tillåter offentlig registrering i Red Matrix. Alla servrar i matrisen är sammankopplade, så medlemskap i en av dem medför medlemskap i matrisen som helhet. Vissa servrar kan kräva abonnemang eller erbjuda uppdelade tjänstenivåer. Leverantörslänkarna kan ge ytterligare detaljer." + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "Server-URL" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Åtkomsttyp" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Registreringspolicy" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 msgid "You must be logged in to see this page." msgstr "Du måste vara inloggad för att se den här sidan." -#: ../../mod/chat.php:166 +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Otillräckliga behörigheter. Förfrågan omdirigerad till profilsidan." + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Välj en bokmärkeskatalog" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Spara bokmärke" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "Bokmärkets URL" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Beskrivning" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Eller ange nytt namn på bokmärkeskatalog" + +#: ../../mod/chat.php:167 msgid "Room not found" msgstr "Rum hittas inte" -#: ../../mod/chat.php:176 +#: ../../mod/chat.php:178 msgid "Leave Room" msgstr "Lämna rummet" -#: ../../mod/chat.php:177 +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Ta bort det här rummet" + +#: ../../mod/chat.php:180 msgid "I am away right now" msgstr "Jag är borta för tillfället" -#: ../../mod/chat.php:178 +#: ../../mod/chat.php:181 msgid "I am online" msgstr "Jag är online" -#: ../../mod/chat.php:180 +#: ../../mod/chat.php:183 msgid "Bookmark this room" msgstr "Bokmärk det här rummet" -#: ../../mod/chat.php:204 ../../mod/chat.php:226 +#: ../../mod/chat.php:207 ../../mod/chat.php:229 msgid "New Chatroom" msgstr "Nytt chattrum" -#: ../../mod/chat.php:205 +#: ../../mod/chat.php:208 msgid "Chatroom Name" msgstr "Namn på chattrum" -#: ../../mod/chat.php:222 +#: ../../mod/chat.php:225 #, php-format msgid "%1$s's Chatrooms" msgstr "%1$ss chattrum" -#: ../../mod/siteinfo.php:57 +#: ../../mod/subthread.php:103 #, php-format -msgid "Version %s" -msgstr "Version %s" +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s följer %2$ss %3$s" -#: ../../mod/siteinfo.php:76 -msgid "Installed plugins/addons/apps:" -msgstr "Installerade tillägg/moduler/appar:" +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Borta" -#: ../../mod/siteinfo.php:89 -msgid "No installed plugins/addons/apps" -msgstr "Inga installerade tillägg/moduler/appar" +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" -#: ../../mod/siteinfo.php:97 -msgid "Red" -msgstr "Red" +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Logga in." -#: ../../mod/siteinfo.php:98 +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Ingen sådan grupp" + +#: ../../mod/network.php:118 +msgid "Search Results For:" +msgstr "Sökresultat för:" + +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "Kretsen är tom" + +#: ../../mod/network.php:180 +msgid "Collection: " +msgstr "Krets: " + +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "Kontakt:" + +#: ../../mod/network.php:196 +msgid "Invalid connection." +msgstr "Ogiltig kontakt." + +#: ../../mod/removeme.php:29 msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralised privacy enhanced websites." -msgstr "Det här är en hubb som hör till Red Matrix - ett globalt samverkande nätverk av decentraliserade integritetsstärkta webbplatser." +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Borttagning av kanal tillåts inte inom 48 timmar efter att kontolösenordet har ändrats." -#: ../../mod/siteinfo.php:101 -msgid "Running at web location" -msgstr "Kör på webbutrymmet" +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Ta bort den här kanalen" -#: ../../mod/siteinfo.php:102 +#: ../../mod/removeme.php:58 msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "Besök GetZot.com lära dig mer om Red Matrix." +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Det här kommer att ta bort den här kanalen helt från nätverket. När det är gjort går det inte att återställa den." -#: ../../mod/siteinfo.php:103 -msgid "Bug reports and issues: please visit" -msgstr "Buggrapporter och problem: besök" +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Ange ditt lösenord för att bekräfta:" -#: ../../mod/siteinfo.php:106 +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Ta bort den här kanalen och alla dess kloner från nätverket" + +#: ../../mod/removeme.php:60 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Förslag, uppskattning, etc. - maila \"redmatrix\" at librelist - dot com" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Som standard kommer bara den här hubbens instans av kanalen att tas bort från nätverket" -#: ../../mod/siteinfo.php:108 -msgid "Site Administrators" -msgstr "Serveradministratörer" +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Ta bort kanal" -#: ../../mod/new_channel.php:107 -msgid "Add a Channel" -msgstr "Lägg till en kanal" +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Ingen kanal." -#: ../../mod/new_channel.php:108 +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Gemensamma kontakter" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Inga gemensamma kontakter." + +#: ../../mod/rmagic.php:38 msgid "" -"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 "En kanal är din egen samling av relaterade webbsidor. En kanal kan användas för att innehålla sociala nätverksprofiler, bloggar, konversationsgrupper och forum, fansidor, och mycket mer. Du kan skapa så många kanaler som din tjänsteleverantör tillåter." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Vi drabbades av ett problem vid inloggningen med OpenID:t du uppgav. Kontrollera att ID:t är korrekt stavat." -#: ../../mod/new_channel.php:111 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Exempel: \"Bob Jameson\", \"Lisa och hennes hästar\", \"Fotboll\", \"Flyggruppen\" " +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Felmeddelandet var:" -#: ../../mod/new_channel.php:112 -msgid "Choose a short nickname" -msgstr "Välj ett kort smeknamn" +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Inloggning misslyckades." -#: ../../mod/new_channel.php:113 +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Fjärrinloggning" + +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Ange din kanaladress (t.ex. kanal@example.com)" + +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Autentisera" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- välj -" + +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Information om sidans ägare kunde inte hittas." + +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Albumet hittades inte." + +#: ../../mod/photos.php:119 ../../mod/photos.php:672 +msgid "Delete Album" +msgstr "Ta bort album" + +#: ../../mod/photos.php:159 ../../mod/photos.php:957 +msgid "Delete Photo" +msgstr "Ta bort foto" + +#: ../../mod/photos.php:469 +msgid "No photos selected" +msgstr "Inga foton valda" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "Åtkomst till den här posten är begränsat." + +#: ../../mod/photos.php:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB av %2$.2f MB fotolagring använt." + +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB fotolagring använt." + +#: ../../mod/photos.php:579 +msgid "Upload Photos" +msgstr "Ladda upp foton" + +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 +msgid "Enter a new album name" +msgstr "Ange ett nytt albumnamn" + +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 +msgid "or select an existing one (doubleclick)" +msgstr "eller välj ett befintligt (dubbelklicka)" + +#: ../../mod/photos.php:585 +msgid "Do not show a status post for this upload" +msgstr "Visa inte en statusuppdatering för den här uppladdningen" + +#: ../../mod/photos.php:613 +msgid "Album name could not be decoded" +msgstr "Albumnamn kunde inte tolkas" + +#: ../../mod/photos.php:654 ../../mod/photos.php:1166 +#: ../../mod/photos.php:1182 +msgid "Contact Photos" +msgstr "Kontaktfoton" + +#: ../../mod/photos.php:678 +msgid "Show Newest First" +msgstr "Visa nyast först" + +#: ../../mod/photos.php:680 +msgid "Show Oldest First" +msgstr "Visa äldst först" + +#: ../../mod/photos.php:707 ../../mod/photos.php:1214 +msgid "View Photo" +msgstr "Visa foto" + +#: ../../mod/photos.php:736 +msgid "Edit Album" +msgstr "Redigera album" + +#: ../../mod/photos.php:781 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Behörighet saknas. Åtkomst till den här posten kan vara begränsat." + +#: ../../mod/photos.php:783 +msgid "Photo not available" +msgstr "Foto inte tillgängligt" + +#: ../../mod/photos.php:841 +msgid "Use as profile photo" +msgstr "Använd som profilfoto" + +#: ../../mod/photos.php:848 +msgid "Private Photo" +msgstr "Privat foto" + +#: ../../mod/photos.php:863 +msgid "View Full Size" +msgstr "Visa fullstorlek" + +#: ../../mod/photos.php:905 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Ta bort" + +#: ../../mod/photos.php:937 +msgid "Edit photo" +msgstr "Redigera foto" + +#: ../../mod/photos.php:939 +msgid "Rotate CW (right)" +msgstr "Rotera medurs (höger)" + +#: ../../mod/photos.php:940 +msgid "Rotate CCW (left)" +msgstr "Rotera moturs (vänster)" + +#: ../../mod/photos.php:947 +msgid "Caption" +msgstr "Bildtext" + +#: ../../mod/photos.php:949 +msgid "Add a Tag" +msgstr "Lägg till en tagg" + +#: ../../mod/photos.php:953 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exempel: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../mod/photos.php:955 +msgid "Flag as adult in album view" +msgstr "Flagga som olämpligt för barn i albumvyn" + +#: ../../mod/photos.php:1132 +msgid "In This Photo:" +msgstr "På fotot:" + +#: ../../mod/photos.php:1220 +msgid "View Album" +msgstr "Visa album" + +#: ../../mod/photos.php:1243 +msgid "Recent Photos" +msgstr "Nya foton" + +#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +msgid "Could not access contact record." +msgstr "Kunde inte komma åt kontaktuppgifter." + +#: ../../mod/connections.php:51 ../../mod/connedit.php:86 +msgid "Could not locate selected profile." +msgstr "Kunde inte hitta vald profil." + +#: ../../mod/connections.php:94 ../../mod/connedit.php:140 +msgid "Connection updated." +msgstr "Kontakt uppdaterad." + +#: ../../mod/connections.php:96 ../../mod/connedit.php:142 +msgid "Failed to update connection record." +msgstr "Misslyckades att uppdatera kontaktuppgifter." + +#: ../../mod/connections.php:191 ../../mod/connections.php:292 +msgid "Blocked" +msgstr "Blockerade" + +#: ../../mod/connections.php:196 ../../mod/connections.php:299 +msgid "Ignored" +msgstr "Ignorerade" + +#: ../../mod/connections.php:201 ../../mod/connections.php:313 +msgid "Hidden" +msgstr "Dolda" + +#: ../../mod/connections.php:206 ../../mod/connections.php:306 +msgid "Archived" +msgstr "Arkiverade" + +#: ../../mod/connections.php:230 ../../mod/connections.php:245 +msgid "All" +msgstr "Alla" + +#: ../../mod/connections.php:270 +msgid "Suggest new connections" +msgstr "Föreslå nya kontakter" + +#: ../../mod/connections.php:273 +msgid "New Connections" +msgstr "Nya kontakter" + +#: ../../mod/connections.php:276 +msgid "Show pending (new) connections" +msgstr "Visa väntande (nya) kontakter" + +#: ../../mod/connections.php:282 +msgid "Show all connections" +msgstr "Visa alla kontakter" + +#: ../../mod/connections.php:285 +msgid "Unblocked" +msgstr "Ej blockerade" + +#: ../../mod/connections.php:288 +msgid "Only show unblocked connections" +msgstr "Visa endast ej blockerade kontakter" + +#: ../../mod/connections.php:295 +msgid "Only show blocked connections" +msgstr "Visa endast blockerade kontakter" + +#: ../../mod/connections.php:302 +msgid "Only show ignored connections" +msgstr "Visa endast ignorerade kontakter" + +#: ../../mod/connections.php:309 +msgid "Only show archived connections" +msgstr "Visa endast arkiverade kontakter" + +#: ../../mod/connections.php:316 +msgid "Only show hidden connections" +msgstr "Visa endast dolda kontakter" + +#: ../../mod/connections.php:371 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:372 +msgid "Edit connection" +msgstr "Redigera kontakt" + +#: ../../mod/connections.php:410 +msgid "Search your connections" +msgstr "Sök bland dina kontakter" + +#: ../../mod/connections.php:411 +msgid "Finding: " +msgstr "Sökning efter: " + +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du har skapat %1$.0f av %2$.0f tillåtna kanaler." + +#: ../../mod/manage.php:144 +msgid "Create a new channel" +msgstr "Skapa en ny kanal" + +#: ../../mod/manage.php:149 +msgid "Current Channel" +msgstr "Nuvarande kanal" + +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." +msgstr "Anslut till en av dina kanaler genom att välja den." + +#: ../../mod/manage.php:152 +msgid "Default Channel" +msgstr "Standardkanal" + +#: ../../mod/manage.php:153 +msgid "Make Default" +msgstr "Gör till standard" + +#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "Redigera inlägg" + +#: ../../mod/connedit.php:189 +msgid "is now connected to" +msgstr "har nu kontakt med" + +#: ../../mod/connedit.php:310 +msgid "Could not access address book record." +msgstr "Kunde inte komma åt adressboksuppgifter." + +#: ../../mod/connedit.php:324 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Uppdatering misslyckades - kanalen är inte tillgänglig." + +#: ../../mod/connedit.php:331 +msgid "Channel has been unblocked" +msgstr "Kanalen är inte längre blockerad" + +#: ../../mod/connedit.php:332 +msgid "Channel has been blocked" +msgstr "Kanalen har blockerats" + +#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 +#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 +#: ../../mod/connedit.php:388 +msgid "Unable to set address book parameters." +msgstr "Kunde inte ställa in adressboksparametrar." + +#: ../../mod/connedit.php:343 +msgid "Channel has been unignored" +msgstr "Kanalen ignoreras inte längre" + +#: ../../mod/connedit.php:344 +msgid "Channel has been ignored" +msgstr "Kanalen har ignorerats" + +#: ../../mod/connedit.php:355 +msgid "Channel has been unarchived" +msgstr "Kanalen arkiveras inte längre" + +#: ../../mod/connedit.php:356 +msgid "Channel has been archived" +msgstr "Kanalen har arkiverats" + +#: ../../mod/connedit.php:367 +msgid "Channel has been unhidden" +msgstr "Kanalen döljs inte längre" + +#: ../../mod/connedit.php:368 +msgid "Channel has been hidden" +msgstr "Kanalen har dolts" + +#: ../../mod/connedit.php:383 +msgid "Channel has been approved" +msgstr "Kanalen har godkänts" + +#: ../../mod/connedit.php:384 +msgid "Channel has been unapproved" +msgstr "Kanalen är inte godkänd längre" + +#: ../../mod/connedit.php:412 +msgid "Connection has been removed." +msgstr "Kontakten har tagits bort." + +#: ../../mod/connedit.php:432 +#, php-format +msgid "View %s's profile" +msgstr "Visa %ss profil" + +#: ../../mod/connedit.php:436 +msgid "Refresh Permissions" +msgstr "Uppdatera behörigheter" + +#: ../../mod/connedit.php:439 +msgid "Fetch updated permissions" +msgstr "Hämta uppdaterade behörigheter" + +#: ../../mod/connedit.php:443 +msgid "Recent Activity" +msgstr "Senaste aktiviteten" + +#: ../../mod/connedit.php:446 +msgid "View recent posts and comments" +msgstr "Visa de senaste inläggen och kommentarerna" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:732 +msgid "Unblock" +msgstr "Avblockera" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:731 +msgid "Block" +msgstr "Blockera" + +#: ../../mod/connedit.php:453 +msgid "Block or Unblock this connection" +msgstr "Blockera eller häv blockering av den här kontakten" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +msgid "Unignore" +msgstr "Sluta att ignorera" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorera" + +#: ../../mod/connedit.php:460 +msgid "Ignore or Unignore this connection" +msgstr "Ignorera eller sluta att ignorera den här kontakten" + +#: ../../mod/connedit.php:463 +msgid "Unarchive" +msgstr "Sluta att arkivera" + +#: ../../mod/connedit.php:463 +msgid "Archive" +msgstr "Arkivera" + +#: ../../mod/connedit.php:466 +msgid "Archive or Unarchive this connection" +msgstr "Arkivera eller sluta att arkivera den här kontakten" + +#: ../../mod/connedit.php:469 +msgid "Unhide" +msgstr "Sluta att dölja" + +#: ../../mod/connedit.php:469 +msgid "Hide" +msgstr "Dölj" + +#: ../../mod/connedit.php:472 +msgid "Hide or Unhide this connection" +msgstr "Dölj eller sluta att dölja den här kontakten" + +#: ../../mod/connedit.php:479 +msgid "Delete this connection" +msgstr "Ta bort den här kontakten" + +#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 +msgid "Approve this connection" +msgstr "Godkänn den här kontakten" + +#: ../../mod/connedit.php:522 +msgid "Accept connection to allow communication" +msgstr "Acceptera kontakten för att tillåta kommunikation" + +#: ../../mod/connedit.php:538 +#, php-format +msgid "Connections: settings for %s" +msgstr "Kontakter: inställningar för %s" + +#: ../../mod/connedit.php:539 +msgid "Apply these permissions automatically" +msgstr "Använd de här rättigheterna automatiskt" + +#: ../../mod/connedit.php:543 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "Använd rättigheterna angivna på den här sidan för alla nya kontakter." + +#: ../../mod/connedit.php:545 +msgid "Slide to adjust your degree of friendship" +msgstr "Dra för att justera er vänskapsnivå" + +#: ../../mod/connedit.php:551 +msgid "inherited" +msgstr "ärvd" + +#: ../../mod/connedit.php:553 +msgid "Connection has no individual permissions!" +msgstr "Kontakten har inga individuella behörigheter!" + +#: ../../mod/connedit.php:554 msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Ditt smeknamn används för att skapa en kanaladress som är lätt att komma ihåg (som en e-postadress) som du kan dela med andra." +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Det här kan vara lämpligt beroende på dina integritetsinställningar, men du vill kanske se över de \"Avancerade inställningarna\"." -#: ../../mod/new_channel.php:114 -msgid "Or import an existing channel from another location" -msgstr "Eller importera en befintlig kanal från en annan plats" +#: ../../mod/connedit.php:556 +msgid "Profile Visibility" +msgstr "Profilsynlighet" + +#: ../../mod/connedit.php:557 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Välj profilen som du vill ska synas när %s ser din profil på ett säkert sätt." + +#: ../../mod/connedit.php:558 +msgid "Contact Information / Notes" +msgstr "Kontaktinformation / anteckningar" + +#: ../../mod/connedit.php:559 +msgid "Edit contact notes" +msgstr "Redigera anteckningar för kontakten" + +#: ../../mod/connedit.php:561 +msgid "Their Settings" +msgstr "Deras inställningar" + +#: ../../mod/connedit.php:562 +msgid "My Settings" +msgstr "Mina inställningar" + +#: ../../mod/connedit.php:564 +msgid "Clear/Disable Automatic Permissions" +msgstr "Rensa/inaktivera automatiska behörigheter" + +#: ../../mod/connedit.php:565 +msgid "Forum Members" +msgstr "Forummedlemmar" + +#: ../../mod/connedit.php:566 +msgid "Soapbox" +msgstr "Talarstol" + +#: ../../mod/connedit.php:567 +msgid "Full Sharing (typical social network permissions)" +msgstr "Full delning (typiska behörigheter för sociala nätverk)" + +#: ../../mod/connedit.php:568 +msgid "Cautious Sharing " +msgstr "Försiktig delning" + +#: ../../mod/connedit.php:569 +msgid "Follow Only" +msgstr "Följ endast" + +#: ../../mod/connedit.php:570 +msgid "Individual Permissions" +msgstr "Individuella behörigheter" + +#: ../../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 "Vissa behörigheter kan ärvas från din kanals integritetsinställningar, vilka har högre prioritet än individuella inställningar. Ändring av de ärvda inställningarna på den här sidan har ingen effekt." + +#: ../../mod/connedit.php:572 +msgid "Advanced Permissions" +msgstr "Avancerade behörighetsinställningar" + +#: ../../mod/connedit.php:573 +msgid "Simple Permissions (select one and submit)" +msgstr "Enkla behörighetsinställningar (välj en och spara)" + +#: ../../mod/connedit.php:577 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "Besök %ss profil - %s" + +#: ../../mod/connedit.php:578 +msgid "Block/Unblock contact" +msgstr "Blockera/häv blockering av kontakt" + +#: ../../mod/connedit.php:579 +msgid "Ignore contact" +msgstr "Ignorera kontakt" + +#: ../../mod/connedit.php:580 +msgid "Repair URL settings" +msgstr "Reparera URL-inställningar" + +#: ../../mod/connedit.php:581 +msgid "View conversations" +msgstr "Visa konversationer" + +#: ../../mod/connedit.php:583 +msgid "Delete contact" +msgstr "Ta bort kontakt" + +#: ../../mod/connedit.php:586 +msgid "Last update:" +msgstr "Senaste uppdatering:" + +#: ../../mod/connedit.php:588 +msgid "Update public posts" +msgstr "Uppdatera offentliga inlägg" + +#: ../../mod/connedit.php:590 +msgid "Update now" +msgstr "Uppdatera nu" + +#: ../../mod/connedit.php:596 +msgid "Currently blocked" +msgstr "Blockerad" + +#: ../../mod/connedit.php:597 +msgid "Currently ignored" +msgstr "Ignorerad" + +#: ../../mod/connedit.php:598 +msgid "Currently archived" +msgstr "Arkiverad" + +#: ../../mod/connedit.php:599 +msgid "Currently pending" +msgstr "Inväntar svar" + +#: ../../mod/connedit.php:600 +msgid "Hide this contact from others" +msgstr "Dölj den här kontakten för andra" + +#: ../../mod/connedit.php:600 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Svar/gilla-reaktioner på dina offentliga inlägg kan fortfarande synas" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "Protokollfel för OpenID. Inget ID returnerades." + +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Föremål uppdaterat" + +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Objektlagring: misslyckades" + +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Föremål tillagt" + +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Visa föremål" + +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "föremål hittades inte." + +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Redigera föremål" + +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Välj en profil" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Posta en aktivitet" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "Skickar bara till de som tittar på den aktuella profilen" + +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Namn på föremål, t.ex. någonting" + +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL för föremål (frivilligt)" + +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL för foto på föremål (frivilligt)" + +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Lägg till föremål till din profil" #: ../../mod/lostpass.php:15 msgid "No valid account found." @@ -6420,7 +5747,7 @@ msgid "" "Password reset failed." msgstr "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades." -#: ../../mod/lostpass.php:85 ../../boot.php:1454 +#: ../../mod/lostpass.php:85 ../../boot.php:1494 msgid "Password Reset" msgstr "Lösenordsåterställning" @@ -6469,437 +5796,737 @@ msgstr "E-postadress" msgid "Reset" msgstr "Återställ" -#: ../../mod/editblock.php:77 +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bokmärke tillagt" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Mina bokmärken" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Mina kontakters bokmärken" + +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Den här servern är inte en katalogserver" + +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix - Gäster: Användarnamn {din e-postadress}, Lösenord: +++" + +#: ../../mod/ping.php:257 +msgid "sent you a private message" +msgstr "skickade ett privat meddelande till dig" + +#: ../../mod/ping.php:308 +msgid "added your channel" +msgstr "lade till din kanal" + +#: ../../mod/ping.php:349 +msgid "posted an event" +msgstr "skapade en händelse" + +#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 +#: ../../mod/editlayout.php:78 ../../mod/editpost.php:20 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Posten hittas inte" + +#: ../../mod/editblock.php:115 msgid "Edit Block" msgstr "Redigera block" -#: ../../mod/editblock.php:87 +#: ../../mod/editblock.php:125 msgid "Delete block?" msgstr "Ta bort block?" -#: ../../mod/editblock.php:153 +#: ../../mod/editblock.php:147 ../../mod/editlayout.php:143 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" +msgstr "Infoga Youtube-video" + +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:144 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" +msgstr "Infoga Vorbis [.ogg]-video" + +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:145 +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Infoga Vorbis [.ogg]-ljud" + +#: ../../mod/editblock.php:183 msgid "Delete Block" msgstr "Ta bort block" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Välj en bokmärkeskatalog" +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout uppdaterad." -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Spara bokmärke" +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Redigera systemsidbeskrivning" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "Bokmärkets URL" +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout hittas inte." -#: ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Beskrivning" +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulnamn:" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Eller ange nytt namn på bokmärkeskatalog" +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" +msgstr "Layouthjälp" -#: ../../mod/import.php:36 -msgid "Nothing to import." -msgstr "Inget att importera." - -#: ../../mod/import.php:58 -msgid "Unable to download data from old server" -msgstr "Kunde inte ladda ner data från den gamla servern" - -#: ../../mod/import.php:64 -msgid "Imported file is empty." -msgstr "Den importerade filen är tom." - -#: ../../mod/import.php:88 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades." - -#: ../../mod/import.php:106 -msgid "Channel clone failed. Import failed." -msgstr "Kloning av kanalen misslyckades. Import misslyckades." - -#: ../../mod/import.php:116 -msgid "Cloned channel not found. Import failed." -msgstr "Den klonade kanalen hittas inte. Import misslyckades." - -#: ../../mod/import.php:358 -msgid "Import completed." -msgstr "Import slutförd." - -#: ../../mod/import.php:371 -msgid "You must be logged in to use this feature." -msgstr "Du måste vara inloggad för att kunna använda den här funktionen." - -#: ../../mod/import.php:376 -msgid "Import Channel" -msgstr "Importera kanal" - -#: ../../mod/import.php:377 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte." - -#: ../../mod/import.php:378 -msgid "File to Upload" -msgstr "Fil att ladda upp" - -#: ../../mod/import.php:379 -msgid "Or provide the old server/hub details" -msgstr "Eller ge uppgifter om den gamla servern/hubben" - -#: ../../mod/import.php:380 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamla identitetsadress (xyz@example.com)" - -#: ../../mod/import.php:381 -msgid "Your old login email address" -msgstr "Din gamla e-postadress för inloggning" - -#: ../../mod/import.php:382 -msgid "Your old login password" -msgstr "Ditt gamla inloggningslösenord" - -#: ../../mod/import.php:383 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media." - -#: ../../mod/import.php:384 -msgid "Make this hub my primary location" -msgstr "Gör den här hubben till min primära plats" - -#: ../../mod/manage.php:64 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du har skapat %1$.0f av %2$.0f tillåtna kanaler." - -#: ../../mod/manage.php:72 -msgid "Create a new channel" -msgstr "Skapa en ny kanal" - -#: ../../mod/manage.php:77 -msgid "Channel Manager" -msgstr "Kanalhanterare" - -#: ../../mod/manage.php:78 -msgid "Current Channel" -msgstr "Nuvarande kanal" - -#: ../../mod/manage.php:80 -msgid "Attach to one of your channels by selecting it." -msgstr "Anslut till en av dina kanaler genom att välja den." - -#: ../../mod/manage.php:81 -msgid "Default Channel" -msgstr "Standardkanal" - -#: ../../mod/manage.php:82 -msgid "Make Default" -msgstr "Gör till standard" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totala röster" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Genomsnittsbetyg" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profilträff" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "är intresserad av:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Inga träffar" - -#: ../../mod/chatsvc.php:102 -msgid "Away" -msgstr "Borta" - -#: ../../mod/chatsvc.php:106 -msgid "Online" -msgstr "Online" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Protokollfel för OpenID. Inget ID returnerades." - -#: ../../mod/openid.php:72 ../../mod/openid.php:178 ../../mod/post.php:257 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Välkommen %s. Fjärrautentisering lyckades." - -#: ../../mod/editlayout.php:72 +#: ../../mod/editlayout.php:108 msgid "Edit Layout" msgstr "Redigera layout" -#: ../../mod/editlayout.php:82 +#: ../../mod/editlayout.php:117 msgid "Delete layout?" msgstr "Ta bort layout?" -#: ../../mod/editlayout.php:146 +#: ../../mod/editlayout.php:178 msgid "Delete Layout" msgstr "Ta bort layout" -#: ../../mod/post.php:226 +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Posten går ej att redigera" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Ta bort posten?" + +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "Namn är obligatoriskt" + +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "Nyckel och kod är obligatoriska" + +#: ../../mod/settings.php:197 +msgid "Passwords do not match. Password unchanged." +msgstr "Lösenorden stämmer inte överens. Lösenordet har inte ändrats." + +#: ../../mod/settings.php:201 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Tomma lösenord tillåts inte. Lösenordet har inte ändrats." + +#: ../../mod/settings.php:215 +msgid "Password changed." +msgstr "Lösenordet ändrat." + +#: ../../mod/settings.php:217 +msgid "Password update failed. Please try again." +msgstr "Lösenordsuppdatering misslyckades. Försök igen." + +#: ../../mod/settings.php:231 +msgid "Not valid email." +msgstr "Inte en giltig e-postadress." + +#: ../../mod/settings.php:234 +msgid "Protected email address. Cannot change to that email." +msgstr "Skyddad e-postadress. Kan inte ändra till den." + +#: ../../mod/settings.php:243 +msgid "System failure storing new email. Please try again." +msgstr "Systemfel när ny e-postadress skulle sparas. Försök igen." + +#: ../../mod/settings.php:479 +msgid "Settings updated." +msgstr "Inställningar uppdaterade." + +#: ../../mod/settings.php:548 ../../mod/settings.php:574 +#: ../../mod/settings.php:610 +msgid "Add application" +msgstr "Lägg till applikation" + +#: ../../mod/settings.php:551 +msgid "Name of application" +msgstr "Applikationens namn" + +#: ../../mod/settings.php:552 ../../mod/settings.php:578 +msgid "Consumer Key" +msgstr "Nyckel för konsument" + +#: ../../mod/settings.php:552 ../../mod/settings.php:553 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatiskt genererad - ändra om så önskas. Maxlängd 20" + +#: ../../mod/settings.php:553 ../../mod/settings.php:579 +msgid "Consumer Secret" +msgstr "Kod för konsument" + +#: ../../mod/settings.php:554 ../../mod/settings.php:580 +msgid "Redirect" +msgstr "Omdirigering" + +#: ../../mod/settings.php:554 msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fjärrautentisering blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen." +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Omdirigerings-URI - lämna blankt om inte din applikation specifikt behöver det" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#: ../../mod/settings.php:555 ../../mod/settings.php:581 +msgid "Icon url" +msgstr "Ikon-URL" + +#: ../../mod/settings.php:555 +msgid "Optional" +msgstr "Frivillig" + +#: ../../mod/settings.php:566 +msgid "You can't edit this application." +msgstr "Du kan inte redigera den här applikationen." + +#: ../../mod/settings.php:609 +msgid "Connected Apps" +msgstr "Anslutna appar" + +#: ../../mod/settings.php:613 +msgid "Client key starts with" +msgstr "Klientnyckel börjar med" + +#: ../../mod/settings.php:614 +msgid "No name" +msgstr "Inget namn" + +#: ../../mod/settings.php:615 +msgid "Remove authorization" +msgstr "Ta bort behörighet" + +#: ../../mod/settings.php:626 +msgid "No feature settings configured" +msgstr "Inga funktionsinställningar konfigurerade" + +#: ../../mod/settings.php:634 +msgid "Feature Settings" +msgstr "Funktionsinställningar" + +#: ../../mod/settings.php:657 +msgid "Account Settings" +msgstr "Kontoinställningar" + +#: ../../mod/settings.php:658 +msgid "Password Settings" +msgstr "Lösenordsinställningar" + +#: ../../mod/settings.php:659 +msgid "New Password:" +msgstr "Nytt lösenord:" + +#: ../../mod/settings.php:660 +msgid "Confirm:" +msgstr "Bekräfta:" + +#: ../../mod/settings.php:660 +msgid "Leave password fields blank unless changing" +msgstr "Lämna lösenordsfälten blanka om lösenordet inte ska ändras" + +#: ../../mod/settings.php:662 ../../mod/settings.php:985 +msgid "Email Address:" +msgstr "E-postadress" + +#: ../../mod/settings.php:663 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "Ta bort konto" + +#: ../../mod/settings.php:664 +msgid "Remove this account from this server including all its channels" +msgstr "Ta bort det här kontot från servern, inklusive alla dess kanaler" + +#: ../../mod/settings.php:665 ../../mod/settings.php:1067 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "Varning: Den här handlingen är permanent och kan inte återställas." + +#: ../../mod/settings.php:681 +msgid "Off" +msgstr "Av" + +#: ../../mod/settings.php:681 +msgid "On" +msgstr "På" + +#: ../../mod/settings.php:688 +msgid "Additional Features" +msgstr "Ytterligare funktioner" + +#: ../../mod/settings.php:713 +msgid "Connector Settings" +msgstr "Anslutningsinställningar" + +#: ../../mod/settings.php:743 +msgid "No special theme for mobile devices" +msgstr "Inget särskilt tema för mobila enheter" + +#: ../../mod/settings.php:752 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Hämtning av URL returnerade fel: %1$s" +msgid "%s - (Experimental)" +msgstr "%s - (experimentellt)" -#: ../../mod/profile_photo.php:44 +#: ../../mod/settings.php:788 +msgid "Display Settings" +msgstr "Utseende" + +#: ../../mod/settings.php:794 +msgid "Display Theme:" +msgstr "Tema för utseende:" + +#: ../../mod/settings.php:795 +msgid "Mobile Theme:" +msgstr "Mobilt tema:" + +#: ../../mod/settings.php:796 +msgid "Enable user zoom on mobile devices" +msgstr "Tillåt användare att zooma på mobila enheter" + +#: ../../mod/settings.php:797 +msgid "Update browser every xx seconds" +msgstr "Uppdatera webbläsaren var xx sekund" + +#: ../../mod/settings.php:797 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minst 10 sekunder, inget maximum" + +#: ../../mod/settings.php:798 +msgid "Maximum number of conversations to load at any time:" +msgstr "Högsta antal konversationer att ladda åt gången:" + +#: ../../mod/settings.php:798 +msgid "Maximum of 100 items" +msgstr "Maximalt 100 poster" + +#: ../../mod/settings.php:799 +msgid "Don't show emoticons" +msgstr "Visa inte känsloikoner" + +#: ../../mod/settings.php:800 +msgid "Link post titles to source" +msgstr "Länka inläggstitlar till källan" + +#: ../../mod/settings.php:801 +msgid "System Page Layout Editor - (advanced)" +msgstr "Redigera systemets sidlayout (avancerat)" + +#: ../../mod/settings.php:835 +msgid "Nobody except yourself" +msgstr "Ingen utom dig själv" + +#: ../../mod/settings.php:836 +msgid "Only those you specifically allow" +msgstr "Endast utvalda" + +#: ../../mod/settings.php:837 +msgid "Approved connections" +msgstr "Godkända kontakter" + +#: ../../mod/settings.php:838 +msgid "Any connections" +msgstr "Alla kontakter" + +#: ../../mod/settings.php:839 +msgid "Anybody on this website" +msgstr "Vem som helst på den här servern" + +#: ../../mod/settings.php:840 +msgid "Anybody in this network" +msgstr "Vem som helst i det här nätverket" + +#: ../../mod/settings.php:841 +msgid "Anybody authenticated" +msgstr "Vem som helst som har autentiserat sig" + +#: ../../mod/settings.php:842 +msgid "Anybody on the internet" +msgstr "Vem som helst på Internet" + +#: ../../mod/settings.php:916 +msgid "Publish your default profile in the network directory" +msgstr "Publicera din standardprofil i nätverkskatalogen" + +#: ../../mod/settings.php:921 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Tillåt oss att föreslå dig som möjlig vän för nya medlemmar" + +#: ../../mod/settings.php:925 ../../mod/profile_photo.php:365 +msgid "or" +msgstr "eller" + +#: ../../mod/settings.php:930 +msgid "Your channel address is" +msgstr "Din kanaladress är" + +#: ../../mod/settings.php:974 +msgid "Channel Settings" +msgstr "Kanalinställningar" + +#: ../../mod/settings.php:983 +msgid "Basic Settings" +msgstr "Grundläggande inställningar" + +#: ../../mod/settings.php:986 +msgid "Your Timezone:" +msgstr "Din tidszon:" + +#: ../../mod/settings.php:987 +msgid "Default Post Location:" +msgstr "Standardplats:" + +#: ../../mod/settings.php:987 +msgid "Geographical location to display on your posts" +msgstr "Geografisk plats att visa för dina inlägg" + +#: ../../mod/settings.php:988 +msgid "Use Browser Location:" +msgstr "Använd webbläsarens position:" + +#: ../../mod/settings.php:990 +msgid "Adult Content" +msgstr "Pornografiskt innehåll" + +#: ../../mod/settings.php:990 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Den här kanalen publicerar ofta eller regelbundet pornografiskt innehåll. (Tagga allt pornografiskt material och/eller nakenhet med #NSFW, tack)" + +#: ../../mod/settings.php:992 +msgid "Security and Privacy Settings" +msgstr "Säkerhets- och integritetsinställningar" + +#: ../../mod/settings.php:994 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Dina behörigheter har redan ställts in. Klicka för att visa/ändra" + +#: ../../mod/settings.php:996 +msgid "Hide my online presence" +msgstr "Visa inte min online-närvaro" + +#: ../../mod/settings.php:996 +msgid "Prevents displaying in your profile that you are online" +msgstr "Förhindrar att det syns i din profil att du är online" + +#: ../../mod/settings.php:998 +msgid "Simple Privacy Settings:" +msgstr "Enkla integritetsinställningar:" + +#: ../../mod/settings.php:999 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Väldigt offentligt - extremt tillåtande (bör användas försiktigt)" + +#: ../../mod/settings.php:1000 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Typiskt - offentligt som standard, privat när så önskas (liknande behörigheter som på sociala nätverk men med förbättrad integritet)" + +#: ../../mod/settings.php:1001 +msgid "Private - default private, never open or public" +msgstr "Privat - privat som standard, aldrig öppet eller offentligt" + +#: ../../mod/settings.php:1002 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockera - som standard blockerat till/från alla" + +#: ../../mod/settings.php:1004 +msgid "Allow others to tag your posts" +msgstr "Låt andra tagga dina inlägg" + +#: ../../mod/settings.php:1004 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Ofta använt av gemenskapen för att i efterhand flagga olämpligt innehåll" + +#: ../../mod/settings.php:1006 +msgid "Advanced Privacy Settings" +msgstr "Avancerade integritetsinställningar" + +#: ../../mod/settings.php:1008 +msgid "Expire other channel content after this many days" +msgstr "Låt annat kanalinnehåll upphöra efter efter så här många dagar" + +#: ../../mod/settings.php:1008 +msgid "0 or blank prevents expiration" +msgstr "0 eller blankt förhindrar upphörande" + +#: ../../mod/settings.php:1009 +msgid "Maximum Friend Requests/Day:" +msgstr "Högsta antal vänförfrågningar per dag:" + +#: ../../mod/settings.php:1009 +msgid "May reduce spam activity" +msgstr "Kan reducera spamaktivitet" + +#: ../../mod/settings.php:1010 +msgid "Default Post Permissions" +msgstr "Standardbehörighet för inlägg" + +#: ../../mod/settings.php:1015 +msgid "Channel permissions category:" +msgstr "Kanalens behörighetskategori:" + +#: ../../mod/settings.php:1023 +msgid "Maximum private messages per day from unknown people:" +msgstr "Högsta antal privata meddelanden per dag från okända personer:" + +#: ../../mod/settings.php:1023 +msgid "Useful to reduce spamming" +msgstr "Användbart för att minska skräputskick" + +#: ../../mod/settings.php:1026 +msgid "Notification Settings" +msgstr "Notifieringsinställningar" + +#: ../../mod/settings.php:1027 +msgid "By default post a status message when:" +msgstr "Skicka som standard ett statusmeddelande när:" + +#: ../../mod/settings.php:1028 +msgid "accepting a friend request" +msgstr "du accepterar en vänförfrågan" + +#: ../../mod/settings.php:1029 +msgid "joining a forum/community" +msgstr "du går med i ett forum/en gemenskap" + +#: ../../mod/settings.php:1030 +msgid "making an interesting profile change" +msgstr "du gör en intressant ändring av profilen" + +#: ../../mod/settings.php:1031 +msgid "Send a notification email when:" +msgstr "Skicka en notifiering via e-post när:" + +#: ../../mod/settings.php:1032 +msgid "You receive a connection request" +msgstr "Du får en kontaktförfrågan" + +#: ../../mod/settings.php:1033 +msgid "Your connections are confirmed" +msgstr "Dina kontakter bekräftas" + +#: ../../mod/settings.php:1034 +msgid "Someone writes on your profile wall" +msgstr "Någon skriver på din profilvägg" + +#: ../../mod/settings.php:1035 +msgid "Someone writes a followup comment" +msgstr "Någon skriver en uppföljande kommentar" + +#: ../../mod/settings.php:1036 +msgid "You receive a private message" +msgstr "Du tar emot ett privat meddelande" + +#: ../../mod/settings.php:1037 +msgid "You receive a friend suggestion" +msgstr "Du tar emot ett vänförslag" + +#: ../../mod/settings.php:1038 +msgid "You are tagged in a post" +msgstr "Du taggas i ett inlägg" + +#: ../../mod/settings.php:1039 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du puffas/stöts till/etc. i ett inlägg" + +#: ../../mod/settings.php:1042 +msgid "Show visual notifications including:" +msgstr "Visa visuella notifieringar vid:" + +#: ../../mod/settings.php:1044 +msgid "Unseen matrix activity" +msgstr "Oläst matrisaktivitet" + +#: ../../mod/settings.php:1045 +msgid "Unseen channel activity" +msgstr "Oläst kanalaktivitet" + +#: ../../mod/settings.php:1046 +msgid "Unseen private messages" +msgstr "Olästa privata meddelanden" + +#: ../../mod/settings.php:1046 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 +msgid "Recommended" +msgstr "Rekommenderas" + +#: ../../mod/settings.php:1047 +msgid "Upcoming events" +msgstr "Kommande händelser" + +#: ../../mod/settings.php:1048 +msgid "Events today" +msgstr "Dagens händelser" + +#: ../../mod/settings.php:1049 +msgid "Upcoming birthdays" +msgstr "Kommande födelsedagar" + +#: ../../mod/settings.php:1049 +msgid "Not available in all themes" +msgstr "Inte tillgänglig i alla teman" + +#: ../../mod/settings.php:1050 +msgid "System (personal) notifications" +msgstr "Systemmeddelanden (personliga)" + +#: ../../mod/settings.php:1051 +msgid "System info messages" +msgstr "Systemmeddelanden" + +#: ../../mod/settings.php:1052 +msgid "System critical alerts" +msgstr "Systemkritiska varningar" + +#: ../../mod/settings.php:1053 +msgid "New connections" +msgstr "Nya kontakter" + +#: ../../mod/settings.php:1054 +msgid "System Registrations" +msgstr "Systemregistreringar" + +#: ../../mod/settings.php:1056 +msgid "Notify me of events this many days in advance" +msgstr "Meddela mig om händelser så här många dagar i förväg" + +#: ../../mod/settings.php:1056 +msgid "Must be greater than 0" +msgstr "Måste vara större än 0" + +#: ../../mod/settings.php:1058 +msgid "Advanced Account/Page Type Settings" +msgstr "Avancerade konto-/sidtypsinställningar" + +#: ../../mod/settings.php:1059 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändra det här kontots beteende i särskilda situationer" + +#: ../../mod/settings.php:1062 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Aktivera expertläge (i Inställningar > Ytterligare funktioner) för att göra ändringar!" + +#: ../../mod/settings.php:1063 +msgid "Miscellaneous Settings" +msgstr "Diverse inställningar" + +#: ../../mod/settings.php:1065 +msgid "Personal menu to display in your channel pages" +msgstr "Personlig meny att visa i dina kanalsidor" + +#: ../../mod/settings.php:1066 +msgid "Remove this channel" +msgstr "Ta bort den här kanalen" + +#: ../../mod/editwebpage.php:140 +msgid "Edit Webpage" +msgstr "Redigera webbsida" + +#: ../../mod/editwebpage.php:150 +msgid "Delete webpage?" +msgstr "Ta bort webbsida?" + +#: ../../mod/editwebpage.php:215 +msgid "Delete Webpage" +msgstr "Ta bort webbsida" + +#: ../../mod/impel.php:33 +msgid "webpage" +msgstr "webbsida" + +#: ../../mod/impel.php:38 +msgid "block" +msgstr "block" + +#: ../../mod/impel.php:43 +msgid "layout" +msgstr "layout" + +#: ../../mod/impel.php:117 +#, php-format +msgid "%s element installed" +msgstr "%selement installerat" + +#: ../../mod/profile_photo.php:108 msgid "Image uploaded but image cropping failed." msgstr "Bilden laddades upp men beskärning misslyckades." -#: ../../mod/profile_photo.php:97 +#: ../../mod/profile_photo.php:161 msgid "Image resize failed." msgstr "Ändring av bildstorlek misslyckades." -#: ../../mod/profile_photo.php:141 +#: ../../mod/profile_photo.php:205 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt." -#: ../../mod/profile_photo.php:163 +#: ../../mod/profile_photo.php:232 #, php-format msgid "Image exceeds size limit of %d" msgstr "Bilden överskrider storleksbegränsningen %d" -#: ../../mod/profile_photo.php:172 +#: ../../mod/profile_photo.php:241 msgid "Unable to process image." msgstr "Kunde inte behandla bilden." -#: ../../mod/profile_photo.php:214 ../../mod/profile_photo.php:262 +#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 msgid "Photo not available." msgstr "Fotot är inte tillgängligt." -#: ../../mod/profile_photo.php:281 +#: ../../mod/profile_photo.php:358 msgid "Upload File:" msgstr "Ladda upp fil:" -#: ../../mod/profile_photo.php:282 +#: ../../mod/profile_photo.php:359 msgid "Select a profile:" msgstr "Välj en profil:" -#: ../../mod/profile_photo.php:283 +#: ../../mod/profile_photo.php:360 msgid "Upload Profile Photo" msgstr "Ladda upp profilfoto" -#: ../../mod/profile_photo.php:284 -msgid "Upload" -msgstr "Ladda upp" - -#: ../../mod/profile_photo.php:288 +#: ../../mod/profile_photo.php:365 msgid "skip this step" msgstr "hoppa över det här steget" -#: ../../mod/profile_photo.php:288 +#: ../../mod/profile_photo.php:365 msgid "select a photo from your photo albums" msgstr "välj ett foto från dina fotoalbum" -#: ../../mod/profile_photo.php:302 +#: ../../mod/profile_photo.php:381 msgid "Crop Image" msgstr "Beskär bild" -#: ../../mod/profile_photo.php:303 +#: ../../mod/profile_photo.php:382 msgid "Please adjust the image cropping for optimum viewing." msgstr "Justera bildens beskärning för bästa utseende." -#: ../../mod/profile_photo.php:305 +#: ../../mod/profile_photo.php:384 msgid "Done Editing" msgstr "Klar med redigering" -#: ../../mod/profile_photo.php:340 +#: ../../mod/profile_photo.php:427 msgid "Image uploaded successfully." msgstr "Bilduppladdning lyckades." -#: ../../mod/profile_photo.php:342 +#: ../../mod/profile_photo.php:429 msgid "Image upload failed." msgstr "Bilduppladdning misslyckades." -#: ../../mod/profile_photo.php:351 +#: ../../mod/profile_photo.php:438 #, php-format msgid "Image size reduction [%s] failed." msgstr "Krympning av bilden [%s] misslyckades." -#: ../../mod/connections.php:191 ../../mod/connections.php:290 -msgid "Blocked" -msgstr "Blockerade" - -#: ../../mod/connections.php:196 ../../mod/connections.php:297 -msgid "Ignored" -msgstr "Ignorerade" - -#: ../../mod/connections.php:201 ../../mod/connections.php:311 -msgid "Hidden" -msgstr "Dolda" - -#: ../../mod/connections.php:206 ../../mod/connections.php:304 -msgid "Archived" -msgstr "Arkiverade" - -#: ../../mod/connections.php:229 ../../mod/connections.php:243 -msgid "All" -msgstr "Alla" - -#: ../../mod/connections.php:238 ../../mod/connections.php:318 -msgid "Unconnected" -msgstr "Ej anslutna" - -#: ../../mod/connections.php:268 -msgid "Suggest new connections" -msgstr "Föreslå nya kontakter" - -#: ../../mod/connections.php:271 -msgid "New Connections" -msgstr "Nya kontakter" - -#: ../../mod/connections.php:274 -msgid "Show pending (new) connections" -msgstr "Visa väntande (nya) kontakter" - -#: ../../mod/connections.php:280 -msgid "Show all connections" -msgstr "Visa alla kontakter" - -#: ../../mod/connections.php:283 -msgid "Unblocked" -msgstr "Ej blockerade" - -#: ../../mod/connections.php:286 -msgid "Only show unblocked connections" -msgstr "Visa endast ej blockerade kontakter" - -#: ../../mod/connections.php:293 -msgid "Only show blocked connections" -msgstr "Visa endast blockerade kontakter" - -#: ../../mod/connections.php:300 -msgid "Only show ignored connections" -msgstr "Visa endast ignorerade kontakter" - -#: ../../mod/connections.php:307 -msgid "Only show archived connections" -msgstr "Visa endast arkiverade kontakter" - -#: ../../mod/connections.php:314 -msgid "Only show hidden connections" -msgstr "Visa endast dolda kontakter" - -#: ../../mod/connections.php:321 -msgid "Only show one-way connections" -msgstr "Visa endast enkelriktade kontakter" - -#: ../../mod/connections.php:366 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:367 -msgid "Edit contact" -msgstr "Redigera kontakt" - -#: ../../mod/connections.php:388 -msgid "Search your connections" -msgstr "Sök bland dina kontakter" - -#: ../../mod/connections.php:389 -msgid "Finding: " -msgstr "Sökning efter: " - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ogiltigt ID på förfrågan." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Förkasta" - -#: ../../mod/notifications.php:93 ../../mod/notify.php:54 -msgid "No more system notifications." -msgstr "Inga fler systemnotifieringar." - -#: ../../mod/notifications.php:97 ../../mod/notify.php:58 -msgid "System Notifications" -msgstr "Systemnotifieringar" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Kunde inte hitta din hubb." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Sändning lyckades." - -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "Redigera webbsida" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "Ta bort webbsida?" - -#: ../../mod/editwebpage.php:187 -msgid "Delete Webpage" -msgstr "Ta bort webbsida" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal tillagd." - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Puffa/stöt till" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "puffa, stöt till eller gör andra saker mot någon" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Mottagare" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Välj vad du önskar göra med mottagaren" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Gör det här inlägget privat" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "Väggfoton" - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Otillräckliga behörigheter. Förfrågan omdirigerad till profilsidan." - #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." msgstr "Kontakten hittades inte." @@ -6917,73 +6544,136 @@ msgstr "Föreslå vänner" msgid "Suggest a friend for %s" msgstr "Föreslå en vän för %s" -#: ../../mod/dirprofile.php:114 -msgid "Status: " -msgstr "Status: " - -#: ../../mod/dirprofile.php:115 -msgid "Sexual Preference: " -msgstr "Sexuell preferens: " - -#: ../../mod/dirprofile.php:117 -msgid "Homepage: " -msgstr "Hemsida: " - -#: ../../mod/dirprofile.php:118 -msgid "Hometown: " -msgstr "Hemort: " - -#: ../../mod/dirprofile.php:120 -msgid "About: " -msgstr "Om: " - -#: ../../mod/dirprofile.php:168 -msgid "Keywords: " -msgstr "Nyckelord: " - -#: ../../mod/filestorage.php:68 +#: ../../mod/filestorage.php:76 msgid "Permission Denied." msgstr "Behörighet saknas." -#: ../../mod/filestorage.php:85 +#: ../../mod/filestorage.php:92 msgid "File not found." msgstr "Filen hittas inte." -#: ../../mod/filestorage.php:119 +#: ../../mod/filestorage.php:131 msgid "Edit file permissions" msgstr "Redigera filrättigheter" -#: ../../mod/filestorage.php:126 +#: ../../mod/filestorage.php:140 +msgid "Set/edit permissions" +msgstr "Ställ in/ändra behörigheter" + +#: ../../mod/filestorage.php:141 msgid "Include all files and sub folders" msgstr "Inkludera alla filer och underkataloger" -#: ../../mod/filestorage.php:127 +#: ../../mod/filestorage.php:142 msgid "Return to file list" msgstr "Återgå till fillistan" -#: ../../mod/filestorage.php:129 +#: ../../mod/filestorage.php:144 msgid "Copy/paste this code to attach file to a post" msgstr "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg" -#: ../../mod/filestorage.php:130 +#: ../../mod/filestorage.php:145 msgid "Copy/paste this URL to link file from a web page" msgstr "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida" -#: ../../mod/filestorage.php:167 -msgid "Download" -msgstr "Ladda ner" +#: ../../mod/help.php:41 ../../mod/help.php:47 ../../mod/help.php:53 +msgid "Help:" +msgstr "Hjälp:" -#: ../../mod/filestorage.php:173 -msgid "Used: " -msgstr "Använt: " +#: ../../mod/help.php:67 ../../index.php:238 +msgid "Not Found" +msgstr "Hittas inte" -#: ../../mod/filestorage.php:174 -msgid "[directory]" -msgstr "[katalog]" +#: ../../mod/acl.php:245 +msgid "network" +msgstr "nätverk" -#: ../../mod/filestorage.php:176 -msgid "Limit: " -msgstr "Gräns: " +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal tillagd." + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Inga potentiella sid-ombud funna." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Delegera sidhantering" + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Befintliga sid-ansvariga" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Befintliga sid-ombud" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Potentiella ombud" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Lägg till" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Inga poster." + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "Krets skapad." + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Kunde inte skapa krets." + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Kretsen uppdaterad." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Skapa en krets av kanaler." + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Namn på krets: " + +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "Medlemmar kan ses av andra kanaler" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Krets borttagen." + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Kunde inte ta bort krets." + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Redigera krets" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Medlemmar" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Alla anslutna kanaler" + +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Klicka på en kanal för att lägga till eller ta bort." #: ../../mod/suggest.php:35 msgid "" @@ -6991,6 +6681,1142 @@ msgid "" "hours." msgstr "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar." +#: ../../mod/import.php:25 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Din tjänstenivå tillåter bara %d kanaler." + +#: ../../mod/import.php:51 +msgid "Nothing to import." +msgstr "Inget att importera." + +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" +msgstr "Kunde inte ladda ner data från den gamla servern" + +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "Den importerade filen är tom." + +#: ../../mod/import.php:105 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades." + +#: ../../mod/import.php:123 +msgid "Channel clone failed. Import failed." +msgstr "Kloning av kanalen misslyckades. Import misslyckades." + +#: ../../mod/import.php:133 +msgid "Cloned channel not found. Import failed." +msgstr "Den klonade kanalen hittas inte. Import misslyckades." + +#: ../../mod/import.php:451 +msgid "Import completed." +msgstr "Import slutförd." + +#: ../../mod/import.php:463 +msgid "You must be logged in to use this feature." +msgstr "Du måste vara inloggad för att kunna använda den här funktionen." + +#: ../../mod/import.php:468 +msgid "Import Channel" +msgstr "Importera kanal" + +#: ../../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 "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte." + +#: ../../mod/import.php:470 +msgid "File to Upload" +msgstr "Fil att ladda upp" + +#: ../../mod/import.php:471 +msgid "Or provide the old server/hub details" +msgstr "Eller ge uppgifter om den gamla servern/hubben" + +#: ../../mod/import.php:472 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamla identitetsadress (xyz@example.com)" + +#: ../../mod/import.php:473 +msgid "Your old login email address" +msgstr "Din gamla e-postadress för inloggning" + +#: ../../mod/import.php:474 +msgid "Your old login password" +msgstr "Ditt gamla inloggningslösenord" + +#: ../../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 "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media." + +#: ../../mod/import.php:476 +msgid "Make this hub my primary location" +msgstr "Gör den här hubben till min primära plats" + +#: ../../mod/import.php:477 +msgid "Import existing posts if possible" +msgstr "Importera befintliga inlägg om möjligt" + +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s taggade%2$ss %3$s med %4$s" + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Tagg borttagen" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Ta bort innehållstagg" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Välj en tagg att ta bort: " + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Temainställningar uppdaterade." + +#: ../../mod/admin.php:97 ../../mod/admin.php:411 +msgid "Site" +msgstr "Server" + +#: ../../mod/admin.php:98 +msgid "Accounts" +msgstr "Konton" + +#: ../../mod/admin.php:99 ../../mod/admin.php:858 +msgid "Channels" +msgstr "Kanaler" + +#: ../../mod/admin.php:100 ../../mod/admin.php:949 ../../mod/admin.php:991 +msgid "Plugins" +msgstr "Tillägg" + +#: ../../mod/admin.php:101 ../../mod/admin.php:1154 ../../mod/admin.php:1190 +msgid "Themes" +msgstr "Teman" + +#: ../../mod/admin.php:102 ../../mod/admin.php:512 +msgid "Server" +msgstr "Server" + +#: ../../mod/admin.php:103 +msgid "Profile Config" +msgstr "Profilkonfiguration" + +#: ../../mod/admin.php:104 +msgid "DB updates" +msgstr "Databasuppdateringar" + +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1277 +msgid "Logs" +msgstr "Loggar" + +#: ../../mod/admin.php:124 +msgid "Plugin Features" +msgstr "Tilläggsfunktioner" + +#: ../../mod/admin.php:126 +msgid "User registrations waiting for confirmation" +msgstr "Användarregistreringar som behöver bekräftas" + +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Meddelandeköer" + +#: ../../mod/admin.php:211 ../../mod/admin.php:410 ../../mod/admin.php:511 +#: ../../mod/admin.php:721 ../../mod/admin.php:857 ../../mod/admin.php:948 +#: ../../mod/admin.php:990 ../../mod/admin.php:1153 ../../mod/admin.php:1189 +#: ../../mod/admin.php:1276 +msgid "Administration" +msgstr "Administration" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Sammanfattning" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Registrerade användare" + +#: ../../mod/admin.php:216 ../../mod/admin.php:515 +msgid "Pending registrations" +msgstr "Pågående registreringar" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Version" + +#: ../../mod/admin.php:219 ../../mod/admin.php:516 +msgid "Active plugins" +msgstr "Aktiva tillägg" + +#: ../../mod/admin.php:326 +msgid "Site settings updated." +msgstr "Serverinställningar uppdaterade." + +#: ../../mod/admin.php:363 +msgid "mobile" +msgstr "mobilt" + +#: ../../mod/admin.php:365 +msgid "experimental" +msgstr "experimentellt" + +#: ../../mod/admin.php:367 +msgid "unsupported" +msgstr "stöds ej" + +#: ../../mod/admin.php:391 +msgid "Yes - with approval" +msgstr "Ja - med godkännande" + +#: ../../mod/admin.php:397 +msgid "My site is not a public server" +msgstr "Min server är inte offentlig" + +#: ../../mod/admin.php:398 +msgid "My site has paid access only" +msgstr "Min server har endast åtkomst mot betalning" + +#: ../../mod/admin.php:399 +msgid "My site has free access only" +msgstr "Min server har endast gratis åtkomst" + +#: ../../mod/admin.php:400 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Min server erbjuder gratis konton med uppgradering mot betalning" + +#: ../../mod/admin.php:414 +msgid "File upload" +msgstr "Filuppladdning" + +#: ../../mod/admin.php:415 +msgid "Policies" +msgstr "Policyer" + +#: ../../mod/admin.php:420 +msgid "Site name" +msgstr "Servernamn" + +#: ../../mod/admin.php:421 +msgid "Banner/Logo" +msgstr "Banner/logga" + +#: ../../mod/admin.php:422 +msgid "Administrator Information" +msgstr "Administratörsinformation" + +#: ../../mod/admin.php:422 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinfo till sidadministratörer. Visas på sidinfosidan. BBCode kan användas här" + +#: ../../mod/admin.php:423 +msgid "System language" +msgstr "Systemspråk" + +#: ../../mod/admin.php:424 +msgid "System theme" +msgstr "Systemtema" + +#: ../../mod/admin.php:424 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Förvalt systemtema - kan åsidosättas i användarprofiler - ändra temainställningar" + +#: ../../mod/admin.php:425 +msgid "Mobile system theme" +msgstr "Mobilt systemtema" + +#: ../../mod/admin.php:425 +msgid "Theme for mobile devices" +msgstr "Tema för mobila enheter" + +#: ../../mod/admin.php:427 +msgid "Enable Diaspora Protocol" +msgstr "Aktivera protokoll för Diaspora" + +#: ../../mod/admin.php:427 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "Kommunicera med Diaspora och Friendica - experimentellt" + +#: ../../mod/admin.php:428 +msgid "Allow Feeds as Connections" +msgstr "Tillåt flöden som kontakter" + +#: ../../mod/admin.php:428 +msgid "(Heavy system resource usage)" +msgstr "(systemresurskrävande)" + +#: ../../mod/admin.php:429 +msgid "Maximum image size" +msgstr "Maximal bildstorlek" + +#: ../../mod/admin.php:429 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximal storlek i byte för uppladdade bilder. Standard är 0, vilket innebär ingen storleksbegränsning." + +#: ../../mod/admin.php:430 +msgid "Does this site allow new member registration?" +msgstr "Tillåter den här servern nya medlemmar att registrera sig?" + +#: ../../mod/admin.php:431 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Vilket beskriver bäst kontotypen som erbjuds på den här hubben?" + +#: ../../mod/admin.php:432 +msgid "Register text" +msgstr "Registreringstext" + +#: ../../mod/admin.php:432 +msgid "Will be displayed prominently on the registration page." +msgstr "Visas tydligt på registreringssidan." + +#: ../../mod/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "Konto övergivet efter x dagar" + +#: ../../mod/admin.php:433 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Slösar inte systemresurser genom att fråga externa servrar efter övergivna konton. 0 innebär ingen tidsbegränsning." + +#: ../../mod/admin.php:434 +msgid "Allowed friend domains" +msgstr "Tillåtna vändomäner" + +#: ../../mod/admin.php:434 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Kommaseparerad lista med domäner som tillåts att upprätta ett vänförhållande med den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner." + +#: ../../mod/admin.php:435 +msgid "Allowed email domains" +msgstr "Tillåtna e-postdomäner" + +#: ../../mod/admin.php:435 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Kommaseparerad lista med domäner som tillåts i e-postadresser för registreringar på den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner." + +#: ../../mod/admin.php:436 +msgid "Block public" +msgstr "Blockera offentlig åtkomst" + +#: ../../mod/admin.php:436 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Välj för att blockera åtkomst till alla personliga sidor som annars skulle vara offentliga på den här servern om man inte är inloggad." + +#: ../../mod/admin.php:437 +msgid "Verify Email Addresses" +msgstr "Bekräfta e-postadress" + +#: ../../mod/admin.php:437 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Välj för att bekräfta e-postadresser som används för kontoregistrering (rekommenderas)." + +#: ../../mod/admin.php:438 +msgid "Force publish" +msgstr "Tvinga publicering" + +#: ../../mod/admin.php:438 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Välj för att tvinga alla profiler på den här servern att listas i serverkatalogen." + +#: ../../mod/admin.php:439 +msgid "Disable discovery tab" +msgstr "Inaktivera upptäck-fliken" + +#: ../../mod/admin.php:439 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Ta bort fliken i nätverksvyn med offentligt innehåll som hämtas från källor valda för den här servern." + +#: ../../mod/admin.php:440 +msgid "No login on Homepage" +msgstr "Ingen inloggning på hemsidan" + +#: ../../mod/admin.php:440 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "Välj för att gömma inloggningsformuläret från serverns hemsida för oinloggade besökare (t.ex. när du lägger in hemsideinnehållet via serverkanalen)." + +#: ../../mod/admin.php:442 +msgid "Proxy user" +msgstr "Proxyanvändare" + +#: ../../mod/admin.php:443 +msgid "Proxy URL" +msgstr "Proxy-URL" + +#: ../../mod/admin.php:444 +msgid "Network timeout" +msgstr "Nätverkstimeout" + +#: ../../mod/admin.php:444 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Värde i sekunder. Sätt till 0 för obegränsat (ej rekommenderat)." + +#: ../../mod/admin.php:445 +msgid "Delivery interval" +msgstr "Leveransintervall" + +#: ../../mod/admin.php:445 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Fördröj leveransprocesser som görs i bakgrunden så här många sekunder för att reducera systembelastningen. Rekommenderat: 4-5 för delade värdar, 2-3 för virtuella privata servrar. 0-1 för stora dedikerade servrar." + +#: ../../mod/admin.php:446 +msgid "Poll interval" +msgstr "Hämtningsintervall" + +#: ../../mod/admin.php:446 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Fördröj hämtningsprocesser som görs i bakgrunden så här många sekunder för att reducera systembelastningen. Om 0 används leveransintervallet." + +#: ../../mod/admin.php:447 +msgid "Maximum Load Average" +msgstr "Maximal genomsnittsbelastning" + +#: ../../mod/admin.php:447 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximal systembelastning innan leverans- och hämtningsprocesser skjuts upp - standard är 50." + +#: ../../mod/admin.php:503 +msgid "No server found" +msgstr "Ingen server hittad" + +#: ../../mod/admin.php:510 ../../mod/admin.php:735 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:510 +msgid "for channel" +msgstr "för kanal" + +#: ../../mod/admin.php:510 +msgid "on server" +msgstr "på server" + +#: ../../mod/admin.php:510 +msgid "Status" +msgstr "Status" + +#: ../../mod/admin.php:531 +msgid "Update has been marked successful" +msgstr "Uppdatering har markerats som genomförd" + +#: ../../mod/admin.php:541 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Körning av %s misslyckades. Kontrollera systemloggarna." + +#: ../../mod/admin.php:544 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Uppdatering %s genomfördes utan problem." + +#: ../../mod/admin.php:548 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Uppdatering %s returnerade ingen status. Oklart om den lyckades." + +#: ../../mod/admin.php:551 +#, php-format +msgid "Update function %s could not be found." +msgstr "Uppdateringsfunktion %s kunde inte hittas." + +#: ../../mod/admin.php:566 +msgid "No failed updates." +msgstr "Inga misslyckade uppdateringar." + +#: ../../mod/admin.php:570 +msgid "Failed Updates" +msgstr "Misslyckade uppdateringar" + +#: ../../mod/admin.php:572 +msgid "Mark success (if update was manually applied)" +msgstr "Markera som genomförd (om uppdateringen gjordes manuellt)" + +#: ../../mod/admin.php:573 +msgid "Attempt to execute this update step automatically" +msgstr "Försök att köra den här uppdateringen automatiskt" + +#: ../../mod/admin.php:599 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s användare blockerad/avblockerad" +msgstr[1] "%s användare blockerade/avblockerade" + +#: ../../mod/admin.php:606 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s användare borttagen" +msgstr[1] "%s användare borttagna" + +#: ../../mod/admin.php:635 +msgid "Account not found" +msgstr "Konto hittas inte" + +#: ../../mod/admin.php:655 +#, php-format +msgid "User '%s' unblocked" +msgstr "Användare '%s' avblockerad" + +#: ../../mod/admin.php:655 +#, php-format +msgid "User '%s' blocked" +msgstr "Användare '%s' blockerad" + +#: ../../mod/admin.php:722 ../../mod/admin.php:734 +msgid "Users" +msgstr "Användare" + +#: ../../mod/admin.php:724 ../../mod/admin.php:860 +msgid "select all" +msgstr "välj alla" + +#: ../../mod/admin.php:725 +msgid "User registrations waiting for confirm" +msgstr "Användarregistreringar som inväntar bekräftelse" + +#: ../../mod/admin.php:726 +msgid "Request date" +msgstr "Ansökningsdatum" + +#: ../../mod/admin.php:727 +msgid "No registrations." +msgstr "Inga registreringar." + +#: ../../mod/admin.php:728 +msgid "Approve" +msgstr "Godkänn" + +#: ../../mod/admin.php:729 +msgid "Deny" +msgstr "Avslå" + +#: ../../mod/admin.php:735 +msgid "Register date" +msgstr "Registreringsdatum" + +#: ../../mod/admin.php:735 +msgid "Last login" +msgstr "Senaste inloggning" + +#: ../../mod/admin.php:735 +msgid "Expires" +msgstr "Upphör att gälla" + +#: ../../mod/admin.php:735 +msgid "Service Class" +msgstr "Tjänsteklass" + +#: ../../mod/admin.php:737 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valda användare kommer att tas bort!\\n\\nAllt dessa användare har postat på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" + +#: ../../mod/admin.php:738 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Användaren {0} kommer att tas bort!\\n\\nAllt den här användaren har postat på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" + +#: ../../mod/admin.php:771 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s kanal censurerad/avcensurerad" +msgstr[1] "%s kanaler censurerade/avcensurerade" + +#: ../../mod/admin.php:778 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanal borttagen" +msgstr[1] "%s kanaler borttagna" + +#: ../../mod/admin.php:797 +msgid "Channel not found" +msgstr "Kanal hittas inte" + +#: ../../mod/admin.php:808 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanalen '%s' togs bort" + +#: ../../mod/admin.php:819 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' avcensurerad" + +#: ../../mod/admin.php:819 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' censurerad" + +#: ../../mod/admin.php:862 +msgid "Censor" +msgstr "Censurera" + +#: ../../mod/admin.php:863 +msgid "Uncensor" +msgstr "Avcensurera" + +#: ../../mod/admin.php:866 +msgid "UID" +msgstr "UID" + +#: ../../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 "Valda kanaler kommer att tas bort!\\n\\nAllt som har postats i de kanalerna på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" + +#: ../../mod/admin.php:869 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kanalen {0} kommer att tas bort!\\n\\nAllt som har postats i den här kanalen på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" + +#: ../../mod/admin.php:908 +#, php-format +msgid "Plugin %s disabled." +msgstr "Tillägg %s inaktiverat." + +#: ../../mod/admin.php:912 +#, php-format +msgid "Plugin %s enabled." +msgstr "Tillägg %s aktiverat." + +#: ../../mod/admin.php:922 ../../mod/admin.php:1124 +msgid "Disable" +msgstr "Inaktivera" + +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +msgid "Enable" +msgstr "Aktivera" + +#: ../../mod/admin.php:950 ../../mod/admin.php:1155 +msgid "Toggle" +msgstr "Växla" + +#: ../../mod/admin.php:958 ../../mod/admin.php:1165 +msgid "Author: " +msgstr "Författare:" + +#: ../../mod/admin.php:959 ../../mod/admin.php:1166 +msgid "Maintainer: " +msgstr "Underhållare:" + +#: ../../mod/admin.php:1088 +msgid "No themes found." +msgstr "Inga teman funna." + +#: ../../mod/admin.php:1147 +msgid "Screenshot" +msgstr "Skärmdump" + +#: ../../mod/admin.php:1195 +msgid "[Experimental]" +msgstr "[Experimentellt]" + +#: ../../mod/admin.php:1196 +msgid "[Unsupported]" +msgstr "[Utan support]" + +#: ../../mod/admin.php:1223 +msgid "Log settings updated." +msgstr "Logginställningar uppdaterade." + +#: ../../mod/admin.php:1279 +msgid "Clear" +msgstr "Rensa" + +#: ../../mod/admin.php:1285 +msgid "Debugging" +msgstr "Avlusning" + +#: ../../mod/admin.php:1286 +msgid "Log file" +msgstr "Loggfil" + +#: ../../mod/admin.php:1286 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Måste vara skrivbar för webbservern. Anges relativt Reds toppkatalog." + +#: ../../mod/admin.php:1287 +msgid "Log level" +msgstr "Loggnivå" + +#: ../../mod/admin.php:1334 +msgid "New Profile Field" +msgstr "Nytt profilfält" + +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "Field nickname" +msgstr "Smeknamn på fält" + +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "System name of field" +msgstr "Systemnamn på fält" + +#: ../../mod/admin.php:1336 ../../mod/admin.php:1357 +msgid "Input type" +msgstr "Datatyp" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Field Name" +msgstr "Fältnamn" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Label on profile pages" +msgstr "Beteckning på profilsidor" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Help text" +msgstr "Hjälptext" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Additional info (optional)" +msgstr "Ytterligare info (frivilligt)" + +#: ../../mod/admin.php:1349 +msgid "Field definition not found" +msgstr "Fältdefinition hittades inte" + +#: ../../mod/admin.php:1355 +msgid "Edit Profile Field" +msgstr "Redigera profilfält" + +#: ../../mod/item.php:159 +msgid "Unable to locate original post." +msgstr "Kunde inte hitta originalinlägget." + +#: ../../mod/item.php:418 +msgid "Empty post discarded." +msgstr "Tomt inlägg förkastat." + +#: ../../mod/item.php:460 +msgid "Executable content type not permitted to this channel." +msgstr "Körbart innehåll tillåts inte i den här kanalen." + +#: ../../mod/item.php:898 +msgid "System error. Post not saved." +msgstr "Systemfel. Inlägget inte sparat." + +#: ../../mod/item.php:1373 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du har nått din gräns på %1$.0f toppnivåinlägg." + +#: ../../mod/item.php:1379 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du har nått din gräns på %1$.0f webbsidor." + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Gilla/ogilla" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Den här åtgärden fungerar bara för medlemmar." + +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Logga in med ditt RedMatrix-ID eller registrera dig som ny RedMatrix medlem för att fortsätta." + +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ogiltig begäran." + +#: ../../mod/like.php:119 +msgid "thing" +msgstr "sak" + +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanalen kan ej nås." + +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Föregående åtgärd återställdes." + +#: ../../mod/like.php:430 +msgid "Action completed." +msgstr "Åtgärden slutfördes." + +#: ../../mod/like.php:431 +msgid "Thank you." +msgstr "Tack." + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Gränsen för totalt antal inbjudningar överskriden." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Inte en giltig e-postadress." + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Gå med oss i Red" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Inbjudningsgränsen överskriden. Kontakta din serveradministratör." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Leverans av meddelande misslyckades." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d meddelande sänt." +msgstr[1] "%d meddelanden sända." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Du har inga fler inbjudningar kvar" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Skicka inbjudan" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Ange e-postadresser, en per rad:" + +#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Your message:" +msgstr "Ditt meddelande:" + +#: ../../mod/invite.php:132 +msgid "Please join my community on RedMatrix." +msgstr "Gå med mig i gemenskapen på RedMatrix." + +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Du kommer att behöva den här inbjudningskoden: " + +#: ../../mod/invite.php:135 +msgid "1. Register at any RedMatrix location (they are all inter-connected)" +msgstr "1. Skapa konto på en RedMatrix-server (alla är ihopkopplade)" + +#: ../../mod/invite.php:137 +msgid "2. Enter my RedMatrix network address into the site searchbar." +msgstr "2. Ange min RedMatrix-adress i webbplatsens sökruta." + +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "eller besök " + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klicka [Ta kontakt]" + +#: ../../mod/locs.php:19 ../../mod/locs.php:46 +msgid "Location not found." +msgstr "Platsen hittades inte." + +#: ../../mod/locs.php:50 +msgid "Primary location cannot be removed." +msgstr "Huvudplatsen kan inte tas bort." + +#: ../../mod/locs.php:82 +msgid "No locations found." +msgstr "Inga platser hittades." + +#: ../../mod/locs.php:95 +msgid "Manage Channel Locations" +msgstr "Hantera kanalplatser" + +#: ../../mod/locs.php:96 +msgid "Location (address)" +msgstr "Plats (adress)" + +#: ../../mod/locs.php:97 +msgid "Primary Location" +msgstr "Huvudplats" + +#: ../../mod/locs.php:98 +msgid "Drop location" +msgstr "Ta bort plats" + +#: ../../mod/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 "[Inbäddat innehåll - ladda om sidan för att visa]" + +#: ../../mod/layouts.php:110 +msgid "Help with this feature" +msgstr "Hjälp för den här funktionen" + +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "Layoutnamn" + +#: ../../mod/lockview.php:31 +msgid "Remote privacy information not available." +msgstr "Icke-lokal integritetsinformation är inte tillgänglig" + +#: ../../mod/lockview.php:52 +msgid "Visible to:" +msgstr "Kan ses av:" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Inga kontakter." + +#: ../../mod/viewconnections.php:71 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besök %ss profil [%s]" + +#: ../../mod/viewconnections.php:86 +msgid "View Connnections" +msgstr "Visa kontakter" + +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Hubb hittades inte." + +#: ../../mod/vote.php:97 +msgid "Total votes" +msgstr "Totalt antal röster" + +#: ../../mod/vote.php:98 +msgid "Average Rating" +msgstr "Genomsnittsbetyg" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Kunde inte hitta mottagare." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Kunde inte kommunicera med den begärda kanalen." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan inte bekräfta den begärda kanalen." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka." + +#: ../../mod/mail.php:135 +msgid "Message deleted." +msgstr "Meddelande borttaget." + +#: ../../mod/mail.php:152 +msgid "Message recalled." +msgstr "Meddelande återkallat." + +#: ../../mod/mail.php:218 +msgid "Send Private Message" +msgstr "Skicka privat meddelande." + +#: ../../mod/mail.php:219 ../../mod/mail.php:336 +msgid "To:" +msgstr "Till:" + +#: ../../mod/mail.php:224 ../../mod/mail.php:338 +msgid "Subject:" +msgstr "Ämne:" + +#: ../../mod/mail.php:235 +msgid "Send" +msgstr "Skicka" + +#: ../../mod/mail.php:262 +msgid "Message not found." +msgstr "Meddelandet hittades inte." + +#: ../../mod/mail.php:305 +msgid "Delete message" +msgstr "Ta bort meddelande" + +#: ../../mod/mail.php:306 +msgid "Recall message" +msgstr "Återkalla meddelande" + +#: ../../mod/mail.php:308 +msgid "Message has been recalled." +msgstr "Meddelandet har återkallats." + +#: ../../mod/mail.php:325 +msgid "Private Conversation" +msgstr "Privat konversation" + +#: ../../mod/mail.php:329 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "Ta bort konversation" + +#: ../../mod/mail.php:331 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida." + +#: ../../mod/mail.php:335 +msgid "Send Reply" +msgstr "Skicka svar" + +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "Väggfoton" + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profilträff" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil." + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "är intresserad av:" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Inga träffar" + +#: ../../mod/menu.php:31 +msgid "Menu updated." +msgstr "Meny uppdaterad." + +#: ../../mod/menu.php:35 +msgid "Unable to update menu." +msgstr "Kunde inte uppdatera meny." + +#: ../../mod/menu.php:40 +msgid "Menu created." +msgstr "Meny skapad." + +#: ../../mod/menu.php:44 +msgid "Unable to create menu." +msgstr "Kunde inte skapa meny." + +#: ../../mod/menu.php:76 +msgid "Manage Menus" +msgstr "Hantera menyer" + +#: ../../mod/menu.php:79 +msgid "Drop" +msgstr "Ta bort" + +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" +msgstr "Bokmärken tillåtna" + +#: ../../mod/menu.php:82 +msgid "Create a new menu" +msgstr "Skapa en ny meny" + +#: ../../mod/menu.php:83 +msgid "Delete this menu" +msgstr "Ta bort den här menyn" + +#: ../../mod/menu.php:84 ../../mod/menu.php:125 +msgid "Edit menu contents" +msgstr "Redigera menyinnehåll" + +#: ../../mod/menu.php:85 +msgid "Edit this menu" +msgstr "Redigera den här menyn" + +#: ../../mod/menu.php:96 +msgid "New Menu" +msgstr "Ny meny" + +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Menu name" +msgstr "Menynamn" + +#: ../../mod/menu.php:97 ../../mod/menu.php:126 +msgid "Must be unique, only seen by you" +msgstr "Måste vara unikt, ses endast av dig" + +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title" +msgstr "Menytitel" + +#: ../../mod/menu.php:98 ../../mod/menu.php:127 +msgid "Menu title as seen by others" +msgstr "Menytitel som andra ser den" + +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Allow bookmarks" +msgstr "Tillåt bokmärken" + +#: ../../mod/menu.php:99 ../../mod/menu.php:128 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menyn kan användas för att spara bokmärken" + +#: ../../mod/menu.php:114 +msgid "Menu deleted." +msgstr "Meny borttagen." + +#: ../../mod/menu.php:116 +msgid "Menu could not be deleted." +msgstr "Menyn kunde inte tas bort." + +#: ../../mod/menu.php:122 +msgid "Edit Menu" +msgstr "Redigera meny" + +#: ../../mod/menu.php:124 +msgid "Add or remove entries to this menu" +msgstr "Lägg till eller ta bort menyval" + #: ../../mod/message.php:41 msgid "Conversation removed." msgstr "Konversation borttagen." @@ -7003,419 +7829,183 @@ msgstr "Inga meddelanden." msgid "D, d M Y - g:i A" msgstr "D, j M Y - H:i" -#: ../../mod/pubsites.php:22 -msgid "Public Sites" -msgstr "Offentliga servrar" +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Lägg till en kanal" -#: ../../mod/pubsites.php:25 +#: ../../mod/new_channel.php:110 msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "De listade servrarna tillåter offentlig registrering i Red Matrix. Alla servrar i matrisen är sammankopplade, så medlemskap i en av dem medför medlemskap i matrisen som helhet. Vissa servrar kan kräva abonnemang eller erbjuda uppdelade tjänstenivåer. Leverantörslänkarna kan ge ytterligare detaljer." +"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 "En kanal är din egen samling av relaterade webbsidor. En kanal kan användas för att innehålla sociala nätverksprofiler, bloggar, konversationsgrupper och forum, fansidor, och mycket mer. Du kan skapa så många kanaler som din tjänsteleverantör tillåter." -#: ../../mod/pubsites.php:31 -msgid "Site URL" -msgstr "Server-URL" +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Exempel: \"Bob Jameson\", \"Lisa och hennes hästar\", \"Fotboll\", \"Flyggruppen\" " -#: ../../mod/pubsites.php:31 -msgid "Access Type" -msgstr "Åtkomsttyp" +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Välj ett kort smeknamn" -#: ../../mod/pubsites.php:31 -msgid "Registration Policy" -msgstr "Registreringspolicy" - -#: ../../mod/register.php:43 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon." - -#: ../../mod/register.php:49 +#: ../../mod/new_channel.php:115 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Välj huruvida du accepterar användarvillkoren. Registrering misslyckades." +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Ditt smeknamn används för att skapa en kanaladress som är lätt att komma ihåg (som en e-postadress) som du kan dela med andra." -#: ../../mod/register.php:77 -msgid "Passwords do not match." -msgstr "Lösenorden stämmer inte överens." +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Eller importera en befintlig kanal från en annan plats" -#: ../../mod/register.php:105 +#: ../../mod/new_channel.php:118 +msgid "Channel Type" +msgstr "Kanaltyp" + +#: ../../mod/new_channel.php:119 msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrering lyckades. Kontrollera din e-post för valideringsinstruktioner." +"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 "Välj en kanaltyp (som till exempel socialt nätverkande eller gemenskapsforum) och integritetskrav, så kan vi välja de bästa behörigheterna åt dig" -#: ../../mod/register.php:111 -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering väntar på att bli godkänd av serverägaren." +#: ../../mod/home.php:46 +msgid "Red Matrix - "The Network"" +msgstr "Red Matrix - "Nätverket"" -#: ../../mod/register.php:114 -msgid "Your registration can not be processed." -msgstr "Din registrering kan inte behandlas." - -#: ../../mod/register.php:147 -msgid "Registration on this site/hub is by approval only." -msgstr "Registrering på den här servern/hubben måste godkännas." - -#: ../../mod/register.php:148 -msgid "Register at another affiliated site/hub" -msgstr "Registrera dig på en annan ansluten server/hubb" - -#: ../../mod/register.php:156 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Antal dagliga registreringar som tillåts på den här servern har överskridits. Försök igen i morgon." - -#: ../../mod/register.php:167 -msgid "Terms of Service" -msgstr "användarvillkor" - -#: ../../mod/register.php:173 +#: ../../mod/home.php:101 #, php-format -msgid "I accept the %s for this website" -msgstr "Jag accepterar den här webbplatsens %s" +msgid "Welcome to %s" +msgstr "Välkommen till %s" -#: ../../mod/register.php:175 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Jag är över 13 år och accepterar den här webbplatsens %s" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ogiltigt ID på förfrågan." -#: ../../mod/register.php:194 -msgid "Membership on this site is by invitation only." -msgstr "Medlemskap på den här servern kan endast fås genom inbjudan." +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Förkasta" -#: ../../mod/register.php:195 -msgid "Please enter your invitation code" -msgstr "Ange din inbjudningskod" +#: ../../mod/notifications.php:94 ../../mod/notify.php:53 +msgid "No more system notifications." +msgstr "Inga fler systemnotifieringar." -#: ../../mod/register.php:198 -msgid "Your email address" -msgstr "Din e-postadress" +#: ../../mod/notifications.php:98 ../../mod/notify.php:57 +msgid "System Notifications" +msgstr "Systemnotifieringar" -#: ../../mod/register.php:199 -msgid "Choose a password" -msgstr "Välj ett lösenord" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Xchan-sökning" -#: ../../mod/register.php:200 -msgid "Please re-enter your password" -msgstr "Ange lösenordet igen" +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Sök efter xchan som börjar med (eller webbie): " -#: ../../mod/regmod.php:12 -msgid "Please login." -msgstr "Logga in." +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Kunde inte hitta din hubb." -#: ../../mod/removeme.php:49 -msgid "Remove This Channel" -msgstr "Ta bort den här kanalen" +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Sändning lyckades." -#: ../../mod/removeme.php:50 +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "ogiltig målsignatur" + +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installerad." + +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Felaktig app." + +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Bädda in kod" + +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "Redigera app" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "Skapa app" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Namn på app" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Adress (URL) för app" + +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "Fotoikon URL" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixlar - valfri" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versions-ID" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Pris på app" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Adress (URL) för att köpa app" + +#: ../../mod/poll.php:64 +msgid "Poll" +msgstr "Opinionsundersökning" + +#: ../../mod/poll.php:69 +msgid "View Results" +msgstr "Visa resultat" + +#: ../../mod/removeaccount.php:30 msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Det här kommer att ta bort den här kanalen helt från nätverket. När det är gjort går det inte att återställa den." +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Borttagning av konto tillåts inte inom 48 timmar efter att kontolösenordet har ändrats." -#: ../../mod/removeme.php:51 -msgid "Please enter your password for verification:" -msgstr "Ange ditt lösenord för att bekräfta:" +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Ta bort kontot" -#: ../../mod/removeme.php:52 -msgid "Remove this channel and all its clones from the network" -msgstr "Ta bort den här kanalen och alla dess kloner från nätverket" - -#: ../../mod/removeme.php:52 +#: ../../mod/removeaccount.php:58 msgid "" -"By default only the instance of the channel located on this hub will be " +"This will completely remove this account including all its channels from the" +" network. Once this has been done it is not recoverable." +msgstr "Det här kommer att ta bort kontot fullständigt från nätverket, inklusive alla dess kanaler. När detta har gjorts går det inte att ångra." + +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Ta bort kontot, alla dess kanaler och alla kanalkopior från nätverket" + +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " "removed from the network" -msgstr "Som standard kommer bara den här hubbens instans av kanalen att tas bort från nätverket" +msgstr "Som standard tas bara instanser av kanaler som finns på den här servern bort från nätverket" -#: ../../mod/removeme.php:53 -msgid "Remove Channel" -msgstr "Ta bort kanal" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Information om sidans ägare kunde inte hittas." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Albumet hittades inte." - -#: ../../mod/photos.php:119 ../../mod/photos.php:671 -msgid "Delete Album" -msgstr "Ta bort album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:954 -msgid "Delete Photo" -msgstr "Ta bort foto" - -#: ../../mod/photos.php:453 -msgid "No photos selected" -msgstr "Inga foton valda" - -#: ../../mod/photos.php:500 -msgid "Access to this item is restricted." -msgstr "Åtkomst till den här posten är begränsat." - -#: ../../mod/photos.php:576 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du har använt %1$.2f MB av %2$.2f MB fotoutrymme." - -#: ../../mod/photos.php:579 -#, php-format -msgid "You have used %1$.2f Mbytes of photo storage." -msgstr "Du har använt %1$.2f MB fotoutrymme." - -#: ../../mod/photos.php:598 -msgid "Upload Photos" -msgstr "Ladda upp foton" - -#: ../../mod/photos.php:602 ../../mod/photos.php:666 -msgid "New album name: " -msgstr "Namn på nytt album: " - -#: ../../mod/photos.php:603 -msgid "or existing album name: " -msgstr "eller befintligt albumnamn: " - -#: ../../mod/photos.php:604 -msgid "Do not show a status post for this upload" -msgstr "Visa inte en statusuppdatering för den här uppladdningen" - -#: ../../mod/photos.php:655 ../../mod/photos.php:677 ../../mod/photos.php:1126 -#: ../../mod/photos.php:1141 -msgid "Contact Photos" -msgstr "Kontaktfoton" - -#: ../../mod/photos.php:681 -msgid "Edit Album" -msgstr "Redigera album" - -#: ../../mod/photos.php:687 -msgid "Show Newest First" -msgstr "Visa nyast först" - -#: ../../mod/photos.php:689 -msgid "Show Oldest First" -msgstr "Visa äldst först" - -#: ../../mod/photos.php:732 ../../mod/photos.php:1173 -msgid "View Photo" -msgstr "Visa foto" - -#: ../../mod/photos.php:778 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Behörighet saknas. Åtkomst till den här posten kan vara begränsat." - -#: ../../mod/photos.php:780 -msgid "Photo not available" -msgstr "Foto inte tillgängligt" - -#: ../../mod/photos.php:840 -msgid "Use as profile photo" -msgstr "Använd som profilfoto" - -#: ../../mod/photos.php:864 -msgid "View Full Size" -msgstr "Visa fullstorlek" - -#: ../../mod/photos.php:938 -msgid "Edit photo" -msgstr "Redigera foto" - -#: ../../mod/photos.php:940 -msgid "Rotate CW (right)" -msgstr "Rotera medurs (höger)" - -#: ../../mod/photos.php:941 -msgid "Rotate CCW (left)" -msgstr "Rotera moturs (vänster)" - -#: ../../mod/photos.php:943 -msgid "New album name" -msgstr "Nytt albumnamn" - -#: ../../mod/photos.php:946 -msgid "Caption" -msgstr "Bildtext" - -#: ../../mod/photos.php:948 -msgid "Add a Tag" -msgstr "Lägg till en tagg" - -#: ../../mod/photos.php:951 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1104 -msgid "In This Photo:" -msgstr "På fotot:" - -#: ../../mod/photos.php:1179 -msgid "View Album" -msgstr "Visa album" - -#: ../../mod/photos.php:1188 -msgid "Recent Photos" -msgstr "Nya foton" - -#: ../../mod/mood.php:138 -msgid "Mood" -msgstr "Sinnesstämning" - -#: ../../mod/mood.php:139 -msgid "Set your current mood and tell your friends" -msgstr "Ange din nuvarande sinnesstämning och visa för dina vänner" - -#: ../../mod/ping.php:192 -msgid "sent you a private message" -msgstr "skickade ett privat meddelande till dig" - -#: ../../mod/ping.php:250 -msgid "added your channel" -msgstr "lade till din kanal" - -#: ../../mod/ping.php:294 -msgid "posted an event" -msgstr "skapade en händelse" - -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 -#: ../../view/theme/blogga/php/config.php:69 -msgid "Theme settings" -msgstr "Temainställningar" - -#: ../../view/theme/redbasic/php/config.php:99 -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Välj variant" - -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Narrow navbar" -msgstr "Smal navigeringslist" - -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar background colour" -msgstr "Navigeringslistens bakgrundsfärg" - -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Navigation bar gradient top colour" -msgstr "Övre gradientfärg i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Navigation bar gradient bottom colour" -msgstr "Undre gradientfärg i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Navigation active button gradient top colour" -msgstr "Övre gradientfärg på aktiv knapp i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation active button gradient bottom colour" -msgstr "Undre gradientfärg på aktiv knapp i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar border colour " -msgstr "Färg på navigeringslistens kant" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar icon colour " -msgstr "Färg på ikoner i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation bar active icon colour " -msgstr "Färg på aktiv ikon i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "link colour" -msgstr "Länkfärg" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set font-colour for banner" -msgstr "Välj textfärg för sidhuvudet" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set the background colour" -msgstr "Välj bakgrundsfärg" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set the background image" -msgstr "Välj bakgrundsbild" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set the background colour of items" -msgstr "Välj bakgrundsfärg för inlägg" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set the opacity of items" -msgstr "Välj opacitet för inlägg" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the basic colour for item icons" -msgstr "Välj basfärg för inläggsikoner" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the hover colour for item icons" -msgstr "Välj färg på inläggsikon under muspekare" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set font-size for the entire application" -msgstr "Välj textstorlek för hela applikationen" - -#: ../../view/theme/redbasic/php/config.php:118 -#: ../../view/theme/apw/php/config.php:261 -msgid "Set font-size for posts and comments" -msgstr "Välj textstorlek för inlägg och kommentarer" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set font-colour for posts and comments" -msgstr "Välj textfärg för inlägg och kommentarer" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set radius of corners" -msgstr "Välj hörnradie" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set shadow depth of photos" -msgstr "Välj skuggdjup för foton" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set maximum width of conversation regions" -msgstr "Välj maxbredd på konversationsfält" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Center conversation regions" -msgstr "Centrera konversationsfält" - -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Välj lägsta opacitet för navigeringslisten - för att dölja den" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set size of conversation author photo" -msgstr "Välj storlek på foto för trådskapare" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set size of followup author photos" -msgstr "Välj storlek på svarande personers foton" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Sloppy photo albums" -msgstr "Oordnade fotoalbum" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Are you a clean desk or a messy desk person?" -msgstr "Föredrar du ett tomt eller stökigt skrivbord?" +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Inga tjänsteklassbegränsningar hittades." #: ../../view/theme/apw/php/config.php:202 #: ../../view/theme/apw/php/config.php:236 msgid "Schema Default" -msgstr "Temavariantens standard" +msgstr "Schemats standard" #: ../../view/theme/apw/php/config.php:203 msgid "Sans-Serif" @@ -7423,7 +8013,24 @@ msgstr "Sans-serif" #: ../../view/theme/apw/php/config.php:204 msgid "Monospace" -msgstr "Fast bredd" +msgstr "Monospace" + +#: ../../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 "Temainställningar" + +#: ../../view/theme/apw/php/config.php:260 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set scheme" +msgstr "Välj variant" + +#: ../../view/theme/apw/php/config.php:261 +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Välj textstorlek för inlägg och kommentarer" #: ../../view/theme/apw/php/config.php:262 msgid "Set font face" @@ -7435,14 +8042,14 @@ msgstr "Välj ikontema" #: ../../view/theme/apw/php/config.php:264 msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Välj stor skuggstorlek, standard 15px 15px 15px" +msgstr "Välj stor skuggstorlek, standard 15px 15px 15px " #: ../../view/theme/apw/php/config.php:265 msgid "Set small shadow size, default 5px 5px 5px" msgstr "Välj liten skuggstorlek, standard 5px 5px 5px" #: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow colour, default #000" +msgid "Set shadow color, default #000" msgstr "Välj skuggfärg, standard #000" #: ../../view/theme/apw/php/config.php:267 @@ -7459,10 +8066,10 @@ msgstr "Välj bakgrundsbild" #: ../../view/theme/apw/php/config.php:270 msgid "Set background attachment" -msgstr "Välj bakgrundsfixering" +msgstr "Välj fixerad bakgrund" #: ../../view/theme/apw/php/config.php:271 -msgid "Set background colour" +msgid "Set background color" msgstr "Välj bakgrundsfärg" #: ../../view/theme/apw/php/config.php:272 @@ -7470,31 +8077,31 @@ msgid "Set section background image" msgstr "Välj bakgrundsbild för avsnitt" #: ../../view/theme/apw/php/config.php:273 -msgid "Set section background colour" +msgid "Set section background color" msgstr "Välj bakgrundsfärg för avsnitt" #: ../../view/theme/apw/php/config.php:274 -msgid "Set colour of items - use hex" +msgid "Set color of items - use hex" msgstr "Välj färg på inlägg - använd hex" #: ../../view/theme/apw/php/config.php:275 -msgid "Set colour of links - use hex" +msgid "Set color of links - use hex" msgstr "Välj färg på länkar - använd hex" #: ../../view/theme/apw/php/config.php:276 msgid "Set max-width for items. Default 400px" -msgstr "Välj maxbredd för inlägg. Standard 400px" +msgstr "Välj största bredd för inlägg. Standard 400px" #: ../../view/theme/apw/php/config.php:277 msgid "Set min-width for items. Default 240px" -msgstr "Välj minbredd för inlägg. Standard 240px" +msgstr "Välj minsta bredd för inlägg. Standard 240px" #: ../../view/theme/apw/php/config.php:278 msgid "Set the generic content wrapper width. Default 48%" msgstr "Välj bredd på fältet för allmänt innehåll. Standard 48%" #: ../../view/theme/apw/php/config.php:279 -msgid "Set colour of fonts - use hex" +msgid "Set color of fonts - use hex" msgstr "Välj textfärg - använd hex" #: ../../view/theme/apw/php/config.php:280 @@ -7541,56 +8148,180 @@ msgstr "Vänster offset för sidoelement" msgid "Right offset of the aside element" msgstr "Höger offset för sidoelement" -#: ../../view/theme/blogga/view/theme/blog/config.php:47 #: ../../view/theme/blogga/php/config.php:47 +#: ../../view/theme/blogga/view/theme/blog/config.php:47 msgid "None" msgstr "Inget" -#: ../../view/theme/blogga/view/theme/blog/config.php:70 #: ../../view/theme/blogga/php/config.php:70 +#: ../../view/theme/blogga/view/theme/blog/config.php:70 msgid "Header image" msgstr "Rubrikbild" -#: ../../view/theme/blogga/view/theme/blog/config.php:71 #: ../../view/theme/blogga/php/config.php:71 +#: ../../view/theme/blogga/view/theme/blog/config.php:71 msgid "Header image only on profile pages" msgstr "Rubrikbild endast på profilsidor" -#: ../../boot.php:1252 +#: ../../view/theme/redbasic/php/config.php:84 +msgid "Light (Red Matrix default)" +msgstr "Light (standard för Red Matrix)" + +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Narrow navbar" +msgstr "Smal navigeringslist" + +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Navigation bar background color" +msgstr "Navigeringslistens bakgrundsfärg" + +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Navigation bar gradient top color" +msgstr "Övre gradientfärg i navigeringslisten" + +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Navigation bar gradient bottom color" +msgstr "Undre gradientfärg i navigeringslisten" + +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Navigation active button gradient top color" +msgstr "Övre gradientfärg på aktiv knapp i navigeringslisten" + +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Navigation active button gradient bottom color" +msgstr "Undre gradientfärg på aktiv knapp i navigeringslisten" + +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Navigation bar border color " +msgstr "Färg på navigeringslistens kant" + +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Navigation bar icon color " +msgstr "Färg på ikoner i navigeringslisten" + +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Navigation bar active icon color " +msgstr "Färg på aktiv ikon i navigeringslisten" + +#: ../../view/theme/redbasic/php/config.php:113 +msgid "link color" +msgstr "Länkfärg" + +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set font-color for banner" +msgstr "Välj textfärg för sidhuvudet" + +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set the background color" +msgstr "Välj bakgrundsfärg" + +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set the background image" +msgstr "Välj bakgrundsbild" + +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set the background color of items" +msgstr "Välj bakgrundsfärg för inlägg" + +#: ../../view/theme/redbasic/php/config.php:118 +msgid "Set the background color of comments" +msgstr "Välj bakgrundsfärg för kommentarer" + +#: ../../view/theme/redbasic/php/config.php:119 +msgid "Set the border color of comments" +msgstr "Välj kantfärg för kommentarer" + +#: ../../view/theme/redbasic/php/config.php:120 +msgid "Set the indent for comments" +msgstr "Välj indrag för kommentarer" + +#: ../../view/theme/redbasic/php/config.php:121 +msgid "Set the basic color for item icons" +msgstr "Välj basfärg för inläggsikoner" + +#: ../../view/theme/redbasic/php/config.php:122 +msgid "Set the hover color for item icons" +msgstr "Välj färg på inläggsikon under muspekare" + +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Set font-size for the entire application" +msgstr "Välj textstorlek för hela applikationen" + +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-color for posts and comments" +msgstr "Välj textfärg för inlägg och kommentarer" + +#: ../../view/theme/redbasic/php/config.php:126 +msgid "Set radius of corners" +msgstr "Välj hörnradie" + +#: ../../view/theme/redbasic/php/config.php:127 +msgid "Set shadow depth of photos" +msgstr "Välj skuggdjup för foton" + +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Set maximum width of conversation regions" +msgstr "Välj maxbredd på konversationsfält" + +#: ../../view/theme/redbasic/php/config.php:129 +msgid "Center conversation regions" +msgstr "Centrera konversationsfält" + +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Set minimum opacity of nav bar - to hide it" +msgstr "Välj lägsta opacitet för navigeringslisten - för att dölja den" + +#: ../../view/theme/redbasic/php/config.php:131 +msgid "Set size of conversation author photo" +msgstr "Välj storlek på foto för trådskapare" + +#: ../../view/theme/redbasic/php/config.php:132 +msgid "Set size of followup author photos" +msgstr "Välj storlek på svarande personers foton" + +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Sloppy photo albums" +msgstr "Oordnade fotoalbum" + +#: ../../view/theme/redbasic/php/config.php:133 +msgid "Are you a clean desk or a messy desk person?" +msgstr "Föredrar du ett tomt eller stökigt skrivbord?" + +#: ../../boot.php:1293 #, php-format msgid "Update %s failed. See error logs." msgstr "Uppdatering %s misslyckades. Se felloggar." -#: ../../boot.php:1255 +#: ../../boot.php:1296 #, php-format msgid "Update Error at %s" msgstr "Uppdateringsfel på %s" -#: ../../boot.php:1419 +#: ../../boot.php:1463 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Skapa ett konto för att komma åt tjänster och applikationer inom Red Matrix" -#: ../../boot.php:1447 +#: ../../boot.php:1489 msgid "Password" msgstr "Lösenord" -#: ../../boot.php:1448 +#: ../../boot.php:1490 msgid "Remember me" msgstr "Kom ihåg mig" -#: ../../boot.php:1453 +#: ../../boot.php:1493 msgid "Forgot your password?" msgstr "Glömt lösenordet?" -#: ../../boot.php:1518 +#: ../../boot.php:1567 msgid "permission denied" msgstr "behörighet saknas" -#: ../../boot.php:1519 +#: ../../boot.php:1568 msgid "Got Zot?" msgstr "Got Zot?" -#: ../../boot.php:1949 +#: ../../boot.php:2030 msgid "toggle mobile" msgstr "växla mobil" diff --git a/view/sv/passchanged_eml.tpl b/view/sv/passchanged_eml.tpl index f0ef1a755..222a6a40a 100644 --- a/view/sv/passchanged_eml.tpl +++ b/view/sv/passchanged_eml.tpl @@ -1,7 +1,8 @@ Hej {{$username}}, - Ditt lösenord har bytts enligt begäran. Spara den här informationen -(eller byt genast lösenordet till något du kan komma ihåg). + Ditt lösenord har bytts enligt begäran. Spara den här +informationen (eller byt genast lösenordet till något du +kan komma ihåg). Dina inloggningsuppgifter är: @@ -16,4 +17,4 @@ Du kan ändra lösenordet från kontoinställningarna när du har loggat in. Hälsningar, {{$sitename}}-administratören - + \ No newline at end of file diff --git a/view/sv/register_open_eml.tpl b/view/sv/register_open_eml.tpl index 248b45246..e0446c700 100644 --- a/view/sv/register_open_eml.tpl +++ b/view/sv/register_open_eml.tpl @@ -1,19 +1,19 @@ -Ett konto för den här e-postadressen har skapats på {{$sitename}}. +Ett konto för den här e-postadressen har skapats på {{$sitename}}. Inloggningsuppgifterna är: Serveradress: {{$siteurl}} Användarnamn: {{$email}} Lösenord: (lösenordet som angavs vid registreringen) -Om kontot skapades utan din vetskap och inte är önskat kan du besöka -webbplatsen och återställa lösenordet. Det låter dig ta bort kontot via -länkarna på sidan Inställningar, och vi ber om ursäkt om detta har lett -till besvär. +Om kontot skapades utan din vetskap och inte är önskat kan du besöka +webbplatsen och återställa lösenordet. Det låter dig ta bort kontot via +länkarna på sidan Inställningar, och vi ber om ursäkt om detta har lett +till besvär. Tack och välkommen till {{$sitename}}. Hälsningar, {{$sitename}}-administratören - + \ No newline at end of file diff --git a/view/sv/register_verify_eml.tpl b/view/sv/register_verify_eml.tpl index beb4f3ad6..a2d319c4e 100644 --- a/view/sv/register_verify_eml.tpl +++ b/view/sv/register_verify_eml.tpl @@ -1,6 +1,6 @@ -En begäran om registrering av en ny användare har mottagits på -{{$sitename}} och behöver ditt godkännande. +En begäran om registrering av en ny användare har mottagits på +{{$sitename}} och behöver ditt godkännande. Inloggningsuppgifterna är: @@ -22,4 +22,3 @@ För att avslå begäran och ta bort kontot, besök: Tack. - diff --git a/view/sv/register_verify_member.tpl b/view/sv/register_verify_member.tpl new file mode 100644 index 000000000..0e9dbb651 --- /dev/null +++ b/view/sv/register_verify_member.tpl @@ -0,0 +1,24 @@ + +Tack för att du har skapat ett konto på {{$sitename}}. + +Dina inloggningsuppgifter är: + +Serveradress: {{$siteurl}} +Användarnamn: {{$email}} + +Logga in med lösenordet som du valde vid registreringen. + +Vi behöver bekräfta din e-postadress för att ge dig full åtkomst. + +Om du registrerade det här kontot, följ den här länken: + +{{$siteurl}}/regver/allow/{{$hash}} + + +För att avbryta registreringen och ta bort kontot, gå till: + + +{{$siteurl}}/regver/deny/{{$hash}} + + +Tack. diff --git a/view/sv/strings.php b/view/sv/strings.php index 99dde6bed..77147f350 100644 --- a/view/sv/strings.php +++ b/view/sv/strings.php @@ -5,195 +5,8 @@ function string_plural_select_sv($n){ return ($n != 1);; }} ; -$a->strings["Categories"] = "Kategorier"; -$a->strings["Connect"] = "Ta kontakt"; -$a->strings["Ignore/Hide"] = "Ignorera/göm"; -$a->strings["Suggestions"] = "Förslag"; -$a->strings["See more..."] = "Se fler..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillåtna kontakter."; -$a->strings["Add New Connection"] = "Lägg till ny kontakt"; -$a->strings["Enter the channel address"] = "Ange kanaladressen"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exempel: bob@example.com, http://example.com/barbara"; -$a->strings["Notes"] = "Anteckningar"; -$a->strings["Save"] = "Spara"; -$a->strings["Remove term"] = "Ta bort uttryck"; -$a->strings["Saved Searches"] = "Sparade sökningar"; -$a->strings["add"] = "lägg till"; -$a->strings["Saved Folders"] = "Sparade mappar"; -$a->strings["Everything"] = "Allt"; -$a->strings["Archives"] = "Arkiv"; -$a->strings["Refresh"] = "Ladda om"; -$a->strings["Me"] = "Mig själv"; -$a->strings["Best Friends"] = "Bästa vänner"; -$a->strings["Friends"] = "Vänner"; -$a->strings["Co-workers"] = "Kollegor"; -$a->strings["Former Friends"] = "Tidigare vänner"; -$a->strings["Acquaintances"] = "Bekanta"; -$a->strings["Everybody"] = "Alla"; -$a->strings["Account settings"] = "Kontoinställningar"; -$a->strings["Channel settings"] = "Kanalinställningar"; -$a->strings["Additional features"] = "Tilläggsfunktioner"; -$a->strings["Feature settings"] = "Funktionsinställningar"; -$a->strings["Display settings"] = "Utseende"; -$a->strings["Connected apps"] = "Anslutna appar"; -$a->strings["Export channel"] = "Exportera kanal"; -$a->strings["Automatic Permissions (Advanced)"] = "Automatiska rättigheter (avancerat)"; -$a->strings["Premium Channel Settings"] = "Inställningar för premiumkanal"; -$a->strings["Channel Sources"] = "Kanalkällor"; -$a->strings["Settings"] = "Inställningar"; -$a->strings["Check Mail"] = "Hämta meddelanden"; -$a->strings["New Message"] = "Nytt meddelande"; -$a->strings["Chat Rooms"] = "Chattrum"; -$a->strings["Bookmarked Chatrooms"] = "Bokmärkta chattrum"; -$a->strings["Suggested Chatrooms"] = "Föreslagna chattrum"; -$a->strings[" and "] = " och "; -$a->strings["public profile"] = "offentlig profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ändrade %2\$s till "%3\$s""; -$a->strings["Visit %1\$s's %2\$s"] = "Besök %1\$ss %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har en uppdaterad %2\$s (har ändrat %3\$s)."; -$a->strings["Logout"] = "Logga ut"; -$a->strings["End this session"] = "Avsluta sessionen"; -$a->strings["Home"] = "Hem"; -$a->strings["Your posts and conversations"] = "Dina inlägg och konversationer"; -$a->strings["View Profile"] = "Visa profil"; -$a->strings["Your profile page"] = "Din profilsida"; -$a->strings["Edit Profiles"] = "Redigera profiler"; -$a->strings["Manage/Edit profiles"] = "Hantera/redigera profiler"; -$a->strings["Photos"] = "Foton"; -$a->strings["Your photos"] = "Dina foton"; -$a->strings["Files"] = "Filer"; -$a->strings["Your files"] = "Dina filer"; -$a->strings["Chat"] = "Chatt"; -$a->strings["Your chatrooms"] = "Dina chattrum"; -$a->strings["Events"] = "Händelser"; -$a->strings["Your events"] = "Dina händelser"; -$a->strings["Bookmarks"] = "Bokmärken"; -$a->strings["Your bookmarks"] = "Dina bokmärken"; -$a->strings["Webpages"] = "Webbsidor"; -$a->strings["Your webpages"] = "Dina webbsidor"; -$a->strings["Login"] = "Logga in"; -$a->strings["Sign in"] = "Logga in"; -$a->strings["%s - click to logout"] = "%s - klicka för att logga ut"; -$a->strings["Click to authenticate to your home hub"] = "Klicka för att autentisera mot din hemmahubb"; -$a->strings["Home Page"] = "Hemsida"; -$a->strings["Register"] = "Registrera"; -$a->strings["Create an account"] = "Skapa ett konto"; -$a->strings["Help"] = "Hjälp"; -$a->strings["Help and documentation"] = "Hjälp och dokumentation"; -$a->strings["Apps"] = "Appar"; -$a->strings["Addon applications, utilities, games"] = "Tilläggsapplikationer, verktyg, spel"; -$a->strings["Search"] = "Sök"; -$a->strings["Search site content"] = "Sök innehåll"; -$a->strings["Directory"] = "Katalog"; -$a->strings["Channel Locator"] = "Kanalfinnare"; -$a->strings["Matrix"] = "Matris"; -$a->strings["Your matrix"] = "Din matris"; -$a->strings["Mark all matrix notifications seen"] = "Märk alla matrisnotifieringar som lästa"; -$a->strings["Channel Home"] = "Kanalhem"; -$a->strings["Channel home"] = "Kanalhem"; -$a->strings["Mark all channel notifications seen"] = "Märk alla kanalnotifieringar som lästa"; -$a->strings["Connections"] = "Kontakter"; -$a->strings["Notices"] = "Meddelanden"; -$a->strings["Notifications"] = "Notifieringar"; -$a->strings["See all notifications"] = "Se alla notifieringar"; -$a->strings["Mark all system notifications seen"] = "Märk alla systemnotifieringar som lästa"; -$a->strings["Mail"] = "Privat meddelande"; -$a->strings["Private mail"] = "Privat meddelande"; -$a->strings["See all private messages"] = "Se alla privata meddelanden"; -$a->strings["Mark all private messages seen"] = "Märk alla privata meddelanden som lästa"; -$a->strings["Inbox"] = "Inkorg"; -$a->strings["Outbox"] = "Utkorg"; -$a->strings["Event Calendar"] = "Kalender"; -$a->strings["See all events"] = "Se alla händelser"; -$a->strings["Mark all events seen"] = "Märk alla händelser som lästa"; -$a->strings["Channel Select"] = "Välj kanal"; -$a->strings["Manage Your Channels"] = "Hantera dina kanaler"; -$a->strings["Account/Channel Settings"] = "Konto-/kanalinställningar"; -$a->strings["Manage/Edit Friends and Connections"] = "Hantera/redigera vänner och kontakter"; -$a->strings["Admin"] = "Administration"; -$a->strings["Site Setup and Configuration"] = "Serverinställning och -konfiguration"; -$a->strings["Nothing new here"] = "Inget nytt här"; -$a->strings["Please wait..."] = "Vänta..."; -$a->strings["l F d, Y \\@ g:i A"] = "l j F Y \\k\\l. H.i"; -$a->strings["Starts:"] = "Börjar:"; -$a->strings["Finishes:"] = "Slutar:"; -$a->strings["Location:"] = "Plats:"; -$a->strings["Public Timeline"] = "Offentlig tidslinje"; -$a->strings["New window"] = "Nytt fönster"; -$a->strings["Open the selected location in a different window or browser tab"] = "Öppna den valda platsen i ett annat fönster eller en annan webbläsarflik"; -$a->strings["General Features"] = "Allmänna funktioner"; -$a->strings["Content Expiration"] = "Tidsbegränsat innehåll"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Ta bort inlägg/kommentarer och/eller privata meddelanden efter en tid"; -$a->strings["Multiple Profiles"] = "Flera profiler"; -$a->strings["Ability to create multiple profiles"] = "Möjlighet att skapa flera profiler"; -$a->strings["Web Pages"] = "Webbsidor"; -$a->strings["Provide managed web pages on your channel"] = "Tillhandahåll ordnade webbsidor i din kanal"; -$a->strings["Private Notes"] = "Privata anteckningar"; -$a->strings["Enables a tool to store notes and reminders"] = "Aktivera ett verktyg för att spara anteckningar och påminnelser"; -$a->strings["Extended Identity Sharing"] = "Utökad identitetsdelning"; -$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Dela din identitet med alla webbplatser på Internet. Om inaktiverat är identiteten bara delad med platser i matrisen."; -$a->strings["Expert Mode"] = "Expertläge"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktivera expertläge för att tillåta avancerade inställningar"; -$a->strings["Premium Channel"] = "Premiumkanal"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Låter dig ange begränsningar och villkor för dem som vill ansluta till din kanal"; -$a->strings["Post Composition Features"] = "Skrivfunktioner"; -$a->strings["Richtext Editor"] = "Richtext-editor"; -$a->strings["Enable richtext editor"] = "Aktivera richtext-editor"; -$a->strings["Post Preview"] = "Förhandsgranskning"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Tillåt förhandsgranskning av inlägg och kommentarer innan de publiceras"; -$a->strings["Automatically import channel content from other channels or feeds"] = "Importera kanalinnehåll från andra kanaler eller strömmar automatiskt"; -$a->strings["Even More Encryption"] = "Ytterligare kryptering"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillåt änd-till-änd-kryptering av innehåll med en delad hemlig nyckel"; -$a->strings["Network and Stream Filtering"] = "Nätverk och strömfiltrering"; -$a->strings["Search by Date"] = "Sök på datum"; -$a->strings["Ability to select posts by date ranges"] = "Tillåter urval av inlägg baserat på datum"; -$a->strings["Collections Filter"] = "Sammanhangsfilter"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Aktivera en väljare för att visa nätverksinlägg från enbart valda sammanhang"; -$a->strings["Save search terms for re-use"] = "Spara sökuttryck för återanvändning"; -$a->strings["Network Personal Tab"] = "Personlig nätverksflik"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktivera en flik som visar endast de nätverksinlägg som du har deltagit i"; -$a->strings["Network New Tab"] = "Flik för nytt på nätverket"; -$a->strings["Enable tab to display all new Network activity"] = "Aktivera en flik som visar all ny nätverksaktivitet"; -$a->strings["Affinity Tool"] = "Samhörighetsverktyg"; -$a->strings["Filter stream activity by depth of relationships"] = "Filtrera strömaktivitet efter hur nära relationen är"; -$a->strings["Suggest Channels"] = "Föreslå kanaler"; -$a->strings["Show channel suggestions"] = "Visa förslag på kanaler"; -$a->strings["Post/Comment Tools"] = "Inläggs-/kommentarsverktyg"; -$a->strings["Edit Sent Posts"] = "Redigera sända inlägg"; -$a->strings["Edit and correct posts and comments after sending"] = "Redigera och korrigera inlägg och kommentarer efter att de skickats"; -$a->strings["Tagging"] = "Taggning"; -$a->strings["Ability to tag existing posts"] = "Möjlighet att tagga befintliga inlägg"; -$a->strings["Post Categories"] = "Inläggskategorier"; -$a->strings["Add categories to your posts"] = "Lägg till kategorier till dina inlägg"; -$a->strings["Ability to file posts under folders"] = "Möjlighet att lägga inlägg i mappar"; -$a->strings["Dislike Posts"] = "Ogilla inlägg"; -$a->strings["Ability to dislike posts/comments"] = "Möjlighet att ogilla inlägg/kommentarer"; -$a->strings["Star Posts"] = "Märk inlägg"; -$a->strings["Ability to mark special posts with a star indicator"] = "Möjlighet att märka speciella inlägg med en stjärna"; -$a->strings["Tag Cloud"] = "Taggmoln"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Tillhandahåll ett personligt taggmoln på din kanalsida"; -$a->strings["Unknown | Not categorised"] = "Okänd | Inte kategoriserad"; -$a->strings["Block immediately"] = "Blockera genast"; -$a->strings["Shady, spammer, self-marketer"] = "Skum, spammare, självförhärligande"; -$a->strings["Known to me, but no opinion"] = "Känner till, men ingen åsikt"; -$a->strings["OK, probably harmless"] = "OK, antagligen harmlös"; -$a->strings["Reputable, has my trust"] = "Ansedd, har mitt förtroende"; -$a->strings["Frequently"] = "Ofta"; -$a->strings["Hourly"] = "Varje timme"; -$a->strings["Twice daily"] = "Två gånger dagligen"; -$a->strings["Daily"] = "Dagligen"; -$a->strings["Weekly"] = "Varje vecka"; -$a->strings["Monthly"] = "Varje månad"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-post"; -$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["Cannot locate DNS info for database server '%s'"] = "Kan inte hitta DNS-information för databasserver '%s'"; +$a->strings["Profile Photos"] = "Profilfoton"; $a->strings["photo"] = "foto"; $a->strings["event"] = "händelse"; $a->strings["channel"] = "kanal"; @@ -204,11 +17,12 @@ $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gillar inte %2\$ss %3\$ $a->strings["%1\$s is now connected with %2\$s"] = "%1\$s har nu kontakt med %2\$s"; $a->strings["%1\$s poked %2\$s"] = "%1\$s puffade %2\$s"; $a->strings["poked"] = "puffade"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s är för tillfället %2\$s"; +$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s är %2\$s"; $a->strings["Select"] = "Välj"; $a->strings["Delete"] = "Ta bort"; $a->strings["Private Message"] = "Privat meddelande"; -$a->strings["Message is verified"] = "Meddelandet är bekräftat"; +$a->strings["Message signature validated"] = "Meddelandesignatur bekräftad"; +$a->strings["Message signature incorrect"] = "Meddelandesignatur felaktig"; $a->strings["View %s's profile @ %s"] = "Visa %ss profil på %s"; $a->strings["Categories:"] = "Kategorier:"; $a->strings["Filed under:"] = "Postat under:"; @@ -223,11 +37,14 @@ $a->strings["Delete Selected Items"] = "Ta bort valda poster"; $a->strings["View Source"] = "Visa källa"; $a->strings["Follow Thread"] = "Följ tråd"; $a->strings["View Status"] = "Visa status"; +$a->strings["View Profile"] = "Visa profil"; $a->strings["View Photos"] = "Visa foton"; $a->strings["Matrix Activity"] = "Matrisaktivitet"; +$a->strings["Connect"] = "Ta kontakt"; $a->strings["Edit Contact"] = "Redigera kontakt"; $a->strings["Send PM"] = "Skicka meddelande"; $a->strings["Poke"] = "Puffa"; +$a->strings["Unknown"] = "Okända"; $a->strings["%s likes this."] = "%s gillar det här."; $a->strings["%s doesn't like this."] = "%s gillar inte det här."; $a->strings["%2\$d people like this."] = array( @@ -245,7 +62,7 @@ $a->strings[", and %d other people"] = array( ); $a->strings["%s like this."] = "%s gillar det här."; $a->strings["%s don't like this."] = "%s gillar inte det här."; -$a->strings["Visible to everybody"] = "Synlig för alla"; +$a->strings["Visible to everybody"] = "Kan ses av alla"; $a->strings["Please enter a link URL:"] = "Ange en länkadress:"; $a->strings["Please enter a video link/URL:"] = "Ange en videolänkadress:"; $a->strings["Please enter an audio link/URL:"] = "Ange en ljudlänkadress"; @@ -299,100 +116,402 @@ $a->strings["Channel"] = "Kanal"; $a->strings["Status Messages and Posts"] = "Statusmeddelanden och inlägg"; $a->strings["About"] = "Om"; $a->strings["Profile Details"] = "Profildetaljer"; +$a->strings["Photos"] = "Foton"; $a->strings["Photo Albums"] = "Fotoalbum"; +$a->strings["Files"] = "Filer"; $a->strings["Files and Storage"] = "Filer och lagring"; $a->strings["Chatrooms"] = "Chattrum"; -$a->strings["Events and Calendar"] = "Händelser och kalender"; +$a->strings["Bookmarks"] = "Bokmärken"; $a->strings["Saved Bookmarks"] = "Sparade bokmärken"; +$a->strings["Webpages"] = "Webbsidor"; $a->strings["Manage Webpages"] = "Hantera webbsidor"; -$a->strings["Miscellaneous"] = "Övrigt"; -$a->strings["year"] = "år"; -$a->strings["month"] = "månad"; -$a->strings["day"] = "dag"; -$a->strings["never"] = "aldrig"; -$a->strings["less than a second ago"] = "mindre än en sekund sedan"; -$a->strings["years"] = "år"; -$a->strings["months"] = "månader"; -$a->strings["week"] = "vecka"; -$a->strings["weeks"] = "veckor"; -$a->strings["days"] = "dagar"; -$a->strings["hour"] = "timme"; -$a->strings["hours"] = "timmar"; -$a->strings["minute"] = "minut"; -$a->strings["minutes"] = "minuter"; -$a->strings["second"] = "sekund"; -$a->strings["seconds"] = "sekunder"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sedan"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan inte hitta DNS-information för databasserver '%s'"; -$a->strings["Image/photo"] = "Bild/foto"; -$a->strings["Encrypted content"] = "Krypterat innehåll"; -$a->strings["QR code"] = "QR-kod"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev följande %2\$s %3\$s"; -$a->strings["post"] = "post"; -$a->strings["$1 wrote:"] = "$1 skrev:"; +$a->strings["created a new post"] = "skapade ett nytt inlägg"; +$a->strings["commented on %s's post"] = "kommenterade %ss inlägg"; +$a->strings["Sort Options"] = "Sorteringsalternativ"; +$a->strings["Alphabetic"] = "Alfabetisk"; +$a->strings["Reverse Alphabetic"] = "Omvänd alfabetisk"; +$a->strings["Newest to Oldest"] = "Nyast till äldst"; +$a->strings["Enable Safe Search"] = "Aktivera säker sökning"; +$a->strings["Disable Safe Search"] = "Avaktivera säker sökning"; +$a->strings["Safe Mode"] = "Säkert läge"; +$a->strings["New Page"] = "Ny sida"; +$a->strings["Edit"] = "Redigera"; +$a->strings["View"] = "Visa"; +$a->strings["Actions"] = "Åtgärder"; +$a->strings["Page Link"] = "Länk"; +$a->strings["Title"] = "Titel"; +$a->strings["Created"] = "Skapad"; +$a->strings["Edited"] = "Ändrad"; +$a->strings["Missing room name"] = "Rumsnamn saknas"; +$a->strings["Duplicate room name"] = "Rumsnamnet finns redan"; +$a->strings["Invalid room specifier."] = "Ogiltig rumsbeskrivning."; +$a->strings["Room not found."] = "Rummet hittades inte."; +$a->strings["Permission denied."] = "Behörighet saknas."; +$a->strings["Room is full"] = "Rummet är fullt"; +$a->strings["Embedded content"] = "Inbäddat innehåll"; +$a->strings["Embedding disabled"] = "Inbäddning inaktiverat"; +$a->strings["Categories"] = "Kategorier"; +$a->strings["Apps"] = "Appar"; +$a->strings["System"] = "System"; +$a->strings["Create Personal App"] = "Skapa personlig app"; +$a->strings["Edit Personal App"] = "Redigera personlig app"; +$a->strings["Ignore/Hide"] = "Ignorera/göm"; +$a->strings["Suggestions"] = "Förslag"; +$a->strings["See more..."] = "Se fler..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillåtna kontakter."; +$a->strings["Add New Connection"] = "Lägg till ny kontakt"; +$a->strings["Enter the channel address"] = "Ange kanaladressen"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exempel: bob@example.com, http://example.com/barbara"; +$a->strings["Notes"] = "Anteckningar"; +$a->strings["Save"] = "Spara"; +$a->strings["Remove term"] = "Ta bort uttryck"; +$a->strings["Saved Searches"] = "Sparade sökningar"; +$a->strings["add"] = "lägg till"; +$a->strings["Saved Folders"] = "Sparade mappar"; +$a->strings["Everything"] = "Allt"; +$a->strings["Archives"] = "Arkiv"; +$a->strings["Refresh"] = "Ladda om"; +$a->strings["Me"] = "Mig själv"; +$a->strings["Best Friends"] = "Bästa vänner"; +$a->strings["Friends"] = "Vänner"; +$a->strings["Co-workers"] = "Kollegor"; +$a->strings["Former Friends"] = "Tidigare vänner"; +$a->strings["Acquaintances"] = "Bekanta"; +$a->strings["Everybody"] = "Alla"; +$a->strings["Account settings"] = "Kontoinställningar"; +$a->strings["Channel settings"] = "Kanalinställningar"; +$a->strings["Additional features"] = "Tilläggsfunktioner"; +$a->strings["Feature settings"] = "Funktionsinställningar"; +$a->strings["Display settings"] = "Utseende"; +$a->strings["Connected apps"] = "Anslutna appar"; +$a->strings["Export channel"] = "Exportera kanal"; +$a->strings["Export content"] = "Exportera innehåll"; +$a->strings["Connection Default Permissions"] = "Standardbehörighet för kontakt"; +$a->strings["Premium Channel Settings"] = "Inställningar för premiumkanal"; +$a->strings["Channel Sources"] = "Kanalkällor"; +$a->strings["Settings"] = "Inställningar"; +$a->strings["Messages"] = "Meddelanden"; +$a->strings["Check Mail"] = "Hämta meddelanden"; +$a->strings["New Message"] = "Nytt meddelande"; +$a->strings["Chat Rooms"] = "Chattrum"; +$a->strings["Bookmarked Chatrooms"] = "Bokmärkta chattrum"; +$a->strings["Suggested Chatrooms"] = "Föreslagna chattrum"; +$a->strings["Invalid data packet"] = "Ogiltigt datapaket"; +$a->strings["Unable to verify channel signature"] = "Kunde inte bekräfta kanalsignatur"; +$a->strings["Unable to verify site signature for %s"] = "Kunde inte bekräfta signatur för servern %s"; +$a->strings[" and "] = " och "; +$a->strings["public profile"] = "offentlig profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ändrade %2\$s till "%3\$s""; +$a->strings["Visit %1\$s's %2\$s"] = "Besök %1\$ss %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har en uppdaterad %2\$s (har ändrat %3\$s)."; +$a->strings["Attachments:"] = "Bilagor:"; +$a->strings["l F d, Y \\@ g:i A"] = "l j F Y \\k\\l. H.i"; +$a->strings["Redmatrix event notification:"] = "Händelsenotifiering från Redmatrix:"; +$a->strings["Starts:"] = "Börjar:"; +$a->strings["Finishes:"] = "Slutar:"; +$a->strings["Location:"] = "Plats:"; +$a->strings["parent"] = "en nivå upp"; +$a->strings["Collection"] = "Samling"; +$a->strings["Principal"] = "Bas"; +$a->strings["Addressbook"] = "Adressbok"; +$a->strings["Calendar"] = "Kalender"; +$a->strings["Schedule Inbox"] = "Schemainkorg"; +$a->strings["Schedule Outbox"] = "Schemautkorg"; +$a->strings["%1\$s used"] = "%1\$s använt"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s använt av %2\$s (%3\$s%)"; +$a->strings["Name"] = "Namn"; +$a->strings["Type"] = "Typ"; +$a->strings["Size"] = "Storlek"; +$a->strings["Last Modified"] = "Senast ändrad"; +$a->strings["Total"] = "Totalt"; +$a->strings["Create new folder"] = "Skapa ny mapp"; +$a->strings["Create"] = "Skapa"; +$a->strings["Upload file"] = "Ladda upp fil"; +$a->strings["Upload"] = "Ladda upp"; +$a->strings["%1\$s's bookmarks"] = "%1\$ss bokmärken"; +$a->strings["Channel is blocked on this site."] = "Kanalen är blockerad på den här servern."; +$a->strings["Channel location missing."] = "Kanalplats saknas."; +$a->strings["Response from remote channel was incomplete."] = "Svar från den andra kanalen var ofullständigt."; +$a->strings["Channel was deleted and no longer exists."] = "Kanalen har tagits bort och finns inte längre."; +$a->strings["Protocol disabled."] = "Protokoll inaktiverat."; +$a->strings["Channel discovery failed."] = "Kanalsökning misslyckades."; +$a->strings["local account not found."] = "hittade inte lokalt konto."; +$a->strings["Cannot connect to yourself."] = "Du kan inte kontakta dig själv."; +$a->strings["Default"] = "Standard"; +$a->strings["Frequently"] = "Ofta"; +$a->strings["Hourly"] = "Varje timme"; +$a->strings["Twice daily"] = "Två gånger dagligen"; +$a->strings["Daily"] = "Dagligen"; +$a->strings["Weekly"] = "Varje vecka"; +$a->strings["Monthly"] = "Varje månad"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-post"; +$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 inbjudan tillgänglig", + 1 => "%d inbjudningar tillgängliga", +); +$a->strings["Advanced"] = "Avancerat"; +$a->strings["Find Channels"] = "Hitta kanaler"; +$a->strings["Enter name or interest"] = "Ange namn eller intresse"; +$a->strings["Connect/Follow"] = "Ta kontakt/följ"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exempel: Robert Morgenstein, Fiske"; +$a->strings["Find"] = "Sök"; +$a->strings["Channel Suggestions"] = "Kanalförslag"; +$a->strings["Random Profile"] = "Slumpvald profil"; +$a->strings["Invite Friends"] = "Bjud in vänner"; +$a->strings["Advanced example: name=fred and country=iceland"] = "Avancerat exempel: name=fred and country=iceland"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemensam kontakt", + 1 => "%d gemensamma kontakter", +); +$a->strings["show more"] = "visa fler"; +$a->strings["Red Matrix Notification"] = "Red Matrix-meddelande"; +$a->strings["redmatrix"] = "redmatrix"; +$a->strings["Thank You,"] = "Tack,"; +$a->strings["%s Administrator"] = "Administratören för %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Meddelande] Nytt meddelande på %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s skickade ett nytt privat meddelande till dig på %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s skickade %2\$s till dig."; +$a->strings["a private message"] = "ett privat meddelande"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Besök %s för att visa och/eller svara på dina privata meddelanden."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]ett %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]%4\$ss %5\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]ditt %4\$s[/zrl]"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Meddelande] Kommentar till konversation #%1\$d av %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterade en sak/konversation du har följt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Besök %s för att visa och/eller svara på konversationen."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Meddelande] %s postade till din profilvägg"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s postade till din profilvägg på %3\$s"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s postade till [zrl=%3\$s]din vägg[/zrl]"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Meddelande] %s taggade dig"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s taggade dig på %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]taggade dig[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Meddelande] %1\$s puffade dig"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s puffade dig på %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]puffade dig[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Meddelande] %s taggade ditt inlägg"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s taggade ditt inlägg på %3\$s"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s taggade [zrl=%3\$s]ditt inlägg[/zrl]"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Meddelande] Presentation mottagen"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har fått en ny kontaktförfrågan från '%2\$s' på %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du har fått [zrl=%2\$s]en ny kontaktförfrågan[/zrl] från %3\$s."; +$a->strings["You may visit their profile at %s"] = "Du kan besöka deras profil på %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Besök %s för att bevilja eller avslå kontaktförfrågan."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Meddelande] Vänförslag mottaget"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har fått ett vänförslag från '%2\$s' på %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har fått [zrl=%2\$s]ett vänförslag[/zrl] angående %3\$s från %4\$s."; +$a->strings["Name:"] = "Namn:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Besök %s för att bevilja eller avslå förslaget."; +$a->strings["[Red:Notify]"] = "[Red:Notifiering]"; +$a->strings["This event has been added to your calendar."] = "Händelsen har lagts till i din kalender."; $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."] = "En borttagen grupp med det här namnet återskapades. Befintliga rättigheter till saker kan gälla för den här gruppen och alla framtida medlemmar. Om det här inte är vad du avsåg, skapa i stället en annan grupp med ett annat namn."; $a->strings["Default privacy group for new contacts"] = "Förvald integritetsgrupp för nya kontakter"; $a->strings["All Channels"] = "Alla kanaler"; $a->strings["edit"] = "redigera"; -$a->strings["Collections"] = "Sammanhang"; -$a->strings["Edit collection"] = "Redigera sammanhang"; -$a->strings["Create a new collection"] = "Skapa ett nytt sammanhang"; -$a->strings["Channels not in any collection"] = "Kanaler utan sammanhang"; -$a->strings["Delete this item?"] = "Ta bort den här posten?"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["show more"] = "visa fler"; -$a->strings["show fewer"] = "visa färre"; -$a->strings["+ Show More"] = "+ Visa fler"; -$a->strings["- Show Less"] = "- Visa färre"; -$a->strings["Password too short"] = "Lösenord för kort"; -$a->strings["Passwords do not match"] = "Lösenorden stämmer inte överens"; -$a->strings["everybody"] = "alla"; -$a->strings["Secret Passphrase"] = "Hemligt lösenord"; -$a->strings["Passphrase hint"] = "Lösenordsledtråd"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Observera: Rättigheter har ändrats men har ännu inte skickats in"; -$a->strings["timeago.prefixAgo"] = "för"; -$a->strings["timeago.prefixFromNow"] = "om"; -$a->strings["ago"] = "sedan"; -$a->strings["from now"] = " "; -$a->strings["less than a minute"] = "mindre än en minut"; -$a->strings["about a minute"] = "ungefär en minut"; -$a->strings["%d minutes"] = "%d minuter"; -$a->strings["about an hour"] = "ungefär en timme"; -$a->strings["about %d hours"] = "ungefär %d timmar"; -$a->strings["a day"] = "en dag"; -$a->strings["%d days"] = "%d dagar"; -$a->strings["about a month"] = "ungefär en månad"; -$a->strings["%d months"] = "%d månader"; -$a->strings["about a year"] = "ungefär ett år"; -$a->strings["%d years"] = "%d år"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; -$a->strings["No recipient provided."] = "Ingen mottagare angiven."; -$a->strings["[no subject]"] = "[inget ämne]"; -$a->strings["Unable to determine sender."] = "Kunde inte avgöra vem som är avsändare."; -$a->strings["Stored post could not be verified."] = "Den sparade posten kunde inte verifieras."; -$a->strings["Profile Photos"] = "Profilfoton"; -$a->strings["Permission denied."] = "Behörighet saknas."; -$a->strings["Item was not found."] = "Posten hittades inte."; -$a->strings["No source file."] = "Ingen källfil."; -$a->strings["Cannot locate file to replace"] = "Kan inte hitta fil att ersätta"; -$a->strings["Cannot locate file to revise/update"] = "Kan inte hitta fil att revidera/uppdatera"; -$a->strings["File exceeds size limit of %d"] = "Filen överskrider storleksbegränsningen %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd."; -$a->strings["Stored file could not be verified. Upload failed."] = "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad."; -$a->strings["Path not available."] = "Sökväg inte tillgänglig."; -$a->strings["Empty pathname"] = "Tom sökväg"; -$a->strings["duplicate filename or path"] = "filnamn eller sökväg finns redan"; -$a->strings["Path not found."] = "Sökväg hittas inte."; -$a->strings["mkdir failed."] = "mkdir misslyckades."; -$a->strings["database storage failed."] = "databaslagring misslyckades."; -$a->strings["%1\$s's bookmarks"] = "%1\$ss bokmärken"; -$a->strings["Visible to everybody"] = "Synlig för alla"; -$a->strings["Show"] = "Visa"; -$a->strings["Don't show"] = "Visa inte"; -$a->strings["Permissions"] = "Behörighet"; -$a->strings["Close"] = "Stäng"; +$a->strings["Collections"] = "Kretsar"; +$a->strings["Edit collection"] = "Redigera krets"; +$a->strings["Create a new collection"] = "Skapa en ny krets"; +$a->strings["Channels not in any collection"] = "Kanaler inte i någon krets"; +$a->strings["Image/photo"] = "Bild/foto"; +$a->strings["Encrypted content"] = "Krypterat innehåll"; +$a->strings["Install design element: "] = "Installera designelement: "; +$a->strings["QR code"] = "QR-kod"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev följande %2\$s %3\$s"; +$a->strings["post"] = "post"; +$a->strings["$1 spoiler"] = "$1 spoiler"; +$a->strings["$1 wrote:"] = "$1 skrev:"; +$a->strings["Tags"] = "Taggar"; +$a->strings["Keywords"] = "Nyckelord"; +$a->strings["have"] = "har"; +$a->strings["has"] = "har"; +$a->strings["want"] = "vill ha"; +$a->strings["wants"] = "vill ha"; +$a->strings["like"] = "gilla"; +$a->strings["likes"] = "gillar"; +$a->strings["dislike"] = "ogilla"; +$a->strings["dislikes"] = "ogillar"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "%n gillar detta", + 1 => "%n gillar detta", +); +$a->strings["Logout"] = "Logga ut"; +$a->strings["End this session"] = "Avsluta sessionen"; +$a->strings["Home"] = "Hem"; +$a->strings["Your posts and conversations"] = "Dina inlägg och konversationer"; +$a->strings["Your profile page"] = "Din profilsida"; +$a->strings["Edit Profiles"] = "Redigera profiler"; +$a->strings["Manage/Edit profiles"] = "Hantera/redigera profiler"; +$a->strings["Edit Profile"] = "Redigera profil"; +$a->strings["Edit your profile"] = "Redigera din profil"; +$a->strings["Your photos"] = "Dina foton"; +$a->strings["Your files"] = "Dina filer"; +$a->strings["Chat"] = "Chatt"; +$a->strings["Your chatrooms"] = "Dina chattrum"; +$a->strings["Your bookmarks"] = "Dina bokmärken"; +$a->strings["Your webpages"] = "Dina webbsidor"; +$a->strings["Login"] = "Logga in"; +$a->strings["Sign in"] = "Logga in"; +$a->strings["%s - click to logout"] = "%s - klicka för att logga ut"; +$a->strings["Remote authentication"] = "Fjärrinloggning"; +$a->strings["Click to authenticate to your home hub"] = "Klicka för att autentisera mot din hemmahubb"; +$a->strings["Home Page"] = "Hemsida"; +$a->strings["Register"] = "Skapa konto"; +$a->strings["Create an account"] = "Skapa ett konto"; +$a->strings["Help"] = "Hjälp"; +$a->strings["Help and documentation"] = "Hjälp och dokumentation"; +$a->strings["Applications, utilities, links, games"] = "Applikationer, verktyg, länkar, spel"; +$a->strings["Search"] = "Sök"; +$a->strings["Search site content"] = "Sök innehåll"; +$a->strings["Directory"] = "Katalog"; +$a->strings["Channel Directory"] = "Kanalkatalog"; +$a->strings["Matrix"] = "Matris"; +$a->strings["Your matrix"] = "Din matris"; +$a->strings["Mark all matrix notifications seen"] = "Märk alla matrisnotifieringar som lästa"; +$a->strings["Channel Home"] = "Kanalhem"; +$a->strings["Channel home"] = "Kanalhem"; +$a->strings["Mark all channel notifications seen"] = "Märk alla kanalnotifieringar som lästa"; +$a->strings["Connections"] = "Kontakter"; +$a->strings["Notices"] = "Meddelanden"; +$a->strings["Notifications"] = "Notifieringar"; +$a->strings["See all notifications"] = "Se alla notifieringar"; +$a->strings["Mark all system notifications seen"] = "Märk alla systemnotifieringar som lästa"; +$a->strings["Mail"] = "Privat meddelande"; +$a->strings["Private mail"] = "Privat meddelande"; +$a->strings["See all private messages"] = "Se alla privata meddelanden"; +$a->strings["Mark all private messages seen"] = "Märk alla privata meddelanden som lästa"; +$a->strings["Inbox"] = "Inkorg"; +$a->strings["Outbox"] = "Utkorg"; +$a->strings["Events"] = "Händelser"; +$a->strings["Event Calendar"] = "Kalender"; +$a->strings["See all events"] = "Se alla händelser"; +$a->strings["Mark all events seen"] = "Märk alla händelser som lästa"; +$a->strings["Channel Manager"] = "Kanalhanterare"; +$a->strings["Manage Your Channels"] = "Hantera dina kanaler"; +$a->strings["Account/Channel Settings"] = "Konto-/kanalinställningar"; +$a->strings["Admin"] = "Administration"; +$a->strings["Site Setup and Configuration"] = "Serverinställning och -konfiguration"; +$a->strings["Please wait..."] = "Vänta..."; +$a->strings["Can view my normal stream and posts"] = "Kan se mina normala strömmar och inlägg"; +$a->strings["Can view my default channel profile"] = "Kan se min standardkanalprofil"; +$a->strings["Can view my photo albums"] = "Kan se mina fotoalbum"; +$a->strings["Can view my connections"] = "Kan se mina kontakter"; +$a->strings["Can view my file storage"] = "Kan se mitt filutrymme"; +$a->strings["Can view my webpages"] = "Kan se mina webbsidor"; +$a->strings["Can send me their channel stream and posts"] = "Kan skicka sina kanalströmmar och inlägg till mig"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kan posta inlägg på min kanalsida (\"vägg\")"; +$a->strings["Can comment on or like my posts"] = "Kan kommentera eller gilla mina inlägg"; +$a->strings["Can send me private mail messages"] = "Kan skicka privata meddelanden till mig"; +$a->strings["Can post photos to my photo albums"] = "Kan lägga till foton i mitt fotoalbum"; +$a->strings["Can like/dislike stuff"] = "Kan gilla/ogilla saker"; +$a->strings["Profiles and things other than posts/comments"] = "Profiler och annat än inlägg/kommentarer"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan vidarebefordra till alla mina kanalkontakter genom @omnämnanden"; +$a->strings["Advanced - useful for creating group forum channels"] = "Avancerat - användbart för att skapa kanaler för gruppforum"; +$a->strings["Can chat with me (when available)"] = "Kan chatta med mig (när tillgänglig)"; +$a->strings["Can write to my file storage"] = "Har skrivrättigheter i mitt filutrymme"; +$a->strings["Can edit my webpages"] = "Kan redigera mina webbsidor"; +$a->strings["Can source my public posts in derived channels"] = "Kan använda mina offentliga inlägg i kanaler nedströms"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Ganska avancerat - väldigt användbart i öppna gemenskaper"; +$a->strings["Can administer my channel resources"] = "Kan administrera mina kanalresurser"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremt avancerat. Låt detta vara om du inte vet vad du gör"; +$a->strings["Social Networking"] = "Socialt nätverkande"; +$a->strings["Mostly Public"] = "Mestadels offentligt"; +$a->strings["Restricted"] = "Begränsat"; +$a->strings["Private"] = "Privat"; +$a->strings["Community Forum"] = "Gemenskapsforum"; +$a->strings["Feed Republish"] = "Vidarepublicering av flöde"; +$a->strings["Special Purpose"] = "Särskilt syfte"; +$a->strings["Celebrity/Soapbox"] = "Kändis/talarstol"; +$a->strings["Group Repository"] = "Gruppförråd"; +$a->strings["Other"] = "Annat"; +$a->strings["Custom/Expert Mode"] = "Anpassat/expertläge"; +$a->strings["New window"] = "Nytt fönster"; +$a->strings["Open the selected location in a different window or browser tab"] = "Öppna den valda platsen i ett annat fönster eller en annan webbläsarflik"; +$a->strings["User '%s' deleted"] = "Användare '%s' borttagen"; +$a->strings["General Features"] = "Allmänna funktioner"; +$a->strings["Content Expiration"] = "Tidsbegränsat innehåll"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Ta bort inlägg/kommentarer och/eller privata meddelanden efter en tid"; +$a->strings["Multiple Profiles"] = "Flera profiler"; +$a->strings["Ability to create multiple profiles"] = "Möjlighet att skapa flera profiler"; +$a->strings["Advanced Profiles"] = "Avancerade profiler"; +$a->strings["Additional profile sections and selections"] = "Fler profilinställningar"; +$a->strings["Profile Import/Export"] = "Profilimport/-export"; +$a->strings["Save and load profile details across sites/channels"] = "Spara och ladda profiluppgifter mellan webbplatser/kanaler"; +$a->strings["Web Pages"] = "Webbsidor"; +$a->strings["Provide managed web pages on your channel"] = "Tillhandahåll ordnade webbsidor i din kanal"; +$a->strings["Private Notes"] = "Privata anteckningar"; +$a->strings["Enables a tool to store notes and reminders"] = "Aktivera ett verktyg för att spara anteckningar och påminnelser"; +$a->strings["Navigation Channel Select"] = "Kanalväljare i navigation"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Välj kanal direkt från navigationslistens rullgardinsmeny"; +$a->strings["Extended Identity Sharing"] = "Utökad identitetsdelning"; +$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Dela din identitet med alla webbplatser på Internet. Om inaktiverat är identiteten bara delad med platser i matrisen."; +$a->strings["Expert Mode"] = "Expertläge"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktivera expertläge för att tillåta avancerade inställningar"; +$a->strings["Premium Channel"] = "Premiumkanal"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Låter dig ange begränsningar och villkor för dem som vill ansluta till din kanal"; +$a->strings["Post Composition Features"] = "Skrivfunktioner"; +$a->strings["Use Markdown"] = "Använd Markdown"; +$a->strings["Allow use of \"Markdown\" to format posts"] = "Tillåt att \"Markdown\" används för att formatera inlägg"; +$a->strings["Post Preview"] = "Förhandsgranskning"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Tillåt förhandsgranskning av inlägg och kommentarer innan de publiceras"; +$a->strings["Automatically import channel content from other channels or feeds"] = "Importera kanalinnehåll från andra kanaler eller flöden automatiskt"; +$a->strings["Even More Encryption"] = "Ytterligare kryptering"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillåt änd-till-änd-kryptering av innehåll med en delad hemlig nyckel"; +$a->strings["Network and Stream Filtering"] = "Nätverk och strömfiltrering"; +$a->strings["Search by Date"] = "Sök på datum"; +$a->strings["Ability to select posts by date ranges"] = "Tillåter urval av inlägg baserat på datum"; +$a->strings["Collections Filter"] = "Kretsfilter"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Aktivera en väljare för att visa nätverksinlägg från enbart valda kretsar"; +$a->strings["Save search terms for re-use"] = "Spara sökuttryck för återanvändning"; +$a->strings["Network Personal Tab"] = "Personlig nätverksflik"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktivera en flik som visar endast de nätverksinlägg som du har deltagit i"; +$a->strings["Network New Tab"] = "Flik för nytt på nätverket"; +$a->strings["Enable tab to display all new Network activity"] = "Aktivera en flik som visar all ny nätverksaktivitet"; +$a->strings["Affinity Tool"] = "Samhörighetsverktyg"; +$a->strings["Filter stream activity by depth of relationships"] = "Filtrera strömaktivitet efter hur nära relationen är"; +$a->strings["Suggest Channels"] = "Föreslå kanaler"; +$a->strings["Show channel suggestions"] = "Visa förslag på kanaler"; +$a->strings["Post/Comment Tools"] = "Inläggs-/kommentarsverktyg"; +$a->strings["Edit Sent Posts"] = "Redigera sända inlägg"; +$a->strings["Edit and correct posts and comments after sending"] = "Redigera och korrigera inlägg och kommentarer efter att de skickats"; +$a->strings["Tagging"] = "Taggning"; +$a->strings["Ability to tag existing posts"] = "Möjlighet att tagga befintliga inlägg"; +$a->strings["Post Categories"] = "Inläggskategorier"; +$a->strings["Add categories to your posts"] = "Lägg till kategorier till dina inlägg"; +$a->strings["Ability to file posts under folders"] = "Möjlighet att lägga inlägg i mappar"; +$a->strings["Dislike Posts"] = "Ogilla inlägg"; +$a->strings["Ability to dislike posts/comments"] = "Möjlighet att ogilla inlägg/kommentarer"; +$a->strings["Star Posts"] = "Märk inlägg"; +$a->strings["Ability to mark special posts with a star indicator"] = "Möjlighet att märka speciella inlägg med en stjärna"; +$a->strings["Tag Cloud"] = "Taggmoln"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Tillhandahåll ett personligt taggmoln på din kanalsida"; +$a->strings["Not a valid email address"] = "Inte en giltig e-postadress"; +$a->strings["Your email domain is not among those allowed on this site"] = "Din e-postdomän är inte bland de som tillåts på den här servern"; +$a->strings["Your email address is already registered at this site."] = "Din e-postadress är redan registrerad på den här servern."; +$a->strings["An invitation is required."] = "En inbjudan behövs."; +$a->strings["Invitation could not be verified."] = "Inbjudningen kunde inte bekräftas."; +$a->strings["Please enter the required information."] = "Ange den begärda informationen."; +$a->strings["Failed to store account information."] = "Misslyckades att spara kontoinformation."; +$a->strings["Registration confirmation for %s"] = "Registreringsbekräftelse för %s"; +$a->strings["Registration request at %s"] = "Registreringsförfrågan på %s"; +$a->strings["Administrator"] = "Administratör"; +$a->strings["your registration password"] = "ditt registreringslösenord"; +$a->strings["Registration details for %s"] = "Registreringsdetaljer för %s"; +$a->strings["Account approved."] = "Konto godkänt."; +$a->strings["Registration revoked for %s"] = "Registrering avslagen för %s"; +$a->strings["Account verified. Please login."] = "Konto bekräftat. Du kan nu logga in."; +$a->strings["Click here to upgrade."] = "Klicka här för att uppgradera."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Den här funktionen går utanför vad som anges i ditt avtal."; +$a->strings["This action is not available under your subscription plan."] = "Den här funktionen är inte tillgänglig med ditt avtal."; $a->strings["Unable to obtain identity information from database"] = "Kunde inte hämta från databasen"; $a->strings["Empty name"] = "Tomt namn"; $a->strings["Name too long"] = "För långt namn"; @@ -408,7 +527,6 @@ $a->strings["Change profile photo"] = "Bytprofilfoto"; $a->strings["Profiles"] = "Profiler"; $a->strings["Manage/edit profiles"] = "Hantera/redigera profiler"; $a->strings["Create New Profile"] = "Skapa ny profil"; -$a->strings["Edit Profile"] = "Redigera profil"; $a->strings["Profile Image"] = "Profilbild"; $a->strings["visible to everybody"] = "synlig för alla"; $a->strings["Edit visibility"] = "Redigera synlighet"; @@ -426,6 +544,7 @@ $a->strings["Event Reminders"] = "Händelsepåminnelser"; $a->strings["Events this week:"] = "Händelser den här veckan:"; $a->strings["Profile"] = "Profil"; $a->strings["Full Name:"] = "Fullständigt namn:"; +$a->strings["Like this channel"] = "Gilla den här kanalen"; $a->strings["j F, Y"] = "j F Y"; $a->strings["j F"] = "j F"; $a->strings["Birthday:"] = "Födelsedag:"; @@ -449,121 +568,103 @@ $a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underhålln $a->strings["Love/Romance:"] = "Kärlek/romantik:"; $a->strings["Work/employment:"] = "Arbete/sysselsättning:"; $a->strings["School/education:"] = "Skola/utbildning:"; -$a->strings["Edit"] = "Redigera"; -$a->strings["save to folder"] = "spara i mapp"; -$a->strings["add star"] = "lägg till märke"; -$a->strings["remove star"] = "ta bort märke"; -$a->strings["toggle star status"] = "växla märke på/av"; -$a->strings["starred"] = "märkt"; -$a->strings["add tag"] = "lägg till tagg"; -$a->strings["I like this (toggle)"] = "Jag gillar det här (växla)"; -$a->strings["like"] = "gilla"; -$a->strings["I don't like this (toggle)"] = "Jag gillar inte det här (växla)"; -$a->strings["dislike"] = "ogilla"; -$a->strings["Share this"] = "Dela det här"; -$a->strings["share"] = "dela"; -$a->strings["View %s's profile - %s"] = "Visa %ss profil - %s"; -$a->strings["to"] = "till"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Vägg-till-vägg"; -$a->strings["via Wall-To-Wall:"] = "via vägg-till-vägg"; -$a->strings["Bookmark Links"] = "Bokmärk länkar"; -$a->strings["%d comment"] = array( - 0 => "%d kommentar", - 1 => "%d kommentarer", -); -$a->strings["This is you"] = "Det här är du"; -$a->strings["Submit"] = "Skicka"; -$a->strings["Bold"] = "Fet"; -$a->strings["Italic"] = "Kursiv"; -$a->strings["Underline"] = "Understruken"; -$a->strings["Quote"] = "Citat"; -$a->strings["Code"] = "Kod"; -$a->strings["Image"] = "Bild"; -$a->strings["Link"] = "Länk"; -$a->strings["Video"] = "Video"; -$a->strings["Edit File properties"] = "Redigera filegenskaper"; +$a->strings["Like this thing"] = "Gilla den här saken"; +$a->strings["Permission denied"] = "Behörighet saknas"; +$a->strings["(Unknown)"] = "(Okänt)"; +$a->strings["Visible to anybody on the internet."] = "Kan ses av vem som helst på Internet."; +$a->strings["Visible to you only."] = "Kan bara ses av dig."; +$a->strings["Visible to anybody in this network."] = "Kan ses av alla på det här nätverket."; +$a->strings["Visible to anybody authenticated."] = "Kan ses av alla inloggade."; +$a->strings["Visible to anybody on %s."] = "Kan ses av alla på %s."; +$a->strings["Visible to all connections."] = "Kan ses av alla kontakter."; +$a->strings["Visible to approved connections."] = "Kan ses av godkända kontakter."; +$a->strings["Visible to specific connections."] = "Kan ses av valda kontakter."; +$a->strings["Item not found."] = "Posten hittades inte."; +$a->strings["Collection not found."] = "Kretsen hittades inte."; +$a->strings["Collection is empty."] = "Kretsen är tom."; +$a->strings["Collection: %s"] = "Krets: %s"; +$a->strings["Connection: %s"] = "Kontakt: %s"; +$a->strings["Connection not found."] = "Kontakten hittades inte."; +$a->strings["No recipient provided."] = "Ingen mottagare angiven."; +$a->strings["[no subject]"] = "[inget ämne]"; +$a->strings["Unable to determine sender."] = "Kunde inte avgöra vem som är avsändare."; +$a->strings["Stored post could not be verified."] = "Den sparade posten kunde inte verifieras."; $a->strings["view full size"] = "visa full storlek"; -$a->strings["prev"] = "föregående"; -$a->strings["first"] = "första"; -$a->strings["last"] = "sista"; -$a->strings["next"] = "nästa"; -$a->strings["older"] = "äldre"; -$a->strings["newer"] = "nyare"; -$a->strings["No connections"] = "Inga kontakter"; -$a->strings["%d Connection"] = array( - 0 => "%d kontakt", - 1 => "%d kontakter", -); -$a->strings["View Connections"] = "Visa kontakter"; -$a->strings["poke"] = "puffa"; -$a->strings["ping"] = "pinga"; -$a->strings["pinged"] = "pingade"; -$a->strings["prod"] = "stöt till"; -$a->strings["prodded"] = "stötte till"; -$a->strings["slap"] = "daska till"; -$a->strings["slapped"] = "daskade till"; -$a->strings["finger"] = "fingra på"; -$a->strings["fingered"] = "fingrade på"; -$a->strings["rebuff"] = "stöt tillbaka"; -$a->strings["rebuffed"] = "stötte tillbaks"; -$a->strings["happy"] = "glad"; -$a->strings["sad"] = "ledsen"; -$a->strings["mellow"] = "lugn"; -$a->strings["tired"] = "trött"; -$a->strings["perky"] = "uppåt"; -$a->strings["angry"] = "arg"; -$a->strings["stupified"] = "virrig"; -$a->strings["puzzled"] = "förbryllad"; -$a->strings["interested"] = "intresserad"; -$a->strings["bitter"] = "bitter"; -$a->strings["cheerful"] = "munter"; -$a->strings["alive"] = "pigg"; -$a->strings["annoyed"] = "irriterad"; -$a->strings["anxious"] = "bekymrad"; -$a->strings["cranky"] = "grinig"; -$a->strings["disturbed"] = "besvärad"; -$a->strings["frustrated"] = "frustrerad"; -$a->strings["motivated"] = "motiverad"; -$a->strings["relaxed"] = "avslappnad"; -$a->strings["surprised"] = "förvånad"; -$a->strings["Monday"] = "måndag"; -$a->strings["Tuesday"] = "tisdag"; -$a->strings["Wednesday"] = "onsdag"; -$a->strings["Thursday"] = "torsdag"; -$a->strings["Friday"] = "fredag"; -$a->strings["Saturday"] = "lördag"; -$a->strings["Sunday"] = "söndag"; -$a->strings["January"] = "januari"; -$a->strings["February"] = "februari"; -$a->strings["March"] = "mars"; -$a->strings["April"] = "april"; -$a->strings["May"] = "maj"; -$a->strings["June"] = "juni"; -$a->strings["July"] = "juli"; -$a->strings["August"] = "augusti"; -$a->strings["September"] = "september"; -$a->strings["October"] = "oktober"; -$a->strings["November"] = "november"; -$a->strings["December"] = "december"; -$a->strings["unknown.???"] = "okänt.???"; -$a->strings["bytes"] = "byte"; -$a->strings["remove category"] = "ta bort kategori"; -$a->strings["remove from file"] = "ta bort från fil"; -$a->strings["Click to open/close"] = "Klicka för att öppna/stänga"; -$a->strings["link to source"] = "länk till källa"; -$a->strings["Select a page layout: "] = "Välj en sidlayout: "; -$a->strings["default"] = "standard"; -$a->strings["Page content type: "] = "Typ av sidinnehåll: "; -$a->strings["Select an alternate language"] = "Välj ett alternativt språk"; -$a->strings["activity"] = "aktivitet"; -$a->strings["Design"] = "Design"; -$a->strings["Blocks"] = "Block"; -$a->strings["Menus"] = "Menyer"; -$a->strings["Layouts"] = "Layouter"; -$a->strings["Pages"] = "Sidor"; -$a->strings["created a new post"] = "skapade ett nytt inlägg"; -$a->strings["commented on %s's post"] = "kommenterade %ss inlägg"; +$a->strings["Item was not found."] = "Posten hittades inte."; +$a->strings["No source file."] = "Ingen källfil."; +$a->strings["Cannot locate file to replace"] = "Kan inte hitta fil att ersätta"; +$a->strings["Cannot locate file to revise/update"] = "Kan inte hitta fil att revidera/uppdatera"; +$a->strings["File exceeds size limit of %d"] = "Filen överskrider storleksbegränsningen %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd."; +$a->strings["Stored file could not be verified. Upload failed."] = "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad."; +$a->strings["Path not available."] = "Sökväg inte tillgänglig."; +$a->strings["Empty pathname"] = "Tom sökväg"; +$a->strings["duplicate filename or path"] = "filnamn eller sökväg finns redan"; +$a->strings["Path not found."] = "Sökväg hittas inte."; +$a->strings["mkdir failed."] = "mkdir misslyckades."; +$a->strings["database storage failed."] = "databaslagring misslyckades."; +$a->strings["Logged out."] = "Utloggad."; +$a->strings["Failed authentication"] = "Inloggning misslyckades"; +$a->strings["Login failed."] = "Inloggning misslyckades."; +$a->strings["Miscellaneous"] = "Övrigt"; +$a->strings["YYYY-MM-DD or MM-DD"] = "ÅÅÅÅ-MM-DD eller MM-DD"; +$a->strings["never"] = "aldrig"; +$a->strings["less than a second ago"] = "mindre än en sekund sedan"; +$a->strings["year"] = "år"; +$a->strings["years"] = "år"; +$a->strings["month"] = "månad"; +$a->strings["months"] = "månader"; +$a->strings["week"] = "vecka"; +$a->strings["weeks"] = "veckor"; +$a->strings["day"] = "dag"; +$a->strings["days"] = "dagar"; +$a->strings["hour"] = "timme"; +$a->strings["hours"] = "timmar"; +$a->strings["minute"] = "minut"; +$a->strings["minutes"] = "minuter"; +$a->strings["second"] = "sekund"; +$a->strings["seconds"] = "sekunder"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sedan"; +$a->strings["%1\$s's birthday"] = "%1\$ss födelsedag"; +$a->strings["Happy Birthday %1\$s"] = "Grattis på födelsedagen %1\$s"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild överskrider webbplatsens storleksbegränsning på %lu byte"; +$a->strings["Image file is empty."] = "Bildfil är tom."; +$a->strings["Unable to process image"] = "Kunde inte bearbeta bild"; +$a->strings["Photo storage failed."] = "Fotolagring misslyckades."; +$a->strings["Upload New Photos"] = "Ladda upp nya foton"; +$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."] = "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades."; +$a->strings["Delete this item?"] = "Ta bort den här posten?"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["[+] show all"] = "[+] visa alla"; +$a->strings["[-] show less"] = "[-] visa färre"; +$a->strings["[+] expand"] = "[+] fäll ut"; +$a->strings["[-] collapse"] = "[-] fäll ihop"; +$a->strings["Password too short"] = "Lösenord för kort"; +$a->strings["Passwords do not match"] = "Lösenorden stämmer inte överens"; +$a->strings["everybody"] = "alla"; +$a->strings["Secret Passphrase"] = "Hemligt lösenord"; +$a->strings["Passphrase hint"] = "Lösenordsledtråd"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Observera: Rättigheter har ändrats men har ännu inte skickats in"; +$a->strings["close all"] = "stäng alla"; +$a->strings["Nothing new here"] = "Inget nytt här"; +$a->strings["timeago.prefixAgo"] = "för"; +$a->strings["timeago.prefixFromNow"] = "om"; +$a->strings["ago"] = "sedan"; +$a->strings["from now"] = " "; +$a->strings["less than a minute"] = "mindre än en minut"; +$a->strings["about a minute"] = "ungefär en minut"; +$a->strings["%d minutes"] = "%d minuter"; +$a->strings["about an hour"] = "ungefär en timme"; +$a->strings["about %d hours"] = "ungefär %d timmar"; +$a->strings["a day"] = "en dag"; +$a->strings["%d days"] = "%d dagar"; +$a->strings["about a month"] = "ungefär en månad"; +$a->strings["%d months"] = "%d månader"; +$a->strings["about a year"] = "ungefär ett år"; +$a->strings["%d years"] = "%d år"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; $a->strings["Male"] = "Man"; $a->strings["Female"] = "Kvinna"; $a->strings["Currently Male"] = "Just nu man"; @@ -576,7 +677,6 @@ $a->strings["Transsexual"] = "Transsexuell"; $a->strings["Hermaphrodite"] = "Hermafrodit"; $a->strings["Neuter"] = "Könlös"; $a->strings["Non-specific"] = "Ospecificerat"; -$a->strings["Other"] = "Annat"; $a->strings["Undecided"] = "Obestämt"; $a->strings["Males"] = "Män"; $a->strings["Females"] = "Kvinnor"; @@ -621,164 +721,416 @@ $a->strings["Uncertain"] = "Osäkert"; $a->strings["It's complicated"] = "Det är komplicerat"; $a->strings["Don't care"] = "Bryr mig inte"; $a->strings["Ask me"] = "Fråga mig"; -$a->strings["Missing room name"] = "Rumsnamn saknas"; -$a->strings["Duplicate room name"] = "Rumsnamnet finns redan"; -$a->strings["Invalid room specifier."] = "Ogiltig rumsbeskrivning."; -$a->strings["Room not found."] = "Rummet hittades inte."; -$a->strings["Room is full"] = "Rummet är fullt"; -$a->strings["Default"] = "Standard"; -$a->strings["Tags"] = "Taggar"; -$a->strings["Keywords"] = "Nyckelord"; -$a->strings["have"] = "har"; -$a->strings["has"] = "har"; -$a->strings["want"] = "vill ha"; -$a->strings["wants"] = "vill ha"; -$a->strings["likes"] = "gillar"; -$a->strings["dislikes"] = "ogillar"; -$a->strings["Logged out."] = "Utloggad."; -$a->strings["Failed authentication"] = "Autentisering misslyckades"; -$a->strings["Login failed."] = "Inloggning misslyckades."; -$a->strings["Not a valid email address"] = "Inte en giltig e-postadress"; -$a->strings["Your email domain is not among those allowed on this site"] = "Din e-postdomän är inte bland de som tillåts på den här servern"; -$a->strings["Your email address is already registered at this site."] = "Din e-postadress är redan registrerad på den här servern."; -$a->strings["An invitation is required."] = "En inbjudan behövs."; -$a->strings["Invitation could not be verified."] = "Inbjudningen kunde inte bekräftas."; -$a->strings["Please enter the required information."] = "Ange den begärda informationen."; -$a->strings["Failed to store account information."] = "Misslyckades att spara kontoinformation."; -$a->strings["Registration request at %s"] = "Registreringsförfrågan på %s"; -$a->strings["Administrator"] = "Administratör"; -$a->strings["your registration password"] = "ditt registreringslösenord"; -$a->strings["Registration details for %s"] = "Registreringsdetaljer för %s"; -$a->strings["Account approved."] = "Konto godkänt."; -$a->strings["Registration revoked for %s"] = "Registrering avslagen för %s"; -$a->strings["Sort Options"] = "Sorteringsalternativ"; -$a->strings["Alphabetic"] = "Alfabetisk"; -$a->strings["Reverse Alphabetic"] = "Omvänd alfabetisk"; -$a->strings["Newest to Oldest"] = "Nyast till äldst"; -$a->strings["Enable Safe Search"] = "Aktivera säker sökning"; -$a->strings["Disable Safe Search"] = "Avaktivera säker sökning"; -$a->strings["Safe Mode"] = "Säkert läge"; -$a->strings["Red Matrix Notification"] = "Red Matrix-meddelande"; -$a->strings["redmatrix"] = "redmatrix"; -$a->strings["Thank You,"] = "Tack,"; -$a->strings["%s Administrator"] = "Administratören för %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Meddelande] Nytt meddelande på %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s skickade ett nytt privat meddelande till dig på %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s skickade %2\$s till dig."; -$a->strings["a private message"] = "ett privat meddelande"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Besök %s för att visa och/eller svara på dina privata meddelanden."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]ett %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]%4\$ss %5\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]ditt %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Meddelande] Kommentar till konversation #%1\$d av %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterade en sak/konversation du har följt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Besök %s för att visa och/eller svara på konversationen."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Meddelande] %s postade till din profilvägg"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s postade till din profilvägg på %3\$s"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s postade till [zrl=%3\$s]din vägg[/zrl]"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Meddelande] %s taggade dig"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s taggade dig på %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]taggade dig[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Meddelande] %1\$s puffade dig"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s puffade dig på %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]puffade dig[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Meddelande] %s taggade ditt inlägg"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s taggade ditt inlägg på %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s taggade [zrl=%3\$s]ditt inlägg[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Meddelande] Presentation mottagen"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har fått en ny kontaktförfrågan från '%2\$s' på %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du har fått [zrl=%2\$s]en ny kontaktförfrågan[/zrl] från %3\$s."; -$a->strings["You may visit their profile at %s"] = "Du kan besöka deras profil på %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Besök %s för att bevilja eller avslå kontaktförfrågan."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Meddelande] Vänförslag mottaget"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har fått ett vänförslag från '%2\$s' på %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har fått [zrl=%2\$s]ett vänförslag[/zrl] angående %3\$s från %4\$s."; -$a->strings["Name:"] = "Namn:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Besök %s för att bevilja eller avslå förslaget."; -$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild överskrider webbplatsens storleksbegränsning på %lu byte"; -$a->strings["Image file is empty."] = "Bildfil är tom."; -$a->strings["Unable to process image"] = "Kunde inte bearbeta bild"; -$a->strings["Photo storage failed."] = "Fotolagring misslyckades."; -$a->strings["Upload New Photos"] = "Ladda upp nya foton"; -$a->strings["%d invitation available"] = array( - 0 => "%d inbjudan tillgänglig", - 1 => "%d inbjudningar tillgängliga", +$a->strings["prev"] = "föregående"; +$a->strings["first"] = "första"; +$a->strings["last"] = "sista"; +$a->strings["next"] = "nästa"; +$a->strings["older"] = "äldre"; +$a->strings["newer"] = "nyare"; +$a->strings["No connections"] = "Inga kontakter"; +$a->strings["%d Connection"] = array( + 0 => "%d kontakt", + 1 => "%d kontakter", ); -$a->strings["Advanced"] = "Avancerat"; -$a->strings["Find Channels"] = "Hitta kanaler"; -$a->strings["Enter name or interest"] = "Ange namn eller intresse"; -$a->strings["Connect/Follow"] = "Ta kontakt/följ"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exempel: Robert Morgenstein, Fiske"; -$a->strings["Find"] = "Sök"; -$a->strings["Channel Suggestions"] = "Kanalförslag"; -$a->strings["Random Profile"] = "Slumpvald profil"; -$a->strings["Invite Friends"] = "Bjud in vänner"; -$a->strings["Exammple: name=fred and country=iceland"] = "Exempel: name=fred and country=iceland"; -$a->strings["Advanced Find"] = "Sök avancerat"; -$a->strings["%d connection in common"] = array( - 0 => "%d gemensam kontakt", - 1 => "%d gemensamma kontakter", +$a->strings["View Connections"] = "Visa kontakter"; +$a->strings["poke"] = "puffa"; +$a->strings["ping"] = "pinga"; +$a->strings["pinged"] = "pingade"; +$a->strings["prod"] = "stöt till"; +$a->strings["prodded"] = "stötte till"; +$a->strings["slap"] = "daska till"; +$a->strings["slapped"] = "daskade till"; +$a->strings["finger"] = "fingra på"; +$a->strings["fingered"] = "fingrade på"; +$a->strings["rebuff"] = "stöt tillbaka"; +$a->strings["rebuffed"] = "stötte tillbaks"; +$a->strings["happy"] = "glad"; +$a->strings["sad"] = "ledsen"; +$a->strings["mellow"] = "lugn"; +$a->strings["tired"] = "trött"; +$a->strings["perky"] = "uppåt"; +$a->strings["angry"] = "arg"; +$a->strings["stupified"] = "virrig"; +$a->strings["puzzled"] = "förbryllad"; +$a->strings["interested"] = "intresserad"; +$a->strings["bitter"] = "bitter"; +$a->strings["cheerful"] = "munter"; +$a->strings["alive"] = "pigg"; +$a->strings["annoyed"] = "irriterad"; +$a->strings["anxious"] = "bekymrad"; +$a->strings["cranky"] = "grinig"; +$a->strings["disturbed"] = "besvärad"; +$a->strings["frustrated"] = "frustrerad"; +$a->strings["depressed"] = "deprimerad"; +$a->strings["motivated"] = "motiverad"; +$a->strings["relaxed"] = "avslappnad"; +$a->strings["surprised"] = "förvånad"; +$a->strings["Monday"] = "måndag"; +$a->strings["Tuesday"] = "tisdag"; +$a->strings["Wednesday"] = "onsdag"; +$a->strings["Thursday"] = "torsdag"; +$a->strings["Friday"] = "fredag"; +$a->strings["Saturday"] = "lördag"; +$a->strings["Sunday"] = "söndag"; +$a->strings["January"] = "januari"; +$a->strings["February"] = "februari"; +$a->strings["March"] = "mars"; +$a->strings["April"] = "april"; +$a->strings["May"] = "maj"; +$a->strings["June"] = "juni"; +$a->strings["July"] = "juli"; +$a->strings["August"] = "augusti"; +$a->strings["September"] = "september"; +$a->strings["October"] = "oktober"; +$a->strings["November"] = "november"; +$a->strings["December"] = "december"; +$a->strings["unknown.???"] = "okänt.???"; +$a->strings["bytes"] = "byte"; +$a->strings["remove category"] = "ta bort kategori"; +$a->strings["remove from file"] = "ta bort från fil"; +$a->strings["Click to open/close"] = "Klicka för att öppna/stänga"; +$a->strings["Link to Source"] = "Länk till källa"; +$a->strings["Select a page layout: "] = "Välj en sidlayout: "; +$a->strings["default"] = "standard"; +$a->strings["Page content type: "] = "Typ av sidinnehåll: "; +$a->strings["Select an alternate language"] = "Välj ett alternativt språk"; +$a->strings["activity"] = "aktivitet"; +$a->strings["Design"] = "Design"; +$a->strings["Blocks"] = "Block"; +$a->strings["Menus"] = "Menyer"; +$a->strings["Layouts"] = "Layouter"; +$a->strings["Pages"] = "Sidor"; +$a->strings["Visible to your default audience"] = "Kan ses av förinställda mottagare"; +$a->strings["Show"] = "Visa"; +$a->strings["Don't show"] = "Visa inte"; +$a->strings["Permissions"] = "Behörighet"; +$a->strings["Close"] = "Stäng"; +$a->strings["Public Timeline"] = "Offentlig tidslinje"; +$a->strings["Site Admin"] = "Serveradministrator"; +$a->strings["Address Book"] = "Adressbok"; +$a->strings["Mood"] = "Sinnesstämning"; +$a->strings["Probe"] = "Sond"; +$a->strings["Suggest"] = "Föreslå"; +$a->strings["Random Channel"] = "Slumpvald kanal"; +$a->strings["Invite"] = "Bjud in"; +$a->strings["Features"] = "Funktioner"; +$a->strings["Language"] = "Språk"; +$a->strings["Post"] = "Inlägg"; +$a->strings["Profile Photo"] = "Profilfoto"; +$a->strings["Update"] = "Uppdatera"; +$a->strings["Install"] = "Installera"; +$a->strings["Purchase"] = "Köp"; +$a->strings["Save to Folder"] = "Spara i mapp"; +$a->strings["View all"] = "Visa alla"; +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "%n ogillar detta", + 1 => "%n ogillar detta", ); -$a->strings["New Page"] = "Ny sida"; -$a->strings["Click here to upgrade."] = "Klicka här för att uppgradera."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Den här funktionen går utanför vad som anges i ditt avtal."; -$a->strings["This action is not available under your subscription plan."] = "Den här funktionen är inte tillgänglig med ditt avtal."; -$a->strings["Permission denied"] = "Behörighet saknas"; -$a->strings["(Unknown)"] = "(Okänt)"; -$a->strings["Item not found."] = "Posten hittades inte."; -$a->strings["Collection not found."] = "Sammanhanget hittades inte."; -$a->strings["Collection is empty."] = "Sammanhanget är tomt."; -$a->strings["Collection: %s"] = "Sammanhang: %s"; -$a->strings["Connection: %s"] = "Kontakt: %s"; -$a->strings["Connection not found."] = "Kontakten hittades inte."; -$a->strings["Channel is blocked on this site."] = "Kanalen är blockerad på den här servern."; -$a->strings["Channel location missing."] = "Kanalplats saknas."; -$a->strings["Response from remote channel was incomplete."] = "Svar från den andra kanalen var ofullständigt."; -$a->strings["Channel was deleted and no longer exists."] = "Kanalen har tagits bort och finns inte längre."; -$a->strings["Channel discovery failed."] = "Kanalsökning misslyckades."; -$a->strings["local account not found."] = "hittade inte lokalt konto."; -$a->strings["Cannot connect to yourself."] = "Du kan inte kontakta dig själv."; -$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."] = "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades."; -$a->strings["Embedded content"] = "Inbäddat innehåll"; -$a->strings["Embedding disabled"] = "Inbäddning inaktiverat"; -$a->strings["Can view my \"public\" stream and posts"] = "Kan se mina \"offentliga\" strömmar och inlägg"; -$a->strings["Can view my \"public\" channel profile"] = "Kan se min \"offentliga\" kanalprofil"; -$a->strings["Can view my \"public\" photo albums"] = "Kan se mina \"offentliga\" fotoalbum"; -$a->strings["Can view my \"public\" address book"] = "Kan se min \"offentliga\" adressbok"; -$a->strings["Can view my \"public\" file storage"] = "Kan se mitt \"offentliga\" filutrymme"; -$a->strings["Can view my \"public\" pages"] = "Kan se mina \"offentliga\" sidor"; -$a->strings["Can send me their channel stream and posts"] = "Kan skicka sina kanalströmmar och inlägg till mig"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kan posta inlägg på min kanalsida (\"vägg\")"; -$a->strings["Can comment on my posts"] = "Kan kommentera mina inlägg"; -$a->strings["Can send me private mail messages"] = "Kan skicka privata meddelanden till mig"; -$a->strings["Can post photos to my photo albums"] = "Kan lägga till foton i mitt fotoalbum"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan vidarebefordra till alla mina kanalkontakter genom @omnämnanden"; -$a->strings["Advanced - useful for creating group forum channels"] = "Avancerat - användbart för att skapa kanaler för gruppforum"; -$a->strings["Can chat with me (when available)"] = "Kan chatta med mig (när tillgänglig)"; -$a->strings["Can write to my \"public\" file storage"] = "Har skrivrättigheter i mitt \"offentliga\" filutrymme"; -$a->strings["Can edit my \"public\" pages"] = "Kan redigera mina \"offentliga\" sidor"; -$a->strings["Can source my \"public\" posts in derived channels"] = "Kan använda mina \"offentliga\" inlägg i kanaler nedströms"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Ganska avancerat - väldigt användbart i öppna gemenskaper"; -$a->strings["Can send me bookmarks"] = "Kan skicka bokmärken till mig"; -$a->strings["Can administer my channel resources"] = "Kan administrera mina kanalresurser"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremt avancerat. Låt detta vara om du inte vet vad du gör"; -$a->strings["Invalid data packet"] = "Ogiltigt datapaket"; -$a->strings["Unable to verify channel signature"] = "Kunde inte bekräfta kanalsignatur"; -$a->strings["Unable to verify site signature for %s"] = "Kunde inte bekräfta signatur för servern %s"; -$a->strings["No channel."] = "Ingen kanal."; -$a->strings["Common connections"] = "Gemensamma kontakter"; -$a->strings["No connections in common."] = "Inga gemensamma kontakter."; +$a->strings["Add Star"] = "Märk"; +$a->strings["Remove Star"] = "Ta bort märkning"; +$a->strings["Toggle Star Status"] = "Växla märkning"; +$a->strings["starred"] = "märkt"; +$a->strings["Add Tag"] = "Lägg till en tagg"; +$a->strings["I like this (toggle)"] = "Jag gillar det här (växla)"; +$a->strings["I don't like this (toggle)"] = "Jag gillar inte det här (växla)"; +$a->strings["Share This"] = "Dela det här"; +$a->strings["share"] = "dela"; +$a->strings["View %s's profile - %s"] = "Visa %ss profil - %s"; +$a->strings["to"] = "till"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Vägg-till-vägg"; +$a->strings["via Wall-To-Wall:"] = "via vägg-till-vägg"; +$a->strings["Save Bookmarks"] = "Spara bokmärken"; +$a->strings["Add to Calendar"] = "Lägg till kalendern"; +$a->strings["__ctx:noun__ Likes"] = "gillar detta"; +$a->strings["__ctx:noun__ Dislikes"] = "ogillar detta"; +$a->strings["%d comment"] = array( + 0 => "%d kommentar", + 1 => "%d kommentarer", +); +$a->strings["This is you"] = "Det här är du"; +$a->strings["Submit"] = "Skicka"; +$a->strings["Bold"] = "Fet"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Understruken"; +$a->strings["Quote"] = "Citat"; +$a->strings["Code"] = "Kod"; +$a->strings["Image"] = "Bild"; +$a->strings["Link"] = "Länk"; +$a->strings["Video"] = "Video"; +$a->strings["Set your current mood and tell your friends"] = "Ange din nuvarande sinnesstämning och visa för dina vänner"; +$a->strings["Invalid profile identifier."] = "Ogiltigt profil-ID."; +$a->strings["Profile Visibility Editor"] = "Redigera profilsynlighet"; +$a->strings["Click on a contact to add or remove."] = "Klicka på en kontakt för att lägga till eller ta bort."; +$a->strings["Visible To"] = "Kan ses av"; +$a->strings["All Connections"] = "Alla kontakter"; +$a->strings["Menu not found."] = "Menyn hittades inte."; +$a->strings["Menu element updated."] = "Menyval uppdaterat."; +$a->strings["Unable to update menu element."] = "Kunde inte uppdatera menyval."; +$a->strings["Menu element added."] = "Menyval tillagt."; +$a->strings["Unable to add menu element."] = "Kunde inte lägga till menyval."; +$a->strings["Not found."] = "Hittades inte."; +$a->strings["Manage Menu Elements"] = "Hantera menyval"; +$a->strings["Edit menu"] = "Redigera meny"; +$a->strings["Edit element"] = "Redigera menyval"; +$a->strings["Drop element"] = "Ta bort menyval"; +$a->strings["New element"] = "Nytt menyval"; +$a->strings["Edit this menu container"] = "Redigera den här menysamlaren"; +$a->strings["Add menu element"] = "Lägg till menyval"; +$a->strings["Delete this menu item"] = "Ta bort det här menyvalet"; +$a->strings["Edit this menu item"] = "Redigera det här menyvalet"; +$a->strings["New Menu Element"] = "Nytt menyval"; +$a->strings["Menu Item Permissions"] = "Behörighet för menyval"; +$a->strings["(click to open/close)"] = "(klicka för att öppna/stänga)"; +$a->strings["Link text"] = "Länktext"; +$a->strings["URL of link"] = "Länkens URL"; +$a->strings["Use RedMatrix magic-auth if available"] = "Använd RedMatrix magic-auth om tillgängligt"; +$a->strings["Open link in new window"] = "Öppna länk i nytt fönster"; +$a->strings["Order in list"] = "Ordningstal i listan"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Större tal sjunker till botten av listan"; +$a->strings["Menu item not found."] = "Menyval hittas inte."; +$a->strings["Menu item deleted."] = "Menyval borttaget."; +$a->strings["Menu item could not be deleted."] = "Menyval kunde inte tas bort."; +$a->strings["Edit Menu Element"] = "Redigera menyval"; +$a->strings["Modify"] = "Ändra"; +$a->strings["Some blurb about what to do when you're new here"] = "Lite text om vad man kan göra som ny här"; +$a->strings["Profile not found."] = "Profil hittades inte."; +$a->strings["Profile deleted."] = "Profil borttagen."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Ny profil skapad."; +$a->strings["Profile unavailable to clone."] = "Profil inte tillgänglig för kloning."; +$a->strings["Profile unavailable to export."] = "Profil inte tillgänglig för export."; +$a->strings["Profile Name is required."] = "Profilnamn krävs."; +$a->strings["Marital Status"] = "Civilstånd"; +$a->strings["Romantic Partner"] = "Romantisk partner"; +$a->strings["Likes"] = "Gillar"; +$a->strings["Dislikes"] = "Ogillar"; +$a->strings["Work/Employment"] = "Arbete/sysselsättning"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Politisk åskådning"; +$a->strings["Gender"] = "Kön"; +$a->strings["Sexual Preference"] = "Sexuell preferens"; +$a->strings["Homepage"] = "Hemsida"; +$a->strings["Interests"] = "Intressen"; +$a->strings["Address"] = "Adress"; +$a->strings["Location"] = "Plats"; +$a->strings["Profile updated."] = "Profil uppdaterad."; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Dölj din kontakt-/vänlista för de som ser den här profilen"; +$a->strings["Yes"] = "Ja"; +$a->strings["No"] = "Nej"; +$a->strings["Edit Profile Details"] = "Redigera profildetaljer"; +$a->strings["View this profile"] = "Visa den här profilen"; +$a->strings["Change Profile Photo"] = "Byt profilfoto"; +$a->strings["Create a new profile using these settings"] = "Skapa en ny profil utifrån de här inställningarna"; +$a->strings["Clone this profile"] = "Klona den här profilen"; +$a->strings["Delete this profile"] = "Ta bort den här profilen"; +$a->strings["Import profile from file"] = "Importera profil från fil"; +$a->strings["Export profile to file"] = "Exportera profil som fil"; +$a->strings["Profile Name:"] = "Profilnamn:"; +$a->strings["Your Full Name:"] = "Ditt fulllständiga namn:"; +$a->strings["Title/Description:"] = "Titel/beskrivning:"; +$a->strings["Your Gender:"] = "Ditt kön:"; +$a->strings["Birthday :"] = "Födelsedag:"; +$a->strings["Street Address:"] = "Gatuadress:"; +$a->strings["Locality/City:"] = "Ort:"; +$a->strings["Postal/Zip Code:"] = "Postnummer:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Region:"; +$a->strings[" Marital Status:"] = " Civilstånd:"; +$a->strings["Who: (if applicable)"] = "Vem: (om tillämpligt)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exempel: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Sedan [datum]"; +$a->strings["Homepage URL:"] = "Hemsideadress:"; +$a->strings["Religious Views:"] = "Religion/livsåskådning:"; +$a->strings["Keywords:"] = "Nyckelord:"; +$a->strings["Example: fishing photography software"] = "Exempel: fiske fotografering mjukvara"; +$a->strings["Used in directory listings"] = "Används i kataloglistningar"; +$a->strings["Tell us about yourself..."] = "Beskriv dig själv..."; +$a->strings["Hobbies/Interests"] = "Fritidssysselsättning/intressen"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformation och sociala nätverk"; +$a->strings["My other channels"] = "Mina andra kanaler"; +$a->strings["Musical interests"] = "Musikintressen"; +$a->strings["Books, literature"] = "Böcker, litteratur"; +$a->strings["Television"] = "Tv"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underhållning"; +$a->strings["Love/romance"] = "Kärlek/romantik"; +$a->strings["Work/employment"] = "Arbete/sysselsättning"; +$a->strings["School/education"] = "Skola/utbildning"; +$a->strings["This is your default profile."] = "Det här är din standardprofil."; +$a->strings["Age: "] = "Ålder:"; +$a->strings["Edit/Manage Profiles"] = "Redigera/hantera profiler"; +$a->strings["Add profile things"] = "Lägg till profilsaker"; +$a->strings["Include desirable objects in your profile"] = "Inkludera fina prylar i din profil"; +$a->strings["Continue"] = "Fortsätt"; +$a->strings["Premium Channel Setup"] = "Inställning av premiumkanal"; +$a->strings["Enable premium channel connection restrictions"] = "Aktivera kontaktrestriktioner för premiumkanal"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Ange dina restriktioner och villkor, som Paypal-kvitto, användarriktlinjer, etc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Den här kanalen kan kräva ytterligare steg eller godkännande av följande villkor innan anslutning:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentiella kontakter kommer sedan att se följande text innan de går vidare:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Genom att fortsätta intygar jag att jag har följt alla instruktioner som ges på den här sidan."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Inga specifika instruktioner har givits av kanalägaren.)"; +$a->strings["Restricted or Premium Channel"] = "Begränsad kanal eller premiumkanal"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjärrinloggning blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen."; +$a->strings["Welcome %s. Remote authentication successful."] = "Välkommen %s. Fjärrinloggning lyckades."; +$a->strings["Red Matrix Server - Setup"] = "Red Matrix-server - inställningar"; +$a->strings["Could not connect to database."] = "Kunde inte ansluta till databasen."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Kunde inte ansluta till den angivna server-URL:en. Möjligt problem med SSL-certifikat eller DNS."; +$a->strings["Could not create table."] = "Kunde inte skapa tabell."; +$a->strings["Your site database has been installed."] = "Din serverdatabas har installerats."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du kan behöva importera filen \"install/schema_xxx.sql\" manuellt med en databasklient."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Se filen \"install/INSTALL.txt\"."; +$a->strings["System check"] = "Systemkontroll"; +$a->strings["Next"] = "Nästa"; +$a->strings["Check again"] = "Kontrollera igen"; +$a->strings["Database connection"] = "Databasanslutning"; +$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "För att kunna installera Red Matrix behöver vi veta hur databasen ska anslutas."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Kontakta din servervärd eller administratör om du har frågor om de här inställningarna."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du anger nedan måste finnas. Om den inte gör det, skapa den innan du fortsätter."; +$a->strings["Database Server Name"] = "Databasserver"; +$a->strings["Default is localhost"] = "Standard är localhost"; +$a->strings["Database Port"] = "Databasport"; +$a->strings["Communication port number - use 0 for default"] = "Kommunikationsportnummer - använd 0 för standardinställning"; +$a->strings["Database Login Name"] = "Loginnamn till databas"; +$a->strings["Database Login Password"] = "Lösenord till databas"; +$a->strings["Database Name"] = "Databasnamn"; +$a->strings["Database Type"] = "Databastyp"; +$a->strings["Site administrator email address"] = "Serveradministratörens e-postadress"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ditt kontos e-postadress måste stämma med den här för att webbgränssnittet för administration ska kunna användas."; +$a->strings["Website URL"] = "Webbplatsens URL"; +$a->strings["Please use SSL (https) URL if available."] = "Ange en URL med SSL (https) om tillgängligt"; +$a->strings["Please select a default timezone for your website"] = "Välj en standardtidszon för din webbplats"; +$a->strings["Site settings"] = "Serverinställningar"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kunde inte hitta en kommandoradsversion av PHP i webbserverns PATH."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Om du inte har en kommandoradsversion av PHP installerad på servern kommer du inte att kunna köra bakgrundshämtning via cron."; +$a->strings["PHP executable path"] = "Sökväg till PHP-programmet"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Ange hela sökvägen till php-programfilen. Du kan lämna det här blankt för att fortsätta installationen."; +$a->strings["Command line PHP"] = "Kommandorads-PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandoradsversionen av PHP på ditt system har inte \"register_argc_argv\" aktiverat."; +$a->strings["This is required for message delivery to work."] = "Det här behövs för att meddelandeleverans ska fungera."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fel: \"openssl_pkey_new\"-funktionen på det här systemet kan inte generera kryptonycklar"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Om systemet kör Windows, se \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generera kryptonycklar"; +$a->strings["libCurl PHP module"] = "PHP-modulen libCurl"; +$a->strings["GD graphics PHP module"] = "PHP-modulen GD graphics"; +$a->strings["OpenSSL PHP module"] = "PHP-modulen OpenSSL"; +$a->strings["mysqli or postgres PHP module"] = "PHP-modulen mysqli eller postgres"; +$a->strings["mb_string PHP module"] = "PHP-modulen mb_string"; +$a->strings["mcrypt PHP module"] = "PHP-modulen mcrypt"; +$a->strings["Apache mod_rewrite module"] = "Apache-modulen mod_rewrite"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fel: Apache-webbserverns mod-rewrite-modul krävs men är inte installerad."; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fel: proc_open krävs men är antingen inte installerad eller har inaktiverats i php.ini"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fel: PHP-modulen libCURL krävs men är inte installerad."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fel: PHP-modulen GD graphics med JPEG-stöd krävs men är inte installerad."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fel: PHP-modulen openssl krävs men är inte installerad."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fel: en av PHP-modulerna mysqli eller postgres krävs men är inte installerad."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fel: PHP-modulen mb_string krävs men är inte installerad."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Fel: PHP-modulen mcrypt krävs men är inte installerad."; +$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."] = "Webbinstallationen måste kunna skapa filen \".htconfig.php\" i toppkatalogen på din webbserver men kan inte göra det."; +$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."] = "Det är ofta en behörighetsinställning som gör att webbservern inte kan skriva filer i din katalog - även om du kan."; +$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."] = "Efter den här proceduren kommer vi att ge dig en text att spara i filen .htconfig.php i Reds toppkatalog."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativt kan du hoppa över den här proceduren och göra en manuell installation. För instruktioner, se filen \"install/INSTALL.txt\"."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php är skrivbar"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red använder mallmotorn Smarty3 för att rendera webbvyerna. Smarty3 kompilerar mallar till PHP för att snabba upp renderingen."; +$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."] = "För att spara de här kompilerade mallarna behöver webbservern ha skrivrättigheter till katalogen %s under Reds toppkatalog."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Försäkra dig om att användaren som din webbserver kör som (t.ex. www-data) har skrivrättigheter till den här katalogen."; +$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."] = "Observera: som en säkerhetsåtgärd bör du ge webbservern skrivrättighet endast för %s - inte för mallfilerna (.tpl) som finns där."; +$a->strings["%s is writable"] = "%s är skrivbar"; +$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 använder katalogen store för att spara uppladdade filer. Webbservern behöver ha skrivrättigheter till katalogen store under Reds toppkatalog."; +$a->strings["store is writable"] = "store är skrivbar"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-certifikatet kan inte valideras. Fixa certifikatet eller inaktivera https-åtkomst till den här servern."; +$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!"] = "Om du har https-åtkomst till din webbplats eller tillåter anslutningar till TCP-port 443 (https-porten) MÅSTE du använda ett certifikat som kan verifieras av webbläsare. Du FÅR INTE använda självsignerade certifikat!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Restriktionen finns eftersom offentliga inlägg från dig kan innehålla till exempel referenser till bilder på din egen hubb."; +$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."] = "Om ditt certifikat inte känns igen kommer medlemmar på andra webbplatser (som själv kan ha giltiga certifikat) att få en varning på sin egen webbplats om säkerhetsproblem."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Detta kan orsaka problem med användbarheten (inte bara på din egen server) så vi måste trycka på det här kravet."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Det finns leverantörer som utfärdar gratis certifikat som känns igen av webbläsare."; +$a->strings["SSL certificate validation"] = "SSL-certifikatvalidering"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite i .htaccess fungerar inte. Kolla din serverkonfiguration. Test: "; +$a->strings["Url rewrite is working"] = "URL rewrite fungerar"; +$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."] = "Databaskonfigurationsfilen \".htconfig.php\" kunde inte skrivas. Använd den bifogade texten för att skapa en konfigurationsfil i din webbservers rot."; +$a->strings["Errors encountered creating database tables."] = "Fel inträffade när databastabeller skulle skapas."; +$a->strings["

    What next

    "] = "

    Nästa steg

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIGT: Du behöver ställa in en schemalagd för hämtningsrutinen [manuellt]"; +$a->strings["Version %s"] = "Version %s"; +$a->strings["Installed plugins/addons/apps:"] = "Installerade tillägg/moduler/appar:"; +$a->strings["No installed plugins/addons/apps"] = "Inga installerade tillägg/moduler/appar"; +$a->strings["Red"] = "Red"; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Det här är en hubb som ingår i Red Matrix - ett globalt samverkande nätverk av decentraliserade webbplatser med bättre integritetskydd."; +$a->strings["Running at web location"] = "Kör på webbutrymmet"; +$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Besök GetZot.com lära dig mer om Red Matrix."; +$a->strings["Bug reports and issues: please visit"] = "Buggrapporter och problem: besök"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Förslag, uppskattning, etc. - maila \"redmatrix\" at librelist - dot com"; +$a->strings["Site Administrators"] = "Serveradministratörer"; +$a->strings["Poke/Prod"] = "Puffa/stöt till"; +$a->strings["poke, prod or do other things to somebody"] = "puffa, stöt till eller gör andra saker mot någon"; +$a->strings["Recipient"] = "Mottagare"; +$a->strings["Choose what you wish to do to recipient"] = "Välj vad du önskar göra med mottagaren"; +$a->strings["Make this post private"] = "Gör det här inlägget privat"; +$a->strings["Authorize application connection"] = "Tillåt anslutning av applikation"; +$a->strings["Return to your app and insert this Securty Code:"] = "Återgå till din applikation och ange den här säkerhetskoden:"; +$a->strings["Please login to continue."] = "Logga in för att fortsätta."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?"; +$a->strings["Item not available."] = "Post inte tillgänglig."; +$a->strings["Fetching URL returns error: %1\$s"] = "Hämtning av URL returnerade fel: %1\$s"; +$a->strings["Invalid item."] = "Ogiltig post."; +$a->strings["Channel not found."] = "Kanalen hittas inte."; +$a->strings["Page not found."] = "Sidan hittas inte."; +$a->strings["Failed to create source. No channel selected."] = "Misslyckades att skapa källa. Ingen kanal vald."; +$a->strings["Source created."] = "Källa skapad."; +$a->strings["Source updated."] = "Källa uppdaterad."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Hantera fjärrkällor med innehåll för din kanal."; +$a->strings["New Source"] = "Ny källa"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importera allt eller valt innehåll från följande kanal till den här kanalen och distribuera det enligt dina kanalinställningar."; +$a->strings["Only import content with these words (one per line)"] = "Importera endast innehåll med de här orden (ett per rad)"; +$a->strings["Leave blank to import all public content"] = "Lämna blankt för att importera allt offentligt innehåll"; +$a->strings["Channel Name"] = "Kanalnamn"; +$a->strings["Source not found."] = "Källa hittades inte."; +$a->strings["Edit Source"] = "Redigera källa"; +$a->strings["Delete Source"] = "Ta bort källa"; +$a->strings["Source removed"] = "Källa borttagen"; +$a->strings["Unable to remove source."] = "Kunde inte ta bort källa."; +$a->strings["Block Name"] = "Blocknamn"; +$a->strings["Public access denied."] = "Offentlig behörighet saknas."; +$a->strings["Gender: "] = "Kön:"; +$a->strings["Status: "] = "Status: "; +$a->strings["Homepage: "] = "Hemsida: "; +$a->strings["Hometown: "] = "Hemort: "; +$a->strings["About: "] = "Om: "; +$a->strings["Public Forum:"] = "Offentligt forum:"; +$a->strings["Keywords: "] = "Nyckelord: "; +$a->strings["Finding:"] = "Sökning efter:"; +$a->strings["next page"] = "nästa sida"; +$a->strings["previous page"] = "föregående sida"; +$a->strings["No entries (some entries may be hidden)."] = "Inga resultat (vissa resultat kan vara dolda)."; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Välj huruvida du accepterar användarvillkoren. Registrering misslyckades."; +$a->strings["Passwords do not match."] = "Lösenorden stämmer inte överens."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrering lyckades. Kontrollera din e-post för valideringsinstruktioner."; +$a->strings["Your registration is pending approval by the site owner."] = "Din registrering väntar på att bli godkänd av serverägaren."; +$a->strings["Your registration can not be processed."] = "Din registrering kan inte behandlas."; +$a->strings["Registration on this site/hub is by approval only."] = "Registrering på den här servern/hubben måste godkännas."; +$a->strings["Register at another affiliated site/hub"] = "Skapa konto på en annan ansluten server/hubb"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Antal dagliga registreringar som tillåts på den här servern har överskridits. Försök igen i morgon."; +$a->strings["Terms of Service"] = "användarvillkor"; +$a->strings["I accept the %s for this website"] = "Jag accepterar den här webbplatsens %s"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Jag är över 13 år och accepterar den här webbplatsens %s"; +$a->strings["Registration"] = "Registrering"; +$a->strings["Membership on this site is by invitation only."] = "Medlemskap på den här servern kan endast fås genom inbjudan."; +$a->strings["Please enter your invitation code"] = "Ange din inbjudningskod"; +$a->strings["Your email address"] = "Din e-postadress"; +$a->strings["Choose a password"] = "Välj ett lösenord"; +$a->strings["Please re-enter your password"] = "Ange lösenordet igen"; +$a->strings["Event can not end before it has started."] = "Händelser kan inte sluta innan de börjat."; $a->strings["Event title and start time are required."] = "Händelsen behöver titel och starttid."; +$a->strings["Event not found."] = "Händelsen hittades inte."; $a->strings["l, F j"] = "l, j F"; $a->strings["Edit event"] = "Redigera händelse"; $a->strings["Create New Event"] = "Skapa ny händelse"; $a->strings["Previous"] = "Föregående"; -$a->strings["Next"] = "Nästa"; -$a->strings["hour:minute"] = "timme:minut"; $a->strings["Event details"] = "Detaljer för händelse"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatet är %s %s. Startdatum och titel behövs."; +$a->strings["Starting date and Title are required."] = "Startdatum och titel är obligatoriska."; $a->strings["Event Starts:"] = "Händelsen börjar:"; $a->strings["Required"] = "Behövs"; $a->strings["Finish date/time is not known or not relevant"] = "Slutdatum/tid är okänt eller inte relevant"; @@ -787,6 +1139,192 @@ $a->strings["Adjust for viewer timezone"] = "Justera för betraktarens tidszon"; $a->strings["Description:"] = "Beskrivning:"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Dela den här händelsen"; +$a->strings["Public Sites"] = "Offentliga servrar"; +$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."] = "De listade servrarna tillåter offentlig registrering i Red Matrix. Alla servrar i matrisen är sammankopplade, så medlemskap i en av dem medför medlemskap i matrisen som helhet. Vissa servrar kan kräva abonnemang eller erbjuda uppdelade tjänstenivåer. Leverantörslänkarna kan ge ytterligare detaljer."; +$a->strings["Site URL"] = "Server-URL"; +$a->strings["Access Type"] = "Åtkomsttyp"; +$a->strings["Registration Policy"] = "Registreringspolicy"; +$a->strings["You must be logged in to see this page."] = "Du måste vara inloggad för att se den här sidan."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Otillräckliga behörigheter. Förfrågan omdirigerad till profilsidan."; +$a->strings["Select a bookmark folder"] = "Välj en bokmärkeskatalog"; +$a->strings["Save Bookmark"] = "Spara bokmärke"; +$a->strings["URL of bookmark"] = "Bokmärkets URL"; +$a->strings["Description"] = "Beskrivning"; +$a->strings["Or enter new bookmark folder name"] = "Eller ange nytt namn på bokmärkeskatalog"; +$a->strings["Room not found"] = "Rum hittas inte"; +$a->strings["Leave Room"] = "Lämna rummet"; +$a->strings["Delete This Room"] = "Ta bort det här rummet"; +$a->strings["I am away right now"] = "Jag är borta för tillfället"; +$a->strings["I am online"] = "Jag är online"; +$a->strings["Bookmark this room"] = "Bokmärk det här rummet"; +$a->strings["New Chatroom"] = "Nytt chattrum"; +$a->strings["Chatroom Name"] = "Namn på chattrum"; +$a->strings["%1\$s's Chatrooms"] = "%1\$ss chattrum"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s följer %2\$ss %3\$s"; +$a->strings["Away"] = "Borta"; +$a->strings["Online"] = "Online"; +$a->strings["Please login."] = "Logga in."; +$a->strings["No such group"] = "Ingen sådan grupp"; +$a->strings["Search Results For:"] = "Sökresultat för:"; +$a->strings["Collection is empty"] = "Kretsen är tom"; +$a->strings["Collection: "] = "Krets: "; +$a->strings["Connection: "] = "Kontakt:"; +$a->strings["Invalid connection."] = "Ogiltig kontakt."; +$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Borttagning av kanal tillåts inte inom 48 timmar efter att kontolösenordet har ändrats."; +$a->strings["Remove This Channel"] = "Ta bort den här kanalen"; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Det här kommer att ta bort den här kanalen helt från nätverket. När det är gjort går det inte att återställa den."; +$a->strings["Please enter your password for verification:"] = "Ange ditt lösenord för att bekräfta:"; +$a->strings["Remove this channel and all its clones from the network"] = "Ta bort den här kanalen och alla dess kloner från nätverket"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard kommer bara den här hubbens instans av kanalen att tas bort från nätverket"; +$a->strings["Remove Channel"] = "Ta bort kanal"; +$a->strings["No channel."] = "Ingen kanal."; +$a->strings["Common connections"] = "Gemensamma kontakter"; +$a->strings["No connections in common."] = "Inga gemensamma kontakter."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi drabbades av ett problem vid inloggningen med OpenID:t du uppgav. Kontrollera att ID:t är korrekt stavat."; +$a->strings["The error message was:"] = "Felmeddelandet var:"; +$a->strings["Authentication failed."] = "Inloggning misslyckades."; +$a->strings["Remote Authentication"] = "Fjärrinloggning"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Ange din kanaladress (t.ex. kanal@example.com)"; +$a->strings["Authenticate"] = "Autentisera"; +$a->strings["- select -"] = "- välj -"; +$a->strings["Page owner information could not be retrieved."] = "Information om sidans ägare kunde inte hittas."; +$a->strings["Album not found."] = "Albumet hittades inte."; +$a->strings["Delete Album"] = "Ta bort album"; +$a->strings["Delete Photo"] = "Ta bort foto"; +$a->strings["No photos selected"] = "Inga foton valda"; +$a->strings["Access to this item is restricted."] = "Åtkomst till den här posten är begränsat."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB fotolagring använt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB fotolagring använt."; +$a->strings["Upload Photos"] = "Ladda upp foton"; +$a->strings["Enter a new album name"] = "Ange ett nytt albumnamn"; +$a->strings["or select an existing one (doubleclick)"] = "eller välj ett befintligt (dubbelklicka)"; +$a->strings["Do not show a status post for this upload"] = "Visa inte en statusuppdatering för den här uppladdningen"; +$a->strings["Album name could not be decoded"] = "Albumnamn kunde inte tolkas"; +$a->strings["Contact Photos"] = "Kontaktfoton"; +$a->strings["Show Newest First"] = "Visa nyast först"; +$a->strings["Show Oldest First"] = "Visa äldst först"; +$a->strings["View Photo"] = "Visa foto"; +$a->strings["Edit Album"] = "Redigera album"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Behörighet saknas. Åtkomst till den här posten kan vara begränsat."; +$a->strings["Photo not available"] = "Foto inte tillgängligt"; +$a->strings["Use as profile photo"] = "Använd som profilfoto"; +$a->strings["Private Photo"] = "Privat foto"; +$a->strings["View Full Size"] = "Visa fullstorlek"; +$a->strings["Remove"] = "Ta bort"; +$a->strings["Edit photo"] = "Redigera foto"; +$a->strings["Rotate CW (right)"] = "Rotera medurs (höger)"; +$a->strings["Rotate CCW (left)"] = "Rotera moturs (vänster)"; +$a->strings["Caption"] = "Bildtext"; +$a->strings["Add a Tag"] = "Lägg till en tagg"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exempel: @bob, @Barbara_Jensen, @jim@example.com"; +$a->strings["Flag as adult in album view"] = "Flagga som olämpligt för barn i albumvyn"; +$a->strings["In This Photo:"] = "På fotot:"; +$a->strings["View Album"] = "Visa album"; +$a->strings["Recent Photos"] = "Nya foton"; +$a->strings["Could not access contact record."] = "Kunde inte komma åt kontaktuppgifter."; +$a->strings["Could not locate selected profile."] = "Kunde inte hitta vald profil."; +$a->strings["Connection updated."] = "Kontakt uppdaterad."; +$a->strings["Failed to update connection record."] = "Misslyckades att uppdatera kontaktuppgifter."; +$a->strings["Blocked"] = "Blockerade"; +$a->strings["Ignored"] = "Ignorerade"; +$a->strings["Hidden"] = "Dolda"; +$a->strings["Archived"] = "Arkiverade"; +$a->strings["All"] = "Alla"; +$a->strings["Suggest new connections"] = "Föreslå nya kontakter"; +$a->strings["New Connections"] = "Nya kontakter"; +$a->strings["Show pending (new) connections"] = "Visa väntande (nya) kontakter"; +$a->strings["Show all connections"] = "Visa alla kontakter"; +$a->strings["Unblocked"] = "Ej blockerade"; +$a->strings["Only show unblocked connections"] = "Visa endast ej blockerade kontakter"; +$a->strings["Only show blocked connections"] = "Visa endast blockerade kontakter"; +$a->strings["Only show ignored connections"] = "Visa endast ignorerade kontakter"; +$a->strings["Only show archived connections"] = "Visa endast arkiverade kontakter"; +$a->strings["Only show hidden connections"] = "Visa endast dolda kontakter"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit connection"] = "Redigera kontakt"; +$a->strings["Search your connections"] = "Sök bland dina kontakter"; +$a->strings["Finding: "] = "Sökning efter: "; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har skapat %1$.0f av %2$.0f tillåtna kanaler."; +$a->strings["Create a new channel"] = "Skapa en ny kanal"; +$a->strings["Current Channel"] = "Nuvarande kanal"; +$a->strings["Attach to one of your channels by selecting it."] = "Anslut till en av dina kanaler genom att välja den."; +$a->strings["Default Channel"] = "Standardkanal"; +$a->strings["Make Default"] = "Gör till standard"; +$a->strings["Edit post"] = "Redigera inlägg"; +$a->strings["is now connected to"] = "har nu kontakt med"; +$a->strings["Could not access address book record."] = "Kunde inte komma åt adressboksuppgifter."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Uppdatering misslyckades - kanalen är inte tillgänglig."; +$a->strings["Channel has been unblocked"] = "Kanalen är inte längre blockerad"; +$a->strings["Channel has been blocked"] = "Kanalen har blockerats"; +$a->strings["Unable to set address book parameters."] = "Kunde inte ställa in adressboksparametrar."; +$a->strings["Channel has been unignored"] = "Kanalen ignoreras inte längre"; +$a->strings["Channel has been ignored"] = "Kanalen har ignorerats"; +$a->strings["Channel has been unarchived"] = "Kanalen arkiveras inte längre"; +$a->strings["Channel has been archived"] = "Kanalen har arkiverats"; +$a->strings["Channel has been unhidden"] = "Kanalen döljs inte längre"; +$a->strings["Channel has been hidden"] = "Kanalen har dolts"; +$a->strings["Channel has been approved"] = "Kanalen har godkänts"; +$a->strings["Channel has been unapproved"] = "Kanalen är inte godkänd längre"; +$a->strings["Connection has been removed."] = "Kontakten har tagits bort."; +$a->strings["View %s's profile"] = "Visa %ss profil"; +$a->strings["Refresh Permissions"] = "Uppdatera behörigheter"; +$a->strings["Fetch updated permissions"] = "Hämta uppdaterade behörigheter"; +$a->strings["Recent Activity"] = "Senaste aktiviteten"; +$a->strings["View recent posts and comments"] = "Visa de senaste inläggen och kommentarerna"; +$a->strings["Unblock"] = "Avblockera"; +$a->strings["Block"] = "Blockera"; +$a->strings["Block or Unblock this connection"] = "Blockera eller häv blockering av den här kontakten"; +$a->strings["Unignore"] = "Sluta att ignorera"; +$a->strings["Ignore"] = "Ignorera"; +$a->strings["Ignore or Unignore this connection"] = "Ignorera eller sluta att ignorera den här kontakten"; +$a->strings["Unarchive"] = "Sluta att arkivera"; +$a->strings["Archive"] = "Arkivera"; +$a->strings["Archive or Unarchive this connection"] = "Arkivera eller sluta att arkivera den här kontakten"; +$a->strings["Unhide"] = "Sluta att dölja"; +$a->strings["Hide"] = "Dölj"; +$a->strings["Hide or Unhide this connection"] = "Dölj eller sluta att dölja den här kontakten"; +$a->strings["Delete this connection"] = "Ta bort den här kontakten"; +$a->strings["Approve this connection"] = "Godkänn den här kontakten"; +$a->strings["Accept connection to allow communication"] = "Acceptera kontakten för att tillåta kommunikation"; +$a->strings["Connections: settings for %s"] = "Kontakter: inställningar för %s"; +$a->strings["Apply these permissions automatically"] = "Använd de här rättigheterna automatiskt"; +$a->strings["Apply the permissions indicated on this page to all new connections."] = "Använd rättigheterna angivna på den här sidan för alla nya kontakter."; +$a->strings["Slide to adjust your degree of friendship"] = "Dra för att justera er vänskapsnivå"; +$a->strings["inherited"] = "ärvd"; +$a->strings["Connection has no individual permissions!"] = "Kontakten har inga individuella behörigheter!"; +$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Det här kan vara lämpligt beroende på dina integritetsinställningar, men du vill kanske se över de \"Avancerade inställningarna\"."; +$a->strings["Profile Visibility"] = "Profilsynlighet"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Välj profilen som du vill ska synas när %s ser din profil på ett säkert sätt."; +$a->strings["Contact Information / Notes"] = "Kontaktinformation / anteckningar"; +$a->strings["Edit contact notes"] = "Redigera anteckningar för kontakten"; +$a->strings["Their Settings"] = "Deras inställningar"; +$a->strings["My Settings"] = "Mina inställningar"; +$a->strings["Clear/Disable Automatic Permissions"] = "Rensa/inaktivera automatiska behörigheter"; +$a->strings["Forum Members"] = "Forummedlemmar"; +$a->strings["Soapbox"] = "Talarstol"; +$a->strings["Full Sharing (typical social network permissions)"] = "Full delning (typiska behörigheter för sociala nätverk)"; +$a->strings["Cautious Sharing "] = "Försiktig delning"; +$a->strings["Follow Only"] = "Följ endast"; +$a->strings["Individual Permissions"] = "Individuella behörigheter"; +$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."] = "Vissa behörigheter kan ärvas från din kanals integritetsinställningar, vilka har högre prioritet än individuella inställningar. Ändring av de ärvda inställningarna på den här sidan har ingen effekt."; +$a->strings["Advanced Permissions"] = "Avancerade behörighetsinställningar"; +$a->strings["Simple Permissions (select one and submit)"] = "Enkla behörighetsinställningar (välj en och spara)"; +$a->strings["Visit %s's profile - %s"] = "Besök %ss profil - %s"; +$a->strings["Block/Unblock contact"] = "Blockera/häv blockering av kontakt"; +$a->strings["Ignore contact"] = "Ignorera kontakt"; +$a->strings["Repair URL settings"] = "Reparera URL-inställningar"; +$a->strings["View conversations"] = "Visa konversationer"; +$a->strings["Delete contact"] = "Ta bort kontakt"; +$a->strings["Last update:"] = "Senaste uppdatering:"; +$a->strings["Update public posts"] = "Uppdatera offentliga inlägg"; +$a->strings["Update now"] = "Uppdatera nu"; +$a->strings["Currently blocked"] = "Blockerad"; +$a->strings["Currently ignored"] = "Ignorerad"; +$a->strings["Currently archived"] = "Arkiverad"; +$a->strings["Currently pending"] = "Inväntar svar"; +$a->strings["Hide this contact from others"] = "Dölj den här kontakten för andra"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Svar/gilla-reaktioner på dina offentliga inlägg kan fortfarande synas"; +$a->strings["OpenID protocol error. No ID returned."] = "Protokollfel för OpenID. Inget ID returnerades."; $a->strings["Thing updated"] = "Föremål uppdaterat"; $a->strings["Object store: failed"] = "Objektlagring: misslyckades"; $a->strings["Thing added"] = "Föremål tillagt"; @@ -795,53 +1333,55 @@ $a->strings["Show Thing"] = "Visa föremål"; $a->strings["item not found."] = "föremål hittades inte."; $a->strings["Edit Thing"] = "Redigera föremål"; $a->strings["Select a profile"] = "Välj en profil"; -$a->strings["Select a category of stuff. e.g. I ______ something"] = "Välj en kategori, t.ex. Jag ______ någonting"; $a->strings["Post an activity"] = "Posta en aktivitet"; $a->strings["Only sends to viewers of the applicable profile"] = "Skickar bara till de som tittar på den aktuella profilen"; $a->strings["Name of thing e.g. something"] = "Namn på föremål, t.ex. någonting"; $a->strings["URL of thing (optional)"] = "URL för föremål (frivilligt)"; $a->strings["URL for photo of thing (optional)"] = "URL för foto på föremål (frivilligt)"; $a->strings["Add Thing to your Profile"] = "Lägg till föremål till din profil"; -$a->strings["Total invitation limit exceeded."] = "Gränsen för totalt antal inbjudningar överskriden."; -$a->strings["%s : Not a valid email address."] = "%s: Inte en giltig e-postadress."; -$a->strings["Please join us on Red"] = "Gå med oss i Red"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Inbjudningsgränsen överskriden. Kontakta din serveradministratör."; -$a->strings["%s : Message delivery failed."] = "%s : Leverans av meddelande misslyckades."; -$a->strings["%d message sent."] = array( - 0 => "%d meddelande sänt.", - 1 => "%d meddelanden sända.", -); -$a->strings["You have no more invitations available"] = "Du har inga fler inbjudningar kvar"; -$a->strings["Send invitations"] = "Skicka inbjudan"; -$a->strings["Enter email addresses, one per line:"] = "Ange e-postadresser, en per rad:"; -$a->strings["Your message:"] = "Ditt meddelande:"; -$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Du är hjärtligt inbjuden att gå med mig och några andra nära vänner i Red Matrix - ett revolutionärt nytt decentraliserat kommunikations- och informationsverktyg."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du kommer att behöva ange den här inbjudningskoden: \$invite_code"; -$a->strings["Please visit my channel at"] = "Besök min kanal på"; -$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "När du har registrerat dig (på NÅGON Red Matrix-server - alla sitter ihop), så lägg till min Red Matrix-kanaladress:"; -$a->strings["Click the [Register] link on the following page to join."] = "Klicka på [Registrera]-länken på följande sida för att gå med."; -$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "För mer information om Red Matrix-projektet och varför det har potential att förändra Internet som vi känner det, besök http://getzot.com"; -$a->strings["Unable to lookup recipient."] = "Kunde inte hitta mottagare."; -$a->strings["Unable to communicate with requested channel."] = "Kunde inte kommunicera med den begärda kanalen."; -$a->strings["Cannot verify requested channel."] = "Kan inte bekräfta den begärda kanalen."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka."; -$a->strings["Messages"] = "Meddelanden"; -$a->strings["Message deleted."] = "Meddelande borttaget."; -$a->strings["Message recalled."] = "Meddelande återkallat."; -$a->strings["Send Private Message"] = "Skicka privat meddelande."; -$a->strings["To:"] = "Till:"; -$a->strings["Subject:"] = "Ämne:"; -$a->strings["Message not found."] = "Meddelandet hittades inte."; -$a->strings["Delete message"] = "Ta bort meddelande"; -$a->strings["Recall message"] = "Återkalla meddelande"; -$a->strings["Message has been recalled."] = "Meddelandet har återkallats."; -$a->strings["Private Conversation"] = "Privat konversation"; -$a->strings["Delete conversation"] = "Ta bort konversation"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida."; -$a->strings["Send Reply"] = "Skicka svar"; +$a->strings["No valid account found."] = "Inget giltigt konto hittades."; +$a->strings["Password reset request issued. Check your email."] = "Lösenordsåterställning har skickats. Kontrollera din e-post."; +$a->strings["Site Member (%s)"] = "Servermedlem (%s)"; +$a->strings["Password reset requested at %s"] = "Lösenordsåterställning begärd på %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades."; +$a->strings["Password Reset"] = "Lösenordsåterställning"; +$a->strings["Your password has been reset as requested."] = "Ditt lösenord har återställts som begärt."; +$a->strings["Your new password is"] = "Ditt nya lösenord är"; +$a->strings["Save or copy your new password - and then"] = "Spara eller kopiera ditt nya lösenord - "; +$a->strings["click here to login"] = "klicka sedan här för att logga in"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Ditt lösenord kan bytas från sidan Inställningar när du är inloggad."; +$a->strings["Your password has changed at %s"] = "Ditt lösenord byttes på %s"; +$a->strings["Forgot your Password?"] = "Glömt lösenordet?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Ange din e-postadress och skicka för att återställa ditt lösenord. Kontrollera sedan din e-post för vidare instruktioner."; +$a->strings["Email Address"] = "E-postadress"; +$a->strings["Reset"] = "Återställ"; +$a->strings["Bookmark added"] = "Bokmärke tillagt"; +$a->strings["My Bookmarks"] = "Mina bokmärken"; +$a->strings["My Connections Bookmarks"] = "Mina kontakters bokmärken"; +$a->strings["This site is not a directory server"] = "Den här servern är inte en katalogserver"; +$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - Gäster: Användarnamn {din e-postadress}, Lösenord: +++"; +$a->strings["sent you a private message"] = "skickade ett privat meddelande till dig"; +$a->strings["added your channel"] = "lade till din kanal"; +$a->strings["posted an event"] = "skapade en händelse"; +$a->strings["Item not found"] = "Posten hittas inte"; +$a->strings["Edit Block"] = "Redigera block"; +$a->strings["Delete block?"] = "Ta bort block?"; +$a->strings["Insert YouTube video"] = "Infoga Youtube-video"; +$a->strings["Insert Vorbis [.ogg] video"] = "Infoga Vorbis [.ogg]-video"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Infoga Vorbis [.ogg]-ljud"; +$a->strings["Delete Block"] = "Ta bort block"; +$a->strings["Layout updated."] = "Layout uppdaterad."; +$a->strings["Edit System Page Description"] = "Redigera systemsidbeskrivning"; +$a->strings["Layout not found."] = "Layout hittas inte."; +$a->strings["Module Name:"] = "Modulnamn:"; +$a->strings["Layout Help"] = "Layouthjälp"; +$a->strings["Edit Layout"] = "Redigera layout"; +$a->strings["Delete layout?"] = "Ta bort layout?"; +$a->strings["Delete Layout"] = "Ta bort layout"; +$a->strings["Item is not editable"] = "Posten går ej att redigera"; +$a->strings["Delete item?"] = "Ta bort posten?"; $a->strings["Name is required"] = "Namn är obligatoriskt"; $a->strings["Key and Secret are required"] = "Nyckel och kod är obligatoriska"; -$a->strings["Update"] = "Uppdatera"; $a->strings["Passwords do not match. Password unchanged."] = "Lösenorden stämmer inte överens. Lösenordet har inte ändrats."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomma lösenord tillåts inte. Lösenordet har inte ändrats."; $a->strings["Password changed."] = "Lösenordet ändrat."; @@ -851,7 +1391,6 @@ $a->strings["Protected email address. Cannot change to that email."] = "Skyddad $a->strings["System failure storing new email. Please try again."] = "Systemfel när ny e-postadress skulle sparas. Försök igen."; $a->strings["Settings updated."] = "Inställningar uppdaterade."; $a->strings["Add application"] = "Lägg till applikation"; -$a->strings["Name"] = "Namn"; $a->strings["Name of application"] = "Applikationens namn"; $a->strings["Consumer Key"] = "Nyckel för konsument"; $a->strings["Automatically generated - change if desired. Max length 20"] = "Automatiskt genererad - ändra om så önskas. Maxlängd 20"; @@ -874,33 +1413,34 @@ $a->strings["Confirm:"] = "Bekräfta:"; $a->strings["Leave password fields blank unless changing"] = "Lämna lösenordsfälten blanka om lösenordet inte ska ändras"; $a->strings["Email Address:"] = "E-postadress"; $a->strings["Remove Account"] = "Ta bort konto"; +$a->strings["Remove this account from this server including all its channels"] = "Ta bort det här kontot från servern, inklusive alla dess kanaler"; $a->strings["Warning: This action is permanent and cannot be reversed."] = "Varning: Den här handlingen är permanent och kan inte återställas."; $a->strings["Off"] = "Av"; $a->strings["On"] = "På"; $a->strings["Additional Features"] = "Ytterligare funktioner"; $a->strings["Connector Settings"] = "Anslutningsinställningar"; $a->strings["No special theme for mobile devices"] = "Inget särskilt tema för mobila enheter"; +$a->strings["%s - (Experimental)"] = "%s - (experimentellt)"; $a->strings["Display Settings"] = "Utseende"; $a->strings["Display Theme:"] = "Tema för utseende:"; $a->strings["Mobile Theme:"] = "Mobilt tema:"; +$a->strings["Enable user zoom on mobile devices"] = "Tillåt användare att zooma på mobila enheter"; $a->strings["Update browser every xx seconds"] = "Uppdatera webbläsaren var xx sekund"; $a->strings["Minimum of 10 seconds, no maximum"] = "Minst 10 sekunder, inget maximum"; $a->strings["Maximum number of conversations to load at any time:"] = "Högsta antal konversationer att ladda åt gången:"; $a->strings["Maximum of 100 items"] = "Maximalt 100 poster"; $a->strings["Don't show emoticons"] = "Visa inte känsloikoner"; -$a->strings["Do not view remote profiles in frames"] = "Visa inte profiler på andra servrar i ramar"; -$a->strings["By default open in a sub-window of your own site"] = "Som standard öppnas de i ett underfönster på din lokala server"; +$a->strings["Link post titles to source"] = "Länka inläggstitlar till källan"; $a->strings["System Page Layout Editor - (advanced)"] = "Redigera systemets sidlayout (avancerat)"; $a->strings["Nobody except yourself"] = "Ingen utom dig själv"; $a->strings["Only those you specifically allow"] = "Endast utvalda"; -$a->strings["Anybody in your address book"] = "Vem som helst i din adressbok"; +$a->strings["Approved connections"] = "Godkända kontakter"; +$a->strings["Any connections"] = "Alla kontakter"; $a->strings["Anybody on this website"] = "Vem som helst på den här servern"; $a->strings["Anybody in this network"] = "Vem som helst i det här nätverket"; $a->strings["Anybody authenticated"] = "Vem som helst som har autentiserat sig"; $a->strings["Anybody on the internet"] = "Vem som helst på Internet"; $a->strings["Publish your default profile in the network directory"] = "Publicera din standardprofil i nätverkskatalogen"; -$a->strings["No"] = "Nej"; -$a->strings["Yes"] = "Ja"; $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Tillåt oss att föreslå dig som möjlig vän för nya medlemmar"; $a->strings["or"] = "eller"; $a->strings["Your channel address is"] = "Din kanaladress är"; @@ -913,6 +1453,7 @@ $a->strings["Use Browser Location:"] = "Använd webbläsarens position:"; $a->strings["Adult Content"] = "Pornografiskt innehåll"; $a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Den här kanalen publicerar ofta eller regelbundet pornografiskt innehåll. (Tagga allt pornografiskt material och/eller nakenhet med #NSFW, tack)"; $a->strings["Security and Privacy Settings"] = "Säkerhets- och integritetsinställningar"; +$a->strings["Your permissions are already configured. Click to view/adjust"] = "Dina behörigheter har redan ställts in. Klicka för att visa/ändra"; $a->strings["Hide my online presence"] = "Visa inte min online-närvaro"; $a->strings["Prevents displaying in your profile that you are online"] = "Förhindrar att det syns i din profil att du är online"; $a->strings["Simple Privacy Settings:"] = "Enkla integritetsinställningar:"; @@ -928,7 +1469,7 @@ $a->strings["0 or blank prevents expiration"] = "0 eller blankt förhindrar upph $a->strings["Maximum Friend Requests/Day:"] = "Högsta antal vänförfrågningar per dag:"; $a->strings["May reduce spam activity"] = "Kan reducera spamaktivitet"; $a->strings["Default Post Permissions"] = "Standardbehörighet för inlägg"; -$a->strings["(click to open/close)"] = "(klicka för att öppna/stänga)"; +$a->strings["Channel permissions category:"] = "Kanalens behörighetskategori:"; $a->strings["Maximum private messages per day from unknown people:"] = "Högsta antal privata meddelanden per dag från okända personer:"; $a->strings["Useful to reduce spamming"] = "Användbart för att minska skräputskick"; $a->strings["Notification Settings"] = "Notifieringsinställningar"; @@ -936,7 +1477,7 @@ $a->strings["By default post a status message when:"] = "Skicka som standard ett $a->strings["accepting a friend request"] = "du accepterar en vänförfrågan"; $a->strings["joining a forum/community"] = "du går med i ett forum/en gemenskap"; $a->strings["making an interesting profile change"] = "du gör en intressant ändring av profilen"; -$a->strings["Send a notification email when:"] = "Skicka en notifiering via e-post med när:"; +$a->strings["Send a notification email when:"] = "Skicka en notifiering via e-post när:"; $a->strings["You receive a connection request"] = "Du får en kontaktförfrågan"; $a->strings["Your connections are confirmed"] = "Dina kontakter bekräftas"; $a->strings["Someone writes on your profile wall"] = "Någon skriver på din profilvägg"; @@ -945,77 +1486,68 @@ $a->strings["You receive a private message"] = "Du tar emot ett privat meddeland $a->strings["You receive a friend suggestion"] = "Du tar emot ett vänförslag"; $a->strings["You are tagged in a post"] = "Du taggas i ett inlägg"; $a->strings["You are poked/prodded/etc. in a post"] = "Du puffas/stöts till/etc. i ett inlägg"; +$a->strings["Show visual notifications including:"] = "Visa visuella notifieringar vid:"; +$a->strings["Unseen matrix activity"] = "Oläst matrisaktivitet"; +$a->strings["Unseen channel activity"] = "Oläst kanalaktivitet"; +$a->strings["Unseen private messages"] = "Olästa privata meddelanden"; +$a->strings["Recommended"] = "Rekommenderas"; +$a->strings["Upcoming events"] = "Kommande händelser"; +$a->strings["Events today"] = "Dagens händelser"; +$a->strings["Upcoming birthdays"] = "Kommande födelsedagar"; +$a->strings["Not available in all themes"] = "Inte tillgänglig i alla teman"; +$a->strings["System (personal) notifications"] = "Systemmeddelanden (personliga)"; +$a->strings["System info messages"] = "Systemmeddelanden"; +$a->strings["System critical alerts"] = "Systemkritiska varningar"; +$a->strings["New connections"] = "Nya kontakter"; +$a->strings["System Registrations"] = "Systemregistreringar"; +$a->strings["Notify me of events this many days in advance"] = "Meddela mig om händelser så här många dagar i förväg"; +$a->strings["Must be greater than 0"] = "Måste vara större än 0"; $a->strings["Advanced Account/Page Type Settings"] = "Avancerade konto-/sidtypsinställningar"; $a->strings["Change the behaviour of this account for special situations"] = "Ändra det här kontots beteende i särskilda situationer"; $a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Aktivera expertläge (i Inställningar > Ytterligare funktioner) för att göra ändringar!"; $a->strings["Miscellaneous Settings"] = "Diverse inställningar"; $a->strings["Personal menu to display in your channel pages"] = "Personlig meny att visa i dina kanalsidor"; -$a->strings["Menu updated."] = "Meny uppdaterad."; -$a->strings["Unable to update menu."] = "Kunde inte uppdatera meny."; -$a->strings["Menu created."] = "Meny skapad."; -$a->strings["Unable to create menu."] = "Kunde inte skapa meny."; -$a->strings["Manage Menus"] = "Hantera menyer"; -$a->strings["Drop"] = "Ta bort"; -$a->strings["Create a new menu"] = "Skapa en ny meny"; -$a->strings["Delete this menu"] = "Ta bort den här menyn"; -$a->strings["Edit menu contents"] = "Redigera menyinnehåll"; -$a->strings["Edit this menu"] = "Redigera den här menyn"; -$a->strings["New Menu"] = "Ny meny"; -$a->strings["Menu name"] = "Menynamn"; -$a->strings["Must be unique, only seen by you"] = "Måste vara unikt, ses endast av dig"; -$a->strings["Menu title"] = "Menytitel"; -$a->strings["Menu title as seen by others"] = "Menytitel som andra ser den"; -$a->strings["Allow bookmarks"] = "Tillåt bokmärken"; -$a->strings["Menu may be used to store saved bookmarks"] = "Menyn kan användas för att spara bokmärken"; -$a->strings["Create"] = "Skapa"; -$a->strings["Menu not found."] = "Menyn hittades inte."; -$a->strings["Menu deleted."] = "Meny borttagen."; -$a->strings["Menu could not be deleted."] = "Menyn kunde inte tas bort."; -$a->strings["Edit Menu"] = "Redigera meny"; -$a->strings["Add or remove entries to this menu"] = "Lägg till eller ta bort menyval"; -$a->strings["Modify"] = "Ändra"; -$a->strings["Not found."] = "Hittades inte."; -$a->strings["View"] = "Visa"; -$a->strings["Authorize application connection"] = "Tillåt anslutning av applikation"; -$a->strings["Return to your app and insert this Securty Code:"] = "Återgå till din applikation och ange den här säkerhetskoden:"; -$a->strings["Please login to continue."] = "Logga in för att fortsätta."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?"; -$a->strings["No installed applications."] = "Inga installerade applikationer"; -$a->strings["Applications"] = "Applikationer"; -$a->strings["Item not found"] = "Posten hittas inte"; -$a->strings["Item is not editable"] = "Posten går ej att redigera"; -$a->strings["Edit post"] = "Redigera inlägg"; -$a->strings["Delete item?"] = "Ta bort posten?"; -$a->strings["Insert YouTube video"] = "Infoga Youtube-video"; -$a->strings["Insert Vorbis [.ogg] video"] = "Infoga Vorbis [.ogg]-video"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Infoga Vorbis [.ogg]-ljud"; -$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix - Gäster: Användarnamn: {din e-postadress}, Lösenord: +++"; -$a->strings["Bookmark added"] = "Bokmärke tillagt"; -$a->strings["My Bookmarks"] = "Mina bokmärken"; -$a->strings["My Connections Bookmarks"] = "Mina kontakters bokmärken"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s följer %2\$ss %3\$s"; -$a->strings["[Embedded content - reload page to view]"] = "[Inbäddat innehåll - ladda om sidan för att visa]"; -$a->strings["Channel not found."] = "Kanalen hittas inte."; -$a->strings["toggle full screen mode"] = "växla helskärmsläge"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s taggade%2\$ss %3\$s med %4\$s"; +$a->strings["Remove this channel"] = "Ta bort den här kanalen"; +$a->strings["Edit Webpage"] = "Redigera webbsida"; +$a->strings["Delete webpage?"] = "Ta bort webbsida?"; +$a->strings["Delete Webpage"] = "Ta bort webbsida"; +$a->strings["webpage"] = "webbsida"; +$a->strings["block"] = "block"; +$a->strings["layout"] = "layout"; +$a->strings["%s element installed"] = "%selement installerat"; +$a->strings["Image uploaded but image cropping failed."] = "Bilden laddades upp men beskärning misslyckades."; +$a->strings["Image resize failed."] = "Ändring av bildstorlek misslyckades."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt."; +$a->strings["Image exceeds size limit of %d"] = "Bilden överskrider storleksbegränsningen %d"; +$a->strings["Unable to process image."] = "Kunde inte behandla bilden."; +$a->strings["Photo not available."] = "Fotot är inte tillgängligt."; +$a->strings["Upload File:"] = "Ladda upp fil:"; +$a->strings["Select a profile:"] = "Välj en profil:"; +$a->strings["Upload Profile Photo"] = "Ladda upp profilfoto"; +$a->strings["skip this step"] = "hoppa över det här steget"; +$a->strings["select a photo from your photo albums"] = "välj ett foto från dina fotoalbum"; +$a->strings["Crop Image"] = "Beskär bild"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Justera bildens beskärning för bästa utseende."; +$a->strings["Done Editing"] = "Klar med redigering"; +$a->strings["Image uploaded successfully."] = "Bilduppladdning lyckades."; +$a->strings["Image upload failed."] = "Bilduppladdning misslyckades."; +$a->strings["Image size reduction [%s] failed."] = "Krympning av bilden [%s] misslyckades."; +$a->strings["Contact not found."] = "Kontakten hittades inte."; +$a->strings["Friend suggestion sent."] = "Vänförfrågan skickad."; +$a->strings["Suggest Friends"] = "Föreslå vänner"; +$a->strings["Suggest a friend for %s"] = "Föreslå en vän för %s"; +$a->strings["Permission Denied."] = "Behörighet saknas."; +$a->strings["File not found."] = "Filen hittas inte."; +$a->strings["Edit file permissions"] = "Redigera filrättigheter"; +$a->strings["Set/edit permissions"] = "Ställ in/ändra behörigheter"; +$a->strings["Include all files and sub folders"] = "Inkludera alla filer och underkataloger"; +$a->strings["Return to file list"] = "Återgå till fillistan"; +$a->strings["Copy/paste this code to attach file to a post"] = "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida"; +$a->strings["Help:"] = "Hjälp:"; +$a->strings["Not Found"] = "Hittas inte"; $a->strings["network"] = "nätverk"; -$a->strings["Public access denied."] = "Offentlig behörighet saknas."; -$a->strings["No connections."] = "Inga kontakter."; -$a->strings["Visit %s's profile [%s]"] = "Besök %ss profil [%s]"; -$a->strings["View Connnections"] = "Visa kontakter"; -$a->strings["Tag removed"] = "Tagg borttagen"; -$a->strings["Remove Item Tag"] = "Ta bort innehållstagg"; -$a->strings["Select a tag to remove: "] = "Välj en tagg att ta bort: "; -$a->strings["Remove"] = "Ta bort"; -$a->strings["Continue"] = "Fortsätt"; -$a->strings["Premium Channel Setup"] = "Inställning av premiumkanal"; -$a->strings["Enable premium channel connection restrictions"] = "Aktivera kontaktrestriktioner för premiumkanal"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Ange dina restriktioner och villkor, som Paypal-kvitto, användarriktlinjer, etc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Den här kanalen kan kräva ytterligare steg eller godkännande av följande villkor innan anslutning:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentiella kontakter kommer sedan att se följande text innan de går vidare:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Genom att fortsätta intygar jag att jag har följt alla instruktioner som ges på den här sidan."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Inga specifika instruktioner har givits av kanalägaren.)"; -$a->strings["Restricted or Premium Channel"] = "Begränsad kanal eller premiumkanal"; +$a->strings["Channel added."] = "Kanal tillagd."; $a->strings["No potential page delegates located."] = "Inga potentiella sid-ombud funna."; $a->strings["Delegate Page Management"] = "Delegera sidhantering"; $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."] = "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på."; @@ -1024,61 +1556,42 @@ $a->strings["Existing Page Delegates"] = "Befintliga sid-ombud"; $a->strings["Potential Delegates"] = "Potentiella ombud"; $a->strings["Add"] = "Lägg till"; $a->strings["No entries."] = "Inga poster."; -$a->strings["Layout updated."] = "Layout uppdaterad."; -$a->strings["Edit System Page Description"] = "Redigera systemsidbeskrivning"; -$a->strings["Layout not found."] = "Layout hittas inte."; -$a->strings["Module Name:"] = "Modulnamn:"; -$a->strings["Layout Help"] = "Layouthjälp"; -$a->strings["Item not available."] = "Post inte tillgänglig."; -$a->strings["Unable to locate original post."] = "Kunde inte hitta originalinlägget."; -$a->strings["Empty post discarded."] = "Tomt inlägg förkastat."; -$a->strings["Executable content type not permitted to this channel."] = "Körbart innehåll tillåts inte i den här kanalen."; -$a->strings["System error. Post not saved."] = "Systemfel. Inlägget inte sparat."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du har nått din gräns på %1$.0f toppnivåinlägg."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Du har nått din gräns på %1$.0f webbsidor."; -$a->strings["Menu element updated."] = "Menyval uppdaterat."; -$a->strings["Unable to update menu element."] = "Kunde inte uppdatera menyval."; -$a->strings["Menu element added."] = "Menyval tillagt."; -$a->strings["Unable to add menu element."] = "Kunde inte lägga till menyval."; -$a->strings["Manage Menu Elements"] = "Hantera menyval"; -$a->strings["Edit menu"] = "Redigera meny"; -$a->strings["Edit element"] = "Redigera menyval"; -$a->strings["Drop element"] = "Ta bort menyval"; -$a->strings["New element"] = "Nytt menyval"; -$a->strings["Edit this menu container"] = "Redigera den här menysamlaren"; -$a->strings["Add menu element"] = "Lägg till menyval"; -$a->strings["Delete this menu item"] = "Ta bort det här menyvalet"; -$a->strings["Edit this menu item"] = "Redigera det här menyvalet"; -$a->strings["New Menu Element"] = "Nytt menyval"; -$a->strings["Menu Item Permissions"] = "Behörighet för menyval"; -$a->strings["Link text"] = "Länktext"; -$a->strings["URL of link"] = "Länkens URL"; -$a->strings["Use Red magic-auth if available"] = "Använd Red magic-auth om tillgängligt"; -$a->strings["Open link in new window"] = "Öppna länk i nytt fönster"; -$a->strings["Order in list"] = "Ordningstal i listan"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Större tal sjunker till botten av listan"; -$a->strings["Menu item not found."] = "Menyval hittas inte."; -$a->strings["Menu item deleted."] = "Menyval borttaget."; -$a->strings["Menu item could not be deleted."] = "Menyval kunde inte tas bort."; -$a->strings["Edit Menu Element"] = "Redigera menyval"; -$a->strings["invalid target signature"] = "ogiltig målsignatur"; -$a->strings["Invalid profile identifier."] = "Ogiltigt profil-ID."; -$a->strings["Profile Visibility Editor"] = "Redigera profilsynlighet"; -$a->strings["Click on a contact to add or remove."] = "Klicka på en kontakt för att lägga till eller ta bort."; -$a->strings["Visible To"] = "Synlig för"; -$a->strings["All Connections"] = "Alla kontakter"; -$a->strings["Collection created."] = "Sammanhang skapat"; -$a->strings["Could not create collection."] = "Kunde inte skapa sammanhanget."; -$a->strings["Collection updated."] = "Sammanhanget uppdatarat."; -$a->strings["Create a collection of channels."] = "Skapa ett sammanhang av kanaler."; -$a->strings["Collection Name: "] = "Namn på sammanhang: "; -$a->strings["Members are visible to other channels"] = "Medlemmar är synliga för andra kanaler"; -$a->strings["Collection removed."] = "Sammanhang borttaget."; -$a->strings["Unable to remove collection."] = "Kunde inte ta bort sammanhang."; -$a->strings["Collection Editor"] = "Sammanhangsredigering"; +$a->strings["Collection created."] = "Krets skapad."; +$a->strings["Could not create collection."] = "Kunde inte skapa krets."; +$a->strings["Collection updated."] = "Kretsen uppdaterad."; +$a->strings["Create a collection of channels."] = "Skapa en krets av kanaler."; +$a->strings["Collection Name: "] = "Namn på krets: "; +$a->strings["Members are visible to other channels"] = "Medlemmar kan ses av andra kanaler"; +$a->strings["Collection removed."] = "Krets borttagen."; +$a->strings["Unable to remove collection."] = "Kunde inte ta bort krets."; +$a->strings["Collection Editor"] = "Redigera krets"; $a->strings["Members"] = "Medlemmar"; $a->strings["All Connected Channels"] = "Alla anslutna kanaler"; $a->strings["Click on a channel to add or remove."] = "Klicka på en kanal för att lägga till eller ta bort."; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar."; +$a->strings["Your service plan only allows %d channels."] = "Din tjänstenivå tillåter bara %d kanaler."; +$a->strings["Nothing to import."] = "Inget att importera."; +$a->strings["Unable to download data from old server"] = "Kunde inte ladda ner data från den gamla servern"; +$a->strings["Imported file is empty."] = "Den importerade filen är tom."; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades."; +$a->strings["Channel clone failed. Import failed."] = "Kloning av kanalen misslyckades. Import misslyckades."; +$a->strings["Cloned channel not found. Import failed."] = "Den klonade kanalen hittas inte. Import misslyckades."; +$a->strings["Import completed."] = "Import slutförd."; +$a->strings["You must be logged in to use this feature."] = "Du måste vara inloggad för att kunna använda den här funktionen."; +$a->strings["Import Channel"] = "Importera kanal"; +$a->strings["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."] = "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte."; +$a->strings["File to Upload"] = "Fil att ladda upp"; +$a->strings["Or provide the old server/hub details"] = "Eller ge uppgifter om den gamla servern/hubben"; +$a->strings["Your old identity address (xyz@example.com)"] = "Din gamla identitetsadress (xyz@example.com)"; +$a->strings["Your old login email address"] = "Din gamla e-postadress för inloggning"; +$a->strings["Your old login password"] = "Ditt gamla inloggningslösenord"; +$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."] = "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media."; +$a->strings["Make this hub my primary location"] = "Gör den här hubben till min primära plats"; +$a->strings["Import existing posts if possible"] = "Importera befintliga inlägg om möjligt"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s taggade%2\$ss %3\$s med %4\$s"; +$a->strings["Tag removed"] = "Tagg borttagen"; +$a->strings["Remove Item Tag"] = "Ta bort innehållstagg"; +$a->strings["Select a tag to remove: "] = "Välj en tagg att ta bort: "; $a->strings["Theme settings updated."] = "Temainställningar uppdaterade."; $a->strings["Site"] = "Server"; $a->strings["Accounts"] = "Konton"; @@ -1086,6 +1599,7 @@ $a->strings["Channels"] = "Kanaler"; $a->strings["Plugins"] = "Tillägg"; $a->strings["Themes"] = "Teman"; $a->strings["Server"] = "Server"; +$a->strings["Profile Config"] = "Profilkonfiguration"; $a->strings["DB updates"] = "Databasuppdateringar"; $a->strings["Logs"] = "Loggar"; $a->strings["Plugin Features"] = "Tilläggsfunktioner"; @@ -1098,15 +1612,14 @@ $a->strings["Pending registrations"] = "Pågående registreringar"; $a->strings["Version"] = "Version"; $a->strings["Active plugins"] = "Aktiva tillägg"; $a->strings["Site settings updated."] = "Serverinställningar uppdaterade."; -$a->strings["No special theme for accessibility"] = "Inget speciellt tema för tillgänglighet"; -$a->strings["Closed"] = "Stängd"; -$a->strings["Requires approval"] = "Kräver godkännande"; -$a->strings["Open"] = "Öppen"; -$a->strings["Private"] = "Privat"; -$a->strings["Paid Access"] = "Betald åtkomst"; -$a->strings["Free Access"] = "Fri åtkomst"; -$a->strings["Tiered Access"] = "Uppdelad åtkomst"; -$a->strings["Registration"] = "Registrering"; +$a->strings["mobile"] = "mobilt"; +$a->strings["experimental"] = "experimentellt"; +$a->strings["unsupported"] = "stöds ej"; +$a->strings["Yes - with approval"] = "Ja - med godkännande"; +$a->strings["My site is not a public server"] = "Min server är inte offentlig"; +$a->strings["My site has paid access only"] = "Min server har endast åtkomst mot betalning"; +$a->strings["My site has free access only"] = "Min server har endast gratis åtkomst"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "Min server erbjuder gratis konton med uppgradering mot betalning"; $a->strings["File upload"] = "Filuppladdning"; $a->strings["Policies"] = "Policyer"; $a->strings["Site name"] = "Servernamn"; @@ -1118,14 +1631,14 @@ $a->strings["System theme"] = "Systemtema"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Förvalt systemtema - kan åsidosättas i användarprofiler - ändra temainställningar"; $a->strings["Mobile system theme"] = "Mobilt systemtema"; $a->strings["Theme for mobile devices"] = "Tema för mobila enheter"; -$a->strings["Accessibility system theme"] = "Systemtema för ökad tillgänglighet"; -$a->strings["Accessibility theme"] = "Tillgänglighetstema"; -$a->strings["Channel to use for this website's static pages"] = "Kanal att använda för den här webbplatsens statiska sidor"; -$a->strings["Site Channel"] = "Sidkanal"; +$a->strings["Enable Diaspora Protocol"] = "Aktivera protokoll för Diaspora"; +$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Kommunicera med Diaspora och Friendica - experimentellt"; +$a->strings["Allow Feeds as Connections"] = "Tillåt flöden som kontakter"; +$a->strings["(Heavy system resource usage)"] = "(systemresurskrävande)"; $a->strings["Maximum image size"] = "Maximal bildstorlek"; $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximal storlek i byte för uppladdade bilder. Standard är 0, vilket innebär ingen storleksbegränsning."; -$a->strings["Register policy"] = "Registreringspolicy"; -$a->strings["Access policy"] = "Åtkomstpolicy"; +$a->strings["Does this site allow new member registration?"] = "Tillåter den här servern nya medlemmar att registrera sig?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "Vilket beskriver bäst kontotypen som erbjuds på den här hubben?"; $a->strings["Register text"] = "Registreringstext"; $a->strings["Will be displayed prominently on the registration page."] = "Visas tydligt på registreringssidan."; $a->strings["Accounts abandoned after x days"] = "Konto övergivet efter x dagar"; @@ -1136,6 +1649,8 @@ $a->strings["Allowed email domains"] = "Tillåtna e-postdomäner"; $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"] = "Kommaseparerad lista med domäner som tillåts i e-postadresser för registreringar på den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner."; $a->strings["Block public"] = "Blockera offentlig åtkomst"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Välj för att blockera åtkomst till alla personliga sidor som annars skulle vara offentliga på den här servern om man inte är inloggad."; +$a->strings["Verify Email Addresses"] = "Bekräfta e-postadress"; +$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Välj för att bekräfta e-postadresser som används för kontoregistrering (rekommenderas)."; $a->strings["Force publish"] = "Tvinga publicering"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Välj för att tvinga alla profiler på den här servern att listas i serverkatalogen."; $a->strings["Disable discovery tab"] = "Inaktivera upptäck-fliken"; @@ -1175,7 +1690,6 @@ $a->strings["%s user deleted"] = array( 1 => "%s användare borttagna", ); $a->strings["Account not found"] = "Konto hittas inte"; -$a->strings["User '%s' deleted"] = "Användare '%s' borttagen"; $a->strings["User '%s' unblocked"] = "Användare '%s' avblockerad"; $a->strings["User '%s' blocked"] = "Användare '%s' blockerad"; $a->strings["Users"] = "Användare"; @@ -1185,8 +1699,6 @@ $a->strings["Request date"] = "Ansökningsdatum"; $a->strings["No registrations."] = "Inga registreringar."; $a->strings["Approve"] = "Godkänn"; $a->strings["Deny"] = "Avslå"; -$a->strings["Block"] = "Blockera"; -$a->strings["Unblock"] = "Avblockera"; $a->strings["Register date"] = "Registreringsdatum"; $a->strings["Last login"] = "Senaste inloggning"; $a->strings["Expires"] = "Upphör att gälla"; @@ -1208,7 +1720,6 @@ $a->strings["Channel '%s' censored"] = "Kanal '%s' censurerad"; $a->strings["Censor"] = "Censurera"; $a->strings["Uncensor"] = "Avcensurera"; $a->strings["UID"] = "UID"; -$a->strings["Address"] = "Adress"; $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?"] = "Valda kanaler kommer att tas bort!\\n\\nAllt som har postats i de kanalerna på den här servern kommer att raderas permanent!\\n\\nÄr du säker?"; $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?"] = "Kanalen {0} kommer att tas bort!\\n\\nAllt som har postats i den här kanalen på den här servern kommer att raderas permanent!\\n\\nÄr du säker?"; $a->strings["Plugin %s disabled."] = "Tillägg %s inaktiverat."; @@ -1228,550 +1739,179 @@ $a->strings["Debugging"] = "Avlusning"; $a->strings["Log file"] = "Loggfil"; $a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Måste vara skrivbar för webbservern. Anges relativt Reds toppkatalog."; $a->strings["Log level"] = "Loggnivå"; -$a->strings["- select -"] = "- välj -"; -$a->strings["Welcome to %s"] = "Välkommen till %s"; -$a->strings["Red Matrix Server - Setup"] = "Red Matrix-server - inställningar"; -$a->strings["Could not connect to database."] = "Kunde inte ansluta till databasen."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Kunde inte ansluta till den angivna server-URL:en. Möjligt problem med SSL-certifikat eller DNS."; -$a->strings["Could not create table."] = "Kunde inte skapa tabell."; -$a->strings["Your site database has been installed."] = "Din serverdatabas har installerats."; -$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Du kan behöva importera filen \"install/database.sql\" manuellt med phpmyadmin eller mysql."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Se filen \"install/INSTALL.txt\"."; -$a->strings["System check"] = "Systemkontroll"; -$a->strings["Check again"] = "Kontrollera igen"; -$a->strings["Database connection"] = "Databasanslutning"; -$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "För att kunna installera Red Matrix behöver vi veta hur databasen ska anslutas."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Kontakta din servervärd eller administratör om du har frågor om de här inställningarna."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du anger nedan måste finnas. Om den inte gör det, skapa den innan du fortsätter."; -$a->strings["Database Server Name"] = "Databasserver"; -$a->strings["Default is localhost"] = "Standard är localhost"; -$a->strings["Database Port"] = "Databasport"; -$a->strings["Communication port number - use 0 for default"] = "Kommunikationsportnummer - använd 0 för standardinställning"; -$a->strings["Database Login Name"] = "Loginnamn till databas"; -$a->strings["Database Login Password"] = "Lösenord till databas"; -$a->strings["Database Name"] = "Databasnamn"; -$a->strings["Site administrator email address"] = "Serveradministratörens e-postadress"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ditt kontos e-postadress måste stämma med den här för att webbgränssnittet för administration ska kunna användas."; -$a->strings["Website URL"] = "Webbplatsens URL"; -$a->strings["Please use SSL (https) URL if available."] = "Ange en URL med SSL (https) om tillgängligt"; -$a->strings["Please select a default timezone for your website"] = "Välj en standardtidszon för din webbplats"; -$a->strings["Site settings"] = "Serverinställningar"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kunde inte hitta en kommandoradsversion av PHP i webbserverns PATH."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Om du inte har en kommandoradsversion av PHP installerad på servern kommer du inte att kunna köra bakgrundshämtning via cron."; -$a->strings["PHP executable path"] = "Sökväg till PHP-programmet"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Ange hela sökvägen till php-programfilen. Du kan lämna det här blankt för att fortsätta installationen."; -$a->strings["Command line PHP"] = "Kommandorads-PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandoradsversionen av PHP på ditt system har inte \"register_argc_argv\" aktiverat."; -$a->strings["This is required for message delivery to work."] = "Det här behövs för att meddelandeleverans ska fungera."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fel: \"openssl_pkey_new\"-funktionen på det här systemet kan inte generera kryptonycklar"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Om systemet kör Windows, se \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generera kryptonycklar"; -$a->strings["libCurl PHP module"] = "PHP-modulen libCurl"; -$a->strings["GD graphics PHP module"] = "PHP-modulen GD graphics"; -$a->strings["OpenSSL PHP module"] = "PHP-modulen OpenSSL"; -$a->strings["mysqli PHP module"] = "PHP-modulen mysqli"; -$a->strings["mb_string PHP module"] = "PHP-modulen mb_string"; -$a->strings["mcrypt PHP module"] = "PHP-modulen mcrypt"; -$a->strings["Apache mod_rewrite module"] = "Apache-modulen mod_rewrite"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fel: Apache-webbserverns mod-rewrite-modul krävs men är inte installerad."; -$a->strings["proc_open"] = "proc_open"; -$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fel: proc_open krävs men är antingen inte installerad eller har inaktiverats i php.ini"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fel: PHP-modulen libCURL krävs men är inte installerad."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fel: PHP-modulen GD graphics med JPEG-stöd krävs men är inte installerad."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fel: PHP-modulen openssl krävs men är inte installerad."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fel: PHP-modulen mysqli krävs men är inte installerad."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fel: PHP-modulen mb_string krävs men är inte installerad."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Fel: PHP-modulen mcrypt krävs men är inte installerad."; -$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."] = "Webbinstallationen måste kunna skapa filen \".htconfig.php\" i toppkatalogen på din webbserver men kan inte göra det."; -$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."] = "Det är ofta en behörighetsinställning som gör att webbservern inte kan skriva filer i din katalog - även om du kan."; -$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."] = "Efter den här proceduren kommer vi att ge dig en text att spara i filen .htconfig.php i Reds toppkatalog."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativt kan du hoppa över den här proceduren och göra en manuell installation. För instruktioner, se filen \"install/INSTALL.txt\"."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php är skrivbar"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red använder mallmotorn Smarty3 för att rendera webbvyerna. Smarty3 kompilerar mallar till PHP för att snabba upp renderingen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "För att kunna spara de här kompilerade mallarna behöver webbservern ha skrivrättigheter i katalogen view/tpl/smarty3/ under Reds toppkatalog."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Försäkra dig om att användaren som din webbserver kör som (t.ex. www-data) har skrivrättigheter till den här katalogen."; -$a->strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = "Observera: som en säkerhetsåtgärd bör du ge webbservern skrivrättigheter endast till view/tpl/smarty3 - inte till mallfilerna (.tpl) som den innehåller."; -$a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 är skrivbar"; -$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 använder katalogen store för att spara uppladdade filer. Webbservern behöver ha skrivrättigheter till katalogen store under Reds toppkatalog."; -$a->strings["store is writable"] = "store är skrivbar"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-certifikatet kan inte valideras. Fixa certifikatet eller inaktivera https-åtkomst till den här servern."; -$a->strings["If you use https access, you MUST use a certification instance known by all internet browsers. You MUST NOT use self-signed certificates!"] = "Om du använder https-åtkomst MÅSTE du använda ett certifikat som känns igen av alla webbläsare. Du FÅR INTE använda självsignerade certifikat!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub. If your"] = "Den här restriktionen finns för att offentliga inlägg från dig till exempel kan innehålla referenser till bilder på din egen hubb. Om ditt"; -$a->strings["certificate is not known by the internet browser of users they get a warning message complaining about some security issues. Although"] = "certifikat inte känns igen av användares webbläsare får de ett varningsmeddelande om säkerhetsproblem. Även om"; -$a->strings["these complains are not the real truth - there are no security issues with your encryption! - the users may be confused, nerved or even"] = "de här varningarna inte är helt sanna - det är inga säkerhetsproblem med din kryptering! - så kan användare bli förvirrade, nervösa eller"; -$a->strings["worse may become scared about redmatrix having security issues. Use one of the free certification instances!"] = "ännu värre, bli skrämda att redmatrix skulle ha säkerhetsproblem. Använd en av utfärdarna av gratis certifikat."; -$a->strings["SSL certificate validation"] = "SSL-certifikatvalidering"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite i .htaccess fungerar inte. Kontrollera din serverkonfiguration."; -$a->strings["Url rewrite is working"] = "URL rewrite fungerar"; -$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."] = "Databaskonfigurationsfilen \".htconfig.php\" kunde inte skrivas. Använd den bifogade texten för att skapa en konfigurationsfil i din webbservers rot."; -$a->strings["Errors encountered creating database tables."] = "Fel inträffade när databastabeller skulle skapas."; -$a->strings["

    What next

    "] = "

    Nästa steg

    "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIGT: Du behöver ställa in en schemalagd för hämtningsrutinen [manuellt]"; -$a->strings["Age: "] = "Ålder:"; -$a->strings["Gender: "] = "Kön:"; -$a->strings["Finding:"] = "Sökning efter:"; -$a->strings["next page"] = "nästa sida"; -$a->strings["previous page"] = "föregående sida"; -$a->strings["No entries (some entries may be hidden)."] = "Inga resultat (vissa resultat kan vara dolda)."; -$a->strings["Remote privacy information not available."] = "Icke-lokal integritetsinformation är inte tillgänglig"; -$a->strings["Visible to:"] = "Synlig för:"; -$a->strings["Could not access contact record."] = "Kunde inte komma åt kontaktuppgifter."; -$a->strings["Could not locate selected profile."] = "Kunde inte hitta vald profil."; -$a->strings["Connection updated."] = "Kontakt uppdaterad."; -$a->strings["Failed to update connection record."] = "Misslyckades att uppdatera kontaktuppgifter."; -$a->strings["Could not access address book record."] = "Kunde inte komma åt adressboksuppgifter."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Uppdatering misslyckades - kanalen är inte tillgänglig."; -$a->strings["Channel has been unblocked"] = "Kanalen är inte längre blockerad"; -$a->strings["Channel has been blocked"] = "Kanalen har blockerats"; -$a->strings["Unable to set address book parameters."] = "Kunde inte ställa in adressboksparametrar."; -$a->strings["Channel has been unignored"] = "Kanalen ignoreras inte längre"; -$a->strings["Channel has been ignored"] = "Kanalen har ignorerats"; -$a->strings["Channel has been unarchived"] = "Kanalen arkiveras inte längre"; -$a->strings["Channel has been archived"] = "Kanalen har arkiverats"; -$a->strings["Channel has been unhidden"] = "Kanalen döljs inte längre"; -$a->strings["Channel has been hidden"] = "Kanalen har dolts"; -$a->strings["Channel has been approved"] = "Kanalen har godkänts"; -$a->strings["Channel has been unapproved"] = "Kanalen är inte godkänd längre"; -$a->strings["Connection has been removed."] = "Kontakten har tagits bort."; -$a->strings["View %s's profile"] = "Visa %ss profil"; -$a->strings["Refresh Permissions"] = "Uppdatera behörigheter"; -$a->strings["Fetch updated permissions"] = "Hämta uppdaterade behörigheter"; -$a->strings["Recent Activity"] = "Senaste aktiviteten"; -$a->strings["View recent posts and comments"] = "Visa de senaste inläggen och kommentarerna"; -$a->strings["Block or Unblock this connection"] = "Blockera eller häv blockering av den här kontakten"; -$a->strings["Unignore"] = "Sluta att ignorera"; -$a->strings["Ignore"] = "Ignorera"; -$a->strings["Ignore or Unignore this connection"] = "Ignorera eller sluta att ignorera den här kontakten"; -$a->strings["Unarchive"] = "Sluta att arkivera"; -$a->strings["Archive"] = "Arkivera"; -$a->strings["Archive or Unarchive this connection"] = "Arkivera eller sluta att arkivera den här kontakten"; -$a->strings["Unhide"] = "Sluta att dölja"; -$a->strings["Hide"] = "Dölj"; -$a->strings["Hide or Unhide this connection"] = "Dölj eller sluta att dölja den här kontakten"; -$a->strings["Delete this connection"] = "Ta bort den här kontakten"; -$a->strings["Unknown"] = "Okända"; -$a->strings["Approve this connection"] = "Godkänn den här kontakten"; -$a->strings["Accept connection to allow communication"] = "Acceptera kontakten för att tillåta kommunikation"; -$a->strings["Automatic Permissions Settings"] = "Automatiska behörighetsinställningar"; -$a->strings["Connections: settings for %s"] = "Kontakter: inställningar 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."] = "När en kanal presenterar sig för dig kommer alla behörigheter här att gälla för den nya kontakten automatiskt och presentationen att godkännas. Lämna den här sidan om du inte önskar använda den här funktionen."; -$a->strings["Slide to adjust your degree of friendship"] = "Dra för att justera er vänskapsnivå"; -$a->strings["inherited"] = "ärvd"; -$a->strings["Connection has no individual permissions!"] = "Kontakten har inga individuella behörigheter!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Det här kan vara lämpligt beroende på dina integritetsinställningar, men du vill kanske se över de \"Avancerade inställningarna\"."; -$a->strings["Profile Visibility"] = "Profilsynlighet"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Välj profilen som du vill ska synas när %s ser din profil på ett säkert sätt."; -$a->strings["Contact Information / Notes"] = "Kontaktinformation / anteckningar"; -$a->strings["Edit contact notes"] = "Redigera anteckningar för kontakten"; -$a->strings["Their Settings"] = "Deras inställningar"; -$a->strings["My Settings"] = "Mina inställningar"; -$a->strings["Forum Members"] = "Forummedlemmar"; -$a->strings["Soapbox"] = "Talarstol"; -$a->strings["Full Sharing (typical social network permissions)"] = "Full delning (typiska behörigheter för sociala nätverk)"; -$a->strings["Cautious Sharing "] = "Försiktig delning"; -$a->strings["Follow Only"] = "Följ endast"; -$a->strings["Individual Permissions"] = "Individuella behörigheter"; -$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."] = "Vissa behörigheter kan ärvas från din kanals integritetsinställningar, vilka har högre prioritet än individuella inställningar. Ändring av de ärvda inställningarna på den här sidan har ingen effekt."; -$a->strings["Advanced Permissions"] = "Avancerade behörighetsinställningar"; -$a->strings["Simple Permissions (select one and submit)"] = "Enkla behörighetsinställningar (välj en och spara)"; -$a->strings["Visit %s's profile - %s"] = "Besök %ss profil - %s"; -$a->strings["Block/Unblock contact"] = "Blockera/häv blockering av kontakt"; -$a->strings["Ignore contact"] = "Ignorera kontakt"; -$a->strings["Repair URL settings"] = "Reparera URL-inställningar"; -$a->strings["View conversations"] = "Visa konversationer"; -$a->strings["Delete contact"] = "Ta bort kontakt"; -$a->strings["Last update:"] = "Senaste uppdatering:"; -$a->strings["Update public posts"] = "Uppdatera offentliga inlägg"; -$a->strings["Update now"] = "Uppdatera nu"; -$a->strings["Currently blocked"] = "Blockerad"; -$a->strings["Currently ignored"] = "Ignorerad"; -$a->strings["Currently archived"] = "Arkiverad"; -$a->strings["Currently pending"] = "Inväntar svar"; -$a->strings["Hide this contact from others"] = "Dölj den här kontakten för andra"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Svar/gilla-reaktioner på dina offentliga inlägg kan fortfarande synas"; +$a->strings["New Profile Field"] = "Nytt profilfält"; +$a->strings["Field nickname"] = "Smeknamn på fält"; +$a->strings["System name of field"] = "Systemnamn på fält"; +$a->strings["Input type"] = "Datatyp"; +$a->strings["Field Name"] = "Fältnamn"; +$a->strings["Label on profile pages"] = "Beteckning på profilsidor"; +$a->strings["Help text"] = "Hjälptext"; +$a->strings["Additional info (optional)"] = "Ytterligare info (frivilligt)"; +$a->strings["Field definition not found"] = "Fältdefinition hittades inte"; +$a->strings["Edit Profile Field"] = "Redigera profilfält"; +$a->strings["Unable to locate original post."] = "Kunde inte hitta originalinlägget."; +$a->strings["Empty post discarded."] = "Tomt inlägg förkastat."; +$a->strings["Executable content type not permitted to this channel."] = "Körbart innehåll tillåts inte i den här kanalen."; +$a->strings["System error. Post not saved."] = "Systemfel. Inlägget inte sparat."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du har nått din gräns på %1$.0f toppnivåinlägg."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Du har nått din gräns på %1$.0f webbsidor."; +$a->strings["Like/Dislike"] = "Gilla/ogilla"; +$a->strings["This action is restricted to members."] = "Den här åtgärden fungerar bara för medlemmar."; +$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Logga in med ditt RedMatrix-ID eller registrera dig som ny RedMatrix medlem för att fortsätta."; +$a->strings["Invalid request."] = "Ogiltig begäran."; +$a->strings["thing"] = "sak"; +$a->strings["Channel unavailable."] = "Kanalen kan ej nås."; +$a->strings["Previous action reversed."] = "Föregående åtgärd återställdes."; +$a->strings["Action completed."] = "Åtgärden slutfördes."; +$a->strings["Thank you."] = "Tack."; +$a->strings["Total invitation limit exceeded."] = "Gränsen för totalt antal inbjudningar överskriden."; +$a->strings["%s : Not a valid email address."] = "%s: Inte en giltig e-postadress."; +$a->strings["Please join us on Red"] = "Gå med oss i Red"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Inbjudningsgränsen överskriden. Kontakta din serveradministratör."; +$a->strings["%s : Message delivery failed."] = "%s : Leverans av meddelande misslyckades."; +$a->strings["%d message sent."] = array( + 0 => "%d meddelande sänt.", + 1 => "%d meddelanden sända.", +); +$a->strings["You have no more invitations available"] = "Du har inga fler inbjudningar kvar"; +$a->strings["Send invitations"] = "Skicka inbjudan"; +$a->strings["Enter email addresses, one per line:"] = "Ange e-postadresser, en per rad:"; +$a->strings["Your message:"] = "Ditt meddelande:"; +$a->strings["Please join my community on RedMatrix."] = "Gå med mig i gemenskapen på RedMatrix."; +$a->strings["You will need to supply this invitation code: "] = "Du kommer att behöva den här inbjudningskoden: "; +$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Skapa konto på en RedMatrix-server (alla är ihopkopplade)"; +$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Ange min RedMatrix-adress i webbplatsens sökruta."; +$a->strings["or visit "] = "eller besök "; +$a->strings["3. Click [Connect]"] = "3. Klicka [Ta kontakt]"; +$a->strings["Location not found."] = "Platsen hittades inte."; +$a->strings["Primary location cannot be removed."] = "Huvudplatsen kan inte tas bort."; +$a->strings["No locations found."] = "Inga platser hittades."; +$a->strings["Manage Channel Locations"] = "Hantera kanalplatser"; +$a->strings["Location (address)"] = "Plats (adress)"; +$a->strings["Primary Location"] = "Huvudplats"; +$a->strings["Drop location"] = "Ta bort plats"; +$a->strings["[Embedded content - reload page to view]"] = "[Inbäddat innehåll - ladda om sidan för att visa]"; $a->strings["Help with this feature"] = "Hjälp för den här funktionen"; $a->strings["Layout Name"] = "Layoutnamn"; -$a->strings["Help:"] = "Hjälp:"; -$a->strings["Not Found"] = "Hittas inte"; -$a->strings["Page not found."] = "Sidan hittas inte."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi drabbades av ett problem vid inloggningen med OpenID:t du uppgav. Kontrollera att ID:t är korrekt stavat."; -$a->strings["The error message was:"] = "Felmeddelandet var:"; -$a->strings["Authentication failed."] = "Autentisering misslyckades."; -$a->strings["Remote Authentication"] = "Fjärrautentisering."; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Ange din kanaladress (t.ex. kanal@example.com)"; -$a->strings["Authenticate"] = "Autentisera"; -$a->strings["Invalid item."] = "Ogiltig post."; -$a->strings["No such group"] = "Ingen sådan grupp"; -$a->strings["Search Results For:"] = "Sökresultat för:"; -$a->strings["Collection is empty"] = "Sammanhanget är tomt"; -$a->strings["Collection: "] = "Sammanhang: "; -$a->strings["Connection: "] = "Kontakt:"; -$a->strings["Invalid connection."] = "Ogiltig kontakt."; -$a->strings["Profile not found."] = "Profil hittades inte."; -$a->strings["Profile deleted."] = "Profil borttagen."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Ny profil skapad."; -$a->strings["Profile unavailable to clone."] = "Profil inte tillgänglig för kloning."; -$a->strings["Profile Name is required."] = "Profilnamn krävs."; -$a->strings["Marital Status"] = "Civilstånd"; -$a->strings["Romantic Partner"] = "Romantisk partner"; -$a->strings["Likes"] = "Gillar"; -$a->strings["Dislikes"] = "Ogillar"; -$a->strings["Work/Employment"] = "Arbete/sysselsättning"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Politisk åskådning"; -$a->strings["Gender"] = "Kön"; -$a->strings["Sexual Preference"] = "Sexuell preferens"; -$a->strings["Homepage"] = "Hemsida"; -$a->strings["Interests"] = "Intressen"; -$a->strings["Location"] = "Plats"; -$a->strings["Profile updated."] = "Profil uppdaterad."; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Dölj din kontakt-/vänlista för de som ser den här profilen"; -$a->strings["Edit Profile Details"] = "Redigera profildetaljer"; -$a->strings["View this profile"] = "Visa den här profilen"; -$a->strings["Change Profile Photo"] = "Byt profilfoto"; -$a->strings["Create a new profile using these settings"] = "Skapa en ny profil utifrån de här inställningarna"; -$a->strings["Clone this profile"] = "Klona den här profilen"; -$a->strings["Delete this profile"] = "Ta bort den här profilen"; -$a->strings["Profile Name:"] = "Profilnamn:"; -$a->strings["Your Full Name:"] = "Ditt fulllständiga namn:"; -$a->strings["Title/Description:"] = "Titel/beskrivning:"; -$a->strings["Your Gender:"] = "Ditt kön:"; -$a->strings["Birthday (%s):"] = "Födelsedag (%s):"; -$a->strings["Street Address:"] = "Gatuadress:"; -$a->strings["Locality/City:"] = "Ort:"; -$a->strings["Postal/Zip Code:"] = "Postnummer:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Region:"; -$a->strings[" Marital Status:"] = " Civilstånd:"; -$a->strings["Who: (if applicable)"] = "Vem: (om tillämpligt)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exempel: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Sedan [datum]"; -$a->strings["Homepage URL:"] = "Hemsideadress:"; -$a->strings["Religious Views:"] = "Religion/livsåskådning:"; -$a->strings["Keywords:"] = "Nyckelord:"; -$a->strings["Example: fishing photography software"] = "Exempel: fiske fotografering mjukvara"; -$a->strings["Used in directory listings"] = "Används i kataloglistningar"; -$a->strings["Tell us about yourself..."] = "Beskriv dig själv..."; -$a->strings["Hobbies/Interests"] = "Fritidssysselsättning/intressen"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformation och sociala nätverk"; -$a->strings["My other channels"] = "Mina andra kanaler"; -$a->strings["Musical interests"] = "Musikintressen"; -$a->strings["Books, literature"] = "Böcker, litteratur"; -$a->strings["Television"] = "Tv"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underhållning"; -$a->strings["Love/romance"] = "Kärlek/romantik"; -$a->strings["Work/employment"] = "Arbete/sysselsättning"; -$a->strings["School/education"] = "Skola/utbildning"; -$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Det här är din offentliga profil.
    Den kan ses av vem som helst med tillgång till Internet."; -$a->strings["Edit/Manage Profiles"] = "Redigera/hantera profiler"; -$a->strings["Add profile things"] = "Lägg till profilsaker"; -$a->strings["Include desirable objects in your profile"] = "Inkludera fina prylar i din profil"; -$a->strings["This site is not a directory server"] = "Den här servern är inte en katalogserver"; -$a->strings["Failed to create source. No channel selected."] = "Misslyckades att skapa källa. Ingen kanal vald."; -$a->strings["Source created."] = "Källa skapad."; -$a->strings["Source updated."] = "Källa uppdaterad."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Hantera fjärrkällor med innehåll för din kanal."; -$a->strings["New Source"] = "Ny källa"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importera allt eller valt innehåll från följande kanal till den här kanalen och distribuera det enligt dina kanalinställningar."; -$a->strings["Only import content with these words (one per line)"] = "Importera endast innehåll med de här orden (ett per rad)"; -$a->strings["Leave blank to import all public content"] = "Lämna blankt för att importera allt offentligt innehåll"; -$a->strings["Channel Name"] = "Kanalnamn"; -$a->strings["Source not found."] = "Källa hittades inte."; -$a->strings["Edit Source"] = "Redigera källa"; -$a->strings["Delete Source"] = "Ta bort källa"; -$a->strings["Source removed"] = "Källa borttagen"; -$a->strings["Unable to remove source."] = "Kunde inte ta bort källa."; -$a->strings["Block Name"] = "Blocknamn"; +$a->strings["Remote privacy information not available."] = "Icke-lokal integritetsinformation är inte tillgänglig"; +$a->strings["Visible to:"] = "Kan ses av:"; +$a->strings["No connections."] = "Inga kontakter."; +$a->strings["Visit %s's profile [%s]"] = "Besök %ss profil [%s]"; +$a->strings["View Connnections"] = "Visa kontakter"; $a->strings["Hub not found."] = "Hubb hittades inte."; -$a->strings["You must be logged in to see this page."] = "Du måste vara inloggad för att se den här sidan."; -$a->strings["Room not found"] = "Rum hittas inte"; -$a->strings["Leave Room"] = "Lämna rummet"; -$a->strings["I am away right now"] = "Jag är borta för tillfället"; -$a->strings["I am online"] = "Jag är online"; -$a->strings["Bookmark this room"] = "Bokmärk det här rummet"; -$a->strings["New Chatroom"] = "Nytt chattrum"; -$a->strings["Chatroom Name"] = "Namn på chattrum"; -$a->strings["%1\$s's Chatrooms"] = "%1\$ss chattrum"; -$a->strings["Version %s"] = "Version %s"; -$a->strings["Installed plugins/addons/apps:"] = "Installerade tillägg/moduler/appar:"; -$a->strings["No installed plugins/addons/apps"] = "Inga installerade tillägg/moduler/appar"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Det här är en hubb som hör till Red Matrix - ett globalt samverkande nätverk av decentraliserade integritetsstärkta webbplatser."; -$a->strings["Running at web location"] = "Kör på webbutrymmet"; -$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Besök GetZot.com lära dig mer om Red Matrix."; -$a->strings["Bug reports and issues: please visit"] = "Buggrapporter och problem: besök"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Förslag, uppskattning, etc. - maila \"redmatrix\" at librelist - dot com"; -$a->strings["Site Administrators"] = "Serveradministratörer"; +$a->strings["Total votes"] = "Totalt antal röster"; +$a->strings["Average Rating"] = "Genomsnittsbetyg"; +$a->strings["Unable to lookup recipient."] = "Kunde inte hitta mottagare."; +$a->strings["Unable to communicate with requested channel."] = "Kunde inte kommunicera med den begärda kanalen."; +$a->strings["Cannot verify requested channel."] = "Kan inte bekräfta den begärda kanalen."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka."; +$a->strings["Message deleted."] = "Meddelande borttaget."; +$a->strings["Message recalled."] = "Meddelande återkallat."; +$a->strings["Send Private Message"] = "Skicka privat meddelande."; +$a->strings["To:"] = "Till:"; +$a->strings["Subject:"] = "Ämne:"; +$a->strings["Send"] = "Skicka"; +$a->strings["Message not found."] = "Meddelandet hittades inte."; +$a->strings["Delete message"] = "Ta bort meddelande"; +$a->strings["Recall message"] = "Återkalla meddelande"; +$a->strings["Message has been recalled."] = "Meddelandet har återkallats."; +$a->strings["Private Conversation"] = "Privat konversation"; +$a->strings["Delete conversation"] = "Ta bort konversation"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida."; +$a->strings["Send Reply"] = "Skicka svar"; +$a->strings["Wall Photos"] = "Väggfoton"; +$a->strings["Profile Match"] = "Profilträff"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil."; +$a->strings["is interested in:"] = "är intresserad av:"; +$a->strings["No matches"] = "Inga träffar"; +$a->strings["Menu updated."] = "Meny uppdaterad."; +$a->strings["Unable to update menu."] = "Kunde inte uppdatera meny."; +$a->strings["Menu created."] = "Meny skapad."; +$a->strings["Unable to create menu."] = "Kunde inte skapa meny."; +$a->strings["Manage Menus"] = "Hantera menyer"; +$a->strings["Drop"] = "Ta bort"; +$a->strings["Bookmarks allowed"] = "Bokmärken tillåtna"; +$a->strings["Create a new menu"] = "Skapa en ny meny"; +$a->strings["Delete this menu"] = "Ta bort den här menyn"; +$a->strings["Edit menu contents"] = "Redigera menyinnehåll"; +$a->strings["Edit this menu"] = "Redigera den här menyn"; +$a->strings["New Menu"] = "Ny meny"; +$a->strings["Menu name"] = "Menynamn"; +$a->strings["Must be unique, only seen by you"] = "Måste vara unikt, ses endast av dig"; +$a->strings["Menu title"] = "Menytitel"; +$a->strings["Menu title as seen by others"] = "Menytitel som andra ser den"; +$a->strings["Allow bookmarks"] = "Tillåt bokmärken"; +$a->strings["Menu may be used to store saved bookmarks"] = "Menyn kan användas för att spara bokmärken"; +$a->strings["Menu deleted."] = "Meny borttagen."; +$a->strings["Menu could not be deleted."] = "Menyn kunde inte tas bort."; +$a->strings["Edit Menu"] = "Redigera meny"; +$a->strings["Add or remove entries to this menu"] = "Lägg till eller ta bort menyval"; +$a->strings["Conversation removed."] = "Konversation borttagen."; +$a->strings["No messages."] = "Inga meddelanden."; +$a->strings["D, d M Y - g:i A"] = "D, j M Y - H:i"; $a->strings["Add a Channel"] = "Lägg till en kanal"; $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."] = "En kanal är din egen samling av relaterade webbsidor. En kanal kan användas för att innehålla sociala nätverksprofiler, bloggar, konversationsgrupper och forum, fansidor, och mycket mer. Du kan skapa så många kanaler som din tjänsteleverantör tillåter."; $a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exempel: \"Bob Jameson\", \"Lisa och hennes hästar\", \"Fotboll\", \"Flyggruppen\" "; $a->strings["Choose a short nickname"] = "Välj ett kort smeknamn"; $a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Ditt smeknamn används för att skapa en kanaladress som är lätt att komma ihåg (som en e-postadress) som du kan dela med andra."; $a->strings["Or import an existing channel from another location"] = "Eller importera en befintlig kanal från en annan plats"; -$a->strings["No valid account found."] = "Inget giltigt konto hittades."; -$a->strings["Password reset request issued. Check your email."] = "Lösenordsåterställning har skickats. Kontrollera din e-post."; -$a->strings["Site Member (%s)"] = "Servermedlem (%s)"; -$a->strings["Password reset requested at %s"] = "Lösenordsåterställning begärd på %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades."; -$a->strings["Password Reset"] = "Lösenordsåterställning"; -$a->strings["Your password has been reset as requested."] = "Ditt lösenord har återställts som begärt."; -$a->strings["Your new password is"] = "Ditt nya lösenord är"; -$a->strings["Save or copy your new password - and then"] = "Spara eller kopiera ditt nya lösenord - "; -$a->strings["click here to login"] = "klicka sedan här för att logga in"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Ditt lösenord kan bytas från sidan Inställningar när du är inloggad."; -$a->strings["Your password has changed at %s"] = "Ditt lösenord byttes på %s"; -$a->strings["Forgot your Password?"] = "Glömt lösenordet?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Ange din e-postadress och skicka för att återställa ditt lösenord. Kontrollera sedan din e-post för vidare instruktioner."; -$a->strings["Email Address"] = "E-postadress"; -$a->strings["Reset"] = "Återställ"; -$a->strings["Edit Block"] = "Redigera block"; -$a->strings["Delete block?"] = "Ta bort block?"; -$a->strings["Delete Block"] = "Ta bort block"; -$a->strings["Select a bookmark folder"] = "Välj en bokmärkeskatalog"; -$a->strings["Save Bookmark"] = "Spara bokmärke"; -$a->strings["URL of bookmark"] = "Bokmärkets URL"; -$a->strings["Description"] = "Beskrivning"; -$a->strings["Or enter new bookmark folder name"] = "Eller ange nytt namn på bokmärkeskatalog"; -$a->strings["Nothing to import."] = "Inget att importera."; -$a->strings["Unable to download data from old server"] = "Kunde inte ladda ner data från den gamla servern"; -$a->strings["Imported file is empty."] = "Den importerade filen är tom."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades."; -$a->strings["Channel clone failed. Import failed."] = "Kloning av kanalen misslyckades. Import misslyckades."; -$a->strings["Cloned channel not found. Import failed."] = "Den klonade kanalen hittas inte. Import misslyckades."; -$a->strings["Import completed."] = "Import slutförd."; -$a->strings["You must be logged in to use this feature."] = "Du måste vara inloggad för att kunna använda den här funktionen."; -$a->strings["Import Channel"] = "Importera kanal"; -$a->strings["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."] = "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte."; -$a->strings["File to Upload"] = "Fil att ladda upp"; -$a->strings["Or provide the old server/hub details"] = "Eller ge uppgifter om den gamla servern/hubben"; -$a->strings["Your old identity address (xyz@example.com)"] = "Din gamla identitetsadress (xyz@example.com)"; -$a->strings["Your old login email address"] = "Din gamla e-postadress för inloggning"; -$a->strings["Your old login password"] = "Ditt gamla inloggningslösenord"; -$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."] = "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media."; -$a->strings["Make this hub my primary location"] = "Gör den här hubben till min primära plats"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har skapat %1$.0f av %2$.0f tillåtna kanaler."; -$a->strings["Create a new channel"] = "Skapa en ny kanal"; -$a->strings["Channel Manager"] = "Kanalhanterare"; -$a->strings["Current Channel"] = "Nuvarande kanal"; -$a->strings["Attach to one of your channels by selecting it."] = "Anslut till en av dina kanaler genom att välja den."; -$a->strings["Default Channel"] = "Standardkanal"; -$a->strings["Make Default"] = "Gör till standard"; -$a->strings["Total votes"] = "Totala röster"; -$a->strings["Average Rating"] = "Genomsnittsbetyg"; -$a->strings["Profile Match"] = "Profilträff"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil."; -$a->strings["is interested in:"] = "är intresserad av:"; -$a->strings["No matches"] = "Inga träffar"; -$a->strings["Away"] = "Borta"; -$a->strings["Online"] = "Online"; -$a->strings["OpenID protocol error. No ID returned."] = "Protokollfel för OpenID. Inget ID returnerades."; -$a->strings["Welcome %s. Remote authentication successful."] = "Välkommen %s. Fjärrautentisering lyckades."; -$a->strings["Edit Layout"] = "Redigera layout"; -$a->strings["Delete layout?"] = "Ta bort layout?"; -$a->strings["Delete Layout"] = "Ta bort layout"; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjärrautentisering blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen."; -$a->strings["Fetching URL returns error: %1\$s"] = "Hämtning av URL returnerade fel: %1\$s"; -$a->strings["Image uploaded but image cropping failed."] = "Bilden laddades upp men beskärning misslyckades."; -$a->strings["Image resize failed."] = "Ändring av bildstorlek misslyckades."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt."; -$a->strings["Image exceeds size limit of %d"] = "Bilden överskrider storleksbegränsningen %d"; -$a->strings["Unable to process image."] = "Kunde inte behandla bilden."; -$a->strings["Photo not available."] = "Fotot är inte tillgängligt."; -$a->strings["Upload File:"] = "Ladda upp fil:"; -$a->strings["Select a profile:"] = "Välj en profil:"; -$a->strings["Upload Profile Photo"] = "Ladda upp profilfoto"; -$a->strings["Upload"] = "Ladda upp"; -$a->strings["skip this step"] = "hoppa över det här steget"; -$a->strings["select a photo from your photo albums"] = "välj ett foto från dina fotoalbum"; -$a->strings["Crop Image"] = "Beskär bild"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Justera bildens beskärning för bästa utseende."; -$a->strings["Done Editing"] = "Klar med redigering"; -$a->strings["Image uploaded successfully."] = "Bilduppladdning lyckades."; -$a->strings["Image upload failed."] = "Bilduppladdning misslyckades."; -$a->strings["Image size reduction [%s] failed."] = "Krympning av bilden [%s] misslyckades."; -$a->strings["Blocked"] = "Blockerade"; -$a->strings["Ignored"] = "Ignorerade"; -$a->strings["Hidden"] = "Dolda"; -$a->strings["Archived"] = "Arkiverade"; -$a->strings["All"] = "Alla"; -$a->strings["Unconnected"] = "Ej anslutna"; -$a->strings["Suggest new connections"] = "Föreslå nya kontakter"; -$a->strings["New Connections"] = "Nya kontakter"; -$a->strings["Show pending (new) connections"] = "Visa väntande (nya) kontakter"; -$a->strings["Show all connections"] = "Visa alla kontakter"; -$a->strings["Unblocked"] = "Ej blockerade"; -$a->strings["Only show unblocked connections"] = "Visa endast ej blockerade kontakter"; -$a->strings["Only show blocked connections"] = "Visa endast blockerade kontakter"; -$a->strings["Only show ignored connections"] = "Visa endast ignorerade kontakter"; -$a->strings["Only show archived connections"] = "Visa endast arkiverade kontakter"; -$a->strings["Only show hidden connections"] = "Visa endast dolda kontakter"; -$a->strings["Only show one-way connections"] = "Visa endast enkelriktade kontakter"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit contact"] = "Redigera kontakt"; -$a->strings["Search your connections"] = "Sök bland dina kontakter"; -$a->strings["Finding: "] = "Sökning efter: "; +$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"] = "Välj en kanaltyp (som till exempel socialt nätverkande eller gemenskapsforum) och integritetskrav, så kan vi välja de bästa behörigheterna åt dig"; +$a->strings["Red Matrix - "The Network""] = "Red Matrix - "Nätverket""; +$a->strings["Welcome to %s"] = "Välkommen till %s"; $a->strings["Invalid request identifier."] = "Ogiltigt ID på förfrågan."; $a->strings["Discard"] = "Förkasta"; $a->strings["No more system notifications."] = "Inga fler systemnotifieringar."; $a->strings["System Notifications"] = "Systemnotifieringar"; +$a->strings["Xchan Lookup"] = "Xchan-sökning"; +$a->strings["Lookup xchan beginning with (or webbie): "] = "Sök efter xchan som börjar med (eller webbie): "; $a->strings["Unable to find your hub."] = "Kunde inte hitta din hubb."; $a->strings["Post successful."] = "Sändning lyckades."; -$a->strings["Edit Webpage"] = "Redigera webbsida"; -$a->strings["Delete webpage?"] = "Ta bort webbsida?"; -$a->strings["Delete Webpage"] = "Ta bort webbsida"; -$a->strings["Channel added."] = "Kanal tillagd."; -$a->strings["Poke/Prod"] = "Puffa/stöt till"; -$a->strings["poke, prod or do other things to somebody"] = "puffa, stöt till eller gör andra saker mot någon"; -$a->strings["Recipient"] = "Mottagare"; -$a->strings["Choose what you wish to do to recipient"] = "Välj vad du önskar göra med mottagaren"; -$a->strings["Make this post private"] = "Gör det här inlägget privat"; -$a->strings["Wall Photos"] = "Väggfoton"; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Otillräckliga behörigheter. Förfrågan omdirigerad till profilsidan."; -$a->strings["Contact not found."] = "Kontakten hittades inte."; -$a->strings["Friend suggestion sent."] = "Vänförfrågan skickad."; -$a->strings["Suggest Friends"] = "Föreslå vänner"; -$a->strings["Suggest a friend for %s"] = "Föreslå en vän för %s"; -$a->strings["Status: "] = "Status: "; -$a->strings["Sexual Preference: "] = "Sexuell preferens: "; -$a->strings["Homepage: "] = "Hemsida: "; -$a->strings["Hometown: "] = "Hemort: "; -$a->strings["About: "] = "Om: "; -$a->strings["Keywords: "] = "Nyckelord: "; -$a->strings["Permission Denied."] = "Behörighet saknas."; -$a->strings["File not found."] = "Filen hittas inte."; -$a->strings["Edit file permissions"] = "Redigera filrättigheter"; -$a->strings["Include all files and sub folders"] = "Inkludera alla filer och underkataloger"; -$a->strings["Return to file list"] = "Återgå till fillistan"; -$a->strings["Copy/paste this code to attach file to a post"] = "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida"; -$a->strings["Download"] = "Ladda ner"; -$a->strings["Used: "] = "Använt: "; -$a->strings["[directory]"] = "[katalog]"; -$a->strings["Limit: "] = "Gräns: "; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar."; -$a->strings["Conversation removed."] = "Konversation borttagen."; -$a->strings["No messages."] = "Inga meddelanden."; -$a->strings["D, d M Y - g:i A"] = "D, j M Y - H:i"; -$a->strings["Public Sites"] = "Offentliga servrar"; -$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."] = "De listade servrarna tillåter offentlig registrering i Red Matrix. Alla servrar i matrisen är sammankopplade, så medlemskap i en av dem medför medlemskap i matrisen som helhet. Vissa servrar kan kräva abonnemang eller erbjuda uppdelade tjänstenivåer. Leverantörslänkarna kan ge ytterligare detaljer."; -$a->strings["Site URL"] = "Server-URL"; -$a->strings["Access Type"] = "Åtkomsttyp"; -$a->strings["Registration Policy"] = "Registreringspolicy"; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Välj huruvida du accepterar användarvillkoren. Registrering misslyckades."; -$a->strings["Passwords do not match."] = "Lösenorden stämmer inte överens."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrering lyckades. Kontrollera din e-post för valideringsinstruktioner."; -$a->strings["Your registration is pending approval by the site owner."] = "Din registrering väntar på att bli godkänd av serverägaren."; -$a->strings["Your registration can not be processed."] = "Din registrering kan inte behandlas."; -$a->strings["Registration on this site/hub is by approval only."] = "Registrering på den här servern/hubben måste godkännas."; -$a->strings["Register at another affiliated site/hub"] = "Registrera dig på en annan ansluten server/hubb"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Antal dagliga registreringar som tillåts på den här servern har överskridits. Försök igen i morgon."; -$a->strings["Terms of Service"] = "användarvillkor"; -$a->strings["I accept the %s for this website"] = "Jag accepterar den här webbplatsens %s"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Jag är över 13 år och accepterar den här webbplatsens %s"; -$a->strings["Membership on this site is by invitation only."] = "Medlemskap på den här servern kan endast fås genom inbjudan."; -$a->strings["Please enter your invitation code"] = "Ange din inbjudningskod"; -$a->strings["Your email address"] = "Din e-postadress"; -$a->strings["Choose a password"] = "Välj ett lösenord"; -$a->strings["Please re-enter your password"] = "Ange lösenordet igen"; -$a->strings["Please login."] = "Logga in."; -$a->strings["Remove This Channel"] = "Ta bort den här kanalen"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Det här kommer att ta bort den här kanalen helt från nätverket. När det är gjort går det inte att återställa den."; -$a->strings["Please enter your password for verification:"] = "Ange ditt lösenord för att bekräfta:"; -$a->strings["Remove this channel and all its clones from the network"] = "Ta bort den här kanalen och alla dess kloner från nätverket"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard kommer bara den här hubbens instans av kanalen att tas bort från nätverket"; -$a->strings["Remove Channel"] = "Ta bort kanal"; -$a->strings["Page owner information could not be retrieved."] = "Information om sidans ägare kunde inte hittas."; -$a->strings["Album not found."] = "Albumet hittades inte."; -$a->strings["Delete Album"] = "Ta bort album"; -$a->strings["Delete Photo"] = "Ta bort foto"; -$a->strings["No photos selected"] = "Inga foton valda"; -$a->strings["Access to this item is restricted."] = "Åtkomst till den här posten är begränsat."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du har använt %1$.2f MB av %2$.2f MB fotoutrymme."; -$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Du har använt %1$.2f MB fotoutrymme."; -$a->strings["Upload Photos"] = "Ladda upp foton"; -$a->strings["New album name: "] = "Namn på nytt album: "; -$a->strings["or existing album name: "] = "eller befintligt albumnamn: "; -$a->strings["Do not show a status post for this upload"] = "Visa inte en statusuppdatering för den här uppladdningen"; -$a->strings["Contact Photos"] = "Kontaktfoton"; -$a->strings["Edit Album"] = "Redigera album"; -$a->strings["Show Newest First"] = "Visa nyast först"; -$a->strings["Show Oldest First"] = "Visa äldst först"; -$a->strings["View Photo"] = "Visa foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Behörighet saknas. Åtkomst till den här posten kan vara begränsat."; -$a->strings["Photo not available"] = "Foto inte tillgängligt"; -$a->strings["Use as profile photo"] = "Använd som profilfoto"; -$a->strings["View Full Size"] = "Visa fullstorlek"; -$a->strings["Edit photo"] = "Redigera foto"; -$a->strings["Rotate CW (right)"] = "Rotera medurs (höger)"; -$a->strings["Rotate CCW (left)"] = "Rotera moturs (vänster)"; -$a->strings["New album name"] = "Nytt albumnamn"; -$a->strings["Caption"] = "Bildtext"; -$a->strings["Add a Tag"] = "Lägg till en tagg"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["In This Photo:"] = "På fotot:"; -$a->strings["View Album"] = "Visa album"; -$a->strings["Recent Photos"] = "Nya foton"; -$a->strings["Mood"] = "Sinnesstämning"; -$a->strings["Set your current mood and tell your friends"] = "Ange din nuvarande sinnesstämning och visa för dina vänner"; -$a->strings["sent you a private message"] = "skickade ett privat meddelande till dig"; -$a->strings["added your channel"] = "lade till din kanal"; -$a->strings["posted an event"] = "skapade en händelse"; +$a->strings["invalid target signature"] = "ogiltig målsignatur"; +$a->strings["App installed."] = "App installerad."; +$a->strings["Malformed app."] = "Felaktig app."; +$a->strings["Embed code"] = "Bädda in kod"; +$a->strings["Edit App"] = "Redigera app"; +$a->strings["Create App"] = "Skapa app"; +$a->strings["Name of app"] = "Namn på app"; +$a->strings["Location (URL) of app"] = "Adress (URL) för app"; +$a->strings["Photo icon URL"] = "Fotoikon URL"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixlar - valfri"; +$a->strings["Version ID"] = "Versions-ID"; +$a->strings["Price of app"] = "Pris på app"; +$a->strings["Location (URL) to purchase app"] = "Adress (URL) för att köpa app"; +$a->strings["Poll"] = "Opinionsundersökning"; +$a->strings["View Results"] = "Visa resultat"; +$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Borttagning av konto tillåts inte inom 48 timmar efter att kontolösenordet har ändrats."; +$a->strings["Remove This Account"] = "Ta bort kontot"; +$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Det här kommer att ta bort kontot fullständigt från nätverket, inklusive alla dess kanaler. När detta har gjorts går det inte att ångra."; +$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Ta bort kontot, alla dess kanaler och alla kanalkopior från nätverket"; +$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Som standard tas bara instanser av kanaler som finns på den här servern bort från nätverket"; +$a->strings["No service class restrictions found."] = "Inga tjänsteklassbegränsningar hittades."; +$a->strings["Schema Default"] = "Schemats standard"; +$a->strings["Sans-Serif"] = "Sans-serif"; +$a->strings["Monospace"] = "Monospace"; $a->strings["Theme settings"] = "Temainställningar"; $a->strings["Set scheme"] = "Välj variant"; -$a->strings["Narrow navbar"] = "Smal navigeringslist"; -$a->strings["Navigation bar background colour"] = "Navigeringslistens bakgrundsfärg"; -$a->strings["Navigation bar gradient top colour"] = "Övre gradientfärg i navigeringslisten"; -$a->strings["Navigation bar gradient bottom colour"] = "Undre gradientfärg i navigeringslisten"; -$a->strings["Navigation active button gradient top colour"] = "Övre gradientfärg på aktiv knapp i navigeringslisten"; -$a->strings["Navigation active button gradient bottom colour"] = "Undre gradientfärg på aktiv knapp i navigeringslisten"; -$a->strings["Navigation bar border colour "] = "Färg på navigeringslistens kant"; -$a->strings["Navigation bar icon colour "] = "Färg på ikoner i navigeringslisten"; -$a->strings["Navigation bar active icon colour "] = "Färg på aktiv ikon i navigeringslisten"; -$a->strings["link colour"] = "Länkfärg"; -$a->strings["Set font-colour for banner"] = "Välj textfärg för sidhuvudet"; -$a->strings["Set the background colour"] = "Välj bakgrundsfärg"; -$a->strings["Set the background image"] = "Välj bakgrundsbild"; -$a->strings["Set the background colour of items"] = "Välj bakgrundsfärg för inlägg"; -$a->strings["Set the opacity of items"] = "Välj opacitet för inlägg"; -$a->strings["Set the basic colour for item icons"] = "Välj basfärg för inläggsikoner"; -$a->strings["Set the hover colour for item icons"] = "Välj färg på inläggsikon under muspekare"; -$a->strings["Set font-size for the entire application"] = "Välj textstorlek för hela applikationen"; $a->strings["Set font-size for posts and comments"] = "Välj textstorlek för inlägg och kommentarer"; -$a->strings["Set font-colour for posts and comments"] = "Välj textfärg för inlägg och kommentarer"; -$a->strings["Set radius of corners"] = "Välj hörnradie"; -$a->strings["Set shadow depth of photos"] = "Välj skuggdjup för foton"; -$a->strings["Set maximum width of conversation regions"] = "Välj maxbredd på konversationsfält"; -$a->strings["Center conversation regions"] = "Centrera konversationsfält"; -$a->strings["Set minimum opacity of nav bar - to hide it"] = "Välj lägsta opacitet för navigeringslisten - för att dölja den"; -$a->strings["Set size of conversation author photo"] = "Välj storlek på foto för trådskapare"; -$a->strings["Set size of followup author photos"] = "Välj storlek på svarande personers foton"; -$a->strings["Sloppy photo albums"] = "Oordnade fotoalbum"; -$a->strings["Are you a clean desk or a messy desk person?"] = "Föredrar du ett tomt eller stökigt skrivbord?"; -$a->strings["Schema Default"] = "Temavariantens standard"; -$a->strings["Sans-Serif"] = "Sans-serif"; -$a->strings["Monospace"] = "Fast bredd"; $a->strings["Set font face"] = "Välj teckensnitt"; $a->strings["Set iconset"] = "Välj ikontema"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Välj stor skuggstorlek, standard 15px 15px 15px"; +$a->strings["Set big shadow size, default 15px 15px 15px"] = "Välj stor skuggstorlek, standard 15px 15px 15px "; $a->strings["Set small shadow size, default 5px 5px 5px"] = "Välj liten skuggstorlek, standard 5px 5px 5px"; -$a->strings["Set shadow colour, default #000"] = "Välj skuggfärg, standard #000"; +$a->strings["Set shadow color, default #000"] = "Välj skuggfärg, standard #000"; $a->strings["Set radius size, default 5px"] = "Välj radie, standard 5px"; $a->strings["Set line-height for posts and comments"] = "Välj radhöjd för inlägg och kommentarer"; $a->strings["Set background image"] = "Välj bakgrundsbild"; -$a->strings["Set background attachment"] = "Välj bakgrundsfixering"; -$a->strings["Set background colour"] = "Välj bakgrundsfärg"; +$a->strings["Set background attachment"] = "Välj fixerad bakgrund"; +$a->strings["Set background color"] = "Välj bakgrundsfärg"; $a->strings["Set section background image"] = "Välj bakgrundsbild för avsnitt"; -$a->strings["Set section background colour"] = "Välj bakgrundsfärg för avsnitt"; -$a->strings["Set colour of items - use hex"] = "Välj färg på inlägg - använd hex"; -$a->strings["Set colour of links - use hex"] = "Välj färg på länkar - använd hex"; -$a->strings["Set max-width for items. Default 400px"] = "Välj maxbredd för inlägg. Standard 400px"; -$a->strings["Set min-width for items. Default 240px"] = "Välj minbredd för inlägg. Standard 240px"; +$a->strings["Set section background color"] = "Välj bakgrundsfärg för avsnitt"; +$a->strings["Set color of items - use hex"] = "Välj färg på inlägg - använd hex"; +$a->strings["Set color of links - use hex"] = "Välj färg på länkar - använd hex"; +$a->strings["Set max-width for items. Default 400px"] = "Välj största bredd för inlägg. Standard 400px"; +$a->strings["Set min-width for items. Default 240px"] = "Välj minsta bredd för inlägg. Standard 240px"; $a->strings["Set the generic content wrapper width. Default 48%"] = "Välj bredd på fältet för allmänt innehåll. Standard 48%"; -$a->strings["Set colour of fonts - use hex"] = "Välj textfärg - använd hex"; +$a->strings["Set color of fonts - use hex"] = "Välj textfärg - använd hex"; $a->strings["Set background-size element"] = "Välj bakgrundsskala"; $a->strings["Item opacity"] = "Inläggsopacitet"; $a->strings["Display post previews only"] = "Visa endast förhandsgranskning av inlägg"; @@ -1786,6 +1926,37 @@ $a->strings["Right offset of the aside element"] = "Höger offset för sidoeleme $a->strings["None"] = "Inget"; $a->strings["Header image"] = "Rubrikbild"; $a->strings["Header image only on profile pages"] = "Rubrikbild endast på profilsidor"; +$a->strings["Light (Red Matrix default)"] = "Light (standard för Red Matrix)"; +$a->strings["Narrow navbar"] = "Smal navigeringslist"; +$a->strings["Navigation bar background color"] = "Navigeringslistens bakgrundsfärg"; +$a->strings["Navigation bar gradient top color"] = "Övre gradientfärg i navigeringslisten"; +$a->strings["Navigation bar gradient bottom color"] = "Undre gradientfärg i navigeringslisten"; +$a->strings["Navigation active button gradient top color"] = "Övre gradientfärg på aktiv knapp i navigeringslisten"; +$a->strings["Navigation active button gradient bottom color"] = "Undre gradientfärg på aktiv knapp i navigeringslisten"; +$a->strings["Navigation bar border color "] = "Färg på navigeringslistens kant"; +$a->strings["Navigation bar icon color "] = "Färg på ikoner i navigeringslisten"; +$a->strings["Navigation bar active icon color "] = "Färg på aktiv ikon i navigeringslisten"; +$a->strings["link color"] = "Länkfärg"; +$a->strings["Set font-color for banner"] = "Välj textfärg för sidhuvudet"; +$a->strings["Set the background color"] = "Välj bakgrundsfärg"; +$a->strings["Set the background image"] = "Välj bakgrundsbild"; +$a->strings["Set the background color of items"] = "Välj bakgrundsfärg för inlägg"; +$a->strings["Set the background color of comments"] = "Välj bakgrundsfärg för kommentarer"; +$a->strings["Set the border color of comments"] = "Välj kantfärg för kommentarer"; +$a->strings["Set the indent for comments"] = "Välj indrag för kommentarer"; +$a->strings["Set the basic color for item icons"] = "Välj basfärg för inläggsikoner"; +$a->strings["Set the hover color for item icons"] = "Välj färg på inläggsikon under muspekare"; +$a->strings["Set font-size for the entire application"] = "Välj textstorlek för hela applikationen"; +$a->strings["Set font-color for posts and comments"] = "Välj textfärg för inlägg och kommentarer"; +$a->strings["Set radius of corners"] = "Välj hörnradie"; +$a->strings["Set shadow depth of photos"] = "Välj skuggdjup för foton"; +$a->strings["Set maximum width of conversation regions"] = "Välj maxbredd på konversationsfält"; +$a->strings["Center conversation regions"] = "Centrera konversationsfält"; +$a->strings["Set minimum opacity of nav bar - to hide it"] = "Välj lägsta opacitet för navigeringslisten - för att dölja den"; +$a->strings["Set size of conversation author photo"] = "Välj storlek på foto för trådskapare"; +$a->strings["Set size of followup author photos"] = "Välj storlek på svarande personers foton"; +$a->strings["Sloppy photo albums"] = "Oordnade fotoalbum"; +$a->strings["Are you a clean desk or a messy desk person?"] = "Föredrar du ett tomt eller stökigt skrivbord?"; $a->strings["Update %s failed. See error logs."] = "Uppdatering %s misslyckades. Se felloggar."; $a->strings["Update Error at %s"] = "Uppdateringsfel på %s"; $a->strings["Create an account to access services and applications within the Red Matrix"] = "Skapa ett konto för att komma åt tjänster och applikationer inom Red Matrix"; diff --git a/view/sv/update_fail_eml.tpl b/view/sv/update_fail_eml.tpl index 26fc33db0..0abbf2cfa 100644 --- a/view/sv/update_fail_eml.tpl +++ b/view/sv/update_fail_eml.tpl @@ -1,13 +1,13 @@ Hej, Jag är webbservern på {{$sitename}}; -Red Matrix-utvecklarna släppte nyligen uppdateringen {{$update}}, -men när jag försökte installera den gick något fruktansvärt fel. -Detta behöver fixas snart och kräver en människas ingripande. -Kontakta en Red-utvecklare om du inte kan lösa problemet själv. -Min databas kan ha gått sönder. +Red Matrix-utvecklarna släppte nyligen uppdateringen {{$update}}, +men när jag försökte installera den gick något fruktansvärt fel. +Detta behöver fixas snart och kräver en människas ingripande. +Kontakta en Red-utvecklare om du inte kan lösa problemet själv. +Min databas kan ha gått sönder. -Felmeddelandet är '{{$error}}'. +Felmeddelandet är '{{$error}}'. -Ursäkta besväret, - din webbserver på {{$siteurl}} +Ursäkta besväret, + din webbserver på {{$siteurl}} \ No newline at end of file From 8ac3b938fde2ccd7719ac1c22ef5460b35298d78 Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Sat, 22 Nov 2014 13:27:52 -0800 Subject: [PATCH 167/176] added dbdriver to siteinfo json to better track affected sites --- include/dba/dba_driver.php | 6 ++++++ include/dba/dba_mysql.php | 4 ++++ include/dba/dba_mysqli.php | 4 ++++ include/dba/dba_postgres.php | 4 ++++ mod/siteinfo.php | 4 +++- 5 files changed, 21 insertions(+), 1 deletion(-) diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php index a62a5e6e2..4a0f5e37b 100755 --- a/include/dba/dba_driver.php +++ b/include/dba/dba_driver.php @@ -104,6 +104,12 @@ abstract class dba_driver { */ abstract function close(); + /** + * @brief Return text name for db driver + * + * This abstract function needs to be implemented in the real driver. + */ + abstract function getdriver(); function __construct($server, $port, $user,$pass,$db,$install = false) { if(($install) && (! $this->install($server, $port, $user, $pass, $db))) { diff --git a/include/dba/dba_mysql.php b/include/dba/dba_mysql.php index f5a2a47ba..3cadad6dc 100755 --- a/include/dba/dba_mysql.php +++ b/include/dba/dba_mysql.php @@ -59,5 +59,9 @@ class dba_mysql extends dba_driver { mysql_close($this->db); $this->connected = false; } + + function getdriver() { + return 'mysql'; + } } diff --git a/include/dba/dba_mysqli.php b/include/dba/dba_mysqli.php index c71f493b0..74a999974 100755 --- a/include/dba/dba_mysqli.php +++ b/include/dba/dba_mysqli.php @@ -72,5 +72,9 @@ class dba_mysqli extends dba_driver { $this->db->close(); $this->connected = false; } + + function getdriver() { + return 'mysqli'; + } } \ No newline at end of file diff --git a/include/dba/dba_postgres.php b/include/dba/dba_postgres.php index a390292a5..ba4366d13 100644 --- a/include/dba/dba_postgres.php +++ b/include/dba/dba_postgres.php @@ -109,4 +109,8 @@ class dba_postgres extends dba_driver { function concat($fld, $sep) { return 'string_agg(' . $fld . ',\'' . $sep . '\')'; } + + function getdriver() { + return 'pgsql'; + } } \ No newline at end of file diff --git a/mod/siteinfo.php b/mod/siteinfo.php index 12598cc12..03e578467 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -1,7 +1,8 @@ argv[1]=="json"){ $register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN'); $directory_mode = Array('DIRECTORY_MODE_NORMAL', 'DIRECTORY_MODE_SECONDARY','DIRECTORY_MODE_PRIMARY', 'DIRECTORY_MODE_STANDALONE'); @@ -71,6 +72,7 @@ function siteinfo_init(&$a) { 'admin' => $admin, 'site_name' => (($site_name) ? $site_name : ''), 'platform' => RED_PLATFORM, + 'dbdriver' => $db->getdriver(), 'info' => (($site_info) ? $site_info : ''), 'channels_total' => $channels_total_stat, 'channels_active_halfyear' => $channels_active_halfyear_stat, From d191e7c348593d0bd40ac7e5c33bb6b3bb0708bb Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 23 Nov 2014 14:51:04 -0800 Subject: [PATCH 168/176] project roadmap --- doc/main.bb | 1 + doc/roadmap.bb | 46 ++++++++++++++++++++++++++++++++++++++++++++++ mod/home.php | 3 +++ version.inc | 2 +- 4 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 doc/roadmap.bb diff --git a/doc/main.bb b/doc/main.bb index 6222948ad..b4b74dcc1 100644 --- a/doc/main.bb +++ b/doc/main.bb @@ -64,6 +64,7 @@ Zot is the great new communicaton protocol invented especially for the RedMatrix [zrl=[baseurl]/doc/html/]Code Reference (doxygen generated - sets cookies)[/zrl] [zrl=[baseurl]/help/to_do_doco]To-Do list for the Red Documentation Project[/zrl] [zrl=[baseurl]/help/to_do_code]To-Do list for Developers[/zrl] +[zrl=[baseurl]/help/roadmap]Version 3 roadmap[/zrl] [zrl=[baseurl]/help/git_for_non_developers]Git for Non-Developers[/zrl] [size=large][b]Frequently Asked Questions For Developers[/b][/size] diff --git a/doc/roadmap.bb b/doc/roadmap.bb new file mode 100644 index 000000000..fbd750745 --- /dev/null +++ b/doc/roadmap.bb @@ -0,0 +1,46 @@ + + +Roadmap for Redmatrix V3 + + +Subscriptions and business models + Build enough into core(/addons) to generate income (or at least try and cover costs) out of the box + +Merge all uploads into common DAV interface + Separate photo albums from photos and turn them into file directories. + Upload everything direct to /store + If photo, generate thumbnails and image resources + Provide default upload folders with %y (and other?) macros for both photos and other file resources + Allow "media" (anything that we can generate a thumbnail for) in the Photos section (and show thumbnails in the Files section where possible) + Resolve the "every photo has an item" confusion, perhaps every file should also - but only if we can explain it and separate them conceptually. + +Migration tools + Friendica importer + Diaspora importer + +Poco reputation + Make it happen + +Webpage design UI improvements + If practical, separate "conversation" sub-themes from overall themes so one can choose different conversation and content layouts within a base theme. + Make webpage building easy, with point-n-click selectors to build PDLs + bring back WYSIWYG, which ideally requires a JS abstraction layer so we can use any editor and change it based on mimetype + +Social Networking Federation + Friendica native mode? + Pump.io? + Others? + +Lists + Create a list object to contain arbitrary things for system use + Create a list object to contain arbitrary things for personal use + +Events + Recurring events and participation (RSVP) + +Zot + Provide a way to sync web resources. This could be built on DAV except for preserving resource naming (guids) instead of filenames. + +API extensions + More, more, more. + diff --git a/mod/home.php b/mod/home.php index 57f7478f1..b1b8e3fd0 100644 --- a/mod/home.php +++ b/mod/home.php @@ -55,6 +55,7 @@ function home_content(&$a, $update = 0, $load = false) { // See if the sys channel set a homepage if (! $channel_address) { + require_once('include/identity.php'); $u = get_sys_channel(); if ($u) { $u = array($u); @@ -233,4 +234,6 @@ function home_content(&$a, $update = 0, $load = false) { return $o; } + return $o; + } \ No newline at end of file diff --git a/version.inc b/version.inc index eba09b708..67edf7654 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-22.867 +2014-11-23.868 From 746e4860faae897ef1a5a2bc6c4378454dac33ab Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 23 Nov 2014 15:09:07 -0800 Subject: [PATCH 169/176] more roadmap --- doc/roadmap.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/roadmap.bb b/doc/roadmap.bb index fbd750745..9ac51adf2 100644 --- a/doc/roadmap.bb +++ b/doc/roadmap.bb @@ -44,3 +44,6 @@ Zot API extensions More, more, more. +DNS abstraction for V3 + Allow a channel to live in an arbitrary "DNS" namespace, for instance "mike@core.redmatrix". Use our directories and zot to find the actual DNS location via redirection. This could potentially allow hubs to be hidden behind tor or alt-roots and accessible only via the matrix. + \ No newline at end of file From 5bb794cc2852f3a53526b15dcd610a002ce86563 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 23 Nov 2014 18:22:19 -0800 Subject: [PATCH 170/176] allow directory searches to be filtered by (public forums) and/or (! public forums) --- include/attach.php | 1 + mod/directory.php | 7 +++++-- mod/dirsearch.php | 13 ++++++++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/include/attach.php b/include/attach.php index 8541c142c..ad6ca1b21 100644 --- a/include/attach.php +++ b/include/attach.php @@ -567,6 +567,7 @@ function z_readdir($channel_id, $observer_hash, $pathname, $parent_hash = '') { * $arr['deny_cid'] * $arr['deny_gid'] */ + function attach_mkdir($channel, $observer_hash, $arr = null) { $ret = array('success' => false); diff --git a/mod/directory.php b/mod/directory.php index d4a4c383a..921c8ece7 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -31,8 +31,9 @@ function directory_content(&$a) { if(x($_REQUEST,'safe')) $safe_mode = (intval($_REQUEST['safe'])); - - + $pubforums = null; + if(array_key_exists('pubforums',$_REQUEST)) + $pubforums = intval($_REQUEST['pubforums']); $o = ''; nav_set_selected('directory'); @@ -92,6 +93,8 @@ function directory_content(&$a) { $query .= '&keywords=' . urlencode($keywords); if($advanced) $query .= '&query=' . urlencode($advanced); + if(! is_null($pubforums)) + $query .= '&pubforums=' . intval($pubforums); $sort_order = ((x($_REQUEST,'order')) ? $_REQUEST['order'] : ''); if($sort_order) diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 56e2378a8..1ecf33393 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -64,6 +64,9 @@ function dirsearch_content(&$a) { $agege = ((x($_REQUEST,'agege')) ? intval($_REQUEST['agege']) : 0 ); $agele = ((x($_REQUEST,'agele')) ? intval($_REQUEST['agele']) : 0 ); $kw = ((x($_REQUEST,'kw')) ? intval($_REQUEST['kw']) : 0 ); + $forums = ((array_key_exists('pubforums',$_REQUEST)) ? intval($_REQUEST['pubforums']) : null); + + // by default use a safe search $safe = ((x($_REQUEST,'safe'))); // ? intval($_REQUEST['safe']) : 1 ); @@ -108,6 +111,10 @@ function dirsearch_content(&$a) { if($keywords) $sql_extra .= dir_query_build($joiner,'xprof_keywords',$keywords); + if(! is_null($forums)) + $sql_extra .= dir_flag_build($joiner,'xprof_flags',XCHAN_FLAGS_PUBFORUM, $forums); + + // we only support an age range currently. You must set both agege // (greater than or equal) and agele (less than or equal) @@ -179,7 +186,6 @@ function dirsearch_content(&$a) { else $order = " order by xchan_name_date desc "; - if($sync) { $spkt = array('transactions' => array()); $r = q("select * from updates where ud_date >= '%s' and ud_guid != '' order by ud_date desc", @@ -273,6 +279,11 @@ function dir_query_build($joiner,$field,$s) { return $ret; } +function dir_flag_build($joiner,$field,$bit,$s) { + return dbesc($joiner) . " ( " . dbesc('xchan_flags') . " & " . intval($bit) . " ) " . ((intval($s)) ? '>' : '=' ) . " 0 "; +} + + function dir_parse_query($s) { $ret = array(); From 79e5c2456bfc78296d77d1a4caedd5a32b7d9d12 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 23 Nov 2014 18:54:33 -0800 Subject: [PATCH 171/176] add link to search forums in the directory --- include/dir_fns.php | 5 +++-- mod/directory.php | 8 ++++++++ view/tpl/dir_sort_links.tpl | 1 + 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/include/dir_fns.php b/include/dir_fns.php index 0ba4f8712..909005bbb 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -53,10 +53,11 @@ function check_upstream_directory() { function dir_sort_links() { $o = replace_macros(get_markup_template('dir_sort_links.tpl'), array( - '$header' => t('Sort Options'), + '$header' => t('Directory Options'), '$normal' => t('Alphabetic'), '$reverse' => t('Reverse Alphabetic'), - '$date' => t('Newest to Oldest') + '$date' => t('Newest to Oldest'), + '$pubforums' => t('Public Forums Only'), )); return $o; } diff --git a/mod/directory.php b/mod/directory.php index 921c8ece7..c06a14d9e 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -96,10 +96,18 @@ function directory_content(&$a) { if(! is_null($pubforums)) $query .= '&pubforums=' . intval($pubforums); + if(! is_null($pubforums)) + $query .= '&pubforums=' . intval($pubforums); + $sort_order = ((x($_REQUEST,'order')) ? $_REQUEST['order'] : ''); + if($pubforums) + $sort_order = 'normal'; + if($sort_order) $query .= '&order=' . urlencode($sort_order); + + if($a->pager['page'] != 1) $query .= '&p=' . $a->pager['page']; diff --git a/view/tpl/dir_sort_links.tpl b/view/tpl/dir_sort_links.tpl index f6d8c3454..2fcf0c13a 100644 --- a/view/tpl/dir_sort_links.tpl +++ b/view/tpl/dir_sort_links.tpl @@ -4,5 +4,6 @@
  • {{$normal}}
  • {{$reverse}}
  • {{$date}}
  • +
  • {{$pubforums}}
  • From 53dc9cf2eb078f452979dc1dc9146ab993425621 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 23 Nov 2014 20:29:34 -0800 Subject: [PATCH 172/176] basic vcalendar formatting support --- include/event.php | 50 +++++++++++++++++++++++++++++++++++++++++++++ include/widgets.php | 16 +++++++++------ 2 files changed, 60 insertions(+), 6 deletions(-) diff --git a/include/event.php b/include/event.php index d95e8b401..a79770d23 100644 --- a/include/event.php +++ b/include/event.php @@ -45,6 +45,56 @@ function format_event_html($ev) { return $o; } + + +function ical_wrapper($ev) { + + if(! ((is_array($ev)) && count($ev))) + return ''; + + $o .= "BEGIN:VCALENDAR"; + $o .= "\nVERSION:2.0"; + $o .= "\nMETHOD:PUBLISH"; + $o .= "\nPRODID:-//" . get_config('system','sitename') . "//" . RED_PLATFORM . "//" . strtoupper(get_app()->language). "\n"; + if(array_key_exists('start',$ev)) + $o .= format_event_ical($ev); + else { + foreach($ev as $e) { + $o .= format_event_ical($e); + } + } + $o .= "\nEND:VCALENDAR\n"; + + return $o; +} + +function format_event_ical($ev) { + + $o = ''; + + $o .= "\nBEGIN:VEVENT"; + if($ev['start']) + $o .= "\nDTSTART:" . datetime_convert('UTC','UTC', $ev['start'],'Ymd\\This' . (($ev['adjust']) ? '\\Z' : '')); + if($ev['finish'] && ! $ev['nofinish']) + $o .= "\nDTEND:" . datetime_convert('UTC','UTC', $ev['finish'],'Ymd\\This' . (($ev['adjust']) ? '\\Z' : '')); + if($ev['summary']) + $o .= "\nSUMMARY:" . format_ical_text($ev['summary']); + if($ev['location']) + $o .= "\nLOCATION:" . format_ical_text($ev['location']); + if($ev['description']) + $o .= "\nDESCRIPTION:" . format_ical_text($ev['description']); + $o .= "\nEND:VEVENT\n"; + return $o; +} + +function format_ical_text($s) { + + require_once('include/bbcode.php'); + require_once('include/html2plain.php'); + return(wordwrap(html2plain(bbcode($s)),72,"\n ",true)); +} + + function format_event_bbcode($ev) { $o = ''; diff --git a/include/widgets.php b/include/widgets.php index a25139558..f7b8a20bd 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -659,9 +659,11 @@ function widget_bookmarkedchats($arr) { $r = q("select * from xchat where xchat_xchan = '%s' group by xchat_url order by xchat_desc", dbesc($h) ); - - for($x = 0; $x < count($r); $x ++) - $r[$x]['xchat_url'] = zid($r[$x]['xchat_url']); + if($r) { + for($x = 0; $x < count($r); $x ++) { + $r[$x]['xchat_url'] = zid($r[$x]['xchat_url']); + } + } return replace_macros(get_markup_template('bookmarkedchats.tpl'),array( '$header' => t('Bookmarked Chatrooms'), '$rooms' => $r @@ -677,9 +679,11 @@ function widget_suggestedchats($arr) { if(! $h) return; $r = q("select *, count(xchat_url) as total from xchat group by xchat_url order by total desc, xchat_desc limit 24"); - - for($x = 0; $x < count($r); $x ++) - $r[$x]['xchat_url'] = zid($r[$x]['xchat_url']); + if($r) { + for($x = 0; $x < count($r); $x ++) { + $r[$x]['xchat_url'] = zid($r[$x]['xchat_url']); + } + } return replace_macros(get_markup_template('bookmarkedchats.tpl'),array( '$header' => t('Suggested Chatrooms'), '$rooms' => $r From 756abd66783344f5dcbb0a146d9281e027181837 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 24 Nov 2014 02:50:14 -0800 Subject: [PATCH 173/176] add event export (this month) to event UI --- mod/events.php | 12 ++++++++++++ version.inc | 2 +- view/tpl/events-js.tpl | 1 + 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/mod/events.php b/mod/events.php index 5af7d381e..e016311d5 100755 --- a/mod/events.php +++ b/mod/events.php @@ -275,6 +275,11 @@ function events_content(&$a) { if(! $m) $m = intval($thismonth); + $export = false; + if(argc() === 4 && argv(3) === 'export') + $export = true; + + // Put some limits on dates. The PHP date functions don't seem to do so well before 1900. // An upper limit was chosen to keep search engines from exploring links millions of years in the future. @@ -413,6 +418,12 @@ function events_content(&$a) { } } + if($export) { + header('Content-type: text/calendar'); + echo ical_wrapper($r); + killme(); + } + if ($a->argv[1] === 'json'){ echo json_encode($events); killme(); } @@ -432,6 +443,7 @@ function events_content(&$a) { '$new_event'=> array($a->get_baseurl().'/events/new',t('Create New Event'),'',''), '$previus' => array($a->get_baseurl()."/events/$prevyear/$prevmonth",t('Previous'),'',''), '$next' => array($a->get_baseurl()."/events/$nextyear/$nextmonth",t('Next'),'',''), + '$export' => array($a->get_baseurl()."/events/$y/$m/export",t('Export'),'',''), '$calendar' => cal($y,$m,$links, ' eventcal'), '$events' => $events, diff --git a/version.inc b/version.inc index 67edf7654..b6da826d4 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-23.868 +2014-11-24.869 diff --git a/view/tpl/events-js.tpl b/view/tpl/events-js.tpl index 69a248512..ad41e983a 100755 --- a/view/tpl/events-js.tpl +++ b/view/tpl/events-js.tpl @@ -2,6 +2,7 @@

    {{$title}}

    +
    From 22340d105b1ebb13c417531f7b93c968da5abaf7 Mon Sep 17 00:00:00 2001 From: zottel Date: Mon, 24 Nov 2014 11:56:15 +0100 Subject: [PATCH 174/176] update to Germanmain help file --- doc/de/main.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/de/main.bb b/doc/de/main.bb index d458847ec..f16016124 100644 --- a/doc/de/main.bb +++ b/doc/de/main.bb @@ -45,6 +45,7 @@ Zot ist das großartige neue Kommunikationsprotokoll, das extra für die Red-Mat [zrl=[baseurl]/help/faq_admins]FAQ für Admins[/zrl] [size=large][b]Technische Dokumentation[/b][/size] +[zrl=[baseurl]/help/history]Die Geschichte der RedMatrix[/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] @@ -63,6 +64,7 @@ Zot ist das großartige neue Kommunikationsprotokoll, das extra für die Red-Mat [zrl=[baseurl]/doc/html/]Code-Referenz (mit doxygen generiert - setzt Cookies)[/zrl] [zrl=[baseurl]/help/to_do_doco]To-Do-Liste für das Projekt Red-Dokumentation[/zrl] [zrl=[baseurl]/help/to_do_code]To-Do-Liste für Entwickler[/zrl] +[zrl=[baseurl]/help/roadmap]Roadmap für Version 3[/zrl] [zrl=[baseurl]/help/git_for_non_developers]Git für Nicht-Entwickler[/zrl] [size=large][b]Häufig gestellte Fragen für Entwickler[/b][/size] From becb6bf2262f7c44d3e94b88588b22c9d392c07d Mon Sep 17 00:00:00 2001 From: zottel Date: Mon, 24 Nov 2014 11:58:47 +0100 Subject: [PATCH 175/176] update to German strings --- view/de/messages.po | 9411 ++++++++++++++++++++++--------------------- view/de/strings.php | 1994 ++++----- 2 files changed, 5766 insertions(+), 5639 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 9c2a40648..247cc2ce9 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-31 00:03-0700\n" -"PO-Revision-Date: 2014-11-07 21:07+0000\n" +"POT-Creation-Date: 2014-11-14 00:04-0800\n" +"PO-Revision-Date: 2014-11-24 10:45+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,308 +34,45 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:50 +#: ../../include/dba/dba_driver.php:132 #, 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/photo/photo_driver.php:680 ../../include/photos.php:51 -#: ../../mod/photos.php:91 ../../mod/photos.php:645 +#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 +#: ../../mod/photos.php:91 ../../mod/photos.php:654 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 #: ../../mod/profile_photo.php:423 msgid "Profile Photos" msgstr "Profilfotos" -#: ../../include/apps.php:126 -msgid "Site Admin" -msgstr "Hub-Administration" - -#: ../../include/apps.php:127 ../../include/conversation.php:1572 -#: ../../include/nav.php:117 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/apps.php:128 -msgid "Address Book" -msgstr "Adressbuch" - -#: ../../include/apps.php:129 ../../include/nav.php:125 ../../boot.php:1496 -msgid "Login" -msgstr "Anmelden" - -#: ../../include/apps.php:130 ../../include/nav.php:216 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../include/apps.php:131 ../../include/nav.php:190 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/apps.php:132 ../../include/widgets.php:524 -#: ../../include/nav.php:218 ../../mod/admin.php:953 ../../mod/admin.php:1158 -msgid "Settings" -msgstr "Einstellungen" - -#: ../../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" - -#: ../../include/apps.php:134 ../../include/conversation.php:1583 -#: ../../include/nav.php:121 ../../mod/webpages.php:129 -msgid "Webpages" -msgstr "Webseiten" - -#: ../../include/apps.php:135 ../../include/nav.php:193 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../include/apps.php:136 ../../include/identity.php:1115 -#: ../../include/identity.php:1233 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/apps.php:137 ../../include/conversation.php:1537 -#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - -#: ../../include/apps.php:138 ../../include/nav.php:212 -#: ../../mod/events.php:431 -msgid "Events" -msgstr "Veranstaltungen" - -#: ../../include/apps.php:139 ../../include/nav.php:176 -#: ../../mod/directory.php:226 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../include/apps.php:140 ../../include/nav.php:168 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" -msgstr "Hilfe" - -#: ../../include/apps.php:141 ../../include/nav.php:204 -msgid "Mail" -msgstr "Mail" - -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Laune" - -#: ../../include/apps.php:143 ../../include/conversation.php:951 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../include/apps.php:144 ../../include/nav.php:111 -msgid "Chat" -msgstr "Chat" - -#: ../../include/apps.php:145 ../../include/text.php:822 -#: ../../include/text.php:834 ../../include/nav.php:173 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "Suche" - -#: ../../include/apps.php:146 -msgid "Probe" -msgstr "Testen" - -#: ../../include/apps.php:147 -msgid "Suggest" -msgstr "Empfehlungen" - -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "Zufälliger Kanal" - -#: ../../include/apps.php:149 -msgid "Invite" -msgstr "Einladen" - -#: ../../include/apps.php:150 -msgid "Features" -msgstr "Funktionen" - -#: ../../include/apps.php:151 -msgid "Language" -msgstr "Sprache" - -#: ../../include/apps.php:152 -msgid "Post" -msgstr "Beitrag" - -#: ../../include/apps.php:153 -msgid "Profile Photo" -msgstr "Profilfoto" - -#: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:544 -msgid "Update" -msgstr "Aktualisieren" - -#: ../../include/apps.php:242 -msgid "Install" -msgstr "Installieren" - -#: ../../include/apps.php:247 -msgid "Purchase" -msgstr "Kaufen" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../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 "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../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/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:589 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:605 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:629 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:680 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:684 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - -#: ../../include/conversation.php:120 ../../include/text.php:1743 -#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../include/conversation.php:120 ../../include/diaspora.php:1923 +#: ../../include/text.php:1747 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:298 msgid "photo" msgstr "Foto" -#: ../../include/conversation.php:123 ../../include/text.php:1746 +#: ../../include/conversation.php:123 ../../include/text.php:1750 #: ../../mod/tagger.php:49 msgid "event" -msgstr "Ereignis" +msgstr "Termin" #: ../../include/conversation.php:126 ../../mod/like.php:89 msgid "channel" msgstr "Kanal" -#: ../../include/conversation.php:148 ../../include/text.php:1749 -#: ../../include/diaspora.php:1924 ../../mod/subthread.php:72 +#: ../../include/conversation.php:148 ../../include/diaspora.php:1923 +#: ../../include/text.php:1753 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:298 msgid "status" msgstr "Status" -#: ../../include/conversation.php:150 ../../include/text.php:1751 +#: ../../include/conversation.php:150 ../../include/text.php:1755 #: ../../mod/tagger.php:55 msgid "comment" msgstr "Kommentar" -#: ../../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" @@ -356,7 +93,7 @@ msgstr "%1$s ist jetzt mit %2$s verbunden" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s an" -#: ../../include/conversation.php:243 ../../include/text.php:901 +#: ../../include/conversation.php:243 ../../include/text.php:905 msgid "poked" msgstr "stupste" @@ -370,6 +107,14 @@ msgstr "%1$s ist %2$s" msgid "Select" msgstr "Auswählen" +#: ../../include/conversation.php:638 ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/apps.php:250 ../../include/ItemObject.php:120 +#: ../../mod/photos.php:1069 ../../mod/connedit.php:476 +#: ../../mod/thing.php:234 ../../mod/settings.php:612 ../../mod/group.php:176 +#: ../../mod/admin.php:730 ../../mod/admin.php:861 +msgid "Delete" +msgstr "Löschen" + #: ../../include/conversation.php:645 ../../include/ItemObject.php:89 msgid "Private Message" msgstr "Private Nachricht" @@ -415,9 +160,9 @@ msgid "View in context" msgstr "Im Zusammenhang anschauen" #: ../../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 +#: ../../include/ItemObject.php:310 ../../mod/photos.php:977 +#: ../../mod/editblock.php:152 ../../mod/editlayout.php:148 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:183 #: ../../mod/mail.php:234 ../../mod/mail.php:349 msgid "Please wait" msgstr "Bitte warten" @@ -447,7 +192,7 @@ msgid "View Status" msgstr "Status ansehen" #: ../../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 "Profil ansehen" @@ -459,11 +204,10 @@ msgstr "Fotos ansehen" msgid "Matrix Activity" msgstr "Matrix-Aktivität" -#: ../../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 +#: ../../include/conversation.php:948 ../../include/widgets.php:135 +#: ../../include/widgets.php:175 ../../include/Contact.php:107 +#: ../../include/identity.php:840 ../../mod/directory.php:224 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 msgid "Connect" msgstr "Verbinden" @@ -475,6 +219,17 @@ msgstr "Kontakt bearbeiten" msgid "Send PM" msgstr "Sende PN" +#: ../../include/conversation.php:951 ../../include/apps.php:143 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 +#: ../../include/apps.php:331 ../../include/apps.php:382 +#: ../../mod/photos.php:713 ../../mod/photos.php:1131 +#: ../../mod/connedit.php:512 +msgid "Unknown" +msgstr "Unbekannt" + #: ../../include/conversation.php:1024 #, php-format msgid "%s likes this." @@ -555,20 +310,20 @@ msgid "Expires YYYY-MM-DD HH:MM" msgstr "Verfällt YYYY-MM-DD HH;MM" #: ../../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 +#: ../../include/ItemObject.php:608 ../../mod/photos.php:997 +#: ../../mod/webpages.php:166 ../../mod/editblock.php:173 +#: ../../mod/editlayout.php:168 ../../mod/editpost.php:140 +#: ../../mod/editwebpage.php:205 msgid "Preview" msgstr "Vorschau" -#: ../../include/conversation.php:1128 ../../mod/photos.php:969 -#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 +#: ../../include/conversation.php:1128 ../../mod/photos.php:976 +#: ../../mod/editblock.php:198 ../../mod/editlayout.php:193 +#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 msgid "Share" msgstr "Teilen" -#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:139 +#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:170 msgid "Page link title" msgstr "Seitentitel-Link" @@ -576,9 +331,9 @@ msgstr "Seitentitel-Link" msgid "Post as" msgstr "Posten als" -#: ../../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 +#: ../../include/conversation.php:1134 ../../mod/editblock.php:144 +#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:231 ../../mod/mail.php:345 msgid "Upload photo" msgstr "Foto hochladen" @@ -586,9 +341,9 @@ msgstr "Foto hochladen" msgid "upload photo" msgstr "Foto hochladen" -#: ../../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 +#: ../../include/conversation.php:1136 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:232 ../../mod/mail.php:346 msgid "Attach file" msgstr "Datei anhängen" @@ -596,9 +351,9 @@ msgstr "Datei anhängen" msgid "attach file" msgstr "Datei anfügen" -#: ../../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 +#: ../../include/conversation.php:1138 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:142 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:233 ../../mod/mail.php:347 msgid "Insert web link" msgstr "Link einfügen" @@ -622,9 +377,9 @@ msgstr "Audio-Link einfügen" msgid "audio link" msgstr "Audio-Link" -#: ../../include/conversation.php:1144 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 +#: ../../include/conversation.php:1144 ../../mod/editblock.php:150 +#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:181 msgid "Set your location" msgstr "Standort" @@ -632,9 +387,9 @@ msgstr "Standort" msgid "set location" msgstr "Standort" -#: ../../include/conversation.php:1146 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 +#: ../../include/conversation.php:1146 ../../mod/editblock.php:151 +#: ../../mod/editlayout.php:147 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:182 msgid "Clear browser location" msgstr "Browser-Standort löschen" @@ -642,21 +397,21 @@ msgstr "Browser-Standort löschen" msgid "clear location" msgstr "Standort löschen" -#: ../../include/conversation.php:1149 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 +#: ../../include/conversation.php:1149 ../../mod/editblock.php:164 +#: ../../mod/editlayout.php:159 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:198 msgid "Set title" msgstr "Titel" #: ../../include/conversation.php:1152 ../../mod/events.php:563 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 -#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:169 +#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 +#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:200 msgid "Categories (comma-separated list)" msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../include/conversation.php:1154 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 +#: ../../include/conversation.php:1154 ../../mod/editblock.php:153 +#: ../../mod/editlayout.php:149 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:184 msgid "Permission settings" msgstr "Berechtigungs-Einstellungen" @@ -664,21 +419,21 @@ msgstr "Berechtigungs-Einstellungen" msgid "permissions" msgstr "Berechtigungen" -#: ../../include/conversation.php:1162 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 +#: ../../include/conversation.php:1162 ../../mod/editblock.php:161 +#: ../../mod/editlayout.php:156 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:193 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: ../../include/conversation.php:1164 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 +#: ../../include/conversation.php:1164 ../../mod/editblock.php:168 +#: ../../mod/editlayout.php:163 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:201 msgid "Example: bob@example.com, mary@example.com" msgstr "Beispiel: bob@example.com, mary@example.com" -#: ../../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 +#: ../../include/conversation.php:1177 ../../mod/editblock.php:178 +#: ../../mod/editlayout.php:173 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:238 ../../mod/mail.php:352 msgid "Set expiration date" msgstr "Verfallsdatum" @@ -692,9 +447,9 @@ msgstr "Text verschlüsseln" msgid "OK" msgstr "Ok" -#: ../../include/conversation.php:1182 ../../mod/settings.php:519 -#: ../../mod/settings.php:545 ../../mod/events.php:568 -#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 +#: ../../include/conversation.php:1182 ../../mod/events.php:568 +#: ../../mod/editpost.php:151 ../../mod/settings.php:550 +#: ../../mod/settings.php:576 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "Abbrechen" @@ -732,7 +487,7 @@ msgid "Posts that mention or involve you" msgstr "Beiträge mit Beteiligung Deinerseits" #: ../../include/conversation.php:1458 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 +#: ../../mod/connections.php:224 ../../mod/menu.php:80 msgid "New" msgstr "Neu" @@ -756,39 +511,60 @@ msgstr "Spam" msgid "Posts flagged as SPAM" msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/conversation.php:1516 ../../mod/admin.php:867 +#: ../../include/conversation.php:1520 ../../mod/admin.php:865 msgid "Channel" msgstr "Kanal" -#: ../../include/conversation.php:1519 +#: ../../include/conversation.php:1523 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../include/conversation.php:1528 +#: ../../include/conversation.php:1532 msgid "About" msgstr "Über" -#: ../../include/conversation.php:1531 +#: ../../include/conversation.php:1535 msgid "Profile Details" msgstr "Profil-Details" -#: ../../include/conversation.php:1540 ../../include/photos.php:340 +#: ../../include/conversation.php:1541 ../../include/nav.php:105 +#: ../../include/apps.php:137 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" + +#: ../../include/conversation.php:1544 ../../include/photos.php:341 msgid "Photo Albums" msgstr "Fotoalben" -#: ../../include/conversation.php:1549 +#: ../../include/conversation.php:1550 ../../include/RedDAV/RedBrowser.php:241 +#: ../../include/nav.php:106 ../../include/apps.php:133 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Dateien" + +#: ../../include/conversation.php:1553 msgid "Files and Storage" msgstr "Dateien und Speicher" -#: ../../include/conversation.php:1559 ../../include/conversation.php:1562 +#: ../../include/conversation.php:1563 ../../include/conversation.php:1566 msgid "Chatrooms" msgstr "Chaträume" -#: ../../include/conversation.php:1575 +#: ../../include/conversation.php:1576 ../../include/nav.php:117 +#: ../../include/apps.php:127 +msgid "Bookmarks" +msgstr "Lesezeichen" + +#: ../../include/conversation.php:1579 msgid "Saved Bookmarks" msgstr "Gespeicherte Lesezeichen" -#: ../../include/conversation.php:1586 +#: ../../include/conversation.php:1587 ../../include/nav.php:121 +#: ../../include/apps.php:134 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "Webseiten" + +#: ../../include/conversation.php:1590 msgid "Manage Webpages" msgstr "Webseiten verwalten" @@ -801,62 +577,136 @@ msgstr "Neuer Beitrag wurde erzeugt" msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" +#: ../../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/page_widgets.php:6 msgid "New Page" msgstr "Neue Seite" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 -#: ../../mod/webpages.php:134 ../../mod/layouts.php:125 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:250 ../../include/menu.php:42 +#: ../../include/apps.php:249 ../../include/ItemObject.php:100 +#: ../../mod/blocks.php:132 ../../mod/connections.php:381 +#: ../../mod/connections.php:394 ../../mod/connections.php:413 +#: ../../mod/thing.php:233 ../../mod/webpages.php:162 +#: ../../mod/editblock.php:143 ../../mod/editlayout.php:139 +#: ../../mod/editpost.php:112 ../../mod/settings.php:611 +#: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 +#: ../../mod/menu.php:78 +msgid "Edit" +msgstr "Bearbeiten" + +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 msgid "View" msgstr "Ansicht" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 msgid "Actions" msgstr "Aktionen" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 msgid "Page Link" msgstr "Seiten-Link" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 msgid "Title" msgstr "Titel" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 msgid "Created" msgstr "Erstellt" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 msgid "Edited" msgstr "Geändert" -#: ../../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:10 +msgid "Missing room name" +msgstr "Der Chatraum hat keinen Namen" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:463 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\\\, H:i" +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Name des Chatraums bereits vergeben" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:469 -msgid "Starts:" -msgstr "Beginnt:" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ungültiger Raumbezeichner." -#: ../../include/event.php:30 ../../include/bb2diaspora.php:477 -msgid "Finishes:" -msgstr "Endet:" +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chatraum konnte nicht gefunden werden." -#: ../../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/chat.php:116 ../../include/items.php:4013 +#: ../../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 +#: ../../mod/mood.php:112 ../../mod/mitem.php:106 +#: ../../mod/achievements.php:30 ../../mod/profiles.php:179 +#: ../../mod/profiles.php:550 ../../mod/setup.php:207 ../../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/sources.php:66 ../../mod/blocks.php:67 +#: ../../mod/blocks.php:75 ../../mod/register.php:72 ../../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/regmod.php:17 ../../mod/network.php:12 ../../mod/common.php:35 +#: ../../mod/photos.php:68 ../../mod/connections.php:169 +#: ../../mod/manage.php:6 ../../mod/connedit.php:266 ../../mod/thing.php:247 +#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/webpages.php:67 +#: ../../mod/bookmarks.php:46 ../../mod/editblock.php:65 +#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:64 +#: ../../mod/editlayout.php:89 ../../mod/editpost.php:13 +#: ../../mod/settings.php:526 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 +#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/item.php:191 +#: ../../mod/item.php:199 ../../mod/item.php:971 ../../mod/like.php:154 +#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:71 +#: ../../mod/layouts.php:67 ../../mod/layouts.php:74 ../../mod/layouts.php:85 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/viewsrc.php:14 ../../mod/mail.php:111 ../../mod/menu.php:61 +#: ../../mod/message.php:16 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 +#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/appman.php:66 +#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 +msgid "Permission denied." +msgstr "Zugang verweigert" -#: ../../include/event.php:326 -msgid "This event has been added to your calendar." -msgstr "Dieses Ereignis wurde zu Deinem Kalender hinzugefügt" +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Der Raum ist voll" #: ../../include/oembed.php:171 msgid "Embedded content" @@ -866,6 +716,1068 @@ msgstr "Eingebetteter Inhalt" msgid "Embedding disabled" msgstr "Einbetten ausgeschaltet" +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 +#: ../../include/taxonomy.php:230 +msgid "Categories" +msgstr "Kategorien" + +#: ../../include/widgets.php:86 ../../include/nav.php:171 +#: ../../mod/apps.php:33 +msgid "Apps" +msgstr "Apps" + +#: ../../include/widgets.php:87 +msgid "System" +msgstr "System" + +#: ../../include/widgets.php:90 +msgid "Create Personal App" +msgstr "Persönliche App erstellen" + +#: ../../include/widgets.php:91 +msgid "Edit Personal App" +msgstr "Persönliche App bearbeiten" + +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" + +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" +msgstr "Vorschläge" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Mehr anzeigen …" + +#: ../../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/widgets.php:172 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" + +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Adresse des Kanals eingeben" + +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" + +#: ../../include/widgets.php:191 +msgid "Notes" +msgstr "Notizen" + +#: ../../include/widgets.php:193 ../../include/text.php:827 +#: ../../include/text.php:839 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Save" +msgstr "Speichern" + +#: ../../include/widgets.php:263 +msgid "Remove term" +msgstr "Eintrag löschen" + +#: ../../include/widgets.php:272 ../../include/features.php:58 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../include/widgets.php:273 ../../include/group.php:303 +msgid "add" +msgstr "hinzufügen" + +#: ../../include/widgets.php:303 ../../include/contact_widgets.php:57 +#: ../../include/features.php:72 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/widgets.php:306 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Alles" + +#: ../../include/widgets.php:352 +msgid "Archives" +msgstr "Archive" + +#: ../../include/widgets.php:428 +msgid "Refresh" +msgstr "Aktualisieren" + +#: ../../include/widgets.php:429 ../../mod/connedit.php:506 +msgid "Me" +msgstr "Ich" + +#: ../../include/widgets.php:430 ../../mod/connedit.php:508 +msgid "Best Friends" +msgstr "Beste Freunde" + +#: ../../include/widgets.php:431 ../../include/identity.php:387 +#: ../../include/identity.php:388 ../../include/identity.php:395 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:509 +#: ../../mod/settings.php:304 ../../mod/settings.php:308 +#: ../../mod/settings.php:309 ../../mod/settings.php:312 +#: ../../mod/settings.php:323 +msgid "Friends" +msgstr "Freunde" + +#: ../../include/widgets.php:432 +msgid "Co-workers" +msgstr "Kollegen" + +#: ../../include/widgets.php:433 ../../mod/connedit.php:510 +msgid "Former Friends" +msgstr "ehem. Freunde" + +#: ../../include/widgets.php:434 ../../mod/connedit.php:511 +msgid "Acquaintances" +msgstr "Bekannte" + +#: ../../include/widgets.php:435 +msgid "Everybody" +msgstr "Jeder" + +#: ../../include/widgets.php:469 +msgid "Account settings" +msgstr "Konto-Einstellungen" + +#: ../../include/widgets.php:475 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" + +#: ../../include/widgets.php:481 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" + +#: ../../include/widgets.php:487 +msgid "Feature settings" +msgstr "Funktions-Einstellungen" + +#: ../../include/widgets.php:493 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" + +#: ../../include/widgets.php:499 +msgid "Connected apps" +msgstr "Verbundene Apps" + +#: ../../include/widgets.php:505 +msgid "Export channel" +msgstr "Kanal exportieren" + +#: ../../include/widgets.php:511 +msgid "Export content" +msgstr "Kanal-Inhalte exportieren" + +#: ../../include/widgets.php:520 ../../mod/connedit.php:538 +msgid "Connection Default Permissions" +msgstr "Standardzugriffsrechte für neue Verbindungen:" + +#: ../../include/widgets.php:528 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" + +#: ../../include/widgets.php:537 ../../include/features.php:49 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanal-Quellen" + +#: ../../include/widgets.php:548 ../../include/nav.php:218 +#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 +msgid "Settings" +msgstr "Einstellungen" + +#: ../../include/widgets.php:562 ../../mod/mail.php:124 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../include/widgets.php:567 +msgid "Check Mail" +msgstr "E-Mails abrufen" + +#: ../../include/widgets.php:572 ../../include/nav.php:209 +msgid "New Message" +msgstr "Neue Nachricht" + +#: ../../include/widgets.php:648 +msgid "Chat Rooms" +msgstr "Chaträume" + +#: ../../include/widgets.php:666 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" + +#: ../../include/widgets.php:684 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" + +#: ../../include/zot.php:664 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" + +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" + +#: ../../include/zot.php:1799 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" + +#: ../../include/activities.php:39 +msgid " and " +msgstr "und" + +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "öffentliches Profil" + +#: ../../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/activities.php:53 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" + +#: ../../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/bb2diaspora.php:384 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../include/bb2diaspora.php:463 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\\\, H:i" + +#: ../../include/bb2diaspora.php:465 +msgid "Redmatrix event notification:" +msgstr "RedMatrix Termin-Benachrichtigung:" + +#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 +msgid "Starts:" +msgstr "Beginnt:" + +#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../include/bb2diaspora.php:485 ../../include/event.php:40 +#: ../../include/identity.php:891 ../../mod/directory.php:159 +#: ../../mod/events.php:579 +msgid "Location:" +msgstr "Ort:" + +#: ../../include/RedDAV/RedBrowser.php:106 +#: ../../include/RedDAV/RedBrowser.php:249 +msgid "parent" +msgstr "Übergeordnetes Verzeichnis" + +#: ../../include/RedDAV/RedBrowser.php:130 +msgid "Collection" +msgstr "Ordner" + +#: ../../include/RedDAV/RedBrowser.php:133 +msgid "Principal" +msgstr "Prinzipal" + +#: ../../include/RedDAV/RedBrowser.php:136 +msgid "Addressbook" +msgstr "Adressbuch" + +#: ../../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:223 +#, php-format +msgid "%1$s used" +msgstr "%1$s verwendet" + +#: ../../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/RedDAV/RedBrowser.php:245 ../../mod/settings.php:551 +#: ../../mod/settings.php:577 ../../mod/admin.php:866 +msgid "Name" +msgstr "Name" + +#: ../../include/RedDAV/RedBrowser.php:246 +msgid "Type" +msgstr "Typ" + +#: ../../include/RedDAV/RedBrowser.php:247 +msgid "Size" +msgstr "Größe" + +#: ../../include/RedDAV/RedBrowser.php:248 +msgid "Last Modified" +msgstr "Zuletzt geändert" + +#: ../../include/RedDAV/RedBrowser.php:252 +msgid "Total" +msgstr "Summe" + +#: ../../include/RedDAV/RedBrowser.php:305 +msgid "Create new folder" +msgstr "Neuen Ordner anlegen" + +#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:169 +#: ../../mod/menu.php:100 ../../mod/new_channel.php:122 +msgid "Create" +msgstr "Erstelle" + +#: ../../include/RedDAV/RedBrowser.php:307 +msgid "Upload file" +msgstr "Datei hochladen" + +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:738 +#: ../../mod/photos.php:1245 ../../mod/profile_photo.php:361 +msgid "Upload" +msgstr "Hochladen" + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" + +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." + +#: ../../include/follow.php:135 ../../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:220 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." + +#: ../../include/comanche.php:35 ../../mod/admin.php:353 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" +msgstr "Standard" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "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:726 +#: ../../mod/admin.php:735 ../../boot.php:1488 +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:416 +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/directory.php:267 +#: ../../mod/directory.php:272 ../../mod/connections.php:412 +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 "Advanced example: name=fred and country=iceland" +msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" + +#: ../../include/contact_widgets.php:130 +msgid "show more" +msgstr "mehr zeigen" + +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "Red Matrix Benachrichtigung" + +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "redmatrix" + +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "Danke." + +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" + +#: ../../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:Benachrichtigung] Neue Mail auf %s empfangen" + +#: ../../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/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." + +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "eine private 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/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/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/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/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/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/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 verschlagwortet" + +#: ../../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/event.php:326 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" + +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "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/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Standard-Sammlung für neue Kontakte" + +#: ../../include/group.php:254 ../../mod/admin.php:735 +msgid "All Channels" +msgstr "Alle Kanäle" + +#: ../../include/group.php:276 +msgid "edit" +msgstr "Bearbeiten" + +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Sammlungen" + +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Sammlung bearbeiten" + +#: ../../include/group.php:300 +msgid "Create a new collection" +msgstr "Neue Sammlung erzeugen" + +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanäle, die nicht in einer Sammlung sind" + +#: ../../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/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "Design-Element installieren:" + +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "QR-Code" + +#: ../../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/bbcode.php:222 +msgid "post" +msgstr "Beitrag" + +#: ../../include/bbcode.php:621 +msgid "$1 spoiler" +msgstr "$1 Spoiler" + +#: ../../include/bbcode.php:641 +msgid "$1 wrote:" +msgstr "$1 schrieb:" + +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Schlagwörter" + +#: ../../include/taxonomy.php:249 +msgid "Keywords" +msgstr "Schlüsselwörter" + +#: ../../include/taxonomy.php:274 +msgid "have" +msgstr "habe" + +#: ../../include/taxonomy.php:274 +msgid "has" +msgstr "hat" + +#: ../../include/taxonomy.php:275 +msgid "want" +msgstr "will" + +#: ../../include/taxonomy.php:275 +msgid "wants" +msgstr "will" + +#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 +msgid "like" +msgstr "mag" + +#: ../../include/taxonomy.php:276 +msgid "likes" +msgstr "gefällt" + +#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "verurteile" + +#: ../../include/taxonomy.php:277 +msgid "dislikes" +msgstr "missfällt" + +#: ../../include/taxonomy.php:360 ../../include/identity.php:1148 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1026 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" + +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1485 +msgid "Logout" +msgstr "Abmelden" + +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" +msgstr "Beende diese Sitzung" + +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:98 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: ../../include/nav.php:99 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../include/nav.php:101 +msgid "Edit Profiles" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" + +#: ../../include/nav.php:103 ../../include/identity.php:864 +msgid "Edit Profile" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:103 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "Deine Bilder" + +#: ../../include/nav.php:106 +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 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" + +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "Deine Webseiten" + +#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1486 +msgid "Login" +msgstr "Anmelden" + +#: ../../include/nav.php:125 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" + +#: ../../include/nav.php:145 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:159 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1464 +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:58 +#: ../../mod/help.php:63 +msgid "Help" +msgstr "Hilfe" + +#: ../../include/nav.php:168 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" + +#: ../../include/nav.php:173 ../../include/text.php:826 +#: ../../include/text.php:838 ../../include/apps.php:145 +#: ../../mod/search.php:30 +msgid "Search" +msgstr "Suche" + +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "Durchsuche Seiten-Inhalt" + +#: ../../include/nav.php:176 ../../include/apps.php:139 +#: ../../mod/directory.php:271 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../include/nav.php:176 +msgid "Channel Directory" +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" + +#: ../../include/nav.php:191 +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" + +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" +msgstr "Verbindungen" + +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:200 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:201 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" + +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +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" + +#: ../../include/nav.php:205 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" + +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" + +#: ../../include/nav.php:207 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/nav.php:208 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/nav.php:212 ../../include/apps.php:138 +#: ../../mod/events.php:431 +msgid "Events" +msgstr "Termine" + +#: ../../include/nav.php:212 +msgid "Event Calendar" +msgstr "Terminkalender" + +#: ../../include/nav.php:213 +msgid "See all events" +msgstr "Alle Termine ansehen" + +#: ../../include/nav.php:214 +msgid "Mark all events seen" +msgstr "Markiere alle Termine 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 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" + +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Administration" + +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:262 +msgid "Please wait..." +msgstr "Bitte warten..." + #: ../../include/permissions.php:13 msgid "Can view my normal stream and posts" msgstr "Kann meine normalen Beiträge sehen" @@ -1004,1067 +1916,18 @@ msgstr "Andere" msgid "Custom/Expert Mode" msgstr "Benutzerdefiniert/Expertenmodus" -#: ../../include/activities.php:39 -msgid " and " -msgstr "und" +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Neues Fenster" -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "öffentliches Profil" +#: ../../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/activities.php:52 +#: ../../include/Contact.php:211 ../../mod/admin.php:646 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" - -#: ../../include/activities.php:53 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" - -#: ../../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/bb2diaspora.php:384 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "Ausgeloggt." - -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" - -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Login fehlgeschlagen." - -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:249 -msgid "parent" -msgstr "Übergeordnetes Verzeichnis" - -#: ../../include/RedDAV/RedBrowser.php:130 -msgid "Collection" -msgstr "Ordner" - -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Principal" -msgstr "Prinzipal" - -#: ../../include/RedDAV/RedBrowser.php:136 -msgid "Addressbook" -msgstr "Adressbuch" - -#: ../../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:223 -#, php-format -msgid "%1$s used" -msgstr "%1$s verwendet" - -#: ../../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/RedDAV/RedBrowser.php:245 ../../mod/settings.php:520 -#: ../../mod/settings.php:546 ../../mod/admin.php:868 -msgid "Name" -msgstr "Name" - -#: ../../include/RedDAV/RedBrowser.php:246 -msgid "Type" -msgstr "Typ" - -#: ../../include/RedDAV/RedBrowser.php:247 -msgid "Size" -msgstr "Größe" - -#: ../../include/RedDAV/RedBrowser.php:248 -msgid "Last Modified" -msgstr "Zuletzt geändert" - -#: ../../include/RedDAV/RedBrowser.php:252 -msgid "Total" -msgstr "Summe" - -#: ../../include/RedDAV/RedBrowser.php:305 -msgid "Create new folder" -msgstr "Neuen Ordner anlegen" - -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:142 -#: ../../mod/menu.php:84 ../../mod/new_channel.php:122 -msgid "Create" -msgstr "Erstelle" - -#: ../../include/RedDAV/RedBrowser.php:307 -msgid "Upload file" -msgstr "Datei hochladen" - -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:728 -#: ../../mod/photos.php:1237 ../../mod/profile_photo.php:361 -msgid "Upload" -msgstr "Hochladen" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" - -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" - -#: ../../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:1498 -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/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/contact_widgets.php:58 ../../include/features.php:72 -#: ../../include/widgets.php:303 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../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 "Kategorien" - -#: ../../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/contact_widgets.php:131 -msgid "show more" -msgstr "mehr zeigen" - -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" - -#: ../../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/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/account.php:64 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Speichern der Account-Informationen fehlgeschlagen" - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account bestätigt." - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s widerrufen" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Konto geprüft. Bitte melde Dich an!" - -#: ../../include/account.php:647 ../../include/account.php:649 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." - -#: ../../include/account.php:655 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." - -#: ../../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/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/bbcode.php:147 ../../include/bbcode.php:703 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "Design-Element installieren:" - -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "QR-Code" - -#: ../../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/bbcode.php:222 -msgid "post" -msgstr "Beitrag" - -#: ../../include/bbcode.php:621 -msgid "$1 spoiler" -msgstr "$1 Spoiler" - -#: ../../include/bbcode.php:641 -msgid "$1 wrote:" -msgstr "$1 schrieb:" - -#: ../../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/taxonomy.php:210 -msgid "Tags" -msgstr "Schlagwörter" - -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Schlüsselwörter" - -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "habe" - -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "hat" - -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "will" - -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "will" - -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:221 -msgid "like" -msgstr "mag" - -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "gefällt" - -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "verurteile" - -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "missfällt" - -#: ../../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/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Red Matrix Benachrichtigung" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Danke." - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: ../../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:Benachrichtigung] Neue Mail auf %s empfangen" - -#: ../../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/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "eine private 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/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/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/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/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/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/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/text.php:904 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:905 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:905 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:906 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:906 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:915 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:916 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:917 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:918 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:919 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:920 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:921 -msgid "stupified" -msgstr "verblüfft" - -#: ../../include/text.php:922 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:923 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:924 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:925 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:926 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:927 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:928 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:929 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:930 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:931 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:932 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:933 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:934 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:935 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1099 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1099 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1099 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1099 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1099 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1099 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1099 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1103 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1103 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1103 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1103 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1103 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1103 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1103 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1103 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1103 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1103 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1103 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1103 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1181 -msgid "unknown.???" -msgstr "unbekannt.???" - -#: ../../include/text.php:1182 -msgid "bytes" -msgstr "Bytes" - -#: ../../include/text.php:1221 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1291 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1356 ../../include/text.php:1368 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/text.php:1523 ../../mod/events.php:409 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../include/text.php:1542 -msgid "Select a page layout: " -msgstr "Ein Seiten-Layout auswählen:" - -#: ../../include/text.php:1545 ../../include/text.php:1610 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1581 -msgid "Page content type: " -msgstr "Content-Typ der Seite:" - -#: ../../include/text.php:1622 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../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" +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" #: ../../include/features.php:23 msgid "General Features" @@ -2152,7 +2015,7 @@ msgstr "Premium-Kanal" 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" +msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" #: ../../include/features.php:45 msgid "Post Composition Features" @@ -2164,7 +2027,7 @@ msgstr "Markdown benutzen" #: ../../include/features.php:47 msgid "Allow use of \"Markdown\" to format posts" -msgstr "Erlaube Markdown zur Formatierung von Beiträgen" +msgstr "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen" #: ../../include/features.php:48 msgid "Post Preview" @@ -2174,11 +2037,6 @@ msgstr "Voransicht" msgid "Allow previewing posts and comments before publishing them" msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung" -#: ../../include/features.php:49 ../../include/widgets.php:513 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanal-Quellen" - #: ../../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" @@ -2212,10 +2070,6 @@ msgstr "Filter für Sammlung" msgid "Enable widget to display Network posts only from selected collections" msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen" -#: ../../include/features.php:58 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - #: ../../include/features.php:58 msgid "Save search terms for re-use" msgstr "Suchbegriffe zur Wiederverwendung abspeichern" @@ -2308,78 +2162,84 @@ msgstr "Schlagwort-Wolke" msgid "Provide a personal tag cloud on your channel page" msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." +#: ../../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/follow.php:86 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." +#: ../../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/follow.php:103 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt" -#: ../../include/follow.php:139 ../../include/follow.php:208 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden" -#: ../../include/follow.php:182 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." -#: ../../include/follow.php:198 -msgid "local account not found." -msgstr "Lokales Konto nicht gefunden." +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Speichern der Account-Informationen fehlgeschlagen" -#: ../../include/follow.php:225 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" -#: ../../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/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" -#: ../../include/group.php:234 -msgid "Default privacy group for new contacts" -msgstr "Standard-Sammlung für neue Kontakte" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Administrator" -#: ../../include/group.php:253 ../../mod/admin.php:737 -msgid "All Channels" -msgstr "Alle Kanäle" +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" -#: ../../include/group.php:275 -msgid "edit" -msgstr "Bearbeiten" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" -#: ../../include/group.php:297 -msgid "Collections" -msgstr "Sammlungen" +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Account bestätigt." -#: ../../include/group.php:298 -msgid "Edit collection" -msgstr "Sammlung bearbeiten" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s widerrufen" -#: ../../include/group.php:299 -msgid "Create a new collection" -msgstr "Neue Sammlung erzeugen" +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Konto geprüft. Bitte melde Dich an!" -#: ../../include/group.php:300 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/group.php:302 ../../include/widgets.php:273 -msgid "add" -msgstr "hinzufügen" +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../include/identity.php:31 ../../mod/item.php:1358 +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." + +#: ../../include/identity.php:31 ../../mod/item.php:1368 msgid "Unable to obtain identity information from database" msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" @@ -2416,463 +2276,278 @@ msgstr "Kann die erstellte Identität nicht empfangen" msgid "Default Profile" msgstr "Standard-Profil" -#: ../../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/identity.php:638 +#: ../../include/identity.php:643 msgid "Requested channel is not available." msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../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 +#: ../../include/identity.php:691 ../../mod/achievements.php:11 +#: ../../mod/connect.php:13 ../../mod/profile.php:16 ../../mod/blocks.php:29 +#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 +#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 msgid "Requested profile is not available." msgstr "Erwünschte Profil ist nicht verfügbar." -#: ../../include/identity.php:849 ../../mod/profiles.php:722 +#: ../../include/identity.php:854 ../../mod/profiles.php:740 msgid "Change profile photo" msgstr "Profilfoto ändern" -#: ../../include/identity.php:855 +#: ../../include/identity.php:860 msgid "Profiles" msgstr "Profile" -#: ../../include/identity.php:855 +#: ../../include/identity.php:860 msgid "Manage/edit profiles" msgstr "Profile verwalten/bearbeiten" -#: ../../include/identity.php:856 ../../mod/profiles.php:723 +#: ../../include/identity.php:861 ../../mod/profiles.php:741 msgid "Create New Profile" msgstr "Neues Profil erstellen" -#: ../../include/identity.php:859 ../../include/nav.php:103 -msgid "Edit Profile" -msgstr "Profile bearbeiten" - -#: ../../include/identity.php:870 ../../mod/profiles.php:734 +#: ../../include/identity.php:875 ../../mod/profiles.php:752 msgid "Profile Image" msgstr "Profilfoto:" -#: ../../include/identity.php:873 +#: ../../include/identity.php:878 msgid "visible to everybody" msgstr "sichtbar für jeden" -#: ../../include/identity.php:874 ../../mod/profiles.php:617 -#: ../../mod/profiles.php:738 +#: ../../include/identity.php:879 ../../mod/profiles.php:635 +#: ../../mod/profiles.php:756 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" -#: ../../include/identity.php:888 ../../include/identity.php:1125 -#: ../../mod/directory.php:158 +#: ../../include/identity.php:895 ../../include/identity.php:1132 msgid "Gender:" msgstr "Geschlecht:" -#: ../../include/identity.php:889 ../../include/identity.php:1169 -#: ../../mod/directory.php:160 +#: ../../include/identity.php:896 ../../include/identity.php:1176 msgid "Status:" msgstr "Status:" -#: ../../include/identity.php:890 ../../include/identity.php:1180 -#: ../../mod/directory.php:162 +#: ../../include/identity.php:897 ../../include/identity.php:1187 msgid "Homepage:" msgstr "Homepage:" -#: ../../include/identity.php:891 ../../mod/dirprofile.php:151 +#: ../../include/identity.php:898 msgid "Online Now" msgstr "gerade online" -#: ../../include/identity.php:969 ../../include/identity.php:1049 -#: ../../mod/ping.php:298 +#: ../../include/identity.php:976 ../../include/identity.php:1056 +#: ../../mod/ping.php:318 msgid "g A l F d" msgstr "l, d. F G \\\\U\\\\h\\\\r" -#: ../../include/identity.php:970 ../../include/identity.php:1050 +#: ../../include/identity.php:977 ../../include/identity.php:1057 msgid "F d" msgstr "d. F" -#: ../../include/identity.php:1015 ../../include/identity.php:1090 -#: ../../mod/ping.php:320 +#: ../../include/identity.php:1022 ../../include/identity.php:1097 +#: ../../mod/ping.php:340 msgid "[today]" msgstr "[Heute]" -#: ../../include/identity.php:1027 +#: ../../include/identity.php:1034 msgid "Birthday Reminders" msgstr "Geburtstags Erinnerungen" -#: ../../include/identity.php:1028 +#: ../../include/identity.php:1035 msgid "Birthdays this week:" msgstr "Geburtstage in dieser Woche:" -#: ../../include/identity.php:1083 +#: ../../include/identity.php:1090 msgid "[No description]" msgstr "[Keine Beschreibung]" -#: ../../include/identity.php:1101 +#: ../../include/identity.php:1108 msgid "Event Reminders" -msgstr "Veranstaltungs- Erinnerungen" +msgstr "Termin-Erinnerungen" -#: ../../include/identity.php:1102 +#: ../../include/identity.php:1109 msgid "Events this week:" -msgstr "Veranstaltungen in dieser Woche:" +msgstr "Termine in dieser Woche:" -#: ../../include/identity.php:1123 ../../mod/settings.php:947 +#: ../../include/identity.php:1122 ../../include/identity.php:1240 +#: ../../include/apps.php:136 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" + +#: ../../include/identity.php:1130 ../../mod/settings.php:984 msgid "Full Name:" msgstr "Voller Name:" -#: ../../include/identity.php:1130 +#: ../../include/identity.php:1137 msgid "Like this channel" msgstr "Dieser Kanal gefällt mir" -#: ../../include/identity.php:1154 +#: ../../include/identity.php:1161 msgid "j F, Y" msgstr "j. F Y" -#: ../../include/identity.php:1155 +#: ../../include/identity.php:1162 msgid "j F" msgstr "j. F" -#: ../../include/identity.php:1162 +#: ../../include/identity.php:1169 msgid "Birthday:" msgstr "Geburtstag:" -#: ../../include/identity.php:1166 +#: ../../include/identity.php:1173 msgid "Age:" msgstr "Alter:" -#: ../../include/identity.php:1175 +#: ../../include/identity.php:1182 #, php-format msgid "for %1$d %2$s" msgstr "seit %1$d %2$s" -#: ../../include/identity.php:1178 ../../mod/profiles.php:639 +#: ../../include/identity.php:1185 ../../mod/profiles.php:657 msgid "Sexual Preference:" msgstr "Sexuelle Orientierung:" -#: ../../include/identity.php:1182 ../../mod/profiles.php:641 +#: ../../include/identity.php:1189 ../../mod/profiles.php:659 msgid "Hometown:" msgstr "Heimatstadt:" -#: ../../include/identity.php:1184 +#: ../../include/identity.php:1191 msgid "Tags:" msgstr "Schlagworte:" -#: ../../include/identity.php:1186 ../../mod/profiles.php:642 +#: ../../include/identity.php:1193 ../../mod/profiles.php:660 msgid "Political Views:" msgstr "Politische Ansichten:" -#: ../../include/identity.php:1188 +#: ../../include/identity.php:1195 msgid "Religion:" msgstr "Religion:" -#: ../../include/identity.php:1190 ../../mod/directory.php:164 +#: ../../include/identity.php:1197 msgid "About:" msgstr "Über:" -#: ../../include/identity.php:1192 +#: ../../include/identity.php:1199 msgid "Hobbies/Interests:" msgstr "Hobbys/Interessen:" -#: ../../include/identity.php:1194 ../../mod/profiles.php:645 +#: ../../include/identity.php:1201 ../../mod/profiles.php:663 msgid "Likes:" msgstr "Gefällt:" -#: ../../include/identity.php:1196 ../../mod/profiles.php:646 +#: ../../include/identity.php:1203 ../../mod/profiles.php:664 msgid "Dislikes:" msgstr "Gefällt nicht:" -#: ../../include/identity.php:1199 +#: ../../include/identity.php:1206 msgid "Contact information and Social Networks:" msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/identity.php:1201 +#: ../../include/identity.php:1208 msgid "My other channels:" msgstr "Meine anderen Kanäle:" -#: ../../include/identity.php:1203 +#: ../../include/identity.php:1210 msgid "Musical interests:" msgstr "Musikalische Interessen:" -#: ../../include/identity.php:1205 +#: ../../include/identity.php:1212 msgid "Books, literature:" msgstr "Bücher, Literatur:" -#: ../../include/identity.php:1207 +#: ../../include/identity.php:1214 msgid "Television:" msgstr "Fernsehen:" -#: ../../include/identity.php:1209 +#: ../../include/identity.php:1216 msgid "Film/dance/culture/entertainment:" msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/identity.php:1211 +#: ../../include/identity.php:1218 msgid "Love/Romance:" msgstr "Liebe/Romantik:" -#: ../../include/identity.php:1213 +#: ../../include/identity.php:1220 msgid "Work/employment:" msgstr "Arbeit/Anstellung:" -#: ../../include/identity.php:1215 +#: ../../include/identity.php:1222 msgid "School/education:" msgstr "Schule/Ausbildung:" -#: ../../include/identity.php:1235 +#: ../../include/identity.php:1242 msgid "Like this thing" msgstr "Gefällt mir" -#: ../../include/widgets.php:86 ../../include/nav.php:171 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Apps" +#: ../../include/items.php:377 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 +#: ../../index.php:389 +msgid "Permission denied" +msgstr "Keine Berechtigung" -#: ../../include/widgets.php:87 -msgid "System" -msgstr "System" +#: ../../include/items.php:964 ../../include/items.php:1009 +msgid "(Unknown)" +msgstr "(Unbekannt)" -#: ../../include/widgets.php:90 -msgid "Create Personal App" -msgstr "Persönliche App erstellen" +#: ../../include/items.php:1165 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." -#: ../../include/widgets.php:91 -msgid "Edit Personal App" -msgstr "Persönliche App bearbeiten" +#: ../../include/items.php:1167 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" +#: ../../include/items.php:1169 +msgid "Visible to anybody in this network." +msgstr "Für jedes Mitglied der RedMatrix sichtbar." -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Vorschläge" +#: ../../include/items.php:1171 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../include/widgets.php:166 +#: ../../include/items.php:1173 #, 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 "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" +#: ../../include/items.php:1175 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse des Kanals eingeben" +#: ../../include/items.php:1177 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" +#: ../../include/items.php:1179 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/widgets.php:191 -msgid "Notes" -msgstr "Notizen" +#: ../../include/items.php:3946 ../../mod/thing.php:76 +#: ../../mod/display.php:32 ../../mod/filestorage.php:26 +#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Element nicht gefunden." -#: ../../include/widgets.php:263 -msgid "Remove term" -msgstr "Eintrag löschen" +#: ../../include/items.php:4402 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Sammlung nicht gefunden" -#: ../../include/widgets.php:342 -msgid "Archives" -msgstr "Archive" +#: ../../include/items.php:4417 +msgid "Collection is empty." +msgstr "Sammlung ist leer." -#: ../../include/widgets.php:404 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:405 ../../mod/connedit.php:498 -msgid "Me" -msgstr "Ich" - -#: ../../include/widgets.php:406 ../../mod/connedit.php:500 -msgid "Best Friends" -msgstr "Beste Freunde" - -#: ../../include/widgets.php:408 -msgid "Co-workers" -msgstr "Kollegen" - -#: ../../include/widgets.php:409 ../../mod/connedit.php:502 -msgid "Former Friends" -msgstr "ehem. Freunde" - -#: ../../include/widgets.php:410 ../../mod/connedit.php:503 -msgid "Acquaintances" -msgstr "Bekannte" - -#: ../../include/widgets.php:411 -msgid "Everybody" -msgstr "Jeder" - -#: ../../include/widgets.php:445 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../include/widgets.php:451 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../include/widgets.php:457 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:463 -msgid "Feature settings" -msgstr "Funktions-Einstellungen" - -#: ../../include/widgets.php:469 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" - -#: ../../include/widgets.php:475 -msgid "Connected apps" -msgstr "Verbundene Apps" - -#: ../../include/widgets.php:481 -msgid "Export channel" -msgstr "Kanal exportieren" - -#: ../../include/widgets.php:487 -msgid "Export content" -msgstr "Kanal-Inhalte exportieren" - -#: ../../include/widgets.php:496 -msgid "Automatic Permissions (Advanced)" -msgstr "Automatische Berechtigungen (Erweitert)" - -#: ../../include/widgets.php:504 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../include/widgets.php:538 ../../mod/mail.php:124 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../include/widgets.php:543 -msgid "Check Mail" -msgstr "E-Mails abrufen" - -#: ../../include/widgets.php:548 ../../include/nav.php:209 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/widgets.php:624 -msgid "Chat Rooms" -msgstr "Chaträume" - -#: ../../include/widgets.php:642 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:660 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Neues Fenster" - -#: ../../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/Contact.php:211 ../../mod/admin.php:649 +#: ../../include/items.php:4424 #, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" +msgid "Collection: %s" +msgstr "Sammlung: %s" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: ../../include/datetime.php:238 -msgid "never" -msgstr "Nie" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../include/datetime.php:247 -msgid "year" -msgstr "Jahr" - -#: ../../include/datetime.php:247 -msgid "years" -msgstr "Jahre" - -#: ../../include/datetime.php:248 -msgid "month" -msgstr "Monat" - -#: ../../include/datetime.php:248 -msgid "months" -msgstr "Monate" - -#: ../../include/datetime.php:249 -msgid "week" -msgstr "Woche" - -#: ../../include/datetime.php:249 -msgid "weeks" -msgstr "Wochen" - -#: ../../include/datetime.php:250 -msgid "day" -msgstr "Tag" - -#: ../../include/datetime.php:250 -msgid "days" -msgstr "Tage" - -#: ../../include/datetime.php:251 -msgid "hour" -msgstr "Stunde" - -#: ../../include/datetime.php:251 -msgid "hours" -msgstr "Stunden" - -#: ../../include/datetime.php:252 -msgid "minute" -msgstr "Minute" - -#: ../../include/datetime.php:252 -msgid "minutes" -msgstr "Minuten" - -#: ../../include/datetime.php:253 -msgid "second" -msgstr "Sekunde" - -#: ../../include/datetime.php:253 -msgid "seconds" -msgstr "Sekunden" - -#: ../../include/datetime.php:262 +#: ../../include/items.php:4435 #, php-format -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" +msgid "Connection: %s" +msgstr "Verbindung: %s" -#: ../../include/datetime.php:467 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:468 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" +#: ../../include/items.php:4438 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." #: ../../include/message.php:18 msgid "No recipient provided." @@ -2890,262 +2565,200 @@ msgstr "Kann Absender nicht bestimmen." msgid "Stored post could not be verified." msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." -#: ../../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" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:98 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:99 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:103 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:105 -msgid "Your photos" -msgstr "Deine Bilder" - -#: ../../include/nav.php:106 -msgid "Your files" -msgstr "Deine Dateien" - -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "Deine Chaträume" - -#: ../../include/nav.php:117 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" - -#: ../../include/nav.php:121 -msgid "Your webpages" -msgstr "Deine Webseiten" - -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:142 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:145 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:159 -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 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "Durchsuche Seiten-Inhalt" - -#: ../../include/nav.php:176 -msgid "Channel Locator" -msgstr "Kanal-Verzeichnis" - -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "Deine Matrix" - -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:193 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Verbindungen" - -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../include/nav.php:204 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:205 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:208 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:212 -msgid "Event Calendar" -msgstr "Veranstaltungskalender" - -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "Alle Ereignisse ansehen" - -#: ../../include/nav.php:214 -msgid "Mark all events seen" -msgstr "Markiere alle Ereignisse als gesehen" - -#: ../../include/nav.php:216 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" - -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:262 -msgid "Please wait..." -msgstr "Bitte warten..." - #: ../../include/network.php:590 msgid "view full size" msgstr "In Vollbildansicht anschauen" -#: ../../include/zot.php:661 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." -#: ../../include/zot.php:677 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "Keine Quelldatei." -#: ../../include/zot.php:1776 +#: ../../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 "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit" +#: ../../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/acl_selectors.php:241 -msgid "Show" -msgstr "Zeigen" +#: ../../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/acl_selectors.php:242 -msgid "Don't show" -msgstr "Nicht zeigen" +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." -#: ../../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/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 -#: ../../mod/photos.php:1141 -msgid "Close" -msgstr "Schließen" +#: ../../include/attach.php:589 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" +#: ../../include/attach.php:605 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" -#: ../../include/photos.php:104 +#: ../../include/attach.php:629 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:680 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:684 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + +#: ../../include/auth.php:116 +msgid "Logged out." +msgstr "Ausgeloggt." + +#: ../../include/auth.php:257 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" + +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Login fehlgeschlagen." + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: ../../include/datetime.php:142 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" + +#: ../../include/datetime.php:248 +msgid "never" +msgstr "Nie" + +#: ../../include/datetime.php:254 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" + +#: ../../include/datetime.php:257 +msgid "year" +msgstr "Jahr" + +#: ../../include/datetime.php:257 +msgid "years" +msgstr "Jahre" + +#: ../../include/datetime.php:258 +msgid "month" +msgstr "Monat" + +#: ../../include/datetime.php:258 +msgid "months" +msgstr "Monate" + +#: ../../include/datetime.php:259 +msgid "week" +msgstr "Woche" + +#: ../../include/datetime.php:259 +msgid "weeks" +msgstr "Wochen" + +#: ../../include/datetime.php:260 +msgid "day" +msgstr "Tag" + +#: ../../include/datetime.php:260 +msgid "days" +msgstr "Tage" + +#: ../../include/datetime.php:261 +msgid "hour" +msgstr "Stunde" + +#: ../../include/datetime.php:261 +msgid "hours" +msgstr "Stunden" + +#: ../../include/datetime.php:262 +msgid "minute" +msgstr "Minute" + +#: ../../include/datetime.php:262 +msgid "minutes" +msgstr "Minuten" + +#: ../../include/datetime.php:263 +msgid "second" +msgstr "Sekunde" + +#: ../../include/datetime.php:263 +msgid "seconds" +msgstr "Sekunden" + +#: ../../include/datetime.php:272 +#, php-format +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" + +#: ../../include/datetime.php:480 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" + +#: ../../include/datetime.php:481 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" + +#: ../../include/photos.php:105 #, 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 +#: ../../include/photos.php:112 msgid "Image file is empty." msgstr "Bilddatei ist leer." -#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 +#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 msgid "Unable to process image" msgstr "Kann Bild nicht verarbeiten" -#: ../../include/photos.php:212 +#: ../../include/photos.php:213 msgid "Photo storage failed." msgstr "Foto speichern schlug fehl" -#: ../../include/photos.php:344 +#: ../../include/photos.php:345 msgid "Upload New Photos" msgstr "Lade neue Fotos hoch" +#: ../../include/security.php:323 +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/js_strings.php:5 msgid "Delete this item?" msgstr "Dieses Element löschen?" #: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 -#: ../../mod/photos.php:988 ../../mod/photos.php:1098 +#: ../../mod/photos.php:995 ../../mod/photos.php:1105 msgid "Comment" msgstr "Kommentar" @@ -3506,16 +3119,407 @@ msgstr "Interessiert mich nicht" msgid "Ask me" msgstr "Frag mich mal" +#: ../../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:753 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d Verbindung" +msgstr[1] "%d Verbindungen" + +#: ../../include/text.php:766 +msgid "View Connections" +msgstr "Verbindungen anzeigen" + +#: ../../include/text.php:905 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:906 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:906 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:907 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:907 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:908 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:908 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:909 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:909 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:910 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:910 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:919 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:920 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:921 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:922 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:923 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:924 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:925 +msgid "stupified" +msgstr "verblüfft" + +#: ../../include/text.php:926 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:927 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:928 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:929 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:930 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:931 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:932 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:933 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:934 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:935 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:936 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:937 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:938 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:939 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1103 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1103 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1103 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1103 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1103 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1103 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1103 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1107 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1107 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1107 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1107 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1107 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1107 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1107 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1107 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1107 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1107 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1107 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1107 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1185 +msgid "unknown.???" +msgstr "unbekannt.???" + +#: ../../include/text.php:1186 +msgid "bytes" +msgstr "Bytes" + +#: ../../include/text.php:1225 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1295 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1360 ../../include/text.php:1372 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" + +#: ../../include/text.php:1527 ../../mod/events.php:409 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../include/text.php:1546 +msgid "Select a page layout: " +msgstr "Ein Seiten-Layout auswählen:" + +#: ../../include/text.php:1549 ../../include/text.php:1614 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1585 +msgid "Page content type: " +msgstr "Content-Typ der Seite:" + +#: ../../include/text.php:1626 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../include/text.php:1760 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2041 +msgid "Design" +msgstr "Design" + +#: ../../include/text.php:2044 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../include/text.php:2045 +msgid "Menus" +msgstr "Menüs" + +#: ../../include/text.php:2046 +msgid "Layouts" +msgstr "Layouts" + +#: ../../include/text.php:2047 +msgid "Pages" +msgstr "Seiten" + +#: ../../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/events.php:585 +#: ../../mod/chat.php:209 ../../mod/photos.php:588 ../../mod/photos.php:950 +#: ../../mod/filestorage.php:137 +msgid "Permissions" +msgstr "Berechtigungen" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 +#: ../../mod/photos.php:1148 +msgid "Close" +msgstr "Schließen" + +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" + +#: ../../include/apps.php:126 +msgid "Site Admin" +msgstr "Hub-Administration" + +#: ../../include/apps.php:128 +msgid "Address Book" +msgstr "Adressbuch" + +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Laune" + +#: ../../include/apps.php:146 +msgid "Probe" +msgstr "Testen" + +#: ../../include/apps.php:147 +msgid "Suggest" +msgstr "Empfehlen" + +#: ../../include/apps.php:148 +msgid "Random Channel" +msgstr "Zufälliger Kanal" + +#: ../../include/apps.php:149 +msgid "Invite" +msgstr "Einladen" + +#: ../../include/apps.php:150 +msgid "Features" +msgstr "Funktionen" + +#: ../../include/apps.php:151 +msgid "Language" +msgstr "Sprache" + +#: ../../include/apps.php:152 +msgid "Post" +msgstr "Beitrag" + +#: ../../include/apps.php:153 +msgid "Profile Photo" +msgstr "Profilfoto" + +#: ../../include/apps.php:242 ../../mod/settings.php:81 +#: ../../mod/settings.php:575 +msgid "Update" +msgstr "Aktualisieren" + +#: ../../include/apps.php:242 +msgid "Install" +msgstr "Installieren" + +#: ../../include/apps.php:247 +msgid "Purchase" +msgstr "Kaufen" + #: ../../include/ItemObject.php:130 msgid "Save to Folder" msgstr "In Ordner speichern" #: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1015 ../../mod/photos.php:1027 +#: ../../mod/photos.php:1022 ../../mod/photos.php:1034 msgid "View all" msgstr "Alles anzeigen" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1024 +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1031 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -3532,7 +3536,7 @@ msgstr "Stern entfernen" #: ../../include/ItemObject.php:181 msgid "Toggle Star Status" -msgstr "Stern-Status umschalten" +msgstr "Markierungsstatus (Stern) umschalten" #: ../../include/ItemObject.php:185 msgid "starred" @@ -3542,11 +3546,11 @@ msgstr "markiert" msgid "Add Tag" msgstr "Tag hinzufügen" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:967 +#: ../../include/ItemObject.php:221 ../../mod/photos.php:974 msgid "I like this (toggle)" msgstr "Mir gefällt das (Umschalter)" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:968 +#: ../../include/ItemObject.php:222 ../../mod/photos.php:975 msgid "I don't like this (toggle)" msgstr "Mir gefällt das nicht (Umschalter)" @@ -3587,12 +3591,12 @@ msgstr "Favoriten speichern" msgid "Add to Calendar" msgstr "Zum Kalender hinzufügen" -#: ../../include/ItemObject.php:299 ../../mod/photos.php:1135 +#: ../../include/ItemObject.php:299 ../../mod/photos.php:1142 msgctxt "noun" msgid "Likes" msgstr "Gefällt mir" -#: ../../include/ItemObject.php:300 ../../mod/photos.php:1136 +#: ../../include/ItemObject.php:300 ../../mod/photos.php:1143 msgctxt "noun" msgid "Dislikes" msgstr "Gefällt nicht" @@ -3604,28 +3608,28 @@ msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: ../../include/ItemObject.php:596 ../../mod/photos.php:986 -#: ../../mod/photos.php:1096 +#: ../../include/ItemObject.php:596 ../../mod/photos.php:993 +#: ../../mod/photos.php:1103 msgid "This is you" msgstr "Das bist Du" #: ../../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 +#: ../../mod/profiles.php:633 ../../mod/connect.php:92 ../../mod/setup.php:313 +#: ../../mod/setup.php:358 ../../mod/poke.php:166 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/events.php:587 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/photos.php:594 ../../mod/photos.php:671 +#: ../../mod/photos.php:956 ../../mod/photos.php:996 ../../mod/photos.php:1106 +#: ../../mod/connedit.php:555 ../../mod/thing.php:284 ../../mod/thing.php:327 +#: ../../mod/pdledit.php:58 ../../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/fsuggest.php:108 +#: ../../mod/filestorage.php:146 ../../mod/group.php:81 +#: ../../mod/import.php:480 ../../mod/admin.php:412 ../../mod/admin.php:723 +#: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 +#: ../../mod/admin.php:1278 ../../mod/invite.php:142 ../../mod/locs.php:99 +#: ../../mod/mail.php:348 ../../mod/xchan.php:11 ../../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 @@ -3668,273 +3672,139 @@ msgstr "Video" msgid "Set your current mood and tell your friends" msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album nicht gefunden." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../mod/photos.php:119 ../../mod/photos.php:662 -msgid "Delete Album" -msgstr "Album löschen" +#: ../../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/photos.php:159 ../../mod/photos.php:950 -msgid "Delete Photo" -msgstr "Foto löschen" +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Sichtbar für" -#: ../../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." +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" +msgstr "Alle Verbindungen" -#: ../../mod/photos.php:461 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" - -#: ../../mod/photos.php:507 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." - -#: ../../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." - -#: ../../mod/photos.php:561 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." - -#: ../../mod/photos.php:583 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: ../../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:" - -#: ../../mod/photos.php:588 -msgid "Do not show a status post for this upload" -msgstr "Keine Statusnachricht für diesen Upload senden" - -#: ../../mod/photos.php:609 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../mod/photos.php:645 ../../mod/photos.php:1159 -#: ../../mod/photos.php:1174 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../mod/photos.php:656 -msgid "New album name: " -msgstr "Name des neuen Albums:" - -#: ../../mod/photos.php:668 -msgid "Show Newest First" -msgstr "Zeige Neueste zuerst" - -#: ../../mod/photos.php:670 -msgid "Show Oldest First" -msgstr "Zeige Älteste zuerst" - -#: ../../mod/photos.php:697 ../../mod/photos.php:1206 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../mod/photos.php:726 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../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" - -#: ../../mod/photos.php:839 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../mod/photos.php:846 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:857 ../../mod/events.php:433 -msgid "Previous" -msgstr "Voriges" - -#: ../../mod/photos.php:861 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../mod/photos.php:866 ../../mod/events.php:434 ../../mod/setup.php:261 -msgid "Next" -msgstr "Nächste" - -#: ../../mod/photos.php:903 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "Entferne" - -#: ../../mod/photos.php:933 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../mod/photos.php:935 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../mod/photos.php:936 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../mod/photos.php:939 -msgid "New album name" -msgstr "Name des neuen Albums:" - -#: ../../mod/photos.php:942 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../mod/photos.php:944 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../mod/photos.php:947 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../mod/photos.php:1125 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../mod/photos.php:1212 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../mod/photos.php:1235 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 +#: ../../mod/mitem.php:24 ../../mod/menu.php:108 msgid "Menu not found." msgstr "Menü nicht gefunden" -#: ../../mod/mitem.php:47 +#: ../../mod/mitem.php:67 msgid "Menu element updated." msgstr "Menü-Element aktualisiert." -#: ../../mod/mitem.php:51 +#: ../../mod/mitem.php:71 msgid "Unable to update menu element." msgstr "Kann Menü-Element nicht aktualisieren." -#: ../../mod/mitem.php:57 +#: ../../mod/mitem.php:77 msgid "Menu element added." msgstr "Menü-Bestandteil hinzugefügt." -#: ../../mod/mitem.php:61 +#: ../../mod/mitem.php:81 msgid "Unable to add menu element." msgstr "Kann Menü-Bestandteil nicht hinzufügen." -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:38 +#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 msgid "Not found." msgstr "Nicht gefunden." -#: ../../mod/mitem.php:96 +#: ../../mod/mitem.php:127 msgid "Manage Menu Elements" msgstr "Menü-Bestandteile verwalten" -#: ../../mod/mitem.php:99 +#: ../../mod/mitem.php:130 msgid "Edit menu" msgstr "Menü bearbeiten" -#: ../../mod/mitem.php:102 +#: ../../mod/mitem.php:133 msgid "Edit element" msgstr "Bestandteil bearbeiten" -#: ../../mod/mitem.php:103 +#: ../../mod/mitem.php:134 msgid "Drop element" msgstr "Bestandteil löschen" -#: ../../mod/mitem.php:104 +#: ../../mod/mitem.php:135 msgid "New element" msgstr "Neues Bestandteil" -#: ../../mod/mitem.php:105 +#: ../../mod/mitem.php:136 msgid "Edit this menu container" msgstr "Diesen Menü-Container bearbeiten" -#: ../../mod/mitem.php:106 +#: ../../mod/mitem.php:137 msgid "Add menu element" msgstr "Menüelement hinzufügen" -#: ../../mod/mitem.php:107 +#: ../../mod/mitem.php:138 msgid "Delete this menu item" msgstr "Lösche dieses Menü-Bestandteil" -#: ../../mod/mitem.php:108 +#: ../../mod/mitem.php:139 msgid "Edit this menu item" msgstr "Bearbeite dieses Menü-Bestandteil" -#: ../../mod/mitem.php:131 +#: ../../mod/mitem.php:158 msgid "New Menu Element" msgstr "Neues Menü-Bestandteil" -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 msgid "Menu Item Permissions" msgstr "Zugriffsrechte des Menü-Elements" -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:974 +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1011 msgid "(click to open/close)" msgstr "(zum öffnen/schließen anklicken)" -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 msgid "Link text" msgstr "Link Text" -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 msgid "URL of link" msgstr "URL des Links" -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" -msgstr "Verwende Red Magic-Auth wenn verfügbar" +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "Verwende die automatische RedMatrix-Authentifizierung (magic-auth), wenn verfügbar" -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 msgid "Open link in new window" msgstr "Öffne Link in neuem Fenster" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 msgid "Order in list" msgstr "Reihenfolge in der Liste" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 msgid "Higher numbers will sink to bottom of listing" msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" -#: ../../mod/mitem.php:154 +#: ../../mod/mitem.php:181 msgid "Menu item not found." msgstr "Menü-Bestandteil nicht gefunden." -#: ../../mod/mitem.php:163 +#: ../../mod/mitem.php:190 msgid "Menu item deleted." msgstr "Menü-Bestandteil gelöscht." -#: ../../mod/mitem.php:165 +#: ../../mod/mitem.php:192 msgid "Menu item could not be deleted." msgstr "Menü-Bestandteil kann nicht gelöscht werden." -#: ../../mod/mitem.php:174 +#: ../../mod/mitem.php:201 msgid "Edit Menu Element" msgstr "Bearbeite Menü-Bestandteil" -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 +#: ../../mod/mitem.php:213 ../../mod/menu.php:130 msgid "Modify" msgstr "Ändern" @@ -3942,531 +3812,321 @@ msgstr "Ändern" msgid "Some blurb about what to do when you're new here" msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" -#: ../../mod/ping.php:237 -msgid "sent you a private message" -msgstr "eine private Nachricht schicken" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 +msgid "Profile not found." +msgstr "Profil nicht gefunden." -#: ../../mod/ping.php:288 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profil gelöscht." -#: ../../mod/ping.php:329 -msgid "posted an event" -msgstr "hat eine Veranstaltung veröffentlicht" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/acl.php:244 -msgid "network" -msgstr "Netzwerk" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Neues Profil erstellt." -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Name ist erforderlich" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profil kann nicht geklont werden." -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Schlüssel und Geheimnis werden benötigt" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Dieses Profil kann nicht exportiert werden." -#: ../../mod/settings.php:197 -msgid "Passwords do not match. Password unchanged." -msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "Profil-Name erforderlich." -#: ../../mod/settings.php:201 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." +#: ../../mod/profiles.php:378 +msgid "Marital Status" +msgstr "Familienstand" -#: ../../mod/settings.php:215 -msgid "Password changed." -msgstr "Kennwort geändert." +#: ../../mod/profiles.php:382 +msgid "Romantic Partner" +msgstr "Romantische Partner" -#: ../../mod/settings.php:217 -msgid "Password update failed. Please try again." -msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." +#: ../../mod/profiles.php:386 +msgid "Likes" +msgstr "Gefällt" -#: ../../mod/settings.php:231 -msgid "Not valid email." -msgstr "Keine gültige E-Mail Adresse." +#: ../../mod/profiles.php:390 +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../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/profiles.php:394 +msgid "Work/Employment" +msgstr "Arbeit/Anstellung" -#: ../../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/profiles.php:397 +msgid "Religion" +msgstr "Religion" -#: ../../mod/settings.php:448 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." +#: ../../mod/profiles.php:401 +msgid "Political Views" +msgstr "Politische Ansichten" -#: ../../mod/settings.php:517 ../../mod/settings.php:543 -#: ../../mod/settings.php:579 -msgid "Add application" -msgstr "Anwendung hinzufügen" +#: ../../mod/profiles.php:405 +msgid "Gender" +msgstr "Geschlecht" -#: ../../mod/settings.php:520 -msgid "Name of application" -msgstr "Name der Anwendung" +#: ../../mod/profiles.php:409 +msgid "Sexual Preference" +msgstr "Sexuelle Orientierung" -#: ../../mod/settings.php:521 ../../mod/settings.php:547 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../mod/profiles.php:413 +msgid "Homepage" +msgstr "Webseite" -#: ../../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/profiles.php:417 +msgid "Interests" +msgstr "Hobbys/Interessen" -#: ../../mod/settings.php:522 ../../mod/settings.php:548 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../mod/profiles.php:421 ../../mod/admin.php:866 +msgid "Address" +msgstr "Adresse" -#: ../../mod/settings.php:523 ../../mod/settings.php:549 -msgid "Redirect" -msgstr "Umleitung" +#: ../../mod/profiles.php:428 ../../mod/pubsites.php:25 +msgid "Location" +msgstr "Ort" -#: ../../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/profiles.php:511 +msgid "Profile updated." +msgstr "Profil aktualisiert." -#: ../../mod/settings.php:524 ../../mod/settings.php:550 -msgid "Icon url" -msgstr "Symbol-URL" +#: ../../mod/profiles.php:590 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" -#: ../../mod/settings.php:524 -msgid "Optional" -msgstr "Optional" - -#: ../../mod/settings.php:535 -msgid "You can't edit this application." -msgstr "Diese Anwendung kann nicht bearbeitet werden." - -#: ../../mod/settings.php:578 -msgid "Connected Apps" -msgstr "Verbundene Apps" - -#: ../../mod/settings.php:582 -msgid "Client key starts with" -msgstr "Client Key beginnt mit" - -#: ../../mod/settings.php:583 -msgid "No name" -msgstr "Kein Name" - -#: ../../mod/settings.php:584 -msgid "Remove authorization" -msgstr "Authorisierung aufheben" - -#: ../../mod/settings.php:595 -msgid "No feature settings configured" -msgstr "Keine Funktions-Einstellungen konfiguriert" - -#: ../../mod/settings.php:603 -msgid "Feature Settings" -msgstr "Funktions-Einstellungen" - -#: ../../mod/settings.php:626 -msgid "Account Settings" -msgstr "Konto-Einstellungen" - -#: ../../mod/settings.php:627 -msgid "Password Settings" -msgstr "Kennwort-Einstellungen" - -#: ../../mod/settings.php:628 -msgid "New Password:" -msgstr "Neues Passwort:" - -#: ../../mod/settings.php:629 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: ../../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:631 ../../mod/settings.php:948 -msgid "Email Address:" -msgstr "Email Adresse:" - -#: ../../mod/settings.php:632 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Konto entfernen" - -#: ../../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: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:650 -msgid "Off" -msgstr "Aus" - -#: ../../mod/settings.php:650 -msgid "On" -msgstr "An" - -#: ../../mod/settings.php:657 -msgid "Additional Features" -msgstr "Zusätzliche Funktionen" - -#: ../../mod/settings.php:682 -msgid "Connector Settings" -msgstr "Connector-Einstellungen" - -#: ../../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:721 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s – (experimentell)" - -#: ../../mod/settings.php:757 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: ../../mod/settings.php:763 -msgid "Display Theme:" -msgstr "Anzeige-Theme:" - -#: ../../mod/settings.php:764 -msgid "Mobile Theme:" -msgstr "Mobile Theme:" - -#: ../../mod/settings.php:765 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom auf Mobilgeräten aktivieren" - -#: ../../mod/settings.php:766 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: ../../mod/settings.php:766 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 Sekunden, kein Maximum" - -#: ../../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:767 -msgid "Maximum of 100 items" -msgstr "Maximum: 100 Beiträge" - -#: ../../mod/settings.php:768 -msgid "Don't show emoticons" -msgstr "Emoticons nicht zeigen" - -#: ../../mod/settings.php:769 -msgid "Link post titles to source" -msgstr "Beitragstitel zum Originalbeitrag verlinken" - -#: ../../mod/settings.php:770 -msgid "System Page Layout Editor - (advanced)" -msgstr "System-Seitenlayout-Editor (für Experten)" - -#: ../../mod/settings.php:804 -msgid "Nobody except yourself" -msgstr "Niemand außer Dir selbst" - -#: ../../mod/settings.php:805 -msgid "Only those you specifically allow" -msgstr "Nur die, denen Du es explizit erlaubst" - -#: ../../mod/settings.php:806 -msgid "Approved connections" -msgstr "Angenommene Verbindungen" - -#: ../../mod/settings.php:807 -msgid "Any connections" -msgstr "Beliebige Verbindungen" - -#: ../../mod/settings.php:808 -msgid "Anybody on this website" -msgstr "Jeder auf dieser Website" - -#: ../../mod/settings.php:809 -msgid "Anybody in this network" -msgstr "Alle Red-Nutzer" - -#: ../../mod/settings.php:810 -msgid "Anybody authenticated" -msgstr "Jeder authentifizierte" - -#: ../../mod/settings.php:811 -msgid "Anybody on the internet" -msgstr "Jeder im Internet" - -#: ../../mod/settings.php:885 -msgid "Publish your default profile in the network directory" -msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" - -#: ../../mod/settings.php:885 ../../mod/settings.php:890 -#: ../../mod/settings.php:967 ../../mod/api.php:106 ../../mod/profiles.php:574 +#: ../../mod/profiles.php:591 ../../mod/api.php:105 ../../mod/settings.php:916 +#: ../../mod/settings.php:921 ../../mod/settings.php:1004 #: ../../mod/admin.php:392 -msgid "No" -msgstr "Nein" - -#: ../../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/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/profiles.php:592 ../../mod/api.php:106 ../../mod/settings.php:916 +#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/admin.php:390 +msgid "No" +msgstr "Nein" -#: ../../mod/settings.php:894 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "oder" +#: ../../mod/profiles.php:632 +msgid "Edit Profile Details" +msgstr "Bearbeite Profil-Details" -#: ../../mod/settings.php:899 -msgid "Your channel address is" -msgstr "Deine Kanal-Adresse lautet" +#: ../../mod/profiles.php:634 +msgid "View this profile" +msgstr "Dieses Profil ansehen" -#: ../../mod/settings.php:937 -msgid "Channel Settings" -msgstr "Kanal-Einstellungen" +#: ../../mod/profiles.php:636 +msgid "Change Profile Photo" +msgstr "Profilfoto ändern" -#: ../../mod/settings.php:946 -msgid "Basic Settings" -msgstr "Grundeinstellungen" +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" -#: ../../mod/settings.php:949 -msgid "Your Timezone:" -msgstr "Ihre Zeitzone:" +#: ../../mod/profiles.php:638 +msgid "Clone this profile" +msgstr "Dieses Profil klonen" -#: ../../mod/settings.php:950 -msgid "Default Post Location:" -msgstr "Standardstandort:" +#: ../../mod/profiles.php:639 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" -#: ../../mod/settings.php:950 -msgid "Geographical location to display on your posts" -msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" +#: ../../mod/profiles.php:641 +msgid "Import profile from file" +msgstr "Profil aus einer Datei importieren" -#: ../../mod/settings.php:951 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" +#: ../../mod/profiles.php:642 +msgid "Export profile to file" +msgstr "Profil in eine Datei exportieren" -#: ../../mod/settings.php:953 -msgid "Adult Content" -msgstr "Nicht jugendfreie Inhalte" +#: ../../mod/profiles.php:643 +msgid "Profile Name:" +msgstr "Profilname:" -#: ../../mod/settings.php:953 +#: ../../mod/profiles.php:644 +msgid "Your Full Name:" +msgstr "Dein voller Name:" + +#: ../../mod/profiles.php:645 +msgid "Title/Description:" +msgstr "Titel/Stellenbeschreibung:" + +#: ../../mod/profiles.php:646 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" + +#: ../../mod/profiles.php:647 +msgid "Birthday :" +msgstr "Geburtstag:" + +#: ../../mod/profiles.php:648 +msgid "Street Address:" +msgstr "Straße und Hausnummer:" + +#: ../../mod/profiles.php:649 +msgid "Locality/City:" +msgstr "Wohnort:" + +#: ../../mod/profiles.php:650 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" + +#: ../../mod/profiles.php:651 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:652 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" + +#: ../../mod/profiles.php:653 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" + +#: ../../mod/profiles.php:654 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" + +#: ../../mod/profiles.php:655 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:656 +msgid "Since [date]:" +msgstr "Seit [Datum]:" + +#: ../../mod/profiles.php:658 +msgid "Homepage URL:" +msgstr "Homepage URL:" + +#: ../../mod/profiles.php:661 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" + +#: ../../mod/profiles.php:662 +msgid "Keywords:" +msgstr "Schlüsselwörter:" + +#: ../../mod/profiles.php:665 +msgid "Example: fishing photography software" +msgstr "Beispiel: Angeln Fotografie Software" + +#: ../../mod/profiles.php:666 +msgid "Used in directory listings" +msgstr "Wird in Verzeichnis-Auflistungen verwendet" + +#: ../../mod/profiles.php:667 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein wenig von Dir …" + +#: ../../mod/profiles.php:668 +msgid "Hobbies/Interests" +msgstr "Hobbys/Interessen" + +#: ../../mod/profiles.php:669 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformation und soziale Netzwerke" + +#: ../../mod/profiles.php:670 +msgid "My other channels" +msgstr "Meine anderen Kanäle" + +#: ../../mod/profiles.php:671 +msgid "Musical interests" +msgstr "Musikalische Interessen" + +#: ../../mod/profiles.php:672 +msgid "Books, literature" +msgstr "Bücher, Literatur" + +#: ../../mod/profiles.php:673 +msgid "Television" +msgstr "Fernsehen" + +#: ../../mod/profiles.php:674 +msgid "Film/dance/culture/entertainment" +msgstr "Film/Tanz/Kultur/Unterhaltung" + +#: ../../mod/profiles.php:675 +msgid "Love/romance" +msgstr "Liebe/Romantik" + +#: ../../mod/profiles.php:676 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" + +#: ../../mod/profiles.php:677 +msgid "School/education" +msgstr "Schule/Ausbildung" + +#: ../../mod/profiles.php:683 +msgid "This is your default profile." +msgstr "Das ist Dein Standardprofil." + +#: ../../mod/profiles.php:694 ../../mod/directory.php:148 +msgid "Age: " +msgstr "Alter:" + +#: ../../mod/profiles.php:737 +msgid "Edit/Manage Profiles" +msgstr "Profile bearbeiten/verwalten" + +#: ../../mod/profiles.php:738 +msgid "Add profile things" +msgstr "Sachen zum Profil hinzufügen" + +#: ../../mod/profiles.php:739 +msgid "Include desirable objects in your profile" +msgstr "Binde begehrenswerte Dinge in Dein Profil ein" + +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "Fortfahren" + +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" + +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" + +#: ../../mod/connect.php:87 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)" +"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/settings.php:955 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Datenschutz-Einstellungen" - -#: ../../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/settings.php:959 -msgid "Hide my online presence" -msgstr "Meine Online-Präsenz verbergen" - -#: ../../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/settings.php:961 -msgid "Simple Privacy Settings:" -msgstr "Einfache Privatsphäre-Einstellungen" - -#: ../../mod/settings.php:962 +#: ../../mod/connect.php:89 ../../mod/connect.php:109 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" +"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/settings.php:963 +#: ../../mod/connect.php:90 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)" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" -#: ../../mod/settings.php:964 -msgid "Private - default private, never open or public" -msgstr "Private – Standard privat, nie offen oder öffentlich" - -#: ../../mod/settings.php:965 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockiert – Alle standardmäßig blockiert" - -#: ../../mod/settings.php:967 -msgid "Allow others to tag your posts" -msgstr "Erlaube anderen, Deine Beiträge zu taggen" - -#: ../../mod/settings.php:967 +#: ../../mod/connect.php:91 ../../mod/connect.php:112 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" +"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 auf dieser Seite." -#: ../../mod/settings.php:969 -msgid "Advanced Privacy Settings" -msgstr "Fortgeschrittene Privatsphäre-Einstellungen" +#: ../../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/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/settings.php:971 -msgid "0 or blank prevents expiration" -msgstr "0 oder kein Inhalt verhindern das Verfallen" - -#: ../../mod/settings.php:972 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Kontaktanfragen pro Tag:" - -#: ../../mod/settings.php:972 -msgid "May reduce spam activity" -msgstr "Kann die Spam-Aktivität verringern" - -#: ../../mod/settings.php:973 -msgid "Default Post Permissions" -msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" - -#: ../../mod/settings.php:978 -msgid "Channel permissions category:" -msgstr "Zugriffsrechte-Kategorie des Kanals:" - -#: ../../mod/settings.php:986 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" - -#: ../../mod/settings.php:986 -msgid "Useful to reduce spamming" -msgstr "Nützlich, um Spam zu verringern" - -#: ../../mod/settings.php:989 -msgid "Notification Settings" -msgstr "Benachrichtigungs-Einstellungen" - -#: ../../mod/settings.php:990 -msgid "By default post a status message when:" -msgstr "Sende standardmäßig Status-Nachrichten, wenn:" - -#: ../../mod/settings.php:991 -msgid "accepting a friend request" -msgstr "Du eine Kontaktanfrage annimmst" - -#: ../../mod/settings.php:992 -msgid "joining a forum/community" -msgstr "Du einem Forum beitrittst" - -#: ../../mod/settings.php:993 -msgid "making an interesting profile change" -msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" - -#: ../../mod/settings.php:994 -msgid "Send a notification email when:" -msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" - -#: ../../mod/settings.php:995 -msgid "You receive a connection request" -msgstr "Du eine Verbindungsanfrage erhältst" - -#: ../../mod/settings.php:996 -msgid "Your connections are confirmed" -msgstr "Eine Verbindung bestätigt wurde" - -#: ../../mod/settings.php:997 -msgid "Someone writes on your profile wall" -msgstr "Jemand auf Deine Pinnwand schreibt" - -#: ../../mod/settings.php:998 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" - -#: ../../mod/settings.php:999 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" - -#: ../../mod/settings.php:1000 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" - -#: ../../mod/settings.php:1001 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" - -#: ../../mod/settings.php:1002 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" - -#: ../../mod/settings.php:1005 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" - -#: ../../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/settings.php:1009 -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:1010 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" - -#: ../../mod/settings.php:1012 -msgid "Personal menu to display in your channel pages" -msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" - -#: ../../mod/settings.php:1013 -msgid "Remove this channel" -msgstr "Diesen Kanal löschen" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../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/poke.php:165 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" - -#: ../../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/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/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" #: ../../mod/post.php:229 msgid "" @@ -4479,27 +4139,394 @@ msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angeme 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/setup.php:166 +msgid "Red Matrix Server - Setup" +msgstr "Red Matrix Server - Installation" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#: ../../mod/setup.php:172 +msgid "Could not connect to database." +msgstr "Kann nicht mit der Datenbank verbinden." + +#: ../../mod/setup.php:176 +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:183 +msgid "Could not create table." +msgstr "Kann Tabelle nicht erstellen." + +#: ../../mod/setup.php:189 +msgid "Your site database has been installed." +msgstr "Die Datenbank Deines Hubs wurde installiert." + +#: ../../mod/setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." + +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Lies die Datei \"install/INSTALL.txt\"." + +#: ../../mod/setup.php:261 +msgid "System check" +msgstr "Systemprüfung" + +#: ../../mod/setup.php:265 ../../mod/events.php:434 ../../mod/photos.php:868 +msgid "Next" +msgstr "Nächste" + +#: ../../mod/setup.php:266 +msgid "Check again" +msgstr "Bitte nochmal prüfen" + +#: ../../mod/setup.php:289 +msgid "Database connection" +msgstr "Datenbank Verbindung" + +#: ../../mod/setup.php:290 +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:291 +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:292 +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:296 +msgid "Database Server Name" +msgstr "Datenbank-Servername" + +#: ../../mod/setup.php:296 +msgid "Default is localhost" +msgstr "Standard ist localhost" + +#: ../../mod/setup.php:297 +msgid "Database Port" +msgstr "Datenbank-Port" + +#: ../../mod/setup.php:297 +msgid "Communication port number - use 0 for default" +msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" + +#: ../../mod/setup.php:298 +msgid "Database Login Name" +msgstr "Datenbank-Benutzername" + +#: ../../mod/setup.php:299 +msgid "Database Login Password" +msgstr "Datenbank-Kennwort" + +#: ../../mod/setup.php:300 +msgid "Database Name" +msgstr "Datenbank-Name" + +#: ../../mod/setup.php:301 +msgid "Database Type" +msgstr "Datenbanktyp" + +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "Site administrator email address" +msgstr "E-Mail Adresse des Seiten-Administrators" + +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." + +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Website URL" +msgstr "Server-URL" + +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Please use SSL (https) URL if available." +msgstr "Nutze wenn möglich eine SSL-URL (https)." + +#: ../../mod/setup.php:307 ../../mod/setup.php:352 +msgid "Please select a default timezone for your website" +msgstr "Standard-Zeitzone für Deinen Server" + +#: ../../mod/setup.php:335 +msgid "Site settings" +msgstr "Seiteneinstellungen" + +#: ../../mod/setup.php:395 +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:396 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." + +#: ../../mod/setup.php:400 +msgid "PHP executable path" +msgstr "PHP Pfad zu ausführbarer Datei" + +#: ../../mod/setup.php:400 +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:405 +msgid "Command line PHP" +msgstr "PHP Befehlszeile" + +#: ../../mod/setup.php:414 +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:415 +msgid "This is required for message delivery to work." +msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." + +#: ../../mod/setup.php:417 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/setup.php:438 +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:439 +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:441 +msgid "Generate encryption keys" +msgstr "Verschlüsselungsschlüssel generieren" + +#: ../../mod/setup.php:448 +msgid "libCurl PHP module" +msgstr "libCurl-PHP-Modul" + +#: ../../mod/setup.php:449 +msgid "GD graphics PHP module" +msgstr "GD-Grafik-PHP-Modul" + +#: ../../mod/setup.php:450 +msgid "OpenSSL PHP module" +msgstr "OpenSSL-PHP-Modul" + +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" +msgstr "mysqli oder postgres PHP-Modul" + +#: ../../mod/setup.php:452 +msgid "mb_string PHP module" +msgstr "mb_string-PHP-Modul" + +#: ../../mod/setup.php:453 +msgid "mcrypt PHP module" +msgstr "mcrypt-PHP-Modul" + +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" +msgstr "Apache-mod_rewrite-Modul" + +#: ../../mod/setup.php:458 +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:464 ../../mod/setup.php:467 +msgid "proc_open" +msgstr "proc_open" + +#: ../../mod/setup.php:464 +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:472 +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:476 +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:480 +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:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." + +#: ../../mod/setup.php:488 +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:492 +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:508 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "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:509 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." + +#: ../../mod/setup.php:510 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "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:511 +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:514 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php ist beschreibbar" + +#: ../../mod/setup.php:524 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." + +#: ../../mod/setup.php:525 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" +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/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ungültiges Element." +#: ../../mod/setup.php:526 ../../mod/setup.php:544 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." +#: ../../mod/setup.php:527 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr " Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht in der restlichen Red-Installation." -#: ../../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/setup.php:530 +#, php-format +msgid "%s is writable" +msgstr "%s ist beschreibbar" + +#: ../../mod/setup.php:543 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "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:547 +msgid "store is writable" +msgstr "store ist schreibbar" + +#: ../../mod/setup.php:577 +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:578 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "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:579 +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:580 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikaten 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:581 +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:582 +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:584 +msgid "SSL certificate validation" +msgstr "SSL Zertifikatverifizierung" + +#: ../../mod/setup.php:590 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" + +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" +msgstr "Url rewrite funktioniert" + +#: ../../mod/setup.php:602 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "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:626 +msgid "Errors encountered creating database tables." +msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." + +#: ../../mod/setup.php:661 +msgid "

    What next

    " +msgstr "

    Was als Nächstes

    " + +#: ../../mod/setup.php:662 +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/siteinfo.php:90 #, php-format @@ -4548,291 +4575,260 @@ msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" msgid "Site Administrators" msgstr "Administratoren" -#: ../../mod/blocks.php:62 +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Empfänger" + +#: ../../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/poke.php:165 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" + +#: ../../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/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/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/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: ../../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 "Externe Inhaltsquellen für Deinen Kanal 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:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "Name des Kanals" + +#: ../../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/sources.php:131 +msgid "Delete Source" +msgstr "Quelle löschen" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Quelle gelöscht" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." + +#: ../../mod/blocks.php:99 msgid "Block Name" msgstr "Block-Name" -#: ../../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/search.php:13 ../../mod/directory.php:15 ../../mod/photos.php:458 +#: ../../mod/display.php:9 ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Öffentlicher Zugang verweigert." -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil gelöscht." +#: ../../mod/directory.php:161 +msgid "Gender: " +msgstr "Geschlecht:" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" +#: ../../mod/directory.php:163 +msgid "Status: " +msgstr "Status:" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Neues Profil erstellt." +#: ../../mod/directory.php:165 +msgid "Homepage: " +msgstr "Webseite:" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profil kann nicht geklont werden." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Dieses Profil kann nicht exportiert werden." - -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "Profil-Name erforderlich." - -#: ../../mod/profiles.php:362 -msgid "Marital Status" -msgstr "Familienstand" - -#: ../../mod/profiles.php:366 -msgid "Romantic Partner" -msgstr "Romantische Partner" - -#: ../../mod/profiles.php:370 -msgid "Likes" -msgstr "Gefällt" - -#: ../../mod/profiles.php:374 -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../mod/profiles.php:378 -msgid "Work/Employment" -msgstr "Arbeit/Anstellung" - -#: ../../mod/profiles.php:381 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:385 -msgid "Political Views" -msgstr "Politische Ansichten" - -#: ../../mod/profiles.php:389 -msgid "Gender" -msgstr "Geschlecht" - -#: ../../mod/profiles.php:393 -msgid "Sexual Preference" -msgstr "Sexuelle Orientierung" - -#: ../../mod/profiles.php:397 -msgid "Homepage" -msgstr "Webseite" - -#: ../../mod/profiles.php:401 -msgid "Interests" -msgstr "Hobbys/Interessen" - -#: ../../mod/profiles.php:405 ../../mod/admin.php:868 -msgid "Address" -msgstr "Adresse" - -#: ../../mod/profiles.php:412 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Ort" - -#: ../../mod/profiles.php:495 -msgid "Profile updated." -msgstr "Profil aktualisiert." - -#: ../../mod/profiles.php:572 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" - -#: ../../mod/profiles.php:614 -msgid "Edit Profile Details" -msgstr "Bearbeite Profil-Details" - -#: ../../mod/profiles.php:616 -msgid "View this profile" -msgstr "Dieses Profil ansehen" - -#: ../../mod/profiles.php:618 -msgid "Change Profile Photo" -msgstr "Profilfoto ändern" - -#: ../../mod/profiles.php:619 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" - -#: ../../mod/profiles.php:620 -msgid "Clone this profile" -msgstr "Dieses Profil klonen" - -#: ../../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/profiles.php:627 -msgid "Title/Description:" -msgstr "Titel/Stellenbeschreibung:" - -#: ../../mod/profiles.php:628 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" - -#: ../../mod/profiles.php:629 -msgid "Birthday :" -msgstr "Geburtstag:" - -#: ../../mod/profiles.php:630 -msgid "Street Address:" -msgstr "Straße und Hausnummer:" - -#: ../../mod/profiles.php:631 -msgid "Locality/City:" +#: ../../mod/directory.php:168 +msgid "Hometown: " msgstr "Wohnort:" -#: ../../mod/profiles.php:632 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" +#: ../../mod/directory.php:170 +msgid "About: " +msgstr "Über:" -#: ../../mod/profiles.php:633 -msgid "Country:" -msgstr "Land:" +#: ../../mod/directory.php:225 +msgid "Public Forum:" +msgstr "Öffentliches Forum:" -#: ../../mod/profiles.php:634 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" - -#: ../../mod/profiles.php:635 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" - -#: ../../mod/profiles.php:636 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" - -#: ../../mod/profiles.php:637 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:638 -msgid "Since [date]:" -msgstr "Seit [Datum]:" - -#: ../../mod/profiles.php:640 -msgid "Homepage URL:" -msgstr "Homepage URL:" - -#: ../../mod/profiles.php:643 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" - -#: ../../mod/profiles.php:644 -msgid "Keywords:" +#: ../../mod/directory.php:228 +msgid "Keywords: " msgstr "Schlüsselwörter:" -#: ../../mod/profiles.php:647 -msgid "Example: fishing photography software" -msgstr "Beispiel: Angeln Fotografie Software" +#: ../../mod/directory.php:268 +msgid "Finding:" +msgstr "Ergebnisse:" -#: ../../mod/profiles.php:648 -msgid "Used in directory listings" -msgstr "Wird in Verzeichnis-Auflistungen verwendet" +#: ../../mod/directory.php:273 +msgid "next page" +msgstr "nächste Seite" -#: ../../mod/profiles.php:649 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein wenig von Dir …" +#: ../../mod/directory.php:273 +msgid "previous page" +msgstr "vorherige Seite" -#: ../../mod/profiles.php:650 -msgid "Hobbies/Interests" -msgstr "Hobbys/Interessen" +#: ../../mod/directory.php:290 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." -#: ../../mod/profiles.php:651 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformation und soziale Netzwerke" +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." -#: ../../mod/profiles.php:652 -msgid "My other channels" -msgstr "Meine anderen Kanäle" +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." -#: ../../mod/profiles.php:653 -msgid "Musical interests" -msgstr "Musikalische Interessen" +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." -#: ../../mod/profiles.php:654 -msgid "Books, literature" -msgstr "Bücher, Literatur" +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." -#: ../../mod/profiles.php:655 -msgid "Television" -msgstr "Fernsehen" +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../mod/profiles.php:656 -msgid "Film/dance/culture/entertainment" -msgstr "Film/Tanz/Kultur/Unterhaltung" +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: ../../mod/profiles.php:657 -msgid "Love/romance" -msgstr "Liebe/Romantik" +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" -#: ../../mod/profiles.php:658 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registrierung auf einem anderen, angeschlossenen Server" -#: ../../mod/profiles.php:659 -msgid "School/education" -msgstr "Schule/Ausbildung" +#: ../../mod/register.php:174 +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/profiles.php:665 -msgid "This is your default profile." -msgstr "Das ist Dein Standardprofil" +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" -#: ../../mod/profiles.php:676 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "Alter:" +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" -#: ../../mod/profiles.php:719 -msgid "Edit/Manage Profiles" -msgstr "Profile bearbeiten/verwalten" +#: ../../mod/register.php:193 +#, 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/profiles.php:720 -msgid "Add profile things" -msgstr "Sachen zum Profil hinzufügen" +#: ../../mod/register.php:207 ../../mod/admin.php:413 +msgid "Registration" +msgstr "Registrierung" -#: ../../mod/profiles.php:721 -msgid "Include desirable objects in your profile" -msgstr "Binde begehrenswerte Dinge in Dein Profil ein" +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" -#: ../../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/register.php:217 +msgid "Choose a password" +msgstr "Passwort" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "Alle Verbindungen" +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" #: ../../mod/events.php:81 msgid "Event can not end before it has started." @@ -4840,7 +4836,7 @@ msgstr "Termin-Ende liegt vor dem Beginn." #: ../../mod/events.php:86 msgid "Event title and start time are required." -msgstr "Veranstaltungs- Titel und Startzeit sind erforderlich." +msgstr "Titel und Startzeit des Termins sind erforderlich." #: ../../mod/events.php:100 msgid "Event not found." @@ -4852,15 +4848,19 @@ msgstr "l, j. F" #: ../../mod/events.php:386 msgid "Edit event" -msgstr "Veranstaltung bearbeiten" +msgstr "Termin bearbeiten" #: ../../mod/events.php:432 msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" +msgstr "Neuen Termin erstellen" + +#: ../../mod/events.php:433 ../../mod/photos.php:859 +msgid "Previous" +msgstr "Voriges" #: ../../mod/events.php:560 msgid "Event details" -msgstr "Veranstaltungs-Details" +msgstr "Termin-Details" #: ../../mod/events.php:561 msgid "Starting date and Title are required." @@ -4868,7 +4868,7 @@ msgstr "Startdatum und Titel sind erforderlich." #: ../../mod/events.php:565 msgid "Event Starts:" -msgstr "Veranstaltung startet:" +msgstr "Termin beginnt:" #: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 #: ../../mod/appman.php:92 @@ -4881,7 +4881,7 @@ msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" #: ../../mod/events.php:573 msgid "Event Finishes:" -msgstr "Veranstaltung endet:" +msgstr "Termin endet:" #: ../../mod/events.php:575 msgid "Adjust for viewer timezone" @@ -4897,7 +4897,7 @@ msgstr "Titel:" #: ../../mod/events.php:583 msgid "Share this event" -msgstr "Die Veranstaltung teilen" +msgstr "Den Termin teilen" #: ../../mod/pubsites.php:16 msgid "Public Sites" @@ -4989,84 +4989,10 @@ msgstr "Name des Chatraums" msgid "%1$s's Chatrooms" msgstr "%1$ss Chaträume" -#: ../../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/register.php:48 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." - -#: ../../mod/register.php:82 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." - -#: ../../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/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/register.php:124 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: ../../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/register.php:162 -msgid "Register at another affiliated site/hub" -msgstr "Registrierung auf einem anderen, angeschlossenen Server" - -#: ../../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/register.php:187 +#: ../../mod/subthread.php:103 #, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" - -#: ../../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/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." - -#: ../../mod/register.php:209 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" - -#: ../../mod/register.php:212 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" - -#: ../../mod/register.php:213 -msgid "Choose a password" -msgstr "Passwort" - -#: ../../mod/register.php:214 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt nun %2$ss %3$s" #: ../../mod/chatsvc.php:111 msgid "Away" @@ -5080,6 +5006,30 @@ msgstr "Online" msgid "Please login." msgstr "Bitte melde dich an." +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Sammlung nicht gefunden" + +#: ../../mod/network.php:118 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" + +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "Sammlung ist leer" + +#: ../../mod/network.php:180 +msgid "Collection: " +msgstr "Sammlung:" + +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "Verbindung:" + +#: ../../mod/network.php:196 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." + #: ../../mod/removeme.php:29 msgid "" "Channel removals are not allowed within 48 hours of changing the account " @@ -5094,7 +5044,7 @@ msgstr "Diesen Kanal löschen" 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." +msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet, kann dieser Prozess nicht wieder rückgängig gemacht werden." #: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 msgid "Please enter your password for verification:" @@ -5152,86 +5102,162 @@ msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" msgid "Authenticate" msgstr "Authentifizieren" -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Fortfahren" +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "– auswählen –" -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "Album nicht gefunden." -#: ../../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:119 ../../mod/photos.php:672 +msgid "Delete Album" +msgstr "Album löschen" -#: ../../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:159 ../../mod/photos.php:957 +msgid "Delete Photo" +msgstr "Foto löschen" -#: ../../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:469 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" -#: ../../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:513 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." -#: ../../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:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Sammlung nicht gefunden" +#: ../../mod/photos.php:579 +msgid "Upload Photos" +msgstr "Fotos hochladen" -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "Sammlung ist leer" +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "Sammlung:" +#: ../../mod/photos.php:585 +msgid "Do not show a status post for this upload" +msgstr "Keine Statusnachricht für diesen Upload senden" -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "Verbindung:" +#: ../../mod/photos.php:613 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." +#: ../../mod/photos.php:654 ../../mod/photos.php:1166 +#: ../../mod/photos.php:1182 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" + +#: ../../mod/photos.php:678 +msgid "Show Newest First" +msgstr "Zeige Neueste zuerst" + +#: ../../mod/photos.php:680 +msgid "Show Oldest First" +msgstr "Zeige Älteste zuerst" + +#: ../../mod/photos.php:707 ../../mod/photos.php:1214 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../mod/photos.php:736 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../mod/photos.php:781 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." + +#: ../../mod/photos.php:783 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../mod/photos.php:841 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../mod/photos.php:848 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:863 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../mod/photos.php:905 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Entferne" + +#: ../../mod/photos.php:937 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../mod/photos.php:939 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../mod/photos.php:940 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" + +#: ../../mod/photos.php:947 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../mod/photos.php:949 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../mod/photos.php:953 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../mod/photos.php:955 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" + +#: ../../mod/photos.php:1132 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../mod/photos.php:1220 +msgid "View Album" +msgstr "Album ansehen" + +#: ../../mod/photos.php:1243 +msgid "Recent Photos" +msgstr "Neueste Fotos" #: ../../mod/connections.php:37 ../../mod/connedit.php:64 msgid "Could not access contact record." msgstr "Konnte nicht auf den Kontakteintrag zugreifen." -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 +#: ../../mod/connections.php:51 ../../mod/connedit.php:86 msgid "Could not locate selected profile." msgstr "Gewähltes Profil nicht gefunden." -#: ../../mod/connections.php:94 ../../mod/connedit.php:132 +#: ../../mod/connections.php:94 ../../mod/connedit.php:140 msgid "Connection updated." msgstr "Verbindung aktualisiert." -#: ../../mod/connections.php:96 ../../mod/connedit.php:134 +#: ../../mod/connections.php:96 ../../mod/connedit.php:142 msgid "Failed to update connection record." msgstr "Konnte den Verbindungseintrag nicht aktualisieren." @@ -5312,377 +5338,478 @@ msgstr "Verbindungen durchsuchen" msgid "Finding: " msgstr "Ergebnisse:" +#: ../../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/rpost.php:97 ../../mod/editpost.php:42 msgid "Edit post" msgstr "Bearbeite Beitrag" -#: ../../mod/connedit.php:181 +#: ../../mod/connedit.php:189 msgid "is now connected to" msgstr "ist jetzt verbunden mit" -#: ../../mod/connedit.php:302 +#: ../../mod/connedit.php:310 msgid "Could not access address book record." msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../mod/connedit.php:316 +#: ../../mod/connedit.php:324 msgid "Refresh failed - channel is currently unavailable." msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../mod/connedit.php:323 +#: ../../mod/connedit.php:331 msgid "Channel has been unblocked" msgstr "Kanal nicht mehr blockiert" -#: ../../mod/connedit.php:324 +#: ../../mod/connedit.php:332 msgid "Channel has been blocked" msgstr "Kanal blockiert" -#: ../../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 "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../mod/connedit.php:335 +#: ../../mod/connedit.php:343 msgid "Channel has been unignored" msgstr "Kanal wird nicht mehr ignoriert" -#: ../../mod/connedit.php:336 +#: ../../mod/connedit.php:344 msgid "Channel has been ignored" msgstr "Kanal wird ignoriert" -#: ../../mod/connedit.php:347 +#: ../../mod/connedit.php:355 msgid "Channel has been unarchived" msgstr "Kanal wurde aus dem Archiv zurück geholt" -#: ../../mod/connedit.php:348 +#: ../../mod/connedit.php:356 msgid "Channel has been archived" msgstr "Kanal wurde archiviert" -#: ../../mod/connedit.php:359 +#: ../../mod/connedit.php:367 msgid "Channel has been unhidden" msgstr "Kanal wird nicht mehr versteckt" -#: ../../mod/connedit.php:360 +#: ../../mod/connedit.php:368 msgid "Channel has been hidden" msgstr "Kanal wurde versteckt" -#: ../../mod/connedit.php:375 +#: ../../mod/connedit.php:383 msgid "Channel has been approved" msgstr "Kanal wurde zugelassen" -#: ../../mod/connedit.php:376 +#: ../../mod/connedit.php:384 msgid "Channel has been unapproved" msgstr "Zulassung des Kanals entfernt" -#: ../../mod/connedit.php:404 +#: ../../mod/connedit.php:412 msgid "Connection has been removed." msgstr "Verbindung wurde gelöscht." -#: ../../mod/connedit.php:424 +#: ../../mod/connedit.php:432 #, php-format msgid "View %s's profile" msgstr "%ss Profil ansehen" -#: ../../mod/connedit.php:428 +#: ../../mod/connedit.php:436 msgid "Refresh Permissions" msgstr "Zugriffsrechte neu laden" -#: ../../mod/connedit.php:431 +#: ../../mod/connedit.php:439 msgid "Fetch updated permissions" msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../mod/connedit.php:435 +#: ../../mod/connedit.php:443 msgid "Recent Activity" msgstr "Kürzliche Aktivitäten" -#: ../../mod/connedit.php:438 +#: ../../mod/connedit.php:446 msgid "View recent posts and comments" msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../mod/connedit.php:442 ../../mod/connedit.php:585 -#: ../../mod/admin.php:734 +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:732 msgid "Unblock" msgstr "Freigeben" -#: ../../mod/connedit.php:442 ../../mod/connedit.php:585 -#: ../../mod/admin.php:733 +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:731 msgid "Block" msgstr "Blockieren" -#: ../../mod/connedit.php:445 +#: ../../mod/connedit.php:453 msgid "Block or Unblock this connection" msgstr "Verbindung blockieren oder freigeben" -#: ../../mod/connedit.php:449 ../../mod/connedit.php:586 +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 msgid "Unignore" msgstr "Nicht ignorieren" -#: ../../mod/connedit.php:449 ../../mod/connedit.php:586 +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 #: ../../mod/notifications.php:51 msgid "Ignore" msgstr "Ignorieren" -#: ../../mod/connedit.php:452 +#: ../../mod/connedit.php:460 msgid "Ignore or Unignore this connection" msgstr "Verbindung ignorieren oder wieder beachten" -#: ../../mod/connedit.php:455 +#: ../../mod/connedit.php:463 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: ../../mod/connedit.php:455 +#: ../../mod/connedit.php:463 msgid "Archive" msgstr "Archivieren" -#: ../../mod/connedit.php:458 +#: ../../mod/connedit.php:466 msgid "Archive or Unarchive this connection" msgstr "Verbindung archivieren oder aus dem Archiv zurückholen" -#: ../../mod/connedit.php:461 +#: ../../mod/connedit.php:469 msgid "Unhide" msgstr "Wieder sichtbar machen" -#: ../../mod/connedit.php:461 +#: ../../mod/connedit.php:469 msgid "Hide" msgstr "Verstecken" -#: ../../mod/connedit.php:464 +#: ../../mod/connedit.php:472 msgid "Hide or Unhide this connection" msgstr "Diese Verbindung verstecken oder wieder sichtbar machen" -#: ../../mod/connedit.php:471 +#: ../../mod/connedit.php:479 msgid "Delete this connection" msgstr "Verbindung löschen" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:543 +#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 msgid "Approve this connection" msgstr "Verbindung genehmigen" -#: ../../mod/connedit.php:514 +#: ../../mod/connedit.php:522 msgid "Accept connection to allow communication" msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../mod/connedit.php:530 -msgid "Automatic Permissions Settings" -msgstr "Automatische Berechtigungs-Einstellungen" - -#: ../../mod/connedit.php:530 +#: ../../mod/connedit.php:538 #, php-format msgid "Connections: settings for %s" msgstr "Verbindungseinstellungen für %s" -#: ../../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/connedit.php:539 +msgid "Apply these permissions automatically" +msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../mod/connedit.php:536 +#: ../../mod/connedit.php:543 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verbindungen an." + +#: ../../mod/connedit.php:545 msgid "Slide to adjust your degree of friendship" msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../mod/connedit.php:542 +#: ../../mod/connedit.php:551 msgid "inherited" msgstr "geerbt" -#: ../../mod/connedit.php:544 +#: ../../mod/connedit.php:553 msgid "Connection has no individual permissions!" msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" -#: ../../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 "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen." -#: ../../mod/connedit.php:547 +#: ../../mod/connedit.php:556 msgid "Profile Visibility" msgstr "Sichtbarkeit des Profils" -#: ../../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 "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../mod/connedit.php:549 +#: ../../mod/connedit.php:558 msgid "Contact Information / Notes" msgstr "Kontaktinformationen / Notizen" -#: ../../mod/connedit.php:550 +#: ../../mod/connedit.php:559 msgid "Edit contact notes" msgstr "Kontaktnotizen bearbeiten" -#: ../../mod/connedit.php:552 +#: ../../mod/connedit.php:561 msgid "Their Settings" msgstr "Deren Einstellungen" -#: ../../mod/connedit.php:553 +#: ../../mod/connedit.php:562 msgid "My Settings" msgstr "Meine Einstellungen" -#: ../../mod/connedit.php:555 +#: ../../mod/connedit.php:564 msgid "Clear/Disable Automatic Permissions" msgstr "Automatische Berechtigungen abschalten/entfernen" -#: ../../mod/connedit.php:556 +#: ../../mod/connedit.php:565 msgid "Forum Members" msgstr "Forum Mitglieder" -#: ../../mod/connedit.php:557 +#: ../../mod/connedit.php:566 msgid "Soapbox" msgstr "Marktschreier" -#: ../../mod/connedit.php:558 +#: ../../mod/connedit.php:567 msgid "Full Sharing (typical social network permissions)" msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" -#: ../../mod/connedit.php:559 +#: ../../mod/connedit.php:568 msgid "Cautious Sharing " msgstr "Vorsichtiges Teilen" -#: ../../mod/connedit.php:560 +#: ../../mod/connedit.php:569 msgid "Follow Only" msgstr "Nur folgen" -#: ../../mod/connedit.php:561 +#: ../../mod/connedit.php:570 msgid "Individual Permissions" msgstr "Individuelle Zugriffsrechte" -#: ../../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 "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." +msgstr "Einige Berechtigungen werden von den globalen 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/connedit.php:563 +#: ../../mod/connedit.php:572 msgid "Advanced Permissions" msgstr "Zugriffsrechte für Fortgeschrittene" -#: ../../mod/connedit.php:564 +#: ../../mod/connedit.php:573 msgid "Simple Permissions (select one and submit)" msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" -#: ../../mod/connedit.php:568 +#: ../../mod/connedit.php:577 #, php-format msgid "Visit %s's profile - %s" msgstr "%ss Profil besuchen - %s" -#: ../../mod/connedit.php:569 +#: ../../mod/connedit.php:578 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freigeben" -#: ../../mod/connedit.php:570 +#: ../../mod/connedit.php:579 msgid "Ignore contact" msgstr "Kontakt ignorieren" -#: ../../mod/connedit.php:571 +#: ../../mod/connedit.php:580 msgid "Repair URL settings" msgstr "URL-Einstellungen reparieren" -#: ../../mod/connedit.php:572 +#: ../../mod/connedit.php:581 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: ../../mod/connedit.php:574 +#: ../../mod/connedit.php:583 msgid "Delete contact" msgstr "Kontakt löschen" -#: ../../mod/connedit.php:577 +#: ../../mod/connedit.php:586 msgid "Last update:" msgstr "Letzte Aktualisierung:" -#: ../../mod/connedit.php:579 +#: ../../mod/connedit.php:588 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: ../../mod/connedit.php:581 +#: ../../mod/connedit.php:590 msgid "Update now" msgstr "Jetzt aktualisieren" -#: ../../mod/connedit.php:587 +#: ../../mod/connedit.php:596 msgid "Currently blocked" msgstr "Derzeit blockiert" -#: ../../mod/connedit.php:588 +#: ../../mod/connedit.php:597 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: ../../mod/connedit.php:589 +#: ../../mod/connedit.php:598 msgid "Currently archived" msgstr "Derzeit archiviert" -#: ../../mod/connedit.php:590 +#: ../../mod/connedit.php:599 msgid "Currently pending" msgstr "Derzeit anstehend" -#: ../../mod/connedit.php:591 +#: ../../mod/connedit.php:600 msgid "Hide this contact from others" msgstr "Diese Verbindung vor den anderen verbergen." -#: ../../mod/connedit.php:591 +#: ../../mod/connedit.php:600 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/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für diese Seite" +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../mod/delegate.php:123 +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" + +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Sache hinzugefügt" + +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Sache anzeigen" + +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "Eintrag nicht gefunden" + +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Sache bearbeiten" + +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Wähle ein Profil" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" + +#: ../../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/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" + +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" + +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" + +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" + +#: ../../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 "" -"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!" +"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/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" +#: ../../mod/lostpass.php:85 ../../boot.php:1494 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Hinzufügen" +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Keine Einträge." +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "Geschlecht:" +#: ../../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/directory.php:223 -msgid "Finding:" -msgstr "Ergebnisse:" +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" -#: ../../mod/directory.php:228 -msgid "next page" -msgstr "nächste Seite" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" -#: ../../mod/directory.php:228 -msgid "previous page" -msgstr "vorherige Seite" +#: ../../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/directory.php:245 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-Mail Adresse" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Zurücksetzen" #: ../../mod/bookmarks.php:38 msgid "Bookmark added" @@ -5696,30 +5823,6 @@ msgstr "Meine Lesezeichen" msgid "My Connections Bookmarks" msgstr "Lesezeichen meiner Kontakte" -#: ../../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" @@ -5728,415 +5831,48 @@ msgstr "Diese Website ist kein Verzeichnis-Server" msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" -#: ../../mod/setup.php:162 -msgid "Red Matrix Server - Setup" -msgstr "Red Matrix Server - Installation" +#: ../../mod/ping.php:257 +msgid "sent you a private message" +msgstr "eine private Nachricht schicken" -#: ../../mod/setup.php:168 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." +#: ../../mod/ping.php:308 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" -#: ../../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/ping.php:349 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" -#: ../../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: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 -#, 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" - -#: ../../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:584 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" - -#: ../../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:618 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." - -#: ../../mod/setup.php:653 -msgid "

    What next

    " -msgstr "

    Was als Nächstes

    " - -#: ../../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/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 +#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 +#: ../../mod/editlayout.php:78 ../../mod/editpost.php:20 +#: ../../mod/editwebpage.php:77 msgid "Item not found" msgstr "Element nicht gefunden" -#: ../../mod/editblock.php:77 +#: ../../mod/editblock.php:115 msgid "Edit Block" msgstr "Block bearbeiten" -#: ../../mod/editblock.php:87 +#: ../../mod/editblock.php:125 msgid "Delete block?" msgstr "Block löschen?" -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 +#: ../../mod/editblock.php:147 ../../mod/editlayout.php:143 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:178 msgid "Insert YouTube video" msgstr "YouTube-Video einfügen" -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:144 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:179 msgid "Insert Vorbis [.ogg] video" msgstr "Vorbis [.ogg]-Video einfügen" -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:145 +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:180 msgid "Insert Vorbis [.ogg] audio" msgstr "Vorbis [.ogg]-Audio einfügen" -#: ../../mod/editblock.php:153 +#: ../../mod/editblock.php:183 msgid "Delete Block" msgstr "Block löschen" @@ -6156,19 +5892,19 @@ msgstr "Layout nicht gefunden." msgid "Module Name:" msgstr "Modulname:" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 msgid "Layout Help" msgstr "Layout-Hilfe" -#: ../../mod/editlayout.php:72 +#: ../../mod/editlayout.php:108 msgid "Edit Layout" msgstr "Layout bearbeiten" -#: ../../mod/editlayout.php:82 +#: ../../mod/editlayout.php:117 msgid "Delete layout?" msgstr "Layout löschen?" -#: ../../mod/editlayout.php:146 +#: ../../mod/editlayout.php:178 msgid "Delete Layout" msgstr "Layout löschen" @@ -6180,15 +5916,540 @@ msgstr "Element kann nicht bearbeitet werden." msgid "Delete item?" msgstr "Eintrag löschen?" -#: ../../mod/editwebpage.php:106 +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "Name ist erforderlich" + +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "Schlüssel und Geheimnis werden benötigt" + +#: ../../mod/settings.php:197 +msgid "Passwords do not match. Password unchanged." +msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." + +#: ../../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:215 +msgid "Password changed." +msgstr "Kennwort geändert." + +#: ../../mod/settings.php:217 +msgid "Password update failed. Please try again." +msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." + +#: ../../mod/settings.php:231 +msgid "Not valid email." +msgstr "Keine gültige E-Mail Adresse." + +#: ../../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: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:479 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: ../../mod/settings.php:548 ../../mod/settings.php:574 +#: ../../mod/settings.php:610 +msgid "Add application" +msgstr "Anwendung hinzufügen" + +#: ../../mod/settings.php:551 +msgid "Name of application" +msgstr "Name der Anwendung" + +#: ../../mod/settings.php:552 ../../mod/settings.php:578 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:552 ../../mod/settings.php:553 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" + +#: ../../mod/settings.php:553 ../../mod/settings.php:579 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../mod/settings.php:554 ../../mod/settings.php:580 +msgid "Redirect" +msgstr "Umleitung" + +#: ../../mod/settings.php:554 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" + +#: ../../mod/settings.php:555 ../../mod/settings.php:581 +msgid "Icon url" +msgstr "Symbol-URL" + +#: ../../mod/settings.php:555 +msgid "Optional" +msgstr "Optional" + +#: ../../mod/settings.php:566 +msgid "You can't edit this application." +msgstr "Diese Anwendung kann nicht bearbeitet werden." + +#: ../../mod/settings.php:609 +msgid "Connected Apps" +msgstr "Verbundene Apps" + +#: ../../mod/settings.php:613 +msgid "Client key starts with" +msgstr "Client Key beginnt mit" + +#: ../../mod/settings.php:614 +msgid "No name" +msgstr "Kein Name" + +#: ../../mod/settings.php:615 +msgid "Remove authorization" +msgstr "Authorisierung aufheben" + +#: ../../mod/settings.php:626 +msgid "No feature settings configured" +msgstr "Keine Funktions-Einstellungen konfiguriert" + +#: ../../mod/settings.php:634 +msgid "Feature Settings" +msgstr "Funktions-Einstellungen" + +#: ../../mod/settings.php:657 +msgid "Account Settings" +msgstr "Konto-Einstellungen" + +#: ../../mod/settings.php:658 +msgid "Password Settings" +msgstr "Kennwort-Einstellungen" + +#: ../../mod/settings.php:659 +msgid "New Password:" +msgstr "Neues Passwort:" + +#: ../../mod/settings.php:660 +msgid "Confirm:" +msgstr "Bestätigen:" + +#: ../../mod/settings.php:660 +msgid "Leave password fields blank unless changing" +msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" + +#: ../../mod/settings.php:662 ../../mod/settings.php:985 +msgid "Email Address:" +msgstr "Email Adresse:" + +#: ../../mod/settings.php:663 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "Konto entfernen" + +#: ../../mod/settings.php:664 +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:665 ../../mod/settings.php:1067 +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:681 +msgid "Off" +msgstr "Aus" + +#: ../../mod/settings.php:681 +msgid "On" +msgstr "An" + +#: ../../mod/settings.php:688 +msgid "Additional Features" +msgstr "Zusätzliche Funktionen" + +#: ../../mod/settings.php:713 +msgid "Connector Settings" +msgstr "Connector-Einstellungen" + +#: ../../mod/settings.php:743 +msgid "No special theme for mobile devices" +msgstr "Keine spezielle Theme für mobile Geräte" + +#: ../../mod/settings.php:752 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (experimentell)" + +#: ../../mod/settings.php:788 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" + +#: ../../mod/settings.php:794 +msgid "Display Theme:" +msgstr "Anzeige-Theme:" + +#: ../../mod/settings.php:795 +msgid "Mobile Theme:" +msgstr "Mobile Theme:" + +#: ../../mod/settings.php:796 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom auf Mobilgeräten aktivieren" + +#: ../../mod/settings.php:797 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: ../../mod/settings.php:797 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 Sekunden, kein Maximum" + +#: ../../mod/settings.php:798 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" + +#: ../../mod/settings.php:798 +msgid "Maximum of 100 items" +msgstr "Maximum: 100 Beiträge" + +#: ../../mod/settings.php:799 +msgid "Don't show emoticons" +msgstr "Emoticons nicht zeigen" + +#: ../../mod/settings.php:800 +msgid "Link post titles to source" +msgstr "Beitragstitel zum Originalbeitrag verlinken" + +#: ../../mod/settings.php:801 +msgid "System Page Layout Editor - (advanced)" +msgstr "System-Seitenlayout-Editor (für Experten)" + +#: ../../mod/settings.php:835 +msgid "Nobody except yourself" +msgstr "Niemand außer Dir selbst" + +#: ../../mod/settings.php:836 +msgid "Only those you specifically allow" +msgstr "Nur die, denen Du es explizit erlaubst" + +#: ../../mod/settings.php:837 +msgid "Approved connections" +msgstr "Angenommene Verbindungen" + +#: ../../mod/settings.php:838 +msgid "Any connections" +msgstr "Beliebige Verbindungen" + +#: ../../mod/settings.php:839 +msgid "Anybody on this website" +msgstr "Jeder auf dieser Website" + +#: ../../mod/settings.php:840 +msgid "Anybody in this network" +msgstr "Alle Red-Nutzer" + +#: ../../mod/settings.php:841 +msgid "Anybody authenticated" +msgstr "Jeder authentifizierte" + +#: ../../mod/settings.php:842 +msgid "Anybody on the internet" +msgstr "Jeder im Internet" + +#: ../../mod/settings.php:916 +msgid "Publish your default profile in the network directory" +msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" + +#: ../../mod/settings.php:921 +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:925 ../../mod/profile_photo.php:365 +msgid "or" +msgstr "oder" + +#: ../../mod/settings.php:930 +msgid "Your channel address is" +msgstr "Deine Kanal-Adresse lautet" + +#: ../../mod/settings.php:974 +msgid "Channel Settings" +msgstr "Kanal-Einstellungen" + +#: ../../mod/settings.php:983 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: ../../mod/settings.php:986 +msgid "Your Timezone:" +msgstr "Ihre Zeitzone:" + +#: ../../mod/settings.php:987 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: ../../mod/settings.php:987 +msgid "Geographical location to display on your posts" +msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" + +#: ../../mod/settings.php:988 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: ../../mod/settings.php:990 +msgid "Adult Content" +msgstr "Nicht jugendfreie Inhalte" + +#: ../../mod/settings.php:990 +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:992 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Datenschutz-Einstellungen" + +#: ../../mod/settings.php:994 +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:996 +msgid "Hide my online presence" +msgstr "Meine Online-Präsenz verbergen" + +#: ../../mod/settings.php:996 +msgid "Prevents displaying in your profile that you are online" +msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" + +#: ../../mod/settings.php:998 +msgid "Simple Privacy Settings:" +msgstr "Einfache Privatsphäre-Einstellungen" + +#: ../../mod/settings.php:999 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" + +#: ../../mod/settings.php:1000 +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:1001 +msgid "Private - default private, never open or public" +msgstr "Privat – Standard privat, nie offen oder öffentlich" + +#: ../../mod/settings.php:1002 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockiert – Alle standardmäßig blockiert" + +#: ../../mod/settings.php:1004 +msgid "Allow others to tag your posts" +msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" + +#: ../../mod/settings.php:1004 +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:1006 +msgid "Advanced Privacy Settings" +msgstr "Fortgeschrittene Privatsphäre-Einstellungen" + +#: ../../mod/settings.php:1008 +msgid "Expire other channel content after this many days" +msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" + +#: ../../mod/settings.php:1008 +msgid "0 or blank prevents expiration" +msgstr "0 oder kein Inhalt verhindern das Verfallen" + +#: ../../mod/settings.php:1009 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Kontaktanfragen pro Tag:" + +#: ../../mod/settings.php:1009 +msgid "May reduce spam activity" +msgstr "Kann die Spam-Aktivität verringern" + +#: ../../mod/settings.php:1010 +msgid "Default Post Permissions" +msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" + +#: ../../mod/settings.php:1015 +msgid "Channel permissions category:" +msgstr "Zugriffsrechte-Kategorie des Kanals:" + +#: ../../mod/settings.php:1023 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" + +#: ../../mod/settings.php:1023 +msgid "Useful to reduce spamming" +msgstr "Nützlich, um Spam zu verringern" + +#: ../../mod/settings.php:1026 +msgid "Notification Settings" +msgstr "Benachrichtigungs-Einstellungen" + +#: ../../mod/settings.php:1027 +msgid "By default post a status message when:" +msgstr "Sende standardmäßig Status-Nachrichten, wenn:" + +#: ../../mod/settings.php:1028 +msgid "accepting a friend request" +msgstr "Du eine Verbindungsanfrage annimmst" + +#: ../../mod/settings.php:1029 +msgid "joining a forum/community" +msgstr "Du einem Forum beitrittst" + +#: ../../mod/settings.php:1030 +msgid "making an interesting profile change" +msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" + +#: ../../mod/settings.php:1031 +msgid "Send a notification email when:" +msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" + +#: ../../mod/settings.php:1032 +msgid "You receive a connection request" +msgstr "Du eine Verbindungsanfrage erhältst" + +#: ../../mod/settings.php:1033 +msgid "Your connections are confirmed" +msgstr "Eine Verbindung bestätigt wurde" + +#: ../../mod/settings.php:1034 +msgid "Someone writes on your profile wall" +msgstr "Jemand auf Deine Pinnwand schreibt" + +#: ../../mod/settings.php:1035 +msgid "Someone writes a followup comment" +msgstr "Jemand einen Beitrag kommentiert" + +#: ../../mod/settings.php:1036 +msgid "You receive a private message" +msgstr "Du eine private Nachricht erhältst" + +#: ../../mod/settings.php:1037 +msgid "You receive a friend suggestion" +msgstr "Du einen Kontaktvorschlag erhältst" + +#: ../../mod/settings.php:1038 +msgid "You are tagged in a post" +msgstr "Du in einem Beitrag erwähnt wurdest" + +#: ../../mod/settings.php:1039 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" + +#: ../../mod/settings.php:1042 +msgid "Show visual notifications including:" +msgstr "Visuelle Benachrichtigungen anzeigen für:" + +#: ../../mod/settings.php:1044 +msgid "Unseen matrix activity" +msgstr "Ungesehene Matrix-Aktivität" + +#: ../../mod/settings.php:1045 +msgid "Unseen channel activity" +msgstr "Ungesehene Kanal-Aktivität" + +#: ../../mod/settings.php:1046 +msgid "Unseen private messages" +msgstr "Ungelesene persönliche Nachrichten" + +#: ../../mod/settings.php:1046 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 +msgid "Recommended" +msgstr "Empfohlen" + +#: ../../mod/settings.php:1047 +msgid "Upcoming events" +msgstr "Baldige Termine" + +#: ../../mod/settings.php:1048 +msgid "Events today" +msgstr "Heutige Termine" + +#: ../../mod/settings.php:1049 +msgid "Upcoming birthdays" +msgstr "Baldige Geburtstage" + +#: ../../mod/settings.php:1049 +msgid "Not available in all themes" +msgstr "Nicht in allen Themes verfügbar" + +#: ../../mod/settings.php:1050 +msgid "System (personal) notifications" +msgstr "System – (persönliche) Benachrichtigungen" + +#: ../../mod/settings.php:1051 +msgid "System info messages" +msgstr "System – Info-Nachrichten" + +#: ../../mod/settings.php:1052 +msgid "System critical alerts" +msgstr "System – kritische Warnungen" + +#: ../../mod/settings.php:1053 +msgid "New connections" +msgstr "Neue Verbindungen" + +#: ../../mod/settings.php:1054 +msgid "System Registrations" +msgstr "System – Registrierungen" + +#: ../../mod/settings.php:1056 +msgid "Notify me of events this many days in advance" +msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" + +#: ../../mod/settings.php:1056 +msgid "Must be greater than 0" +msgstr "Muss größer als 0 sein" + +#: ../../mod/settings.php:1058 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Account- und Seitenart-Einstellungen" + +#: ../../mod/settings.php:1059 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" + +#: ../../mod/settings.php:1062 +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:1063 +msgid "Miscellaneous Settings" +msgstr "Sonstige Einstellungen" + +#: ../../mod/settings.php:1065 +msgid "Personal menu to display in your channel pages" +msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" + +#: ../../mod/settings.php:1066 +msgid "Remove this channel" +msgstr "Diesen Kanal löschen" + +#: ../../mod/editwebpage.php:140 msgid "Edit Webpage" msgstr "Webseite bearbeiten" -#: ../../mod/editwebpage.php:116 +#: ../../mod/editwebpage.php:150 msgid "Delete webpage?" msgstr "Webseite löschen?" -#: ../../mod/editwebpage.php:186 +#: ../../mod/editwebpage.php:215 msgid "Delete Webpage" msgstr "Webseite löschen" @@ -6281,72 +6542,22 @@ msgstr "Hochladen des Bilds fehlgeschlagen." msgid "Image size reduction [%s] failed." msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Quelle erstellt." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Freundschaftsempfehlung senden." -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Quelle aktualisiert." +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" -#: ../../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:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Name des Kanals" - -#: ../../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/sources.php:131 -msgid "Delete Source" -msgstr "Quelle löschen" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Quelle gelöscht" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "– auswählen –" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" #: ../../mod/filestorage.php:76 msgid "Permission Denied." @@ -6384,41 +6595,52 @@ msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinke msgid "Help:" msgstr "Hilfe:" -#: ../../mod/help.php:67 ../../index.php:249 +#: ../../mod/help.php:67 ../../index.php:238 msgid "Not Found" msgstr "Nicht gefunden" +#: ../../mod/acl.php:245 +msgid "network" +msgstr "Netzwerk" + #: ../../mod/follow.php:25 msgid "Channel added." msgstr "Kanal hinzugefügt." -#: ../../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/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden" +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für diese Seite" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Freundschaftsempfehlung senden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" - -#: ../../mod/suggest.php:35 +#: ../../mod/delegate.php:123 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." +"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:131 +msgid "Add" +msgstr "Hinzufügen" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Keine Einträge." #: ../../mod/group.php:20 msgid "Collection created." @@ -6468,761 +6690,11 @@ msgstr "Alle verbundenen Kanäle" msgid "Click on a channel to add or remove." msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../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/like.php:15 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." - -#: ../../mod/like.php:21 +#: ../../mod/suggest.php:35 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/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ungültige Anfrage." - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "Sache" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." - -#: ../../mod/like.php:430 -msgid "Action completed." -msgstr "Aktion durchgeführt." - -#: ../../mod/like.php:431 -msgid "Thank you." -msgstr "Vielen Dank." - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Schlagwort entfernt" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." - -#: ../../mod/admin.php:97 ../../mod/admin.php:413 -msgid "Site" -msgstr "Seite" - -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Konten" - -#: ../../mod/admin.php:99 ../../mod/admin.php:860 -msgid "Channels" -msgstr "Kanäle" - -#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 -msgid "Plugins" -msgstr "Plug-Ins" - -#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 -msgid "Themes" -msgstr "Themes" - -#: ../../mod/admin.php:102 ../../mod/admin.php:515 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Profilkonfiguration" - -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "DB-Aktualisierungen" - -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 -msgid "Logs" -msgstr "Protokolle" - -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" - -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: ../../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/admin.php:212 -msgid "Summary" -msgstr "Zusammenfassung" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Registrierte Benutzer" - -#: ../../mod/admin.php:216 ../../mod/admin.php:518 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Version" - -#: ../../mod/admin.php:219 ../../mod/admin.php:519 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" - -#: ../../mod/admin.php:333 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." - -#: ../../mod/admin.php:364 -msgid "No special theme for accessibility" -msgstr "Kein spezielles Accessibility-Theme vorhanden" - -#: ../../mod/admin.php:393 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" - -#: ../../mod/admin.php:399 -msgid "My site is not a public server" -msgstr "Meine Server ist kein öffentlicher Server" - -#: ../../mod/admin.php:400 -msgid "My site has paid access only" -msgstr "Mein Server erlaubt nur bezahlten Zugang" - -#: ../../mod/admin.php:401 -msgid "My site has free access only" -msgstr "Mein Server erlaubt ausschließlich freien Zugang" - -#: ../../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/admin.php:416 -msgid "File upload" -msgstr "Dateiupload" - -#: ../../mod/admin.php:417 -msgid "Policies" -msgstr "Richtlinien" - -#: ../../mod/admin.php:422 -msgid "Site name" -msgstr "Seitenname" - -#: ../../mod/admin.php:423 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:424 -msgid "Administrator Information" -msgstr "Administrator-Informationen" - -#: ../../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/admin.php:425 -msgid "System language" -msgstr "System-Sprache" - -#: ../../mod/admin.php:426 -msgid "System theme" -msgstr "System-Theme" - -#: ../../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/admin.php:427 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" - -#: ../../mod/admin.php:427 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" - -#: ../../mod/admin.php:428 -msgid "Accessibility system theme" -msgstr "Accessibility-System-Theme" - -#: ../../mod/admin.php:428 -msgid "Accessibility theme" -msgstr "Accessibility-Theme" - -#: ../../mod/admin.php:430 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-Protokoll aktivieren" - -#: ../../mod/admin.php:430 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Kommunikation mit Diaspora und Friendica – experimentell" - -#: ../../mod/admin.php:431 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" - -#: ../../mod/admin.php:431 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" - -#: ../../mod/admin.php:432 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: ../../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/admin.php:433 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" - -#: ../../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/admin.php:435 -msgid "Register text" -msgstr "Registrierungstext" - -#: ../../mod/admin.php:435 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." - -#: ../../mod/admin.php:436 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" - -#: ../../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/admin.php:437 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" - -#: ../../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/admin.php:438 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" - -#: ../../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/admin.php:439 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: ../../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/admin.php:440 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" - -#: ../../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/admin.php:441 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" - -#: ../../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/admin.php:442 -msgid "Disable discovery tab" -msgstr "Den „Entdecken“-Reiter ausblenden" - -#: ../../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/admin.php:443 -msgid "No login on Homepage" -msgstr "Kein Login auf der Homepage" - -#: ../../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/admin.php:445 -msgid "Proxy user" -msgstr "Proxy Benutzer" - -#: ../../mod/admin.php:446 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../mod/admin.php:447 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" - -#: ../../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/admin.php:448 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" - -#: ../../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/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/admin.php:450 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" - -#: ../../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/admin.php:506 -msgid "No server found" -msgstr "Kein Server gefunden" - -#: ../../mod/admin.php:513 ../../mod/admin.php:737 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:513 -msgid "for channel" -msgstr "für Kanal" - -#: ../../mod/admin.php:513 -msgid "on server" -msgstr "auf Server" - -#: ../../mod/admin.php:513 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:534 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: ../../mod/admin.php:544 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." - -#: ../../mod/admin.php:547 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." - -#: ../../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/admin.php:554 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." - -#: ../../mod/admin.php:569 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." - -#: ../../mod/admin.php:573 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" - -#: ../../mod/admin.php:575 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" - -#: ../../mod/admin.php:576 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" - -#: ../../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/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/admin.php:638 -msgid "Account not found" -msgstr "Konto nicht gefunden" - -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' unblocked" -msgstr "Benutzer '%s' freigegeben" - -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' blocked" -msgstr "Benutzer '%s' blockiert" - -#: ../../mod/admin.php:724 ../../mod/admin.php:736 -msgid "Users" -msgstr "Benutzer" - -#: ../../mod/admin.php:726 ../../mod/admin.php:862 -msgid "select all" -msgstr "Alle auswählen" - -#: ../../mod/admin.php:727 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: ../../mod/admin.php:728 -msgid "Request date" -msgstr "Antragsdatum" - -#: ../../mod/admin.php:729 -msgid "No registrations." -msgstr "Keine Registrierungen." - -#: ../../mod/admin.php:730 -msgid "Approve" -msgstr "Genehmigen" - -#: ../../mod/admin.php:731 -msgid "Deny" -msgstr "Verweigern" - -#: ../../mod/admin.php:737 -msgid "Register date" -msgstr "Registrierungs-Datum" - -#: ../../mod/admin.php:737 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: ../../mod/admin.php:737 -msgid "Expires" -msgstr "Verfällt" - -#: ../../mod/admin.php:737 -msgid "Service Class" -msgstr "Service-Klasse" - -#: ../../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/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/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/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/admin.php:799 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" - -#: ../../mod/admin.php:810 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" - -#: ../../mod/admin.php:864 -msgid "Censor" -msgstr "Sperren" - -#: ../../mod/admin.php:865 -msgid "Uncensor" -msgstr "Freigeben" - -#: ../../mod/admin.php:868 -msgid "UID" -msgstr "UID" - -#: ../../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/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/admin.php:910 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." - -#: ../../mod/admin.php:914 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." - -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 -msgid "Disable" -msgstr "Deaktivieren" - -#: ../../mod/admin.php:926 ../../mod/admin.php:1128 -msgid "Enable" -msgstr "Aktivieren" - -#: ../../mod/admin.php:952 ../../mod/admin.php:1157 -msgid "Toggle" -msgstr "Umschalten" - -#: ../../mod/admin.php:960 ../../mod/admin.php:1167 -msgid "Author: " -msgstr "Autor: " - -#: ../../mod/admin.php:961 ../../mod/admin.php:1168 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: ../../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/thing.php:96 -msgid "Thing updated" -msgstr "Sache aktualisiert" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Sache hinzugefügt" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Sache anzeigen" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Eintrag nicht gefunden" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Sache bearbeiten" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Wähle ein Profil" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" - -#: ../../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/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +"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/import.php:25 #, php-format @@ -7300,7 +6772,7 @@ msgid "" "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." +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" @@ -7310,6 +6782,731 @@ msgstr "Dieser Red-Server ist mein primärer Server." msgid "Import existing posts if possible" msgstr "Existierende Beiträge importieren, falls möglich" +#: ../../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/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Schlagwort entfernt" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Theme-Einstellungen aktualisiert." + +#: ../../mod/admin.php:97 ../../mod/admin.php:411 +msgid "Site" +msgstr "Seite" + +#: ../../mod/admin.php:98 +msgid "Accounts" +msgstr "Konten" + +#: ../../mod/admin.php:99 ../../mod/admin.php:858 +msgid "Channels" +msgstr "Kanäle" + +#: ../../mod/admin.php:100 ../../mod/admin.php:949 ../../mod/admin.php:991 +msgid "Plugins" +msgstr "Plug-Ins" + +#: ../../mod/admin.php:101 ../../mod/admin.php:1154 ../../mod/admin.php:1190 +msgid "Themes" +msgstr "Themes" + +#: ../../mod/admin.php:102 ../../mod/admin.php:512 +msgid "Server" +msgstr "Server" + +#: ../../mod/admin.php:103 +msgid "Profile Config" +msgstr "Profilkonfiguration" + +#: ../../mod/admin.php:104 +msgid "DB updates" +msgstr "DB-Aktualisierungen" + +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1277 +msgid "Logs" +msgstr "Protokolle" + +#: ../../mod/admin.php:124 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" + +#: ../../mod/admin.php:126 +msgid "User registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" + +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" + +#: ../../mod/admin.php:211 ../../mod/admin.php:410 ../../mod/admin.php:511 +#: ../../mod/admin.php:721 ../../mod/admin.php:857 ../../mod/admin.php:948 +#: ../../mod/admin.php:990 ../../mod/admin.php:1153 ../../mod/admin.php:1189 +#: ../../mod/admin.php:1276 +msgid "Administration" +msgstr "Administration" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Zusammenfassung" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Registrierte Benutzer" + +#: ../../mod/admin.php:216 ../../mod/admin.php:515 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Version" + +#: ../../mod/admin.php:219 ../../mod/admin.php:516 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" + +#: ../../mod/admin.php:326 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." + +#: ../../mod/admin.php:363 +msgid "mobile" +msgstr "mobil" + +#: ../../mod/admin.php:365 +msgid "experimental" +msgstr "experimentell" + +#: ../../mod/admin.php:367 +msgid "unsupported" +msgstr "nicht unterstützt" + +#: ../../mod/admin.php:391 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" + +#: ../../mod/admin.php:397 +msgid "My site is not a public server" +msgstr "Mein Server ist kein öffentlicher Server" + +#: ../../mod/admin.php:398 +msgid "My site has paid access only" +msgstr "Mein Server erlaubt nur bezahlten Zugang" + +#: ../../mod/admin.php:399 +msgid "My site has free access only" +msgstr "Mein Server erlaubt ausschließlich freien Zugang" + +#: ../../mod/admin.php:400 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" + +#: ../../mod/admin.php:414 +msgid "File upload" +msgstr "Dateiupload" + +#: ../../mod/admin.php:415 +msgid "Policies" +msgstr "Richtlinien" + +#: ../../mod/admin.php:420 +msgid "Site name" +msgstr "Seitenname" + +#: ../../mod/admin.php:421 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:422 +msgid "Administrator Information" +msgstr "Administrator-Informationen" + +#: ../../mod/admin.php:422 +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/admin.php:423 +msgid "System language" +msgstr "System-Sprache" + +#: ../../mod/admin.php:424 +msgid "System theme" +msgstr "System-Theme" + +#: ../../mod/admin.php:424 +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/admin.php:425 +msgid "Mobile system theme" +msgstr "Mobile System-Theme:" + +#: ../../mod/admin.php:425 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" + +#: ../../mod/admin.php:427 +msgid "Enable Diaspora Protocol" +msgstr "Diaspora-Protokoll aktivieren" + +#: ../../mod/admin.php:427 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "Kommunikation mit Diaspora und Friendica – experimentell" + +#: ../../mod/admin.php:428 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" + +#: ../../mod/admin.php:428 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" + +#: ../../mod/admin.php:429 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" + +#: ../../mod/admin.php:429 +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/admin.php:430 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" + +#: ../../mod/admin.php:431 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" + +#: ../../mod/admin.php:432 +msgid "Register text" +msgstr "Registrierungstext" + +#: ../../mod/admin.php:432 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." + +#: ../../mod/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" + +#: ../../mod/admin.php:433 +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/admin.php:434 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" + +#: ../../mod/admin.php:434 +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/admin.php:435 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" + +#: ../../mod/admin.php:435 +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/admin.php:436 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: ../../mod/admin.php:436 +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/admin.php:437 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" + +#: ../../mod/admin.php:437 +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/admin.php:438 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" + +#: ../../mod/admin.php:438 +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/admin.php:439 +msgid "Disable discovery tab" +msgstr "Den „Entdecken“-Reiter ausblenden" + +#: ../../mod/admin.php:439 +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 angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden." + +#: ../../mod/admin.php:440 +msgid "No login on Homepage" +msgstr "Kein Login auf der Homepage" + +#: ../../mod/admin.php:440 +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/admin.php:442 +msgid "Proxy user" +msgstr "Proxy Benutzer" + +#: ../../mod/admin.php:443 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: ../../mod/admin.php:444 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" + +#: ../../mod/admin.php:444 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." + +#: ../../mod/admin.php:445 +msgid "Delivery interval" +msgstr "Auslieferung Intervall" + +#: ../../mod/admin.php:445 +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/admin.php:446 +msgid "Poll interval" +msgstr "Abfrageintervall" + +#: ../../mod/admin.php:446 +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/admin.php:447 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" + +#: ../../mod/admin.php:447 +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/admin.php:503 +msgid "No server found" +msgstr "Kein Server gefunden" + +#: ../../mod/admin.php:510 ../../mod/admin.php:735 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:510 +msgid "for channel" +msgstr "für Kanal" + +#: ../../mod/admin.php:510 +msgid "on server" +msgstr "auf Server" + +#: ../../mod/admin.php:510 +msgid "Status" +msgstr "Status" + +#: ../../mod/admin.php:531 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" + +#: ../../mod/admin.php:541 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." + +#: ../../mod/admin.php:544 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s wurde erfolgreich ausgeführt." + +#: ../../mod/admin.php:548 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." + +#: ../../mod/admin.php:551 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-Funktion %s konnte nicht gefunden werden." + +#: ../../mod/admin.php:566 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." + +#: ../../mod/admin.php:570 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Aktualisierungen" + +#: ../../mod/admin.php:572 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" + +#: ../../mod/admin.php:573 +msgid "Attempt to execute this update step automatically" +msgstr "Versuche, diesen Updateschritt automatisch auszuführen" + +#: ../../mod/admin.php:599 +#, 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/admin.php:606 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s Nutzer gelöscht" +msgstr[1] "%s Nutzer gelöscht" + +#: ../../mod/admin.php:635 +msgid "Account not found" +msgstr "Konto nicht gefunden" + +#: ../../mod/admin.php:655 +#, php-format +msgid "User '%s' unblocked" +msgstr "Benutzer '%s' freigegeben" + +#: ../../mod/admin.php:655 +#, php-format +msgid "User '%s' blocked" +msgstr "Benutzer '%s' blockiert" + +#: ../../mod/admin.php:722 ../../mod/admin.php:734 +msgid "Users" +msgstr "Benutzer" + +#: ../../mod/admin.php:724 ../../mod/admin.php:860 +msgid "select all" +msgstr "Alle auswählen" + +#: ../../mod/admin.php:725 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" + +#: ../../mod/admin.php:726 +msgid "Request date" +msgstr "Antragsdatum" + +#: ../../mod/admin.php:727 +msgid "No registrations." +msgstr "Keine Registrierungen." + +#: ../../mod/admin.php:728 +msgid "Approve" +msgstr "Genehmigen" + +#: ../../mod/admin.php:729 +msgid "Deny" +msgstr "Verweigern" + +#: ../../mod/admin.php:735 +msgid "Register date" +msgstr "Registrierungs-Datum" + +#: ../../mod/admin.php:735 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: ../../mod/admin.php:735 +msgid "Expires" +msgstr "Verfällt" + +#: ../../mod/admin.php:735 +msgid "Service Class" +msgstr "Service-Klasse" + +#: ../../mod/admin.php:737 +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/admin.php:738 +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/admin.php:771 +#, 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/admin.php:778 +#, 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/admin.php:797 +msgid "Channel not found" +msgstr "Kanal nicht gefunden" + +#: ../../mod/admin.php:808 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanal '%s' gelöscht" + +#: ../../mod/admin.php:819 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" + +#: ../../mod/admin.php:819 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' gesperrt" + +#: ../../mod/admin.php:862 +msgid "Censor" +msgstr "Sperren" + +#: ../../mod/admin.php:863 +msgid "Uncensor" +msgstr "Freigeben" + +#: ../../mod/admin.php:866 +msgid "UID" +msgstr "UID" + +#: ../../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 "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/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 "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/admin.php:908 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-In %s deaktiviert." + +#: ../../mod/admin.php:912 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-In %s aktiviert." + +#: ../../mod/admin.php:922 ../../mod/admin.php:1124 +msgid "Disable" +msgstr "Deaktivieren" + +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +msgid "Enable" +msgstr "Aktivieren" + +#: ../../mod/admin.php:950 ../../mod/admin.php:1155 +msgid "Toggle" +msgstr "Umschalten" + +#: ../../mod/admin.php:958 ../../mod/admin.php:1165 +msgid "Author: " +msgstr "Autor: " + +#: ../../mod/admin.php:959 ../../mod/admin.php:1166 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: ../../mod/admin.php:1088 +msgid "No themes found." +msgstr "Keine Theme gefunden." + +#: ../../mod/admin.php:1147 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: ../../mod/admin.php:1195 +msgid "[Experimental]" +msgstr "[Experimentell]" + +#: ../../mod/admin.php:1196 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" + +#: ../../mod/admin.php:1223 +msgid "Log settings updated." +msgstr "Protokoll-Einstellungen aktualisiert." + +#: ../../mod/admin.php:1279 +msgid "Clear" +msgstr "Leeren" + +#: ../../mod/admin.php:1285 +msgid "Debugging" +msgstr "Debugging" + +#: ../../mod/admin.php:1286 +msgid "Log file" +msgstr "Protokolldatei" + +#: ../../mod/admin.php:1286 +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:1287 +msgid "Log level" +msgstr "Protokollstufe" + +#: ../../mod/admin.php:1334 +msgid "New Profile Field" +msgstr "Neues Profilfeld" + +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "Field nickname" +msgstr "Kurzname für das Feld" + +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "System name of field" +msgstr "Systemname des Feldes" + +#: ../../mod/admin.php:1336 ../../mod/admin.php:1357 +msgid "Input type" +msgstr "Art des Inhalts" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Field Name" +msgstr "Feldname" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Label on profile pages" +msgstr "Bezeichnung auf Profilseiten" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Help text" +msgstr "Hilfetext" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Additional info (optional)" +msgstr "Zusätzliche Informationen (optional)" + +#: ../../mod/admin.php:1349 +msgid "Field definition not found" +msgstr "Feld-Definition nicht gefunden" + +#: ../../mod/admin.php:1355 +msgid "Edit Profile Field" +msgstr "Profilfeld bearbeiten" + +#: ../../mod/item.php:159 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." + +#: ../../mod/item.php:418 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." + +#: ../../mod/item.php:460 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." + +#: ../../mod/item.php:898 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." + +#: ../../mod/item.php:1373 +#, 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:1379 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." + +#: ../../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/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ungültige Anfrage." + +#: ../../mod/like.php:119 +msgid "thing" +msgstr "Sache" + +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." + +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." + +#: ../../mod/like.php:430 +msgid "Action completed." +msgstr "Aktion durchgeführt." + +#: ../../mod/like.php:431 +msgid "Thank you." +msgstr "Vielen Dank." + #: ../../mod/invite.php:25 msgid "Total invitation limit exceeded." msgstr "Einladungslimit überschritten." @@ -7379,53 +7576,47 @@ msgstr "oder besuche" msgid "3. Click [Connect]" msgstr "3. Klicke auf [Verbinden]" -#: ../../mod/item.php:150 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." +#: ../../mod/locs.php:19 ../../mod/locs.php:46 +msgid "Location not found." +msgstr "Klon nicht gefunden." -#: ../../mod/item.php:409 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../mod/locs.php:50 +msgid "Primary location cannot be removed." +msgstr "Der primäre Klon kann nicht gelöscht werden." -#: ../../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/locs.php:82 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden" -#: ../../mod/item.php:888 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../mod/locs.php:95 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" -#: ../../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/locs.php:96 +msgid "Location (address)" +msgstr "URL (Adresse)" -#: ../../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/locs.php:97 +msgid "Primary Location" +msgstr "Primärer Klon" + +#: ../../mod/locs.php:98 +msgid "Drop location" +msgstr "Klon löschen" #: ../../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 +#: ../../mod/layouts.php:110 msgid "Help with this feature" msgstr "Hilfe zu dieser Funktion" -#: ../../mod/layouts.php:85 +#: ../../mod/layouts.php:130 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." @@ -7447,79 +7638,6 @@ msgstr "%ss Profil [%s] besuchen" 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/lostpass.php:125 -msgid "Reset" -msgstr "Zurücksetzen" - #: ../../mod/magic.php:70 msgid "Hub not found." msgstr "Server nicht gefunden." @@ -7606,31 +7724,6 @@ msgstr "Keine sichere Kommunikation verfügbar. Eventuell kanns 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" @@ -7651,87 +7744,91 @@ msgstr "interessiert sich für:" msgid "No matches" msgstr "Keine Übereinstimmungen" -#: ../../mod/menu.php:21 +#: ../../mod/menu.php:31 msgid "Menu updated." msgstr "Menü aktualisiert." -#: ../../mod/menu.php:25 +#: ../../mod/menu.php:35 msgid "Unable to update menu." msgstr "Kann Menü nicht aktualisieren." -#: ../../mod/menu.php:30 +#: ../../mod/menu.php:40 msgid "Menu created." msgstr "Menü erstellt." -#: ../../mod/menu.php:34 +#: ../../mod/menu.php:44 msgid "Unable to create menu." msgstr "Kann Menü nicht erstellen." -#: ../../mod/menu.php:57 +#: ../../mod/menu.php:76 msgid "Manage Menus" msgstr "Menüs verwalten" -#: ../../mod/menu.php:60 +#: ../../mod/menu.php:79 msgid "Drop" msgstr "Löschen" -#: ../../mod/menu.php:62 +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../mod/menu.php:82 msgid "Create a new menu" msgstr "Neues Menü erstellen" -#: ../../mod/menu.php:63 +#: ../../mod/menu.php:83 msgid "Delete this menu" msgstr "Lösche dieses Menü" -#: ../../mod/menu.php:64 ../../mod/menu.php:109 +#: ../../mod/menu.php:84 ../../mod/menu.php:125 msgid "Edit menu contents" msgstr "Bearbeite Menü Inhalte" -#: ../../mod/menu.php:65 +#: ../../mod/menu.php:85 msgid "Edit this menu" msgstr "Dieses Menü bearbeiten" -#: ../../mod/menu.php:80 +#: ../../mod/menu.php:96 msgid "New Menu" msgstr "Neues Menü" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 +#: ../../mod/menu.php:97 ../../mod/menu.php:126 msgid "Menu name" msgstr "Menü Name" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 +#: ../../mod/menu.php:97 ../../mod/menu.php:126 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 +#: ../../mod/menu.php:98 ../../mod/menu.php:127 msgid "Menu title" msgstr "Menü Titel" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 +#: ../../mod/menu.php:98 ../../mod/menu.php:127 msgid "Menu title as seen by others" msgstr "Menü Titel wie er von anderen gesehen wird" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 +#: ../../mod/menu.php:99 ../../mod/menu.php:128 msgid "Allow bookmarks" msgstr "Erlaube Lesezeichen" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 +#: ../../mod/menu.php:99 ../../mod/menu.php:128 msgid "Menu may be used to store saved bookmarks" msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" -#: ../../mod/menu.php:98 +#: ../../mod/menu.php:114 msgid "Menu deleted." msgstr "Menü gelöscht." -#: ../../mod/menu.php:100 +#: ../../mod/menu.php:116 msgid "Menu could not be deleted." msgstr "Menü konnte nicht gelöscht werden." -#: ../../mod/menu.php:106 +#: ../../mod/menu.php:122 msgid "Edit Menu" msgstr "Menü bearbeiten" -#: ../../mod/menu.php:108 +#: ../../mod/menu.php:124 msgid "Add or remove entries to this menu" msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" @@ -7812,6 +7909,14 @@ msgstr "Keine System-Benachrichtigungen mehr." msgid "System Notifications" msgstr "System-Benachrichtigungen" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Xchan-Suche" + +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" + #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "Konnte Deinen Server nicht finden." @@ -7824,10 +7929,6 @@ msgstr "Veröffentlichung erfolgreich." msgid "invalid target signature" msgstr "Ungültige Signatur des Ziels" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - #: ../../mod/appman.php:28 ../../mod/appman.php:44 msgid "App installed." msgstr "App installiert." @@ -8201,41 +8302,41 @@ msgstr "Schräge Fotoalben" 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?" -#: ../../boot.php:1294 +#: ../../boot.php:1293 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1297 +#: ../../boot.php:1296 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1471 +#: ../../boot.php:1463 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." -#: ../../boot.php:1499 +#: ../../boot.php:1489 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1500 +#: ../../boot.php:1490 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1505 +#: ../../boot.php:1493 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:1570 +#: ../../boot.php:1567 msgid "permission denied" msgstr "Zugriff verweigert" -#: ../../boot.php:1571 +#: ../../boot.php:1568 msgid "Got Zot?" msgstr "Haste schon Zot?" -#: ../../boot.php:2005 +#: ../../boot.php:2030 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" diff --git a/view/de/strings.php b/view/de/strings.php index 43be85885..2d7265e18 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -7,57 +7,8 @@ function string_plural_select_de($n){ ; $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["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["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["Permission denied."] = "Zugang verweigert"; -$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["event"] = "Termin"; $a->strings["channel"] = "Kanal"; $a->strings["status"] = "Status"; $a->strings["comment"] = "Kommentar"; @@ -68,6 +19,7 @@ $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["Delete"] = "Löschen"; $a->strings["Private Message"] = "Private Nachricht"; $a->strings["Message signature validated"] = "Signatur überprüft"; $a->strings["Message signature incorrect"] = "Signatur nicht korrekt"; @@ -91,6 +43,8 @@ $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["Poke"] = "Anstupsen"; +$a->strings["Unknown"] = "Unbekannt"; $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( @@ -162,28 +116,291 @@ $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["Photos"] = "Fotos"; $a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Files"] = "Dateien"; $a->strings["Files and Storage"] = "Dateien und Speicher"; $a->strings["Chatrooms"] = "Chaträume"; +$a->strings["Bookmarks"] = "Lesezeichen"; $a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +$a->strings["Webpages"] = "Webseiten"; $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["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["New Page"] = "Neue Seite"; +$a->strings["Edit"] = "Bearbeiten"; $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["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["Permission denied."] = "Zugang verweigert"; +$a->strings["Room is full"] = "Der Raum ist voll"; +$a->strings["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; +$a->strings["Categories"] = "Kategorien"; +$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["Save"] = "Speichern"; +$a->strings["Remove term"] = "Eintrag löschen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchanfragen"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Saved Folders"] = "Gespeicherte 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["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; +$a->strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +$a->strings["Channel Sources"] = "Kanal-Quellen"; +$a->strings["Settings"] = "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["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[" 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["l F d, Y \\@ g:i A"] = "l, d. F Y\\\\, H:i"; +$a->strings["Redmatrix event notification:"] = "RedMatrix Termin-Benachrichtigung:"; $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["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["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["Default"] = "Standard"; +$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["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemeinsame Verbindung", + 1 => "%d gemeinsame Verbindungen", +); +$a->strings["show more"] = "mehr zeigen"; +$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 verschlagwortet"; +$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["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +$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["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["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["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["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["Your photos"] = "Deine Bilder"; +$a->strings["Your files"] = "Deine Dateien"; +$a->strings["Chat"] = "Chat"; +$a->strings["Your chatrooms"] = "Deine Chaträume"; +$a->strings["Your bookmarks"] = "Deine Lesezeichen"; +$a->strings["Your webpages"] = "Deine Webseiten"; +$a->strings["Login"] = "Anmelden"; +$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"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; +$a->strings["Search"] = "Suche"; +$a->strings["Search site content"] = "Durchsuche Seiten-Inhalt"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["Channel Directory"] = "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"; +$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["Events"] = "Termine"; +$a->strings["Event Calendar"] = "Terminkalender"; +$a->strings["See all events"] = "Alle Termine ansehen"; +$a->strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +$a->strings["Channel Manager"] = "Kanal-Manager"; +$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["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"; @@ -217,262 +434,9 @@ $a->strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; $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"; -$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["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."; -$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["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["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"; -$a->strings["next"] = "nächste"; -$a->strings["older"] = "älter"; -$a->strings["newer"] = "neuer"; -$a->strings["No connections"] = "Keine Verbindungen"; -$a->strings["%d Connection"] = array( - 0 => "%d Verbindung", - 1 => "%d Verbindungen", -); -$a->strings["View Connections"] = "Verbindungen anzeigen"; -$a->strings["Save"] = "Speichern"; -$a->strings["poke"] = "anstupsen"; -$a->strings["ping"] = "anpingen"; -$a->strings["pinged"] = "pingte"; -$a->strings["prod"] = "knuffen"; -$a->strings["prodded"] = "knuffte"; -$a->strings["slap"] = "ohrfeigen"; -$a->strings["slapped"] = "ohrfeigte"; -$a->strings["finger"] = "befummeln"; -$a->strings["fingered"] = "befummelte"; -$a->strings["rebuff"] = "eine Abfuhr erteilen"; -$a->strings["rebuffed"] = "zurückgewiesen"; -$a->strings["happy"] = "glücklich"; -$a->strings["sad"] = "traurig"; -$a->strings["mellow"] = "sanft"; -$a->strings["tired"] = "müde"; -$a->strings["perky"] = "frech"; -$a->strings["angry"] = "sauer"; -$a->strings["stupified"] = "verblüfft"; -$a->strings["puzzled"] = "verwirrt"; -$a->strings["interested"] = "interessiert"; -$a->strings["bitter"] = "verbittert"; -$a->strings["cheerful"] = "fröhlich"; -$a->strings["alive"] = "lebendig"; -$a->strings["annoyed"] = "verärgert"; -$a->strings["anxious"] = "unruhig"; -$a->strings["cranky"] = "schrullig"; -$a->strings["disturbed"] = "verstört"; -$a->strings["frustrated"] = "frustriert"; -$a->strings["depressed"] = "deprimiert"; -$a->strings["motivated"] = "motiviert"; -$a->strings["relaxed"] = "entspannt"; -$a->strings["surprised"] = "überrascht"; -$a->strings["Monday"] = "Montag"; -$a->strings["Tuesday"] = "Dienstag"; -$a->strings["Wednesday"] = "Mittwoch"; -$a->strings["Thursday"] = "Donnerstag"; -$a->strings["Friday"] = "Freitag"; -$a->strings["Saturday"] = "Samstag"; -$a->strings["Sunday"] = "Sonntag"; -$a->strings["January"] = "Januar"; -$a->strings["February"] = "Februar"; -$a->strings["March"] = "März"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "August"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "Dezember"; -$a->strings["unknown.???"] = "unbekannt.???"; -$a->strings["bytes"] = "Bytes"; -$a->strings["remove category"] = "Kategorie entfernen"; -$a->strings["remove from file"] = "aus der Datei entfernen"; -$a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -$a->strings["Link to Source"] = "Link zur Quelle"; -$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["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["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["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."; @@ -493,13 +457,12 @@ $a->strings["Share your identity with all websites on the internet. When disable $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["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; $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["Allow use of \"Markdown\" to format posts"] = "Erlaube die Verwendung von \"Markdown\"-Syntax 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)"; @@ -508,7 +471,6 @@ $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"; @@ -532,23 +494,24 @@ $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["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["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"; @@ -558,14 +521,12 @@ $a->strings["Reserved nickname. Please choose another."] = "Reservierter Kurznam $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"; @@ -579,8 +540,9 @@ $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["Event Reminders"] = "Termin-Erinnerungen"; +$a->strings["Events this week:"] = "Termine 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["j F, Y"] = "j. F Y"; @@ -607,47 +569,46 @@ $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["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["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["view full size"] = "In Vollbildansicht anschauen"; +$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["Logged out."] = "Ausgeloggt."; +$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +$a->strings["Login failed."] = "Login fehlgeschlagen."; $a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; $a->strings["never"] = "Nie"; $a->strings["less than a second ago"] = "Vor weniger als einer Sekunde"; $a->strings["year"] = "Jahr"; @@ -667,71 +628,12 @@ $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["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["Your photos"] = "Deine Bilder"; -$a->strings["Your files"] = "Deine Dateien"; -$a->strings["Your chatrooms"] = "Deine Chaträume"; -$a->strings["Your bookmarks"] = "Deine Lesezeichen"; -$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 and documentation"] = "Hilfe und Dokumentation"; -$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-Verzeichnis"; -$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["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -$a->strings["Connections"] = "Verbindungen"; -$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["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["Event Calendar"] = "Veranstaltungskalender"; -$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["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["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["Delete this item?"] = "Dieses Element löschen?"; $a->strings["Comment"] = "Kommentar"; $a->strings["[+] show all"] = "[+] Zeige alle"; @@ -819,6 +721,105 @@ $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["prev"] = "vorherige"; +$a->strings["first"] = "erste"; +$a->strings["last"] = "letzte"; +$a->strings["next"] = "nächste"; +$a->strings["older"] = "älter"; +$a->strings["newer"] = "neuer"; +$a->strings["No connections"] = "Keine Verbindungen"; +$a->strings["%d Connection"] = array( + 0 => "%d Verbindung", + 1 => "%d Verbindungen", +); +$a->strings["View Connections"] = "Verbindungen anzeigen"; +$a->strings["poke"] = "anstupsen"; +$a->strings["ping"] = "anpingen"; +$a->strings["pinged"] = "pingte"; +$a->strings["prod"] = "knuffen"; +$a->strings["prodded"] = "knuffte"; +$a->strings["slap"] = "ohrfeigen"; +$a->strings["slapped"] = "ohrfeigte"; +$a->strings["finger"] = "befummeln"; +$a->strings["fingered"] = "befummelte"; +$a->strings["rebuff"] = "eine Abfuhr erteilen"; +$a->strings["rebuffed"] = "zurückgewiesen"; +$a->strings["happy"] = "glücklich"; +$a->strings["sad"] = "traurig"; +$a->strings["mellow"] = "sanft"; +$a->strings["tired"] = "müde"; +$a->strings["perky"] = "frech"; +$a->strings["angry"] = "sauer"; +$a->strings["stupified"] = "verblüfft"; +$a->strings["puzzled"] = "verwirrt"; +$a->strings["interested"] = "interessiert"; +$a->strings["bitter"] = "verbittert"; +$a->strings["cheerful"] = "fröhlich"; +$a->strings["alive"] = "lebendig"; +$a->strings["annoyed"] = "verärgert"; +$a->strings["anxious"] = "unruhig"; +$a->strings["cranky"] = "schrullig"; +$a->strings["disturbed"] = "verstört"; +$a->strings["frustrated"] = "frustriert"; +$a->strings["depressed"] = "deprimiert"; +$a->strings["motivated"] = "motiviert"; +$a->strings["relaxed"] = "entspannt"; +$a->strings["surprised"] = "überrascht"; +$a->strings["Monday"] = "Montag"; +$a->strings["Tuesday"] = "Dienstag"; +$a->strings["Wednesday"] = "Mittwoch"; +$a->strings["Thursday"] = "Donnerstag"; +$a->strings["Friday"] = "Freitag"; +$a->strings["Saturday"] = "Samstag"; +$a->strings["Sunday"] = "Sonntag"; +$a->strings["January"] = "Januar"; +$a->strings["February"] = "Februar"; +$a->strings["March"] = "März"; +$a->strings["April"] = "April"; +$a->strings["May"] = "Mai"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "Dezember"; +$a->strings["unknown.???"] = "unbekannt.???"; +$a->strings["bytes"] = "Bytes"; +$a->strings["remove category"] = "Kategorie entfernen"; +$a->strings["remove from file"] = "aus der Datei entfernen"; +$a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; +$a->strings["Link to Source"] = "Link zur Quelle"; +$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["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["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["Public Timeline"] = "Öffentliche Zeitleiste"; +$a->strings["Site Admin"] = "Hub-Administration"; +$a->strings["Address Book"] = "Adressbuch"; +$a->strings["Mood"] = "Laune"; +$a->strings["Probe"] = "Testen"; +$a->strings["Suggest"] = "Empfehlen"; +$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["Save to Folder"] = "In Ordner speichern"; $a->strings["View all"] = "Alles anzeigen"; $a->strings["__ctx:noun__ Dislike"] = array( @@ -827,7 +828,7 @@ $a->strings["__ctx:noun__ Dislike"] = array( ); $a->strings["Add Star"] = "Stern hinzufügen"; $a->strings["Remove Star"] = "Stern entfernen"; -$a->strings["Toggle Star Status"] = "Stern-Status umschalten"; +$a->strings["Toggle Star Status"] = "Markierungsstatus (Stern) umschalten"; $a->strings["starred"] = "markiert"; $a->strings["Add Tag"] = "Tag hinzufügen"; $a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; @@ -858,43 +859,11 @@ $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["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["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."; @@ -915,7 +884,7 @@ $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["Use RedMatrix magic-auth if available"] = "Verwende die automatische RedMatrix-Authentifizierung (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"; @@ -925,10 +894,492 @@ $a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht g $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["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["Yes"] = "Ja"; +$a->strings["No"] = "Nein"; +$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["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 auf 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["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["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 Hubs wurde installiert."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients 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["Database Type"] = "Datenbanktyp"; +$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."; +$a->strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; +$a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; +$a->strings["libCurl PHP module"] = "libCurl-PHP-Modul"; +$a->strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; +$a->strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; +$a->strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; +$a->strings["mb_string PHP module"] = "mb_string-PHP-Modul"; +$a->strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; +$a->strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; +$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 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 Web-Server 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 Zertifikaten 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.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; +$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["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["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["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["Invalid item."] = "Ungültiges Element."; +$a->strings["Channel not found."] = "Kanal nicht gefunden."; +$a->strings["Page not found."] = "Seite nicht gefunden."; +$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."] = "Externe Inhaltsquellen für Deinen Kanal 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["Block Name"] = "Block-Name"; +$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Status: "] = "Status:"; +$a->strings["Homepage: "] = "Webseite:"; +$a->strings["Hometown: "] = "Wohnort:"; +$a->strings["About: "] = "Über:"; +$a->strings["Public Forum:"] = "Öffentliches Forum:"; +$a->strings["Keywords: "] = "Schlüsselwörter:"; +$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["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["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; +$a->strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; +$a->strings["Event not found."] = "Termin nicht gefunden."; +$a->strings["l, F j"] = "l, j. F"; +$a->strings["Edit event"] = "Termin bearbeiten"; +$a->strings["Create New Event"] = "Neuen Termin erstellen"; +$a->strings["Previous"] = "Voriges"; +$a->strings["Event details"] = "Termin-Details"; +$a->strings["Starting date and Title are required."] = "Startdatum und Titel sind erforderlich."; +$a->strings["Event Starts:"] = "Termin beginnt:"; +$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:"] = "Termin 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"] = "Den Termin 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["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; +$a->strings["Away"] = "Abwesend"; +$a->strings["Online"] = "Online"; +$a->strings["Please login."] = "Bitte melde dich an."; +$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["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 wieder 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["- select -"] = "– auswählen –"; +$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["%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"] = "Gib einen Namen für ein neues Album ein"; +$a->strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; +$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["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["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["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["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; +$a->strings["In This Photo:"] = "Auf diesem Foto:"; +$a->strings["View Album"] = "Album ansehen"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$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["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["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["Connections: settings for %s"] = "Verbindungseinstellungen für %s"; +$a->strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; +$a->strings["Apply the permissions indicated on this page to all new connections."] = "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verbindungen an."; +$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 globalen 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["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Thing updated"] = "Sache aktualisiert"; +$a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +$a->strings["Thing added"] = "Sache hinzugefügt"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Sache anzeigen"; +$a->strings["item not found."] = "Eintrag nicht gefunden"; +$a->strings["Edit Thing"] = "Sache bearbeiten"; +$a->strings["Select a profile"] = "Wähle ein Profil"; +$a->strings["Post an activity"] = "Aktivitätsnachricht senden"; +$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +$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["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["Bookmark added"] = "Lesezeichen hinzugefügt"; +$a->strings["My Bookmarks"] = "Meine Lesezeichen"; +$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +$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["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["posted an event"] = "hat einen Termin veröffentlicht"; +$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["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."; @@ -945,7 +1396,7 @@ $a->strings["Consumer Key"] = "Consumer Key"; $a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; $a->strings["Consumer Secret"] = "Consumer Secret"; $a->strings["Redirect"] = "Umleitung"; -$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert"; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; $a->strings["Icon url"] = "Symbol-URL"; $a->strings["Optional"] = "Optional"; $a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden."; @@ -990,8 +1441,6 @@ $a->strings["Anybody in this network"] = "Alle Red-Nutzer"; $a->strings["Anybody authenticated"] = "Jeder authentifizierte"; $a->strings["Anybody on the internet"] = "Jeder im Internet"; $a->strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"; -$a->strings["No"] = "Nein"; -$a->strings["Yes"] = "Ja"; $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; $a->strings["or"] = "oder"; $a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet"; @@ -1010,9 +1459,9 @@ $a->strings["Prevents displaying in your profile that you are online"] = "Verhin $a->strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen"; $a->strings["Very Public - extremely permissive (should be used with caution)"] = "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)"; $a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)"; -$a->strings["Private - default private, never open or public"] = "Private – Standard privat, nie offen oder öffentlich"; +$a->strings["Private - default private, never open or public"] = "Privat – Standard privat, nie offen oder öffentlich"; $a->strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle standardmäßig blockiert"; -$a->strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu taggen"; +$a->strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten"; $a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren"; $a->strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen"; $a->strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen"; @@ -1025,7 +1474,7 @@ $a->strings["Maximum private messages per day from unknown people:"] = "Maximale $a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; $a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen"; $a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:"; -$a->strings["accepting a friend request"] = "Du eine Kontaktanfrage annimmst"; +$a->strings["accepting a friend request"] = "Du eine Verbindungsanfrage annimmst"; $a->strings["joining a forum/community"] = "Du einem Forum beitrittst"; $a->strings["making an interesting profile change"] = "Du eine interessante Änderung an Deinem Profil vornimmst"; $a->strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:"; @@ -1037,414 +1486,28 @@ $a->strings["You receive a private message"] = "Du eine private Nachricht erhäl $a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst"; $a->strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest"; $a->strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"; +$a->strings["Show visual notifications including:"] = "Visuelle Benachrichtigungen anzeigen für:"; +$a->strings["Unseen matrix activity"] = "Ungesehene Matrix-Aktivität"; +$a->strings["Unseen channel activity"] = "Ungesehene Kanal-Aktivität"; +$a->strings["Unseen private messages"] = "Ungelesene persönliche Nachrichten"; +$a->strings["Recommended"] = "Empfohlen"; +$a->strings["Upcoming events"] = "Baldige Termine"; +$a->strings["Events today"] = "Heutige Termine"; +$a->strings["Upcoming birthdays"] = "Baldige Geburtstage"; +$a->strings["Not available in all themes"] = "Nicht in allen Themes verfügbar"; +$a->strings["System (personal) notifications"] = "System – (persönliche) Benachrichtigungen"; +$a->strings["System info messages"] = "System – Info-Nachrichten"; +$a->strings["System critical alerts"] = "System – kritische Warnungen"; +$a->strings["New connections"] = "Neue Verbindungen"; +$a->strings["System Registrations"] = "System – Registrierungen"; +$a->strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus"; +$a->strings["Must be greater than 0"] = "Muss größer als 0 sein"; $a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen"; $a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen"; $a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!"; $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["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 :"] = "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."; -$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["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."; -$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["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."; -$a->strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; -$a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; -$a->strings["libCurl PHP module"] = "libCurl-PHP-Modul"; -$a->strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; -$a->strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; -$a->strings["mysqli PHP module"] = "mysqli-PHP-Modul"; -$a->strings["mb_string PHP module"] = "mb_string-PHP-Modul"; -$a->strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; -$a->strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; -$a->strings["proc_open"] = "proc_open"; -$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert."; -$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"; @@ -1469,22 +1532,10 @@ $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["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["Permission Denied."] = "Zugriff verweigert."; $a->strings["File not found."] = "Datei nicht gefunden."; $a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; @@ -1495,13 +1546,16 @@ $a->strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopi $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["network"] = "Netzwerk"; $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["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["Collection created."] = "Sammlung erstellt."; $a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; $a->strings["Collection updated."] = "Sammlung aktualisiert."; @@ -1514,16 +1568,27 @@ $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["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["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"; +$a->strings["Imported file is empty."] = "Die importierte Datei ist leer."; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; +$a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; +$a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; +$a->strings["Import completed."] = "Import abgeschlossen."; +$a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; +$a->strings["Import Channel"] = "Kanal importieren"; +$a->strings["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."] = "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."; +$a->strings["File to Upload"] = "Hochzuladende Datei:"; +$a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; +$a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; +$a->strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; +$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["%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:"; @@ -1547,9 +1612,11 @@ $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["mobile"] = "mobil"; +$a->strings["experimental"] = "experimentell"; +$a->strings["unsupported"] = "nicht unterstützt"; $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 is not a public server"] = "Mein 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"; @@ -1564,8 +1631,6 @@ $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"; @@ -1589,7 +1654,7 @@ $a->strings["Check to verify email addresses used in account registration (recom $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["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 angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden."; $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"; @@ -1684,39 +1749,21 @@ $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"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Sache anzeigen"; -$a->strings["item not found."] = "Eintrag nicht gefunden"; -$a->strings["Edit Thing"] = "Sache bearbeiten"; -$a->strings["Select a profile"] = "Wähle ein Profil"; -$a->strings["Post an activity"] = "Aktivitätsnachricht senden"; -$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -$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["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"; -$a->strings["Imported file is empty."] = "Die importierte Datei ist leer."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; -$a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; -$a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -$a->strings["Import completed."] = "Import abgeschlossen."; -$a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; -$a->strings["Import Channel"] = "Kanal importieren"; -$a->strings["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."] = "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."; -$a->strings["File to Upload"] = "Hochzuladende Datei:"; -$a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; -$a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; -$a->strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; -$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["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["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["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"; @@ -1736,38 +1783,21 @@ $a->strings["1. Register at any RedMatrix location (they are all inter-connected $a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. 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["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 locations found."] = "Keine Klon-Adressen gefunden"; +$a->strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +$a->strings["Location (address)"] = "URL (Adresse)"; +$a->strings["Primary Location"] = "Primärer Klon"; +$a->strings["Drop location"] = "Klon löschen"; $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"; @@ -1789,12 +1819,6 @@ $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."; @@ -1806,6 +1830,7 @@ $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["Bookmarks allowed"] = "Lesezeichen erlaubt"; $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"; @@ -1838,10 +1863,11 @@ $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["Xchan Lookup"] = "Xchan-Suche"; +$a->strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; $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"; From 5b7124f0daeca4aa619f6411ee373d9ff5a22b7b Mon Sep 17 00:00:00 2001 From: Jeroen Date: Mon, 24 Nov 2014 13:05:31 +0000 Subject: [PATCH 176/176] and update Dutch --- view/nl/messages.po | 9246 ++++++++++++++++++++++--------------------- view/nl/strings.php | 1850 ++++----- 2 files changed, 5557 insertions(+), 5539 deletions(-) diff --git a/view/nl/messages.po b/view/nl/messages.po index 49ac858c9..de790c6c2 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-11-07 00:04-0800\n" -"PO-Revision-Date: 2014-11-13 16:16+0000\n" +"POT-Creation-Date: 2014-11-14 00:04-0800\n" +"PO-Revision-Date: 2014-11-24 13:03+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,288 +19,25 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:50 +#: ../../include/dba/dba_driver.php:132 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" -#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:51 -#: ../../mod/photos.php:91 ../../mod/photos.php:652 +#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 +#: ../../mod/photos.php:91 ../../mod/photos.php:654 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 #: ../../mod/profile_photo.php:423 msgid "Profile Photos" msgstr "Profielfoto's" -#: ../../include/apps.php:126 -msgid "Site Admin" -msgstr "Hubbeheerder" - -#: ../../include/apps.php:127 ../../include/conversation.php:1572 -#: ../../include/nav.php:117 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: ../../include/apps.php:128 -msgid "Address Book" -msgstr "Connecties" - -#: ../../include/apps.php:129 ../../include/nav.php:125 ../../boot.php:1513 -msgid "Login" -msgstr "Inloggen" - -#: ../../include/apps.php:130 ../../include/nav.php:216 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanaalbeheer" - -#: ../../include/apps.php:131 ../../include/nav.php:190 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/apps.php:132 ../../include/widgets.php:548 -#: ../../include/nav.php:218 ../../mod/admin.php:953 ../../mod/admin.php:1158 -msgid "Settings" -msgstr "Instellingen" - -#: ../../include/apps.php:133 ../../include/conversation.php:1546 -#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Bestanden" - -#: ../../include/apps.php:134 ../../include/conversation.php:1583 -#: ../../include/nav.php:121 ../../mod/webpages.php:129 -msgid "Webpages" -msgstr "Webpagina's" - -#: ../../include/apps.php:135 ../../include/nav.php:193 -msgid "Channel Home" -msgstr "Tijdlijn kanaal" - -#: ../../include/apps.php:136 ../../include/identity.php:1120 -#: ../../include/identity.php:1238 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profiel" - -#: ../../include/apps.php:137 ../../include/conversation.php:1537 -#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" - -#: ../../include/apps.php:138 ../../include/nav.php:212 -#: ../../mod/events.php:431 -msgid "Events" -msgstr "Agenda" - -#: ../../include/apps.php:139 ../../include/nav.php:176 -#: ../../mod/directory.php:226 -msgid "Directory" -msgstr "Gids" - -#: ../../include/apps.php:140 ../../include/nav.php:168 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" -msgstr "Hulp" - -#: ../../include/apps.php:141 ../../include/nav.php:204 -msgid "Mail" -msgstr "Privéberichten" - -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Stemming" - -#: ../../include/apps.php:143 ../../include/conversation.php:951 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../include/apps.php:144 ../../include/nav.php:111 -msgid "Chat" -msgstr "Chatten" - -#: ../../include/apps.php:145 ../../include/text.php:822 -#: ../../include/text.php:834 ../../include/nav.php:173 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "Zoeken" - -#: ../../include/apps.php:146 -msgid "Probe" -msgstr "Onderzoeken" - -#: ../../include/apps.php:147 -msgid "Suggest" -msgstr "Voorstellen" - -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "Willekeurig kanaal" - -#: ../../include/apps.php:149 -msgid "Invite" -msgstr "Uitnodigen " - -#: ../../include/apps.php:150 -msgid "Features" -msgstr "Extra functies" - -#: ../../include/apps.php:151 -msgid "Language" -msgstr "Taal" - -#: ../../include/apps.php:152 -msgid "Post" -msgstr "Bericht" - -#: ../../include/apps.php:153 -msgid "Profile Photo" -msgstr "Profielfoto" - -#: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:575 -msgid "Update" -msgstr "Bijwerken" - -#: ../../include/apps.php:242 -msgid "Install" -msgstr "Installeren" - -#: ../../include/apps.php:247 -msgid "Purchase" -msgstr "Aanschaffen" - -#: ../../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: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 -#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 -#: ../../mod/thing.php:233 ../../mod/layouts.php:121 ../../mod/menu.php:59 -msgid "Edit" -msgstr "Bewerken" - -#: ../../include/apps.php:250 ../../include/conversation.php:638 -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/ItemObject.php:120 -#: ../../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 "Verwijderen" - -#: ../../include/apps.php:331 ../../include/apps.php:382 -#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 -#: ../../mod/photos.php:711 ../../mod/photos.php:1128 -#: ../../mod/connedit.php:512 -msgid "Unknown" -msgstr "Onbekend" - -#: ../../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/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: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 -#: ../../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: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:390 -msgid "Permission denied." -msgstr "Toegang geweigerd" - -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "Geen bronbestand." - -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" - -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" - -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." - -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." - -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." - -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "Pad niet beschikbaar." - -#: ../../include/attach.php:589 -msgid "Empty pathname" -msgstr "Padnaam leeg" - -#: ../../include/attach.php:605 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" - -#: ../../include/attach.php:629 -msgid "Path not found." -msgstr "Pad niet gevonden" - -#: ../../include/attach.php:680 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." - -#: ../../include/attach.php:684 -msgid "database storage failed." -msgstr "opslag in database mislukt." - -#: ../../include/conversation.php:120 ../../include/text.php:1743 -#: ../../include/diaspora.php:1923 ../../mod/subthread.php:72 +#: ../../include/conversation.php:120 ../../include/diaspora.php:1923 +#: ../../include/text.php:1747 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:298 msgid "photo" msgstr "foto" -#: ../../include/conversation.php:123 ../../include/text.php:1746 +#: ../../include/conversation.php:123 ../../include/text.php:1750 #: ../../mod/tagger.php:49 msgid "event" msgstr "gebeurtenis" @@ -309,13 +46,13 @@ msgstr "gebeurtenis" msgid "channel" msgstr "kanaal" -#: ../../include/conversation.php:148 ../../include/text.php:1749 -#: ../../include/diaspora.php:1923 ../../mod/subthread.php:72 +#: ../../include/conversation.php:148 ../../include/diaspora.php:1923 +#: ../../include/text.php:1753 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:298 msgid "status" msgstr "bericht" -#: ../../include/conversation.php:150 ../../include/text.php:1751 +#: ../../include/conversation.php:150 ../../include/text.php:1755 #: ../../mod/tagger.php:55 msgid "comment" msgstr "reactie" @@ -341,7 +78,7 @@ msgstr "%1$s is nu met %2$s verbonden" msgid "%1$s poked %2$s" msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/conversation.php:243 ../../include/text.php:901 +#: ../../include/conversation.php:243 ../../include/text.php:905 msgid "poked" msgstr "aangestoten" @@ -355,6 +92,14 @@ msgstr "%1$s is %2$s" msgid "Select" msgstr "Kies" +#: ../../include/conversation.php:638 ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/apps.php:250 ../../include/ItemObject.php:120 +#: ../../mod/photos.php:1069 ../../mod/connedit.php:476 +#: ../../mod/thing.php:234 ../../mod/settings.php:612 ../../mod/group.php:176 +#: ../../mod/admin.php:730 ../../mod/admin.php:861 +msgid "Delete" +msgstr "Verwijderen" + #: ../../include/conversation.php:645 ../../include/ItemObject.php:89 msgid "Private Message" msgstr "Privébericht" @@ -400,9 +145,9 @@ msgid "View in context" msgstr "In context bekijken" #: ../../include/conversation.php:719 ../../include/conversation.php:1153 -#: ../../include/ItemObject.php:310 ../../mod/photos.php:974 -#: ../../mod/editblock.php:120 ../../mod/editlayout.php:115 -#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 +#: ../../include/ItemObject.php:310 ../../mod/photos.php:977 +#: ../../mod/editblock.php:152 ../../mod/editlayout.php:148 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:183 #: ../../mod/mail.php:234 ../../mod/mail.php:349 msgid "Please wait" msgstr "Even wachten" @@ -444,11 +189,10 @@ msgstr "Foto's weergeven" msgid "Matrix Activity" msgstr "Activiteit in de RedMatrix" -#: ../../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 -#: ../../mod/match.php:62 +#: ../../include/conversation.php:948 ../../include/widgets.php:135 +#: ../../include/widgets.php:175 ../../include/Contact.php:107 +#: ../../include/identity.php:840 ../../mod/directory.php:224 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 msgid "Connect" msgstr "Verbinden" @@ -460,6 +204,17 @@ msgstr "Contact bewerken" msgid "Send PM" msgstr "Privébericht verzenden" +#: ../../include/conversation.php:951 ../../include/apps.php:143 +msgid "Poke" +msgstr "Aanstoten" + +#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 +#: ../../include/apps.php:331 ../../include/apps.php:382 +#: ../../mod/photos.php:713 ../../mod/photos.php:1131 +#: ../../mod/connedit.php:512 +msgid "Unknown" +msgstr "Onbekend" + #: ../../include/conversation.php:1024 #, php-format msgid "%s likes this." @@ -540,20 +295,20 @@ msgid "Expires YYYY-MM-DD HH:MM" msgstr "Verloopt op DD-MM-YYYY om HH:MM" #: ../../include/conversation.php:1114 ../../include/page_widgets.php:40 -#: ../../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 +#: ../../include/ItemObject.php:608 ../../mod/photos.php:997 +#: ../../mod/webpages.php:166 ../../mod/editblock.php:173 +#: ../../mod/editlayout.php:168 ../../mod/editpost.php:140 +#: ../../mod/editwebpage.php:205 msgid "Preview" msgstr "Voorvertoning" -#: ../../include/conversation.php:1128 ../../mod/photos.php:973 -#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 +#: ../../include/conversation.php:1128 ../../mod/photos.php:976 +#: ../../mod/editblock.php:198 ../../mod/editlayout.php:193 +#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 msgid "Share" msgstr "Delen" -#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:139 +#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:170 msgid "Page link title" msgstr "Titel van paginalink" @@ -561,9 +316,9 @@ msgstr "Titel van paginalink" msgid "Post as" msgstr "Bericht plaatsen als" -#: ../../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 +#: ../../include/conversation.php:1134 ../../mod/editblock.php:144 +#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:231 ../../mod/mail.php:345 msgid "Upload photo" msgstr "Foto uploaden" @@ -571,9 +326,9 @@ msgstr "Foto uploaden" msgid "upload photo" msgstr "foto uploaden" -#: ../../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 +#: ../../include/conversation.php:1136 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:232 ../../mod/mail.php:346 msgid "Attach file" msgstr "Bestand toevoegen" @@ -581,9 +336,9 @@ msgstr "Bestand toevoegen" msgid "attach file" msgstr "bestand toevoegen" -#: ../../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 +#: ../../include/conversation.php:1138 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:142 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:233 ../../mod/mail.php:347 msgid "Insert web link" msgstr "Weblink invoegen" @@ -607,9 +362,9 @@ msgstr "Audiolink invoegen" msgid "audio link" msgstr "audiolink" -#: ../../include/conversation.php:1144 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 +#: ../../include/conversation.php:1144 ../../mod/editblock.php:150 +#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:181 msgid "Set your location" msgstr "Locatie instellen" @@ -617,9 +372,9 @@ msgstr "Locatie instellen" msgid "set location" msgstr "locatie instellen" -#: ../../include/conversation.php:1146 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 +#: ../../include/conversation.php:1146 ../../mod/editblock.php:151 +#: ../../mod/editlayout.php:147 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:182 msgid "Clear browser location" msgstr "Locatie van webbrowser wissen" @@ -627,21 +382,21 @@ msgstr "Locatie van webbrowser wissen" msgid "clear location" msgstr "locatie wissen" -#: ../../include/conversation.php:1149 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 +#: ../../include/conversation.php:1149 ../../mod/editblock.php:164 +#: ../../mod/editlayout.php:159 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:198 msgid "Set title" msgstr "Titel instellen" #: ../../include/conversation.php:1152 ../../mod/events.php:563 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 -#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:169 +#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 +#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:200 msgid "Categories (comma-separated list)" msgstr "Categorieën (door komma's gescheiden lijst)" -#: ../../include/conversation.php:1154 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 +#: ../../include/conversation.php:1154 ../../mod/editblock.php:153 +#: ../../mod/editlayout.php:149 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:184 msgid "Permission settings" msgstr "Permissies" @@ -649,21 +404,21 @@ msgstr "Permissies" msgid "permissions" msgstr "permissies" -#: ../../include/conversation.php:1162 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 +#: ../../include/conversation.php:1162 ../../mod/editblock.php:161 +#: ../../mod/editlayout.php:156 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:193 msgid "Public post" msgstr "Openbaar bericht" -#: ../../include/conversation.php:1164 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 +#: ../../include/conversation.php:1164 ../../mod/editblock.php:168 +#: ../../mod/editlayout.php:163 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:201 msgid "Example: bob@example.com, mary@example.com" msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" -#: ../../include/conversation.php: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 +#: ../../include/conversation.php:1177 ../../mod/editblock.php:178 +#: ../../mod/editlayout.php:173 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:238 ../../mod/mail.php:352 msgid "Set expiration date" msgstr "Verloopdatum instellen" @@ -677,9 +432,9 @@ msgstr "Tekst versleutelen" msgid "OK" msgstr "OK" -#: ../../include/conversation.php:1182 ../../mod/settings.php:550 -#: ../../mod/settings.php:576 ../../mod/events.php:568 -#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 +#: ../../include/conversation.php:1182 ../../mod/events.php:568 +#: ../../mod/editpost.php:151 ../../mod/settings.php:550 +#: ../../mod/settings.php:576 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "Annuleren" @@ -717,7 +472,7 @@ msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" #: ../../include/conversation.php:1458 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 +#: ../../mod/connections.php:224 ../../mod/menu.php:80 msgid "New" msgstr "Nieuw" @@ -741,39 +496,60 @@ msgstr "Spam" msgid "Posts flagged as SPAM" msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/conversation.php:1516 ../../mod/admin.php:867 +#: ../../include/conversation.php:1520 ../../mod/admin.php:865 msgid "Channel" msgstr "Kanaal" -#: ../../include/conversation.php:1519 +#: ../../include/conversation.php:1523 msgid "Status Messages and Posts" msgstr "Berichten in dit kanaal" -#: ../../include/conversation.php:1528 +#: ../../include/conversation.php:1532 msgid "About" msgstr "Over" -#: ../../include/conversation.php:1531 +#: ../../include/conversation.php:1535 msgid "Profile Details" msgstr "Profiel" -#: ../../include/conversation.php:1540 ../../include/photos.php:340 +#: ../../include/conversation.php:1541 ../../include/nav.php:105 +#: ../../include/apps.php:137 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto's" + +#: ../../include/conversation.php:1544 ../../include/photos.php:341 msgid "Photo Albums" msgstr "Fotoalbums" -#: ../../include/conversation.php:1549 +#: ../../include/conversation.php:1550 ../../include/RedDAV/RedBrowser.php:241 +#: ../../include/nav.php:106 ../../include/apps.php:133 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Bestanden" + +#: ../../include/conversation.php:1553 msgid "Files and Storage" msgstr "Bestanden en opslagruimte" -#: ../../include/conversation.php:1559 ../../include/conversation.php:1562 +#: ../../include/conversation.php:1563 ../../include/conversation.php:1566 msgid "Chatrooms" msgstr "Chatkanalen" -#: ../../include/conversation.php:1575 +#: ../../include/conversation.php:1576 ../../include/nav.php:117 +#: ../../include/apps.php:127 +msgid "Bookmarks" +msgstr "Bladwijzers" + +#: ../../include/conversation.php:1579 msgid "Saved Bookmarks" msgstr "Opgeslagen bladwijzers" -#: ../../include/conversation.php:1586 +#: ../../include/conversation.php:1587 ../../include/nav.php:121 +#: ../../include/apps.php:134 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "Webpagina's" + +#: ../../include/conversation.php:1590 msgid "Manage Webpages" msgstr "Webpagina's beheren" @@ -786,62 +562,136 @@ msgstr "maakte een nieuw bericht aan" msgid "commented on %s's post" msgstr "gaf een reactie op een bericht van %s" +#: ../../include/dir_fns.php:56 +msgid "Sort Options" +msgstr "Sorteeropties" + +#: ../../include/dir_fns.php:57 +msgid "Alphabetic" +msgstr "Alfabetisch" + +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" + +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" + +#: ../../include/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "Veilig zoeken inschakelen" + +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "Veilig zoeken uitschakelen" + +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" +msgstr "Veilig zoeken" + #: ../../include/page_widgets.php:6 msgid "New Page" msgstr "Nieuwe pagina" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 -#: ../../mod/webpages.php:134 ../../mod/layouts.php:125 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:250 ../../include/menu.php:42 +#: ../../include/apps.php:249 ../../include/ItemObject.php:100 +#: ../../mod/blocks.php:132 ../../mod/connections.php:381 +#: ../../mod/connections.php:394 ../../mod/connections.php:413 +#: ../../mod/thing.php:233 ../../mod/webpages.php:162 +#: ../../mod/editblock.php:143 ../../mod/editlayout.php:139 +#: ../../mod/editpost.php:112 ../../mod/settings.php:611 +#: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 +#: ../../mod/menu.php:78 +msgid "Edit" +msgstr "Bewerken" + +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 msgid "View" msgstr "Weergeven" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 msgid "Actions" msgstr "Acties" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 msgid "Page Link" msgstr "Paginalink" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 msgid "Title" msgstr "Titel" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 msgid "Created" msgstr "Aangemaakt" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 msgid "Edited" msgstr "Bewerkt" -#: ../../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/chat.php:10 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:463 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:469 -msgid "Starts:" -msgstr "Start:" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:477 -msgid "Finishes:" -msgstr "Einde:" +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" -#: ../../include/event.php:40 ../../include/bb2diaspora.php:485 -#: ../../include/identity.php:891 ../../mod/events.php:579 -#: ../../mod/directory.php:156 ../../mod/dirprofile.php:105 -msgid "Location:" -msgstr "Plaats:" +#: ../../include/chat.php:116 ../../include/items.php:4013 +#: ../../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 +#: ../../mod/mood.php:112 ../../mod/mitem.php:106 +#: ../../mod/achievements.php:30 ../../mod/profiles.php:179 +#: ../../mod/profiles.php:550 ../../mod/setup.php:207 ../../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/sources.php:66 ../../mod/blocks.php:67 +#: ../../mod/blocks.php:75 ../../mod/register.php:72 ../../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/regmod.php:17 ../../mod/network.php:12 ../../mod/common.php:35 +#: ../../mod/photos.php:68 ../../mod/connections.php:169 +#: ../../mod/manage.php:6 ../../mod/connedit.php:266 ../../mod/thing.php:247 +#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/webpages.php:67 +#: ../../mod/bookmarks.php:46 ../../mod/editblock.php:65 +#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:64 +#: ../../mod/editlayout.php:89 ../../mod/editpost.php:13 +#: ../../mod/settings.php:526 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 +#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/item.php:191 +#: ../../mod/item.php:199 ../../mod/item.php:971 ../../mod/like.php:154 +#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:71 +#: ../../mod/layouts.php:67 ../../mod/layouts.php:74 ../../mod/layouts.php:85 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/viewsrc.php:14 ../../mod/mail.php:111 ../../mod/menu.php:61 +#: ../../mod/message.php:16 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 +#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/appman.php:66 +#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 +msgid "Permission denied." +msgstr "Toegang geweigerd" -#: ../../include/event.php:326 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "Chatkanaal is vol" #: ../../include/oembed.php:171 msgid "Embedded content" @@ -851,143 +701,217 @@ msgstr "Ingesloten inhoud" msgid "Embedding disabled" msgstr "Insluiten uitgeschakeld" -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 +#: ../../include/taxonomy.php:230 +msgid "Categories" +msgstr "Categorieën" -#: ../../include/permissions.php:14 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" +#: ../../include/widgets.php:86 ../../include/nav.php:171 +#: ../../mod/apps.php:33 +msgid "Apps" +msgstr "Apps" -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" -msgstr "Kan mijn fotoalbums bekijken" +#: ../../include/widgets.php:87 +msgid "System" +msgstr "Systeem" -#: ../../include/permissions.php:16 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" +#: ../../include/widgets.php:90 +msgid "Create Personal App" +msgstr "Persoonlijke app maken" -#: ../../include/permissions.php:17 -msgid "Can view my file storage" -msgstr "Kan mijn bestanden bekijken" +#: ../../include/widgets.php:91 +msgid "Edit Personal App" +msgstr "Persoonlijke app bewerken" -#: ../../include/permissions.php:18 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" -#: ../../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:143 ../../mod/connections.php:267 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Meer..." -#: ../../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: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:24 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Kan foto's aan mijn fotoalbums toevoegen" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Vul het adres van het nieuwe kanaal in" -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../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:26 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" +#: ../../include/widgets.php:191 +msgid "Notes" +msgstr "Aantekeningen" -#: ../../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:193 ../../include/text.php:827 +#: ../../include/text.php:839 ../../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/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor kanalen met een groep- cq. forumfunctie" +#: ../../include/widgets.php:263 +msgid "Remove term" +msgstr "Verwijder zoekterm" -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" +#: ../../include/widgets.php:272 ../../include/features.php:58 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" -#: ../../include/permissions.php:30 -msgid "Can write to my file storage" -msgstr "Kan bestanden aan mijn bestandsopslag toevoegen" +#: ../../include/widgets.php:273 ../../include/group.php:303 +msgid "add" +msgstr "toevoegen" -#: ../../include/permissions.php:31 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" +#: ../../include/widgets.php:303 ../../include/contact_widgets.php:57 +#: ../../include/features.php:72 +msgid "Saved Folders" +msgstr "Bewaarde mappen" -#: ../../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:306 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Alles" -#: ../../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:352 +msgid "Archives" +msgstr "Archieven" -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" +#: ../../include/widgets.php:428 +msgid "Refresh" +msgstr "Vernieuwen" -#: ../../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:429 ../../mod/connedit.php:506 +msgid "Me" +msgstr "Ik" -#: ../../include/permissions.php:785 -msgid "Social Networking" -msgstr "Sociaal netwerk" +#: ../../include/widgets.php:430 ../../mod/connedit.php:508 +msgid "Best Friends" +msgstr "Goede vrienden" -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -#: ../../include/permissions.php:790 -msgid "Mostly Public" -msgstr "Vrijwel alles openbaar" +#: ../../include/widgets.php:431 ../../include/identity.php:387 +#: ../../include/identity.php:388 ../../include/identity.php:395 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:509 +#: ../../mod/settings.php:304 ../../mod/settings.php:308 +#: ../../mod/settings.php:309 ../../mod/settings.php:312 +#: ../../mod/settings.php:323 +msgid "Friends" +msgstr "Vrienden" -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -#: ../../include/permissions.php:790 -msgid "Restricted" -msgstr "Beperkt zichtbaar" +#: ../../include/widgets.php:432 +msgid "Co-workers" +msgstr "Collega's" -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -msgid "Private" -msgstr "Verborgen kanaal" +#: ../../include/widgets.php:433 ../../mod/connedit.php:510 +msgid "Former Friends" +msgstr "Oude vrienden" -#: ../../include/permissions.php:787 -msgid "Community Forum" -msgstr "Groepsforum" +#: ../../include/widgets.php:434 ../../mod/connedit.php:511 +msgid "Acquaintances" +msgstr "Kennissen" -#: ../../include/permissions.php:789 -msgid "Feed Republish" -msgstr "Feed herpubliceren" +#: ../../include/widgets.php:435 +msgid "Everybody" +msgstr "Iedereen" -#: ../../include/permissions.php:791 -msgid "Special Purpose" -msgstr "Speciaal doel" +#: ../../include/widgets.php:469 +msgid "Account settings" +msgstr "Account" -#: ../../include/permissions.php:792 -msgid "Celebrity/Soapbox" -msgstr "Beroemdheid/alleen volgen" +#: ../../include/widgets.php:475 +msgid "Channel settings" +msgstr "Kanaal" -#: ../../include/permissions.php:792 -msgid "Group Repository" -msgstr "Groepsopslag" +#: ../../include/widgets.php:481 +msgid "Additional features" +msgstr "Extra functies" -#: ../../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 "Anders" +#: ../../include/widgets.php:487 +msgid "Feature settings" +msgstr "Plug-ins" -#: ../../include/permissions.php:794 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" +#: ../../include/widgets.php:493 +msgid "Display settings" +msgstr "Weergave" + +#: ../../include/widgets.php:499 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: ../../include/widgets.php:505 +msgid "Export channel" +msgstr "Kanaal exporteren" + +#: ../../include/widgets.php:511 +msgid "Export content" +msgstr "Inhoud exporteren" + +#: ../../include/widgets.php:520 ../../mod/connedit.php:538 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" + +#: ../../include/widgets.php:528 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" + +#: ../../include/widgets.php:537 ../../include/features.php:49 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanaalbronnen" + +#: ../../include/widgets.php:548 ../../include/nav.php:218 +#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 +msgid "Settings" +msgstr "Instellingen" + +#: ../../include/widgets.php:562 ../../mod/mail.php:124 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "Berichten" + +#: ../../include/widgets.php:567 +msgid "Check Mail" +msgstr "Controleer op nieuwe berichten" + +#: ../../include/widgets.php:572 ../../include/nav.php:209 +msgid "New Message" +msgstr "Nieuw bericht" + +#: ../../include/widgets.php:648 +msgid "Chat Rooms" +msgstr "Chatkanalen" + +#: ../../include/widgets.php:666 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" + +#: ../../include/widgets.php:684 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" + +#: ../../include/zot.php:664 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" + +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " + +#: ../../include/zot.php:1799 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" #: ../../include/activities.php:39 msgid " and " @@ -1012,121 +936,31 @@ 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/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" - -#: ../../include/datetime.php:241 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:247 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:250 -msgid "year" -msgstr "jaar" - -#: ../../include/datetime.php:250 -msgid "years" -msgstr "jaren" - -#: ../../include/datetime.php:251 -msgid "month" -msgstr "maand" - -#: ../../include/datetime.php:251 -msgid "months" -msgstr "maanden" - -#: ../../include/datetime.php:252 -msgid "week" -msgstr "week" - -#: ../../include/datetime.php:252 -msgid "weeks" -msgstr "weken" - -#: ../../include/datetime.php:253 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:253 -msgid "days" -msgstr "dagen" - -#: ../../include/datetime.php:254 -msgid "hour" -msgstr "uur" - -#: ../../include/datetime.php:254 -msgid "hours" -msgstr "uren" - -#: ../../include/datetime.php:255 -msgid "minute" -msgstr "minuut" - -#: ../../include/datetime.php:255 -msgid "minutes" -msgstr "minuten" - -#: ../../include/datetime.php:256 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:256 -msgid "seconds" -msgstr "seconden" - -#: ../../include/datetime.php:265 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/datetime.php:470 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" - -#: ../../include/datetime.php:471 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" - #: ../../include/bb2diaspora.php:384 msgid "Attachments:" msgstr "Bijlagen:" +#: ../../include/bb2diaspora.php:463 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + #: ../../include/bb2diaspora.php:465 msgid "Redmatrix event notification:" msgstr "Notificatie RedMatrix-gebeurtenis:" -#: ../../include/zot.php:661 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" +#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 +msgid "Starts:" +msgstr "Start:" -#: ../../include/zot.php:677 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " +#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Einde:" -#: ../../include/zot.php:1791 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" - -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" - -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Inloggen mislukt." +#: ../../include/bb2diaspora.php:485 ../../include/event.php:40 +#: ../../include/identity.php:891 ../../mod/directory.php:159 +#: ../../mod/events.php:579 +msgid "Location:" +msgstr "Plaats:" #: ../../include/RedDAV/RedBrowser.php:106 #: ../../include/RedDAV/RedBrowser.php:249 @@ -1168,7 +1002,7 @@ msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s van %2$s gebruikt (%3$s%)" #: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:551 -#: ../../mod/settings.php:577 ../../mod/admin.php:868 +#: ../../mod/settings.php:577 ../../mod/admin.php:866 msgid "Name" msgstr "Naam" @@ -1192,8 +1026,8 @@ msgstr "Totaal" msgid "Create new folder" msgstr "Nieuwe map aanmaken" -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:142 -#: ../../mod/menu.php:84 ../../mod/new_channel.php:122 +#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:169 +#: ../../mod/menu.php:100 ../../mod/new_channel.php:122 msgid "Create" msgstr "Aanmaken" @@ -1201,8 +1035,8 @@ msgstr "Aanmaken" msgid "Upload file" msgstr "Bestand uploaden" -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:736 -#: ../../mod/photos.php:1241 ../../mod/profile_photo.php:361 +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:738 +#: ../../mod/photos.php:1245 ../../mod/profile_photo.php:361 msgid "Upload" msgstr "Uploaden" @@ -1211,7 +1045,40 @@ msgstr "Uploaden" msgid "%1$s's bookmarks" msgstr "Bladwijzers van %1$s" -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." + +#: ../../include/follow.php:135 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." + +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." + +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "lokale account niet gevonden." + +#: ../../include/follow.php:220 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" + +#: ../../include/comanche.php:35 ../../mod/admin.php:353 +#: ../../view/theme/apw/php/config.php:185 msgid "Default" msgstr "Standaard" @@ -1251,8 +1118,8 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:728 -#: ../../mod/admin.php:737 ../../boot.php:1515 +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 +#: ../../mod/admin.php:735 ../../boot.php:1488 msgid "Email" msgstr "E-mail" @@ -1287,7 +1154,7 @@ msgid_plural "%d invitations available" msgstr[0] "%d uitnodiging beschikbaar" msgstr[1] "%d uitnodigingen beschikbaar" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 msgid "Advanced" msgstr "Geavanceerd" @@ -1307,8 +1174,8 @@ msgstr "Verbinden/volgen" 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 +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:267 +#: ../../mod/directory.php:272 ../../mod/connections.php:412 msgid "Find" msgstr "Vinden" @@ -1325,231 +1192,20 @@ 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" +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en 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/taxonomy.php:230 -#: ../../include/widgets.php:29 -msgid "Categories" -msgstr "Categorieën" - -#: ../../include/contact_widgets.php:126 +#: ../../include/contact_widgets.php:125 #, php-format msgid "%d connection in common" msgid_plural "%d connections in common" msgstr[0] "%d gemeenschappelijke connectie" msgstr[1] "%d gemeenschappelijke connecties" -#: ../../include/contact_widgets.php:131 +#: ../../include/contact_widgets.php:130 msgid "show more" msgstr "meer connecties weergeven" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd." - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Beheerder" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." - -#: ../../include/account.php:647 ../../include/account.php:649 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../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/account.php:660 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." - -#: ../../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/bbcode.php:147 ../../include/bbcode.php:703 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "Installeer ontwerp-onderdeel" - -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "QR-code" - -#: ../../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/bbcode.php:222 -msgid "post" -msgstr "bericht" - -#: ../../include/bbcode.php:621 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:641 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: ../../include/dir_fns.php:56 -msgid "Sort Options" -msgstr "Sorteeropties" - -#: ../../include/dir_fns.php:57 -msgid "Alphabetic" -msgstr "Alfabetisch" - -#: ../../include/dir_fns.php:58 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" - -#: ../../include/dir_fns.php:59 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" - -#: ../../include/dir_fns.php:71 -msgid "Enable Safe Search" -msgstr "Veilig zoeken inschakelen" - -#: ../../include/dir_fns.php:73 -msgid "Disable Safe Search" -msgstr "Veilig zoeken uitschakelen" - -#: ../../include/dir_fns.php:75 -msgid "Safe Mode" -msgstr "Veilig zoeken" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Labels" - -#: ../../include/taxonomy.php:249 -msgid "Keywords" -msgstr "Trefwoorden" - -#: ../../include/taxonomy.php:274 -msgid "have" -msgstr "heb" - -#: ../../include/taxonomy.php:274 -msgid "has" -msgstr "heeft" - -#: ../../include/taxonomy.php:275 -msgid "want" -msgstr "wil" - -#: ../../include/taxonomy.php:275 -msgid "wants" -msgstr "wil" - -#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 -msgid "like" -msgstr "vind dit leuk" - -#: ../../include/taxonomy.php:276 -msgid "likes" -msgstr "vindt dit leuk" - -#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "vind dit niet leuk" - -#: ../../include/taxonomy.php:277 -msgid "dislikes" -msgstr "vindt dit niet leuk" - -#: ../../include/taxonomy.php:360 ../../include/identity.php:1146 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1023 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "vindt dit leuk" -msgstr[1] "vinden dit leuk" - #: ../../include/enotify.php:41 msgid "Red Matrix Notification" msgstr "RedMatrix-notificatie" @@ -1746,411 +1402,517 @@ msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." msgid "[Red:Notify]" msgstr "[Red:Notificatie]" -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" +#: ../../include/event.php:326 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Standaard privacy-collectie voor nieuwe kanalen" -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" +#: ../../include/group.php:254 ../../mod/admin.php:735 +msgid "All Channels" +msgstr "Alle kanalen" -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Chatkanaal is vol" +#: ../../include/group.php:276 +msgid "edit" +msgstr "bewerken" -#: ../../include/items.php:377 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "Toegang geweigerd" +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Collecties" -#: ../../include/items.php:964 ../../include/items.php:1009 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Collectie bewerken" -#: ../../include/items.php:1165 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../include/group.php:300 +msgid "Create a new collection" +msgstr "Nieuwe collectie aanmaken" -#: ../../include/items.php:1167 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanalen die zich in geen enkele collectie bevinden" -#: ../../include/items.php:1169 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../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/items.php:1171 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." +#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" -#: ../../include/items.php:1173 +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "Installeer ontwerp-onderdeel" + +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "QR-code" + +#: ../../include/bbcode.php:220 #, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" -#: ../../include/items.php:1175 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../include/bbcode.php:222 +msgid "post" +msgstr "bericht" -#: ../../include/items.php:1177 -msgid "Visible to approved connections." -msgstr "Voor alle goedgekeurde connecties zichtbaar." +#: ../../include/bbcode.php:621 +msgid "$1 spoiler" +msgstr "$1 spoiler" -#: ../../include/items.php:1179 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../include/bbcode.php:641 +msgid "$1 wrote:" +msgstr "$1 schreef:" -#: ../../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 "Item niet gevonden." +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Labels" -#: ../../include/items.php:4394 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Collectie niet gevonden." +#: ../../include/taxonomy.php:249 +msgid "Keywords" +msgstr "Trefwoorden" -#: ../../include/items.php:4409 -msgid "Collection is empty." -msgstr "Collectie is leeg" +#: ../../include/taxonomy.php:274 +msgid "have" +msgstr "heb" -#: ../../include/items.php:4416 +#: ../../include/taxonomy.php:274 +msgid "has" +msgstr "heeft" + +#: ../../include/taxonomy.php:275 +msgid "want" +msgstr "wil" + +#: ../../include/taxonomy.php:275 +msgid "wants" +msgstr "wil" + +#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 +msgid "like" +msgstr "vind dit leuk" + +#: ../../include/taxonomy.php:276 +msgid "likes" +msgstr "vindt dit leuk" + +#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "vind dit niet leuk" + +#: ../../include/taxonomy.php:277 +msgid "dislikes" +msgstr "vindt dit niet leuk" + +#: ../../include/taxonomy.php:360 ../../include/identity.php:1148 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1026 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" + +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1485 +msgid "Logout" +msgstr "Uitloggen" + +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" +msgstr "Beëindig deze sessie" + +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:98 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" + +#: ../../include/nav.php:99 +msgid "Your profile page" +msgstr "Jouw profielpagina" + +#: ../../include/nav.php:101 +msgid "Edit Profiles" +msgstr "Bewerk profielen" + +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" + +#: ../../include/nav.php:103 ../../include/identity.php:864 +msgid "Edit Profile" +msgstr "Profiel bewerken" + +#: ../../include/nav.php:103 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" + +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "Jouw foto's" + +#: ../../include/nav.php:106 +msgid "Your files" +msgstr "Jouw bestanden" + +#: ../../include/nav.php:111 ../../include/apps.php:144 +msgid "Chat" +msgstr "Chatten" + +#: ../../include/nav.php:111 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" + +#: ../../include/nav.php:117 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" + +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "Jouw webpagina's" + +#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1486 +msgid "Login" +msgstr "Inloggen" + +#: ../../include/nav.php:125 +msgid "Sign in" +msgstr "Inloggen" + +#: ../../include/nav.php:142 #, php-format -msgid "Collection: %s" -msgstr "Collectie: %s" +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" -#: ../../include/items.php:4427 +#: ../../include/nav.php:145 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" + +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" + +#: ../../include/nav.php:159 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1464 +msgid "Register" +msgstr "Registreren" + +#: ../../include/nav.php:163 +msgid "Create an account" +msgstr "Maak een account aan" + +#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" +msgstr "Hulp" + +#: ../../include/nav.php:168 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" +msgstr "Apps" + +#: ../../include/nav.php:173 ../../include/text.php:826 +#: ../../include/text.php:838 ../../include/apps.php:145 +#: ../../mod/search.php:30 +msgid "Search" +msgstr "Zoeken" + +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "Inhoud van deze RedMatrix-hub doorzoeken" + +#: ../../include/nav.php:176 ../../include/apps.php:139 +#: ../../mod/directory.php:271 +msgid "Directory" +msgstr "Kanalengids" + +#: ../../include/nav.php:176 +msgid "Channel Directory" +msgstr "Kanalengids" + +#: ../../include/nav.php:190 ../../include/apps.php:131 +msgid "Matrix" +msgstr "Matrix" + +#: ../../include/nav.php:190 +msgid "Your matrix" +msgstr "Jouw matrix" + +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" +msgstr "Markeer alle matrixnotificaties als bekeken" + +#: ../../include/nav.php:193 ../../include/apps.php:135 +msgid "Channel Home" +msgstr "Tijdlijn kanaal" + +#: ../../include/nav.php:193 +msgid "Channel home" +msgstr "Tijdlijn kanaal" + +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" + +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" +msgstr "Connecties" + +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "Notificaties" + +#: ../../include/nav.php:200 +msgid "Notifications" +msgstr "Notificaties" + +#: ../../include/nav.php:201 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" + +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" + +#: ../../include/nav.php:204 ../../include/apps.php:141 +msgid "Mail" +msgstr "Privéberichten" + +#: ../../include/nav.php:204 +msgid "Private mail" +msgstr "Privéberichten" + +#: ../../include/nav.php:205 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" + +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" + +#: ../../include/nav.php:207 +msgid "Inbox" +msgstr "Postvak IN" + +#: ../../include/nav.php:208 +msgid "Outbox" +msgstr "Postvak UIT" + +#: ../../include/nav.php:212 ../../include/apps.php:138 +#: ../../mod/events.php:431 +msgid "Events" +msgstr "Agenda" + +#: ../../include/nav.php:212 +msgid "Event Calendar" +msgstr "Agenda" + +#: ../../include/nav.php:213 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" + +#: ../../include/nav.php:214 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" + +#: ../../include/nav.php:216 ../../include/apps.php:130 +#: ../../mod/manage.php:148 +msgid "Channel Manager" +msgstr "Kanaalbeheer" + +#: ../../include/nav.php:216 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" + +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" + +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" +msgstr "Beheer" + +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" + +#: ../../include/nav.php:262 +msgid "Please wait..." +msgstr "Wachten aub..." + +#: ../../include/permissions.php:13 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" + +#: ../../include/permissions.php:14 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" + +#: ../../include/permissions.php:15 +msgid "Can view my photo albums" +msgstr "Kan mijn fotoalbums bekijken" + +#: ../../include/permissions.php:16 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" + +#: ../../include/permissions.php:17 +msgid "Can view my file storage" +msgstr "Kan mijn bestanden bekijken" + +#: ../../include/permissions.php:18 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" + +#: ../../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/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" + +#: ../../include/permissions.php:23 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" + +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" + +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" +msgstr "Kan foto's aan mijn fotoalbums toevoegen" + +#: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" + +#: ../../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 groepforums" + +#: ../../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:785 +msgid "Social Networking" +msgstr "Sociaal netwerk" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Mostly Public" +msgstr "Vrijwel alles openbaar" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Restricted" +msgstr "Beperkt zichtbaar" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +msgid "Private" +msgstr "Verborgen kanaal" + +#: ../../include/permissions.php:787 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../include/permissions.php:789 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../include/permissions.php:791 +msgid "Special Purpose" +msgstr "Speciaal doel" + +#: ../../include/permissions.php:792 +msgid "Celebrity/Soapbox" +msgstr "Beroemdheid/alleen volgen" + +#: ../../include/permissions.php:792 +msgid "Group Repository" +msgstr "Groepsopslag" + +#: ../../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 "Anders" + +#: ../../include/permissions.php:794 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" + +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Nieuw venster" + +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" + +#: ../../include/Contact.php:211 ../../mod/admin.php:646 #, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" - -#: ../../include/items.php:4430 -msgid "Connection not found." -msgstr "Connectie niet gevonden." - -#: ../../include/text.php:321 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:323 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:352 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:355 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:367 -msgid "older" -msgstr "ouder" - -#: ../../include/text.php:369 -msgid "newer" -msgstr "nieuwer" - -#: ../../include/text.php:736 -msgid "No connections" -msgstr "Geen connecties" - -#: ../../include/text.php:749 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d connectie" -msgstr[1] "%d connecties" - -#: ../../include/text.php:762 -msgid "View Connections" -msgstr "Connecties weergeven" - -#: ../../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 "Opslaan" - -#: ../../include/text.php:901 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:902 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:902 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:903 -msgid "prod" -msgstr "por" - -#: ../../include/text.php:903 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:904 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:904 -msgid "slapped" -msgstr "sloeg" - -#: ../../include/text.php:905 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:905 -msgid "fingered" -msgstr "gefingerd" - -#: ../../include/text.php:906 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:906 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:915 -msgid "happy" -msgstr "gelukkig" - -#: ../../include/text.php:916 -msgid "sad" -msgstr "bedroefd" - -#: ../../include/text.php:917 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:918 -msgid "tired" -msgstr "moe" - -#: ../../include/text.php:919 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:920 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:921 -msgid "stupified" -msgstr "beteuterd" - -#: ../../include/text.php:922 -msgid "puzzled" -msgstr "verward" - -#: ../../include/text.php:923 -msgid "interested" -msgstr "geïnteresseerd" - -#: ../../include/text.php:924 -msgid "bitter" -msgstr "verbitterd" - -#: ../../include/text.php:925 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:926 -msgid "alive" -msgstr "levendig" - -#: ../../include/text.php:927 -msgid "annoyed" -msgstr "geërgerd" - -#: ../../include/text.php:928 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:929 -msgid "cranky" -msgstr "humeurig" - -#: ../../include/text.php:930 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:931 -msgid "frustrated" -msgstr "gefrustreerd " - -#: ../../include/text.php:932 -msgid "depressed" -msgstr "gedeprimeerd" - -#: ../../include/text.php:933 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:934 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:935 -msgid "surprised" -msgstr "verrast" - -#: ../../include/text.php:1099 -msgid "Monday" -msgstr "maandag" - -#: ../../include/text.php:1099 -msgid "Tuesday" -msgstr "dinsdag" - -#: ../../include/text.php:1099 -msgid "Wednesday" -msgstr "woensdag" - -#: ../../include/text.php:1099 -msgid "Thursday" -msgstr "donderdag" - -#: ../../include/text.php:1099 -msgid "Friday" -msgstr "vrijdag" - -#: ../../include/text.php:1099 -msgid "Saturday" -msgstr "zaterdag" - -#: ../../include/text.php:1099 -msgid "Sunday" -msgstr "zondag" - -#: ../../include/text.php:1103 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1103 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1103 -msgid "March" -msgstr "maart" - -#: ../../include/text.php:1103 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1103 -msgid "May" -msgstr "mei" - -#: ../../include/text.php:1103 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1103 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1103 -msgid "August" -msgstr "augustus" - -#: ../../include/text.php:1103 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1103 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1103 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1103 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1181 -msgid "unknown.???" -msgstr "onbekend.???" - -#: ../../include/text.php:1182 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1221 -msgid "remove category" -msgstr "categorie verwijderen" - -#: ../../include/text.php:1291 -msgid "remove from file" -msgstr "uit map verwijderen" - -#: ../../include/text.php:1356 ../../include/text.php:1368 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" - -#: ../../include/text.php:1523 ../../mod/events.php:409 -msgid "Link to Source" -msgstr "Originele locatie" - -#: ../../include/text.php:1542 -msgid "Select a page layout: " -msgstr "Kies een paginalay-out: " - -#: ../../include/text.php:1545 ../../include/text.php:1610 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1581 -msgid "Page content type: " -msgstr "Opmaakcode pagina" - -#: ../../include/text.php:1622 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1756 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:2028 -msgid "Design" -msgstr "Ontwerp" - -#: ../../include/text.php:2030 -msgid "Blocks" -msgstr "Blokken" - -#: ../../include/text.php:2031 -msgid "Menus" -msgstr "Menu's" - -#: ../../include/text.php:2032 -msgid "Layouts" -msgstr "Lay-outs" - -#: ../../include/text.php:2033 -msgid "Pages" -msgstr "Pagina's" +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" #: ../../include/features.php:23 msgid "General Features" @@ -2260,11 +2022,6 @@ msgstr "Voorvertoning" msgid "Allow previewing posts and comments before publishing them" msgstr "Een optie om je berichten en reacties voor het definitief publiceren voor te vertonen" -#: ../../include/features.php:49 ../../include/widgets.php:537 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanaalbronnen" - #: ../../include/features.php:49 msgid "Automatically import channel content from other channels or feeds" msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." @@ -2298,10 +2055,6 @@ msgstr "Filter op collecties" msgid "Enable widget to display Network posts only from selected collections" msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde collecties" -#: ../../include/features.php:58 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - #: ../../include/features.php:58 msgid "Save search terms for re-use" msgstr "Sla zoekopdrachten op voor hergebruik" @@ -2394,78 +2147,84 @@ msgstr "Wolk met trefwoorden/labels" msgid "Provide a personal tag cloud on your channel page" msgstr "Zorgt voor een persoonlijke wolk met trefwoorden of labels op jouw kanaalpagina" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." +#: ../../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/follow.php:82 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." +#: ../../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/follow.php:99 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" -#: ../../include/follow.php:135 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "lokale account niet gevonden." +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" -#: ../../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/account.php:313 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" -#: ../../include/group.php:234 -msgid "Default privacy group for new contacts" -msgstr "Standaard privacy-collectie voor nieuwe kanalen" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" +msgstr "Beheerder" -#: ../../include/group.php:253 ../../mod/admin.php:737 -msgid "All Channels" -msgstr "Alle kanalen" +#: ../../include/account.php:337 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" -#: ../../include/group.php:275 -msgid "edit" -msgstr "bewerken" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" -#: ../../include/group.php:297 -msgid "Collections" -msgstr "Collecties" +#: ../../include/account.php:406 +msgid "Account approved." +msgstr "Account goedgekeurd" -#: ../../include/group.php:298 -msgid "Edit collection" -msgstr "Collectie bewerken" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" -#: ../../include/group.php:299 -msgid "Create a new collection" -msgstr "Nieuwe collectie aanmaken" +#: ../../include/account.php:486 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." -#: ../../include/group.php:300 -msgid "Channels not in any collection" -msgstr "Kanalen die zich in geen enkele collectie bevinden" +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." -#: ../../include/group.php:302 ../../include/widgets.php:273 -msgid "add" -msgstr "toevoegen" +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." -#: ../../include/identity.php:31 ../../mod/item.php:1361 +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." + +#: ../../include/identity.php:31 ../../mod/item.php:1368 msgid "Unable to obtain identity information from database" msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" @@ -2502,27 +2261,19 @@ msgstr "Niet in staat om aangemaakte identiteit te vinden" msgid "Default Profile" msgstr "Standaardprofiel" -#: ../../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:509 -msgid "Friends" -msgstr "Vrienden" - #: ../../include/identity.php:643 msgid "Requested channel is not available." msgstr "Opgevraagd kanaal is niet beschikbaar." #: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/webpages.php:8 ../../mod/filestorage.php:48 -#: ../../mod/layouts.php:8 ../../mod/hcard.php:8 +#: ../../mod/connect.php:13 ../../mod/profile.php:16 ../../mod/blocks.php:29 +#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 +#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 msgid "Requested profile is not available." msgstr "Opgevraagd profiel is niet beschikbaar" -#: ../../include/identity.php:854 ../../mod/profiles.php:722 +#: ../../include/identity.php:854 ../../mod/profiles.php:740 msgid "Change profile photo" msgstr "Profielfoto veranderen" @@ -2534,15 +2285,11 @@ msgstr "Profielen" msgid "Manage/edit profiles" msgstr "Profielen beheren/bewerken" -#: ../../include/identity.php:861 ../../mod/profiles.php:723 +#: ../../include/identity.php:861 ../../mod/profiles.php:741 msgid "Create New Profile" msgstr "Nieuw profiel aanmaken" -#: ../../include/identity.php:864 ../../include/nav.php:103 -msgid "Edit Profile" -msgstr "Profiel bewerken" - -#: ../../include/identity.php:875 ../../mod/profiles.php:734 +#: ../../include/identity.php:875 ../../mod/profiles.php:752 msgid "Profile Image" msgstr "Profielfoto" @@ -2550,332 +2297,242 @@ msgstr "Profielfoto" msgid "visible to everybody" msgstr "Voor iedereen zichtbaar" -#: ../../include/identity.php:879 ../../mod/profiles.php:617 -#: ../../mod/profiles.php:738 +#: ../../include/identity.php:879 ../../mod/profiles.php:635 +#: ../../mod/profiles.php:756 msgid "Edit visibility" msgstr "Zichtbaarheid bewerken" -#: ../../include/identity.php:893 ../../include/identity.php:1130 -#: ../../mod/directory.php:158 +#: ../../include/identity.php:895 ../../include/identity.php:1132 msgid "Gender:" msgstr "Geslacht:" -#: ../../include/identity.php:894 ../../include/identity.php:1174 -#: ../../mod/directory.php:160 +#: ../../include/identity.php:896 ../../include/identity.php:1176 msgid "Status:" msgstr "Status:" -#: ../../include/identity.php:895 ../../include/identity.php:1185 -#: ../../mod/directory.php:162 +#: ../../include/identity.php:897 ../../include/identity.php:1187 msgid "Homepage:" msgstr "Homepagina:" -#: ../../include/identity.php:896 ../../mod/dirprofile.php:151 +#: ../../include/identity.php:898 msgid "Online Now" msgstr "Nu online" -#: ../../include/identity.php:974 ../../include/identity.php:1054 -#: ../../mod/ping.php:316 +#: ../../include/identity.php:976 ../../include/identity.php:1056 +#: ../../mod/ping.php:318 msgid "g A l F d" msgstr "G:i, l d F" -#: ../../include/identity.php:975 ../../include/identity.php:1055 +#: ../../include/identity.php:977 ../../include/identity.php:1057 msgid "F d" msgstr "d F" -#: ../../include/identity.php:1020 ../../include/identity.php:1095 -#: ../../mod/ping.php:338 +#: ../../include/identity.php:1022 ../../include/identity.php:1097 +#: ../../mod/ping.php:340 msgid "[today]" msgstr "[vandaag]" -#: ../../include/identity.php:1032 +#: ../../include/identity.php:1034 msgid "Birthday Reminders" msgstr "Verjaardagsherinneringen" -#: ../../include/identity.php:1033 +#: ../../include/identity.php:1035 msgid "Birthdays this week:" msgstr "Verjaardagen deze week:" -#: ../../include/identity.php:1088 +#: ../../include/identity.php:1090 msgid "[No description]" msgstr "[Geen omschrijving]" -#: ../../include/identity.php:1106 +#: ../../include/identity.php:1108 msgid "Event Reminders" msgstr "Herinneringen" -#: ../../include/identity.php:1107 +#: ../../include/identity.php:1109 msgid "Events this week:" msgstr "Gebeurtenissen deze week:" -#: ../../include/identity.php:1128 ../../mod/settings.php:984 +#: ../../include/identity.php:1122 ../../include/identity.php:1240 +#: ../../include/apps.php:136 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profiel" + +#: ../../include/identity.php:1130 ../../mod/settings.php:984 msgid "Full Name:" msgstr "Volledige naam:" -#: ../../include/identity.php:1135 +#: ../../include/identity.php:1137 msgid "Like this channel" msgstr "Vind dit kanaal leuk" -#: ../../include/identity.php:1159 +#: ../../include/identity.php:1161 msgid "j F, Y" msgstr "F j Y" -#: ../../include/identity.php:1160 +#: ../../include/identity.php:1162 msgid "j F" msgstr "F j" -#: ../../include/identity.php:1167 +#: ../../include/identity.php:1169 msgid "Birthday:" msgstr "Geboortedatum:" -#: ../../include/identity.php:1171 +#: ../../include/identity.php:1173 msgid "Age:" msgstr "Leeftijd:" -#: ../../include/identity.php:1180 +#: ../../include/identity.php:1182 #, php-format msgid "for %1$d %2$s" msgstr "voor %1$d %2$s" -#: ../../include/identity.php:1183 ../../mod/profiles.php:639 +#: ../../include/identity.php:1185 ../../mod/profiles.php:657 msgid "Sexual Preference:" msgstr "Seksuele voorkeur:" -#: ../../include/identity.php:1187 ../../mod/profiles.php:641 +#: ../../include/identity.php:1189 ../../mod/profiles.php:659 msgid "Hometown:" msgstr "Oorspronkelijk uit:" -#: ../../include/identity.php:1189 +#: ../../include/identity.php:1191 msgid "Tags:" msgstr "Trefwoorden:" -#: ../../include/identity.php:1191 ../../mod/profiles.php:642 +#: ../../include/identity.php:1193 ../../mod/profiles.php:660 msgid "Political Views:" msgstr "Politieke overtuigingen:" -#: ../../include/identity.php:1193 +#: ../../include/identity.php:1195 msgid "Religion:" msgstr "Religie:" -#: ../../include/identity.php:1195 ../../mod/directory.php:164 +#: ../../include/identity.php:1197 msgid "About:" msgstr "Over:" -#: ../../include/identity.php:1197 +#: ../../include/identity.php:1199 msgid "Hobbies/Interests:" msgstr "Hobby's/interesses:" -#: ../../include/identity.php:1199 ../../mod/profiles.php:645 +#: ../../include/identity.php:1201 ../../mod/profiles.php:663 msgid "Likes:" msgstr "Houdt van:" -#: ../../include/identity.php:1201 ../../mod/profiles.php:646 +#: ../../include/identity.php:1203 ../../mod/profiles.php:664 msgid "Dislikes:" msgstr "Houdt niet van:" -#: ../../include/identity.php:1204 +#: ../../include/identity.php:1206 msgid "Contact information and Social Networks:" msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/identity.php:1206 +#: ../../include/identity.php:1208 msgid "My other channels:" msgstr "Mijn andere kanalen" -#: ../../include/identity.php:1208 +#: ../../include/identity.php:1210 msgid "Musical interests:" msgstr "Muzikale interesses:" -#: ../../include/identity.php:1210 +#: ../../include/identity.php:1212 msgid "Books, literature:" msgstr "Boeken, literatuur:" -#: ../../include/identity.php:1212 +#: ../../include/identity.php:1214 msgid "Television:" msgstr "Televisie:" -#: ../../include/identity.php:1214 +#: ../../include/identity.php:1216 msgid "Film/dance/culture/entertainment:" msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/identity.php:1216 +#: ../../include/identity.php:1218 msgid "Love/Romance:" msgstr "Liefde/romantiek:" -#: ../../include/identity.php:1218 +#: ../../include/identity.php:1220 msgid "Work/employment:" msgstr "Werk/beroep:" -#: ../../include/identity.php:1220 +#: ../../include/identity.php:1222 msgid "School/education:" msgstr "School/opleiding:" -#: ../../include/identity.php:1240 +#: ../../include/identity.php:1242 msgid "Like this thing" msgstr "Vind dit ding leuk" -#: ../../include/widgets.php:86 ../../include/nav.php:171 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Apps" +#: ../../include/items.php:377 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 +#: ../../index.php:389 +msgid "Permission denied" +msgstr "Toegang geweigerd" -#: ../../include/widgets.php:87 -msgid "System" -msgstr "Systeem" +#: ../../include/items.php:964 ../../include/items.php:1009 +msgid "(Unknown)" +msgstr "(Onbekend)" -#: ../../include/widgets.php:90 -msgid "Create Personal App" -msgstr "Persoonlijke app maken" +#: ../../include/items.php:1165 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." -#: ../../include/widgets.php:91 -msgid "Edit Personal App" -msgstr "Persoonlijke app bewerken" +#: ../../include/items.php:1167 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" +#: ../../include/items.php:1169 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../include/items.php:1171 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Meer..." - -#: ../../include/widgets.php:166 +#: ../../include/items.php:1173 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" +#: ../../include/items.php:1175 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Vul het adres van het nieuwe kanaal in" +#: ../../include/items.php:1177 +msgid "Visible to approved connections." +msgstr "Voor alle goedgekeurde connecties zichtbaar." -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: bob@example.com, http://example.com/barbara" +#: ../../include/items.php:1179 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." -#: ../../include/widgets.php:191 -msgid "Notes" -msgstr "Aantekeningen" +#: ../../include/items.php:3946 ../../mod/thing.php:76 +#: ../../mod/display.php:32 ../../mod/filestorage.php:26 +#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Item niet gevonden." -#: ../../include/widgets.php:263 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: ../../include/items.php:4402 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Collectie niet gevonden." -#: ../../include/widgets.php:352 -msgid "Archives" -msgstr "Archieven" +#: ../../include/items.php:4417 +msgid "Collection is empty." +msgstr "Collectie is leeg" -#: ../../include/widgets.php:428 -msgid "Refresh" -msgstr "Vernieuwen" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:506 -msgid "Me" -msgstr "Ik" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:508 -msgid "Best Friends" -msgstr "Goede vrienden" - -#: ../../include/widgets.php:432 -msgid "Co-workers" -msgstr "Collega's" - -#: ../../include/widgets.php:433 ../../mod/connedit.php:510 -msgid "Former Friends" -msgstr "Oude vrienden" - -#: ../../include/widgets.php:434 ../../mod/connedit.php:511 -msgid "Acquaintances" -msgstr "Kennissen" - -#: ../../include/widgets.php:435 -msgid "Everybody" -msgstr "Iedereen" - -#: ../../include/widgets.php:469 -msgid "Account settings" -msgstr "Account" - -#: ../../include/widgets.php:475 -msgid "Channel settings" -msgstr "Kanaal" - -#: ../../include/widgets.php:481 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../include/widgets.php:487 -msgid "Feature settings" -msgstr "Plug-ins" - -#: ../../include/widgets.php:493 -msgid "Display settings" -msgstr "Weergave" - -#: ../../include/widgets.php:499 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../include/widgets.php:505 -msgid "Export channel" -msgstr "Kanaal exporteren" - -#: ../../include/widgets.php:511 -msgid "Export content" -msgstr "Inhoud exporteren" - -#: ../../include/widgets.php:520 ../../mod/connedit.php:538 -msgid "Connection Default Permissions" -msgstr "Standaard permissies voor connecties" - -#: ../../include/widgets.php:528 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" - -#: ../../include/widgets.php:562 ../../mod/mail.php:124 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Berichten" - -#: ../../include/widgets.php:567 -msgid "Check Mail" -msgstr "Controleer op nieuwe berichten" - -#: ../../include/widgets.php:572 ../../include/nav.php:209 -msgid "New Message" -msgstr "Nieuw bericht" - -#: ../../include/widgets.php:648 -msgid "Chat Rooms" -msgstr "Chatkanalen" - -#: ../../include/widgets.php:666 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" - -#: ../../include/widgets.php:684 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" - -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nieuw venster" - -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" - -#: ../../include/Contact.php:211 ../../mod/admin.php:649 +#: ../../include/items.php:4424 #, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" +msgid "Collection: %s" +msgstr "Collectie: %s" + +#: ../../include/items.php:4435 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" + +#: ../../include/items.php:4438 +msgid "Connection not found." +msgstr "Connectie niet gevonden." #: ../../include/message.php:18 msgid "No recipient provided." @@ -2893,249 +2550,200 @@ msgstr "Afzender kan niet bepaald worden." msgid "Stored post could not be verified." msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1512 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" -msgstr "Beëindig deze sessie" - -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:98 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" - -#: ../../include/nav.php:99 -msgid "Your profile page" -msgstr "Jouw profielpagina" - -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "Bewerk profielen" - -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../include/nav.php:103 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" - -#: ../../include/nav.php:105 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../include/nav.php:106 -msgid "Your files" -msgstr "Jouw bestanden" - -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" - -#: ../../include/nav.php:117 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" - -#: ../../include/nav.php:121 -msgid "Your webpages" -msgstr "Jouw webpagina's" - -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:142 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" - -#: ../../include/nav.php:145 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" - -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub" - -#: ../../include/nav.php:159 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:163 ../../mod/register.php:220 ../../boot.php:1489 -msgid "Register" -msgstr "Registreren" - -#: ../../include/nav.php:163 -msgid "Create an account" -msgstr "Maak een account aan" - -#: ../../include/nav.php:168 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" -msgstr "Apps" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "Inhoud van deze RedMatrix-hub doorzoeken" - -#: ../../include/nav.php:176 -msgid "Channel Locator" -msgstr "Kanalengids" - -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "Jouw matrix" - -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -msgstr "Markeer alle matrixnotificaties als bekeken" - -#: ../../include/nav.php:193 -msgid "Channel home" -msgstr "Tijdlijn kanaal" - -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" - -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Connecties" - -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "Notificaties" - -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" - -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" - -#: ../../include/nav.php:204 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:205 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" - -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" - -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "Postvak IN" - -#: ../../include/nav.php:208 -msgid "Outbox" -msgstr "Postvak UIT" - -#: ../../include/nav.php:212 -msgid "Event Calendar" -msgstr "Agenda" - -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" - -#: ../../include/nav.php:214 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" - -#: ../../include/nav.php:216 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" - -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" - -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Beheer" - -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" - -#: ../../include/nav.php:262 -msgid "Please wait..." -msgstr "Wachten aub..." - #: ../../include/network.php:590 msgid "view full size" msgstr "volledige grootte tonen" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "Item niet gevonden" -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Tonen" +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "Geen bronbestand." -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Niet tonen" +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" -#: ../../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 "Permissies" +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 -#: ../../mod/photos.php:1145 -msgid "Close" -msgstr "Sluiten" +#: ../../include/attach.php:377 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" +#: ../../include/attach.php:389 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." -#: ../../include/photos.php:104 +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." + +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." + +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "Pad niet beschikbaar." + +#: ../../include/attach.php:589 +msgid "Empty pathname" +msgstr "Padnaam leeg" + +#: ../../include/attach.php:605 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" + +#: ../../include/attach.php:629 +msgid "Path not found." +msgstr "Pad niet gevonden" + +#: ../../include/attach.php:680 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." + +#: ../../include/attach.php:684 +msgid "database storage failed." +msgstr "opslag in database mislukt." + +#: ../../include/auth.php:116 +msgid "Logged out." +msgstr "Uitgelogd." + +#: ../../include/auth.php:257 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" + +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Inloggen mislukt." + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diversen" + +#: ../../include/datetime.php:142 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" + +#: ../../include/datetime.php:248 +msgid "never" +msgstr "nooit" + +#: ../../include/datetime.php:254 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: ../../include/datetime.php:257 +msgid "year" +msgstr "jaar" + +#: ../../include/datetime.php:257 +msgid "years" +msgstr "jaren" + +#: ../../include/datetime.php:258 +msgid "month" +msgstr "maand" + +#: ../../include/datetime.php:258 +msgid "months" +msgstr "maanden" + +#: ../../include/datetime.php:259 +msgid "week" +msgstr "week" + +#: ../../include/datetime.php:259 +msgid "weeks" +msgstr "weken" + +#: ../../include/datetime.php:260 +msgid "day" +msgstr "dag" + +#: ../../include/datetime.php:260 +msgid "days" +msgstr "dagen" + +#: ../../include/datetime.php:261 +msgid "hour" +msgstr "uur" + +#: ../../include/datetime.php:261 +msgid "hours" +msgstr "uren" + +#: ../../include/datetime.php:262 +msgid "minute" +msgstr "minuut" + +#: ../../include/datetime.php:262 +msgid "minutes" +msgstr "minuten" + +#: ../../include/datetime.php:263 +msgid "second" +msgstr "seconde" + +#: ../../include/datetime.php:263 +msgid "seconds" +msgstr "seconden" + +#: ../../include/datetime.php:272 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: ../../include/datetime.php:480 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" + +#: ../../include/datetime.php:481 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" + +#: ../../include/photos.php:105 #, php-format msgid "Image exceeds website size limit of %lu bytes" msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" -#: ../../include/photos.php:111 +#: ../../include/photos.php:112 msgid "Image file is empty." msgstr "Afbeeldingsbestand is leeg" -#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 +#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 msgid "Unable to process image" msgstr "Afbeelding kan niet verwerkt worden" -#: ../../include/photos.php:212 +#: ../../include/photos.php:213 msgid "Photo storage failed." msgstr "Foto kan niet worden opgeslagen" -#: ../../include/photos.php:344 +#: ../../include/photos.php:345 msgid "Upload New Photos" msgstr "Nieuwe foto's uploaden" +#: ../../include/security.php:323 +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/js_strings.php:5 msgid "Delete this item?" msgstr "Dit item verwijderen?" #: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 -#: ../../mod/photos.php:992 ../../mod/photos.php:1102 +#: ../../mod/photos.php:995 ../../mod/photos.php:1105 msgid "Comment" msgstr "Reactie" @@ -3496,16 +3104,407 @@ msgstr "Maakt mij niks uit" msgid "Ask me" msgstr "Vraag het me" +#: ../../include/text.php:321 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:323 +msgid "first" +msgstr "eerste" + +#: ../../include/text.php:352 +msgid "last" +msgstr "laatste" + +#: ../../include/text.php:355 +msgid "next" +msgstr "volgende" + +#: ../../include/text.php:367 +msgid "older" +msgstr "ouder" + +#: ../../include/text.php:369 +msgid "newer" +msgstr "nieuwer" + +#: ../../include/text.php:736 +msgid "No connections" +msgstr "Geen connecties" + +#: ../../include/text.php:753 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d connectie" +msgstr[1] "%d connecties" + +#: ../../include/text.php:766 +msgid "View Connections" +msgstr "Connecties weergeven" + +#: ../../include/text.php:905 +msgid "poke" +msgstr "aanstoten" + +#: ../../include/text.php:906 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:906 +msgid "pinged" +msgstr "gepingd" + +#: ../../include/text.php:907 +msgid "prod" +msgstr "por" + +#: ../../include/text.php:907 +msgid "prodded" +msgstr "gepord" + +#: ../../include/text.php:908 +msgid "slap" +msgstr "slaan" + +#: ../../include/text.php:908 +msgid "slapped" +msgstr "sloeg" + +#: ../../include/text.php:909 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:909 +msgid "fingered" +msgstr "gefingerd" + +#: ../../include/text.php:910 +msgid "rebuff" +msgstr "afpoeieren" + +#: ../../include/text.php:910 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: ../../include/text.php:919 +msgid "happy" +msgstr "gelukkig" + +#: ../../include/text.php:920 +msgid "sad" +msgstr "bedroefd" + +#: ../../include/text.php:921 +msgid "mellow" +msgstr "mellow" + +#: ../../include/text.php:922 +msgid "tired" +msgstr "moe" + +#: ../../include/text.php:923 +msgid "perky" +msgstr "parmantig" + +#: ../../include/text.php:924 +msgid "angry" +msgstr "boos" + +#: ../../include/text.php:925 +msgid "stupified" +msgstr "beteuterd" + +#: ../../include/text.php:926 +msgid "puzzled" +msgstr "verward" + +#: ../../include/text.php:927 +msgid "interested" +msgstr "geïnteresseerd" + +#: ../../include/text.php:928 +msgid "bitter" +msgstr "verbitterd" + +#: ../../include/text.php:929 +msgid "cheerful" +msgstr "vrolijk" + +#: ../../include/text.php:930 +msgid "alive" +msgstr "levendig" + +#: ../../include/text.php:931 +msgid "annoyed" +msgstr "geërgerd" + +#: ../../include/text.php:932 +msgid "anxious" +msgstr "bezorgd" + +#: ../../include/text.php:933 +msgid "cranky" +msgstr "humeurig" + +#: ../../include/text.php:934 +msgid "disturbed" +msgstr "verontrust" + +#: ../../include/text.php:935 +msgid "frustrated" +msgstr "gefrustreerd " + +#: ../../include/text.php:936 +msgid "depressed" +msgstr "gedeprimeerd" + +#: ../../include/text.php:937 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:938 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:939 +msgid "surprised" +msgstr "verrast" + +#: ../../include/text.php:1103 +msgid "Monday" +msgstr "maandag" + +#: ../../include/text.php:1103 +msgid "Tuesday" +msgstr "dinsdag" + +#: ../../include/text.php:1103 +msgid "Wednesday" +msgstr "woensdag" + +#: ../../include/text.php:1103 +msgid "Thursday" +msgstr "donderdag" + +#: ../../include/text.php:1103 +msgid "Friday" +msgstr "vrijdag" + +#: ../../include/text.php:1103 +msgid "Saturday" +msgstr "zaterdag" + +#: ../../include/text.php:1103 +msgid "Sunday" +msgstr "zondag" + +#: ../../include/text.php:1107 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1107 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1107 +msgid "March" +msgstr "maart" + +#: ../../include/text.php:1107 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1107 +msgid "May" +msgstr "mei" + +#: ../../include/text.php:1107 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1107 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1107 +msgid "August" +msgstr "augustus" + +#: ../../include/text.php:1107 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1107 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1107 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1107 +msgid "December" +msgstr "december" + +#: ../../include/text.php:1185 +msgid "unknown.???" +msgstr "onbekend.???" + +#: ../../include/text.php:1186 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1225 +msgid "remove category" +msgstr "categorie verwijderen" + +#: ../../include/text.php:1295 +msgid "remove from file" +msgstr "uit map verwijderen" + +#: ../../include/text.php:1360 ../../include/text.php:1372 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" + +#: ../../include/text.php:1527 ../../mod/events.php:409 +msgid "Link to Source" +msgstr "Originele locatie" + +#: ../../include/text.php:1546 +msgid "Select a page layout: " +msgstr "Kies een paginalay-out: " + +#: ../../include/text.php:1549 ../../include/text.php:1614 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1585 +msgid "Page content type: " +msgstr "Opmaakcode pagina" + +#: ../../include/text.php:1626 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../include/text.php:1760 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:2041 +msgid "Design" +msgstr "Ontwerp" + +#: ../../include/text.php:2044 +msgid "Blocks" +msgstr "Blokken" + +#: ../../include/text.php:2045 +msgid "Menus" +msgstr "Menu's" + +#: ../../include/text.php:2046 +msgid "Layouts" +msgstr "Lay-outs" + +#: ../../include/text.php:2047 +msgid "Pages" +msgstr "Pagina's" + +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" + +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "Tonen" + +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "Niet tonen" + +#: ../../include/acl_selectors.php:248 ../../mod/events.php:585 +#: ../../mod/chat.php:209 ../../mod/photos.php:588 ../../mod/photos.php:950 +#: ../../mod/filestorage.php:137 +msgid "Permissions" +msgstr "Permissies" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 +#: ../../mod/photos.php:1148 +msgid "Close" +msgstr "Sluiten" + +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" + +#: ../../include/apps.php:126 +msgid "Site Admin" +msgstr "Hubbeheerder" + +#: ../../include/apps.php:128 +msgid "Address Book" +msgstr "Connecties" + +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" +msgstr "Stemming" + +#: ../../include/apps.php:146 +msgid "Probe" +msgstr "Onderzoeken" + +#: ../../include/apps.php:147 +msgid "Suggest" +msgstr "Voorstellen" + +#: ../../include/apps.php:148 +msgid "Random Channel" +msgstr "Willekeurig kanaal" + +#: ../../include/apps.php:149 +msgid "Invite" +msgstr "Uitnodigen " + +#: ../../include/apps.php:150 +msgid "Features" +msgstr "Extra functies" + +#: ../../include/apps.php:151 +msgid "Language" +msgstr "Taal" + +#: ../../include/apps.php:152 +msgid "Post" +msgstr "Bericht" + +#: ../../include/apps.php:153 +msgid "Profile Photo" +msgstr "Profielfoto" + +#: ../../include/apps.php:242 ../../mod/settings.php:81 +#: ../../mod/settings.php:575 +msgid "Update" +msgstr "Bijwerken" + +#: ../../include/apps.php:242 +msgid "Install" +msgstr "Installeren" + +#: ../../include/apps.php:247 +msgid "Purchase" +msgstr "Aanschaffen" + #: ../../include/ItemObject.php:130 msgid "Save to Folder" msgstr "In map opslaan" #: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1019 ../../mod/photos.php:1031 +#: ../../mod/photos.php:1022 ../../mod/photos.php:1034 msgid "View all" msgstr "Toon alles" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1028 +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1031 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -3532,11 +3531,11 @@ msgstr "met ster" msgid "Add Tag" msgstr "Label toevoegen" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:971 +#: ../../include/ItemObject.php:221 ../../mod/photos.php:974 msgid "I like this (toggle)" msgstr "Vind ik leuk" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:972 +#: ../../include/ItemObject.php:222 ../../mod/photos.php:975 msgid "I don't like this (toggle)" msgstr "Vind ik niet leuk" @@ -3577,12 +3576,12 @@ msgstr "Bladwijzers opslaan" msgid "Add to Calendar" msgstr "Aan agenda toevoegen" -#: ../../include/ItemObject.php:299 ../../mod/photos.php:1139 +#: ../../include/ItemObject.php:299 ../../mod/photos.php:1142 msgctxt "noun" msgid "Likes" msgstr "vinden dit leuk" -#: ../../include/ItemObject.php:300 ../../mod/photos.php:1140 +#: ../../include/ItemObject.php:300 ../../mod/photos.php:1143 msgctxt "noun" msgid "Dislikes" msgstr "vinden dit niet leuk" @@ -3594,27 +3593,27 @@ msgid_plural "%d comments" msgstr[0] "%d reactie" msgstr[1] "%d reacties weergeven" -#: ../../include/ItemObject.php:596 ../../mod/photos.php:990 -#: ../../mod/photos.php:1100 +#: ../../include/ItemObject.php:596 ../../mod/photos.php:993 +#: ../../mod/photos.php:1103 msgid "This is you" msgstr "Dit ben jij" #: ../../include/ItemObject.php:599 ../../mod/mood.php:135 -#: ../../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: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/locs.php:99 ../../mod/mail.php:348 ../../mod/appman.php:99 +#: ../../mod/profiles.php:633 ../../mod/connect.php:92 ../../mod/setup.php:313 +#: ../../mod/setup.php:358 ../../mod/poke.php:166 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/events.php:587 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/photos.php:594 ../../mod/photos.php:671 +#: ../../mod/photos.php:956 ../../mod/photos.php:996 ../../mod/photos.php:1106 +#: ../../mod/connedit.php:555 ../../mod/thing.php:284 ../../mod/thing.php:327 +#: ../../mod/pdledit.php:58 ../../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/fsuggest.php:108 +#: ../../mod/filestorage.php:146 ../../mod/group.php:81 +#: ../../mod/import.php:480 ../../mod/admin.php:412 ../../mod/admin.php:723 +#: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 +#: ../../mod/admin.php:1278 ../../mod/invite.php:142 ../../mod/locs.php:99 +#: ../../mod/mail.php:348 ../../mod/xchan.php:11 ../../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 @@ -3658,6 +3657,1440 @@ msgstr "Video" msgid "Set your current mood and tell your friends" msgstr "Noteer je huidige stemming en toon het aan je connecties" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" + +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " + +#: ../../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/profperm.php:123 +msgid "Visible To" +msgstr "Zichtbaar voor" + +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" +msgstr "Alle connecties" + +#: ../../mod/mitem.php:24 ../../mod/menu.php:108 +msgid "Menu not found." +msgstr "Menu niet gevonden." + +#: ../../mod/mitem.php:67 +msgid "Menu element updated." +msgstr "Menu-onderdeel geüpdatet." + +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." + +#: ../../mod/mitem.php:77 +msgid "Menu element added." +msgstr "Menu-onderdeel toegevoegd" + +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." + +#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "Niet gevonden." + +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" +msgstr "Menu-onderdelen beheren" + +#: ../../mod/mitem.php:130 +msgid "Edit menu" +msgstr "Menu bewerken" + +#: ../../mod/mitem.php:133 +msgid "Edit element" +msgstr "Onderdeel bewerken" + +#: ../../mod/mitem.php:134 +msgid "Drop element" +msgstr "Onderdeel verwijderen" + +#: ../../mod/mitem.php:135 +msgid "New element" +msgstr "Nieuw element" + +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" + +#: ../../mod/mitem.php:137 +msgid "Add menu element" +msgstr "Menu-element toevoegen" + +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" + +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" + +#: ../../mod/mitem.php:158 +msgid "New Menu Element" +msgstr "Nieuw menu-element" + +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1011 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" +msgstr "Linktekst" + +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" +msgstr "URL of link" + +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" +msgstr "Gebruik RedMatrix' magic-auth wanneer beschikbaar" + +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" +msgstr "Volgorde in lijst" + +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" + +#: ../../mod/mitem.php:181 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." + +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." + +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." + +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" + +#: ../../mod/mitem.php:213 ../../mod/menu.php:130 +msgid "Modify" +msgstr "Wijzigen" + +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" +msgstr "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)." + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 +msgid "Profile not found." +msgstr "Profiel niet gevonden." + +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profiel verwijderd." + +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profiel-" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" + +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" + +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" + +#: ../../mod/profiles.php:378 +msgid "Marital Status" +msgstr "Huwelijke status" + +#: ../../mod/profiles.php:382 +msgid "Romantic Partner" +msgstr "Romantische partner" + +#: ../../mod/profiles.php:386 +msgid "Likes" +msgstr "Houdt van" + +#: ../../mod/profiles.php:390 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: ../../mod/profiles.php:394 +msgid "Work/Employment" +msgstr "Werk/arbeid" + +#: ../../mod/profiles.php:397 +msgid "Religion" +msgstr "Religie" + +#: ../../mod/profiles.php:401 +msgid "Political Views" +msgstr "Politieke overtuigingen" + +#: ../../mod/profiles.php:405 +msgid "Gender" +msgstr "Geslacht" + +#: ../../mod/profiles.php:409 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" + +#: ../../mod/profiles.php:413 +msgid "Homepage" +msgstr "Homepage" + +#: ../../mod/profiles.php:417 +msgid "Interests" +msgstr "Interesses" + +#: ../../mod/profiles.php:421 ../../mod/admin.php:866 +msgid "Address" +msgstr "Kanaaladres" + +#: ../../mod/profiles.php:428 ../../mod/pubsites.php:25 +msgid "Location" +msgstr "Locatie" + +#: ../../mod/profiles.php:511 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" + +#: ../../mod/profiles.php:590 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." + +#: ../../mod/profiles.php:591 ../../mod/api.php:105 ../../mod/settings.php:916 +#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/admin.php:392 +msgid "Yes" +msgstr "Ja" + +#: ../../mod/profiles.php:592 ../../mod/api.php:106 ../../mod/settings.php:916 +#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/admin.php:390 +msgid "No" +msgstr "Nee" + +#: ../../mod/profiles.php:632 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" + +#: ../../mod/profiles.php:634 +msgid "View this profile" +msgstr "Profiel weergeven" + +#: ../../mod/profiles.php:636 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" + +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" + +#: ../../mod/profiles.php:638 +msgid "Clone this profile" +msgstr "Dit profiel klonen" + +#: ../../mod/profiles.php:639 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" + +#: ../../mod/profiles.php:641 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" + +#: ../../mod/profiles.php:642 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" + +#: ../../mod/profiles.php:643 +msgid "Profile Name:" +msgstr "Profielnaam:" + +#: ../../mod/profiles.php:644 +msgid "Your Full Name:" +msgstr "Jouw volledige naam:" + +#: ../../mod/profiles.php:645 +msgid "Title/Description:" +msgstr "Titel/omschrijving:" + +#: ../../mod/profiles.php:646 +msgid "Your Gender:" +msgstr "Jouw geslacht" + +#: ../../mod/profiles.php:647 +msgid "Birthday :" +msgstr "Verjaardag: " + +#: ../../mod/profiles.php:648 +msgid "Street Address:" +msgstr "Straat en huisnummer:" + +#: ../../mod/profiles.php:649 +msgid "Locality/City:" +msgstr "Woonplaats:" + +#: ../../mod/profiles.php:650 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: ../../mod/profiles.php:651 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:652 +msgid "Region/State:" +msgstr "Provincie/gewest/deelstaat:" + +#: ../../mod/profiles.php:653 +msgid " Marital Status:" +msgstr " Huwelijkse staat:" + +#: ../../mod/profiles.php:654 +msgid "Who: (if applicable)" +msgstr "Wie (wanneer toepasselijk):" + +#: ../../mod/profiles.php:655 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" + +#: ../../mod/profiles.php:656 +msgid "Since [date]:" +msgstr "Sinds [datum]:" + +#: ../../mod/profiles.php:658 +msgid "Homepage URL:" +msgstr "Adres homepage:" + +#: ../../mod/profiles.php:661 +msgid "Religious Views:" +msgstr "Religieuze overtuigingen" + +#: ../../mod/profiles.php:662 +msgid "Keywords:" +msgstr "Trefwoorden" + +#: ../../mod/profiles.php:665 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" + +#: ../../mod/profiles.php:666 +msgid "Used in directory listings" +msgstr "Wordt in de kanalengids gebruikt" + +#: ../../mod/profiles.php:667 +msgid "Tell us about yourself..." +msgstr "Vertel ons iets over jezelf..." + +#: ../../mod/profiles.php:668 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" + +#: ../../mod/profiles.php:669 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: ../../mod/profiles.php:670 +msgid "My other channels" +msgstr "Mijn andere kanalen" + +#: ../../mod/profiles.php:671 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: ../../mod/profiles.php:672 +msgid "Books, literature" +msgstr "Boeken/literatuur" + +#: ../../mod/profiles.php:673 +msgid "Television" +msgstr "Televisie" + +#: ../../mod/profiles.php:674 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/entertainment" + +#: ../../mod/profiles.php:675 +msgid "Love/romance" +msgstr "Liefde/romantiek" + +#: ../../mod/profiles.php:676 +msgid "Work/employment" +msgstr "Werk/arbeid" + +#: ../../mod/profiles.php:677 +msgid "School/education" +msgstr "School/onderwijs" + +#: ../../mod/profiles.php:683 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" + +#: ../../mod/profiles.php:694 ../../mod/directory.php:148 +msgid "Age: " +msgstr "Leeftijd:" + +#: ../../mod/profiles.php:737 +msgid "Edit/Manage Profiles" +msgstr "Profielen bewerken/beheren" + +#: ../../mod/profiles.php:738 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" + +#: ../../mod/profiles.php:739 +msgid "Include desirable objects in your profile" +msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" + +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "Ga verder" + +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " + +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" + +#: ../../mod/connect.php:87 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." + +#: ../../mod/connect.php: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/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/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/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/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" + +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." + +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Welkom %s. Authenticatie op afstand geslaagd." + +#: ../../mod/setup.php:166 +msgid "Red Matrix Server - Setup" +msgstr "RedMatrix Server - Setup" + +#: ../../mod/setup.php:172 +msgid "Could not connect to database." +msgstr "Could not connect to database." + +#: ../../mod/setup.php:176 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." + +#: ../../mod/setup.php:183 +msgid "Could not create table." +msgstr "Could not create table." + +#: ../../mod/setup.php:189 +msgid "Your site database has been installed." +msgstr "Your hub database has been installed." + +#: ../../mod/setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." + +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Please see the file \"install/INSTALL.txt\"." + +#: ../../mod/setup.php:261 +msgid "System check" +msgstr "System check" + +#: ../../mod/setup.php:265 ../../mod/events.php:434 ../../mod/photos.php:868 +msgid "Next" +msgstr "Volgende" + +#: ../../mod/setup.php:266 +msgid "Check again" +msgstr "Check again" + +#: ../../mod/setup.php:289 +msgid "Database connection" +msgstr "Database connection" + +#: ../../mod/setup.php:290 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." +msgstr "In order to install RedMatrix we need to know how to connect to your database." + +#: ../../mod/setup.php:291 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." + +#: ../../mod/setup.php:292 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." + +#: ../../mod/setup.php:296 +msgid "Database Server Name" +msgstr "Database Server Name" + +#: ../../mod/setup.php:296 +msgid "Default is localhost" +msgstr "Default is localhost" + +#: ../../mod/setup.php:297 +msgid "Database Port" +msgstr "Database Port" + +#: ../../mod/setup.php:297 +msgid "Communication port number - use 0 for default" +msgstr "Communication port number - use 0 for default" + +#: ../../mod/setup.php:298 +msgid "Database Login Name" +msgstr "Database Login Name" + +#: ../../mod/setup.php:299 +msgid "Database Login Password" +msgstr "Database Login Password" + +#: ../../mod/setup.php:300 +msgid "Database Name" +msgstr "Database Name" + +#: ../../mod/setup.php:301 +msgid "Database Type" +msgstr "Database Type" + +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "Site administrator email address" +msgstr "Hub administrator email address" + +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Your account email address must match this in order to use the web admin panel." + +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Website URL" +msgstr "Hub URL" + +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Please use SSL (https) URL if available." +msgstr "Please use SSL (https) URL if available." + +#: ../../mod/setup.php:307 ../../mod/setup.php:352 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your hub" + +#: ../../mod/setup.php:335 +msgid "Site settings" +msgstr "Hub settings" + +#: ../../mod/setup.php:395 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." + +#: ../../mod/setup.php:396 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron." + +#: ../../mod/setup.php:400 +msgid "PHP executable path" +msgstr "PHP executable path" + +#: ../../mod/setup.php:400 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." + +#: ../../mod/setup.php:405 +msgid "Command line PHP" +msgstr "Command line PHP" + +#: ../../mod/setup.php:414 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." + +#: ../../mod/setup.php:415 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." + +#: ../../mod/setup.php:417 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/setup.php:438 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" + +#: ../../mod/setup.php:439 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/setup.php:441 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" + +#: ../../mod/setup.php:448 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" + +#: ../../mod/setup.php:449 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" + +#: ../../mod/setup.php:450 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" + +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" +msgstr "mysqli or postgres PHP module" + +#: ../../mod/setup.php:452 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" + +#: ../../mod/setup.php:453 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP module" + +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: ../../mod/setup.php:458 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." + +#: ../../mod/setup.php:464 ../../mod/setup.php:467 +msgid "proc_open" +msgstr "proc_open" + +#: ../../mod/setup.php:464 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" + +#: ../../mod/setup.php:472 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." + +#: ../../mod/setup.php:476 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." + +#: ../../mod/setup.php:480 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." + +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: mysqli or postgres PHP module required but neither are installed." + +#: ../../mod/setup.php:488 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." + +#: ../../mod/setup.php:492 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: mcrypt PHP module required but not installed." + +#: ../../mod/setup.php:508 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so." + +#: ../../mod/setup.php:509 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can." + +#: ../../mod/setup.php:510 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder." + +#: ../../mod/setup.php:511 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." + +#: ../../mod/setup.php:514 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" + +#: ../../mod/setup.php:524 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." + +#: ../../mod/setup.php:525 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." +msgstr "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/setup.php:526 ../../mod/setup.php:544 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." + +#: ../../mod/setup.php:527 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." + +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" + +#: ../../mod/setup.php:543 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "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:547 +msgid "store is writable" +msgstr "store is writable" + +#: ../../mod/setup.php:577 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." + +#: ../../mod/setup.php:578 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" + +#: ../../mod/setup.php:579 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." + +#: ../../mod/setup.php:580 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." + +#: ../../mod/setup.php:581 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." + +#: ../../mod/setup.php:582 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Providers are available that issue free certificates which are browser-valid." + +#: ../../mod/setup.php:584 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" + +#: ../../mod/setup.php:590 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " + +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" + +#: ../../mod/setup.php:602 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." + +#: ../../mod/setup.php:626 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." + +#: ../../mod/setup.php:661 +msgid "

    What next

    " +msgstr "

    Wat nu

    " + +#: ../../mod/setup.php:662 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." + +#: ../../mod/siteinfo.php:90 +#, php-format +msgid "Version %s" +msgstr "Versie %s" + +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plug-ins/add-ons/apps:" + +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plug-ins/add-ons/apps" + +#: ../../mod/siteinfo.php:132 +msgid "Red" +msgstr "Red" + +#: ../../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/siteinfo.php:137 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" + +#: ../../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/siteinfo.php:139 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" + +#: ../../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/siteinfo.php:144 +msgid "Site Administrators" +msgstr "Hubbeheerders: " + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Ontvanger" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Maak dit bericht privé" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Item is niet aanwezig." + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "Ongeldig item." + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." + +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "Pagina niet gevonden." + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." + +#: ../../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/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Nieuwe bron" + +#: ../../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/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/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/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "Kanaalnaam" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Bron niet gevonden" + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Bron bewerken" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Bron verwijderen" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Bron verwijderd" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Verwijderen bron mislukt." + +#: ../../mod/blocks.php:99 +msgid "Block Name" +msgstr "Bloknaam" + +#: ../../mod/search.php:13 ../../mod/directory.php:15 ../../mod/photos.php:458 +#: ../../mod/display.php:9 ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Openbare toegang geweigerd." + +#: ../../mod/directory.php:161 +msgid "Gender: " +msgstr "Geslacht:" + +#: ../../mod/directory.php:163 +msgid "Status: " +msgstr "Status: " + +#: ../../mod/directory.php:165 +msgid "Homepage: " +msgstr "Homepage: " + +#: ../../mod/directory.php:168 +msgid "Hometown: " +msgstr "Oorspronkelijk uit: " + +#: ../../mod/directory.php:170 +msgid "About: " +msgstr "Over: " + +#: ../../mod/directory.php:225 +msgid "Public Forum:" +msgstr "Openbaar forum:" + +#: ../../mod/directory.php:228 +msgid "Keywords: " +msgstr "Trefwoorden: " + +#: ../../mod/directory.php:268 +msgid "Finding:" +msgstr "Gezocht naar:" + +#: ../../mod/directory.php:273 +msgid "next page" +msgstr "volgende pagina" + +#: ../../mod/directory.php:273 +msgid "previous page" +msgstr "vorige pagina" + +#: ../../mod/directory.php:290 +msgid "No entries (some entries may be hidden)." +msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." + +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximum toegestane dagelijkse registraties op deze RedMatrix-hub bereikt. Probeer het morgen (UTC) nogmaals." + +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze RedMatrix-hub." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Registraties op deze RedMatrix-hub moeten eerst worden goedgekeurd." + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registreer op een andere RedMatrix-hub" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze RedMatrix-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze RedMatrix-hub" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ik accepteer de %s van deze RedMatrix-hub" + +#: ../../mod/register.php:207 ../../mod/admin.php:413 +msgid "Registration" +msgstr "Registratie" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Jouw e-mailadres" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" + +#: ../../mod/events.php:81 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" + +#: ../../mod/events.php:86 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." + +#: ../../mod/events.php:100 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" + +#: ../../mod/events.php:364 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:386 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: ../../mod/events.php:432 +msgid "Create New Event" +msgstr "Nieuwe gebeurtenis aanmaken" + +#: ../../mod/events.php:433 ../../mod/photos.php:859 +msgid "Previous" +msgstr "Vorige" + +#: ../../mod/events.php:560 +msgid "Event details" +msgstr "Details van gebeurtenis" + +#: ../../mod/events.php:561 +msgid "Starting date and Title are required." +msgstr "Begintijd en titel zijn vereist." + +#: ../../mod/events.php:565 +msgid "Event Starts:" +msgstr "Begin gebeurtenis:" + +#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" +msgstr "Vereist" + +#: ../../mod/events.php:571 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/-tijd is niet bekend of niet relevant" + +#: ../../mod/events.php:573 +msgid "Event Finishes:" +msgstr "Einde gebeurtenis:" + +#: ../../mod/events.php:575 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" + +#: ../../mod/events.php:577 +msgid "Description:" +msgstr "Omschrijving:" + +#: ../../mod/events.php:581 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:583 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Openbare hubs" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in" +" the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "URL hub" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Toegangstype" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Registratiebeleid" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." + +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Omschrijving" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Chatkanaal verwijderen" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Ik ben online" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Naam chatkanaal" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" + +#: ../../mod/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/chatsvc.php:111 +msgid "Away" +msgstr "Afwezig" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Inloggen." + +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Collectie niet gevonden" + +#: ../../mod/network.php:118 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" + +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "Collectie is leeg" + +#: ../../mod/network.php:180 +msgid "Collection: " +msgstr "Collectie: " + +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "Connectie: " + +#: ../../mod/network.php:196 +msgid "Invalid connection." +msgstr "Ongeldige connectie." + +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" + +#: ../../mod/removeme.php:58 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden." + +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen" + +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd." + +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Geen kanaal." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Veel voorkomende connecties" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." + +#: ../../mod/rmagic.php:38 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Het foutbericht was:" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." + +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" + +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" + +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "Authenticeren" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- kies map -" + #: ../../mod/photos.php:77 msgid "Page owner information could not be retrieved." msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." @@ -3666,287 +5099,807 @@ msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." msgid "Album not found." msgstr "Album niet gevonden." -#: ../../mod/photos.php:119 ../../mod/photos.php:670 +#: ../../mod/photos.php:119 ../../mod/photos.php:672 msgid "Delete Album" msgstr "Verwijder album" -#: ../../mod/photos.php:159 ../../mod/photos.php:954 +#: ../../mod/photos.php:159 ../../mod/photos.php:957 msgid "Delete Photo" msgstr "Verwijder foto" -#: ../../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 "Openbare toegang geweigerd." - -#: ../../mod/photos.php:470 +#: ../../mod/photos.php:469 msgid "No photos selected" msgstr "Geen foto's geselecteerd" -#: ../../mod/photos.php:514 +#: ../../mod/photos.php:513 msgid "Access to this item is restricted." msgstr "Toegang tot dit item is beperkt." -#: ../../mod/photos.php:553 +#: ../../mod/photos.php:552 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." -#: ../../mod/photos.php:556 +#: ../../mod/photos.php:555 #, php-format msgid "%1$.2f MB photo storage used." msgstr "%1$.2f MB aan foto-opslag gebruikt." -#: ../../mod/photos.php:580 +#: ../../mod/photos.php:579 msgid "Upload Photos" msgstr "Foto's uploaden" -#: ../../mod/photos.php:584 ../../mod/photos.php:663 ../../mod/photos.php:941 +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 msgid "Enter a new album name" msgstr "Vul een nieuwe albumnaam in" -#: ../../mod/photos.php:585 ../../mod/photos.php:664 ../../mod/photos.php:942 +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 msgid "or select an existing one (doubleclick)" msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../mod/photos.php:586 +#: ../../mod/photos.php:585 msgid "Do not show a status post for this upload" msgstr "Plaats geen bericht voor deze upload." -#: ../../mod/photos.php:614 +#: ../../mod/photos.php:613 msgid "Album name could not be decoded" msgstr "Albumnaam kon niet gedecodeerd worden" -#: ../../mod/photos.php:652 ../../mod/photos.php:1163 -#: ../../mod/photos.php:1178 +#: ../../mod/photos.php:654 ../../mod/photos.php:1166 +#: ../../mod/photos.php:1182 msgid "Contact Photos" msgstr "Connectiefoto's" -#: ../../mod/photos.php:676 +#: ../../mod/photos.php:678 msgid "Show Newest First" msgstr "Nieuwste eerst weergeven" -#: ../../mod/photos.php:678 +#: ../../mod/photos.php:680 msgid "Show Oldest First" msgstr "Oudste eerst weergeven" -#: ../../mod/photos.php:705 ../../mod/photos.php:1210 +#: ../../mod/photos.php:707 ../../mod/photos.php:1214 msgid "View Photo" msgstr "Foto weergeven" -#: ../../mod/photos.php:734 +#: ../../mod/photos.php:736 msgid "Edit Album" msgstr "Album bewerken" -#: ../../mod/photos.php:779 +#: ../../mod/photos.php:781 msgid "Permission denied. Access to this item may be restricted." msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." -#: ../../mod/photos.php:781 +#: ../../mod/photos.php:783 msgid "Photo not available" msgstr "Foto niet aanwezig" -#: ../../mod/photos.php:839 +#: ../../mod/photos.php:841 msgid "Use as profile photo" msgstr "Als profielfoto gebruiken" -#: ../../mod/photos.php:846 +#: ../../mod/photos.php:848 msgid "Private Photo" msgstr "Privéfoto" -#: ../../mod/photos.php:857 ../../mod/events.php:433 -msgid "Previous" -msgstr "Vorige" - -#: ../../mod/photos.php:861 +#: ../../mod/photos.php:863 msgid "View Full Size" msgstr "Volledige grootte weergeven" -#: ../../mod/photos.php:866 ../../mod/events.php:434 ../../mod/setup.php:261 -msgid "Next" -msgstr "Volgende" - -#: ../../mod/photos.php:903 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 +#: ../../mod/photos.php:905 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 msgid "Remove" msgstr "Verwijderen" -#: ../../mod/photos.php:935 +#: ../../mod/photos.php:937 msgid "Edit photo" msgstr "Foto bewerken" -#: ../../mod/photos.php:937 +#: ../../mod/photos.php:939 msgid "Rotate CW (right)" msgstr "Draai met de klok mee (naar rechts)" -#: ../../mod/photos.php:938 +#: ../../mod/photos.php:940 msgid "Rotate CCW (left)" msgstr "Draai tegen de klok in (naar links)" -#: ../../mod/photos.php:945 +#: ../../mod/photos.php:947 msgid "Caption" msgstr "Bijschrift" -#: ../../mod/photos.php:947 +#: ../../mod/photos.php:949 msgid "Add a Tag" msgstr "Label toevoegen" -#: ../../mod/photos.php:950 +#: ../../mod/photos.php:953 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" -#: ../../mod/photos.php:952 +#: ../../mod/photos.php:955 msgid "Flag as adult in album view" msgstr "Markeer als voor volwassenen in albumweergave" -#: ../../mod/photos.php:1129 +#: ../../mod/photos.php:1132 msgid "In This Photo:" msgstr "Op deze foto:" -#: ../../mod/photos.php:1216 +#: ../../mod/photos.php:1220 msgid "View Album" msgstr "Album weergeven" -#: ../../mod/photos.php:1239 +#: ../../mod/photos.php:1243 msgid "Recent Photos" msgstr "Recente foto's" -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." -msgstr "Menu niet gevonden." +#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." -#: ../../mod/mitem.php:47 -msgid "Menu element updated." -msgstr "Menu-onderdeel geüpdatet." +#: ../../mod/connections.php:51 ../../mod/connedit.php:86 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." +#: ../../mod/connections.php:94 ../../mod/connedit.php:140 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." -#: ../../mod/mitem.php:57 -msgid "Menu element added." -msgstr "Menu-onderdeel toegevoegd" +#: ../../mod/connections.php:96 ../../mod/connedit.php:142 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." +#: ../../mod/connections.php:191 ../../mod/connections.php:292 +msgid "Blocked" +msgstr "Geblokkeerd" -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:38 -msgid "Not found." -msgstr "Niet gevonden." +#: ../../mod/connections.php:196 ../../mod/connections.php:299 +msgid "Ignored" +msgstr "Genegeerd" -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" -msgstr "Menu-onderdelen beheren" +#: ../../mod/connections.php:201 ../../mod/connections.php:313 +msgid "Hidden" +msgstr "Verborgen" -#: ../../mod/mitem.php:99 -msgid "Edit menu" -msgstr "Menu bewerken" +#: ../../mod/connections.php:206 ../../mod/connections.php:306 +msgid "Archived" +msgstr "Gearchiveerd" -#: ../../mod/mitem.php:102 -msgid "Edit element" -msgstr "Onderdeel bewerken" +#: ../../mod/connections.php:230 ../../mod/connections.php:245 +msgid "All" +msgstr "Alles" -#: ../../mod/mitem.php:103 -msgid "Drop element" -msgstr "Onderdeel verwijderen" +#: ../../mod/connections.php:270 +msgid "Suggest new connections" +msgstr "Nieuwe kanalen voorstellen" -#: ../../mod/mitem.php:104 -msgid "New element" -msgstr "Nieuw element" +#: ../../mod/connections.php:273 +msgid "New Connections" +msgstr "Nieuwe connecties" -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" +#: ../../mod/connections.php:276 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" -#: ../../mod/mitem.php:106 -msgid "Add menu element" -msgstr "Menu-element toevoegen" +#: ../../mod/connections.php:282 +msgid "Show all connections" +msgstr "Toon alle connecties" -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" +#: ../../mod/connections.php:285 +msgid "Unblocked" +msgstr "Niet geblokkeerd" -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" +#: ../../mod/connections.php:288 +msgid "Only show unblocked connections" +msgstr "Toon alleen niet geblokkeerde connecties" -#: ../../mod/mitem.php:131 -msgid "New Menu Element" -msgstr "Nieuw menu-element" +#: ../../mod/connections.php:295 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" +#: ../../mod/connections.php:302 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:1011 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" +#: ../../mod/connections.php:309 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" -msgstr "Linktekst" +#: ../../mod/connections.php:316 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" -msgstr "URL of link" +#: ../../mod/connections.php:371 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" -msgstr "Gebruik Reds magische authenticatie wanneer aanwezig" +#: ../../mod/connections.php:372 +msgid "Edit connection" +msgstr "Connectie bewerken" -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" +#: ../../mod/connections.php:410 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" -msgstr "Volgorde in lijst" +#: ../../mod/connections.php:411 +msgid "Finding: " +msgstr "Zoeken naar: " -#: ../../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/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/mitem.php:154 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." +#: ../../mod/manage.php:144 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." +#: ../../mod/manage.php:149 +msgid "Current Channel" +msgstr "Huidig kanaal" -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." +#: ../../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/mitem.php:174 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" +#: ../../mod/manage.php:152 +msgid "Default Channel" +msgstr "Standaardkanaal" -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" -msgstr "Wijzigen" +#: ../../mod/manage.php:153 +msgid "Make Default" +msgstr "Als standaard instellen" -#: ../../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/rpost.php:97 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../mod/ping.php:255 +#: ../../mod/connedit.php:189 +msgid "is now connected to" +msgstr "is nu verbonden met" + +#: ../../mod/connedit.php:310 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." + +#: ../../mod/connedit.php:324 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" + +#: ../../mod/connedit.php:331 +msgid "Channel has been unblocked" +msgstr "Kanaal is gedeblokkeerd" + +#: ../../mod/connedit.php:332 +msgid "Channel has been blocked" +msgstr "Kanaal is geblokkeerd" + +#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 +#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 +#: ../../mod/connedit.php:388 +msgid "Unable to set address book parameters." +msgstr "Niet in staat om de parameters van connecties in te stellen." + +#: ../../mod/connedit.php:343 +msgid "Channel has been unignored" +msgstr "Kanaal wordt niet meer genegeerd" + +#: ../../mod/connedit.php:344 +msgid "Channel has been ignored" +msgstr "Kanaal wordt genegeerd" + +#: ../../mod/connedit.php:355 +msgid "Channel has been unarchived" +msgstr "Kanaal is niet meer gearchiveerd" + +#: ../../mod/connedit.php:356 +msgid "Channel has been archived" +msgstr "Kanaal is gearchiveerd" + +#: ../../mod/connedit.php:367 +msgid "Channel has been unhidden" +msgstr "Kanaal is niet meer verborgen" + +#: ../../mod/connedit.php:368 +msgid "Channel has been hidden" +msgstr "Kanaal is verborgen" + +#: ../../mod/connedit.php:383 +msgid "Channel has been approved" +msgstr "Connectie/kanaal is geaccepteerd" + +#: ../../mod/connedit.php:384 +msgid "Channel has been unapproved" +msgstr "Connectie/kanaal is afgewezen" + +#: ../../mod/connedit.php:412 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" + +#: ../../mod/connedit.php:432 +#, php-format +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" + +#: ../../mod/connedit.php:436 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" + +#: ../../mod/connedit.php:439 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" + +#: ../../mod/connedit.php:443 +msgid "Recent Activity" +msgstr "Recente activiteit" + +#: ../../mod/connedit.php:446 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:732 +msgid "Unblock" +msgstr "Deblokkeren" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:731 +msgid "Block" +msgstr "Blokkeren" + +#: ../../mod/connedit.php:453 +msgid "Block or Unblock this connection" +msgstr "Deze connectie blokkeren of deblokkeren" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +msgid "Unignore" +msgstr "Niet meer negeren" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Negeren" + +#: ../../mod/connedit.php:460 +msgid "Ignore or Unignore this connection" +msgstr "Deze connectie negeren of niet meer negeren" + +#: ../../mod/connedit.php:463 +msgid "Unarchive" +msgstr "Niet meer archiveren" + +#: ../../mod/connedit.php:463 +msgid "Archive" +msgstr "Archiveren" + +#: ../../mod/connedit.php:466 +msgid "Archive or Unarchive this connection" +msgstr "Deze connectie archiveren of niet meer archiveren" + +#: ../../mod/connedit.php:469 +msgid "Unhide" +msgstr "Niet meer verbergen" + +#: ../../mod/connedit.php:469 +msgid "Hide" +msgstr "Verbergen" + +#: ../../mod/connedit.php:472 +msgid "Hide or Unhide this connection" +msgstr "Deze connectie verbergen of niet meer verbergen" + +#: ../../mod/connedit.php:479 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" + +#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" + +#: ../../mod/connedit.php:522 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" + +#: ../../mod/connedit.php:538 +#, php-format +msgid "Connections: settings for %s" +msgstr "Connecties: instellingen voor %s" + +#: ../../mod/connedit.php:539 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" + +#: ../../mod/connedit.php:543 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen." + +#: ../../mod/connedit.php:545 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" + +#: ../../mod/connedit.php:551 +msgid "inherited" +msgstr "geërfd" + +#: ../../mod/connedit.php:553 +msgid "Connection has no individual permissions!" +msgstr "Connectie heeft geen individuele permissies!" + +#: ../../mod/connedit.php:554 +msgid "" +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." + +#: ../../mod/connedit.php:556 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" + +#: ../../mod/connedit.php:557 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." + +#: ../../mod/connedit.php:558 +msgid "Contact Information / Notes" +msgstr "Informatie/aantekeningen over connectie" + +#: ../../mod/connedit.php:559 +msgid "Edit contact notes" +msgstr "Bewerk aantekeningen over contact" + +#: ../../mod/connedit.php:561 +msgid "Their Settings" +msgstr "Hun instellingen" + +#: ../../mod/connedit.php:562 +msgid "My Settings" +msgstr "Mijn instellingen" + +#: ../../mod/connedit.php:564 +msgid "Clear/Disable Automatic Permissions" +msgstr "Verwijderen/uitschakelen automatische permissies" + +#: ../../mod/connedit.php:565 +msgid "Forum Members" +msgstr "Forumleden" + +#: ../../mod/connedit.php:566 +msgid "Soapbox" +msgstr "Zeepkist" + +#: ../../mod/connedit.php:567 +msgid "Full Sharing (typical social network permissions)" +msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" + +#: ../../mod/connedit.php:568 +msgid "Cautious Sharing " +msgstr "Voorzichtig delen" + +#: ../../mod/connedit.php:569 +msgid "Follow Only" +msgstr "Alleen volgen" + +#: ../../mod/connedit.php:570 +msgid "Individual Permissions" +msgstr "Individuele permissies" + +#: ../../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 "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." + +#: ../../mod/connedit.php:572 +msgid "Advanced Permissions" +msgstr "Geavanceerde permissies" + +#: ../../mod/connedit.php:573 +msgid "Simple Permissions (select one and submit)" +msgstr "Eenvoudige permissies (selecteer er één en opslaan)" + +#: ../../mod/connedit.php:577 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "Profiel van %s bezoeken - %s" + +#: ../../mod/connedit.php:578 +msgid "Block/Unblock contact" +msgstr "Connectie blokkeren/deblokkeren" + +#: ../../mod/connedit.php:579 +msgid "Ignore contact" +msgstr "Connectie negeren" + +#: ../../mod/connedit.php:580 +msgid "Repair URL settings" +msgstr "URL-instellingen repareren" + +#: ../../mod/connedit.php:581 +msgid "View conversations" +msgstr "Conversaties weergeven" + +#: ../../mod/connedit.php:583 +msgid "Delete contact" +msgstr "Connectie verwijderen" + +#: ../../mod/connedit.php:586 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: ../../mod/connedit.php:588 +msgid "Update public posts" +msgstr "Openbare berichten updaten" + +#: ../../mod/connedit.php:590 +msgid "Update now" +msgstr "Nu updaten" + +#: ../../mod/connedit.php:596 +msgid "Currently blocked" +msgstr "Momenteel geblokkeerd" + +#: ../../mod/connedit.php:597 +msgid "Currently ignored" +msgstr "Momenteel genegeerd" + +#: ../../mod/connedit.php:598 +msgid "Currently archived" +msgstr "Momenteel gearchiveerd" + +#: ../../mod/connedit.php:599 +msgid "Currently pending" +msgstr "Moeten nog geaccepteerd of afgewezen worden" + +#: ../../mod/connedit.php:600 +msgid "Hide this contact from others" +msgstr "Verberg deze connectie voor anderen" + +#: ../../mod/connedit.php:600 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." + +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "Ding bijgewerkt" + +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" + +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "Ding toegevoegd" + +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "Ding weergeven" + +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "Item niet gevonden" + +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "Ding bewerken" + +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "Kies een profiel" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "Plaats een bericht" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." + +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" + +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" + +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "URL van foto van ding (optioneel)" + +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." + +#: ../../mod/lostpass.php:85 ../../boot.php:1494 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "E-mailadres" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Opnieuw instellen" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" + +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" + +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" + +#: ../../mod/ping.php:257 msgid "sent you a private message" msgstr "stuurde jou een privébericht" -#: ../../mod/ping.php:306 +#: ../../mod/ping.php:308 msgid "added your channel" msgstr "voegde jouw kanaal toe" -#: ../../mod/ping.php:347 +#: ../../mod/ping.php:349 msgid "posted an event" msgstr "plaatste een gebeurtenis" -#: ../../mod/acl.php:244 -msgid "network" -msgstr "netwerk" +#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 +#: ../../mod/editlayout.php:78 ../../mod/editpost.php:20 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Item niet gevonden" + +#: ../../mod/editblock.php:115 +msgid "Edit Block" +msgstr "Blok bewerken" + +#: ../../mod/editblock.php:125 +msgid "Delete block?" +msgstr "Blok verwijderen" + +#: ../../mod/editblock.php:147 ../../mod/editlayout.php:143 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" +msgstr "YouTube-video invoegen" + +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:144 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis-video [.ogg] invoegen" + +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:145 +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis-audio [.ogg] invoegen" + +#: ../../mod/editblock.php:183 +msgid "Delete Block" +msgstr "Blok verwijderen" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulenaam:" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" +msgstr "Lay-out-hulp" + +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" +msgstr "Lay-out bewerken" + +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" +msgstr "Lay-out verwijderen?" + +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" +msgstr "Lay-out verwijderen" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Item verwijderen?" #: ../../mod/settings.php:73 msgid "Name is required" @@ -4107,7 +6060,7 @@ msgstr "Extra functies" msgid "Connector Settings" msgstr "Instellingen externe koppelingen" -#: ../../mod/settings.php:743 ../../mod/admin.php:362 +#: ../../mod/settings.php:743 msgid "No special theme for mobile devices" msgstr "Geen speciaal thema voor mobiele apparaten" @@ -4196,18 +6149,6 @@ msgstr "Iedereen op het internet" msgid "Publish your default profile in the network directory" msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../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 "Nee" - -#: ../../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 "Ja" - #: ../../mod/settings.php:921 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" @@ -4352,7 +6293,7 @@ msgstr "Een connectieverzoek wordt geaccepteerd" #: ../../mod/settings.php:1029 msgid "joining a forum/community" -msgstr "Je lid wordt van een groep/forum" +msgstr "Je lid wordt van een forum/groep" #: ../../mod/settings.php:1030 msgid "making an interesting profile change" @@ -4485,1762 +6426,15 @@ 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/poke.php:161 -msgid "Recipient" -msgstr "Ontvanger" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Maak dit bericht privé" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" - -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." - -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Welkom %s. Authenticatie op afstand geslaagd." - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Item is niet aanwezig." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ongeldig item." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." - -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Pagina niet gevonden." - -#: ../../mod/siteinfo.php:90 -#, php-format -msgid "Version %s" -msgstr "Versie %s" - -#: ../../mod/siteinfo.php:111 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plug-ins/add-ons/apps:" - -#: ../../mod/siteinfo.php:124 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plug-ins/add-ons/apps" - -#: ../../mod/siteinfo.php:132 -msgid "Red" -msgstr "Red" - -#: ../../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/siteinfo.php:137 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" - -#: ../../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/siteinfo.php:139 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" - -#: ../../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/siteinfo.php:144 -msgid "Site Administrators" -msgstr "Hubbeheerders: " - -#: ../../mod/blocks.php:62 -msgid "Block Name" -msgstr "Bloknaam" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:547 -msgid "Profile not found." -msgstr "Profiel niet gevonden." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profiel verwijderd." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profiel-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" - -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" - -#: ../../mod/profiles.php:362 -msgid "Marital Status" -msgstr "Huwelijke status" - -#: ../../mod/profiles.php:366 -msgid "Romantic Partner" -msgstr "Romantische partner" - -#: ../../mod/profiles.php:370 -msgid "Likes" -msgstr "Houdt van" - -#: ../../mod/profiles.php:374 -msgid "Dislikes" -msgstr "Houdt niet van" - -#: ../../mod/profiles.php:378 -msgid "Work/Employment" -msgstr "Werk/arbeid" - -#: ../../mod/profiles.php:381 -msgid "Religion" -msgstr "Religie" - -#: ../../mod/profiles.php:385 -msgid "Political Views" -msgstr "Politieke overtuigingen" - -#: ../../mod/profiles.php:389 -msgid "Gender" -msgstr "Geslacht" - -#: ../../mod/profiles.php:393 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" - -#: ../../mod/profiles.php:397 -msgid "Homepage" -msgstr "Homepage" - -#: ../../mod/profiles.php:401 -msgid "Interests" -msgstr "Interesses" - -#: ../../mod/profiles.php:405 ../../mod/admin.php:868 -msgid "Address" -msgstr "Kanaaladres" - -#: ../../mod/profiles.php:412 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Locatie" - -#: ../../mod/profiles.php:495 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" - -#: ../../mod/profiles.php:572 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." - -#: ../../mod/profiles.php:614 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" - -#: ../../mod/profiles.php:616 -msgid "View this profile" -msgstr "Profiel weergeven" - -#: ../../mod/profiles.php:618 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: ../../mod/profiles.php:619 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" - -#: ../../mod/profiles.php:620 -msgid "Clone this profile" -msgstr "Dit profiel klonen" - -#: ../../mod/profiles.php:621 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" - -#: ../../mod/profiles.php:623 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" - -#: ../../mod/profiles.php:624 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" - -#: ../../mod/profiles.php:625 -msgid "Profile Name:" -msgstr "Profielnaam:" - -#: ../../mod/profiles.php:626 -msgid "Your Full Name:" -msgstr "Jouw volledige naam:" - -#: ../../mod/profiles.php:627 -msgid "Title/Description:" -msgstr "Titel/omschrijving:" - -#: ../../mod/profiles.php:628 -msgid "Your Gender:" -msgstr "Jouw geslacht" - -#: ../../mod/profiles.php:629 -msgid "Birthday :" -msgstr "Verjaardag: " - -#: ../../mod/profiles.php:630 -msgid "Street Address:" -msgstr "Straat en huisnummer:" - -#: ../../mod/profiles.php:631 -msgid "Locality/City:" -msgstr "Woonplaats:" - -#: ../../mod/profiles.php:632 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: ../../mod/profiles.php:633 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:634 -msgid "Region/State:" -msgstr "Provincie/gewest/deelstaat:" - -#: ../../mod/profiles.php:635 -msgid " Marital Status:" -msgstr " Huwelijkse staat:" - -#: ../../mod/profiles.php:636 -msgid "Who: (if applicable)" -msgstr "Wie (wanneer toepasselijk):" - -#: ../../mod/profiles.php:637 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl" - -#: ../../mod/profiles.php:638 -msgid "Since [date]:" -msgstr "Sinds [datum]:" - -#: ../../mod/profiles.php:640 -msgid "Homepage URL:" -msgstr "Adres homepage:" - -#: ../../mod/profiles.php:643 -msgid "Religious Views:" -msgstr "Religieuze overtuigingen" - -#: ../../mod/profiles.php:644 -msgid "Keywords:" -msgstr "Trefwoorden" - -#: ../../mod/profiles.php:647 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" - -#: ../../mod/profiles.php:648 -msgid "Used in directory listings" -msgstr "Wordt in de kanalengids gebruikt" - -#: ../../mod/profiles.php:649 -msgid "Tell us about yourself..." -msgstr "Vertel ons iets over jezelf..." - -#: ../../mod/profiles.php:650 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" - -#: ../../mod/profiles.php:651 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: ../../mod/profiles.php:652 -msgid "My other channels" -msgstr "Mijn andere kanalen" - -#: ../../mod/profiles.php:653 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: ../../mod/profiles.php:654 -msgid "Books, literature" -msgstr "Boeken/literatuur" - -#: ../../mod/profiles.php:655 -msgid "Television" -msgstr "Televisie" - -#: ../../mod/profiles.php:656 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/entertainment" - -#: ../../mod/profiles.php:657 -msgid "Love/romance" -msgstr "Liefde/romantiek" - -#: ../../mod/profiles.php:658 -msgid "Work/employment" -msgstr "Werk/arbeid" - -#: ../../mod/profiles.php:659 -msgid "School/education" -msgstr "School/onderwijs" - -#: ../../mod/profiles.php:665 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" - -#: ../../mod/profiles.php:676 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../mod/profiles.php:719 -msgid "Edit/Manage Profiles" -msgstr "Profielen bewerken/beheren" - -#: ../../mod/profiles.php:720 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" - -#: ../../mod/profiles.php:721 -msgid "Include desirable objects in your profile" -msgstr "Voeg door jou gewenste dingen aan jouw profiel toe" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " - -#: ../../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/profperm.php:123 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "Alle connecties" - -#: ../../mod/events.php:81 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" - -#: ../../mod/events.php:86 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." - -#: ../../mod/events.php:100 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" - -#: ../../mod/events.php:364 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:386 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: ../../mod/events.php:432 -msgid "Create New Event" -msgstr "Nieuwe gebeurtenis aanmaken" - -#: ../../mod/events.php:560 -msgid "Event details" -msgstr "Details van gebeurtenis" - -#: ../../mod/events.php:561 -msgid "Starting date and Title are required." -msgstr "Begintijd en titel zijn vereist." - -#: ../../mod/events.php:565 -msgid "Event Starts:" -msgstr "Begin gebeurtenis:" - -#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "Vereist" - -#: ../../mod/events.php:571 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/-tijd is niet bekend of niet relevant" - -#: ../../mod/events.php:573 -msgid "Event Finishes:" -msgstr "Einde gebeurtenis:" - -#: ../../mod/events.php:575 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" - -#: ../../mod/events.php:577 -msgid "Description:" -msgstr "Omschrijving:" - -#: ../../mod/events.php:581 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:583 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Openbare hubs" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Op de hier weergegeven hubs kan iedereen zich voor de RedMatrix aanmelden. Alle hubs in de Matrix zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen betaalde abonnementen voor uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL hub" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Toegangstype" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Registratiebeleid" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Omschrijving" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Chatkanaal verwijderen" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ik ben online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Naam chatkanaal" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" - -#: ../../mod/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/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/register.php:82 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." - -#: ../../mod/register.php:115 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." - -#: ../../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/register.php:124 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." - -#: ../../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/register.php:162 -msgid "Register at another affiliated site/hub" -msgstr "Registreer op een andere RedMatrix-hub" - -#: ../../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/register.php:181 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" - -#: ../../mod/register.php:187 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze RedMatrix-hub" - -#: ../../mod/register.php:189 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ik accepteer de %s van deze RedMatrix-hub" - -#: ../../mod/register.php:203 ../../mod/admin.php:415 -msgid "Registration" -msgstr "Registratie" - -#: ../../mod/register.php:208 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze RedMatrix-hub kan alleen op uitnodiging." - -#: ../../mod/register.php:209 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" - -#: ../../mod/register.php:212 -msgid "Your email address" -msgstr "Jouw e-mailadres" - -#: ../../mod/register.php:213 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" - -#: ../../mod/register.php:214 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Afwezig" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Inloggen." - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" - -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden." - -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd." - -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Geen kanaal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Veel voorkomende connecties" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Het foutbericht was:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authenticeren" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Ga verder" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." - -#: ../../mod/connect.php: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/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/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/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/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Collectie niet gevonden" - -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" - -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "Collectie is leeg" - -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "Collectie: " - -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "Connectie: " - -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "Ongeldige connectie." - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." - -#: ../../mod/connections.php:51 ../../mod/connedit.php:86 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." - -#: ../../mod/connections.php:94 ../../mod/connedit.php:140 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." - -#: ../../mod/connections.php:96 ../../mod/connedit.php:142 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." - -#: ../../mod/connections.php:191 ../../mod/connections.php:292 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: ../../mod/connections.php:196 ../../mod/connections.php:299 -msgid "Ignored" -msgstr "Genegeerd" - -#: ../../mod/connections.php:201 ../../mod/connections.php:313 -msgid "Hidden" -msgstr "Verborgen" - -#: ../../mod/connections.php:206 ../../mod/connections.php:306 -msgid "Archived" -msgstr "Gearchiveerd" - -#: ../../mod/connections.php:230 ../../mod/connections.php:245 -msgid "All" -msgstr "Alles" - -#: ../../mod/connections.php:270 -msgid "Suggest new connections" -msgstr "Nieuwe kanalen voorstellen" - -#: ../../mod/connections.php:273 -msgid "New Connections" -msgstr "Nieuwe connecties" - -#: ../../mod/connections.php:276 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" - -#: ../../mod/connections.php:282 -msgid "Show all connections" -msgstr "Toon alle connecties" - -#: ../../mod/connections.php:285 -msgid "Unblocked" -msgstr "Niet geblokkeerd" - -#: ../../mod/connections.php:288 -msgid "Only show unblocked connections" -msgstr "Toon alleen niet geblokkeerde connecties" - -#: ../../mod/connections.php:295 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" - -#: ../../mod/connections.php:302 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" - -#: ../../mod/connections.php:309 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" - -#: ../../mod/connections.php:316 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" - -#: ../../mod/connections.php:371 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:372 -msgid "Edit connection" -msgstr "Connectie bewerken" - -#: ../../mod/connections.php:410 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" - -#: ../../mod/connections.php:411 -msgid "Finding: " -msgstr "Zoeken naar: " - -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: ../../mod/connedit.php:189 -msgid "is now connected to" -msgstr "is nu verbonden met" - -#: ../../mod/connedit.php:310 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." - -#: ../../mod/connedit.php:324 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" - -#: ../../mod/connedit.php:331 -msgid "Channel has been unblocked" -msgstr "Kanaal is gedeblokkeerd" - -#: ../../mod/connedit.php:332 -msgid "Channel has been blocked" -msgstr "Kanaal is geblokkeerd" - -#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 -#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:388 -msgid "Unable to set address book parameters." -msgstr "Niet in staat om de parameters van connecties in te stellen." - -#: ../../mod/connedit.php:343 -msgid "Channel has been unignored" -msgstr "Kanaal wordt niet meer genegeerd" - -#: ../../mod/connedit.php:344 -msgid "Channel has been ignored" -msgstr "Kanaal wordt genegeerd" - -#: ../../mod/connedit.php:355 -msgid "Channel has been unarchived" -msgstr "Kanaal is niet meer gearchiveerd" - -#: ../../mod/connedit.php:356 -msgid "Channel has been archived" -msgstr "Kanaal is gearchiveerd" - -#: ../../mod/connedit.php:367 -msgid "Channel has been unhidden" -msgstr "Kanaal is niet meer verborgen" - -#: ../../mod/connedit.php:368 -msgid "Channel has been hidden" -msgstr "Kanaal is verborgen" - -#: ../../mod/connedit.php:383 -msgid "Channel has been approved" -msgstr "Connectie/kanaal is geaccepteerd" - -#: ../../mod/connedit.php:384 -msgid "Channel has been unapproved" -msgstr "Connectie/kanaal is afgewezen" - -#: ../../mod/connedit.php:412 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" - -#: ../../mod/connedit.php:432 -#, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" - -#: ../../mod/connedit.php:436 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" - -#: ../../mod/connedit.php:439 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" - -#: ../../mod/connedit.php:443 -msgid "Recent Activity" -msgstr "Recente activiteit" - -#: ../../mod/connedit.php:446 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 -#: ../../mod/admin.php:734 -msgid "Unblock" -msgstr "Deblokkeren" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 -#: ../../mod/admin.php:733 -msgid "Block" -msgstr "Blokkeren" - -#: ../../mod/connedit.php:453 -msgid "Block or Unblock this connection" -msgstr "Deze connectie blokkeren of deblokkeren" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 -msgid "Unignore" -msgstr "Niet meer negeren" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Negeren" - -#: ../../mod/connedit.php:460 -msgid "Ignore or Unignore this connection" -msgstr "Deze connectie negeren of niet meer negeren" - -#: ../../mod/connedit.php:463 -msgid "Unarchive" -msgstr "Niet meer archiveren" - -#: ../../mod/connedit.php:463 -msgid "Archive" -msgstr "Archiveren" - -#: ../../mod/connedit.php:466 -msgid "Archive or Unarchive this connection" -msgstr "Deze connectie archiveren of niet meer archiveren" - -#: ../../mod/connedit.php:469 -msgid "Unhide" -msgstr "Niet meer verbergen" - -#: ../../mod/connedit.php:469 -msgid "Hide" -msgstr "Verbergen" - -#: ../../mod/connedit.php:472 -msgid "Hide or Unhide this connection" -msgstr "Deze connectie verbergen of niet meer verbergen" - -#: ../../mod/connedit.php:479 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" - -#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" - -#: ../../mod/connedit.php:522 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" - -#: ../../mod/connedit.php:538 -#, php-format -msgid "Connections: settings for %s" -msgstr "Connecties: instellingen voor %s" - -#: ../../mod/connedit.php:539 -msgid "Apply these permissions automatically" -msgstr "Deze permissies automatisch toepassen" - -#: ../../mod/connedit.php:543 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen." - -#: ../../mod/connedit.php:545 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" - -#: ../../mod/connedit.php:551 -msgid "inherited" -msgstr "geërfd" - -#: ../../mod/connedit.php:553 -msgid "Connection has no individual permissions!" -msgstr "Connectie heeft geen individuele permissies!" - -#: ../../mod/connedit.php:554 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan." - -#: ../../mod/connedit.php:556 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" - -#: ../../mod/connedit.php:557 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." - -#: ../../mod/connedit.php:558 -msgid "Contact Information / Notes" -msgstr "Informatie/aantekeningen over connectie" - -#: ../../mod/connedit.php:559 -msgid "Edit contact notes" -msgstr "Bewerk aantekeningen over contact" - -#: ../../mod/connedit.php:561 -msgid "Their Settings" -msgstr "Hun instellingen" - -#: ../../mod/connedit.php:562 -msgid "My Settings" -msgstr "Mijn instellingen" - -#: ../../mod/connedit.php:564 -msgid "Clear/Disable Automatic Permissions" -msgstr "Verwijderen/uitschakelen automatische permissies" - -#: ../../mod/connedit.php:565 -msgid "Forum Members" -msgstr "Forum/groepsleden" - -#: ../../mod/connedit.php:566 -msgid "Soapbox" -msgstr "Zeepkist" - -#: ../../mod/connedit.php:567 -msgid "Full Sharing (typical social network permissions)" -msgstr "Voluit delen (vergelijkbaar met die van sociale netwerken)" - -#: ../../mod/connedit.php:568 -msgid "Cautious Sharing " -msgstr "Voorzichtig delen" - -#: ../../mod/connedit.php:569 -msgid "Follow Only" -msgstr "Alleen volgen" - -#: ../../mod/connedit.php:570 -msgid "Individual Permissions" -msgstr "Individuele permissies" - -#: ../../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 "Sommige permissies kunnen worden overgeërfd van de privacy-instellingen van jouw kanaal. Wanneer je deze geërfde instellingen op deze pagina veranderd heeft dat geen effect." - -#: ../../mod/connedit.php:572 -msgid "Advanced Permissions" -msgstr "Geavanceerde permissies" - -#: ../../mod/connedit.php:573 -msgid "Simple Permissions (select one and submit)" -msgstr "Eenvoudige permissies (selecteer er één en opslaan)" - -#: ../../mod/connedit.php:577 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Profiel van %s bezoeken - %s" - -#: ../../mod/connedit.php:578 -msgid "Block/Unblock contact" -msgstr "Connectie blokkeren/deblokkeren" - -#: ../../mod/connedit.php:579 -msgid "Ignore contact" -msgstr "Connectie negeren" - -#: ../../mod/connedit.php:580 -msgid "Repair URL settings" -msgstr "URL-instellingen repareren" - -#: ../../mod/connedit.php:581 -msgid "View conversations" -msgstr "Conversaties weergeven" - -#: ../../mod/connedit.php:583 -msgid "Delete contact" -msgstr "Connectie verwijderen" - -#: ../../mod/connedit.php:586 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: ../../mod/connedit.php:588 -msgid "Update public posts" -msgstr "Openbare berichten updaten" - -#: ../../mod/connedit.php:590 -msgid "Update now" -msgstr "Nu updaten" - -#: ../../mod/connedit.php:596 -msgid "Currently blocked" -msgstr "Momenteel geblokkeerd" - -#: ../../mod/connedit.php:597 -msgid "Currently ignored" -msgstr "Momenteel genegeerd" - -#: ../../mod/connedit.php:598 -msgid "Currently archived" -msgstr "Momenteel gearchiveerd" - -#: ../../mod/connedit.php:599 -msgid "Currently pending" -msgstr "Moeten nog geaccepteerd of afgewezen worden" - -#: ../../mod/connedit.php:600 -msgid "Hide this contact from others" -msgstr "Verberg deze connectie voor anderen" - -#: ../../mod/connedit.php:600 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Reacties/vind-ik-leuks op jouw openbare berichten kunnen zichtbaar blijven" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Accountbeheer uitbesteden" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Bestaande accountbeheerders" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Bestaande gevolmachtigde accountbeheerders" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Toevoegen" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Geen" - -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "Geslacht:" - -#: ../../mod/directory.php:223 -msgid "Finding:" -msgstr "Gezocht naar:" - -#: ../../mod/directory.php:228 -msgid "next page" -msgstr "volgende pagina" - -#: ../../mod/directory.php:228 -msgid "previous page" -msgstr "vorige pagina" - -#: ../../mod/directory.php:245 -msgid "No entries (some entries may be hidden)." -msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" - -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "Status: " - -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "Seksuele voorkeur: " - -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "Homepage: " - -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "Oorspronkelijk uit: " - -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "Over: " - -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "Trefwoorden: " - -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" - -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++" - -#: ../../mod/setup.php:162 -msgid "Red Matrix Server - Setup" -msgstr "RedMatrix Server - Setup" - -#: ../../mod/setup.php:168 -msgid "Could not connect to database." -msgstr "Could not connect to database." - -#: ../../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/setup.php:179 -msgid "Could not create table." -msgstr "Could not create table." - -#: ../../mod/setup.php:185 -msgid "Your site database has been installed." -msgstr "Your hub database has been installed." - -#: ../../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/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/setup.php:257 -msgid "System check" -msgstr "System check" - -#: ../../mod/setup.php:262 -msgid "Check again" -msgstr "Check again" - -#: ../../mod/setup.php:284 -msgid "Database connection" -msgstr "Database connection" - -#: ../../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/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/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/setup.php:291 -msgid "Database Server Name" -msgstr "Database Server Name" - -#: ../../mod/setup.php:291 -msgid "Default is localhost" -msgstr "Default is localhost" - -#: ../../mod/setup.php:292 -msgid "Database Port" -msgstr "Database Port" - -#: ../../mod/setup.php:292 -msgid "Communication port number - use 0 for default" -msgstr "Communication port number - use 0 for default" - -#: ../../mod/setup.php:293 -msgid "Database Login Name" -msgstr "Database Login Name" - -#: ../../mod/setup.php:294 -msgid "Database Login Password" -msgstr "Database Login Password" - -#: ../../mod/setup.php:295 -msgid "Database Name" -msgstr "Database Name" - -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "Site administrator email address" -msgstr "Hub administrator email address" - -#: ../../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/setup.php:298 ../../mod/setup.php:341 -msgid "Website URL" -msgstr "Hub URL" - -#: ../../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/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/setup.php:328 -msgid "Site settings" -msgstr "Hub settings" - -#: ../../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/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/setup.php:392 -msgid "PHP executable path" -msgstr "PHP executable path" - -#: ../../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/setup.php:397 -msgid "Command line PHP" -msgstr "Command line PHP" - -#: ../../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/setup.php:407 -msgid "This is required for message delivery to work." -msgstr "This is required for message delivery to work." - -#: ../../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 "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" - -#: ../../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/setup.php:433 -msgid "Generate encryption keys" -msgstr "Generate encryption keys" - -#: ../../mod/setup.php:440 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" - -#: ../../mod/setup.php:441 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" - -#: ../../mod/setup.php:442 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" - -#: ../../mod/setup.php:443 -msgid "mysqli PHP module" -msgstr "mysqli PHP module" - -#: ../../mod/setup.php:444 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" - -#: ../../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/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/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/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/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/setup.php:506 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" - -#: ../../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/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/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/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/setup.php:522 -#, 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" - -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Blok verwijderen" - -#: ../../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/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/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/editblock.php:153 -msgid "Delete Block" -msgstr "Blok verwijderen" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulenaam:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "Lay-out-hulp" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "Lay-out bewerken" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "Lay-out verwijderen?" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "Lay-out verwijderen" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Item verwijderen?" - -#: ../../mod/editwebpage.php:106 +#: ../../mod/editwebpage.php:140 msgid "Edit Webpage" msgstr "Webpagina bewerken" -#: ../../mod/editwebpage.php:116 +#: ../../mod/editwebpage.php:150 msgid "Delete webpage?" msgstr "Webpagina verwijderen?" -#: ../../mod/editwebpage.php:186 +#: ../../mod/editwebpage.php:215 msgid "Delete Webpage" msgstr "Webpagina verwijderen" @@ -6333,72 +6527,22 @@ msgstr "Uploaden afbeelding mislukt" msgid "Image size reduction [%s] failed." msgstr "Verkleinen [%s] van afbeelding mislukt." -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contact niet gevonden" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Bron aangemaakt." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kanaalvoorstel verzonden." -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Bron aangemaakt." +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kanalen voorstellen" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nieuwe bron" - -#: ../../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/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/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/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Kanaalnaam" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Bron niet gevonden" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Bron bewerken" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Bron verwijderen" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Bron verwijderd" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Verwijderen bron mislukt." - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- kies map -" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stel een kanaal voor aan %s" #: ../../mod/filestorage.php:76 msgid "Permission Denied." @@ -6440,37 +6584,48 @@ msgstr "Hulp:" msgid "Not Found" msgstr "Niet gevonden" +#: ../../mod/acl.php:245 +msgid "network" +msgstr "netwerk" + #: ../../mod/follow.php:25 msgid "Channel added." msgstr "Kanaal toegevoegd." -#: ../../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/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Geen gevolmachtigde personen gevonden waaraan mogelijk het accountbeheer kan worden uitbesteed." -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contact niet gevonden" +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Accountbeheer uitbesteden" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kanaalvoorstel verzonden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kanalen voorstellen" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een kanaal voor aan %s" - -#: ../../mod/suggest.php:35 +#: ../../mod/delegate.php:123 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." +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Gevolmachtigde personen zijn in staat om alle aspecten van dit account te beheren, behalve enkele basisinstellingen. Besteed het beheer van je persoonlijke account niet aan iemand uit die je niet volledig vertrouwd." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Bestaande accountbeheerders" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Bestaande gevolmachtigde accountbeheerders" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Gevolmachtigde personen waaraan mogelijk het accountbeheer kan worden uitbesteed." + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Toevoegen" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Geen" #: ../../mod/group.php:20 msgid "Collection created." @@ -6520,761 +6675,11 @@ msgstr "Alle kanaalconnecties" msgid "Click on a channel to add or remove." msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." -#: ../../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/like.php:15 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd." - -#: ../../mod/like.php:21 +#: ../../mod/suggest.php:35 msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." - -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Ongeldig verzoek" - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "ding" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" - -#: ../../mod/like.php:430 -msgid "Action completed." -msgstr "Actie voltooid" - -#: ../../mod/like.php:431 -msgid "Thank you." -msgstr "Bedankt" - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Label verwijderd" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Verwijder itemlabel" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Kies een label om te verwijderen" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Thema-instellingen bijgewerkt." - -#: ../../mod/admin.php:97 ../../mod/admin.php:413 -msgid "Site" -msgstr "Hub-instellingen" - -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Accounts" - -#: ../../mod/admin.php:99 ../../mod/admin.php:860 -msgid "Channels" -msgstr "Kanalen" - -#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 -msgid "Plugins" -msgstr "Plug-ins" - -#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 -msgid "Themes" -msgstr "Thema's" - -#: ../../mod/admin.php:102 ../../mod/admin.php:515 -msgid "Server" -msgstr "Hubbeheer" - -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Profielconfiguratie" - -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "Database-updates" - -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 -msgid "Logs" -msgstr "Logboeken" - -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Plug-in-opties" - -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Berichtenwachtrij" - -#: ../../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/admin.php:212 -msgid "Summary" -msgstr "Samenvatting" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Geregistreerde accounts" - -#: ../../mod/admin.php:216 ../../mod/admin.php:518 -msgid "Pending registrations" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Versie" - -#: ../../mod/admin.php:219 ../../mod/admin.php:519 -msgid "Active plugins" -msgstr "Ingeschakelde plug-ins" - -#: ../../mod/admin.php:333 -msgid "Site settings updated." -msgstr "Hub-instellingen bijgewerkt." - -#: ../../mod/admin.php:364 -msgid "No special theme for accessibility" -msgstr "Geen speciaal thema voor universele toegang" - -#: ../../mod/admin.php:393 -msgid "Yes - with approval" -msgstr "Ja - met goedkeuring" - -#: ../../mod/admin.php:399 -msgid "My site is not a public server" -msgstr "Mijn RedMatrix-hub is niet openbaar" - -#: ../../mod/admin.php:400 -msgid "My site has paid access only" -msgstr "Mijn RedMatrix-hub kent alleen betaalde toegang" - -#: ../../mod/admin.php:401 -msgid "My site has free access only" -msgstr "Mijn RedMatrix-hub kent alleen gratis toegang" - -#: ../../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/admin.php:416 -msgid "File upload" -msgstr "Bestand uploaden" - -#: ../../mod/admin.php:417 -msgid "Policies" -msgstr "Beleid" - -#: ../../mod/admin.php:422 -msgid "Site name" -msgstr "Naam van deze RedMatrix-hub" - -#: ../../mod/admin.php:423 -msgid "Banner/Logo" -msgstr "Banner/logo" - -#: ../../mod/admin.php:424 -msgid "Administrator Information" -msgstr "Informatie over de beheerder van deze hub" - -#: ../../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/admin.php:425 -msgid "System language" -msgstr "Standaardtaal" - -#: ../../mod/admin.php:426 -msgid "System theme" -msgstr "Standaardthema" - -#: ../../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 lid veranderd worden) - verander thema-instellingen" - -#: ../../mod/admin.php:427 -msgid "Mobile system theme" -msgstr "Standaardthema voor mobiel" - -#: ../../mod/admin.php:427 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" - -#: ../../mod/admin.php:428 -msgid "Accessibility system theme" -msgstr "Standaardthema voor universele toegang" - -#: ../../mod/admin.php:428 -msgid "Accessibility theme" -msgstr "Thema voor universele toegang" - -#: ../../mod/admin.php:430 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-protocol inschakelen" - -#: ../../mod/admin.php:430 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Communiceer met Diaspora en Friendica (experimenteel)" - -#: ../../mod/admin.php:431 -msgid "Allow Feeds as Connections" -msgstr "Sta feeds toe als connecties" - -#: ../../mod/admin.php:431 -msgid "(Heavy system resource usage)" -msgstr "(sterk negatieve invloed op systeembronnen hub)" - -#: ../../mod/admin.php:432 -msgid "Maximum image size" -msgstr "Maximale grootte van afbeeldingen" - -#: ../../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/admin.php:433 -msgid "Does this site allow new member registration?" -msgstr "Staat deze hub nieuwe accounts toe?" - -#: ../../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/admin.php:435 -msgid "Register text" -msgstr "Tekst tijdens registratie" - -#: ../../mod/admin.php:435 -msgid "Will be displayed prominently on the registration page." -msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." - -#: ../../mod/admin.php:436 -msgid "Accounts abandoned after x days" -msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" - -#: ../../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/admin.php:437 -msgid "Allowed friend domains" -msgstr "Toegestane domeinen" - -#: ../../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/admin.php:438 -msgid "Allowed email domains" -msgstr "Toegestane e-maildomeinen" - -#: ../../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/admin.php:439 -msgid "Block public" -msgstr "Openbare toegang blokkeren" - -#: ../../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 leden." - -#: ../../mod/admin.php:440 -msgid "Verify Email Addresses" -msgstr "E-mailadres verifieren" - -#: ../../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/admin.php:441 -msgid "Force publish" -msgstr "Dwing kanaalvermelding af" - -#: ../../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/admin.php:442 -msgid "Disable discovery tab" -msgstr "Ontdekkingstab" - -#: ../../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/admin.php:443 -msgid "No login on Homepage" -msgstr "Geen inlogformulier op de homepage" - -#: ../../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 bezoekers 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 "Gebruikersnaam proxy" - -#: ../../mod/admin.php:446 -msgid "Proxy URL" -msgstr "URL proxy" - -#: ../../mod/admin.php:447 -msgid "Network timeout" -msgstr "Netwerktimeout" - -#: ../../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/admin.php:448 -msgid "Delivery interval" -msgstr "Afleveringsinterval" - -#: ../../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/admin.php:449 -msgid "Poll interval" -msgstr "Poll-interval" - -#: ../../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/admin.php:450 -msgid "Maximum Load Average" -msgstr "Maximaal gemiddelde systeembelasting" - -#: ../../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/admin.php:506 -msgid "No server found" -msgstr "Geen hub gevonden" - -#: ../../mod/admin.php:513 ../../mod/admin.php:737 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:513 -msgid "for channel" -msgstr "voor kanaal" - -#: ../../mod/admin.php:513 -msgid "on server" -msgstr "op hub" - -#: ../../mod/admin.php:513 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:534 -msgid "Update has been marked successful" -msgstr "Update is als succesvol gemarkeerd" - -#: ../../mod/admin.php:544 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." - -#: ../../mod/admin.php:547 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s was geslaagd." - -#: ../../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/admin.php:554 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-functie %s kon niet gevonden worden." - -#: ../../mod/admin.php:569 -msgid "No failed updates." -msgstr "Geen mislukte updates." - -#: ../../mod/admin.php:573 -msgid "Failed Updates" -msgstr "Mislukte updates" - -#: ../../mod/admin.php:575 -msgid "Mark success (if update was manually applied)" -msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" - -#: ../../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/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/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/admin.php:638 -msgid "Account not found" -msgstr "Account niet gevonden" - -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' unblocked" -msgstr "Account '%s' gedeblokkeerd" - -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' blocked" -msgstr "Lid '%s' geblokkeerd" - -#: ../../mod/admin.php:724 ../../mod/admin.php:736 -msgid "Users" -msgstr "Accounts" - -#: ../../mod/admin.php:726 ../../mod/admin.php:862 -msgid "select all" -msgstr "alles selecteren" - -#: ../../mod/admin.php:727 -msgid "User registrations waiting for confirm" -msgstr "Accounts die op goedkeuring wachten" - -#: ../../mod/admin.php:728 -msgid "Request date" -msgstr "Tijd/datum verzoek" - -#: ../../mod/admin.php:729 -msgid "No registrations." -msgstr "Geen verzoeken." - -#: ../../mod/admin.php:730 -msgid "Approve" -msgstr "Goedkeuren" - -#: ../../mod/admin.php:731 -msgid "Deny" -msgstr "Afkeuren" - -#: ../../mod/admin.php:737 -msgid "Register date" -msgstr "Geregistreerd" - -#: ../../mod/admin.php:737 -msgid "Last login" -msgstr "Laatste keer ingelogd" - -#: ../../mod/admin.php:737 -msgid "Expires" -msgstr "Verloopt" - -#: ../../mod/admin.php:737 -msgid "Service Class" -msgstr "Abonnementen" - -#: ../../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 "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/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/admin.php:773 -#, 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/admin.php:780 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanaal verwijderd" -msgstr[1] "%s kanalen verwijderd" - -#: ../../mod/admin.php:799 -msgid "Channel not found" -msgstr "Kanaal niet gevonden" - -#: ../../mod/admin.php:810 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanaal '%s' verwijderd" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanaal '%s' ongecensureerd" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanaal '%s' gecensureerd" - -#: ../../mod/admin.php:864 -msgid "Censor" -msgstr "Censureren" - -#: ../../mod/admin.php:865 -msgid "Uncensor" -msgstr "Niet censureren" - -#: ../../mod/admin.php:868 -msgid "UID" -msgstr "UID" - -#: ../../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 "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" - -#: ../../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 "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" - -#: ../../mod/admin.php:910 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-in %s uitgeschakeld." - -#: ../../mod/admin.php:914 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-in %s ingeschakeld" - -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 -msgid "Disable" -msgstr "Uitschakelen" - -#: ../../mod/admin.php:926 ../../mod/admin.php:1128 -msgid "Enable" -msgstr "Inschakelen" - -#: ../../mod/admin.php:952 ../../mod/admin.php:1157 -msgid "Toggle" -msgstr "Omschakelen" - -#: ../../mod/admin.php:960 ../../mod/admin.php:1167 -msgid "Author: " -msgstr "Auteur: " - -#: ../../mod/admin.php:961 ../../mod/admin.php:1168 -msgid "Maintainer: " -msgstr "Beheerder: " - -#: ../../mod/admin.php:1090 -msgid "No themes found." -msgstr "Geen thema's gevonden" - -#: ../../mod/admin.php:1149 -msgid "Screenshot" -msgstr "Schermafdruk" - -#: ../../mod/admin.php:1197 -msgid "[Experimental]" -msgstr "[Experimenteel]" - -#: ../../mod/admin.php:1198 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" - -#: ../../mod/admin.php:1225 -msgid "Log settings updated." -msgstr "Logboek-instellingen bijgewerkt." - -#: ../../mod/admin.php:1281 -msgid "Clear" -msgstr "Leegmaken" - -#: ../../mod/admin.php:1287 -msgid "Debugging" -msgstr "Debuggen" - -#: ../../mod/admin.php:1288 -msgid "Log file" -msgstr "Logbestand" - -#: ../../mod/admin.php:1288 -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/admin.php:1289 -msgid "Log level" -msgstr "Logniveau" - -#: ../../mod/admin.php:1336 -msgid "New Profile Field" -msgstr "Nieuw profielveld" - -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "Field nickname" -msgstr "Bijnaam voor veld" - -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "System name of field" -msgstr "Systeemnaam voor veld" - -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 -msgid "Input type" -msgstr "Invoertype" - -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Field Name" -msgstr "Veldnaam" - -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Label on profile pages" -msgstr "Tekstlabel voor op profielpagina's" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Help text" -msgstr "Helptekst" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Additional info (optional)" -msgstr "Extra informatie (optioneel)" - -#: ../../mod/admin.php:1351 -msgid "Field definition not found" -msgstr "Velddefinitie niet gevonden" - -#: ../../mod/admin.php:1357 -msgid "Edit Profile Field" -msgstr "Profielveld bewerken" - -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Ding bijgewerkt" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Ding toegevoegd" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Ding weergeven" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Item niet gevonden" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Ding bewerken" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Kies een profiel" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Plaats een bericht" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL van foto van ding (optioneel)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." #: ../../mod/import.php:25 #, php-format @@ -7362,6 +6767,731 @@ msgstr "Stel deze hub als mijn primaire locatie in" msgid "Import existing posts if possible" msgstr "Importeer bestaande berichten (wanneer mogelijk)" +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s labelde het %3$s van %2$s met %4$s" + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Label verwijderd" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Verwijder itemlabel" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Kies een label om te verwijderen" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Thema-instellingen bijgewerkt." + +#: ../../mod/admin.php:97 ../../mod/admin.php:411 +msgid "Site" +msgstr "Hub-instellingen" + +#: ../../mod/admin.php:98 +msgid "Accounts" +msgstr "Accounts" + +#: ../../mod/admin.php:99 ../../mod/admin.php:858 +msgid "Channels" +msgstr "Kanalen" + +#: ../../mod/admin.php:100 ../../mod/admin.php:949 ../../mod/admin.php:991 +msgid "Plugins" +msgstr "Plug-ins" + +#: ../../mod/admin.php:101 ../../mod/admin.php:1154 ../../mod/admin.php:1190 +msgid "Themes" +msgstr "Thema's" + +#: ../../mod/admin.php:102 ../../mod/admin.php:512 +msgid "Server" +msgstr "Hubbeheer" + +#: ../../mod/admin.php:103 +msgid "Profile Config" +msgstr "Profielconfiguratie" + +#: ../../mod/admin.php:104 +msgid "DB updates" +msgstr "Database-updates" + +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1277 +msgid "Logs" +msgstr "Logboeken" + +#: ../../mod/admin.php:124 +msgid "Plugin Features" +msgstr "Plug-in-opties" + +#: ../../mod/admin.php:126 +msgid "User registrations waiting for confirmation" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Berichtenwachtrij" + +#: ../../mod/admin.php:211 ../../mod/admin.php:410 ../../mod/admin.php:511 +#: ../../mod/admin.php:721 ../../mod/admin.php:857 ../../mod/admin.php:948 +#: ../../mod/admin.php:990 ../../mod/admin.php:1153 ../../mod/admin.php:1189 +#: ../../mod/admin.php:1276 +msgid "Administration" +msgstr "Beheer" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Samenvatting" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Geregistreerde accounts" + +#: ../../mod/admin.php:216 ../../mod/admin.php:515 +msgid "Pending registrations" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Versie" + +#: ../../mod/admin.php:219 ../../mod/admin.php:516 +msgid "Active plugins" +msgstr "Ingeschakelde plug-ins" + +#: ../../mod/admin.php:326 +msgid "Site settings updated." +msgstr "Hub-instellingen bijgewerkt." + +#: ../../mod/admin.php:363 +msgid "mobile" +msgstr "mobiel" + +#: ../../mod/admin.php:365 +msgid "experimental" +msgstr "experimenteel" + +#: ../../mod/admin.php:367 +msgid "unsupported" +msgstr "Niet ondersteund" + +#: ../../mod/admin.php:391 +msgid "Yes - with approval" +msgstr "Ja - met goedkeuring" + +#: ../../mod/admin.php:397 +msgid "My site is not a public server" +msgstr "Mijn RedMatrix-hub is niet openbaar" + +#: ../../mod/admin.php:398 +msgid "My site has paid access only" +msgstr "Mijn RedMatrix-hub kent alleen betaalde toegang" + +#: ../../mod/admin.php:399 +msgid "My site has free access only" +msgstr "Mijn RedMatrix-hub kent alleen gratis toegang" + +#: ../../mod/admin.php:400 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mijn RedMatrix-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" + +#: ../../mod/admin.php:414 +msgid "File upload" +msgstr "Bestand uploaden" + +#: ../../mod/admin.php:415 +msgid "Policies" +msgstr "Beleid" + +#: ../../mod/admin.php:420 +msgid "Site name" +msgstr "Naam van deze RedMatrix-hub" + +#: ../../mod/admin.php:421 +msgid "Banner/Logo" +msgstr "Banner/logo" + +#: ../../mod/admin.php:422 +msgid "Administrator Information" +msgstr "Informatie over de beheerder van deze hub" + +#: ../../mod/admin.php:422 +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/admin.php:423 +msgid "System language" +msgstr "Standaardtaal" + +#: ../../mod/admin.php:424 +msgid "System theme" +msgstr "Standaardthema" + +#: ../../mod/admin.php:424 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standaardthema voor RedMatrix-hub (kan door lid veranderd worden) - verander thema-instellingen" + +#: ../../mod/admin.php:425 +msgid "Mobile system theme" +msgstr "Standaardthema voor mobiel" + +#: ../../mod/admin.php:425 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" + +#: ../../mod/admin.php:427 +msgid "Enable Diaspora Protocol" +msgstr "Diaspora-protocol inschakelen" + +#: ../../mod/admin.php:427 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "Communiceer met Diaspora en Friendica (experimenteel)" + +#: ../../mod/admin.php:428 +msgid "Allow Feeds as Connections" +msgstr "Sta feeds toe als connecties" + +#: ../../mod/admin.php:428 +msgid "(Heavy system resource usage)" +msgstr "(sterk negatieve invloed op systeembronnen hub)" + +#: ../../mod/admin.php:429 +msgid "Maximum image size" +msgstr "Maximale grootte van afbeeldingen" + +#: ../../mod/admin.php:429 +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/admin.php:430 +msgid "Does this site allow new member registration?" +msgstr "Staat deze hub nieuwe accounts toe?" + +#: ../../mod/admin.php:431 +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/admin.php:432 +msgid "Register text" +msgstr "Tekst tijdens registratie" + +#: ../../mod/admin.php:432 +msgid "Will be displayed prominently on the registration page." +msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." + +#: ../../mod/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" + +#: ../../mod/admin.php:433 +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/admin.php:434 +msgid "Allowed friend domains" +msgstr "Toegestane domeinen" + +#: ../../mod/admin.php:434 +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/admin.php:435 +msgid "Allowed email domains" +msgstr "Toegestane e-maildomeinen" + +#: ../../mod/admin.php:435 +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/admin.php:436 +msgid "Block public" +msgstr "Openbare toegang blokkeren" + +#: ../../mod/admin.php:436 +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 leden." + +#: ../../mod/admin.php:437 +msgid "Verify Email Addresses" +msgstr "E-mailadres verifieren" + +#: ../../mod/admin.php:437 +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/admin.php:438 +msgid "Force publish" +msgstr "Dwing kanaalvermelding af" + +#: ../../mod/admin.php:438 +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/admin.php:439 +msgid "Disable discovery tab" +msgstr "Ontdekkingstab" + +#: ../../mod/admin.php:439 +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/admin.php:440 +msgid "No login on Homepage" +msgstr "Geen inlogformulier op de homepage" + +#: ../../mod/admin.php:440 +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 bezoekers te zien krijgen, te verbergen. (bijvoorbeeld wanneer je een kanaal op deze RedMatrix-hub als homepage gebruikt)" + +#: ../../mod/admin.php:442 +msgid "Proxy user" +msgstr "Gebruikersnaam proxy" + +#: ../../mod/admin.php:443 +msgid "Proxy URL" +msgstr "URL proxy" + +#: ../../mod/admin.php:444 +msgid "Network timeout" +msgstr "Netwerktimeout" + +#: ../../mod/admin.php:444 +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/admin.php:445 +msgid "Delivery interval" +msgstr "Afleveringsinterval" + +#: ../../mod/admin.php:445 +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/admin.php:446 +msgid "Poll interval" +msgstr "Poll-interval" + +#: ../../mod/admin.php:446 +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:447 +msgid "Maximum Load Average" +msgstr "Maximaal gemiddelde systeembelasting" + +#: ../../mod/admin.php:447 +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/admin.php:503 +msgid "No server found" +msgstr "Geen hub gevonden" + +#: ../../mod/admin.php:510 ../../mod/admin.php:735 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:510 +msgid "for channel" +msgstr "voor kanaal" + +#: ../../mod/admin.php:510 +msgid "on server" +msgstr "op hub" + +#: ../../mod/admin.php:510 +msgid "Status" +msgstr "Status" + +#: ../../mod/admin.php:531 +msgid "Update has been marked successful" +msgstr "Update is als succesvol gemarkeerd" + +#: ../../mod/admin.php:541 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." + +#: ../../mod/admin.php:544 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s was geslaagd." + +#: ../../mod/admin.php:548 +#, 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/admin.php:551 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-functie %s kon niet gevonden worden." + +#: ../../mod/admin.php:566 +msgid "No failed updates." +msgstr "Geen mislukte updates." + +#: ../../mod/admin.php:570 +msgid "Failed Updates" +msgstr "Mislukte updates" + +#: ../../mod/admin.php:572 +msgid "Mark success (if update was manually applied)" +msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" + +#: ../../mod/admin.php:573 +msgid "Attempt to execute this update step automatically" +msgstr "Poging om deze stap van de update automatisch uit te voeren." + +#: ../../mod/admin.php:599 +#, 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/admin.php:606 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s account verwijderd" +msgstr[1] "%s accounts verwijderd" + +#: ../../mod/admin.php:635 +msgid "Account not found" +msgstr "Account niet gevonden" + +#: ../../mod/admin.php:655 +#, php-format +msgid "User '%s' unblocked" +msgstr "Account '%s' gedeblokkeerd" + +#: ../../mod/admin.php:655 +#, php-format +msgid "User '%s' blocked" +msgstr "Lid '%s' geblokkeerd" + +#: ../../mod/admin.php:722 ../../mod/admin.php:734 +msgid "Users" +msgstr "Accounts" + +#: ../../mod/admin.php:724 ../../mod/admin.php:860 +msgid "select all" +msgstr "alles selecteren" + +#: ../../mod/admin.php:725 +msgid "User registrations waiting for confirm" +msgstr "Accounts die op goedkeuring wachten" + +#: ../../mod/admin.php:726 +msgid "Request date" +msgstr "Tijd/datum verzoek" + +#: ../../mod/admin.php:727 +msgid "No registrations." +msgstr "Geen verzoeken." + +#: ../../mod/admin.php:728 +msgid "Approve" +msgstr "Goedkeuren" + +#: ../../mod/admin.php:729 +msgid "Deny" +msgstr "Afkeuren" + +#: ../../mod/admin.php:735 +msgid "Register date" +msgstr "Geregistreerd" + +#: ../../mod/admin.php:735 +msgid "Last login" +msgstr "Laatste keer ingelogd" + +#: ../../mod/admin.php:735 +msgid "Expires" +msgstr "Verloopt" + +#: ../../mod/admin.php:735 +msgid "Service Class" +msgstr "Abonnementen" + +#: ../../mod/admin.php:737 +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?" + +#: ../../mod/admin.php:738 +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/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/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/admin.php:797 +msgid "Channel not found" +msgstr "Kanaal niet gevonden" + +#: ../../mod/admin.php:808 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanaal '%s' verwijderd" + +#: ../../mod/admin.php:819 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanaal '%s' ongecensureerd" + +#: ../../mod/admin.php:819 +#, 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" + +#: ../../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/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/admin.php:908 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-in %s uitgeschakeld." + +#: ../../mod/admin.php:912 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-in %s ingeschakeld" + +#: ../../mod/admin.php:922 ../../mod/admin.php:1124 +msgid "Disable" +msgstr "Uitschakelen" + +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +msgid "Enable" +msgstr "Inschakelen" + +#: ../../mod/admin.php:950 ../../mod/admin.php:1155 +msgid "Toggle" +msgstr "Omschakelen" + +#: ../../mod/admin.php:958 ../../mod/admin.php:1165 +msgid "Author: " +msgstr "Auteur: " + +#: ../../mod/admin.php:959 ../../mod/admin.php:1166 +msgid "Maintainer: " +msgstr "Beheerder: " + +#: ../../mod/admin.php:1088 +msgid "No themes found." +msgstr "Geen thema's gevonden" + +#: ../../mod/admin.php:1147 +msgid "Screenshot" +msgstr "Schermafdruk" + +#: ../../mod/admin.php:1195 +msgid "[Experimental]" +msgstr "[Experimenteel]" + +#: ../../mod/admin.php:1196 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" + +#: ../../mod/admin.php:1223 +msgid "Log settings updated." +msgstr "Logboek-instellingen bijgewerkt." + +#: ../../mod/admin.php:1279 +msgid "Clear" +msgstr "Leegmaken" + +#: ../../mod/admin.php:1285 +msgid "Debugging" +msgstr "Debuggen" + +#: ../../mod/admin.php:1286 +msgid "Log file" +msgstr "Logbestand" + +#: ../../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/admin.php:1287 +msgid "Log level" +msgstr "Logniveau" + +#: ../../mod/admin.php:1334 +msgid "New Profile Field" +msgstr "Nieuw profielveld" + +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "Field nickname" +msgstr "Bijnaam voor veld" + +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "System name of field" +msgstr "Systeemnaam voor veld" + +#: ../../mod/admin.php:1336 ../../mod/admin.php:1357 +msgid "Input type" +msgstr "Invoertype" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Field Name" +msgstr "Veldnaam" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Label on profile pages" +msgstr "Tekstlabel voor op profielpagina's" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Help text" +msgstr "Helptekst" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Additional info (optional)" +msgstr "Extra informatie (optioneel)" + +#: ../../mod/admin.php:1349 +msgid "Field definition not found" +msgstr "Velddefinitie niet gevonden" + +#: ../../mod/admin.php:1355 +msgid "Edit Profile Field" +msgstr "Profielveld bewerken" + +#: ../../mod/item.php:159 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " + +#: ../../mod/item.php:418 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" + +#: ../../mod/item.php:460 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." + +#: ../../mod/item.php:898 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." + +#: ../../mod/item.php:1373 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." + +#: ../../mod/item.php:1379 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd." + +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan." + +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "Ongeldig verzoek" + +#: ../../mod/like.php:119 +msgid "thing" +msgstr "ding" + +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." + +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" + +#: ../../mod/like.php:430 +msgid "Action completed." +msgstr "Actie voltooid" + +#: ../../mod/like.php:431 +msgid "Thank you." +msgstr "Bedankt" + #: ../../mod/invite.php:25 msgid "Total invitation limit exceeded." msgstr "Limiet voor aantal uitnodigingen overschreden." @@ -7431,45 +7561,6 @@ msgstr "of bezoek " msgid "3. Click [Connect]" msgstr "3. Klik op [+ Verbinden]" -#: ../../mod/item.php:151 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " - -#: ../../mod/item.php:411 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" - -#: ../../mod/item.php:453 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." - -#: ../../mod/item.php:891 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." - -#: ../../mod/item.php:1366 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." - -#: ../../mod/item.php:1372 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." - -#: ../../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/layouts.php:62 -msgid "Help with this feature" -msgstr "Hulp voor dit onderdeel" - -#: ../../mod/layouts.php:85 -msgid "Layout Name" -msgstr "Naam lay-out" - #: ../../mod/locs.php:19 ../../mod/locs.php:46 msgid "Location not found." msgstr "Locatie niet gevonden." @@ -7498,6 +7589,19 @@ msgstr "Primaire locatie" msgid "Drop location" msgstr "Locatie verwijderen" +#: ../../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/layouts.php:110 +msgid "Help with this feature" +msgstr "Hulp voor dit onderdeel" + +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "Naam lay-out" + #: ../../mod/lockview.php:31 msgid "Remote privacy information not available." msgstr "Privacy-informatie op afstand niet beschikbaar." @@ -7519,79 +7623,6 @@ msgstr "Bezoek het profiel van %s [%s]" msgid "View Connnections" msgstr "Connecties weergeven" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." - -#: ../../mod/lostpass.php:85 ../../boot.php:1523 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-mailadres" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Opnieuw instellen" - #: ../../mod/magic.php:70 msgid "Hub not found." msgstr "Hub niet gevonden." @@ -7678,31 +7709,6 @@ msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je 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" @@ -7723,87 +7729,91 @@ msgstr "is geïnteresseerd in:" msgid "No matches" msgstr "Geen overeenkomsten" -#: ../../mod/menu.php:21 +#: ../../mod/menu.php:31 msgid "Menu updated." msgstr "Menu aangepast. " -#: ../../mod/menu.php:25 +#: ../../mod/menu.php:35 msgid "Unable to update menu." msgstr "Niet in staat om menu aan te passen" -#: ../../mod/menu.php:30 +#: ../../mod/menu.php:40 msgid "Menu created." msgstr "Menu aangemaakt." -#: ../../mod/menu.php:34 +#: ../../mod/menu.php:44 msgid "Unable to create menu." msgstr "Niet in staat om menu aan te maken." -#: ../../mod/menu.php:57 +#: ../../mod/menu.php:76 msgid "Manage Menus" msgstr "Menu's beheren" -#: ../../mod/menu.php:60 +#: ../../mod/menu.php:79 msgid "Drop" msgstr "Verwijderen" -#: ../../mod/menu.php:62 +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" + +#: ../../mod/menu.php:82 msgid "Create a new menu" msgstr "Een nieuwe menu aanmaken" -#: ../../mod/menu.php:63 +#: ../../mod/menu.php:83 msgid "Delete this menu" msgstr "Menu verwijderen" -#: ../../mod/menu.php:64 ../../mod/menu.php:109 +#: ../../mod/menu.php:84 ../../mod/menu.php:125 msgid "Edit menu contents" msgstr "Bewerk de inhoud van het menu" -#: ../../mod/menu.php:65 +#: ../../mod/menu.php:85 msgid "Edit this menu" msgstr "Dit menu bewerken" -#: ../../mod/menu.php:80 +#: ../../mod/menu.php:96 msgid "New Menu" msgstr "Nieuw menu" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 +#: ../../mod/menu.php:97 ../../mod/menu.php:126 msgid "Menu name" msgstr "Naam van menu" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 +#: ../../mod/menu.php:97 ../../mod/menu.php:126 msgid "Must be unique, only seen by you" msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." -#: ../../mod/menu.php:82 ../../mod/menu.php:111 +#: ../../mod/menu.php:98 ../../mod/menu.php:127 msgid "Menu title" msgstr "Titel van menu" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 +#: ../../mod/menu.php:98 ../../mod/menu.php:127 msgid "Menu title as seen by others" msgstr "Titel van menu zoals anderen dat zien." -#: ../../mod/menu.php:83 ../../mod/menu.php:112 +#: ../../mod/menu.php:99 ../../mod/menu.php:128 msgid "Allow bookmarks" msgstr "Bladwijzers toestaan" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 +#: ../../mod/menu.php:99 ../../mod/menu.php:128 msgid "Menu may be used to store saved bookmarks" msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" -#: ../../mod/menu.php:98 +#: ../../mod/menu.php:114 msgid "Menu deleted." msgstr "Menu verwijderd." -#: ../../mod/menu.php:100 +#: ../../mod/menu.php:116 msgid "Menu could not be deleted." msgstr "Menu kon niet verwijderd worden." -#: ../../mod/menu.php:106 +#: ../../mod/menu.php:122 msgid "Edit Menu" msgstr "Menu bewerken" -#: ../../mod/menu.php:108 +#: ../../mod/menu.php:124 msgid "Add or remove entries to this menu" msgstr "Items aan dit menu toevoegen of verwijder" @@ -7829,7 +7839,7 @@ msgid "" " 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." +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/new_channel.php:113 msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " @@ -7884,6 +7894,14 @@ msgstr "Geen systeemnotificaties meer." msgid "System Notifications" msgstr "Systeemnotificaties" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Xchan opzoeken" + +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Zoek een xchan (of webbie) die begint met:" + #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "Niet in staat om je hub te vinden" @@ -7896,10 +7914,6 @@ msgstr "Verzenden bericht geslaagd." msgid "invalid target signature" msgstr "ongeldig doelkenmerk" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." - #: ../../mod/appman.php:28 ../../mod/appman.php:44 msgid "App installed." msgstr "App geïnstalleerd" @@ -8273,41 +8287,41 @@ msgstr "Rommelig vormgegeven fotoalbums" msgid "Are you a clean desk or a messy desk person?" msgstr "Ben je iemand die van een opgeruimd bureau houdt of van een rommelig bureau?" -#: ../../boot.php:1311 +#: ../../boot.php:1293 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1314 +#: ../../boot.php:1296 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1488 +#: ../../boot.php:1463 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van de RedMatrix" -#: ../../boot.php:1516 +#: ../../boot.php:1489 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1517 +#: ../../boot.php:1490 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1522 +#: ../../boot.php:1493 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:1587 +#: ../../boot.php:1567 msgid "permission denied" msgstr "toegang geweigerd" -#: ../../boot.php:1588 +#: ../../boot.php:1568 msgid "Got Zot?" msgstr "Heb je Zot?" -#: ../../boot.php:2021 +#: ../../boot.php:2030 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" diff --git a/view/nl/strings.php b/view/nl/strings.php index 0266e732b..8c45575d7 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -7,55 +7,6 @@ function string_plural_select_nl($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; $a->strings["Profile Photos"] = "Profielfoto's"; -$a->strings["Site Admin"] = "Hubbeheerder"; -$a->strings["Bookmarks"] = "Bladwijzers"; -$a->strings["Address Book"] = "Connecties"; -$a->strings["Login"] = "Inloggen"; -$a->strings["Channel Manager"] = "Kanaalbeheer"; -$a->strings["Matrix"] = "Matrix"; -$a->strings["Settings"] = "Instellingen"; -$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"] = "Agenda"; -$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["Edit"] = "Bewerken"; -$a->strings["Delete"] = "Verwijderen"; -$a->strings["Unknown"] = "Onbekend"; -$a->strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["No source file."] = "Geen bronbestand."; -$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -$a->strings["Path not available."] = "Pad niet beschikbaar."; -$a->strings["Empty pathname"] = "Padnaam leeg"; -$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -$a->strings["Path not found."] = "Pad niet gevonden"; -$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -$a->strings["database storage failed."] = "opslag in database mislukt."; $a->strings["photo"] = "foto"; $a->strings["event"] = "gebeurtenis"; $a->strings["channel"] = "kanaal"; @@ -68,6 +19,7 @@ $a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; $a->strings["poked"] = "aangestoten"; $a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; $a->strings["Select"] = "Kies"; +$a->strings["Delete"] = "Verwijderen"; $a->strings["Private Message"] = "Privébericht"; $a->strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; $a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; @@ -91,6 +43,8 @@ $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["Poke"] = "Aanstoten"; +$a->strings["Unknown"] = "Onbekend"; $a->strings["%s likes this."] = "%s vindt dit leuk."; $a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; $a->strings["%2\$d people like this."] = array( @@ -162,94 +116,100 @@ $a->strings["Channel"] = "Kanaal"; $a->strings["Status Messages and Posts"] = "Berichten in dit kanaal"; $a->strings["About"] = "Over"; $a->strings["Profile Details"] = "Profiel"; +$a->strings["Photos"] = "Foto's"; $a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Files"] = "Bestanden"; $a->strings["Files and Storage"] = "Bestanden en opslagruimte"; $a->strings["Chatrooms"] = "Chatkanalen"; +$a->strings["Bookmarks"] = "Bladwijzers"; $a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +$a->strings["Webpages"] = "Webpagina's"; $a->strings["Manage Webpages"] = "Webpagina's beheren"; $a->strings["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["Sort Options"] = "Sorteeropties"; +$a->strings["Alphabetic"] = "Alfabetisch"; +$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; +$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["New Page"] = "Nieuwe pagina"; +$a->strings["Edit"] = "Bewerken"; $a->strings["View"] = "Weergeven"; $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["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["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["Permission denied."] = "Toegang geweigerd"; +$a->strings["Room is full"] = "Chatkanaal is vol"; $a->strings["Embedded content"] = "Ingesloten inhoud"; $a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; -$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["Special Purpose"] = "Speciaal doel"; -$a->strings["Celebrity/Soapbox"] = "Beroemdheid/alleen volgen"; -$a->strings["Group Repository"] = "Groepsopslag"; -$a->strings["Other"] = "Anders"; -$a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +$a->strings["Categories"] = "Categorieën"; +$a->strings["Apps"] = "Apps"; +$a->strings["System"] = "Systeem"; +$a->strings["Create Personal App"] = "Persoonlijke app maken"; +$a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; +$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; +$a->strings["Suggestions"] = "Voorgestelde kanalen"; +$a->strings["See more..."] = "Meer..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +$a->strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +$a->strings["Enter the channel address"] = "Vul het adres van het nieuwe kanaal in"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: bob@example.com, http://example.com/barbara"; +$a->strings["Notes"] = "Aantekeningen"; +$a->strings["Save"] = "Opslaan"; +$a->strings["Remove term"] = "Verwijder zoekterm"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["add"] = "toevoegen"; +$a->strings["Saved Folders"] = "Bewaarde mappen"; +$a->strings["Everything"] = "Alles"; +$a->strings["Archives"] = "Archieven"; +$a->strings["Refresh"] = "Vernieuwen"; +$a->strings["Me"] = "Ik"; +$a->strings["Best Friends"] = "Goede vrienden"; +$a->strings["Friends"] = "Vrienden"; +$a->strings["Co-workers"] = "Collega's"; +$a->strings["Former Friends"] = "Oude vrienden"; +$a->strings["Acquaintances"] = "Kennissen"; +$a->strings["Everybody"] = "Iedereen"; +$a->strings["Account settings"] = "Account"; +$a->strings["Channel settings"] = "Kanaal"; +$a->strings["Additional features"] = "Extra functies"; +$a->strings["Feature settings"] = "Plug-ins"; +$a->strings["Display settings"] = "Weergave"; +$a->strings["Connected apps"] = "Verbonden applicaties"; +$a->strings["Export channel"] = "Kanaal exporteren"; +$a->strings["Export content"] = "Inhoud exporteren"; +$a->strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; +$a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +$a->strings["Channel Sources"] = "Kanaalbronnen"; +$a->strings["Settings"] = "Instellingen"; +$a->strings["Messages"] = "Berichten"; +$a->strings["Check Mail"] = "Controleer op nieuwe berichten"; +$a->strings["New Message"] = "Nieuw bericht"; +$a->strings["Chat Rooms"] = "Chatkanalen"; +$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +$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[" 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["Miscellaneous"] = "Diversen"; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["year"] = "jaar"; -$a->strings["years"] = "jaren"; -$a->strings["month"] = "maand"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$a->strings["day"] = "dag"; -$a->strings["days"] = "dagen"; -$a->strings["hour"] = "uur"; -$a->strings["hours"] = "uren"; -$a->strings["minute"] = "minuut"; -$a->strings["minutes"] = "minuten"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "seconden"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -$a->strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; -$a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; $a->strings["Attachments:"] = "Bijlagen:"; +$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Redmatrix event notification:"] = "Notificatie RedMatrix-gebeurtenis:"; -$a->strings["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["Logged out."] = "Uitgelogd."; -$a->strings["Failed authentication"] = "Mislukte authenticatie"; -$a->strings["Login failed."] = "Inloggen mislukt."; +$a->strings["Starts:"] = "Start:"; +$a->strings["Finishes:"] = "Einde:"; +$a->strings["Location:"] = "Plaats:"; $a->strings["parent"] = "omhoog"; $a->strings["Collection"] = "map"; $a->strings["Principal"] = "principal"; @@ -269,6 +229,14 @@ $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["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["Default"] = "Standaard"; $a->strings["Frequently"] = "Regelmatig"; $a->strings["Hourly"] = "Elk uur"; @@ -299,63 +267,12 @@ $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["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; $a->strings["%d connection in common"] = array( 0 => "%d gemeenschappelijke connectie", 1 => "%d gemeenschappelijke connecties", ); $a->strings["show more"] = "meer connecties weergeven"; -$a->strings["Not a valid email address"] = "Geen geldig e-mailadres"; -$a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan"; -$a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd."; -$a->strings["An invitation is required."] = "Een uitnodiging is vereist"; -$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; -$a->strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -$a->strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -$a->strings["Registration request at %s"] = "Registratiebevestiging voor %s"; -$a->strings["Administrator"] = "Beheerder"; -$a->strings["your registration password"] = "jouw registratiewachtwoord"; -$a->strings["Registration details for %s"] = "Registratiegegevens voor %s"; -$a->strings["Account approved."] = "Account goedgekeurd"; -$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -$a->strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; -$a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -$a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -$a->strings["Image/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["Sort Options"] = "Sorteeropties"; -$a->strings["Alphabetic"] = "Alfabetisch"; -$a->strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; -$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["Tags"] = "Labels"; -$a->strings["Keywords"] = "Trefwoorden"; -$a->strings["have"] = "heb"; -$a->strings["has"] = "heeft"; -$a->strings["want"] = "wil"; -$a->strings["wants"] = "wil"; -$a->strings["like"] = "vind dit leuk"; -$a->strings["likes"] = "vindt dit leuk"; -$a->strings["dislike"] = "vind dit niet leuk"; -$a->strings["dislikes"] = "vindt dit niet leuk"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); $a->strings["Red Matrix Notification"] = "RedMatrix-notificatie"; $a->strings["redmatrix"] = "RedMatrix"; $a->strings["Thank You,"] = "Bedankt,"; @@ -396,107 +313,130 @@ $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["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["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["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; +$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; +$a->strings["All Channels"] = "Alle kanalen"; +$a->strings["edit"] = "bewerken"; +$a->strings["Collections"] = "Collecties"; +$a->strings["Edit collection"] = "Collectie bewerken"; +$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken"; +$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; +$a->strings["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["Tags"] = "Labels"; +$a->strings["Keywords"] = "Trefwoorden"; +$a->strings["have"] = "heb"; +$a->strings["has"] = "heeft"; +$a->strings["want"] = "wil"; +$a->strings["wants"] = "wil"; +$a->strings["like"] = "vind dit leuk"; +$a->strings["likes"] = "vindt dit leuk"; +$a->strings["dislike"] = "vind dit niet leuk"; +$a->strings["dislikes"] = "vindt dit niet leuk"; +$a->strings["__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["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["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["Logout"] = "Uitloggen"; +$a->strings["End this session"] = "Beëindig deze sessie"; +$a->strings["Home"] = "Home"; +$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; +$a->strings["Your profile page"] = "Jouw profielpagina"; +$a->strings["Edit Profiles"] = "Bewerk profielen"; +$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["Edit 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["Chat"] = "Chatten"; +$a->strings["Your chatrooms"] = "Jouw chatkanalen"; +$a->strings["Your bookmarks"] = "Jouw bladwijzers"; +$a->strings["Your webpages"] = "Jouw webpagina's"; +$a->strings["Login"] = "Inloggen"; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; +$a->strings["Remote authentication"] = "Authenticatie op afstand"; +$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Register"] = "Registreren"; +$a->strings["Create an account"] = "Maak een account aan"; +$a->strings["Help"] = "Hulp"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Applications, utilities, links, games"] = "Apps"; +$a->strings["Search"] = "Zoeken"; +$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; +$a->strings["Directory"] = "Kanalengids"; +$a->strings["Channel Directory"] = "Kanalengids"; +$a->strings["Matrix"] = "Matrix"; +$a->strings["Your matrix"] = "Jouw matrix"; +$a->strings["Mark all matrix notifications seen"] = "Markeer alle matrixnotificaties als bekeken"; +$a->strings["Channel Home"] = "Tijdlijn kanaal"; +$a->strings["Channel home"] = "Tijdlijn kanaal"; +$a->strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +$a->strings["Connections"] = "Connecties"; +$a->strings["Notices"] = "Notificaties"; +$a->strings["Notifications"] = "Notificaties"; +$a->strings["See all notifications"] = "Alle notificaties weergeven"; +$a->strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +$a->strings["Mail"] = "Privéberichten"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["See all private messages"] = "Alle privéberichten weergeven"; +$a->strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +$a->strings["Inbox"] = "Postvak IN"; +$a->strings["Outbox"] = "Postvak UIT"; +$a->strings["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["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +$a->strings["Admin"] = "Beheer"; +$a->strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +$a->strings["Please wait..."] = "Wachten aub..."; +$a->strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; +$a->strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; +$a->strings["Can view my photo albums"] = "Kan mijn fotoalbums bekijken"; +$a->strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; +$a->strings["Can view my file storage"] = "Kan mijn bestanden bekijken"; +$a->strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; +$a->strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; +$a->strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; +$a->strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; +$a->strings["Can post photos to my photo albums"] = "Kan foto's aan mijn fotoalbums toevoegen"; +$a->strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; +$a->strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +$a->strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; +$a->strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; +$a->strings["Can write to my file storage"] = "Kan bestanden aan mijn bestandsopslag toevoegen"; +$a->strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; +$a->strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; +$a->strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +$a->strings["Social Networking"] = "Sociaal netwerk"; +$a->strings["Mostly Public"] = "Vrijwel alles openbaar"; +$a->strings["Restricted"] = "Beperkt zichtbaar"; +$a->strings["Private"] = "Verborgen kanaal"; +$a->strings["Community Forum"] = "Groepsforum"; +$a->strings["Feed Republish"] = "Feed herpubliceren"; +$a->strings["Special Purpose"] = "Speciaal doel"; +$a->strings["Celebrity/Soapbox"] = "Beroemdheid/alleen volgen"; +$a->strings["Group Repository"] = "Groepsopslag"; +$a->strings["Other"] = "Anders"; +$a->strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +$a->strings["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["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"; @@ -523,7 +463,6 @@ $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."; @@ -532,7 +471,6 @@ $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"; @@ -556,23 +494,24 @@ $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["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; -$a->strings["Default privacy group for new contacts"] = "Standaard privacy-collectie voor nieuwe kanalen"; -$a->strings["All Channels"] = "Alle kanalen"; -$a->strings["edit"] = "bewerken"; -$a->strings["Collections"] = "Collecties"; -$a->strings["Edit collection"] = "Collectie bewerken"; -$a->strings["Create a new collection"] = "Nieuwe collectie aanmaken"; -$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; -$a->strings["add"] = "toevoegen"; +$a->strings["Not a valid email address"] = "Geen geldig e-mailadres"; +$a->strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze RedMatrix-hub niet toegestaan"; +$a->strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze RedMatrix-hub geregistreerd."; +$a->strings["An invitation is required."] = "Een uitnodiging is vereist"; +$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; +$a->strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +$a->strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +$a->strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +$a->strings["Administrator"] = "Beheerder"; +$a->strings["your registration password"] = "jouw registratiewachtwoord"; +$a->strings["Registration details for %s"] = "Registratiegegevens voor %s"; +$a->strings["Account approved."] = "Account goedgekeurd"; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; +$a->strings["Click here to upgrade."] = "Klik hier om te upgraden."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +$a->strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; $a->strings["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"; @@ -582,14 +521,12 @@ $a->strings["Reserved nickname. Please choose another."] = "Deze naam is gereser $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["Profile Image"] = "Profielfoto"; $a->strings["visible to everybody"] = "Voor iedereen zichtbaar"; $a->strings["Edit visibility"] = "Zichtbaarheid bewerken"; @@ -605,6 +542,7 @@ $a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; $a->strings["[No description]"] = "[Geen omschrijving]"; $a->strings["Event Reminders"] = "Herinneringen"; $a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["Profile"] = "Profiel"; $a->strings["Full Name:"] = "Volledige naam:"; $a->strings["Like this channel"] = "Vind dit kanaal leuk"; $a->strings["j F, Y"] = "F j Y"; @@ -631,108 +569,71 @@ $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["Apps"] = "Apps"; -$a->strings["System"] = "Systeem"; -$a->strings["Create Personal App"] = "Persoonlijke app maken"; -$a->strings["Edit Personal App"] = "Persoonlijke app bewerken"; -$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; -$a->strings["Suggestions"] = "Voorgestelde kanalen"; -$a->strings["See more..."] = "Meer..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -$a->strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -$a->strings["Enter the channel address"] = "Vul het adres van het nieuwe kanaal in"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: bob@example.com, http://example.com/barbara"; -$a->strings["Notes"] = "Aantekeningen"; -$a->strings["Remove term"] = "Verwijder zoekterm"; -$a->strings["Archives"] = "Archieven"; -$a->strings["Refresh"] = "Vernieuwen"; -$a->strings["Me"] = "Ik"; -$a->strings["Best Friends"] = "Goede vrienden"; -$a->strings["Co-workers"] = "Collega's"; -$a->strings["Former Friends"] = "Oude vrienden"; -$a->strings["Acquaintances"] = "Kennissen"; -$a->strings["Everybody"] = "Iedereen"; -$a->strings["Account settings"] = "Account"; -$a->strings["Channel settings"] = "Kanaal"; -$a->strings["Additional features"] = "Extra functies"; -$a->strings["Feature settings"] = "Plug-ins"; -$a->strings["Display settings"] = "Weergave"; -$a->strings["Connected apps"] = "Verbonden applicaties"; -$a->strings["Export channel"] = "Kanaal exporteren"; -$a->strings["Export content"] = "Inhoud exporteren"; -$a->strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; -$a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -$a->strings["Messages"] = "Berichten"; -$a->strings["Check Mail"] = "Controleer op nieuwe berichten"; -$a->strings["New Message"] = "Nieuw bericht"; -$a->strings["Chat Rooms"] = "Chatkanalen"; -$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -$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["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["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["Logout"] = "Uitloggen"; -$a->strings["End this session"] = "Beëindig deze sessie"; -$a->strings["Home"] = "Home"; -$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; -$a->strings["Your profile page"] = "Jouw profielpagina"; -$a->strings["Edit Profiles"] = "Bewerk profielen"; -$a->strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Edit your profile"] = "Jouw profiel bewerken"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Your files"] = "Jouw bestanden"; -$a->strings["Your chatrooms"] = "Jouw chatkanalen"; -$a->strings["Your bookmarks"] = "Jouw bladwijzers"; -$a->strings["Your webpages"] = "Jouw webpagina's"; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["%s - click to logout"] = "%s - klik om uit te loggen"; -$a->strings["Remote authentication"] = "Authenticatie op afstand"; -$a->strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw RedMatrix-hub"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registreren"; -$a->strings["Create an account"] = "Maak een account aan"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Applications, utilities, links, games"] = "Apps"; -$a->strings["Search site content"] = "Inhoud van deze RedMatrix-hub doorzoeken"; -$a->strings["Channel 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["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["Please wait..."] = "Wachten aub..."; $a->strings["view full size"] = "volledige grootte tonen"; -$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["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["Logged out."] = "Uitgelogd."; +$a->strings["Failed authentication"] = "Mislukte authenticatie"; +$a->strings["Login failed."] = "Inloggen mislukt."; +$a->strings["Miscellaneous"] = "Diversen"; +$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["year"] = "jaar"; +$a->strings["years"] = "jaren"; +$a->strings["month"] = "maand"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$a->strings["day"] = "dag"; +$a->strings["days"] = "dagen"; +$a->strings["hour"] = "uur"; +$a->strings["hours"] = "uren"; +$a->strings["minute"] = "minuut"; +$a->strings["minutes"] = "minuten"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "seconden"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +$a->strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; +$a->strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; $a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; $a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; $a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; $a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; $a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["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["Delete this item?"] = "Dit item verwijderen?"; $a->strings["Comment"] = "Reactie"; $a->strings["[+] show all"] = "[+] alle"; @@ -820,6 +721,105 @@ $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["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["poke"] = "aanstoten"; +$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["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["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["Public Timeline"] = "Openbare tijdlijn"; +$a->strings["Site Admin"] = "Hubbeheerder"; +$a->strings["Address Book"] = "Connecties"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Probe"] = "Onderzoeken"; +$a->strings["Suggest"] = "Voorstellen"; +$a->strings["Random Channel"] = "Willekeurig kanaal"; +$a->strings["Invite"] = "Uitnodigen "; +$a->strings["Features"] = "Extra functies"; +$a->strings["Language"] = "Taal"; +$a->strings["Post"] = "Bericht"; +$a->strings["Profile Photo"] = "Profielfoto"; +$a->strings["Update"] = "Bijwerken"; +$a->strings["Install"] = "Installeren"; +$a->strings["Purchase"] = "Aanschaffen"; $a->strings["Save to Folder"] = "In map opslaan"; $a->strings["View all"] = "Toon alles"; $a->strings["__ctx:noun__ Dislike"] = array( @@ -859,43 +859,11 @@ $a->strings["Image"] = "Afbeelding"; $a->strings["Link"] = "Link"; $a->strings["Video"] = "Video"; $a->strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; -$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["Public access denied."] = "Openbare toegang geweigerd."; -$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["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; -$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; -$a->strings["Upload Photos"] = "Foto's uploaden"; -$a->strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; -$a->strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -$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["Show Newest First"] = "Nieuwste eerst weergeven"; -$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; -$a->strings["View Photo"] = "Foto weergeven"; -$a->strings["Edit Album"] = "Album bewerken"; -$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["Private Photo"] = "Privéfoto"; -$a->strings["Previous"] = "Vorige"; -$a->strings["View Full Size"] = "Volledige grootte weergeven"; -$a->strings["Next"] = "Volgende"; -$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["Caption"] = "Bijschrift"; -$a->strings["Add a Tag"] = "Label toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; -$a->strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; -$a->strings["In This Photo:"] = "Op deze foto:"; -$a->strings["View Album"] = "Album weergeven"; -$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["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["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."; @@ -916,7 +884,7 @@ $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["Use RedMatrix magic-auth if available"] = "Gebruik RedMatrix' magic-auth wanneer beschikbaar"; $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"; @@ -926,10 +894,492 @@ $a->strings["Menu item could not be deleted."] = "Menu-item kon niet worden verw $a->strings["Edit Menu Element"] = "Menu-element bewerken"; $a->strings["Modify"] = "Wijzigen"; $a->strings["Some blurb about what to do when you're new here"] = "Welkom op de RedMatrix. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook onze apps, waar je vrijwel alles van de RedMatrix kan vinden. Voor hulp met de RedMatrix klik je op het vraagteken of als je meer vragen hebt stel je die in het supportkanaal (liefst in het Engels)."; +$a->strings["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["Yes"] = "Ja"; +$a->strings["No"] = "Nee"; +$a->strings["Edit Profile Details"] = "Profiel bewerken"; +$a->strings["View this profile"] = "Profiel weergeven"; +$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; +$a->strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; +$a->strings["Clone this profile"] = "Dit profiel klonen"; +$a->strings["Delete this profile"] = "Dit profiel verwijderen"; +$a->strings["Import profile from file"] = "Profiel vanuit bestand importeren"; +$a->strings["Export profile to file"] = "Profiel naar bestand exporteren"; +$a->strings["Profile Name:"] = "Profielnaam:"; +$a->strings["Your Full Name:"] = "Jouw volledige naam:"; +$a->strings["Title/Description:"] = "Titel/omschrijving:"; +$a->strings["Your Gender:"] = "Jouw geslacht"; +$a->strings["Birthday :"] = "Verjaardag: "; +$a->strings["Street Address:"] = "Straat en huisnummer:"; +$a->strings["Locality/City:"] = "Woonplaats:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:"; +$a->strings[" Marital Status:"] = " Huwelijkse staat:"; +$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl"; +$a->strings["Since [date]:"] = "Sinds [datum]:"; +$a->strings["Homepage URL:"] = "Adres homepage:"; +$a->strings["Religious Views:"] = "Religieuze overtuigingen"; +$a->strings["Keywords:"] = "Trefwoorden"; +$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; +$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt"; +$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf..."; +$a->strings["Hobbies/Interests"] = "Hobby's/interesses"; +$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; +$a->strings["My other channels"] = "Mijn andere kanalen"; +$a->strings["Musical interests"] = "Muzikale interesses"; +$a->strings["Books, literature"] = "Boeken/literatuur"; +$a->strings["Television"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment"; +$a->strings["Love/romance"] = "Liefde/romantiek"; +$a->strings["Work/employment"] = "Werk/arbeid"; +$a->strings["School/education"] = "School/onderwijs"; +$a->strings["This is your default profile."] = "Dit is jouw standaardprofiel"; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren"; +$a->strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +$a->strings["Include desirable objects in your profile"] = "Voeg door jou gewenste dingen aan jouw profiel toe"; +$a->strings["Continue"] = "Ga verder"; +$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +$a->strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +$a->strings["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["Red Matrix Server - Setup"] = "RedMatrix Server - Setup"; +$a->strings["Could not connect to database."] = "Could not connect to database."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; +$a->strings["Could not create table."] = "Could not create table."; +$a->strings["Your site database has been installed."] = "Your hub database has been installed."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; +$a->strings["System check"] = "System check"; +$a->strings["Next"] = "Volgende"; +$a->strings["Check again"] = "Check again"; +$a->strings["Database connection"] = "Database connection"; +$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "In order to install RedMatrix we need to know how to connect to your database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; +$a->strings["Database Server Name"] = "Database Server Name"; +$a->strings["Default is localhost"] = "Default is localhost"; +$a->strings["Database Port"] = "Database Port"; +$a->strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; +$a->strings["Database Login Name"] = "Database Login Name"; +$a->strings["Database Login Password"] = "Database Login Password"; +$a->strings["Database Name"] = "Database Name"; +$a->strings["Database Type"] = "Database Type"; +$a->strings["Site administrator email address"] = "Hub administrator email address"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +$a->strings["Website URL"] = "Hub URL"; +$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; +$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; +$a->strings["Site settings"] = "Hub settings"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."; +$a->strings["PHP executable path"] = "PHP executable path"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; +$a->strings["Command line PHP"] = "Command line PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; +$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generate encryption keys"; +$a->strings["libCurl PHP module"] = "libCurl PHP module"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +$a->strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; +$a->strings["mb_string PHP module"] = "mb_string PHP module"; +$a->strings["mcrypt PHP module"] = "mcrypt PHP module"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; +$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; +$a->strings["%s is writable"] = "%s is writable"; +$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; +$a->strings["store is writable"] = "store is writable"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."; +$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; +$a->strings["SSL certificate validation"] = "SSL certificate validation"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; +$a->strings["Url rewrite is working"] = "Url rewrite is working"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."; +$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; +$a->strings["

    What next

    "] = "

    Wat nu

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +$a->strings["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["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["Item not available."] = "Item is niet aanwezig."; +$a->strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +$a->strings["Invalid item."] = "Ongeldig item."; +$a->strings["Channel not found."] = "Kanaal niet gevonden."; +$a->strings["Page not found."] = "Pagina niet gevonden."; +$a->strings["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["Block Name"] = "Bloknaam"; +$a->strings["Public access denied."] = "Openbare toegang geweigerd."; +$a->strings["Gender: "] = "Geslacht:"; +$a->strings["Status: "] = "Status: "; +$a->strings["Homepage: "] = "Homepage: "; +$a->strings["Hometown: "] = "Oorspronkelijk uit: "; +$a->strings["About: "] = "Over: "; +$a->strings["Public Forum:"] = "Openbaar forum:"; +$a->strings["Keywords: "] = "Trefwoorden: "; +$a->strings["Finding:"] = "Gezocht naar:"; +$a->strings["next page"] = "volgende pagina"; +$a->strings["previous page"] = "vorige pagina"; +$a->strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; +$a->strings["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["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; +$a->strings["Previous"] = "Vorige"; +$a->strings["Event details"] = "Details van gebeurtenis"; +$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["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["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; +$a->strings["Away"] = "Afwezig"; +$a->strings["Online"] = "Online"; +$a->strings["Please login."] = "Inloggen."; +$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["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; +$a->strings["Remove This Channel"] = "Verwijder dit kanaal"; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden."; +$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; +$a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd."; +$a->strings["Remove Channel"] = "Kanaal verwijderen"; +$a->strings["No channel."] = "Geen kanaal."; +$a->strings["Common connections"] = "Veel voorkomende connecties"; +$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; +$a->strings["The error message was:"] = "Het foutbericht was:"; +$a->strings["Authentication failed."] = "Authenticatie mislukt."; +$a->strings["Remote Authentication"] = "Authenticatie op afstand"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; +$a->strings["Authenticate"] = "Authenticeren"; +$a->strings["- select -"] = "- kies map -"; +$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["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; +$a->strings["Upload Photos"] = "Foto's uploaden"; +$a->strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; +$a->strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +$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["Show Newest First"] = "Nieuwste eerst weergeven"; +$a->strings["Show Oldest First"] = "Oudste eerst weergeven"; +$a->strings["View Photo"] = "Foto weergeven"; +$a->strings["Edit Album"] = "Album bewerken"; +$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["Private Photo"] = "Privéfoto"; +$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["Caption"] = "Bijschrift"; +$a->strings["Add a Tag"] = "Label toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; +$a->strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; +$a->strings["In This Photo:"] = "Op deze foto:"; +$a->strings["View Album"] = "Album weergeven"; +$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["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."; +$a->strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; +$a->strings["Blocked"] = "Geblokkeerd"; +$a->strings["Ignored"] = "Genegeerd"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Archived"] = "Gearchiveerd"; +$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["Show all connections"] = "Toon alle connecties"; +$a->strings["Unblocked"] = "Niet geblokkeerd"; +$a->strings["Only show unblocked connections"] = "Toon alleen niet geblokkeerde connecties"; +$a->strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; +$a->strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; +$a->strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; +$a->strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; +$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["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["Edit post"] = "Bericht bewerken"; +$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"; +$a->strings["Channel has been unblocked"] = "Kanaal is gedeblokkeerd"; +$a->strings["Channel has been blocked"] = "Kanaal is geblokkeerd"; +$a->strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; +$a->strings["Channel has been unignored"] = "Kanaal wordt niet meer genegeerd"; +$a->strings["Channel has been ignored"] = "Kanaal wordt genegeerd"; +$a->strings["Channel has been unarchived"] = "Kanaal is niet meer gearchiveerd"; +$a->strings["Channel has been archived"] = "Kanaal is gearchiveerd"; +$a->strings["Channel has been unhidden"] = "Kanaal is niet meer verborgen"; +$a->strings["Channel has been hidden"] = "Kanaal is verborgen"; +$a->strings["Channel has been approved"] = "Connectie/kanaal is geaccepteerd"; +$a->strings["Channel has been unapproved"] = "Connectie/kanaal is afgewezen"; +$a->strings["Connection has been removed."] = "Connectie is verwijderd"; +$a->strings["View %s's profile"] = "Profiel van %s weergeven"; +$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"; +$a->strings["Ignore or Unignore this connection"] = "Deze connectie negeren of niet meer negeren"; +$a->strings["Unarchive"] = "Niet meer archiveren"; +$a->strings["Archive"] = "Archiveren"; +$a->strings["Archive or Unarchive this connection"] = "Deze connectie archiveren of niet meer archiveren"; +$a->strings["Unhide"] = "Niet meer verbergen"; +$a->strings["Hide"] = "Verbergen"; +$a->strings["Hide or Unhide this connection"] = "Deze connectie verbergen of niet meer verbergen"; +$a->strings["Delete this connection"] = "Deze connectie verwijderen"; +$a->strings["Approve this connection"] = "Deze connectie accepteren"; +$a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; +$a->strings["Connections: settings for %s"] = "Connecties: instellingen voor %s"; +$a->strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; +$a->strings["Apply the permissions indicated on this page to all new connections."] = "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen."; +$a->strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; +$a->strings["inherited"] = "geërfd"; +$a->strings["Connection has no individual permissions!"] = "Connectie heeft geen individuele permissies!"; +$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan."; +$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; +$a->strings["Contact Information / Notes"] = "Informatie/aantekeningen over connectie"; +$a->strings["Edit contact notes"] = "Bewerk aantekeningen over contact"; +$a->strings["Their Settings"] = "Hun instellingen"; +$a->strings["My Settings"] = "Mijn instellingen"; +$a->strings["Clear/Disable Automatic Permissions"] = "Verwijderen/uitschakelen automatische permissies"; +$a->strings["Forum Members"] = "Forumleden"; +$a->strings["Soapbox"] = "Zeepkist"; +$a->strings["Full Sharing (typical social network permissions)"] = "Voluit delen (vergelijkbaar met die van sociale netwerken)"; +$a->strings["Cautious Sharing "] = "Voorzichtig delen"; +$a->strings["Follow Only"] = "Alleen volgen"; +$a->strings["Individual Permissions"] = "Individuele permissies"; +$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."] = "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."; +$a->strings["Advanced Permissions"] = "Geavanceerde permissies"; +$a->strings["Simple Permissions (select one and submit)"] = "Eenvoudige permissies (selecteer er één en opslaan)"; +$a->strings["Visit %s's profile - %s"] = "Profiel van %s bezoeken - %s"; +$a->strings["Block/Unblock contact"] = "Connectie blokkeren/deblokkeren"; +$a->strings["Ignore contact"] = "Connectie negeren"; +$a->strings["Repair URL settings"] = "URL-instellingen repareren"; +$a->strings["View conversations"] = "Conversaties weergeven"; +$a->strings["Delete contact"] = "Connectie verwijderen"; +$a->strings["Last update:"] = "Laatste wijziging:"; +$a->strings["Update public posts"] = "Openbare berichten updaten"; +$a->strings["Update now"] = "Nu updaten"; +$a->strings["Currently blocked"] = "Momenteel geblokkeerd"; +$a->strings["Currently ignored"] = "Momenteel genegeerd"; +$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["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; +$a->strings["Thing updated"] = "Ding bijgewerkt"; +$a->strings["Object store: failed"] = "Opslaan van ding mislukt"; +$a->strings["Thing added"] = "Ding toegevoegd"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Ding weergeven"; +$a->strings["item not found."] = "Item niet gevonden"; +$a->strings["Edit Thing"] = "Ding bewerken"; +$a->strings["Select a profile"] = "Kies een profiel"; +$a->strings["Post an activity"] = "Plaats een bericht"; +$a->strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +$a->strings["Name of thing e.g. something"] = "Naam van ding"; +$a->strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +$a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optioneel)"; +$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; +$a->strings["No valid account found."] = "Geen geldige account gevonden."; +$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; +$a->strings["Site Member (%s)"] = "Lid van hub (%s)"; +$a->strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +$a->strings["Password Reset"] = "Wachtwoord vergeten?"; +$a->strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +$a->strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +$a->strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +$a->strings["click here to login"] = "klik dan hier om in te loggen"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +$a->strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; +$a->strings["Email Address"] = "E-mailadres"; +$a->strings["Reset"] = "Opnieuw instellen"; +$a->strings["Bookmark added"] = "Bladwijzer toegevoegd"; +$a->strings["My Bookmarks"] = "Mijn bladwijzers"; +$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +$a->strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; +$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++"; $a->strings["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["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."] = "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["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["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."; @@ -991,8 +1441,6 @@ $a->strings["Anybody in this network"] = "Iedereen in dit netwerk"; $a->strings["Anybody authenticated"] = "Geauthenticeerd"; $a->strings["Anybody on the internet"] = "Iedereen op het internet"; $a->strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; -$a->strings["No"] = "Nee"; -$a->strings["Yes"] = "Ja"; $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; $a->strings["or"] = "of"; $a->strings["Your channel address is"] = "Jouw kanaaladres is"; @@ -1027,7 +1475,7 @@ $a->strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; $a->strings["Notification Settings"] = "Notificatie-instellingen"; $a->strings["By default post a status message when:"] = "Plaats automatisch een statusbericht wanneer:"; $a->strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; -$a->strings["joining a forum/community"] = "Je lid wordt van een groep/forum"; +$a->strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; $a->strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; $a->strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; $a->strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; @@ -1060,408 +1508,6 @@ $a->strings["Please enable expert mode (in Setting $a->strings["Miscellaneous Settings"] = "Diverse instellingen"; $a->strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; $a->strings["Remove this channel"] = "Verwijder dit kanaal"; -$a->strings["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["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["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["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 :"] = "Verjaardag: "; -$a->strings["Street Address:"] = "Straat en huisnummer:"; -$a->strings["Locality/City:"] = "Woonplaats:"; -$a->strings["Postal/Zip Code:"] = "Postcode:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Provincie/gewest/deelstaat:"; -$a->strings[" Marital Status:"] = " Huwelijkse staat:"; -$a->strings["Who: (if applicable)"] = "Wie (wanneer toepasselijk):"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: karin123, Karin Jansen, cathy@voorbeeld.nl"; -$a->strings["Since [date]:"] = "Sinds [datum]:"; -$a->strings["Homepage URL:"] = "Adres homepage:"; -$a->strings["Religious Views:"] = "Religieuze overtuigingen"; -$a->strings["Keywords:"] = "Trefwoorden"; -$a->strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; -$a->strings["Used in directory listings"] = "Wordt in de kanalengids gebruikt"; -$a->strings["Tell us about yourself..."] = "Vertel ons iets over jezelf..."; -$a->strings["Hobbies/Interests"] = "Hobby's/interesses"; -$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; -$a->strings["My other channels"] = "Mijn andere kanalen"; -$a->strings["Musical interests"] = "Muzikale interesses"; -$a->strings["Books, literature"] = "Boeken/literatuur"; -$a->strings["Television"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/entertainment"; -$a->strings["Love/romance"] = "Liefde/romantiek"; -$a->strings["Work/employment"] = "Werk/arbeid"; -$a->strings["School/education"] = "School/onderwijs"; -$a->strings["This is your default profile."] = "Dit is jouw standaardprofiel"; -$a->strings["Age: "] = "Leeftijd:"; -$a->strings["Edit/Manage Profiles"] = "Profielen bewerken/beheren"; -$a->strings["Add profile things"] = "Dingen aan je profiel toevoegen"; -$a->strings["Include desirable objects in your profile"] = "Voeg door jou gewenste dingen aan jouw profiel toe"; -$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; -$a->strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; -$a->strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; -$a->strings["Visible To"] = "Zichtbaar voor"; -$a->strings["All Connections"] = "Alle connecties"; -$a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Gebeurtenis bewerken"; -$a->strings["Create New Event"] = "Nieuwe gebeurtenis aanmaken"; -$a->strings["Event details"] = "Details van gebeurtenis"; -$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["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["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; -$a->strings["Remove This Channel"] = "Verwijder dit kanaal"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Dit zal dit kanaal compleet van deze hub en uit het RedMatrix-netwerk verwijderen. Dit kan hierna niet meer te ongedaan gemaakt worden."; -$a->strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; -$a->strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het RedMatrix-netwerk verwijderen"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het RedMatrix-netwerk verwijderd."; -$a->strings["Remove Channel"] = "Kanaal verwijderen"; -$a->strings["No channel."] = "Geen kanaal."; -$a->strings["Common connections"] = "Veel voorkomende connecties"; -$a->strings["No connections in common."] = "Geen gemeenschappelijke connecties."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; -$a->strings["The error message was:"] = "Het foutbericht was:"; -$a->strings["Authentication failed."] = "Authenticatie mislukt."; -$a->strings["Remote Authentication"] = "Authenticatie op afstand"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; -$a->strings["Authenticate"] = "Authenticeren"; -$a->strings["Continue"] = "Ga verder"; -$a->strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -$a->strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -$a->strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; -$a->strings["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["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."; -$a->strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; -$a->strings["Blocked"] = "Geblokkeerd"; -$a->strings["Ignored"] = "Genegeerd"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Archived"] = "Gearchiveerd"; -$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["Show all connections"] = "Toon alle connecties"; -$a->strings["Unblocked"] = "Niet geblokkeerd"; -$a->strings["Only show unblocked connections"] = "Toon alleen niet geblokkeerde connecties"; -$a->strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; -$a->strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; -$a->strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; -$a->strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; -$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["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"; -$a->strings["Channel has been unblocked"] = "Kanaal is gedeblokkeerd"; -$a->strings["Channel has been blocked"] = "Kanaal is geblokkeerd"; -$a->strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; -$a->strings["Channel has been unignored"] = "Kanaal wordt niet meer genegeerd"; -$a->strings["Channel has been ignored"] = "Kanaal wordt genegeerd"; -$a->strings["Channel has been unarchived"] = "Kanaal is niet meer gearchiveerd"; -$a->strings["Channel has been archived"] = "Kanaal is gearchiveerd"; -$a->strings["Channel has been unhidden"] = "Kanaal is niet meer verborgen"; -$a->strings["Channel has been hidden"] = "Kanaal is verborgen"; -$a->strings["Channel has been approved"] = "Connectie/kanaal is geaccepteerd"; -$a->strings["Channel has been unapproved"] = "Connectie/kanaal is afgewezen"; -$a->strings["Connection has been removed."] = "Connectie is verwijderd"; -$a->strings["View %s's profile"] = "Profiel van %s weergeven"; -$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"; -$a->strings["Ignore or Unignore this connection"] = "Deze connectie negeren of niet meer negeren"; -$a->strings["Unarchive"] = "Niet meer archiveren"; -$a->strings["Archive"] = "Archiveren"; -$a->strings["Archive or Unarchive this connection"] = "Deze connectie archiveren of niet meer archiveren"; -$a->strings["Unhide"] = "Niet meer verbergen"; -$a->strings["Hide"] = "Verbergen"; -$a->strings["Hide or Unhide this connection"] = "Deze connectie verbergen of niet meer verbergen"; -$a->strings["Delete this connection"] = "Deze connectie verwijderen"; -$a->strings["Approve this connection"] = "Deze connectie accepteren"; -$a->strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; -$a->strings["Connections: settings for %s"] = "Connecties: instellingen voor %s"; -$a->strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; -$a->strings["Apply the permissions indicated on this page to all new connections."] = "Permissies die op deze pagina staan vermeldt op alle nieuwe connecties toepassen."; -$a->strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; -$a->strings["inherited"] = "geërfd"; -$a->strings["Connection has no individual permissions!"] = "Connectie heeft geen individuele permissies!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Dit is mogelijk voldoende, wanneer er naar jouw privacy-instellingen wordt gekeken. Hoewel je wellicht de geavanceerde rechten wil nagaan."; -$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; -$a->strings["Contact Information / Notes"] = "Informatie/aantekeningen over connectie"; -$a->strings["Edit contact notes"] = "Bewerk aantekeningen over contact"; -$a->strings["Their Settings"] = "Hun instellingen"; -$a->strings["My Settings"] = "Mijn instellingen"; -$a->strings["Clear/Disable Automatic Permissions"] = "Verwijderen/uitschakelen automatische permissies"; -$a->strings["Forum Members"] = "Forum/groepsleden"; -$a->strings["Soapbox"] = "Zeepkist"; -$a->strings["Full Sharing (typical social network permissions)"] = "Voluit delen (vergelijkbaar met die van sociale netwerken)"; -$a->strings["Cautious Sharing "] = "Voorzichtig delen"; -$a->strings["Follow Only"] = "Alleen volgen"; -$a->strings["Individual Permissions"] = "Individuele permissies"; -$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."] = "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."; -$a->strings["Advanced Permissions"] = "Geavanceerde permissies"; -$a->strings["Simple Permissions (select one and submit)"] = "Eenvoudige permissies (selecteer er één en opslaan)"; -$a->strings["Visit %s's profile - %s"] = "Profiel van %s bezoeken - %s"; -$a->strings["Block/Unblock contact"] = "Connectie blokkeren/deblokkeren"; -$a->strings["Ignore contact"] = "Connectie negeren"; -$a->strings["Repair URL settings"] = "URL-instellingen repareren"; -$a->strings["View conversations"] = "Conversaties weergeven"; -$a->strings["Delete contact"] = "Connectie verwijderen"; -$a->strings["Last update:"] = "Laatste wijziging:"; -$a->strings["Update public posts"] = "Openbare berichten updaten"; -$a->strings["Update now"] = "Nu updaten"; -$a->strings["Currently blocked"] = "Momenteel geblokkeerd"; -$a->strings["Currently ignored"] = "Momenteel genegeerd"; -$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["Add"] = "Toevoegen"; -$a->strings["No entries."] = "Geen"; -$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["Bookmark added"] = "Bladwijzer toegevoegd"; -$a->strings["My Bookmarks"] = "Mijn bladwijzers"; -$a->strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -$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["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix - gasttoegang: Toegangsnaam: {jouw e-mailadres}, wachtwoord: +++"; -$a->strings["Red Matrix Server - Setup"] = "RedMatrix Server - Setup"; -$a->strings["Could not connect to database."] = "Could not connect to database."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; -$a->strings["Could not create table."] = "Could not create table."; -$a->strings["Your site database has been installed."] = "Your hub database has been installed."; -$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; -$a->strings["System check"] = "System check"; -$a->strings["Check again"] = "Check again"; -$a->strings["Database connection"] = "Database connection"; -$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "In order to install RedMatrix we need to know how to connect to your database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing."; -$a->strings["Database Server Name"] = "Database Server Name"; -$a->strings["Default is localhost"] = "Default is localhost"; -$a->strings["Database Port"] = "Database Port"; -$a->strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; -$a->strings["Database Login Name"] = "Database Login Name"; -$a->strings["Database Login Password"] = "Database Login Password"; -$a->strings["Database Name"] = "Database Name"; -$a->strings["Site administrator email address"] = "Hub administrator email address"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; -$a->strings["Website URL"] = "Hub URL"; -$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; -$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; -$a->strings["Site settings"] = "Hub settings"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."; -$a->strings["PHP executable path"] = "PHP executable path"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; -$a->strings["Command line PHP"] = "Command line PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."; -$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generate encryption keys"; -$a->strings["libCurl PHP module"] = "libCurl PHP module"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; -$a->strings["mysqli PHP module"] = "mysqli PHP module"; -$a->strings["mb_string PHP module"] = "mb_string PHP module"; -$a->strings["mcrypt PHP module"] = "mcrypt PHP module"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; -$a->strings["proc_open"] = "proc_open"; -$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; -$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Error: mysqli PHP module required but not installed."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."; -$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."; -$a->strings["%s is writable"] = "%s is writable"; -$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; -$a->strings["store is writable"] = "store is writable"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."; -$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."; -$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; -$a->strings["SSL certificate validation"] = "SSL certificate validation"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite in .htaccess is not working. Check your server configuration."; -$a->strings["Url rewrite is working"] = "Url rewrite is working"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."; -$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; -$a->strings["

    What next

    "] = "

    Wat nu

    "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; -$a->strings["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."] = "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["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"; @@ -1486,22 +1532,10 @@ $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["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["Contact not found."] = "Contact niet gevonden"; +$a->strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; +$a->strings["Suggest Friends"] = "Kanalen voorstellen"; +$a->strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s"; $a->strings["Permission Denied."] = "Toegang geweigerd"; $a->strings["File not found."] = "Bestand niet gevonden."; $a->strings["Edit file permissions"] = "Bestandsrechten bewerken"; @@ -1512,13 +1546,16 @@ $a->strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak dez $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["Help:"] = "Hulp:"; $a->strings["Not Found"] = "Niet gevonden"; +$a->strings["network"] = "netwerk"; $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["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["Collection created."] = "Collectie aangemaakt"; $a->strings["Could not create collection."] = "Collectie kon niet aangemaakt worden"; $a->strings["Collection updated."] = "Collectie bijgewerkt."; @@ -1531,16 +1568,27 @@ $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["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; +$a->strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; +$a->strings["Nothing to import."] = "Niets gevonden om te importeren"; +$a->strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; +$a->strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; +$a->strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; +$a->strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; +$a->strings["Import completed."] = "Import voltooid."; +$a->strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; +$a->strings["Import Channel"] = "Kanaal importeren"; +$a->strings["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."] = "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."; +$a->strings["File to Upload"] = "Bestand om te uploaden"; +$a->strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; +$a->strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; +$a->strings["Your old login email address"] = "Het e-mailadres van je oude account"; +$a->strings["Your old login password"] = "Wachtwoord van jouw oude account"; +$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; +$a->strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; +$a->strings["Import existing posts if possible"] = "Importeer bestaande berichten (wanneer mogelijk)"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde het %3\$s van %2\$s met %4\$s"; -$a->strings["Like/Dislike"] = "Leuk/niet leuk"; -$a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd."; -$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan."; -$a->strings["Invalid request."] = "Ongeldig verzoek"; -$a->strings["thing"] = "ding"; -$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -$a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; -$a->strings["Action completed."] = "Actie voltooid"; -$a->strings["Thank you."] = "Bedankt"; $a->strings["Tag removed"] = "Label verwijderd"; $a->strings["Remove Item Tag"] = "Verwijder itemlabel"; $a->strings["Select a tag to remove: "] = "Kies een label om te verwijderen"; @@ -1564,7 +1612,9 @@ $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["mobile"] = "mobiel"; +$a->strings["experimental"] = "experimenteel"; +$a->strings["unsupported"] = "Niet ondersteund"; $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"; @@ -1581,8 +1631,6 @@ $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 lid 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"; @@ -1701,39 +1749,21 @@ $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["Thing updated"] = "Ding bijgewerkt"; -$a->strings["Object store: failed"] = "Opslaan van ding mislukt"; -$a->strings["Thing added"] = "Ding toegevoegd"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Ding weergeven"; -$a->strings["item not found."] = "Item niet gevonden"; -$a->strings["Edit Thing"] = "Ding bewerken"; -$a->strings["Select a profile"] = "Kies een profiel"; -$a->strings["Post an activity"] = "Plaats een bericht"; -$a->strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -$a->strings["Name of thing e.g. something"] = "Naam van ding"; -$a->strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -$a->strings["URL for photo of thing (optional)"] = "URL van foto van ding (optioneel)"; -$a->strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; -$a->strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; -$a->strings["Nothing to import."] = "Niets gevonden om te importeren"; -$a->strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; -$a->strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; -$a->strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; -$a->strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; -$a->strings["Import completed."] = "Import voltooid."; -$a->strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; -$a->strings["Import Channel"] = "Kanaal importeren"; -$a->strings["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."] = "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."; -$a->strings["File to Upload"] = "Bestand om te uploaden"; -$a->strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; -$a->strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; -$a->strings["Your old login email address"] = "Het e-mailadres van je oude account"; -$a->strings["Your old login password"] = "Wachtwoord van jouw oude account"; -$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; -$a->strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; -$a->strings["Import existing posts if possible"] = "Importeer bestaande berichten (wanneer mogelijk)"; +$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; +$a->strings["Empty post discarded."] = "Leeg bericht geannuleerd"; +$a->strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; +$a->strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; +$a->strings["Like/Dislike"] = "Leuk/niet leuk"; +$a->strings["This action is restricted to members."] = "Deze actie kan alleen door mensen met een RedMatrix-account worden uitgevoerd."; +$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Je dient in te loggen met je RedMatrix-account of een nieuw RedMatrix-account te registreren om verder te kunnen gaan."; +$a->strings["Invalid request."] = "Ongeldig verzoek"; +$a->strings["thing"] = "ding"; +$a->strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +$a->strings["Previous action reversed."] = "Vorige actie omgedraaid"; +$a->strings["Action completed."] = "Actie voltooid"; +$a->strings["Thank you."] = "Bedankt"; $a->strings["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"; @@ -1753,15 +1783,6 @@ $a->strings["1. Register at any RedMatrix location (they are all inter-connected $a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn kanaaladres in het zoekveld invullen:"; $a->strings["or visit "] = "of bezoek "; $a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -$a->strings["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 lay-out"; $a->strings["Location not found."] = "Locatie niet gevonden."; $a->strings["Primary location cannot be removed."] = "Primaire locatie kan niet worden verwijderd."; $a->strings["No locations found."] = "Geen locaties gevonden."; @@ -1769,27 +1790,14 @@ $a->strings["Manage Channel Locations"] = "Kanaallocaties beheren"; $a->strings["Location (address)"] = "Locatie (adres)"; $a->strings["Primary Location"] = "Primaire locatie"; $a->strings["Drop location"] = "Locatie verwijderen"; +$a->strings["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] "; +$a->strings["Help with this feature"] = "Hulp voor dit onderdeel"; +$a->strings["Layout Name"] = "Naam lay-out"; $a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; $a->strings["Visible to:"] = "Zichtbaar voor:"; $a->strings["No connections."] = "Geen connecties."; $a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; $a->strings["View Connnections"] = "Connecties weergeven"; -$a->strings["No valid account found."] = "Geen geldige account gevonden."; -$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; -$a->strings["Site Member (%s)"] = "Lid van hub (%s)"; -$a->strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -$a->strings["Password Reset"] = "Wachtwoord vergeten?"; -$a->strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -$a->strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -$a->strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -$a->strings["click here to login"] = "klik dan hier om in te loggen"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -$a->strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; -$a->strings["Email Address"] = "E-mailadres"; -$a->strings["Reset"] = "Opnieuw instellen"; $a->strings["Hub not found."] = "Hub niet gevonden."; $a->strings["Total votes"] = "Totaal aantal stemmen"; $a->strings["Average Rating"] = "Gemiddelde waardering"; @@ -1811,12 +1819,6 @@ $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."; @@ -1828,6 +1830,7 @@ $a->strings["Menu created."] = "Menu aangemaakt."; $a->strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; $a->strings["Manage Menus"] = "Menu's beheren"; $a->strings["Drop"] = "Verwijderen"; +$a->strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; $a->strings["Create a new menu"] = "Een nieuwe menu aanmaken"; $a->strings["Delete this menu"] = "Menu verwijderen"; $a->strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; @@ -1847,7 +1850,7 @@ $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["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."; @@ -1860,10 +1863,11 @@ $a->strings["Invalid request identifier."] = "Ongeldige verzoek identificator (r $a->strings["Discard"] = "Annuleren"; $a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; $a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["Xchan Lookup"] = "Xchan opzoeken"; +$a->strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; $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 doelkenmerk"; -$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";